All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/3] package/apache: add brotli as optional dependency
@ 2022-06-11 12:16 Bernd Kuhls
  2022-06-11 12:16 ` [Buildroot] [PATCH 2/3] package/apache: security bump version to 2.4.54 Bernd Kuhls
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Bernd Kuhls @ 2022-06-11 12:16 UTC (permalink / raw)
  To: buildroot

Fixes:
http://autobuild.buildroot.net/results/90e/90e3a2aaf0ce0451b80c71743209797abeb83d0a/
http://autobuild.buildroot.net/results/006/006f94bb216a77f073a5670fa2f393c43f15a977/
http://autobuild.buildroot.net/results/dd6/dd69e665e51ce6b30e303a4d4670e9edbb159aea/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/apache/apache.mk | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/package/apache/apache.mk b/package/apache/apache.mk
index b2c855aa36..a6fb59d26b 100644
--- a/package/apache/apache.mk
+++ b/package/apache/apache.mk
@@ -45,6 +45,13 @@ APACHE_CONF_OPTS = \
 	--with-mpm=$(APACHE_MPM) \
 	--disable-luajit
 
+ifeq ($(BR2_PACKAGE_BROTLI),y)
+APACHE_CONF_OPTS += --enable-brotli
+APACHE_DEPENDENCIES += brotli
+else
+APACHE_CONF_OPTS += --disable-brotli
+endif
+
 ifeq ($(BR2_PACKAGE_LIBXML2),y)
 APACHE_DEPENDENCIES += libxml2
 # Apache wants the path to the header file, where it can find
-- 
2.30.2

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

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

* [Buildroot] [PATCH 2/3] package/apache: security bump version to 2.4.54
  2022-06-11 12:16 [Buildroot] [PATCH 1/3] package/apache: add brotli as optional dependency Bernd Kuhls
@ 2022-06-11 12:16 ` Bernd Kuhls
  2022-07-13 10:55   ` Peter Korsgaard
  2022-06-11 12:16 ` [Buildroot] [PATCH 3/3] package/php: security bump version to 8.0.20 Bernd Kuhls
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 8+ messages in thread
From: Bernd Kuhls @ 2022-06-11 12:16 UTC (permalink / raw)
  To: buildroot

Changelog: https://downloads.apache.org/httpd/CHANGES_2.4.54

Fixes CVE-2022-26377, CVE-2022-28330, CVE-2022-28614, CVE-2022-28615,
CVE-2022-29404, CVE-2022-30522, CVE-2022-30556 and CVE-2022-31813.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/apache/apache.hash | 6 +++---
 package/apache/apache.mk   | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/package/apache/apache.hash b/package/apache/apache.hash
index 11dcdefe46..2c21a5bab8 100644
--- a/package/apache/apache.hash
+++ b/package/apache/apache.hash
@@ -1,5 +1,5 @@
-# From https://downloads.apache.org/httpd/httpd-2.4.53.tar.bz2.{sha256,sha512}
-sha256  d0bbd1121a57b5f2a6ff92d7b96f8050c5a45d3f14db118f64979d525858db63  httpd-2.4.53.tar.bz2
-sha512  07ef59594251a30a864cc9cc9a58ab788c2d006cef85b728f29533243927c63cb063e0867f2a306f37324c3adb9cf7dcb2402f3516b05c2c6f32469d475dd756  httpd-2.4.53.tar.bz2
+# From https://downloads.apache.org/httpd/httpd-2.4.54.tar.bz2.{sha256,sha512}
+sha256  eb397feeefccaf254f8d45de3768d9d68e8e73851c49afd5b7176d1ecf80c340  httpd-2.4.54.tar.bz2
+sha512  228493b2ff32c4142c6e484d304f2ea12e467498605fe12adce2b61388d8efe7b2e96ae2fd0abd1dc88a5f12d625e007d8da0ae5628cff2a5272806754f41e18  httpd-2.4.54.tar.bz2
 # Locally computed
 sha256  47b8c2b6c3309282a99d4a3001575c790fead690cc14734628c4667d2bbffc43  LICENSE
diff --git a/package/apache/apache.mk b/package/apache/apache.mk
index a6fb59d26b..315282baac 100644
--- a/package/apache/apache.mk
+++ b/package/apache/apache.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-APACHE_VERSION = 2.4.53
+APACHE_VERSION = 2.4.54
 APACHE_SOURCE = httpd-$(APACHE_VERSION).tar.bz2
 APACHE_SITE = https://downloads.apache.org/httpd
 APACHE_LICENSE = Apache-2.0
-- 
2.30.2

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

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

* [Buildroot] [PATCH 3/3] package/php: security bump version to 8.0.20
  2022-06-11 12:16 [Buildroot] [PATCH 1/3] package/apache: add brotli as optional dependency Bernd Kuhls
  2022-06-11 12:16 ` [Buildroot] [PATCH 2/3] package/apache: security bump version to 2.4.54 Bernd Kuhls
@ 2022-06-11 12:16 ` Bernd Kuhls
  2022-06-14 18:44   ` Arnout Vandecappelle
  2022-07-13 10:56   ` Peter Korsgaard
  2022-06-14 18:43 ` [Buildroot] [PATCH 1/3] package/apache: add brotli as optional dependency Arnout Vandecappelle
  2022-07-13 10:54 ` Peter Korsgaard
  3 siblings, 2 replies; 8+ messages in thread
