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 496C9158020 for ; Tue, 15 Nov 2022 08:46:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A63CDE09BB; Tue, 15 Nov 2022 08:46:36 +0000 (UTC) Received: from smtp.gentoo.org (mail.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 916ABE09BB for ; Tue, 15 Nov 2022 08:46:36 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 520E7340EB2 for ; Tue, 15 Nov 2022 08:46:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3FAF075E for ; Tue, 15 Nov 2022 08:46:32 +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: <1668501131.6c8a22442f360829473a3bc73c0778ba8155e04d.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/poco/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/poco/metadata.xml dev-libs/poco/poco-1.12.2-r1.ebuild dev-libs/poco/poco-1.12.2.ebuild X-VCS-Directories: dev-libs/poco/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6c8a22442f360829473a3bc73c0778ba8155e04d X-VCS-Branch: master Date: Tue, 15 Nov 2022 08:46:32 +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: 4ab2ba66-6c99-445a-a473-cb7eb191a5c8 X-Archives-Hash: 1e800cd26a39aaf234dd876070ce87d4 commit: 6c8a22442f360829473a3bc73c0778ba8155e04d Author: Anna Vyalkova sysrq in> AuthorDate: Wed Nov 2 15:13:44 2022 +0000 Commit: Sam James gentoo org> CommitDate: Tue Nov 15 08:32:11 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c8a2244 dev-libs/poco: fix automagic dependency on dev-libs/openssl Closes: https://bugs.gentoo.org/879187 Signed-off-by: Anna Vyalkova sysrq.in> Signed-off-by: Sam James gentoo.org> dev-libs/poco/metadata.xml | 1 + dev-libs/poco/{poco-1.12.2.ebuild => poco-1.12.2-r1.ebuild} | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/dev-libs/poco/metadata.xml b/dev-libs/poco/metadata.xml index 5f1faf2571bf..7aa25bdef8f1 100644 --- a/dev-libs/poco/metadata.xml +++ b/dev-libs/poco/metadata.xml @@ -37,6 +37,7 @@ done quickly and working on the features that make their application unique. Database abstraction layer to easily send/retrieve data to/from various databases Utility to convert ordinary files to Page Compiler source files Add JSON support + Add JSON Web Token support Prefer dev-db/mariadb-connector-c over dev-db/mysql-connector-c Add dev-db/mongodb support Classes to write network clients & servers diff --git a/dev-libs/poco/poco-1.12.2.ebuild b/dev-libs/poco/poco-1.12.2-r1.ebuild similarity index 95% rename from dev-libs/poco/poco-1.12.2.ebuild rename to dev-libs/poco/poco-1.12.2-r1.ebuild index 33b7323596c5..69708db02e81 100644 --- a/dev-libs/poco/poco-1.12.2.ebuild +++ b/dev-libs/poco/poco-1.12.2-r1.ebuild @@ -13,12 +13,13 @@ S="${WORKDIR}/${PN}-${P}-release" LICENSE="Boost-1.0" SLOT="0" KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" -IUSE="7z activerecord cppparser +crypto +data examples +file2pagecompiler iodbc +json mariadb +mongodb mysql +net odbc +pagecompiler pdf pocodoc postgres prometheus sqlite +ssl test +util +xml +zip" +IUSE="7z activerecord cppparser +crypto +data examples +file2pagecompiler iodbc +json jwt mariadb +mongodb mysql +net odbc +pagecompiler pdf pocodoc postgres prometheus sqlite +ssl test +util +xml +zip" RESTRICT="!test? ( test )" REQUIRED_USE=" 7z? ( xml ) file2pagecompiler? ( pagecompiler ) iodbc? ( odbc ) + jwt? ( json ssl ) mongodb? ( data ) mysql? ( data ) odbc? ( data ) @@ -98,6 +99,7 @@ src_configure() { -DENABLE_DATA_POSTGRESQL="$(usex postgres)" -DENABLE_DATA_SQLITE="$(usex sqlite)" -DENABLE_JSON="$(usex util)" + -DENABLE_JWT="$(usex jwt)" -DENABLE_MONGODB="$(usex mongodb)" -DENABLE_NET="$(usex net)" -DENABLE_NETSSL="$(usex ssl)"