Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/squid: update to 6.13
@ 2025-02-02 17:40 Waldemar Brodkorb
  2025-02-02 18:12 ` Baruch Siach via buildroot
  0 siblings, 1 reply; 3+ messages in thread
From: Waldemar Brodkorb @ 2025-02-02 17:40 UTC (permalink / raw)
  To: buildroot

See here for changes:
https://github.com/squid-cache/squid/releases/tag/SQUID_6_11
https://github.com/squid-cache/squid/releases/tag/SQUID_6_12
https://github.com/squid-cache/squid/releases/tag/SQUID_6_13

Download URL moved to Github.

Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
---
 package/squid/squid.hash | 5 +----
 package/squid/squid.mk   | 4 ++--
 2 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/package/squid/squid.hash b/package/squid/squid.hash
index e0dede862a..df52a3be16 100644
--- a/package/squid/squid.hash
+++ b/package/squid/squid.hash
@@ -1,6 +1,3 @@
-# From http://www.squid-cache.org/Versions/v6/squid-6.10.tar.xz.asc
-md5  86deefa7282c4388be95260aa4d4cf6a  squid-6.10.tar.xz
-sha1  70e90865df0e4e9ba7765b622da40bda9bb8fc5d  squid-6.10.tar.xz
 # Locally calculated
-sha256  0b07b187e723f04770dd25beb89aec12030a158696aa8892d87c8b26853408a7  squid-6.10.tar.xz
+sha256  232e0567946ccc0115653c3c18f01e83f2d9cc49c43d9dead8b319af0b35ad52  squid-6.13.tar.xz
 sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  COPYING
diff --git a/package/squid/squid.mk b/package/squid/squid.mk
index bfb3664082..021d21430d 100644
--- a/package/squid/squid.mk
+++ b/package/squid/squid.mk
@@ -4,9 +4,9 @@
 #
 ################################################################################
 
-SQUID_VERSION = 6.10
+SQUID_VERSION = 6.13
 SQUID_SOURCE = squid-$(SQUID_VERSION).tar.xz
-SQUID_SITE = http://www.squid-cache.org/Versions/v6
+SQUID_SITE = https://github.com/squid-cache/squid/releases/download/SQUID_6_13
 SQUID_LICENSE = GPL-2.0+
 SQUID_LICENSE_FILES = COPYING
 SQUID_CPE_ID_VENDOR = squid-cache
-- 
2.30.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH] package/squid: update to 6.13
  2025-02-02 17:40 [Buildroot] [PATCH] package/squid: update to 6.13 Waldemar Brodkorb
@ 2025-02-02 18:12 ` Baruch Siach via buildroot
  2025-02-02 22:21   ` Peter Korsgaard
  0 siblings, 1 reply; 3+ messages in thread
From: Baruch Siach via buildroot @ 2025-02-02 18:12 UTC (permalink / raw)
  To: Waldemar Brodkorb; +Cc: buildroot

Hi Waldemar,

On Sun, Feb 02 2025, Waldemar Brodkorb wrote:
> See here for changes:
> https://github.com/squid-cache/squid/releases/tag/SQUID_6_11
> https://github.com/squid-cache/squid/releases/tag/SQUID_6_12
> https://github.com/squid-cache/squid/releases/tag/SQUID_6_13
>
> Download URL moved to Github.
>
> Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
> ---
>  package/squid/squid.hash | 5 +----
>  package/squid/squid.mk   | 4 ++--
>  2 files changed, 3 insertions(+), 6 deletions(-)
>
> diff --git a/package/squid/squid.hash b/package/squid/squid.hash
> index e0dede862a..df52a3be16 100644
> --- a/package/squid/squid.hash
> +++ b/package/squid/squid.hash
> @@ -1,6 +1,3 @@
> -# From http://www.squid-cache.org/Versions/v6/squid-6.10.tar.xz.asc
> -md5  86deefa7282c4388be95260aa4d4cf6a  squid-6.10.tar.xz
> -sha1  70e90865df0e4e9ba7765b622da40bda9bb8fc5d  squid-6.10.tar.xz
>  # Locally calculated
> -sha256  0b07b187e723f04770dd25beb89aec12030a158696aa8892d87c8b26853408a7  squid-6.10.tar.xz
> +sha256  232e0567946ccc0115653c3c18f01e83f2d9cc49c43d9dead8b319af0b35ad52  squid-6.13.tar.xz
>  sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  COPYING
> diff --git a/package/squid/squid.mk b/package/squid/squid.mk
> index bfb3664082..021d21430d 100644
> --- a/package/squid/squid.mk
> +++ b/package/squid/squid.mk
> @@ -4,9 +4,9 @@
>  #
>  ################################################################################
>  
> -SQUID_VERSION = 6.10
> +SQUID_VERSION = 6.13
>  SQUID_SOURCE = squid-$(SQUID_VERSION).tar.xz
> -SQUID_SITE = http://www.squid-cache.org/Versions/v6
> +SQUID_SITE = https://github.com/squid-cache/squid/releases/download/SQUID_6_13

You can use the subst macro to avoid version number duplication (untested):

SQUID_SITE = https://github.com/squid-cache/squid/releases/download/SQUID_$(subst .,_,$(SQUID_VERSION))

baruch

>  SQUID_LICENSE = GPL-2.0+
>  SQUID_LICENSE_FILES = COPYING
>  SQUID_CPE_ID_VENDOR = squid-cache

-- 
                                                     ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch@tkos.co.il - tel: +972.52.368.4656, http://www.tkos.co.il -
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH] package/squid: update to 6.13
  2025-02-02 18:12 ` Baruch Siach via buildroot
