GNU bug report logs -
#56995
[PATCH] gnu: ugrep: Use gexps and add zstd to inputs.
Previous Next
Reported by: kiasoc5 <kiasoc5 <at> disroot.org>
Date: Fri, 5 Aug 2022 04:34:02 UTC
Severity: normal
Tags: patch
Done: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
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 56995 in the body.
You can then email your comments to 56995 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#56995
; Package
guix-patches
.
(Fri, 05 Aug 2022 04:34:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
kiasoc5 <kiasoc5 <at> disroot.org>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Fri, 05 Aug 2022 04:34:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/search.scm (ugrep)[snippets]: Remove trailing #t.
[arguments]: Use gexps.
[inputs]: Add zstd.
---
gnu/packages/search.scm | 28 +++++++++++++++-------------
1 file changed, 15 insertions(+), 13 deletions(-)
diff --git a/gnu/packages/search.scm b/gnu/packages/search.scm
index db5579a708..620c8dbe1f 100644
--- a/gnu/packages/search.scm
+++ b/gnu/packages/search.scm
@@ -32,6 +32,7 @@ (define-module (gnu packages search)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix git-download)
+ #:use-module (guix gexp)
#:use-module (guix utils)
#:use-module (guix build-system gnu)
#:use-module (guix build-system perl)
@@ -687,8 +688,7 @@ (define-public ugrep
(delete-file-recursively "bin") ; pre-built executables
(for-each delete-file (find-files "tests" "^archive\\..*"))
(for-each delete-file (find-files "tests" "^.*\\.pdf$"))
- (for-each delete-file (find-files "tests" "^.*\\.class$"))
- #t))))
+ (for-each delete-file (find-files "tests" "^.*\\.class$"))))))
(build-system gnu-build-system)
(inputs
(list bzip2
@@ -696,18 +696,20 @@ (define-public ugrep
lz4
lzip ;; lzma
pcre2
- zlib))
+ zlib
+ zstd))
(arguments
- `(#:tests? #f ; no way to rebuild the binary input files
- #:test-target "test"
- #:phases
- (modify-phases %standard-phases
- (add-before 'check 'check-setup
- (lambda _
- ;; Unpatch shebangs in tests.
- (substitute* '("tests/Hello.bat"
- "tests/Hello.sh")
- (("#!/gnu/store/.*/bin/sh") "#!/bin/sh")))))))
+ (list
+ #:tests? #f ; no way to rebuild the binary input files
+ #:test-target "test"
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'check 'check-setup
+ (lambda _
+ ;; Unpatch shebangs in tests.
+ (substitute* '("tests/Hello.bat"
+ "tests/Hello.sh")
+ (("#!/gnu/store/.*/bin/sh") "#!/bin/sh")))))))
(home-page "https://github.com/Genivia/ugrep/")
(synopsis "Faster grep with an interactive query UI")
(description "Ugrep is a ultra fast searcher of file systems, text
--
2.37.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#56995
; Package
guix-patches
.
(Fri, 05 Aug 2022 05:16:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 56995 <at> debbugs.gnu.org (full text, mbox):
On Fri, Aug 05 2022, 01:10:00 AM -0400
kiasoc5 <kiasoc5 <at> disroot.org> wrote:
> Last email had old version of patch, please use this one. Sorry paren
> for using cc instead of reply-to.
Also forgot to check my git-send email arguments. Sending to the
correct issue.
> * gnu/packages/search.scm (ugrep)[snippets]: Use gexps. Remove
> trailing #t. [snippets]: Use gexps.
> [arguments]: Likewise.
> [inputs]: Add zstd lib.
> ---
> gnu/packages/search.scm | 33 +++++++++++++++++----------------
> 1 file changed, 17 insertions(+), 16 deletions(-)
>
> diff --git a/gnu/packages/search.scm b/gnu/packages/search.scm
> index db5579a708..65a642c259 100644
> --- a/gnu/packages/search.scm
> +++ b/gnu/packages/search.scm
> @@ -32,6 +32,7 @@ (define-module (gnu packages search)
> #:use-module (guix packages)
> #:use-module (guix download)
> #:use-module (guix git-download)
> + #:use-module (guix gexp)
> #:use-module (guix utils)
> #:use-module (guix build-system gnu)
> #:use-module (guix build-system perl)
> @@ -681,14 +682,12 @@ (define-public ugrep
> (sha256
> (base32
> "03b3lahc3zzsznaqnrk47f1cnd5jwakvwrkz0r4m2crk09cpfv57")) (file-name
> (git-file-name name version))
> - (modules '((guix build utils)))
> - (snippet
> - '(begin
> + (snippet #~(begin
> + (use-modules (guix build utils))
> (delete-file-recursively "bin") ; pre-built
> executables (for-each delete-file (find-files "tests"
> "^archive\\..*")) (for-each delete-file (find-files "tests"
> "^.*\\.pdf$"))
> - (for-each delete-file (find-files "tests"
> "^.*\\.class$"))
> - #t))))
> + (for-each delete-file (find-files "tests"
> "^.*\\.class$")))))) (build-system gnu-build-system)
> (inputs
> (list bzip2
> @@ -696,18 +695,20 @@ (define-public ugrep
> lz4
> lzip ;; lzma
> pcre2
> - zlib))
> + zlib
> + `(,zstd "lib"))
> (arguments
> - `(#:tests? #f ; no way to rebuild the binary
> input files
> - #:test-target "test"
> - #:phases
> - (modify-phases %standard-phases
> - (add-before 'check 'check-setup
> - (lambda _
> - ;; Unpatch shebangs in tests.
> - (substitute* '("tests/Hello.bat"
> - "tests/Hello.sh")
> - (("#!/gnu/store/.*/bin/sh") "#!/bin/sh")))))))
> + (list
> + #:tests? #f ; no way to rebuild the binary
> input files
> + #:test-target "test"
> + #:phases
> + #~(modify-phases %standard-phases
> + (add-before 'check 'check-setup
> + (lambda _
> + ;; Unpatch shebangs in tests.
> + (substitute* '("tests/Hello.bat"
> + "tests/Hello.sh")
> + (("#!/gnu/store/.*/bin/sh") "#!/bin/sh")))))))
> (home-page "https://github.com/Genivia/ugrep/")
> (synopsis "Faster grep with an interactive query UI")
> (description "Ugrep is a ultra fast searcher of file systems,
> text
Information forwarded
to
guix-patches <at> gnu.org
:
bug#56995
; Package
guix-patches
.
(Fri, 05 Aug 2022 07:37:01 GMT)
Full text and
rfc822 format available.
Message #11 received at 56995 <at> debbugs.gnu.org (full text, mbox):
Am Freitag, dem 05.08.2022 um 05:14 +0000 schrieb kiasoc5:
> Use gexps and add zstd lib to inputs.
Useful hint: If your patch title contains "and", it probably should be
a series of two or more patches. 😉️
Cheers
Information forwarded
to
guix-patches <at> gnu.org
:
bug#56995
; Package
guix-patches
.
(Sat, 06 Aug 2022 05:39:01 GMT)
Full text and
rfc822 format available.
Message #14 received at 56995 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/search.scm (ugrep)[inputs]: Add zstd lib.
---
gnu/packages/search.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/search.scm b/gnu/packages/search.scm
index db5579a708..175a31cd5d 100644
--- a/gnu/packages/search.scm
+++ b/gnu/packages/search.scm
@@ -696,7 +696,8 @@ (define-public ugrep
lz4
lzip ;; lzma
pcre2
- zlib))
+ zlib
+ `(,zstd "lib"))
(arguments
`(#:tests? #f ; no way to rebuild the binary input files
#:test-target "test"
--
2.37.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#56995
; Package
guix-patches
.
(Sat, 06 Aug 2022 05:39:02 GMT)
Full text and
rfc822 format available.
Message #17 received at 56995 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/search.scm (ugrep)[source]: Convert snippet to gexp.
[arguments]: Use gexps.
---
gnu/packages/search.scm | 36 ++++++++++++++++++------------------
1 file changed, 18 insertions(+), 18 deletions(-)
diff --git a/gnu/packages/search.scm b/gnu/packages/search.scm
index 175a31cd5d..34dc6d5faf 100644
--- a/gnu/packages/search.scm
+++ b/gnu/packages/search.scm
@@ -32,6 +32,7 @@ (define-module (gnu packages search)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix git-download)
+ #:use-module (guix gexp)
#:use-module (guix utils)
#:use-module (guix build-system gnu)
#:use-module (guix build-system perl)
@@ -681,14 +682,12 @@ (define-public ugrep
(sha256
(base32 "03b3lahc3zzsznaqnrk47f1cnd5jwakvwrkz0r4m2crk09cpfv57"))
(file-name (git-file-name name version))
- (modules '((guix build utils)))
- (snippet
- '(begin
- (delete-file-recursively "bin") ; pre-built executables
- (for-each delete-file (find-files "tests" "^archive\\..*"))
- (for-each delete-file (find-files "tests" "^.*\\.pdf$"))
- (for-each delete-file (find-files "tests" "^.*\\.class$"))
- #t))))
+ (snippet #~(begin
+ (use-modules (guix build utils))
+ (delete-file-recursively "bin") ; pre-built executables
+ (for-each delete-file (find-files "tests" "^archive\\..*"))
+ (for-each delete-file (find-files "tests" "^.*\\.pdf$"))
+ (for-each delete-file (find-files "tests" "^.*\\.class$"))))))
(build-system gnu-build-system)
(inputs
(list bzip2
@@ -698,18 +697,19 @@ (define-public ugrep
pcre2
zlib
`(,zstd "lib"))
- (arguments
- `(#:tests? #f ; no way to rebuild the binary input files
+ (arguments
+ (list
+ #:tests? #f ; no way to rebuild the binary input files
#:test-target "test"
#:phases
- (modify-phases %standard-phases
- (add-before 'check 'check-setup
- (lambda _
- ;; Unpatch shebangs in tests.
- (substitute* '("tests/Hello.bat"
- "tests/Hello.sh")
- (("#!/gnu/store/.*/bin/sh") "#!/bin/sh")))))))
- (home-page "https://github.com/Genivia/ugrep/")
+ #~(modify-phases %standard-phases
+ (add-before 'check 'check-setup
+ (lambda _
+ ;; Unpatch shebangs in tests.
+ (substitute* '("tests/Hello.bat"
+ "tests/Hello.sh")
+ (("#!/gnu/store/.*/bin/sh") "#!/bin/sh")))))))
+ (home-page "https://github.com/Genivia/ugrep/")
(synopsis "Faster grep with an interactive query UI")
(description "Ugrep is a ultra fast searcher of file systems, text
and binary files, source code, archives, compressed files, documents, and
--
2.37.1
Reply sent
to
Liliana Marie Prikler <liliana.prikler <at> gmail.com>
:
You have taken responsibility.
(Sat, 06 Aug 2022 14:42:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
kiasoc5 <kiasoc5 <at> disroot.org>
:
bug acknowledged by developer.
(Sat, 06 Aug 2022 14:42:02 GMT)
Full text and
rfc822 format available.
Message #22 received at 56995-done <at> debbugs.gnu.org (full text, mbox):
Am Samstag, dem 06.08.2022 um 01:37 -0400 schrieb kiasoc5:
> * gnu/packages/search.scm (ugrep)[source]: Convert snippet to gexp.
> [arguments]: Use gexps.
Pushed with a fix on the first patch and slightly modified ChangeLog.
Cheers
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sun, 04 Sep 2022 11:24:11 GMT)
Full text and
rfc822 format available.
This bug report was last modified 2 years and 286 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.