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 4C192138359 for ; Tue, 1 Sep 2020 09:07:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5722CE088D; Tue, 1 Sep 2020 09:07:18 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 0C2C4E087E for ; Tue, 1 Sep 2020 09:07:18 +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 4ACEC340EC4 for ; Tue, 1 Sep 2020 09:07:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B47742F9 for ; Tue, 1 Sep 2020 09:07:14 +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: <1598951219.3f7eab9ae999cfd31debc0a9ebe822ed0fb375e7.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libbtbb/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libbtbb/libbtbb-2018.08.1.ebuild net-libs/libbtbb/libbtbb-2018.12.1.ebuild net-libs/libbtbb/libbtbb-9999.ebuild net-libs/libbtbb/metadata.xml X-VCS-Directories: net-libs/libbtbb/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3f7eab9ae999cfd31debc0a9ebe822ed0fb375e7 X-VCS-Branch: master Date: Tue, 1 Sep 2020 09:07:14 +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: 8d5099b3-a352-4aae-8be6-b8a9bf62d90c X-Archives-Hash: 90e253558cd8b5f78018b01b15669bdc commit: 3f7eab9ae999cfd31debc0a9ebe822ed0fb375e7 Author: Michał Górny gentoo org> AuthorDate: Tue Sep 1 08:29:13 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Sep 1 09:06:59 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f7eab9a net-libs/libbtbb: Remove USE=extras (python2) Closes: https://bugs.gentoo.org/735418 Signed-off-by: Michał Górny gentoo.org> net-libs/libbtbb/libbtbb-2018.08.1.ebuild | 13 ++++--------- net-libs/libbtbb/libbtbb-2018.12.1.ebuild | 13 ++++--------- net-libs/libbtbb/libbtbb-9999.ebuild | 13 ++++--------- net-libs/libbtbb/metadata.xml | 1 - 4 files changed, 12 insertions(+), 28 deletions(-) diff --git a/net-libs/libbtbb/libbtbb-2018.08.1.ebuild b/net-libs/libbtbb/libbtbb-2018.08.1.ebuild index ee2dca3e96c..a1587cd739a 100644 --- a/net-libs/libbtbb/libbtbb-2018.08.1.ebuild +++ b/net-libs/libbtbb/libbtbb-2018.08.1.ebuild @@ -3,10 +3,7 @@ EAPI=6 -PYTHON_COMPAT=( python2_7 ) -DISTUTILS_OPTIONAL=1 - -inherit multilib cmake-utils python-single-r1 +inherit multilib cmake-utils DESCRIPTION="A library to decode Bluetooth baseband packets" HOMEPAGE="http://libbtbb.sourceforge.net/" @@ -24,9 +21,9 @@ fi LICENSE="GPL-2" SLOT="0/${PV}" -IUSE="extras static-libs wireshark-plugins" +IUSE="static-libs wireshark-plugins" -RDEPEND="extras? ( ${PYTHON_DEPS} ) +RDEPEND=" wireshark-plugins? ( >=net-analyzer/wireshark-1.8.3-r1:= ) @@ -35,8 +32,6 @@ DEPEND="${RDEPEND} wireshark-plugins? ( dev-libs/glib virtual/pkgconfig )" -REQUIRED_USE="extras? ( ${PYTHON_REQUIRED_USE} )" - get_PV() { local pv=$(best_version $1); pv=${pv#$1-}; pv=${pv%-r*}; pv=${pv//_}; echo ${pv}; } which_plugins() { @@ -74,7 +69,7 @@ src_configure() { CMAKE_USE_DIR="${S}" BUILD_DIR="${S}"_build local mycmakeargs=( - -DENABLE_PYTHON=$(usex extras) + -DENABLE_PYTHON=OFF -DBUILD_STATIC_LIB=$(usex static-libs) -DBUILD_ROOT="${ED}" ) diff --git a/net-libs/libbtbb/libbtbb-2018.12.1.ebuild b/net-libs/libbtbb/libbtbb-2018.12.1.ebuild index b2017354f2a..d3976d1260b 100644 --- a/net-libs/libbtbb/libbtbb-2018.12.1.ebuild +++ b/net-libs/libbtbb/libbtbb-2018.12.1.ebuild @@ -3,10 +3,7 @@ EAPI=6 -PYTHON_COMPAT=( python2_7 ) -DISTUTILS_OPTIONAL=1 - -inherit multilib cmake-utils python-single-r1 +inherit multilib cmake-utils DESCRIPTION="A library to decode Bluetooth baseband packets" HOMEPAGE="http://libbtbb.sourceforge.net/" @@ -24,9 +21,9 @@ fi LICENSE="GPL-2" SLOT="0/${PV}" -IUSE="extras static-libs wireshark-plugins" +IUSE="static-libs wireshark-plugins" -RDEPEND="extras? ( ${PYTHON_DEPS} ) +RDEPEND=" wireshark-plugins? ( >=net-analyzer/wireshark-1.8.3-r1:= ) @@ -35,8 +32,6 @@ DEPEND="${RDEPEND} wireshark-plugins? ( dev-libs/glib virtual/pkgconfig )" -REQUIRED_USE="extras? ( ${PYTHON_REQUIRED_USE} )" - get_PV() { local pv=$(best_version $1); pv=${pv#$1-}; pv=${pv%-r*}; pv=${pv//_}; echo ${pv}; } which_plugins() { @@ -74,7 +69,7 @@ src_configure() { CMAKE_USE_DIR="${S}" BUILD_DIR="${S}"_build local mycmakeargs=( - -DENABLE_PYTHON=$(usex extras) + -DENABLE_PYTHON=OFF -DBUILD_STATIC_LIB=$(usex static-libs) -DBUILD_ROOT="${ED}" ) diff --git a/net-libs/libbtbb/libbtbb-9999.ebuild b/net-libs/libbtbb/libbtbb-9999.ebuild index ee2dca3e96c..a1587cd739a 100644 --- a/net-libs/libbtbb/libbtbb-9999.ebuild +++ b/net-libs/libbtbb/libbtbb-9999.ebuild @@ -3,10 +3,7 @@ EAPI=6 -PYTHON_COMPAT=( python2_7 ) -DISTUTILS_OPTIONAL=1 - -inherit multilib cmake-utils python-single-r1 +inherit multilib cmake-utils DESCRIPTION="A library to decode Bluetooth baseband packets" HOMEPAGE="http://libbtbb.sourceforge.net/" @@ -24,9 +21,9 @@ fi LICENSE="GPL-2" SLOT="0/${PV}" -IUSE="extras static-libs wireshark-plugins" +IUSE="static-libs wireshark-plugins" -RDEPEND="extras? ( ${PYTHON_DEPS} ) +RDEPEND=" wireshark-plugins? ( >=net-analyzer/wireshark-1.8.3-r1:= ) @@ -35,8 +32,6 @@ DEPEND="${RDEPEND} wireshark-plugins? ( dev-libs/glib virtual/pkgconfig )" -REQUIRED_USE="extras? ( ${PYTHON_REQUIRED_USE} )" - get_PV() { local pv=$(best_version $1); pv=${pv#$1-}; pv=${pv%-r*}; pv=${pv//_}; echo ${pv}; } which_plugins() { @@ -74,7 +69,7 @@ src_configure() { CMAKE_USE_DIR="${S}" BUILD_DIR="${S}"_build local mycmakeargs=( - -DENABLE_PYTHON=$(usex extras) + -DENABLE_PYTHON=OFF -DBUILD_STATIC_LIB=$(usex static-libs) -DBUILD_ROOT="${ED}" ) diff --git a/net-libs/libbtbb/metadata.xml b/net-libs/libbtbb/metadata.xml index 810dd5222c3..3127bca391a 100644 --- a/net-libs/libbtbb/metadata.xml +++ b/net-libs/libbtbb/metadata.xml @@ -6,7 +6,6 @@ Rick Farina - Install pcapdump and btaptap tools Build the wireshark plugins for bluetooth baseband sniffing