* [bug#61990] [PATCH] gnu: grep: Update to 3.9
@ 2023-03-05 22:36 Andy Tai
2023-03-12 23:43 ` [bug#61990] grep in core-updates Andreas Enge
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Andy Tai @ 2023-03-05 22:36 UTC (permalink / raw)
To: 61990; +Cc: Andy Tai
* gnu/packages/base.scm (grep): Update to 3.9
---
gnu/packages/base.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index fa5f1ef32b..0b0776edb3 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -106,14 +106,14 @@ (define-public hello
(define-public grep
(package
(name "grep")
- (version "3.6")
+ (version "3.9")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnu/grep/grep-"
version ".tar.xz"))
(sha256
(base32
- "0gipv6bzkm1aihj0ncqpyh164xrzgcxcv9r1kwzyk2g1mzl1azk6"))
+ "16dmf2hsr27lnlxk3vgy9h0ngj5s7gjj5d7y6nplqgg2kr013kdb"))
(patches (search-patches "grep-timing-sensitive-test.patch"))))
(build-system gnu-build-system)
(native-inputs (list perl)) ;some of the tests require it
base-commit: 833febb522bd37a38156b558b108372b89a34949
--
2.39.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [bug#61990] grep in core-updates
2023-03-05 22:36 [bug#61990] [PATCH] gnu: grep: Update to 3.9 Andy Tai
@ 2023-03-12 23:43 ` Andreas Enge
2023-03-25 22:10 ` [bug#61990] [PATCH v2] gnu: grep: Update to 3.10 Andy Tai
` (4 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Andreas Enge @ 2023-03-12 23:43 UTC (permalink / raw)
To: 61990
Hello Andy,
in core-updates, grep is currently at version 3.8, and it has an enormous
number of dependent packages. So I would suggest to hold this patch back
until the core-updates merge has happened.
Andreas
^ permalink raw reply [flat|nested] 9+ messages in thread
* [bug#61990] [PATCH v2] gnu: grep: Update to 3.10
2023-03-05 22:36 [bug#61990] [PATCH] gnu: grep: Update to 3.9 Andy Tai
2023-03-12 23:43 ` [bug#61990] grep in core-updates Andreas Enge
@ 2023-03-25 22:10 ` Andy Tai
2023-04-04 11:18 ` Simon Tournier
2023-04-19 17:12 ` [bug#61990] Andy Tai
` (3 subsequent siblings)
5 siblings, 1 reply; 9+ messages in thread
From: Andy Tai @ 2023-03-25 22:10 UTC (permalink / raw)
To: 61990; +Cc: Andy Tai
* gnu/packages/base.scm (grep): Update to 3.10
---
gnu/packages/base.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index fa5f1ef32b..5363370e53 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -106,14 +106,14 @@ (define-public hello
(define-public grep
(package
(name "grep")
- (version "3.6")
+ (version "3.10")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnu/grep/grep-"
version ".tar.xz"))
(sha256
(base32
- "0gipv6bzkm1aihj0ncqpyh164xrzgcxcv9r1kwzyk2g1mzl1azk6"))
+ "0nw5ys5bhcr6c162rl43q5qpmf0bia3bhlcvhw072npvjnssbvr4"))
(patches (search-patches "grep-timing-sensitive-test.patch"))))
(build-system gnu-build-system)
(native-inputs (list perl)) ;some of the tests require it
base-commit: 04724e59971b03f86a410285653d24005c62b924
--
2.39.2
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [bug#61990] [PATCH v2] gnu: grep: Update to 3.10
2023-03-25 22:10 ` [bug#61990] [PATCH v2] gnu: grep: Update to 3.10 Andy Tai
@ 2023-04-04 11:18 ` Simon Tournier
0 siblings, 0 replies; 9+ messages in thread
From: Simon Tournier @ 2023-04-04 11:18 UTC (permalink / raw)
To: Andy Tai, 61990; +Cc: Andy Tai
Hi,
On Sat, 25 Mar 2023 at 15:10, Andy Tai <atai@atai.org> wrote:
> * gnu/packages/base.scm (grep): Update to 3.10
As Andreas pointed, this patch cannot go to master because it is an
intensive rebuild,
--8<---------------cut here---------------start------------->8---
$ guix refresh -l grep | cut -f1 -d':'
Building the following 2879 packages would ensure 7748 dependent packages are rebuilt
--8<---------------cut here---------------end--------------->8---
Therefore, this change must go to the core-updates branch as documented
by point #9 in [1].
1: https://guix.gnu.org/manual/devel/en/guix.html#Submitting-Patches
Cheers,
simon
^ permalink raw reply [flat|nested] 9+ messages in thread
* [bug#61990]
2023-03-05 22:36 [bug#61990] [PATCH] gnu: grep: Update to 3.9 Andy Tai
2023-03-12 23:43 ` [bug#61990] grep in core-updates Andreas Enge
2023-03-25 22:10 ` [bug#61990] [PATCH v2] gnu: grep: Update to 3.10 Andy Tai
@ 2023-04-19 17:12 ` Andy Tai
2023-04-27 6:20 ` [bug#61990] [PATCH v3] gnu: grep: Update to 3.10 Andy Tai
` (2 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Andy Tai @ 2023-04-19 17:12 UTC (permalink / raw)
To: 61990
will determine next steps once the current core-update is merged to master
^ permalink raw reply [flat|nested] 9+ messages in thread
* [bug#61990] [PATCH v3] gnu: grep: Update to 3.10
2023-03-05 22:36 [bug#61990] [PATCH] gnu: grep: Update to 3.9 Andy Tai
` (2 preceding siblings ...)
2023-04-19 17:12 ` [bug#61990] Andy Tai
@ 2023-04-27 6:20 ` Andy Tai
2023-05-03 17:23 ` Simon Tournier
2023-05-11 7:43 ` [bug#61990] [PATCH core-updates v4] " Andy Tai
2023-10-10 15:49 ` [bug#61990] [PATCH core-updates v5] gnu: grep: Update to 3.11 Andy Tai
5 siblings, 1 reply; 9+ messages in thread
From: Andy Tai @ 2023-04-27 6:20 UTC (permalink / raw)
To: 61990; +Cc: Andy Tai
* gnu/packages/base.scm (grep): Update to 3.10
---
gnu/packages/base.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index 6911ea78be..4d036d97e8 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -107,14 +107,14 @@ (define-public hello
(define-public grep
(package
(name "grep")
- (version "3.8")
+ (version "3.10")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnu/grep/grep-"
version ".tar.xz"))
(sha256
(base32
- "10n3mc9n1xmg85hpxyr4wiqzfp27ffxzwhvkv021j27vnk0pr3a9"))
+ "0nw5ys5bhcr6c162rl43q5qpmf0bia3bhlcvhw072npvjnssbvr4"))
(patches (search-patches "grep-timing-sensitive-test.patch"))))
(build-system gnu-build-system)
(native-inputs (list perl)) ;some of the tests require it
base-commit: db19e30673a72ff8ee34276ede5dd081e6023cd3
--
2.39.2
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [bug#61990] [PATCH v3] gnu: grep: Update to 3.10
2023-04-27 6:20 ` [bug#61990] [PATCH v3] gnu: grep: Update to 3.10 Andy Tai
@ 2023-05-03 17:23 ` Simon Tournier
0 siblings, 0 replies; 9+ messages in thread
From: Simon Tournier @ 2023-05-03 17:23 UTC (permalink / raw)
To: Andy Tai, 61990; +Cc: Andy Tai
Hi,
On Wed, 26 Apr 2023 at 23:20, Andy Tai <atai@atai.org> wrote:
> * gnu/packages/base.scm (grep): Update to 3.10
This should go to a dedicated branch. It leads to the rebuild of ~1/3
of all the packages.
For instance, the recent update of grep in core-updates had broken many
packages because some default behaviour changed.
Cheers,
simon
^ permalink raw reply [flat|nested] 9+ messages in thread
* [bug#61990] [PATCH core-updates v4] gnu: grep: Update to 3.10
2023-03-05 22:36 [bug#61990] [PATCH] gnu: grep: Update to 3.9 Andy Tai
` (3 preceding siblings ...)
2023-04-27 6:20 ` [bug#61990] [PATCH v3] gnu: grep: Update to 3.10 Andy Tai
@ 2023-05-11 7:43 ` Andy Tai
2023-10-10 15:49 ` [bug#61990] [PATCH core-updates v5] gnu: grep: Update to 3.11 Andy Tai
5 siblings, 0 replies; 9+ messages in thread
From: Andy Tai @ 2023-05-11 7:43 UTC (permalink / raw)
To: 61990; +Cc: Andy Tai
* gnu/packages/base.scm (grep): Update to 3.10
---
gnu/packages/base.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index d2f276c447..aa439e76db 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -107,14 +107,14 @@ (define-public hello
(define-public grep
(package
(name "grep")
- (version "3.8")
+ (version "3.10")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnu/grep/grep-"
version ".tar.xz"))
(sha256
(base32
- "10n3mc9n1xmg85hpxyr4wiqzfp27ffxzwhvkv021j27vnk0pr3a9"))
+ "0nw5ys5bhcr6c162rl43q5qpmf0bia3bhlcvhw072npvjnssbvr4"))
(patches (search-patches "grep-timing-sensitive-test.patch"))))
(build-system gnu-build-system)
(native-inputs (list perl)) ;some of the tests require it
base-commit: b4e5844700b2304bfde451322feb5797bf0c6179
--
2.39.2
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [bug#61990] [PATCH core-updates v5] gnu: grep: Update to 3.11
2023-03-05 22:36 [bug#61990] [PATCH] gnu: grep: Update to 3.9 Andy Tai
` (4 preceding siblings ...)
2023-05-11 7:43 ` [bug#61990] [PATCH core-updates v4] " Andy Tai
@ 2023-10-10 15:49 ` Andy Tai
5 siblings, 0 replies; 9+ messages in thread
From: Andy Tai @ 2023-10-10 15:49 UTC (permalink / raw)
To: 61990; +Cc: Andy Tai
* gnu/packages/base.scm (grep): Update to 3.11
---
gnu/packages/base.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index c0813f7de0..4d8b6a7037 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -109,14 +109,14 @@ (define-public hello
(define-public grep
(package
(name "grep")
- (version "3.8")
+ (version "3.10")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnu/grep/grep-"
version ".tar.xz"))
(sha256
(base32
- "10n3mc9n1xmg85hpxyr4wiqzfp27ffxzwhvkv021j27vnk0pr3a9"))
+ "0nw5ys5bhcr6c162rl43q5qpmf0bia3bhlcvhw072npvjnssbvr4"))
(patches (search-patches "grep-timing-sensitive-test.patch"))))
(build-system gnu-build-system)
(native-inputs (list perl)) ;some of the tests require it
base-commit: f4e8baf3806e79d7111d2943859865ae4ee0b59d
--
2.41.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2023-10-10 15:49 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-05 22:36 [bug#61990] [PATCH] gnu: grep: Update to 3.9 Andy Tai
2023-03-12 23:43 ` [bug#61990] grep in core-updates Andreas Enge
2023-03-25 22:10 ` [bug#61990] [PATCH v2] gnu: grep: Update to 3.10 Andy Tai
2023-04-04 11:18 ` Simon Tournier
2023-04-19 17:12 ` [bug#61990] Andy Tai
2023-04-27 6:20 ` [bug#61990] [PATCH v3] gnu: grep: Update to 3.10 Andy Tai
2023-05-03 17:23 ` Simon Tournier
2023-05-11 7:43 ` [bug#61990] [PATCH core-updates v4] " Andy Tai
2023-10-10 15:49 ` [bug#61990] [PATCH core-updates v5] gnu: grep: Update to 3.11 Andy Tai
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.