mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH 1/2] redis: version bump 6.2.6 -> 7.2.2
@ 2023-10-24 13:42 Clemens Gruber
  2023-10-24 13:42 ` [ptxdist] [PATCH 2/2] hiredis: version bump 1.0.2 -> 1.2.0 Clemens Gruber
  2023-10-27  6:25 ` [ptxdist] [PATCH 1/2] redis: version bump 6.2.6 -> 7.2.2 Michael Olbrich
  0 siblings, 2 replies; 3+ messages in thread
From: Clemens Gruber @ 2023-10-24 13:42 UTC (permalink / raw)
  To: ptxdist; +Cc: Clemens Gruber

---
 .../0001-Support-systemd-and-set-a-data-directory.patch     | 6 +++---
 patches/{redis-6.2.6 => redis-7.2.2}/series                 | 0
 rules/redis.make                                            | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)
 rename patches/{redis-6.2.6 => redis-7.2.2}/0001-Support-systemd-and-set-a-data-directory.patch (87%)
 rename patches/{redis-6.2.6 => redis-7.2.2}/series (100%)

diff --git a/patches/redis-6.2.6/0001-Support-systemd-and-set-a-data-directory.patch b/patches/redis-7.2.2/0001-Support-systemd-and-set-a-data-directory.patch
similarity index 87%
rename from patches/redis-6.2.6/0001-Support-systemd-and-set-a-data-directory.patch
rename to patches/redis-7.2.2/0001-Support-systemd-and-set-a-data-directory.patch
index 34d8fd283..dde2a41a6 100644
--- a/patches/redis-6.2.6/0001-Support-systemd-and-set-a-data-directory.patch
+++ b/patches/redis-7.2.2/0001-Support-systemd-and-set-a-data-directory.patch
@@ -7,10 +7,10 @@ Subject: [PATCH] Support systemd and set a data directory
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 diff --git a/redis.conf b/redis.conf
-index e8eff2774981..8f76ea1c84e4 100644
+index 97f077b0d0aa..abc03980de3e 100644
 --- a/redis.conf
 +++ b/redis.conf
-@@ -272,7 +272,7 @@ daemonize no
+@@ -324,7 +324,7 @@ daemonize no
  # The default is "no". To run under upstart/systemd, you can simply uncomment
  # the line below:
  #
@@ -19,7 +19,7 @@ index e8eff2774981..8f76ea1c84e4 100644
  
  # If a pid file is specified, Redis writes it where specified at startup
  # and removes it at exit.
-@@ -451,7 +451,7 @@ rdb-del-sync-files no
+@@ -507,7 +507,7 @@ rdb-del-sync-files no
  # The Append Only File will also be created inside this directory.
  #
  # Note that you must specify a directory here, not a file name.
diff --git a/patches/redis-6.2.6/series b/patches/redis-7.2.2/series
similarity index 100%
rename from patches/redis-6.2.6/series
rename to patches/redis-7.2.2/series
diff --git a/rules/redis.make b/rules/redis.make
index 88b300921..d0c9bec48 100644
--- a/rules/redis.make
+++ b/rules/redis.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_REDIS) += redis
 #
 # Paths and names
 #
-REDIS_VERSION		:= 6.2.6
-REDIS_MD5		:= f69ca96b39ca93001add922d558f9842
+REDIS_VERSION		:= 7.2.2
+REDIS_MD5		:= 5ece867a53b30f31266a2130fd10568d
 REDIS			:= redis-$(REDIS_VERSION)
 REDIS_SUFFIX		:= tar.gz
 REDIS_URL		:= https://download.redis.io/releases/$(REDIS).$(REDIS_SUFFIX)
-- 
2.42.0




^ permalink raw reply	[flat|nested] 3+ messages in thread

* [ptxdist] [PATCH 2/2] hiredis: version bump 1.0.2 -> 1.2.0
  2023-10-24 13:42 [ptxdist] [PATCH 1/2] redis: version bump 6.2.6 -> 7.2.2 Clemens Gruber
@ 2023-10-24 13:42 ` Clemens Gruber
  2023-10-27  6:25 ` [ptxdist] [PATCH 1/2] redis: version bump 6.2.6 -> 7.2.2 Michael Olbrich
  1 sibling, 0 replies; 3+ messages in thread
From: Clemens Gruber @ 2023-10-24 13:42 UTC (permalink / raw)
  To: ptxdist; +Cc: Clemens Gruber

---
 rules/hiredis.make | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rules/hiredis.make b/rules/hiredis.make
index c0d183a36..cac7304d4 100644
--- a/rules/hiredis.make
+++ b/rules/hiredis.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_HIREDIS) += hiredis
 #
 # Paths and names
 #
