buildroot.busybox.net archive mirror
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 0/9] bump skarnet software: s6, execline, mdevd, etc.
@ 2022-10-09 15:59 Joachim Wiberg
  2022-10-09 15:59 ` [Buildroot] [PATCH 1/9] package/skalibs: bump to v2.12.0.1 Joachim Wiberg
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: Joachim Wiberg @ 2022-10-09 15:59 UTC (permalink / raw)
  To: buildroot; +Cc: Eric Le Bihan, Joachim Wiberg

This patch series bumps the version of several of Laurent Bercot's
packages.  The idea was to upgrade mdevd, which depends on skalibs,
but it in turn is a dependency for the other packages upgraded here.

Please note, I've only tested mdevd, the orther packages have only been
test built using test-pkg.  The following skarnet.config was used:

    BR2_PACKAGE_SKALIBS=y
    BR2_PACKAGE_EXECLINE=y
    BR2_PACKAGE_S6_DNS=y
    BR2_PACKAGE_S6_LINUX_UTILS=y
    BR2_PACKAGE_S6_PORTABLE_UTILS=y
    BR2_PACKAGE_S6=y
    BR2_PACKAGE_S6_RC=y
    BR2_PACKAGE_S6_NETWORKING=y
    BR2_PACKAGE_MDEVD=y

$ ./utils/test-pkg -c skarnet.config -p mdevd
                    bootlin-armv5-uclibc [1/6]: OK
                     bootlin-armv7-glibc [2/6]: OK
                   bootlin-armv7m-uclibc [3/6]: SKIPPED
                     bootlin-x86-64-musl [4/6]: OK
                      br-arm-full-static [5/6]: OK
                            sourcery-arm [6/6]: OK
6 builds, 1 skipped, 0 build failed, 0 legal-info failed, 0 show-info failed


Best regards
 /Joachim

Joachim Wiberg (9):
  package/skalibs: bump to v2.12.0.1
  package/mdevd: bump to v0.1.6.0
  package/execline: bump to v2.9.0.1
  package/s6: bump to v2.11.1.2
  package/s6-linux-utils: bump to v2.6.0.0
  package/s6-portable-utils: bump to v2.2.5.0
  package/s6-dns: bump to v2.3.5.4
  package/s6-networking: bump to v2.5.1.1
  package/s6-rc: bump to v0.5.3.2

 package/execline/execline.hash                   | 4 ++--
 package/execline/execline.mk                     | 2 +-
 package/mdevd/mdevd.hash                         | 4 ++--
 package/mdevd/mdevd.mk                           | 2 +-
 package/s6-dns/s6-dns.hash                       | 4 ++--
 package/s6-dns/s6-dns.mk                         | 2 +-
 package/s6-linux-utils/s6-linux-utils.hash       | 4 ++--
 package/s6-linux-utils/s6-linux-utils.mk         | 2 +-
 package/s6-networking/s6-networking.hash         | 4 ++--
 package/s6-networking/s6-networking.mk           | 2 +-
 package/s6-portable-utils/s6-portable-utils.hash | 4 ++--
 package/s6-portable-utils/s6-portable-utils.mk   | 2 +-
 package/s6-rc/s6-rc.hash                         | 4 ++--
 package/s6-rc/s6-rc.mk                           | 2 +-
 package/s6/s6.hash                               | 4 ++--
 package/s6/s6.mk                                 | 2 +-
 package/skalibs/skalibs.hash                     | 4 ++--
 package/skalibs/skalibs.mk                       | 2 +-
 18 files changed, 27 insertions(+), 27 deletions(-)

-- 
2.34.1

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

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

* [Buildroot] [PATCH 1/9] package/skalibs: bump to v2.12.0.1
  2022-10-09 15:59 [Buildroot] [PATCH 0/9] bump skarnet software: s6, execline, mdevd, etc Joachim Wiberg
@ 2022-10-09 15:59 ` Joachim Wiberg
  2022-10-09 15:59 ` [Buildroot] [PATCH 2/9] package/mdevd: bump to v0.1.6.0 Joachim Wiberg
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Joachim Wiberg @ 2022-10-09 15:59 UTC (permalink / raw)
  To: buildroot; +Cc: Eric Le Bihan, Joachim Wiberg

Summary of changes:

New:
 - New djbunix functions: waitn_posix(), waitn_reap_posix()
 - New unix-transactional.h function: opendir_at.
 - New skalibs/posixplz.h function: munmap_void().
 - random functions now have an early version, to use when randomness is
   required before the generator can be seeded (i.e. in programs running in
   the very early boot).
 - envdir_internal() now has a SKALIBS_ENVDIR_NOCLAMP option allowing
   reading of unlimited-size variables.
 - fd_close() now chooses to adapt to Linux's close() behaviour (closing
   the fd on EINTR) over the HP-UX one (not closing it). Destructors like
   close() being allowed to fail has always been a mistake in the
   specification and a programming nightmare, making it impossible to
   behave correctly on all systems, but apparently standardization efforts
   are on the way and the Linux behaviour seems to be the chosen one.

Removed:
 - libbiguint removed.
 - Obsolete skalibs/environ.h and skalibs/getpeereid.h headers removed.
 - rc4 and md5 functions removed.
 - iobuffer removed. fd_cat() and fd_catn() changed signatures.
 - All signal functions entirely reworked; cruft removed.
 - The unsafe cdb_successor() API has been removed.
 - random_init() and random_finish() removed, as well as random_char().

Renamed APIs and type:
 - random_string() renamed to random_buf().
 - All *_t types renamed without the _t suffix, to preserve POSIX namespace.
 - subgetopt() renamed to lgetopt().
 - skalibs/cdb_make.h renamed to skalibs/cdbmake.h;
   cdbmake functions now return 1 on success and 0 on failure.
 - skalibs/cdb.h redesigned to remove reader state from the cdb structure.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
---
 package/skalibs/skalibs.hash | 4 ++--
 package/skalibs/skalibs.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/skalibs/skalibs.hash b/package/skalibs/skalibs.hash
index 48e4028edc..dd202b97fb 100644
--- a/package/skalibs/skalibs.hash
+++ b/package/skalibs/skalibs.hash
@@ -1,3 +1,3 @@
 # Locally generated
-sha256  b780b0ae650dda0c3ec5f8975174998af2d24c2a2e2be669b1bab46e73b1464d  skalibs-2.10.0.3.tar.gz
-sha256  adecb8bedfaae27fcfe65ecb3ef0e2e71aa2a2b49dc21886a200bc677d93e6ec  COPYING
+sha256  3e228f72f18d88c17f6c4e0a66881d6d3779427b7e7e889f3142b6f26da30285  skalibs-2.12.0.1.tar.gz
+sha256  35126cb8f2ff2a6e359f7bfec46c49004ead6304d8248ba67dcdebcc7d377754  COPYING
diff --git a/package/skalibs/skalibs.mk b/package/skalibs/skalibs.mk
index 77db57de96..0ff449a5ba 100644
--- a/package/skalibs/skalibs.mk
+++ b/package/skalibs/skalibs.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-SKALIBS_VERSION = 2.10.0.3
+SKALIBS_VERSION = 2.12.0.1
 SKALIBS_SITE = http://skarnet.org/software/skalibs
 SKALIBS_LICENSE = ISC
 SKALIBS_LICENSE_FILES = COPYING
-- 
2.34.1

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

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

* [Buildroot] [PATCH 2/9] package/mdevd: bump to v0.1.6.0
  2022-10-09 15:59 [Buildroot] [PATCH 0/9] bump skarnet software: s6, execline, mdevd, etc Joachim Wiberg
  2022-10-09 15:59 ` [Buildroot] [PATCH 1/9] package/skalibs: bump to v2.12.0.1 Joachim Wiberg
