All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/3] package/libks: bump version to 1.8.2
@ 2023-02-05  8:16 Bernd Kuhls
  2023-02-05  8:16 ` [Buildroot] [PATCH 2/3] package/sofia-sip: bump version to 1.13.12 Bernd Kuhls
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Bernd Kuhls @ 2023-02-05  8:16 UTC (permalink / raw)
  To: buildroot; +Cc: Gregory Dymarek

Needed for upcoming bump of freeswitch to version 1.10.9.

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

diff --git a/package/libks/libks.hash b/package/libks/libks.hash
index d4ad7ebbbc..dba442bdd2 100644
--- a/package/libks/libks.hash
+++ b/package/libks/libks.hash
@@ -1,3 +1,3 @@
 # Locally computed
-sha256  b42544a5544ac00ceeb0675a9e6a99c8e6ecc752452c7f38c6ffe32fbedb906d  libks-1.8.0.tar.gz
+sha256  131d7896c81a7f3c9bf06860e4f564ca558d4be1614568fec688b3eb66d38107  libks-1.8.2.tar.gz
 sha256  1d1327f37b58a4c9ce520fcf9dd3f348c7c639229ee7aed41c47164a8f7836cd  copyright
diff --git a/package/libks/libks.mk b/package/libks/libks.mk
index 4aca5c5c4c..c4f0cd5c78 100644
--- a/package/libks/libks.mk
+++ b/package/libks/libks.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-LIBKS_VERSION = 1.8.0
+LIBKS_VERSION = 1.8.2
 LIBKS_SITE = $(call github,signalwire,libks,v$(LIBKS_VERSION))
 LIBKS_LICENSE = MIT
 LIBKS_LICENSE_FILES = copyright
-- 
2.39.1

_______________________________________________
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/sofia-sip: bump version to 1.13.12
  2023-02-05  8:16 [Buildroot] [PATCH 1/3] package/libks: bump version to 1.8.2 Bernd Kuhls
@ 2023-02-05  8:16 ` Bernd Kuhls
  2023-02-05 10:19   ` Yann E. MORIN
  2023-02-05  8:16 ` [Buildroot] [PATCH 3/3] package/freeswitch: security bump version to 1.10.9 Bernd Kuhls
  2023-02-05 10:18 ` [Buildroot] [PATCH 1/3] package/libks: bump version to 1.8.2 Yann E. MORIN
  2 siblings, 1 reply; 8+ messages in thread
From: Bernd Kuhls @ 2023-02-05  8:16 UTC (permalink / raw)
  To: buildroot; +Cc: Gregory Dymarek

Switch to github helper due to lack of upstream-provided tarball.

Needed for upcoming bump of freeswitch to version 1.10.9.

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

diff --git a/package/sofia-sip/sofia-sip.hash b/package/sofia-sip/sofia-sip.hash
index 776136bb15..4617725571 100644
--- a/package/sofia-sip/sofia-sip.hash
+++ b/package/sofia-sip/sofia-sip.hash
@@ -1,4 +1,4 @@
 # Locally computed
-sha256  daf75c41408c559c2d58a8fd4d39be4a8ff5144bc1db220d4dbc28deeed6670a  sofia-sip-1.13.9-f6ee306084.tar.gz
+sha256  03dda8653367501b7b1188a6b6513416902372e27475553de9318ee89ac390ff  sofia-sip-1.13.12.tar.gz
 sha256  e1c0890440efe31b6cd2ee2abf895eb917c787799f079133f5809414d90d5d60  COPYING
 sha256  b402ae58cf355b33be8fa023f704a039e3d41ecaccd2bbcda43ca31d703e4556  COPYRIGHTS
diff --git a/package/sofia-sip/sofia-sip.mk b/package/sofia-sip/sofia-sip.mk
index 9071d964e4..59c365365b 100644
--- a/package/sofia-sip/sofia-sip.mk
+++ b/package/sofia-sip/sofia-sip.mk
@@ -4,10 +4,11 @@
 #
 ################################################################################
 
-SOFIA_SIP_VERSION = 1.13.9
-SOFIA_SIP_SOURCE = sofia-sip-$(SOFIA_SIP_VERSION)-f6ee306084.tar.gz
-SOFIA_SIP_SITE = https://files.freeswitch.org/downloads/libs/sofia-sip
+SOFIA_SIP_VERSION = 1.13.12
+SOFIA_SIP_SITE = $(call github,freeswitch,sofia-sip,v$(SOFIA_SIP_VERSION))
 SOFIA_SIP_INSTALL_STAGING = YES
+# Fetched from github, no pre-generated configure script provided
+SOFIA_SIP_AUTORECONF = YES
 SOFIA_SIP_DEPENDENCIES = host-pkgconf
 SOFIA_SIP_LICENSE = LGPL-2.1+
 SOFIA_SIP_LICENSE_FILES = COPYING COPYRIGHTS
-- 
2.39.1

_______________________________________________
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/freeswitch: security bump version to 1.10.9
  2023-02-05  8:16 [Buildroot] [PATCH 1/3] package/libks: bump version to 1.8.2 Bernd Kuhls
  2023-02-05  8:16 ` [Buildroot] [PATCH 2/3] package/sofia-sip: bump version to 1.13.12 Bernd Kuhls