-HIREDIS_VERSION		:= 1.0.2
-HIREDIS_MD5		:= 58e8313188f66ed1be1c220d14a7752e
+HIREDIS_VERSION		:= 1.2.0
+HIREDIS_MD5		:= 119767d178cfa79718a80c83e0d0e849
 HIREDIS			:= hiredis-$(HIREDIS_VERSION)
 HIREDIS_SUFFIX		:= tar.gz
 HIREDIS_URL		:= https://github.com/redis/hiredis/archive/v$(HIREDIS_VERSION).$(HIREDIS_SUFFIX)
-- 
2.42.0




^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [ptxdist] [PATCH 1/2] redis: version bump 6.2.6 -> 7.2.2
  2023-10-24 13:42 [ptxdist] [PATCH 1/2] redis: version bump 6.2.6 -> 7.2.2 Clemens Gruber
  2023-10-24 13:42 ` [ptxdist] [PATCH 2/2] hiredis: version bump 1.0.2 -> 1.2.0 Clemens Gruber
@ 2023-10-27  6:25 ` Michael Olbrich
  1 sibling, 0 replies; 3+ messages in thread
From: Michael Olbrich @ 2023-10-27  6:25 UTC (permalink / raw)
  To: Clemens Gruber; +Cc: ptxdist

Hi,

Your signed-of-by is missing.

Michael

On Tue, Oct 24, 2023 at 03:42:00PM +0200, Clemens Gruber wrote:
> ---
>  .../0001-Support-systemd-and-set-a-data-directory.patch     | 6 +++---
>  patches/{redis-6.2.6 => redis-7.2.2}/series                 | 0
>  rules/redis.make                                            | 4 ++--
>  3 files changed, 5 insertions(+), 5 deletions(-)
>  rename patches/{redis-6.2.6 => redis-7.2.2}/0001-Support-systemd-and-set-a-data-directory.patch (87%)
>  rename patches/{redis-6.2.6 => redis-7.2.2}/series (100%)
> 
> diff --git a/patches/redis-6.2.6/0001-Support-systemd-and-set-a-data-directory.patch b/patches/redis-7.2.2/0001-Support-systemd-and-set-a-data-directory.patch
> similarity index 87%
> rename from patches/redis-6.2.6/0001-Support-systemd-and-set-a-data-directory.patch
> rename to patches/redis-7.2.2/0001-Support-systemd-and-set-a-data-directory.patch
> index 34d8fd283..dde2a41a6 100644
> --- a/patches/redis-6.2.6/0001-Support-systemd-and-set-a-data-directory.patch
> +++ b/patches/redis-7.2.2/0001-Support-systemd-and-set-a-data-directory.patch
> @@ -7,10 +7,10 @@ Subject: [PATCH] Support systemd and set a data directory
>   1 file changed, 2 insertions(+), 2 deletions(-)
>  
>  diff --git a/redis.conf b/redis.conf
> -index e8eff2774981..8f76ea1c84e4 100644
> +index 97f077b0d0aa..abc03980de3e 100644
>  --- a/redis.conf
>  +++ b/redis.conf
> -@@ -272,7 +272,7 @@ daemonize no
> +@@ -324,7 +324,7 @@ daemonize no
>   # The default is "no". To run under upstart/systemd, you can simply uncomment
>   # the line below:
>   #
> @@ -19,7 +19,7 @@ index e8eff2774981..8f76ea1c84e4 100644
>   
>   # If a pid file is specified, Redis writes it where specified at startup
>   # and removes it at exit.
> -@@ -451,7 +451,7 @@ rdb-del-sync-files no
> +@@ -507,7 +507,7 @@ rdb-del-sync-files no
>   # The Append Only File will also be created inside this directory.
>   #
>   # Note that you must specify a directory here, not a file name.
> diff --git a/patches/redis-6.2.6/series b/patches/redis-7.2.2/series
> similarity index 100%
> rename from patches/redis-6.2.6/series
> rename to patches/redis-7.2.2/series
> diff --git a/rules/redis.make b/rules/redis.make
> index 88b300921..d0c9bec48 100644
> --- a/rules/redis.make
> +++ b/rules/redis.make
> @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_REDIS) += redis
>  #
>  # Paths and names
>  #
> -REDIS_VERSION		:= 6.2.6
> -REDIS_MD5		:= f69ca96b39ca93001add922d558f9842
> +REDIS_VERSION		:= 7.2.2
> +REDIS_MD5		:= 5ece867a53b30f31266a2130fd10568d
>  REDIS			:= redis-$(REDIS_VERSION)
>  REDIS_SUFFIX		:= tar.gz
>  REDIS_URL		:= https://download.redis.io/releases/$(REDIS).$(REDIS_SUFFIX)
> -- 
> 2.42.0
> 
> 
> 

-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-10-27  6:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-24 13:42 [ptxdist] [PATCH 1/2] redis: version bump 6.2.6 -> 7.2.2 Clemens Gruber
2023-10-24 13:42 ` [ptxdist] [PATCH 2/2] hiredis: version bump 1.0.2 -> 1.2.0 Clemens Gruber
2023-10-27  6:25 ` [ptxdist] [PATCH 1/2] redis: version bump 6.2.6 -> 7.2.2 Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox