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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C044715808B for ; Sun, 27 Feb 2022 14:28:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B13B5E0824; Sun, 27 Feb 2022 14:28:06 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 95417E0824 for ; Sun, 27 Feb 2022 14:28:06 +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 52EE93434AD for ; Sun, 27 Feb 2022 14:28:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A52F0D0 for ; Sun, 27 Feb 2022 14:28:03 +0000 (UTC) From: "Oliver Freyermuth" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Oliver Freyermuth" Message-ID: <1645972078.a0d01036fb95bc90ba95c147bdba108187d93e13.freyermuth@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/jwt-cpp/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-cpp/jwt-cpp/jwt-cpp-0.4.0.ebuild dev-cpp/jwt-cpp/jwt-cpp-0.6.0.ebuild X-VCS-Directories: dev-cpp/jwt-cpp/ X-VCS-Committer: freyermuth X-VCS-Committer-Name: Oliver Freyermuth X-VCS-Revision: a0d01036fb95bc90ba95c147bdba108187d93e13 X-VCS-Branch: dev Date: Sun, 27 Feb 2022 14:28:03 +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: 152fd320-e468-4d5b-9c86-c38989d1c8c9 X-Archives-Hash: bb6ed7a7c409e28feaae7b413b751ffa commit: a0d01036fb95bc90ba95c147bdba108187d93e13 Author: Oliver Freyermuth googlemail com> AuthorDate: Sun Feb 27 14:27:58 2022 +0000 Commit: Oliver Freyermuth googlemail com> CommitDate: Sun Feb 27 14:27:58 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a0d01036 dev-cpp/jwt-cpp: Add missing dev-cpp/gtest dep for USE=test. Closes: https://bugs.gentoo.org/834148 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Oliver Freyermuth googlemail.com> dev-cpp/jwt-cpp/jwt-cpp-0.4.0.ebuild | 3 ++- dev-cpp/jwt-cpp/jwt-cpp-0.6.0.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-cpp/jwt-cpp/jwt-cpp-0.4.0.ebuild b/dev-cpp/jwt-cpp/jwt-cpp-0.4.0.ebuild index 9b41ae22f..0d9482b32 100644 --- a/dev-cpp/jwt-cpp/jwt-cpp-0.4.0.ebuild +++ b/dev-cpp/jwt-cpp/jwt-cpp-0.4.0.ebuild @@ -23,7 +23,8 @@ IUSE="doc +picojson test" DEPEND="${RDEPEND} dev-libs/openssl - picojson? ( dev-cpp/picojson )" + picojson? ( dev-cpp/picojson ) + test? ( dev-cpp/gtest )" BDEPEND="doc? ( app-doc/doxygen[dot] )" RESTRICT="!picojson? ( test )" diff --git a/dev-cpp/jwt-cpp/jwt-cpp-0.6.0.ebuild b/dev-cpp/jwt-cpp/jwt-cpp-0.6.0.ebuild index fe1a3e1ff..ebec5e087 100644 --- a/dev-cpp/jwt-cpp/jwt-cpp-0.6.0.ebuild +++ b/dev-cpp/jwt-cpp/jwt-cpp-0.6.0.ebuild @@ -24,7 +24,8 @@ IUSE="doc +picojson test" DEPEND="${RDEPEND} dev-cpp/nlohmann_json dev-libs/openssl - picojson? ( dev-cpp/picojson )" + picojson? ( dev-cpp/picojson ) + test? ( dev-cpp/gtest )" BDEPEND="doc? ( app-doc/doxygen[dot] )" RESTRICT="!picojson? ( test )" DOCS=( README.md docs/{faqs,ssl,traits}.md )