GNU bug report logs -
#77571
[PATCH] gnu: emacs-magit-stgit: Fix build.
Previous Next
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 77571 in the body.
You can then email your comments to 77571 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
andrew <at> trop.in, csantosb <at> inventati.org, divya <at> subvertising.org, hako <at> ultrarare.space, ian <at> retrospec.tv, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#77571
; Package
guix-patches
.
(Sun, 06 Apr 2025 08:56:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Cayetano Santos <csantosb <at> inventati.org>
:
New bug report received and forwarded. Copy sent to
andrew <at> trop.in, csantosb <at> inventati.org, divya <at> subvertising.org, hako <at> ultrarare.space, ian <at> retrospec.tv, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
.
(Sun, 06 Apr 2025 08:56:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs-xyz.scm (flightgear): Fix build.
Package is broken.
- fix wrong sha256
- remove unused propagated dependency
- disable tests
Change-Id: I61fdfb276ba49b0d4b712cba2221189f3adc6e8e
---
gnu/packages/emacs-xyz.scm | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 7c290d0833..8bf1c23349 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -2002,10 +2002,12 @@ (define-public emacs-magit-stgit
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "1z2dhc1m510iyrks5lxp3jlqg4n7qwwirbmxg4c4ll0xngfhnalc"))))
+ (base32 "10ql7gi586w65vds6wsh8bw5nr444xqhgh87khzcpfaglnw2lyaf"))))
(build-system emacs-build-system)
- (propagated-inputs (list emacs-magit emacs-transient emacs-llama
- emacs-dash))
+ (arguments
+ (list
+ #:tests? #f)) ;no tests
+ (propagated-inputs (list emacs-magit emacs-transient emacs-llama))
(home-page "https://github.com/stacked-git/magit-stgit")
(synopsis "StGit extension for Magit")
(description
base-commit: f658cd17b6ee599eaed03d10eacded9709343ea1
--
2.49.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#77571
; Package
guix-patches
.
(Sun, 06 Apr 2025 17:29:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 77571 <at> debbugs.gnu.org (full text, mbox):
Hi Cayetano,
Cayetano Santos <csantosb <at> inventati.org> writes:
> * gnu/packages/emacs-xyz.scm (flightgear): Fix build.
>
> Package is broken.
>
> - fix wrong sha256
> - remove unused propagated dependency
> - disable tests
Same as in #77561, this needs to be in the expected changelog
format, ex:
[base32]: Correct hash
[propagated-inputs]: Remove emacs-dash
etc.
Could you send a v2, please?
Thanks,
-- Ian
Information forwarded
to
andrew <at> trop.in, csantosb <at> inventati.org, divya <at> subvertising.org, hako <at> ultrarare.space, ian <at> retrospec.tv, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#77571
; Package
guix-patches
.
(Sun, 06 Apr 2025 18:33:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 77571 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs-xyz.scm (flightgear): Fix build.
[base32]: Correct hash
[propagated-inputs]: Remove emacs-dash
[arguments]: Disable tests explicitely
Change-Id: I61fdfb276ba49b0d4b712cba2221189f3adc6e8e
---
gnu/packages/emacs-xyz.scm | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 7c290d0833..8bf1c23349 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -2002,10 +2002,12 @@ (define-public emacs-magit-stgit
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "1z2dhc1m510iyrks5lxp3jlqg4n7qwwirbmxg4c4ll0xngfhnalc"))))
+ (base32 "10ql7gi586w65vds6wsh8bw5nr444xqhgh87khzcpfaglnw2lyaf"))))
(build-system emacs-build-system)
- (propagated-inputs (list emacs-magit emacs-transient emacs-llama
- emacs-dash))
+ (arguments
+ (list
+ #:tests? #f)) ;no tests
+ (propagated-inputs (list emacs-magit emacs-transient emacs-llama))
(home-page "https://github.com/stacked-git/magit-stgit")
(synopsis "StGit extension for Magit")
(description
base-commit: 90279af10615cd74e4c52851f7fec797d4d0f682
--
2.49.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#77571
; Package
guix-patches
.
(Mon, 07 Apr 2025 20:18:01 GMT)
Full text and
rfc822 format available.
Message #14 received at submit <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Cayetano Santos via Guix-patches via <guix-patches <at> gnu.org> writes:
> * gnu/packages/emacs-xyz.scm (flightgear): Fix build.
>
> [base32]: Correct hash
> [propagated-inputs]: Remove emacs-dash
> [arguments]: Disable tests explicitely
>
> Change-Id: I61fdfb276ba49b0d4b712cba2221189f3adc6e8e
> ---
> gnu/packages/emacs-xyz.scm | 8 +++++---
> 1 file changed, 5 insertions(+), 3 deletions(-)
Thanks both, I've pushed this to master as
f888993243f3f9361bee1a2e91e496dc7e369960.
Chris
[signature.asc (application/pgp-signature, inline)]
Reply sent
to
Christopher Baines <mail <at> cbaines.net>
:
You have taken responsibility.
(Mon, 07 Apr 2025 20:18:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Cayetano Santos <csantosb <at> inventati.org>
:
bug acknowledged by developer.
(Mon, 07 Apr 2025 20:18:02 GMT)
Full text and
rfc822 format available.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Tue, 06 May 2025 11:24:25 GMT)
Full text and
rfc822 format available.
This bug report was last modified 44 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.