@ 2022-10-09 15:59 ` Joachim Wiberg
  2022-10-09 15:59 ` [Buildroot] [PATCH 3/9] package/execline: bump to v2.9.0.1 Joachim Wiberg
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Joachim Wiberg @ 2022-10-09 15:59 UTC (permalink / raw)
  To: buildroot; +Cc: Eric Le Bihan, Joachim Wiberg

Summary of changes:

 - skalibs dependency bumped to 2.12.0.1.
 - execline optional dependency bumped to 2.9.0.1.
 - New -O nlgroups option to mdevd, rebroadcasting uevents to the netlink
   after handling them.
 - The * and & action directives are now triggered by all action types.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
---
 package/mdevd/mdevd.hash | 4 ++--
 package/mdevd/mdevd.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/mdevd/mdevd.hash b/package/mdevd/mdevd.hash
index 93950304be..dea2f14978 100644
--- a/package/mdevd/mdevd.hash
+++ b/package/mdevd/mdevd.hash
@@ -1,3 +1,3 @@
 # Locally generated
-sha256  ffd3b223b4cf0e51253b4a8f09cb88d70bf22693228ab0818af174a3f099dcd2  mdevd-0.1.4.0.tar.gz
-sha256  31b60c66aba1fa0a7f8847339ac35c28638e25ff96da700d995533ad810e3995  COPYING
+sha256  33cf2b118634538fd24f302b30f52cc8aa28ea68b414916ce482b54a4ee57283  mdevd-0.1.6.0.tar.gz
+sha256  7fe938b5e0fec18848955ca8081c532e24ae77310beb730b301e1f77bad3d390  COPYING
diff --git a/package/mdevd/mdevd.mk b/package/mdevd/mdevd.mk
index a0cd71e76e..9997cb5275 100644
--- a/package/mdevd/mdevd.mk
+++ b/package/mdevd/mdevd.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-MDEVD_VERSION = 0.1.4.0
+MDEVD_VERSION = 0.1.6.0
 MDEVD_SITE = http://skarnet.org/software/mdevd
 MDEVD_LICENSE = ISC
 MDEVD_LICENSE_FILES = COPYING
