From unknown Tue Jun 17 22:28:30 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49538] [CORE-UPDATES][PATCH] gnu: openssl-1.0: Build with openssl sources. Resent-From: Efraim Flashner Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 12 Jul 2021 17:53:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 49538 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49538@debbugs.gnu.org Cc: Efraim Flashner X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.162611234922438 (code B ref -1); Mon, 12 Jul 2021 17:53:01 +0000 Received: (at submit) by debbugs.gnu.org; 12 Jul 2021 17:52:29 +0000 Received: from localhost ([127.0.0.1]:38834 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m306X-0005pq-6g for submit@debbugs.gnu.org; Mon, 12 Jul 2021 13:52:29 -0400 Received: from lists.gnu.org ([209.51.188.17]:55388) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m306V-0005pi-RS for submit@debbugs.gnu.org; Mon, 12 Jul 2021 13:52:28 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:56818) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m306V-000399-Hi for guix-patches@gnu.org; Mon, 12 Jul 2021 13:52:27 -0400 Received: from flashner.co.il ([178.62.234.194]:48210) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1m306T-0005Vu-Gb for guix-patches@gnu.org; Mon, 12 Jul 2021 13:52:27 -0400 Received: from localhost (unknown [31.210.177.125]) by flashner.co.il (Postfix) with ESMTPSA id 68CF8400F4; Mon, 12 Jul 2021 17:51:52 +0000 (UTC) From: Efraim Flashner Date: Mon, 12 Jul 2021 20:50:22 +0300 Message-Id: <9d380d39f78149a6a6d78c484fab6ce6cb1059ba.1626112108.git.efraim@flashner.co.il> X-Mailer: git-send-email 2.32.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.62.234.194; envelope-from=efraim@flashner.co.il; helo=flashner.co.il X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) 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: -2.3 (--) * gnu/packages/tls.scm (openssl-1.0): Replace package with openssl built with openssl-1.0 API. --- I was poking around with openssl on master and I realized that openssl-1.1 can be built targeting the API for 1.1, 1.0 or 0.9.8. I test built dillo with openssl-1.1 with the API for 1.0 and it was working for me. I figure this isn't a bad way to make things a bit better while we try to get rid of openssl-1.0. --- gnu/packages/tls.scm | 92 ++------------------------------------------ 1 file changed, 3 insertions(+), 89 deletions(-) diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm index 297e16dd70..ed22518e02 100644 --- a/gnu/packages/tls.scm +++ b/gnu/packages/tls.scm @@ -447,97 +447,11 @@ required structures.") (home-page "https://www.openssl.org/"))) (define-public openssl-1.0 - (package - (inherit openssl) + (package/inherit openssl (name "openssl") - (version "1.0.2u") - (source (origin - (method url-fetch) - (uri (list (string-append "https://www.openssl.org/source/openssl-" - version ".tar.gz") - (string-append "ftp://ftp.openssl.org/source/" - "openssl-" version ".tar.gz") - (string-append "ftp://ftp.openssl.org/source/old/" - (string-trim-right version char-set:letter) - "/openssl-" version ".tar.gz"))) - (sha256 - (base32 - "05lxcs4hzyfqd5jn0d9p0fvqna62v2s4pc9qgmq0dpcknkzwdl7c")) - (patches (search-patches "openssl-runpath.patch" - "openssl-c-rehash-in.patch")))) - (outputs '("out" - "doc" ;1.5MiB of man3 pages - "static")) ;6MiB of .a files (arguments - (substitute-keyword-arguments (package-arguments openssl) - ;; Parallel build is not supported in 1.0.x. - ((#:parallel-build? _ #f) #f) - ((#:phases phases) - `(modify-phases ,phases - (add-before 'patch-source-shebangs 'patch-tests - (lambda* (#:key inputs native-inputs #:allow-other-keys) - (let ((bash (assoc-ref (or native-inputs inputs) "bash"))) - (substitute* (find-files "test" ".*") - (("/bin/sh") - (string-append bash "/bin/sh")) - (("/bin/rm") - "rm")) - #t))) - (add-before 'configure 'patch-Makefile.org - (lambda* (#:key outputs #:allow-other-keys) - ;; The default MANDIR is some unusual place. Fix that. - (let ((out (assoc-ref outputs "out"))) - (patch-makefile-SHELL "Makefile.org") - (substitute* "Makefile.org" - (("^MANDIR[[:blank:]]*=.*$") - (string-append "MANDIR = " out "/share/man\n"))) - #t))) - (replace 'configure - ;; Override this phase because OpenSSL 1.0 does not understand -rpath. - (lambda* (#:key outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out"))) - (invoke ,@(if (%current-target-system) - '("./Configure") - '("./config")) - "shared" ;build shared libraries - "--libdir=lib" - - ;; The default for this catch-all directory is - ;; PREFIX/ssl. Change that to something more - ;; conventional. - (string-append "--openssldir=" out - "/share/openssl-" ,version) - - (string-append "--prefix=" out) - ,@(if (%current-target-system) - '((getenv "CONFIGURE_TARGET_ARCH")) - '()))))) - (delete 'move-extra-documentation) - (add-after 'install 'move-man3-pages - (lambda* (#:key outputs #:allow-other-keys) - ;; Move section 3 man pages to "doc". - (let* ((out (assoc-ref outputs "out")) - (man3 (string-append out "/share/man/man3")) - (doc (assoc-ref outputs "doc")) - (target (string-append doc "/share/man/man3"))) - (mkdir-p target) - (for-each (lambda (file) - (rename-file file - (string-append target "/" - (basename file)))) - (find-files man3)) - (delete-file-recursively man3) - #t))) - ;; XXX: Duplicate this phase to make sure 'version' evaluates - ;; in the current scope and not the inherited one. - (replace 'remove-miscellany - (lambda* (#:key outputs #:allow-other-keys) - ;; The 'misc' directory contains random undocumented shell and Perl - ;; scripts. Remove them to avoid retaining a reference on Perl. - (let ((out (assoc-ref outputs "out"))) - (delete-file-recursively (string-append out "/share/openssl-" - ,version "/misc")) - #t))))))))) + `(#:configure-flags (list "--api=1.0.0") + ,@((package-arguments openssl)))))) (define-public libressl (package base-commit: 12c2648f4e8e050d9374ca70efd1856dc8238979 -- 2.32.0 From unknown Tue Jun 17 22:28:30 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Efraim Flashner Subject: bug#49538: closed (Re: [CORE-UPDATES][PATCH] gnu: openssl-1.0: Build with openssl sources.) Message-ID: References: <9d380d39f78149a6a6d78c484fab6ce6cb1059ba.1626112108.git.efraim@flashner.co.il> X-Gnu-PR-Message: they-closed 49538 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 49538@debbugs.gnu.org Date: Mon, 12 Jul 2021 18:06:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1626113162-23832-1" This is a multi-part message in MIME format... ------------=_1626113162-23832-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #49538: [CORE-UPDATES][PATCH] gnu: openssl-1.0: Build with openssl sources. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 49538@debbugs.gnu.org. --=20 49538: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D49538 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1626113162-23832-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 49538-done) by debbugs.gnu.org; 12 Jul 2021 18:05:04 +0000 Received: from localhost ([127.0.0.1]:38853 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m30Ii-0006B0-2s for submit@debbugs.gnu.org; Mon, 12 Jul 2021 14:05:04 -0400 Received: from flashner.co.il ([178.62.234.194]:58304) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m30Ig-0006AS-Hk for 49538-done@debbugs.gnu.org; Mon, 12 Jul 2021 14:05:03 -0400 Received: from localhost (unknown [31.210.177.125]) by flashner.co.il (Postfix) with ESMTPSA id 5ECA84049A for <49538-done@debbugs.gnu.org>; Mon, 12 Jul 2021 18:04:56 +0000 (UTC) Date: Mon, 12 Jul 2021 21:03:27 +0300 From: Efraim Flashner To: 49538-done@debbugs.gnu.org Subject: Re: [CORE-UPDATES][PATCH] gnu: openssl-1.0: Build with openssl sources. Message-ID: Mail-Followup-To: Efraim Flashner , 49538-done@debbugs.gnu.org References: <9d380d39f78149a6a6d78c484fab6ce6cb1059ba.1626112108.git.efraim@flashner.co.il> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="T7wLdie1cvrm/TLz" Content-Disposition: inline In-Reply-To: <9d380d39f78149a6a6d78c484fab6ce6cb1059ba.1626112108.git.efraim@flashner.co.il> 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: 49538-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.0 (-) --T7wLdie1cvrm/TLz Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Nevermind, this needs more work. --=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 --T7wLdie1cvrm/TLz Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAmDsg+4ACgkQQarn3Mo9 g1G6ZBAAmpICSBJLJD6Gw7pOBa1aWv9NrV/P++idWBLWL5OXQJeZbUvtwmxg97xg JcxW7tGneNwaU55+T1ijSDFJT5nOqBB2DxMdfM0YBKIZes98MwEdvDB3s4cY3Ceb Ju1KrCaHULGaA/BCoFfBrXcqpyi+FwvkKaHs1pZnBA2ngT13zAjs8mR4RYdkbDmy IUxLiNHd8I9gIkuNhxJfB7eEqIKsyyolv+n3PWIa0ngH+2rWQRvC4bKJDGML66sI QcD4MWzXlIrdljDcu5cAN27iDr8+OPpOZQoowLYTsNatCMkHdc5WpjAqtDxQ08nc o4JueuV7DrXVmtk3ow8h3C9D8Gt7aEJYV2nR/Y1M3yegx8PGaokff/p/1ggQniYa CR1DmcpQkK82xo6Qj2jMIeHyp7CY5BDHq4vbznVwBGVbByXNtTQ3bkDedVVXb5Rw irqbRuETkSG+0XU0N8wOZFvTEq/UjirB/anFu3RDY5RALfNI0MjWPBJ3bHy6sRQv 5i32//50v/GZFIIf4+QHjvVN19Hc9rVqGi52Uj//av9e5FQjowXEHxZ0fIdJEybK BwKsieYcOXW+T7jJNpulGAvILlfMky1qM8Lv9Ljh5T7N6l0yqUkCzM9JEN1zpA10 0LrzX/8hIDozlcvr0GYoEMzg/csnCo3+ybKmXMRLRGaSd/qXHlo= =1+Rs -----END PGP SIGNATURE----- --T7wLdie1cvrm/TLz-- ------------=_1626113162-23832-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 12 Jul 2021 17:52:29 +0000 Received: from localhost ([127.0.0.1]:38834 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m306X-0005pq-6g for submit@debbugs.gnu.org; Mon, 12 Jul 2021 13:52:29 -0400 Received: from lists.gnu.org ([209.51.188.17]:55388) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m306V-0005pi-RS for submit@debbugs.gnu.org; Mon, 12 Jul 2021 13:52:28 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:56818) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m306V-000399-Hi for guix-patches@gnu.org; Mon, 12 Jul 2021 13:52:27 -0400 Received: from flashner.co.il ([178.62.234.194]:48210) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1m306T-0005Vu-Gb for guix-patches@gnu.org; Mon, 12 Jul 2021 13:52:27 -0400 Received: from localhost (unknown [31.210.177.125]) by flashner.co.il (Postfix) with ESMTPSA id 68CF8400F4; Mon, 12 Jul 2021 17:51:52 +0000 (UTC) From: Efraim Flashner To: guix-patches@gnu.org Subject: [CORE-UPDATES][PATCH] gnu: openssl-1.0: Build with openssl sources. Date: Mon, 12 Jul 2021 20:50:22 +0300 Message-Id: <9d380d39f78149a6a6d78c484fab6ce6cb1059ba.1626112108.git.efraim@flashner.co.il> X-Mailer: git-send-email 2.32.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.62.234.194; envelope-from=efraim@flashner.co.il; helo=flashner.co.il X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Efraim Flashner 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: -2.3 (--) * gnu/packages/tls.scm (openssl-1.0): Replace package with openssl built with openssl-1.0 API. --- I was poking around with openssl on master and I realized that openssl-1.1 can be built targeting the API for 1.1, 1.0 or 0.9.8. I test built dillo with openssl-1.1 with the API for 1.0 and it was working for me. I figure this isn't a bad way to make things a bit better while we try to get rid of openssl-1.0. --- gnu/packages/tls.scm | 92 ++------------------------------------------ 1 file changed, 3 insertions(+), 89 deletions(-) diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm index 297e16dd70..ed22518e02 100644 --- a/gnu/packages/tls.scm +++ b/gnu/packages/tls.scm @@ -447,97 +447,11 @@ required structures.") (home-page "https://www.openssl.org/"))) (define-public openssl-1.0 - (package - (inherit openssl) + (package/inherit openssl (name "openssl") - (version "1.0.2u") - (source (origin - (method url-fetch) - (uri (list (string-append "https://www.openssl.org/source/openssl-" - version ".tar.gz") - (string-append "ftp://ftp.openssl.org/source/" - "openssl-" version ".tar.gz") - (string-append "ftp://ftp.openssl.org/source/old/" - (string-trim-right version char-set:letter) - "/openssl-" version ".tar.gz"))) - (sha256 - (base32 - "05lxcs4hzyfqd5jn0d9p0fvqna62v2s4pc9qgmq0dpcknkzwdl7c")) - (patches (search-patches "openssl-runpath.patch" - "openssl-c-rehash-in.patch")))) - (outputs '("out" - "doc" ;1.5MiB of man3 pages - "static")) ;6MiB of .a files (arguments - (substitute-keyword-arguments (package-arguments openssl) - ;; Parallel build is not supported in 1.0.x. - ((#:parallel-build? _ #f) #f) - ((#:phases phases) - `(modify-phases ,phases - (add-before 'patch-source-shebangs 'patch-tests - (lambda* (#:key inputs native-inputs #:allow-other-keys) - (let ((bash (assoc-ref (or native-inputs inputs) "bash"))) - (substitute* (find-files "test" ".*") - (("/bin/sh") - (string-append bash "/bin/sh")) - (("/bin/rm") - "rm")) - #t))) - (add-before 'configure 'patch-Makefile.org - (lambda* (#:key outputs #:allow-other-keys) - ;; The default MANDIR is some unusual place. Fix that. - (let ((out (assoc-ref outputs "out"))) - (patch-makefile-SHELL "Makefile.org") - (substitute* "Makefile.org" - (("^MANDIR[[:blank:]]*=.*$") - (string-append "MANDIR = " out "/share/man\n"))) - #t))) - (replace 'configure - ;; Override this phase because OpenSSL 1.0 does not understand -rpath. - (lambda* (#:key outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out"))) - (invoke ,@(if (%current-target-system) - '("./Configure") - '("./config")) - "shared" ;build shared libraries - "--libdir=lib" - - ;; The default for this catch-all directory is - ;; PREFIX/ssl. Change that to something more - ;; conventional. - (string-append "--openssldir=" out - "/share/openssl-" ,version) - - (string-append "--prefix=" out) - ,@(if (%current-target-system) - '((getenv "CONFIGURE_TARGET_ARCH")) - '()))))) - (delete 'move-extra-documentation) - (add-after 'install 'move-man3-pages - (lambda* (#:key outputs #:allow-other-keys) - ;; Move section 3 man pages to "doc". - (let* ((out (assoc-ref outputs "out")) - (man3 (string-append out "/share/man/man3")) - (doc (assoc-ref outputs "doc")) - (target (string-append doc "/share/man/man3"))) - (mkdir-p target) - (for-each (lambda (file) - (rename-file file - (string-append target "/" - (basename file)))) - (find-files man3)) - (delete-file-recursively man3) - #t))) - ;; XXX: Duplicate this phase to make sure 'version' evaluates - ;; in the current scope and not the inherited one. - (replace 'remove-miscellany - (lambda* (#:key outputs #:allow-other-keys) - ;; The 'misc' directory contains random undocumented shell and Perl - ;; scripts. Remove them to avoid retaining a reference on Perl. - (let ((out (assoc-ref outputs "out"))) - (delete-file-recursively (string-append out "/share/openssl-" - ,version "/misc")) - #t))))))))) + `(#:configure-flags (list "--api=1.0.0") + ,@((package-arguments openssl)))))) (define-public libressl (package base-commit: 12c2648f4e8e050d9374ca70efd1856dc8238979 -- 2.32.0 ------------=_1626113162-23832-1-- From unknown Tue Jun 17 22:28:30 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49538] [CORE-UPDATES][PATCH] gnu: openssl-1.0: Build with openssl sources. Resent-From: Leo Famulari Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 12 Jul 2021 19:42:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49538 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Efraim Flashner , 49538-done@debbugs.gnu.org Received: via spool by 49538-done@debbugs.gnu.org id=D49538.162611891632473 (code D ref 49538); Mon, 12 Jul 2021 19:42:01 +0000 Received: (at 49538-done) by debbugs.gnu.org; 12 Jul 2021 19:41:56 +0000 Received: from localhost ([127.0.0.1]:38909 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m31oS-0008Rh-Jt for submit@debbugs.gnu.org; Mon, 12 Jul 2021 15:41:56 -0400 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:59983) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m31oR-0008RT-8w for 49538-done@debbugs.gnu.org; Mon, 12 Jul 2021 15:41:55 -0400 Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 9BC2E5C010F; Mon, 12 Jul 2021 15:41:49 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Mon, 12 Jul 2021 15:41:49 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=date:from:to:subject:message-id:references:mime-version :content-type:in-reply-to; s=mesmtp; bh=oWF4YwalD7e0dOpE/gtNbVi7 3THMgZr9dnA62IpdiRU=; b=vGCViSBKXLSk9qVfD32UF4+HGwqpUOFGhjSGriWN Km1X16pUvHH0iuNqSNp0nuAretSwbb9Qab/BM+EhLH+/UzlO0VtktcacOtfetQV6 MCq912oJSoNm/BPViNgzDsBA0VeUyYGPiEZsFr9C5drv7PWAlQJsLkjA0gd9lk6+ 26s= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm3; bh=oWF4Yw alD7e0dOpE/gtNbVi73THMgZr9dnA62IpdiRU=; b=i3+3pM7Zq7pUiuouEzbJTL AfjVri1lMvHPwii671T/jKzevD9IZ4zifvp39s5qirgSGfDxRyLZ/QU/LIHwvbni u0HsAwme84FqbEXf1B4yBUNkDx+wielR/RBtpE55TQBSVCapKkkFKdCzyB53S2Jw WsRQWT7HFmQPd2pa7bWL/ad6ZLR+dNBnh7sfVdD5e9TTWLsEHkdUZBn89omNabbj 1KsVH9iiZ74UAtKIvOaU8tI4d0l1gCk0gfr/6vaFmNWzRHFbYGD+p8hL9IdM415S /FF+FUzwUDVqbaKGBpWWDa4LO7x38ViBWL0sgbpNVkJhNfebaShDU3gtboWZiDnA == X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvtddrudefucetufdoteggodetrfdotffvucfrrh hofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgenuceurghi lhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmnecujfgurh epfffhvffukfhfgggtuggjsehttdertddttddvnecuhfhrohhmpefnvghoucfhrghmuhhl rghrihcuoehlvghosehfrghmuhhlrghrihdrnhgrmhgvqeenucggtffrrghtthgvrhhnpe eukeektdffvddtudegjeegtdevhfeufeeivdejiedtieegtdevjedvjeehffevgfenucev lhhushhtvghrufhiiigvpedtnecurfgrrhgrmhepmhgrihhlfhhrohhmpehlvghosehfrg hmuhhlrghrihdrnhgrmhgv X-ME-Proxy: Received: by mail.messagingengine.com (Postfix) with ESMTPA; Mon, 12 Jul 2021 15:41:48 -0400 (EDT) Date: Mon, 12 Jul 2021 15:41:47 -0400 From: Leo Famulari Message-ID: References: <9d380d39f78149a6a6d78c484fab6ce6cb1059ba.1626112108.git.efraim@flashner.co.il> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Spam-Score: -0.7 (/) 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 (-) On Mon, Jul 12, 2021 at 09:03:27PM +0300, Efraim Flashner wrote: > Nevermind, this needs more work. Oh, too bad. It's definitely an exciting option, if it can be made to work. Otherwise we'll have to remove those packages that depend on OpenSSL 1.0... sometime soon?