@ 2023-02-05  8:16 ` Bernd Kuhls
  2023-02-05  9:01   ` Peter Korsgaard
  2023-02-05 10:18 ` [Buildroot] [PATCH 1/3] package/libks: bump version to 1.8.2 Yann E. MORIN
  2 siblings, 1 reply; 8+ messages in thread
From: Bernd Kuhls @ 2023-02-05  8:16 UTC (permalink / raw)
  To: buildroot; +Cc: Gregory Dymarek

Release notes:
https://github.com/signalwire/freeswitch/releases/tag/v1.10.9

Upstream removed zrtp support:
https://github.com/signalwire/freeswitch/pull/1848

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
Upstream release notes declares:
"This is an important release containing security fixes and stability
 improvements." without mentioning any CVEs.

 package/freeswitch/freeswitch.hash |  5 ++---
 package/freeswitch/freeswitch.mk   | 11 +----------
 2 files changed, 3 insertions(+), 13 deletions(-)

diff --git a/package/freeswitch/freeswitch.hash b/package/freeswitch/freeswitch.hash
index 18a36ff23c..3518d60b49 100644
--- a/package/freeswitch/freeswitch.hash
+++ b/package/freeswitch/freeswitch.hash
@@ -1,11 +1,10 @@
-# From https://files.freeswitch.org/freeswitch-releases/freeswitch-1.10.8.-release.tar.xz.sha256
-sha256  1176b26b2f463de2980e5be953f81ced94d23c784452bd41e086d3933a88be5f  freeswitch-1.10.8.-release.tar.xz
+# From https://files.freeswitch.org/freeswitch-releases/freeswitch-1.10.9.-release.tar.xz.sha256
+sha256  f649d53af7beccb59c1d03864cd8f2d287e4ea26ef652b5c4969d29121ced063 freeswitch-1.10.9.-release.tar.xz
 # Locally computed
 sha256  75c933202f40939cdc3827fce20a1efdaa38291e2b5a65d234eb16e2cffda66a  COPYING
 sha256  c3e3388768dae8bf4edcc4108f95be815b8a05c0b0aef6e4c3d8df81affdfa34  docs/OPENH264_BINARY_LICENSE.txt
 sha256  e8e26b16da14aa3e6ed5c22c705fdc1f45d6225fca461ea9f7314bcdfdc414c4  libs/apr/LICENSE
 sha256  8267348d5af1262c11d1a08de2f5afc77457755f1ac658627dd9acf71011d615  libs/libvpx/LICENSE
 sha256  2b2cc1180c7e6988328ad2033b04b80117419db9c4c584918bbb3cfec7e9364f  libs/libyuv/LICENSE
-sha256  7d72a8aee2c4b1a084200487992a5d86f5df6b535727a14c1874918e99d24600  libs/libzrtp/src/zrtp_legal.c
 sha256  8e19d42a1eec9561f3f347253ddf2e385c55f392f025bb0fd41b88dbf38db5ae  libs/srtp/LICENSE
 sha256  ab00a482b6a3902e40211b43c5d0441962ea99b6cc7c25c0f243fa270b78d482  src/mod/codecs/mod_isac/LICENSE
diff --git a/package/freeswitch/freeswitch.mk b/package/freeswitch/freeswitch.mk
index 6234dd8e97..7497cc4964 100644
--- a/package/freeswitch/freeswitch.mk
+++ b/package/freeswitch/freeswitch.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-FREESWITCH_VERSION = 1.10.8
+FREESWITCH_VERSION = 1.10.9
 FREESWITCH_SOURCE = freeswitch-$(FREESWITCH_VERSION).-release.tar.xz
 FREESWITCH_SITE = https://files.freeswitch.org/freeswitch-releases
 # External modules need headers/libs from staging
@@ -81,15 +81,6 @@ FREESWITCH_CONF_OPTS = \
 	--without-python \
 	--disable-system-xmlrpc-c
 
-# zrtp supports a limited set of archs, sparc support is also broken due
-# to a broken ld call by gcc, see libs/libzrtp/include/zrtp_config.h
-ifeq ($(BR2_i386)$(BR2_arm)$(BR2_armeb)$(BR2_aarch64)$(BR2_aarch64_be)$(BR2_mips)$(BR2_mipsel)$(BR2_mips64)$(BR2_mips64el)$(BR2_powerpc)$(BR2_powerpc64)$(BR2_powerpc64le)$(BR2_x86_64),y)
-FREESWITCH_LICENSE_FILES += libs/libzrtp/src/zrtp_legal.c
-FREESWITCH_CONF_OPTS += --enable-zrtp
-else
-FREESWITCH_CONF_OPTS += --disable-zrtp
-endif
-
 # Enable optional modules
 FREESWITCH_ENABLED_MODULES += \
 	applications/mod_avmd \
-- 
2.39.1

_______________________________________________
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 3/3] package/freeswitch: security bump version to 1.10.9
  2023-02-05  8:16 ` [Buildroot] [PATCH 3/3] package/freeswitch: security bump version to 1.10.9 Bernd Kuhls