-- 
2.34.1

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

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

* [Buildroot] [PATCH 3/9] package/execline: bump to v2.9.0.1
  2022-10-09 15:59 [Buildroot] [PATCH 0/9] bump skarnet software: s6, execline, mdevd, etc Joachim Wiberg
  2022-10-09 15:59 ` [Buildroot] [PATCH 1/9] package/skalibs: bump to v2.12.0.1 Joachim Wiberg
  2022-10-09 15:59 ` [Buildroot] [PATCH 2/9] package/mdevd: bump to v0.1.6.0 Joachim Wiberg
@ 2022-10-09 15:59 ` Joachim Wiberg
  2022-10-09 15:59 ` [Buildroot] [PATCH 4/9] package/s6: bump to v2.11.1.2 Joachim Wiberg
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Joachim Wiberg @ 2022-10-09 15:59 UTC (permalink / raw)
  To: buildroot; +Cc: Eric Le Bihan, Joachim Wiberg

Summary of changes:

 - skalibs dependency bumped to 2.12.0.0.
 - New options to wait: -o to wait for one of the listed processes,
   and -a to get the default behaviour.
 - wait now exits 99 on timeout.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
---
 package/execline/execline.hash | 4 ++--
 package/execline/execline.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/execline/execline.hash b/package/execline/execline.hash
index 706b131afd..1d72e2cb49 100644
--- a/package/execline/execline.hash
+++ b/package/execline/execline.hash
@@ -1,3 +1,3 @@
 # Locally generated
-sha256  a373f497d2335905d750e2f3be2ba47a028c11c4a7d5595dca9965c161e53aed  execline-2.8.0.1.tar.gz
-sha256  adecb8bedfaae27fcfe65ecb3ef0e2e71aa2a2b49dc21886a200bc677d93e6ec  COPYING
+sha256  01260fcaf80ffbca2a94aa55ea474dfb9e39b3033b55c8af88126791879531f6  execline-2.9.0.1.tar.gz
+sha256  35126cb8f2ff2a6e359f7bfec46c49004ead6304d8248ba67dcdebcc7d377754  COPYING
diff --git a/package/execline/execline.mk b/package/execline/execline.mk
index c348d924b7..38f4570ba4 100644
--- a/package/execline/execline.mk
+++ b/package/execline/execline.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-EXECLINE_VERSION = 2.8.0.1
+EXECLINE_VERSION = 2.9.0.1
 EXECLINE_SITE = http://skarnet.org/software/execline
 EXECLINE_LICENSE = ISC
 EXECLINE_LICENSE_FILES = COPYING
