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 A821C158096 for ; Sun, 25 Sep 2022 03:51:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 50DF7E0BD8; Sun, 25 Sep 2022 03:51:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 38CCBE0BD3 for ; Sun, 25 Sep 2022 03:51:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 4CE47340E9A for ; Sun, 25 Sep 2022 03:51:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AA9145EB for ; Sun, 25 Sep 2022 03:51:54 +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: <1664077633.fd1ca93047532ca046f0772c64e33974e3181e39.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/qpdf/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/qpdf/qpdf-11.1.0-r1.ebuild app-text/qpdf/qpdf-11.1.0-r2.ebuild X-VCS-Directories: app-text/qpdf/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: fd1ca93047532ca046f0772c64e33974e3181e39 X-VCS-Branch: master Date: Sun, 25 Sep 2022 03:51:54 +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: d5b7ff1e-5da2-4fa4-83dd-879b70a0f4b4 X-Archives-Hash: bdb34feebc49d59a17485cd8ad557a67 commit: fd1ca93047532ca046f0772c64e33974e3181e39 Author: Jordan Yelloz yelloz me> AuthorDate: Sun Sep 25 03:37:11 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Sep 25 03:47:13 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd1ca930 app-text/qpdf: Fixed DEFAULT_CRYPTO value. The DEFAULT_CRYPTO argument expects the values to be in lowercase. Closes: https://bugs.gentoo.org/872716 Signed-off-by: Jordan Yelloz yelloz.me> Closes: https://github.com/gentoo/gentoo/pull/27434 Signed-off-by: Sam James gentoo.org> app-text/qpdf/{qpdf-11.1.0-r1.ebuild => qpdf-11.1.0-r2.ebuild} | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app-text/qpdf/qpdf-11.1.0-r1.ebuild b/app-text/qpdf/qpdf-11.1.0-r2.ebuild similarity index 94% rename from app-text/qpdf/qpdf-11.1.0-r1.ebuild rename to app-text/qpdf/qpdf-11.1.0-r2.ebuild index f0a13b28829a..774c671b8246 100644 --- a/app-text/qpdf/qpdf-11.1.0-r1.ebuild +++ b/app-text/qpdf/qpdf-11.1.0-r2.ebuild @@ -52,8 +52,9 @@ src_configure() { if use ssl ; then local crypto_provider=$(usex gnutls GNUTLS OPENSSL) + local crypto_provider_lowercase=${crypto_provider,,} mycmakeargs+=( - -DDEFAULT_CRYPTO=${crypto_provider} + -DDEFAULT_CRYPTO=${crypto_provider_lowercase} -DREQUIRE_CRYPTO_${crypto_provider}=ON ) fi