GNU bug report logs -
#73160
[PATCH] gnu: emacs-exwm-firefox: Update to 1.3.
Previous Next
Reported by: Ian Eure <ian <at> retrospec.tv>
Date: Tue, 10 Sep 2024 04:30:02 UTC
Severity: normal
Tags: patch
Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
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 73160 in the body.
You can then email your comments to 73160 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#73160
; Package
guix-patches
.
(Tue, 10 Sep 2024 04:30:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Ian Eure <ian <at> retrospec.tv>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Tue, 10 Sep 2024 04:30: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 (emacs-exwm-firefox): Update to 1.3.
Change-Id: I17e2ef89f2fcf6fc717243444ede3b72a6d6f395
---
gnu/packages/emacs-xyz.scm | 62 +++++++++++++++++++-------------------
1 file changed, 31 insertions(+), 31 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 92e0275519..1755b736bc 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -32977,39 +32977,39 @@ (define-public emacs-exwm-firefox-core
(license (list license:gpl3+)))))
(define-public emacs-exwm-firefox
- (let ((commit "ba4044cf57f99656bbe1974278336b6abcb15497")) ;version bump
- (package
- (name "emacs-exwm-firefox")
- (version "1.2")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://codeberg.org/emacs-weirdware/exwm-firefox.git")
- (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32 "1x9hc94a5wygyw714q98jbk4kjvys2ra94qdc2cbgkm6iq982rvq"))))
- (build-system emacs-build-system)
- (arguments
- (list
- #:phases
- #~(modify-phases %standard-phases
- (add-after 'unpack 'chdir
- (lambda _ (chdir "lisp"))))
- #:tests? #true
- #:test-command #~(list "emacs" "-Q" "--batch"
- "-l" "../test/exwm-firefox--tests.el"
- "-l" "exwm-firefox.el"
- "-f" "ert-run-tests-batch-and-exit")))
- (inputs (list emacs-exwm emacs-exwm-firefox-core emacs-s))
- (home-page "https://codeberg.org/emacs-weirdware/exwm-firefox")
- (synopsis "Enhanced support for Firefox under EXWM")
- (description
- "This package adds enhanced support for Firefox (and forks
+ (package
+ (name "emacs-exwm-firefox")
+ (version "1.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://codeberg.org/emacs-weirdware/exwm-firefox.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0jrnsnygi9kwq17dfjpjksmijx39w7ccsk4gzk5l2cg7ncydsja2"))))
+ (build-system emacs-build-system)
+ (arguments
+ (list #:tests? #t
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'install
+ (lambda args
+ (with-directory-excursion "lisp"
+ (apply (assoc-ref %standard-phases 'install) args)))))))
+ (propagated-inputs
+ (list
+ upstream/emacs-exwm-firefox-core
+ upstream/emacs-s
+ upstream/emacs-exwm))
+ (home-page "https://codeberg.org/emacs-weirdware/exwm-firefox")
+ (synopsis "Enhanced support for Firefox under EXWM")
+ (description
+ "This package adds enhanced support for Firefox (and forks
based on Firefox) under EXWM. Keybindings intentionally mirror other Emacs
navigation controls.")
- (license (list license:gpl3+)))))
+ (license (list license:gpl3+))))
(define-public emacs-exwm-ss
(let ((commit "b11d3df7a50c39b4e1b92ef8a6685cf80b53912c")
--
2.45.2
Information forwarded
to
guix-patches <at> gnu.org
:
bug#73160
; Package
guix-patches
.
(Tue, 10 Sep 2024 05:15:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 73160 <at> debbugs.gnu.org (full text, mbox):
Hello Ian,
Ian Eure <ian <at> retrospec.tv> writes:
> * gnu/packages/emacs-xyz.scm (emacs-exwm-firefox): Update to 1.3.
The changelog commit message should mention the other changes done here,
such as removal of the #:test-command argument, and substitution of
inputs by propagated inputs, as well as upstream/ (?) input variants.
About the later, I'm a bit confused; I don't see any
upstream/emacs-exwm-firefox-core package variable in our source for
example, and the naming strikes me as odd (we'd typically have something
like 'emacs-exwm-firefox-core-next' if an unreleased or newer than
packaged version was needed by something).
Could you expound the commit message and clarify the above?
--
Thanks,
Maxim
Information forwarded
to
guix-patches <at> gnu.org
:
bug#73160
; Package
guix-patches
.
(Tue, 10 Sep 2024 14:02:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 73160 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs-xyz.scm (emacs-exwm-firefox): Update to 1.3.
Change-Id: I7717134ae37eca41201bc285a9a3e3a95e8b4cc1
---
gnu/packages/emacs-xyz.scm | 61 +++++++++++++++++++-------------------
1 file changed, 30 insertions(+), 31 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 92e0275519..0bc42a419f 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -32977,39 +32977,38 @@ (define-public emacs-exwm-firefox-core
(license (list license:gpl3+)))))
(define-public emacs-exwm-firefox
- (let ((commit "ba4044cf57f99656bbe1974278336b6abcb15497")) ;version bump
- (package
- (name "emacs-exwm-firefox")
- (version "1.2")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://codeberg.org/emacs-weirdware/exwm-firefox.git")
- (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32 "1x9hc94a5wygyw714q98jbk4kjvys2ra94qdc2cbgkm6iq982rvq"))))
- (build-system emacs-build-system)
- (arguments
- (list
- #:phases
- #~(modify-phases %standard-phases
- (add-after 'unpack 'chdir
- (lambda _ (chdir "lisp"))))
- #:tests? #true
- #:test-command #~(list "emacs" "-Q" "--batch"
- "-l" "../test/exwm-firefox--tests.el"
- "-l" "exwm-firefox.el"
- "-f" "ert-run-tests-batch-and-exit")))
- (inputs (list emacs-exwm emacs-exwm-firefox-core emacs-s))
- (home-page "https://codeberg.org/emacs-weirdware/exwm-firefox")
- (synopsis "Enhanced support for Firefox under EXWM")
- (description
- "This package adds enhanced support for Firefox (and forks
+ (package
+ (name "emacs-exwm-firefox")
+ (version "1.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://codeberg.org/emacs-weirdware/exwm-firefox.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0jrnsnygi9kwq17dfjpjksmijx39w7ccsk4gzk5l2cg7ncydsja2"))))
+ (build-system emacs-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'chdir
+ (lambda _ (chdir "lisp"))))
+ #:tests? #true
+ #:test-command #~(list "emacs" "-Q" "--batch"
+ "-l" "../test/exwm-firefox--tests.el"
+ "-l" "exwm-firefox.el"
+ "-f" "ert-run-tests-batch-and-exit")))
+ (inputs (list emacs-exwm emacs-exwm-firefox-core emacs-s))
+ (home-page "https://codeberg.org/emacs-weirdware/exwm-firefox")
+ (synopsis "Enhanced support for Firefox under EXWM")
+ (description
+ "This package adds enhanced support for Firefox (and forks
based on Firefox) under EXWM. Keybindings intentionally mirror other Emacs
navigation controls.")
- (license (list license:gpl3+)))))
+ (license (list license:gpl3+))))
(define-public emacs-exwm-ss
(let ((commit "b11d3df7a50c39b4e1b92ef8a6685cf80b53912c")
--
2.46.0
Reply sent
to
Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
:
You have taken responsibility.
(Sun, 15 Sep 2024 08:52:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
Ian Eure <ian <at> retrospec.tv>
:
bug acknowledged by developer.
(Sun, 15 Sep 2024 08:52:02 GMT)
Full text and
rfc822 format available.
Message #16 received at 73160-done <at> debbugs.gnu.org (full text, mbox):
Hello,
> * gnu/packages/emacs-xyz.scm (emacs-exwm-firefox): Update to 1.3.
Applied. Thank you.
Regards,
--
Nicolas Goaziou
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sun, 13 Oct 2024 11:24:09 GMT)
Full text and
rfc822 format available.
This bug report was last modified 251 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.