-- 
2.34.1

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

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

* [Buildroot] [PATCH 4/9] package/s6: bump to v2.11.1.2
  2022-10-09 15:59 [Buildroot] [PATCH 0/9] bump skarnet software: s6, execline, mdevd, etc Joachim Wiberg
                   ` (2 preceding siblings ...)
  2022-10-09 15:59 ` [Buildroot] [PATCH 3/9] package/execline: bump to v2.9.0.1 Joachim Wiberg
@ 2022-10-09 15:59 ` Joachim Wiberg
  2022-10-09 15:59 ` [Buildroot] [PATCH 5/9] package/s6-linux-utils: bump to v2.6.0.0 Joachim Wiberg
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Joachim Wiberg @ 2022-10-09 15:59 UTC (permalink / raw)
  To: buildroot; +Cc: Eric Le Bihan, Joachim Wiberg

Summary of changes:

 - execline optional dependency bumped to 2.9.0.1.
 - skalibs dependency bumped to 2.12.0.0.
 - nsss optional dependency bumped to 0.2.0.1.
 - s6-svwait now supports the -r and -R options, to wait for service restarts.
 - The s6/lock.h, s6/supervise.h and s6/fdholder.h headers replace their
   previous versions that had an extra s6 prefix.
 - New binaries: s6-svlink, s6-svunlink, and s6-socklog.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
---
 package/s6/s6.hash | 4 ++--
 package/s6/s6.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/s6/s6.hash b/package/s6/s6.hash
index a829700d97..3c5ce4265a 100644
--- a/package/s6/s6.hash
+++ b/package/s6/s6.hash
@@ -1,3 +1,3 @@
 # Locally generated
-sha256  1d21373151704150df0e8ed199f097f6ee5d2befb9a68aca4f20f3862e5d8757  s6-2.10.0.3.tar.gz
-sha256  adecb8bedfaae27fcfe65ecb3ef0e2e71aa2a2b49dc21886a200bc677d93e6ec  COPYING
+sha256  6c1474be3e889dac392cee307abe015cd4be0c85c725c84ea7f184f0e34503a2  s6-2.11.1.2.tar.gz
+sha256  35126cb8f2ff2a6e359f7bfec46c49004ead6304d8248ba67dcdebcc7d377754  COPYING
diff --git a/package/s6/s6.mk b/package/s6/s6.mk
index ead82d7eaf..78962ed159 100644
--- a/package/s6/s6.mk
+++ b/package/s6/s6.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-S6_VERSION = 2.10.0.3
+S6_VERSION = 2.11.1.2
 S6_SITE = http://skarnet.org/software/s6
 S6_LICENSE = ISC
 S6_LICENSE_FILES = COPYING
-- 
2.34.1

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

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

* [Buildroot] [PATCH 5/9] package/s6-linux-utils: bump to v2.6.0.0
  2022-10-09 15:59 [Buildroot] [PATCH 0/9] bump skarnet software: s6, execline, mdevd, etc Joachim Wiberg
                   ` (3 preceding siblings ...)
  2022-10-09 15:59 ` [Buildroot] [PATCH 4/9] package/s6: bump to v2.11.1.2 Joachim Wiberg
@ 2022-10-09 15:59 ` Joachim Wiberg
  2022-10-09 15:59 ` [Buildroot] [PATCH 6/9] package/s6-portable-utils: bump to v2.2.5.0 Joachim Wiberg
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Joachim Wiberg @ 2022-10-09 15:59 UTC (permalink / raw)
  To: buildroot; +Cc: Eric Le Bihan, Joachim Wiberg

Summary of changes:

 - skalibs dependency bumped to 2.12.0.0.
 - s6-fillurandompool has been replaced with the new rngseed program.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
---
 package/s6-linux-utils/s6-linux-utils.hash | 4 ++--
 package/s6-linux-utils/s6-linux-utils.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/s6-linux-utils/s6-linux-utils.hash b/package/s6-linux-utils/s6-linux-utils.hash