@ 2023-02-05  9:01   ` Peter Korsgaard
  2023-02-05 10:15     ` Yann E. MORIN
  0 siblings, 1 reply; 8+ messages in thread
From: Peter Korsgaard @ 2023-02-05  9:01 UTC (permalink / raw)
  To: buildroot

On 05/02/2023 09.16, Bernd Kuhls wrote:
> Release notes:
> https://github.com/signalwire/freeswitch/releases/tag/v1.10.9
> 
> Upstream removed zrtp support:
> https://github.com/signalwire/freeswitch/pull/1848
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

Fixed the checkpatch warning and applied, thanks;

package/freeswitch/freeswitch.hash:2: separation does not match 
expectation (http://nightly.buildroot.org/#adding-packages-hash

-- 
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/freeswitch: security bump version to 1.10.9
  2023-02-05  9:01   ` Peter Korsgaard
@ 2023-02-05 10:15     ` Yann E. MORIN
  2023-02-05 10:53       ` Peter Korsgaard
  0 siblings, 1 reply; 8+ messages in thread
From: Yann E. MORIN @ 2023-02-05 10:15 UTC (permalink / raw)
  To: Peter Korsgaard; +Cc: buildroot

Peter, All,

On 2023-02-05 10:01 +0100, Peter Korsgaard spake thusly:
> On 05/02/2023 09.16, Bernd Kuhls wrote:
> >Release notes:
> >https://github.com/signalwire/freeswitch/releases/tag/v1.10.9
> >
> >Upstream removed zrtp support:
> >https://github.com/signalwire/freeswitch/pull/1848
> >
> >Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> 
> Fixed the checkpatch warning and applied, thanks;

You only applied this patch 3/3, but patches 1/3 and 2/3 (likbks and
sofia-sip bumps) are marked as being needed first. So I've applied them
now.

Bernd, it would have been nice that the patch bumping freeswitch would
mention that it has a dependency on newer libks and sofia-sip versions.
Indeed, if the freeswitch bump is backported to a maintenance branch,
them the two other bumps will have to be backported too, and if that is
not mentioned in the commit log, that will not be obvious to notice.

Regards,
Yann E. MORIN.

> package/freeswitch/freeswitch.hash:2: separation does not match expectation
> (http://nightly.buildroot.org/#adding-packages-hash
> 
> -- 
> Bye, Peter Korsgaard
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
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/libks: bump version to 1.8.2
  2023-02-05  8:16 [Buildroot] [PATCH 1/3] package/libks: bump version to 1.8.2 Bernd Kuhls
  2023-02-05  8:16 ` [Buildroot] [PATCH 2/3] package/sofia-sip: bump version to 1.13.12 Bernd Kuhls
  2023-02-05  8:16 ` [Buildroot] [PATCH 3/3] package/freeswitch: security bump version to 1.10.9 Bernd Kuhls
@ 2023-02-05 10:18 ` Yann E. MORIN
  2 siblings, 0 replies; 8+ messages in thread
From: Yann E. MORIN @ 2023-02-05 10:18 UTC (permalink / raw)
  To: Bernd Kuhls; +Cc: Gregory Dymarek, buildroot

Bernd, All,

On 2023-02-05 09:16 +0100, Bernd Kuhls spake thusly:
> Needed for upcoming bump of freeswitch to version 1.10.9.

Please also mention that in the package that actually requires the bump.

> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  package/libks/libks.hash | 2 +-
>  package/libks/libks.mk   | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/package/libks/libks.hash b/package/libks/libks.hash
> index d4ad7ebbbc..dba442bdd2 100644
> --- a/package/libks/libks.hash
> +++ b/package/libks/libks.hash
> @@ -1,3 +1,3 @@
>  # Locally computed
> -sha256  b42544a5544ac00ceeb0675a9e6a99c8e6ecc752452c7f38c6ffe32fbedb906d  libks-1.8.0.tar.gz
> +sha256  131d7896c81a7f3c9bf06860e4f564ca558d4be1614568fec688b3eb66d38107  libks-1.8.2.tar.gz
>  sha256  1d1327f37b58a4c9ce520fcf9dd3f348c7c639229ee7aed41c47164a8f7836cd  copyright
> diff --git a/package/libks/libks.mk b/package/libks/libks.mk
> index 4aca5c5c4c..c4f0cd5c78 100644
> --- a/package/libks/libks.mk
> +++ b/package/libks/libks.mk
> @@ -4,7 +4,7 @@
>  #
>  ################################################################################
>  
> -LIBKS_VERSION = 1.8.0
> +LIBKS_VERSION = 1.8.2
>  LIBKS_SITE = $(call github,signalwire,libks,v$(LIBKS_VERSION))
>  LIBKS_LICENSE = MIT
>  LIBKS_LICENSE_FILES = copyright
> -- 
> 2.39.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
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/sofia-sip: bump version to 1.13.12
  2023-02-05  8:16 ` [Buildroot] [PATCH 2/3] package/sofia-sip: bump version to 1.13.12 Bernd Kuhls
@ 2023-02-05 10:19   ` Yann E. MORIN
  0 siblings, 0 replies; 8+ messages in thread
From: Yann E. MORIN @ 2023-02-05 10:19 UTC (permalink / raw)
  To: Bernd Kuhls; +Cc: Gregory Dymarek, buildroot

Bernd, All,

On 2023-02-05 09:16 +0100, Bernd Kuhls spake thusly:
> Switch to github helper due to lack of upstream-provided tarball.
> 
> Needed for upcoming bump of freeswitch to version 1.10.9.
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  package/sofia-sip/sofia-sip.hash | 2 +-
>  package/sofia-sip/sofia-sip.mk   | 7 ++++---
>  2 files changed, 5 insertions(+), 4 deletions(-)
> 
> diff --git a/package/sofia-sip/sofia-sip.hash b/package/sofia-sip/sofia-sip.hash
> index 776136bb15..4617725571 100644
> --- a/package/sofia-sip/sofia-sip.hash
> +++ b/package/sofia-sip/sofia-sip.hash
> @@ -1,4 +1,4 @@
>  # Locally computed
> -sha256  daf75c41408c559c2d58a8fd4d39be4a8ff5144bc1db220d4dbc28deeed6670a  sofia-sip-1.13.9-f6ee306084.tar.gz
> +sha256  03dda8653367501b7b1188a6b6513416902372e27475553de9318ee89ac390ff  sofia-sip-1.13.12.tar.gz
>  sha256  e1c0890440efe31b6cd2ee2abf895eb917c787799f079133f5809414d90d5d60  COPYING
>  sha256  b402ae58cf355b33be8fa023f704a039e3d41ecaccd2bbcda43ca31d703e4556  COPYRIGHTS
> diff --git a/package/sofia-sip/sofia-sip.mk b/package/sofia-sip/sofia-sip.mk
> index 9071d964e4..59c365365b 100644
> --- a/package/sofia-sip/sofia-sip.mk
> +++ b/package/sofia-sip/sofia-sip.mk
> @@ -4,10 +4,11 @@
>  #
>  ################################################################################
>  
> -SOFIA_SIP_VERSION = 1.13.9
> -SOFIA_SIP_SOURCE = sofia-sip-$(SOFIA_SIP_VERSION)-f6ee306084.tar.gz
> -SOFIA_SIP_SITE = https://files.freeswitch.org/downloads/libs/sofia-sip
> +SOFIA_SIP_VERSION = 1.13.12
> +SOFIA_SIP_SITE = $(call github,freeswitch,sofia-sip,v$(SOFIA_SIP_VERSION))
>  SOFIA_SIP_INSTALL_STAGING = YES
> +# Fetched from github, no pre-generated configure script provided
> +SOFIA_SIP_AUTORECONF = YES
>  SOFIA_SIP_DEPENDENCIES = host-pkgconf
>  SOFIA_SIP_LICENSE = LGPL-2.1+
>  SOFIA_SIP_LICENSE_FILES = COPYING COPYRIGHTS
> -- 
> 2.39.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
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/freeswitch: security bump version to 1.10.9
  2023-02-05 10:15     ` Yann E. MORIN
@ 2023-02-05 10:53       ` Peter Korsgaard
  0 siblings, 0 replies; 8+ messages in thread
From: Peter Korsgaard @ 2023-02-05 10:53 UTC (permalink / raw)
  To: Yann E. MORIN; +Cc: buildroot

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 > Peter, All,
 > On 2023-02-05 10:01 +0100, Peter Korsgaard spake thusly:
 >> On 05/02/2023 09.16, Bernd Kuhls wrote:
 >> >Release notes:
 >> >https://github.com/signalwire/freeswitch/releases/tag/v1.10.9
 >> >
 >> >Upstream removed zrtp support:
 >> >https://github.com/signalwire/freeswitch/pull/1848
 >> >
 >> >Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
 >> 
 >> Fixed the checkpatch warning and applied, thanks;

 > You only applied this patch 3/3, but patches 1/3 and 2/3 (likbks and
 > sofia-sip bumps) are marked as being needed first. So I've applied them
 > now.

Ups, thanks for fixing it!

 > Bernd, it would have been nice that the patch bumping freeswitch would
 > mention that it has a dependency on newer libks and sofia-sip versions.
 > Indeed, if the freeswitch bump is backported to a maintenance branch,
 > them the two other bumps will have to be backported too, and if that is
 > not mentioned in the commit log, that will not be obvious to notice.

Yes please!

-- 
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:[~2023-02-05 10:53 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-05  8:16 [Buildroot] [PATCH 1/3] package/libks: bump version to 1.8.2 Bernd Kuhls
2023-02-05  8:16 ` [Buildroot] [PATCH 2/3] package/sofia-sip: bump version to 1.13.12 Bernd Kuhls
2023-02-05 10:19   ` Yann E. MORIN
2023-02-05  8:16 ` [Buildroot] [PATCH 3/3] package/freeswitch: security bump version to 1.10.9 Bernd Kuhls
2023-02-05  9:01   ` Peter Korsgaard
2023-02-05 10:15     ` Yann E. MORIN
2023-02-05 10:53       ` Peter Korsgaard
2023-02-05 10:18 ` [Buildroot] [PATCH 1/3] package/libks: bump version to 1.8.2 Yann E. MORIN

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.