GNU bug report logs -
#65285
[PATCH] gnu: update emacs-orderless to 1.0
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 65285 in the body.
You can then email your comments to 65285 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#65285
; Package
guix-patches
.
(Mon, 14 Aug 2023 10:53:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Piotr Kwiecinski <piokwiecinski <at> gmail.com>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Mon, 14 Aug 2023 10:53:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
previously used commit was pointing to 0.8 instead 1.0
---
gnu/packages/emacs-xyz.scm | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 0f0751e39a..e62c71752e 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -11290,8 +11290,7 @@ (define-public emacs-selectrum
(license license:expat)))
(define-public emacs-orderless
- (let ((commit "004cee6b8e01f8eb0cb1c683d0a637b14890600f"))
- (package
+ (package
(name "emacs-orderless")
(version "1.0")
(source
@@ -11299,9 +11298,9 @@ (define-public emacs-orderless
(method git-fetch)
(uri (git-reference
(url "https://github.com/oantolin/orderless")
- (commit commit)))
+ (commit version)))
(sha256
- (base32 "115bwqi2yc44bgvcl7lha8p2s6jgh5hksn4wa9s0kpfxhi14jwmy"))
+ (base32 "1jmwyici90v82gqjq44n0scrwhmg05pi9yplkn4bpss80c83dxp4"))
(file-name (git-file-name name version))))
(build-system emacs-build-system)
(arguments
@@ -11322,7 +11321,7 @@ (define-public emacs-orderless
that match all of the components in any order. Each component can match in
any one of several ways: literally, as a regexp, as an initialism, in the flex
style, or as multiple word prefixes.")
- (license license:gpl3+))))
+ (license license:gpl3+)))
(define-public emacs-consult
(package
base-commit: b15381460ed74e72792ff182dd2ca7a06ba59b0c
--
2.39.2
Information forwarded
to
guix-patches <at> gnu.org
:
bug#65285
; Package
guix-patches
.
(Tue, 15 Aug 2023 07:30:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 65285 <at> debbugs.gnu.org (full text, mbox):
Hi Piotr,
Thank you for the patch! There're some minor changes to make.
On Mon, 14 Aug 2023 18:52:38 +0800,
Piotr Kwiecinski wrote:
>
> previously used commit was pointing to 0.8 instead 1.0
> ---
Please write commit logs in ChangeLog format [1]. You can also check
the commit history for examples.
For this commit, the following can be used:
--8<---------------cut here---------------start------------->8---
gnu: emacs-orderless: Update to 1.0.
* gnu/packages/emacs-xyz.scm (emacs-orderless): Update to 1.0, previously used
commit was pointing to 0.8.
--8<---------------cut here---------------end--------------->8---
> gnu/packages/emacs-xyz.scm | 9 ++++-----
> 1 file changed, 4 insertions(+), 5 deletions(-)
>
> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> index 0f0751e39a..e62c71752e 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -11290,8 +11290,7 @@ (define-public emacs-selectrum
> (license license:expat)))
>
> (define-public emacs-orderless
> - (let ((commit "004cee6b8e01f8eb0cb1c683d0a637b14890600f"))
> - (package
> + (package
> (name "emacs-orderless")
> (version "1.0")
> (source
> @@ -11299,9 +11298,9 @@ (define-public emacs-orderless
> (method git-fetch)
> (uri (git-reference
> (url "https://github.com/oantolin/orderless")
> - (commit commit)))
> + (commit version)))
> (sha256
> - (base32 "115bwqi2yc44bgvcl7lha8p2s6jgh5hksn4wa9s0kpfxhi14jwmy"))
> + (base32 "1jmwyici90v82gqjq44n0scrwhmg05pi9yplkn4bpss80c83dxp4"))
> (file-name (git-file-name name version))))
> (build-system emacs-build-system)
> (arguments
> @@ -11322,7 +11321,7 @@ (define-public emacs-orderless
> that match all of the components in any order. Each component can match in
> any one of several ways: literally, as a regexp, as an initialism, in the flex
> style, or as multiple word prefixes.")
> - (license license:gpl3+))))
> + (license license:gpl3+)))
>
> (define-public emacs-consult
> (package
>
> base-commit: b15381460ed74e72792ff182dd2ca7a06ba59b0c
> --
> 2.39.2
I think it's fine to also change the indentation here, remove two
leading spaces in every line after the "(package" one, your editor may
do this for you. :)
Thanks
[1]: <https://www.gnu.org/prep/standards/standards.html#Change-Logs>
Information forwarded
to
guix-patches <at> gnu.org
:
bug#65285
; Package
guix-patches
.
(Tue, 15 Aug 2023 09:20:01 GMT)
Full text and
rfc822 format available.
Message #11 received at 65285 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs-xyz.scm (emacs-orderless): Update to 1.0, previously used
commit was pointing to 0.8.
---
gnu/packages/emacs-xyz.scm | 57 +++++++++++++++++++-------------------
1 file changed, 28 insertions(+), 29 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 0f0751e39a..877895f011 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -11290,39 +11290,38 @@ (define-public emacs-selectrum
(license license:expat)))
(define-public emacs-orderless
- (let ((commit "004cee6b8e01f8eb0cb1c683d0a637b14890600f"))
- (package
- (name "emacs-orderless")
- (version "1.0")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/oantolin/orderless")
- (commit commit)))
- (sha256
- (base32 "115bwqi2yc44bgvcl7lha8p2s6jgh5hksn4wa9s0kpfxhi14jwmy"))
- (file-name (git-file-name name version))))
- (build-system emacs-build-system)
- (arguments
- (list
- #:phases
- #~(modify-phases %standard-phases
- (add-after 'install 'makeinfo
- (lambda _
- (invoke "makeinfo" "orderless.texi")
- (install-file "orderless.info"
- (string-append #$output "/share/info")))))))
- (native-inputs
- (list texinfo))
- (home-page "https://github.com/oantolin/orderless")
- (synopsis "Emacs completion style that matches multiple regexps in any order")
- (description "This package provides an orderless completion style that
+ (package
+ (name "emacs-orderless")
+ (version "1.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/oantolin/orderless")
+ (commit version)))
+ (sha256
+ (base32 "1jmwyici90v82gqjq44n0scrwhmg05pi9yplkn4bpss80c83dxp4"))
+ (file-name (git-file-name name version))))
+ (build-system emacs-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'install 'makeinfo
+ (lambda _
+ (invoke "makeinfo" "orderless.texi")
+ (install-file "orderless.info"
+ (string-append #$output "/share/info")))))))
+ (native-inputs
+ (list texinfo))
+ (home-page "https://github.com/oantolin/orderless")
+ (synopsis "Emacs completion style that matches multiple regexps in any order")
+ (description "This package provides an orderless completion style that
divides the pattern into space-separated components, and matches candidates
that match all of the components in any order. Each component can match in
any one of several ways: literally, as a regexp, as an initialism, in the flex
style, or as multiple word prefixes.")
- (license license:gpl3+))))
+ (license license:gpl3+)))
(define-public emacs-consult
(package
base-commit: 642ae73ec0c38ee4758ad9d39f16232c8945c6b6
--
2.39.2
Information forwarded
to
guix-patches <at> gnu.org
:
bug#65285
; Package
guix-patches
.
(Tue, 15 Aug 2023 09:34:01 GMT)
Full text and
rfc822 format available.
Message #14 received at 65285 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Hi Hilton,
thank you for the guidance and patience.
I hope the updated patch is correct now.
On Tue, 15 Aug 2023 at 09:29, Hilton Chain <hako <at> ultrarare.space> wrote:
> Hi Piotr,
>
> Thank you for the patch! There're some minor changes to make.
>
> On Mon, 14 Aug 2023 18:52:38 +0800,
> Piotr Kwiecinski wrote:
> >
> > previously used commit was pointing to 0.8 instead 1.0
> > ---
>
>
> Please write commit logs in ChangeLog format [1]. You can also check
> the commit history for examples.
>
> For this commit, the following can be used:
> --8<---------------cut here---------------start------------->8---
> gnu: emacs-orderless: Update to 1.0.
>
> * gnu/packages/emacs-xyz.scm (emacs-orderless): Update to 1.0, previously
> used
> commit was pointing to 0.8.
> --8<---------------cut here---------------end--------------->8---
>
>
> > gnu/packages/emacs-xyz.scm | 9 ++++-----
> > 1 file changed, 4 insertions(+), 5 deletions(-)
> >
> > diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> > index 0f0751e39a..e62c71752e 100644
> > --- a/gnu/packages/emacs-xyz.scm
> > +++ b/gnu/packages/emacs-xyz.scm
> > @@ -11290,8 +11290,7 @@ (define-public emacs-selectrum
> > (license license:expat)))
> >
> > (define-public emacs-orderless
> > - (let ((commit "004cee6b8e01f8eb0cb1c683d0a637b14890600f"))
> > - (package
> > + (package
> > (name "emacs-orderless")
> > (version "1.0")
> > (source
> > @@ -11299,9 +11298,9 @@ (define-public emacs-orderless
> > (method git-fetch)
> > (uri (git-reference
> > (url "https://github.com/oantolin/orderless")
> > - (commit commit)))
> > + (commit version)))
> > (sha256
> > - (base32
> "115bwqi2yc44bgvcl7lha8p2s6jgh5hksn4wa9s0kpfxhi14jwmy"))
> > + (base32
> "1jmwyici90v82gqjq44n0scrwhmg05pi9yplkn4bpss80c83dxp4"))
> > (file-name (git-file-name name version))))
> > (build-system emacs-build-system)
> > (arguments
> > @@ -11322,7 +11321,7 @@ (define-public emacs-orderless
> > that match all of the components in any order. Each component can
> match in
> > any one of several ways: literally, as a regexp, as an initialism, in
> the flex
> > style, or as multiple word prefixes.")
> > - (license license:gpl3+))))
> > + (license license:gpl3+)))
> >
> > (define-public emacs-consult
> > (package
> >
> > base-commit: b15381460ed74e72792ff182dd2ca7a06ba59b0c
> > --
> > 2.39.2
>
>
> I think it's fine to also change the indentation here, remove two
> leading spaces in every line after the "(package" one, your editor may
> do this for you. :)
>
>
> Thanks
>
> [1]: <https://www.gnu.org/prep/standards/standards.html#Change-Logs>
>
--
Regards
Piotr Kwiecinski
[Message part 2 (text/html, inline)]
Reply sent
to
Hilton Chain <hako <at> ultrarare.space>
:
You have taken responsibility.
(Sun, 27 Aug 2023 04:37:04 GMT)
Full text and
rfc822 format available.
Notification sent
to
Piotr Kwiecinski <piokwiecinski <at> gmail.com>
:
bug acknowledged by developer.
(Sun, 27 Aug 2023 04:37:04 GMT)
Full text and
rfc822 format available.
Message #19 received at 65285-done <at> debbugs.gnu.org (full text, mbox):
Hi Piotr,
On Tue, 15 Aug 2023 17:19:03 +0800,
Piotr Kwiecinski wrote:
>
> * gnu/packages/emacs-xyz.scm (emacs-orderless): Update to 1.0, previously used
> commit was pointing to 0.8.
> ---
Applied as e9bea73e2da021cfccfb5356d378f2feb668742c, thank you for the
contribution!
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sun, 24 Sep 2023 11:24:17 GMT)
Full text and
rfc822 format available.
This bug report was last modified 1 year and 229 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.