index 27e7eb7b7a..c932a4363a 100644
--- a/package/s6-linux-utils/s6-linux-utils.hash
+++ b/package/s6-linux-utils/s6-linux-utils.hash
@@ -1,3 +1,3 @@
 # Locally generated
-sha256  c300dbf36b533083f82c6827830c55ce34bfc6cd493c782f207d199669a345ba  s6-linux-utils-2.5.1.5.tar.gz
-sha256  adecb8bedfaae27fcfe65ecb3ef0e2e71aa2a2b49dc21886a200bc677d93e6ec  COPYING
+sha256  6c7132734a0c8287002ee6910c469f175a97d766a8023c0c33af8ba92643ed59  s6-linux-utils-2.6.0.0.tar.gz
+sha256  35126cb8f2ff2a6e359f7bfec46c49004ead6304d8248ba67dcdebcc7d377754  COPYING
diff --git a/package/s6-linux-utils/s6-linux-utils.mk b/package/s6-linux-utils/s6-linux-utils.mk
index 995ff1b855..ffa3ffac5b 100644
--- a/package/s6-linux-utils/s6-linux-utils.mk
+++ b/package/s6-linux-utils/s6-linux-utils.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-S6_LINUX_UTILS_VERSION = 2.5.1.5
+S6_LINUX_UTILS_VERSION = 2.6.0.0
 S6_LINUX_UTILS_SITE = http://skarnet.org/software/s6-linux-utils
 S6_LINUX_UTILS_LICENSE = ISC
 S6_LINUX_UTILS_LICENSE_FILES = COPYING
-- 
2.34.1

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

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

* [Buildroot] [PATCH 6/9] package/s6-portable-utils: bump to v2.2.5.0
  2022-10-09 15:59 [Buildroot] [PATCH 0/9] bump skarnet software: s6, execline, mdevd, etc Joachim Wiberg
                   ` (4 preceding siblings ...)
  2022-10-09 15:59 ` [Buildroot] [PATCH 5/9] package/s6-linux-utils: bump to v2.6.0.0 Joachim Wiberg
@ 2022-10-09 15:59 ` Joachim Wiberg
  2022-10-09 15:59 ` [Buildroot] [PATCH 7/9] package/s6-dns: bump to v2.3.5.4 Joachim Wiberg
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Joachim Wiberg @ 2022-10-09 15:59 UTC (permalink / raw)
  To: buildroot; +Cc: Eric Le Bihan, Joachim Wiberg

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
---
 package/s6-portable-utils/s6-portable-utils.hash | 4 ++--
 package/s6-portable-utils/s6-portable-utils.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/s6-portable-utils/s6-portable-utils.hash b/package/s6-portable-utils/s6-portable-utils.hash
index dd9f7df4bd..aa38c8b5da 100644
--- a/package/s6-portable-utils/s6-portable-utils.hash
+++ b/package/s6-portable-utils/s6-portable-utils.hash
@@ -1,3 +1,3 @@
 # Locally generated
-sha256  6627a2d3ea263539e83512a36f10a587fa0dd5e899bc3612187e9e3b9faf769c  s6-portable-utils-2.2.3.2.tar.gz
-sha256  adecb8bedfaae27fcfe65ecb3ef0e2e71aa2a2b49dc21886a200bc677d93e6ec  COPYING
+sha256  ebb39f8934fd36f25d31352e61bbd94dc02b1e9f04411850d2fd9658bd916e36  s6-portable-utils-2.2.5.0.tar.gz
+sha256  35126cb8f2ff2a6e359f7bfec46c49004ead6304d8248ba67dcdebcc7d377754  COPYING
diff --git a/package/s6-portable-utils/s6-portable-utils.mk b/package/s6-portable-utils/s6-portable-utils.mk
index fb910320ea..8cdb4fa965 100644
--- a/package/s6-portable-utils/s6-portable-utils.mk
+++ b/package/s6-portable-utils/s6-portable-utils.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-S6_PORTABLE_UTILS_VERSION = 2.2.3.2
+S6_PORTABLE_UTILS_VERSION = 2.2.5.0
 S6_PORTABLE_UTILS_SITE = http://skarnet.org/software/s6-portable-utils
 S6_PORTABLE_UTILS_LICENSE = ISC
 S6_PORTABLE_UTILS_LICENSE_FILES = COPYING
