From debbugs-submit-bounces@debbugs.gnu.org Thu Jun 11 17:06:07 2020 Received: (at submit) by debbugs.gnu.org; 11 Jun 2020 21:06:07 +0000 Received: from localhost ([127.0.0.1]:38227 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jjUOh-00086M-2t for submit@debbugs.gnu.org; Thu, 11 Jun 2020 17:06:07 -0400 Received: from lists.gnu.org ([209.51.188.17]:33132) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jjUOb-00085u-GS for submit@debbugs.gnu.org; Thu, 11 Jun 2020 17:06:02 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:39264) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jjUOb-0002Db-AQ for guix-patches@gnu.org; Thu, 11 Jun 2020 17:05:57 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:42202) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jjUOV-0001ht-Qf for guix-patches@gnu.org; Thu, 11 Jun 2020 17:05:57 -0400 Received: from dayas.lan (80-110-127-207.cgn.dynamic.surfer.at [80.110.127.207]) by dd26836.kasserver.com (Postfix) with ESMTPSA id 42C003362146; Thu, 11 Jun 2020 23:05:42 +0200 (CEST) From: Danny Milosavljevic To: guix-patches@gnu.org Subject: [PATCH 0/4] Fix busybox. Date: Thu, 11 Jun 2020 23:05:40 +0200 Message-Id: <20200611210540.28722-1-dannym@scratchpost.org> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Tags: patch Content-Transfer-Encoding: 8bit Received-SPF: none client-ip=85.13.145.193; envelope-from=dannym@scratchpost.org; helo=dd26836.kasserver.com X-detected-operating-system: by eggs.gnu.org: First seen = 2020/06/11 17:05:42 X-ACL-Warn: Detected OS = Linux 3.11 and newer [fuzzy] X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_NONE=0.001, URIBL_BLOCKED=0.001 autolearn=_AUTOLEARN X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit Cc: Danny Milosavljevic X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Danny Milosavljevic (4): gnu: busybox: Make build reproducible. gnu: busybox: Update to 1.31.1. gnu: busybox: Fix build with new glibc. gnu: busybox: Fix test. gnu/local.mk | 1 + gnu/packages/busybox.scm | 14 +++- ...box-1.31.1-fix-build-with-glibc-2.31.patch | 68 +++++++++++++++++++ 3 files changed, 81 insertions(+), 2 deletions(-) create mode 100644 gnu/packages/patches/busybox-1.31.1-fix-build-with-glibc-2.31.patch From debbugs-submit-bounces@debbugs.gnu.org Thu Jun 11 17:08:57 2020 Received: (at 41816) by debbugs.gnu.org; 11 Jun 2020 21:08:57 +0000 Received: from localhost ([127.0.0.1]:38235 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jjURU-0008Aq-Uv for submit@debbugs.gnu.org; Thu, 11 Jun 2020 17:08:57 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:48294) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jjURT-0008AT-6d for 41816@debbugs.gnu.org; Thu, 11 Jun 2020 17:08:55 -0400 Received: from dayas.lan (80-110-127-207.cgn.dynamic.surfer.at [80.110.127.207]) by dd26836.kasserver.com (Postfix) with ESMTPSA id A82283362146; Thu, 11 Jun 2020 23:08:53 +0200 (CEST) From: Danny Milosavljevic To: 41816@debbugs.gnu.org Subject: [PATCH 1/4] gnu: busybox: Make build reproducible. Date: Thu, 11 Jun 2020 23:08:45 +0200 Message-Id: <20200611210848.28784-1-dannym@scratchpost.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200611210540.28722-1-dannym@scratchpost.org> References: <20200611210540.28722-1-dannym@scratchpost.org> MIME-Version: 1.0 Tags: patch Content-Transfer-Encoding: 8bit X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 41816 Cc: Danny Milosavljevic X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) * gnu/packages/busybox.scm (busybox)[arguments]<#:phases>[disable-timestamps]: New phase. --- gnu/packages/busybox.scm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gnu/packages/busybox.scm b/gnu/packages/busybox.scm index e3431aa31b..0d692c6586 100644 --- a/gnu/packages/busybox.scm +++ b/gnu/packages/busybox.scm @@ -45,6 +45,10 @@ (arguments '(#:phases (modify-phases %standard-phases + (add-before 'configure 'disable-timestamps + (lambda _ + (setenv "KCONFIG_NOTIMESTAMP" "1") + #t)) (add-before 'configure 'disable-taskset ;; This feature fails its tests in the build environment, ;; was default 'n' until after 1.26.2. From debbugs-submit-bounces@debbugs.gnu.org Thu Jun 11 17:08:57 2020 Received: (at 41816) by debbugs.gnu.org; 11 Jun 2020 21:08:57 +0000 Received: from localhost ([127.0.0.1]:38237 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jjURV-0008As-7U for submit@debbugs.gnu.org; Thu, 11 Jun 2020 17:08:57 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:48302) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jjURT-0008AV-6d for 41816@debbugs.gnu.org; Thu, 11 Jun 2020 17:08:55 -0400 Received: from dayas.lan (80-110-127-207.cgn.dynamic.surfer.at [80.110.127.207]) by dd26836.kasserver.com (Postfix) with ESMTPSA id F35E03363898; Thu, 11 Jun 2020 23:08:53 +0200 (CEST) From: Danny Milosavljevic To: 41816@debbugs.gnu.org Subject: [PATCH 2/4] gnu: busybox: Update to 1.31.1. Date: Thu, 11 Jun 2020 23:08:46 +0200 Message-Id: <20200611210848.28784-2-dannym@scratchpost.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200611210848.28784-1-dannym@scratchpost.org> References: <20200611210540.28722-1-dannym@scratchpost.org> <20200611210848.28784-1-dannym@scratchpost.org> MIME-Version: 1.0 Tags: patch Content-Transfer-Encoding: 8bit X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 41816 Cc: Danny Milosavljevic X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) * gnu/packages/busybox.scm (busybox): Update to 1.31.1. --- gnu/packages/busybox.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/busybox.scm b/gnu/packages/busybox.scm index 0d692c6586..61a382e854 100644 --- a/gnu/packages/busybox.scm +++ b/gnu/packages/busybox.scm @@ -32,7 +32,7 @@ (define-public busybox (package (name "busybox") - (version "1.29.3") + (version "1.31.1") (source (origin (method url-fetch) (uri (string-append @@ -40,7 +40,7 @@ version ".tar.bz2")) (sha256 (base32 - "1dzg45vgy2w1xcd3p6h8d76ykhabbvk1h0lf8yb24ikrwlv8cr4p")))) + "1659aabzp8w4hayr4z8kcpbk2z1q2wqhw7i1yb0l72b45ykl1yfh")))) (build-system gnu-build-system) (arguments '(#:phases From debbugs-submit-bounces@debbugs.gnu.org Thu Jun 11 17:08:57 2020 Received: (at 41816) by debbugs.gnu.org; 11 Jun 2020 21:08:57 +0000 Received: from localhost ([127.0.0.1]:38239 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jjURV-0008Az-F7 for submit@debbugs.gnu.org; Thu, 11 Jun 2020 17:08:57 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:48312) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jjURT-0008AY-Na for 41816@debbugs.gnu.org; Thu, 11 Jun 2020 17:08:56 -0400 Received: from dayas.lan (80-110-127-207.cgn.dynamic.surfer.at [80.110.127.207]) by dd26836.kasserver.com (Postfix) with ESMTPSA id ECC83336793B; Thu, 11 Jun 2020 23:08:54 +0200 (CEST) From: Danny Milosavljevic To: 41816@debbugs.gnu.org Subject: [PATCH 4/4] gnu: busybox: Fix test. Date: Thu, 11 Jun 2020 23:08:48 +0200 Message-Id: <20200611210848.28784-4-dannym@scratchpost.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200611210848.28784-1-dannym@scratchpost.org> References: <20200611210540.28722-1-dannym@scratchpost.org> <20200611210848.28784-1-dannym@scratchpost.org> MIME-Version: 1.0 Tags: patch Content-Transfer-Encoding: 8bit X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 41816 Cc: Danny Milosavljevic X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) * gnu/packages/busybox.scm (busybox)[arguments]<#:phases>[check]: Fix test. --- gnu/packages/busybox.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnu/packages/busybox.scm b/gnu/packages/busybox.scm index dce5ccf766..305a61f40b 100644 --- a/gnu/packages/busybox.scm +++ b/gnu/packages/busybox.scm @@ -82,6 +82,9 @@ (substitute* "testsuite/date/date-works-1" (("/bin/date") (which "date"))) + (substitute* "testsuite/start-stop-daemon.tests" + (("/bin/false") (which "false"))) + ;; The pidof tests assume that pid 1 is called "init" but that is not ;; true in guix build environment (substitute* "testsuite/pidof.tests" From debbugs-submit-bounces@debbugs.gnu.org Thu Jun 11 17:09:02 2020 Received: (at 41816) by debbugs.gnu.org; 11 Jun 2020 21:09:02 +0000 Received: from localhost ([127.0.0.1]:38241 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jjURY-0008BK-NY for submit@debbugs.gnu.org; Thu, 11 Jun 2020 17:09:02 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:48304) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jjURT-0008AW-EC for 41816@debbugs.gnu.org; Thu, 11 Jun 2020 17:08:59 -0400 Received: from dayas.lan (80-110-127-207.cgn.dynamic.surfer.at [80.110.127.207]) by dd26836.kasserver.com (Postfix) with ESMTPSA id 3F1023366D21; Thu, 11 Jun 2020 23:08:54 +0200 (CEST) From: Danny Milosavljevic To: 41816@debbugs.gnu.org Subject: [PATCH 3/4] gnu: busybox: Fix build with new glibc. Date: Thu, 11 Jun 2020 23:08:47 +0200 Message-Id: <20200611210848.28784-3-dannym@scratchpost.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200611210848.28784-1-dannym@scratchpost.org> References: <20200611210540.28722-1-dannym@scratchpost.org> <20200611210848.28784-1-dannym@scratchpost.org> MIME-Version: 1.0 Tags: patch Content-Transfer-Encoding: 8bit X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 41816 Cc: Danny Milosavljevic X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) * gnu/packages/patches/busybox-1.31.1-fix-build-with-glibc-2.31.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/busybox.scm (busybox)[source]: Use it. --- gnu/local.mk | 1 + gnu/packages/busybox.scm | 5 +- ...box-1.31.1-fix-build-with-glibc-2.31.patch | 68 +++++++++++++++++++ 3 files changed, 73 insertions(+), 1 deletion(-) create mode 100644 gnu/packages/patches/busybox-1.31.1-fix-build-with-glibc-2.31.patch diff --git a/gnu/local.mk b/gnu/local.mk index 76d6b5deba..221e3b12e4 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -805,6 +805,7 @@ dist_patch_DATA = \ %D%/packages/patches/blender-2.79-newer-ffmpeg.patch \ %D%/packages/patches/blender-2.79-python-3.7-fix.patch \ %D%/packages/patches/bluez-CVE-2020-0556.patch \ + %D%/packages/patches/busybox-1.31.1-fix-build-with-glibc-2.31.patch \ %D%/packages/patches/byobu-writable-status.patch \ %D%/packages/patches/calibre-msgpack-compat.patch \ %D%/packages/patches/calibre-no-updates-dialog.patch \ diff --git a/gnu/packages/busybox.scm b/gnu/packages/busybox.scm index 61a382e854..dce5ccf766 100644 --- a/gnu/packages/busybox.scm +++ b/gnu/packages/busybox.scm @@ -40,7 +40,10 @@ version ".tar.bz2")) (sha256 (base32 - "1659aabzp8w4hayr4z8kcpbk2z1q2wqhw7i1yb0l72b45ykl1yfh")))) + "1659aabzp8w4hayr4z8kcpbk2z1q2wqhw7i1yb0l72b45ykl1yfh")) + (patches + (search-patches + "busybox-1.31.1-fix-build-with-glibc-2.31.patch")))) (build-system gnu-build-system) (arguments '(#:phases diff --git a/gnu/packages/patches/busybox-1.31.1-fix-build-with-glibc-2.31.patch b/gnu/packages/patches/busybox-1.31.1-fix-build-with-glibc-2.31.patch new file mode 100644 index 0000000000..1518df067f --- /dev/null +++ b/gnu/packages/patches/busybox-1.31.1-fix-build-with-glibc-2.31.patch @@ -0,0 +1,68 @@ +See: https://bugs.gentoo.org/708350 +Author: Patrick McLean +Date: 2020-02-06 23:06:22 +0000 +diff --git a/coreutils/date.c b/coreutils/date.c +index 3414d38ae..4ade6abb4 100644 +--- a/coreutils/date.c ++++ b/coreutils/date.c +@@ -279,6 +279,9 @@ int date_main(int argc UNUSED_PARAM, char **argv) + time(&ts.tv_sec); + #endif + } ++#if !ENABLE_FEATURE_DATE_NANO ++ ts.tv_nsec = 0; ++#endif + localtime_r(&ts.tv_sec, &tm_time); + + /* If date string is given, update tm_time, and maybe set date */ +@@ -301,9 +304,10 @@ int date_main(int argc UNUSED_PARAM, char **argv) + if (date_str[0] != '@') + tm_time.tm_isdst = -1; + ts.tv_sec = validate_tm_time(date_str, &tm_time); ++ ts.tv_nsec = 0; + + /* if setting time, set it */ +- if ((opt & OPT_SET) && stime(&ts.tv_sec) < 0) { ++ if ((opt & OPT_SET) && clock_settime(CLOCK_REALTIME, &ts) < 0) { + bb_perror_msg("can't set date"); + } + } +diff --git a/libbb/missing_syscalls.c b/libbb/missing_syscalls.c +index 87cf59b3d..dc40d9155 100644 +--- a/libbb/missing_syscalls.c ++++ b/libbb/missing_syscalls.c +@@ -15,14 +15,6 @@ pid_t getsid(pid_t pid) + return syscall(__NR_getsid, pid); + } + +-int stime(const time_t *t) +-{ +- struct timeval tv; +- tv.tv_sec = *t; +- tv.tv_usec = 0; +- return settimeofday(&tv, NULL); +-} +- + int sethostname(const char *name, size_t len) + { + return syscall(__NR_sethostname, name, len); +diff --git a/util-linux/rdate.c b/util-linux/rdate.c +index 70f829e7f..878375d78 100644 +--- a/util-linux/rdate.c ++++ b/util-linux/rdate.c +@@ -95,9 +95,13 @@ int rdate_main(int argc UNUSED_PARAM, char **argv) + if (!(flags & 2)) { /* no -p (-s may be present) */ + if (time(NULL) == remote_time) + bb_error_msg("current time matches remote time"); +- else +- if (stime(&remote_time) < 0) ++ else { ++ struct timespec ts; ++ ts.tv_sec = remote_time; ++ ts.tv_nsec = 0; ++ if (clock_settime(CLOCK_REALTIME, &ts) < 0) + bb_perror_msg_and_die("can't set time of day"); ++ } + } + + if (flags != 1) /* not lone -s */ From debbugs-submit-bounces@debbugs.gnu.org Sun Jun 14 06:32:17 2020 Received: (at 41816) by debbugs.gnu.org; 14 Jun 2020 10:32:17 +0000 Received: from localhost ([127.0.0.1]:42941 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jkPvx-00067A-Cd for submit@debbugs.gnu.org; Sun, 14 Jun 2020 06:32:17 -0400 Received: from flashner.co.il ([178.62.234.194]:35264) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jkPvr-00066k-Po for 41816@debbugs.gnu.org; Sun, 14 Jun 2020 06:32:12 -0400 Received: from localhost (unknown [31.210.181.184]) by flashner.co.il (Postfix) with ESMTPSA id 4F6CA40091; Sun, 14 Jun 2020 10:32:01 +0000 (UTC) Date: Sun, 14 Jun 2020 13:31:28 +0300 From: Efraim Flashner To: Danny Milosavljevic Subject: Re: [bug#41816] [PATCH 0/4] Fix busybox. Message-ID: <20200614103128.GA1990@E5400> References: <20200611210540.28722-1-dannym@scratchpost.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="mP3DRpeJDSE+ciuQ" Content-Disposition: inline In-Reply-To: <20200611210540.28722-1-dannym@scratchpost.org> X-PGP-Key-ID: 0x41AAE7DCCA3D8351 X-PGP-Key: https://flashner.co.il/~efraim/efraim_flashner.asc X-PGP-Fingerprint: A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 41816 Cc: 41816@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --mP3DRpeJDSE+ciuQ Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jun 11, 2020 at 11:05:40PM +0200, Danny Milosavljevic wrote: > Danny Milosavljevic (4): > gnu: busybox: Make build reproducible. > gnu: busybox: Update to 1.31.1. > gnu: busybox: Fix build with new glibc. > gnu: busybox: Fix test. >=20 > gnu/local.mk | 1 + > gnu/packages/busybox.scm | 14 +++- > ...box-1.31.1-fix-build-with-glibc-2.31.patch | 68 +++++++++++++++++++ > 3 files changed, 81 insertions(+), 2 deletions(-) > create mode 100644 gnu/packages/patches/busybox-1.31.1-fix-build-with-gl= ibc-2.31.patch It looks like patches 2-4 should all be combined, since without patch 3 or 4 the update to 1.31.1 doesn't produce a working package at the end. --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --mP3DRpeJDSE+ciuQ Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAl7l/H0ACgkQQarn3Mo9 g1Gx0BAAt/3/a1VFu1WGA3oerbyS3ndNSQjsoFbR5lzzhZP4sSOXzCsk89EVsYil z3LkrhUexErne7i0n/7FWHvIjiskw0gYTQ1XiVtDeO2mauG3A7jgH7HA3PwMZpx4 VYjSSlE6eZPExOj0Fx52rj0lvgMxUHh7AZaeJD6TCMvUXeU674IcyIpbRroGeXho KhfDSZbtJfMxyeV+AUd3EhiGi8ag4kvX6ob5sKvfAOidKgFWT87XI+YO/6ewSd5O XgCEFEPG+X1C97ZC5JghCfMLhOwX4trktpqygYmGdTsgzF+pNiNZwfV6MoKCo3Yk QufDJlmaCLDMqy0jXHTIcd9N/WRC+ZIbCQOmXGoSIeWHPsgiBxfLcvd3iibLMid6 gBn+4sGfDOQUuBvcZ65wWi3Q0boxtNa4LORPCEX6ELEt44vLTsrZT/1SkFyPBErG ceA0Y+ZCcy0dQKZApvX7G7+iyGQKBpwrpfsE45AJB9ZaHY27UcZm5L64r7g7vXxU TgUxgqZOm8F8wyA+C+FYEGap49/b1JxyrlhMMKNxU5PdZTGD35uJCzfb0YEwoyZg d9dxd828fAy6d6j69cLRTIDBB1UL9qNaB2sUTlJ23i4I07/88g+W17N2SbjY3DmL xCN8/aaH5nhCcY7h3Z3odFggTBLItFRQjap5huJzcTZbTkBTszw= =o5ZY -----END PGP SIGNATURE----- --mP3DRpeJDSE+ciuQ-- From debbugs-submit-bounces@debbugs.gnu.org Sun Jun 14 06:37:45 2020 Received: (at 41816) by debbugs.gnu.org; 14 Jun 2020 10:37:45 +0000 Received: from localhost ([127.0.0.1]:42945 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jkQ1H-0006Eh-6r for submit@debbugs.gnu.org; Sun, 14 Jun 2020 06:37:45 -0400 Received: from eggs.gnu.org ([209.51.188.92]:38354) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jkQ1B-0006ER-Ac for 41816@debbugs.gnu.org; Sun, 14 Jun 2020 06:37:41 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:43093) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jkQ15-0005oH-IY; Sun, 14 Jun 2020 06:37:31 -0400 Received: from [2a01:e0a:fa:a50:d869:cbcf:2456:40cc] (port=36364 helo=meru) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1jkQ14-0006xh-U6; Sun, 14 Jun 2020 06:37:31 -0400 From: Mathieu Othacehe To: Danny Milosavljevic Subject: Re: [bug#41816] [PATCH 0/4] Fix busybox. References: <20200611210540.28722-1-dannym@scratchpost.org> Date: Sun, 14 Jun 2020 12:37:29 +0200 In-Reply-To: <20200611210540.28722-1-dannym@scratchpost.org> (Danny Milosavljevic's message of "Thu, 11 Jun 2020 23:05:40 +0200") Message-ID: <87v9juj5li.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 41816 Cc: 41816@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hello Danny, > gnu/local.mk | 1 + > gnu/packages/busybox.scm | 14 +++- > ...box-1.31.1-fix-build-with-glibc-2.31.patch | 68 +++++++++++++++++++ > 3 files changed, 81 insertions(+), 2 deletions(-) > create mode 100644 gnu/packages/patches/busybox-1.31.1-fix-build-with-glibc-2.31.patch You may want to merge patches 2-4 as Efraim noted, otherwise this looks fine to me :) Thanks, Mathieu From debbugs-submit-bounces@debbugs.gnu.org Sun Jun 14 07:06:25 2020 Received: (at 41816-done) by debbugs.gnu.org; 14 Jun 2020 11:06:25 +0000 Received: from localhost ([127.0.0.1]:42976 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jkQT3-0006ym-Ek for submit@debbugs.gnu.org; Sun, 14 Jun 2020 07:06:25 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:51580) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jkQT1-0006ye-T0 for 41816-done@debbugs.gnu.org; Sun, 14 Jun 2020 07:06:24 -0400 Received: from localhost (80-110-127-207.cgn.dynamic.surfer.at [80.110.127.207]) by dd26836.kasserver.com (Postfix) with ESMTPSA id 4ED87336814F for <41816-done@debbugs.gnu.org>; Sun, 14 Jun 2020 13:06:22 +0200 (CEST) Date: Sun, 14 Jun 2020 13:06:20 +0200 From: Danny Milosavljevic To: 41816-done@debbugs.gnu.org Subject: [PATCH 0/4] Fix busybox. Message-ID: <20200614130620.54483614@scratchpost.org> In-Reply-To: <20200611210848.28784-1-dannym@scratchpost.org> References: <20200611210540.28722-1-dannym@scratchpost.org> <20200611210848.28784-1-dannym@scratchpost.org> X-Mailer: Claws Mail 3.17.5 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/Iwfp=WAAU9ne5uAWojSGQ.2"; protocol="application/pgp-signature"; micalg=pgp-sha512 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 41816-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) --Sig_/Iwfp=WAAU9ne5uAWojSGQ.2 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Patchset squashed and merged as commits c37dc30e61c56de1815750e52186c6de5be= 38ee9 and 4fdf3a2e6ef0d635e79aaf912c6997d2cd978835. --Sig_/Iwfp=WAAU9ne5uAWojSGQ.2 Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEds7GsXJ0tGXALbPZ5xo1VCwwuqUFAl7mBKwACgkQ5xo1VCww uqWbowgAp4k5aN8I0QQA5ERYXKO2a7HfBHbjZx34o7SPS4khM4tPA7KOn+TBPZ0y lVcFdsxUrE2sCeYUAdG4X2zk9RP+IbQ1zkmfjPw+EEe9WNnJ+8DeIlP2ttlscmc9 A9CNRtBNDFcF4izsXKODLkZOgMNkbKDgrmajRVd4ykGQ6bu4n9T7zYF2AMEj5JQE gojRjEXSzjRbucx0iXQKD4lO/wHVkPVsbTlY19lFHlr6pzKhbIuvKjd30iHAaz49 dsZWes/oPJ5DxV66f8VFGIDIOJnAr+zi23wAnRCwogfW8JOgsYUDGA2WlMkkaONS GmBT+LFiLTiBHDDmS6tRFCQm8numhg== =QoVq -----END PGP SIGNATURE----- --Sig_/Iwfp=WAAU9ne5uAWojSGQ.2-- From unknown Thu Aug 14 22:18:23 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 12 Jul 2020 11:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator