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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6EFBE1396D1 for ; Mon, 28 Aug 2017 18:23:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 68B8BE0E5A; Mon, 28 Aug 2017 18:23:52 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 47733E0E5A for ; Mon, 28 Aug 2017 18:23:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F209D33BE32 for ; Mon, 28 Aug 2017 18:23:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AD22085DA for ; Mon, 28 Aug 2017 18:23:49 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1503944419.95aff96d4aada8c2905f0ce7e3d4d12589cfa638.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/libjson-rpc-cpp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/libjson-rpc-cpp/libjson-rpc-cpp-9999.ebuild dev-cpp/libjson-rpc-cpp/metadata.xml X-VCS-Directories: dev-cpp/libjson-rpc-cpp/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 95aff96d4aada8c2905f0ce7e3d4d12589cfa638 X-VCS-Branch: master Date: Mon, 28 Aug 2017 18:23:49 +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-Archives-Salt: a11c9f65-96b3-403d-8e80-5fbaa11b9621 X-Archives-Hash: 306186003cdf7f4b964625c8016d814d commit: 95aff96d4aada8c2905f0ce7e3d4d12589cfa638 Author: Michał Górny gentoo org> AuthorDate: Mon Aug 28 18:17:12 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Aug 28 18:20:19 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95aff96d dev-cpp/libjson-rpc-cpp: Add USE flags for Redis in -9999 dev-cpp/libjson-rpc-cpp/libjson-rpc-cpp-9999.ebuild | 6 +++++- dev-cpp/libjson-rpc-cpp/metadata.xml | 2 ++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/dev-cpp/libjson-rpc-cpp/libjson-rpc-cpp-9999.ebuild b/dev-cpp/libjson-rpc-cpp/libjson-rpc-cpp-9999.ebuild index db9f427e587..7c78e3d2afc 100644 --- a/dev-cpp/libjson-rpc-cpp/libjson-rpc-cpp-9999.ebuild +++ b/dev-cpp/libjson-rpc-cpp/libjson-rpc-cpp-9999.ebuild @@ -14,12 +14,14 @@ SRC_URI="" LICENSE="MIT" SLOT="0/1" KEYWORDS="" -IUSE="doc +http-client +http-server +stubgen test" +IUSE="doc +http-client +http-server redis-client redis-server +stubgen test" RDEPEND=" dev-libs/jsoncpp:= http-client? ( net-misc/curl:= ) http-server? ( net-libs/libmicrohttpd:= ) + redis-client? ( dev-libs/hiredis:= ) + redis-server? ( dev-libs/hiredis:= ) stubgen? ( dev-libs/argtable:= )" DEPEND="${RDEPEND} doc? ( app-doc/doxygen ) @@ -31,6 +33,8 @@ src_configure() { local mycmakeargs=( -DHTTP_CLIENT=$(usex http-client) -DHTTP_SERVER=$(usex http-server) + -DREDIS_CLIENT=$(usex redis-client) + -DREDIS_SERVER=$(usex redis-server) # they are not installed -DCOMPILE_EXAMPLES=OFF -DCOMPILE_STUBGEN=$(usex stubgen) diff --git a/dev-cpp/libjson-rpc-cpp/metadata.xml b/dev-cpp/libjson-rpc-cpp/metadata.xml index 69fdda5ec8e..b7a3bb5af8a 100644 --- a/dev-cpp/libjson-rpc-cpp/metadata.xml +++ b/dev-cpp/libjson-rpc-cpp/metadata.xml @@ -8,6 +8,8 @@ Build support for HTTP client using net-misc/curl Build support for HTTP server using net-libs/libmicrohttpd + Build support for Redis client using dev-libs/hiredis + Build support for Redis server using dev-libs/hiredis Build header stub code generator (needed for development and when pregenerated headers are not bundled)