-- 
2.34.1

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

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

* [Buildroot] [PATCH 7/9] package/s6-dns: bump to v2.3.5.4
  2022-10-09 15:59 [Buildroot] [PATCH 0/9] bump skarnet software: s6, execline, mdevd, etc Joachim Wiberg
                   ` (5 preceding siblings ...)
  2022-10-09 15:59 ` [Buildroot] [PATCH 6/9] package/s6-portable-utils: bump to v2.2.5.0 Joachim Wiberg
@ 2022-10-09 15:59 ` Joachim Wiberg
  2022-10-09 15:59 ` [Buildroot] [PATCH 8/9] package/s6-networking: bump to v2.5.1.1 Joachim Wiberg
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Joachim Wiberg @ 2022-10-09 15:59 UTC (permalink / raw)
  To: buildroot; +Cc: Eric Le Bihan, Joachim Wiberg

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
---
 package/s6-dns/s6-dns.hash | 4 ++--
 package/s6-dns/s6-dns.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/s6-dns/s6-dns.hash b/package/s6-dns/s6-dns.hash
index c63e96e129..5083024520 100644
--- a/package/s6-dns/s6-dns.hash
+++ b/package/s6-dns/s6-dns.hash
@@ -1,3 +1,3 @@
 # Locally generated
-sha256  0c1d50e5d7bc65cbf59b6f37fbd7f6f5645694224bb8c4dc1943d7921bc74f63  s6-dns-2.3.5.1.tar.gz
-sha256  adecb8bedfaae27fcfe65ecb3ef0e2e71aa2a2b49dc21886a200bc677d93e6ec  COPYING
+sha256  76af222472c4754f83cdc59ad354255ce1b1e6f6833a059328463f8e51f4db43  s6-dns-2.3.5.4.tar.gz
+sha256  35126cb8f2ff2a6e359f7bfec46c49004ead6304d8248ba67dcdebcc7d377754  COPYING
diff --git a/package/s6-dns/s6-dns.mk b/package/s6-dns/s6-dns.mk
index dfde2c29f1..1b7d65570f 100644
--- a/package/s6-dns/s6-dns.mk
+++ b/package/s6-dns/s6-dns.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-S6_DNS_VERSION = 2.3.5.1
+S6_DNS_VERSION = 2.3.5.4
 S6_DNS_SITE = http://skarnet.org/software/s6-dns
 S6_DNS_LICENSE = ISC
 S6_DNS_LICENSE_FILES = COPYING
-- 
2.34.1

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

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

* [Buildroot] [PATCH 8/9] package/s6-networking: bump to v2.5.1.1
  2022-10-09 15:59 [Buildroot] [PATCH 0/9] bump skarnet software: s6, execline, mdevd, etc Joachim Wiberg
                   ` (6 preceding siblings ...)
  2022-10-09 15:59 ` [Buildroot] [PATCH 7/9] package/s6-dns: bump to v2.3.5.4 Joachim Wiberg
