GNU bug report logs -
#64219
[PATCH 0/2] gnu: Update aerc to 0.15.2
Previous Next
Reported by: Nguyễn Gia Phong <mcsinyx <at> disroot.org>
Date: Thu, 22 Jun 2023 09:56:01 UTC
Severity: normal
Tags: patch
Done: Christopher Baines <mail <at> cbaines.net>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 64219 in the body.
You can then email your comments to 64219 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#64219
; Package
guix-patches
.
(Thu, 22 Jun 2023 09:56:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Nguyễn Gia Phong <mcsinyx <at> disroot.org>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Thu, 22 Jun 2023 09:56:01 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Nguyễn Gia Phong (2):
gnu: go-git-sr-ht-rockorager-tcell-term: Update to 0.9.0
gnu: aerc: Update to 0.15.2
gnu/packages/golang.scm | 4 ++--
gnu/packages/mail.scm | 19 ++++++++++++-------
2 files changed, 14 insertions(+), 9 deletions(-)
base-commit: 7f3c6d3b3ba86a8051e394e4ec9a6f6089753cb1
--
2.40.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#64219
; Package
guix-patches
.
(Thu, 22 Jun 2023 10:00:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 64219 <at> debbugs.gnu.org (full text, mbox):
gnu/packages/golang.scm (go-git-sr-ht-rockorager-tcell-term): Update to 0.9.0.
Signed-off-by: Nguyễn Gia Phong <mcsinyx <at> disroot.org>
---
gnu/packages/golang.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index e4c4cb299b48..18d588c018b6 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -7163,7 +7163,7 @@ (define-public go-github-com-gdamore-tcell-v2-2.3
(define-public go-git-sr-ht-rockorager-tcell-term
(package
(name "go-git-sr-ht-rockorager-tcell-term")
- (version "0.3.0")
+ (version "0.9.0")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -7172,7 +7172,7 @@ (define-public go-git-sr-ht-rockorager-tcell-term
(file-name (git-file-name name version))
(sha256
(base32
- "13nfb2mq59846j531j7p2nm8mi0kjw5p90pa89l3fwc0sljkn5p8"))))
+ "177ladvpiiw7sb0hsjjv9p2yv5wpqpw6nqardkm8mqqlj0swa9xx"))))
(build-system go-build-system)
(arguments
(list #:import-path "git.sr.ht/~rockorager/tcell-term"))
base-commit: 7f3c6d3b3ba86a8051e394e4ec9a6f6089753cb1
--
2.40.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#64219
; Package
guix-patches
.
(Thu, 22 Jun 2023 10:00:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 64219 <at> debbugs.gnu.org (full text, mbox):
* gnu/packaging/mail.scm (aerc): Update to 0.15.2.
Signed-off-by: Nguyễn Gia Phong <mcsinyx <at> disroot.org>
---
gnu/packages/mail.scm | 19 ++++++++++++-------
1 file changed, 12 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 801555803af9..d88576d1f139 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -4855,7 +4855,7 @@ (define-public smtpmail
(define-public aerc
(package
(name "aerc")
- (version "0.14.0")
+ (version "0.15.2")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -4864,17 +4864,20 @@ (define-public aerc
(file-name (git-file-name name version))
(sha256
(base32
- "067j7kja78hv7dafw8gy3m2g5cslq6xlnzja8lm3b5p0m0vfabm8"))))
+ "1gbprx0i8d13q974n5hsys6lllav5cpll3cwrr1hfw6307hc001r"))))
(build-system go-build-system)
(arguments
(list #:import-path "git.sr.ht/~rjarry/aerc"
;; Installing the source is only necessary for Go libraries.
#:install-source? #f
#:build-flags
- #~(list "-tags=notmuch" "-ldflags"
- (string-append "-X main.Version=" #$version
- " -X git.sr.ht/~rjarry/aerc/config.shareDir="
- #$output "/share/aerc"))
+ #~(list "-tags=notmuch"
+ (string-append
+ "-ldflags=-X main.Version=" #$version
+ " -X git.sr.ht/~rjarry/aerc/config.libexecDir="
+ #$output "/libexec/aerc"
+ " -X git.sr.ht/~rjarry/aerc/config.shareDir="
+ #$output "/share/aerc"))
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'patch-paths
@@ -4912,7 +4915,7 @@ (define-public aerc
(string-append "src/" import-path))))
(replace 'install
(lambda* (#:key import-path build-flags #:allow-other-keys)
- (invoke "make" "install" "-C"
+ (invoke "make" "CC=gcc" "install" "-C"
(string-append "src/" import-path)
(string-append "PREFIX=" #$output)))))))
(inputs (list gnupg
@@ -4951,6 +4954,8 @@ (define-public aerc
go-github-com-syndtr-goleveldb-leveldb
go-git-sr-ht-sircmpwn-getopt
go-git-sr-ht-rockorager-tcell-term
+ python
+ python-vobject
zoxide))
(native-inputs (list scdoc))
(home-page "https://git.sr.ht/~rjarry/aerc")
--
2.40.1
Reply sent
to
Christopher Baines <mail <at> cbaines.net>
:
You have taken responsibility.
(Mon, 26 Jun 2023 09:40:03 GMT)
Full text and
rfc822 format available.
Notification sent
to
Nguyễn Gia Phong <mcsinyx <at> disroot.org>
:
bug acknowledged by developer.
(Mon, 26 Jun 2023 09:40:03 GMT)
Full text and
rfc822 format available.
Message #16 received at 64219-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
guix-patches--- via <guix-patches <at> gnu.org> writes:
> Nguyễn Gia Phong (2):
> gnu: go-git-sr-ht-rockorager-tcell-term: Update to 0.9.0
> gnu: aerc: Update to 0.15.2
>
> gnu/packages/golang.scm | 4 ++--
> gnu/packages/mail.scm | 19 ++++++++++++-------
> 2 files changed, 14 insertions(+), 9 deletions(-)
Thanks, I tweaked the commit message for the arec changes to describe
changes to the arguments and inputs, and pushed to master as
102cbfd97c58c89d377ef690c603bcb98d922efe.
Chris
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#64219
; Package
guix-patches
.
(Mon, 26 Jun 2023 09:41:02 GMT)
Full text and
rfc822 format available.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#64219
; Package
guix-patches
.
(Mon, 26 Jun 2023 11:22:02 GMT)
Full text and
rfc822 format available.
Message #22 received at 64219 <at> debbugs.gnu.org (full text, mbox):
On 2023-06-26 at 10:29+01:00, Christopher Baines wrote:
> > Nguyễn Gia Phong (2):
> > gnu: go-git-sr-ht-rockorager-tcell-term: Update to 0.9.0
> > gnu: aerc: Update to 0.15.2
>
> Thanks, I tweaked the commit message for the arec changes to describe
> changes to the arguments and inputs, and pushed to master as
> 102cbfd97c58c89d377ef690c603bcb98d922efe.
Thanks!
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Mon, 24 Jul 2023 11:24:05 GMT)
Full text and
rfc822 format available.
This bug report was last modified 2 years and 26 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.