From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7B02F158091 for ; Sat, 11 Jun 2022 05:12:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B4D08E07D1; Sat, 11 Jun 2022 05:12:48 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8B324E07D1 for ; Sat, 11 Jun 2022 05:12:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4BE47341866 for ; Sat, 11 Jun 2022 05:12:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CC36C4E5 for ; Sat, 11 Jun 2022 05:12:45 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1654924357.d080ce6504c316484c2540cb69b71e7ec57f6011.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/openssl-compat/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/openssl-compat/openssl-compat-1.1.1o.ebuild X-VCS-Directories: dev-libs/openssl-compat/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d080ce6504c316484c2540cb69b71e7ec57f6011 X-VCS-Branch: master Date: Sat, 11 Jun 2022 05:12:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ea1a6ddd-3c20-4548-b70c-ab1f250d3e89 X-Archives-Hash: 9ea6192341d1e9826577789f70daaed4 commit: d080ce6504c316484c2540cb69b71e7ec57f6011 Author: Sam James gentoo org> AuthorDate: Sat Jun 11 05:12:28 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jun 11 05:12:37 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d080ce65 dev-libs/openssl-compat: tidy up; sync with openssl Signed-off-by: Sam James gentoo.org> dev-libs/openssl-compat/openssl-compat-1.1.1o.ebuild | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/dev-libs/openssl-compat/openssl-compat-1.1.1o.ebuild b/dev-libs/openssl-compat/openssl-compat-1.1.1o.ebuild index cdf051c1295d..20a03ddac7fa 100644 --- a/dev-libs/openssl-compat/openssl-compat-1.1.1o.ebuild +++ b/dev-libs/openssl-compat/openssl-compat-1.1.1o.ebuild @@ -69,11 +69,11 @@ src_unpack() { } src_prepare() { - # allow openssl to be cross-compiled + # Allow openssl to be cross-compiled cp "${FILESDIR}"/gentoo.config-1.0.2 gentoo.config || die chmod a+rx gentoo.config || die - # keep this in sync with app-misc/c_rehash + # Keep this in sync with app-misc/c_rehash SSL_CNF_DIR="/etc/ssl" # Make sure we only ever touch Makefile.org and avoid patching a file @@ -125,10 +125,11 @@ src_prepare() { append-flags $(test-flags-CC -Wa,--noexecstack) - # Prefixify Configure shebang (#141906) + # Prefixify Configure shebang (bug #141906) sed \ -e "1s,/usr/bin/env,${EPREFIX}&," \ -i Configure || die + # Remove test target when FEATURES=test isn't set if ! use test ; then sed \ @@ -172,9 +173,10 @@ multilib_src_configure() { local krb5=$(has_version app-crypt/mit-krb5 && echo "MIT" || echo "Heimdal") # See if our toolchain supports __uint128_t. If so, it's 64bit - # friendly and can use the nicely optimized code paths. #460790 + # friendly and can use the nicely optimized code paths, bug #460790. local ec_nistp_64_gcc_128 - # Disable it for now though #469976 + + # Disable it for now though (bug #469976) # echo "__uint128_t i;" > "${T}"/128.c # if ${CC} ${CFLAGS} -c "${T}"/128.c -o /dev/null >&/dev/null ; then # ec_nistp_64_gcc_128="enable-ec_nistp_64_gcc_128"