From: Bernd Kuhls @ 2022-06-11 12:16 UTC (permalink / raw)
  To: buildroot

Changelog: https://www.php.net/ChangeLog-8.php#8.0.20

Fixes CVE-2022-31625 and CVE-2022-31626.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/php/php.hash | 2 +-
 package/php/php.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/php/php.hash b/package/php/php.hash
index e0aca101b4..2e9aa6880b 100644
--- a/package/php/php.hash
+++ b/package/php/php.hash
@@ -1,5 +1,5 @@
 # From https://www.php.net/downloads.php
-sha256  ba62219c4b0486cbb2a04f0796749a46b0ee1f5a142ed454212b4e2460cb0fab  php-8.0.19.tar.xz
+sha256  973fec765336ee01f47536a5db1c2eee98df9d34a41522b7b6c760159bf0a77b  php-8.0.20.tar.xz
 
 # License file
 sha256  a188db807d711536f71e27b7d36879d63480f7994dc18adc08e624b3c5430fff  LICENSE
diff --git a/package/php/php.mk b/package/php/php.mk
index 5053f34b85..f649a9bb8b 100644
--- a/package/php/php.mk
+++ b/package/php/php.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-PHP_VERSION = 8.0.19
+PHP_VERSION = 8.0.20
 PHP_SITE = https://www.php.net/distributions
 PHP_SOURCE = php-$(PHP_VERSION).tar.xz
 PHP_INSTALL_STAGING = YES
-- 
2.30.2

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

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

* Re: [Buildroot] [PATCH 1/3] package/apache: add brotli as optional dependency
  2022-06-11 12:16 [Buildroot] [PATCH 1/3] package/apache: add brotli as optional dependency Bernd Kuhls
  2022-06-11 12:16 ` [Buildroot] [PATCH 2/3] package/apache: security bump version to 2.4.54 Bernd Kuhls
  2022-06-11 12:16 ` [Buildroot] [PATCH 3/3] package/php: security bump version to 8.0.20 Bernd Kuhls
@ 2022-06-14 18:43 ` Arnout Vandecappelle
  2022-07-13 10:54 ` Peter Korsgaard
  3 siblings, 0 replies; 8+ messages in thread
From: Arnout Vandecappelle @ 2022-06-14 18:43 UTC (permalink / raw)
  To: Bernd Kuhls, buildroot



On 11/06/2022 14:16, Bernd Kuhls wrote:
> Fixes:
> http://autobuild.buildroot.net/results/90e/90e3a2aaf0ce0451b80c71743209797abeb83d0a/
> http://autobuild.buildroot.net/results/006/006f94bb216a77f073a5670fa2f393c43f15a977/
> http://autobuild.buildroot.net/results/dd6/dd69e665e51ce6b30e303a4d4670e9edbb159aea/
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

  Applied both to master, thanks.

  Regards,
  Arnout

> ---
>   package/apache/apache.mk | 7 +++++++
>   1 file changed, 7 insertions(+)
> 
> diff --git a/package/apache/apache.mk b/package/apache/apache.mk
> index b2c855aa36..a6fb59d26b 100644
> --- a/package/apache/apache.mk
> +++ b/package/apache/apache.mk
> @@ -45,6 +45,13 @@ APACHE_CONF_OPTS = \
>   	--with-mpm=$(APACHE_MPM) \
>   	--disable-luajit
>   
> +ifeq ($(BR2_PACKAGE_BROTLI),y)
> +APACHE_CONF_OPTS += --enable-brotli
> +APACHE_DEPENDENCIES += brotli
> +else
> +APACHE_CONF_OPTS += --disable-brotli
> +endif
> +
>   ifeq ($(BR2_PACKAGE_LIBXML2),y)
>   APACHE_DEPENDENCIES += libxml2
>   # Apache wants the path to the header file, where it can find
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 3/3] package/php: security bump version to 8.0.20
  2022-06-11 12:16 ` [Buildroot] [PATCH 3/3] package/php: security bump version to 8.0.20 Bernd Kuhls
@ 2022-06-14 18:44   ` Arnout Vandecappelle
  2022-07-13 10:56   ` Peter Korsgaard
  1 sibling, 0 replies; 8+ messages in thread
From: Arnout Vandecappelle @ 2022-06-14 18:44 UTC (permalink / raw)
  To: Bernd Kuhls, buildroot



On 11/06/2022 14:16, Bernd Kuhls wrote:
> Changelog: https://www.php.net/ChangeLog-8.php#8.0.20
> 
> Fixes CVE-2022-31625 and CVE-2022-31626.
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

  Applied to master, thanks.

  Regards,
  Arnout

> ---
>   package/php/php.hash | 2 +-
>   package/php/php.mk   | 2 +-
>   2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/package/php/php.hash b/package/php/php.hash
> index e0aca101b4..2e9aa6880b 100644
> --- a/package/php/php.hash
> +++ b/package/php/php.hash
> @@ -1,5 +1,5 @@
>   # From https://www.php.net/downloads.php
> -sha256  ba62219c4b0486cbb2a04f0796749a46b0ee1f5a142ed454212b4e2460cb0fab  php-8.0.19.tar.xz
> +sha256  973fec765336ee01f47536a5db1c2eee98df9d34a41522b7b6c760159bf0a77b  php-8.0.20.tar.xz
>   
>   # License file
>   sha256  a188db807d711536f71e27b7d36879d63480f7994dc18adc08e624b3c5430fff  LICENSE
> diff --git a/package/php/php.mk b/package/php/php.mk
> index 5053f34b85..f649a9bb8b 100644
> --- a/package/php/php.mk
> +++ b/package/php/php.mk
> @@ -4,7 +4,7 @@
>   #
>   ################################################################################
>   
> -PHP_VERSION = 8.0.19
> +PHP_VERSION = 8.0.20
>   PHP_SITE = https://www.php.net/distributions
>   PHP_SOURCE = php-$(PHP_VERSION).tar.xz
>   PHP_INSTALL_STAGING = YES
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/3] package/apache: add brotli as optional dependency
  2022-06-11 12:16 [Buildroot] [PATCH 1/3] package/apache: add brotli as optional dependency Bernd Kuhls
                   ` (2 preceding siblings ...)
  2022-06-14 18:43 ` [Buildroot] [PATCH 1/3] package/apache: add brotli as optional dependency Arnout Vandecappelle
@ 2022-07-13 10:54 ` Peter Korsgaard
  3 siblings, 0 replies; 8+ messages in thread
