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 B87FE13835A for ; Sun, 26 Jul 2020 18:30:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B47F8E0826; Sun, 26 Jul 2020 18:30:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 9C465E0826 for ; Sun, 26 Jul 2020 18:30:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 3AC8434F283 for ; Sun, 26 Jul 2020 18:30:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F3CB62F1 for ; Sun, 26 Jul 2020 18:30:48 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1595788241.f961376b6302f1dc4a247973097146846f23a138.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/librdkafka/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/librdkafka/librdkafka-1.5.0.ebuild X-VCS-Directories: dev-libs/librdkafka/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: f961376b6302f1dc4a247973097146846f23a138 X-VCS-Branch: master Date: Sun, 26 Jul 2020 18:30:48 +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: 5458d436-c16f-46ad-bf46-beb05f326dc3 X-Archives-Hash: aaead014b4d85609999847d6d4b1cf23 commit: f961376b6302f1dc4a247973097146846f23a138 Author: Thomas Deutschmann gentoo org> AuthorDate: Sun Jul 26 18:24:38 2020 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Sun Jul 26 18:30:41 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f961376b dev-libs/librdkafka: bump to v1.5.0 Package-Manager: Portage-3.0.0, Repoman-2.3.23 Signed-off-by: Thomas Deutschmann gentoo.org> dev-libs/librdkafka/librdkafka-1.5.0.ebuild | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/dev-libs/librdkafka/librdkafka-1.5.0.ebuild b/dev-libs/librdkafka/librdkafka-1.5.0.ebuild index b87a68933f6..86b1ca55996 100644 --- a/dev-libs/librdkafka/librdkafka-1.5.0.ebuild +++ b/dev-libs/librdkafka/librdkafka-1.5.0.ebuild @@ -3,7 +3,9 @@ EAPI="7" -inherit toolchain-funcs +PYTHON_COMPAT=( python3_{6..9} ) + +inherit python-any-r1 toolchain-funcs DESCRIPTION="Apache Kafka C/C++ client library" HOMEPAGE="https://github.com/edenhill/librdkafka" @@ -32,14 +34,22 @@ LIB_DEPEND=" sys-libs/zlib:=[static-libs(+)] " +BDEPEND=" + virtual/pkgconfig + ${PYTHON_DEPS} +" + RDEPEND="!static-libs? ( ${LIB_DEPEND//\[static-libs(+)]} )" DEPEND=" ${RDEPEND} - virtual/pkgconfig static-libs? ( ${LIB_DEPEND} ) " +pkg_setup() { + python-any-r1_pkg_setup +} + src_prepare() { default