@ 2022-10-09 15:59 ` Joachim Wiberg
  2022-10-09 15:59 ` [Buildroot] [PATCH 9/9] package/s6-rc: bump to v0.5.3.2 Joachim Wiberg
  2022-10-30 22:40 ` [Buildroot] [PATCH 0/9] bump skarnet software: s6, execline, mdevd, etc Thomas Petazzoni via buildroot
  9 siblings, 0 replies; 11+ messages in thread
From: Joachim Wiberg @ 2022-10-09 15:59 UTC (permalink / raw)
  To: buildroot; +Cc: Eric Le Bihan, Joachim Wiberg

Summary of changes:

 - skalibs dependency bumped to 2.12.0.0
 - s6-dns dependency bumped to 2.3.5.4
 - skalibs dependency bumped to 2.11.1.0
 - execline optional dependency bumped to 2.8.2.0
 - s6 dependency bumped to 2.11.0.1
 - The obsolete minidentd program has been removed.
 - LibreSSL optional dependency bumped to 3.3.4
 - LibreTLS optional dependency bumped to 3.3.4
 - Client certificates are now properly supported in s6-tlsd-io.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
---
 package/s6-networking/s6-networking.hash | 4 ++--
 package/s6-networking/s6-networking.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/s6-networking/s6-networking.hash b/package/s6-networking/s6-networking.hash
index 9e333866d3..1890f95221 100644
--- a/package/s6-networking/s6-networking.hash
+++ b/package/s6-networking/s6-networking.hash
@@ -1,3 +1,3 @@
 # Locally generated
-sha256  a3fbca789dc5c82b3055fdbd2f55110902198f3136447617ce8f8b79fa8aa554  s6-networking-2.4.1.1.tar.gz
-sha256  adecb8bedfaae27fcfe65ecb3ef0e2e71aa2a2b49dc21886a200bc677d93e6ec  COPYING
+sha256  7ac79d4de3d9c13532e444ab7497c4e04ad0fa7229d502984d9dc7d48aa64418  s6-networking-2.5.1.1.tar.gz
+sha256  35126cb8f2ff2a6e359f7bfec46c49004ead6304d8248ba67dcdebcc7d377754  COPYING
diff --git a/package/s6-networking/s6-networking.mk b/package/s6-networking/s6-networking.mk
index 03807f0652..f740f22635 100644
--- a/package/s6-networking/s6-networking.mk
+++ b/package/s6-networking/s6-networking.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-S6_NETWORKING_VERSION = 2.4.1.1
+S6_NETWORKING_VERSION = 2.5.1.1
 S6_NETWORKING_SITE = http://skarnet.org/software/s6-networking
 S6_NETWORKING_LICENSE = ISC
 S6_NETWORKING_LICENSE_FILES = COPYING
-- 
2.34.1

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

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

* [Buildroot] [PATCH 9/9] package/s6-rc: bump to v0.5.3.2
  2022-10-09 15:59 [Buildroot] [PATCH 0/9] bump skarnet software: s6, execline, mdevd, etc Joachim Wiberg
                   ` (7 preceding siblings ...)
  2022-10-09 15:59 ` [Buildroot] [PATCH 8/9] package/s6-networking: bump to v2.5.1.1 Joachim Wiberg
@ 2022-10-09 15:59 ` Joachim Wiberg
  2022-10-30 22:40 ` [Buildroot] [PATCH 0/9] bump skarnet software: s6, execline, mdevd, etc Thomas Petazzoni via buildroot
  9 siblings, 0 replies; 11+ messages in thread
From: Joachim Wiberg @ 2022-10-09 15:59 UTC (permalink / raw)
  To: buildroot; +Cc: Eric Le Bihan, Joachim Wiberg

Summary of changes:

 - skalibs dependency bumped to 2.12.0.0.
 - execline dependency bumped to 2.9.0.0.
 - s6 dependency bumped to 2.11.1.0.
 - s6-rc-compile now reads service dependency information from the
   dependencies.d directory and bundle information from the contents.d
   directory, instead of the dependencies and contents flat files.
   The old format is still supported, but deprecated.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
---
 package/s6-rc/s6-rc.hash | 4 ++--
 package/s6-rc/s6-rc.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/s6-rc/s6-rc.hash b/package/s6-rc/s6-rc.hash
index 8978d68ba6..0a84345e36 100644
--- a/package/s6-rc/s6-rc.hash
+++ b/package/s6-rc/s6-rc.hash
@@ -1,3 +1,3 @@
 # Locally generated
-sha256  2a8d1cd455c05c8502b34517cfe79841aa46d08ad969076b37a15d3910617f89  s6-rc-0.5.2.2.tar.gz
-sha256  4a5e44a69d649f0c37b29d7f6e5df1bb292b09898247be07f0c97814dac4b15d  COPYING
+sha256  4f24a4966a4aa353d2bd1a8afca9b88c7b7bd29c46b3a1a7f5305686b9d6e038  s6-rc-0.5.3.2.tar.gz
+sha256  1898df1e8703bd9c1350d2ec3397880b9b4c1451038a9ce5e1c4b2e58622da39  COPYING
diff --git a/package/s6-rc/s6-rc.mk b/package/s6-rc/s6-rc.mk
index 05d7989735..85b047883b 100644
--- a/package/s6-rc/s6-rc.mk
+++ b/package/s6-rc/s6-rc.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-S6_RC_VERSION = 0.5.2.2
+S6_RC_VERSION = 0.5.3.2
 S6_RC_SITE = http://skarnet.org/software/s6-rc
 S6_RC_LICENSE = ISC
 S6_RC_LICENSE_FILES = COPYING
-- 
2.34.1

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

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

* Re: [Buildroot] [PATCH 0/9] bump skarnet software: s6, execline, mdevd, etc.
  2022-10-09 15:59 [Buildroot] [PATCH 0/9] bump skarnet software: s6, execline, mdevd, etc Joachim Wiberg
                   ` (8 preceding siblings ...)
  2022-10-09 15:59 ` [Buildroot] [PATCH 9/9] package/s6-rc: bump to v0.5.3.2 Joachim Wiberg
@ 2022-10-30 22:40 ` Thomas Petazzoni via buildroot
  9 siblings, 0 replies; 11+ messages in thread
From: Thomas Petazzoni via buildroot @ 2022-10-30 22:40 UTC (permalink / raw)
  To: Joachim Wiberg; +Cc: Eric Le Bihan, buildroot

Hello Joachim,

On Sun,  9 Oct 2022 17:59:28 +0200
Joachim Wiberg <troglobit@gmail.com> wrote:

> Joachim Wiberg (9):
>   package/skalibs: bump to v2.12.0.1
>   package/mdevd: bump to v0.1.6.0
>   package/execline: bump to v2.9.0.1
>   package/s6: bump to v2.11.1.2
>   package/s6-linux-utils: bump to v2.6.0.0
>   package/s6-portable-utils: bump to v2.2.5.0
>   package/s6-dns: bump to v2.3.5.4
>   package/s6-networking: bump to v2.5.1.1
>   package/s6-rc: bump to v0.5.3.2

Thanks, series applied. One thing that was missing from the commit logs
is the explanation of why the hash of the license file is changed. So I
checked why, and added the explanation in each commit log.

Thanks a lot!

Thomas
-- 
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2022-10-30 22:40 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-09 15:59 [Buildroot] [PATCH 0/9] bump skarnet software: s6, execline, mdevd, etc Joachim Wiberg
2022-10-09 15:59 ` [Buildroot] [PATCH 1/9] package/skalibs: bump to v2.12.0.1 Joachim Wiberg
2022-10-09 15:59 ` [Buildroot] [PATCH 2/9] package/mdevd: bump to v0.1.6.0 Joachim Wiberg
2022-10-09 15:59 ` [Buildroot] [PATCH 3/9] package/execline: bump to v2.9.0.1 Joachim Wiberg
2022-10-09 15:59 ` [Buildroot] [PATCH 4/9] package/s6: bump to v2.11.1.2 Joachim Wiberg
2022-10-09 15:59 ` [Buildroot] [PATCH 5/9] package/s6-linux-utils: bump to v2.6.0.0 Joachim Wiberg
2022-10-09 15:59 ` [Buildroot] [PATCH 6/9] package/s6-portable-utils: bump to v2.2.5.0 Joachim Wiberg
2022-10-09 15:59 ` [Buildroot] [PATCH 7/9] package/s6-dns: bump to v2.3.5.4 Joachim Wiberg
2022-10-09 15:59 ` [Buildroot] [PATCH 8/9] package/s6-networking: bump to v2.5.1.1 Joachim Wiberg
2022-10-09 15:59 ` [Buildroot] [PATCH 9/9] package/s6-rc: bump to v0.5.3.2 Joachim Wiberg
2022-10-30 22:40 ` [Buildroot] [PATCH 0/9] bump skarnet software: s6, execline, mdevd, etc Thomas Petazzoni via buildroot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).