From: Peter Korsgaard @ 2022-07-13 10:54 UTC (permalink / raw)
  To: Bernd Kuhls, buildroot

On 11/06/2022 14.16, Bernd Kuhls wrote:
> Fixes:
> http://autobuild.buildroot.net/results/90e/90e3a2aaf0ce0451b80c71743209797abeb83d0a/
> http://autobuild.buildroot.net/results/006/006f94bb216a77f073a5670fa2f393c43f15a977/
> http://autobuild.buildroot.net/results/dd6/dd69e665e51ce6b30e303a4d4670e9edbb159aea/
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

Committed to 2022.02.x and 2022.05.x, thanks.

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

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

* Re: [Buildroot] [PATCH 2/3] package/apache: security bump version to 2.4.54
  2022-06-11 12:16 ` [Buildroot] [PATCH 2/3] package/apache: security bump version to 2.4.54 Bernd Kuhls
@ 2022-07-13 10:55   ` Peter Korsgaard
  0 siblings, 0 replies; 8+ messages in thread
From: Peter Korsgaard @ 2022-07-13 10:55 UTC (permalink / raw)
  To: Bernd Kuhls, buildroot

On 11/06/2022 14.16, Bernd Kuhls wrote:
> Changelog: https://downloads.apache.org/httpd/CHANGES_2.4.54
> 
> Fixes CVE-2022-26377, CVE-2022-28330, CVE-2022-28614, CVE-2022-28615,
> CVE-2022-29404, CVE-2022-30522, CVE-2022-30556 and CVE-2022-31813.
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

Committed to 2022.02.x and 2022.05.x, thanks.

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

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

* Re: [Buildroot] [PATCH 3/3] package/php: security bump version to 8.0.20
  2022-06-11 12:16 ` [Buildroot] [PATCH 3/3] package/php: security bump version to 8.0.20 Bernd Kuhls
  2022-06-14 18:44   ` Arnout Vandecappelle
@ 2022-07-13 10:56   ` Peter Korsgaard
  1 sibling, 0 replies; 8+ messages in thread
From: Peter Korsgaard @ 2022-07-13 10:56 UTC (permalink / raw)
  To: Bernd Kuhls, buildroot

On 11/06/2022 14.16, Bernd Kuhls wrote:
> Changelog: https://www.php.net/ChangeLog-8.php#8.0.20
> 
> Fixes CVE-2022-31625 and CVE-2022-31626.
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

Committed to 2022.02.x and 2022.05.x, thanks.

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

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

end of thread, other threads:[~2022-07-13 10:57 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-11 12:16 [Buildroot] [PATCH 1/3] package/apache: add brotli as optional dependency Bernd Kuhls
2022-06-11 12:16 ` [Buildroot] [PATCH 2/3] package/apache: security bump version to 2.4.54 Bernd Kuhls
2022-07-13 10:55   ` Peter Korsgaard
2022-06-11 12:16 ` [Buildroot] [PATCH 3/3] package/php: security bump version to 8.0.20 Bernd Kuhls
2022-06-14 18:44   ` Arnout Vandecappelle
2022-07-13 10:56   ` Peter Korsgaard
2022-06-14 18:43 ` [Buildroot] [PATCH 1/3] package/apache: add brotli as optional dependency Arnout Vandecappelle
2022-07-13 10:54 ` Peter Korsgaard

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.