@ 2025-02-02 22:21   ` Peter Korsgaard
  0 siblings, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2025-02-02 22:21 UTC (permalink / raw)
  To: Baruch Siach via buildroot

>>>>> "Baruch" == Baruch Siach via buildroot <buildroot@buildroot.org> writes:

 > Hi Waldemar,
 > On Sun, Feb 02 2025, Waldemar Brodkorb wrote:
 >> See here for changes:
 >> https://github.com/squid-cache/squid/releases/tag/SQUID_6_11
 >> https://github.com/squid-cache/squid/releases/tag/SQUID_6_12
 >> https://github.com/squid-cache/squid/releases/tag/SQUID_6_13
 >> 
 >> Download URL moved to Github.
 >> 
 >> Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
 >> ---
 >> package/squid/squid.hash | 5 +----
 >> package/squid/squid.mk   | 4 ++--
 >> 2 files changed, 3 insertions(+), 6 deletions(-)
 >> 
 >> diff --git a/package/squid/squid.hash b/package/squid/squid.hash
 >> index e0dede862a..df52a3be16 100644
 >> --- a/package/squid/squid.hash
 >> +++ b/package/squid/squid.hash
 >> @@ -1,6 +1,3 @@
 >> -# From http://www.squid-cache.org/Versions/v6/squid-6.10.tar.xz.asc
 >> -md5  86deefa7282c4388be95260aa4d4cf6a  squid-6.10.tar.xz
 >> -sha1  70e90865df0e4e9ba7765b622da40bda9bb8fc5d  squid-6.10.tar.xz
 >> # Locally calculated
 >> -sha256  0b07b187e723f04770dd25beb89aec12030a158696aa8892d87c8b26853408a7  squid-6.10.tar.xz
 >> +sha256  232e0567946ccc0115653c3c18f01e83f2d9cc49c43d9dead8b319af0b35ad52  squid-6.13.tar.xz
 >> sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  COPYING
 >> diff --git a/package/squid/squid.mk b/package/squid/squid.mk
 >> index bfb3664082..021d21430d 100644
 >> --- a/package/squid/squid.mk
 >> +++ b/package/squid/squid.mk
 >> @@ -4,9 +4,9 @@
 >> #
 >> ################################################################################
 >> 
 >> -SQUID_VERSION = 6.10
 >> +SQUID_VERSION = 6.13
 >> SQUID_SOURCE = squid-$(SQUID_VERSION).tar.xz
 >> -SQUID_SITE = http://www.squid-cache.org/Versions/v6
 >> +SQUID_SITE = https://github.com/squid-cache/squid/releases/download/SQUID_6_13

 > You can use the subst macro to avoid version number duplication (untested):

 > SQUID_SITE =
 > https://github.com/squid-cache/squid/releases/download/SQUID_$(subst
 > .,_,$(SQUID_VERSION))

Committed after making that change, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2025-02-02 22:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-02 17:40 [Buildroot] [PATCH] package/squid: update to 6.13 Waldemar Brodkorb
2025-02-02 18:12 ` Baruch Siach via buildroot
2025-02-02 22:21   ` Peter Korsgaard

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