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 2FCBD158011 for ; Mon, 10 Jan 2022 16:03:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1394D2BC018; Mon, 10 Jan 2022 16:03:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 EEA472BC018 for ; Mon, 10 Jan 2022 16:03:44 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D89B8342C7A for ; Mon, 10 Jan 2022 16:03:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2650E286 for ; Mon, 10 Jan 2022 16:03:42 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1641830607.b3f6295f467a0d1ae2e48938a58bb575f02b36af.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libbtbb/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libbtbb/libbtbb-9999.ebuild X-VCS-Directories: net-libs/libbtbb/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: b3f6295f467a0d1ae2e48938a58bb575f02b36af X-VCS-Branch: master Date: Mon, 10 Jan 2022 16:03:42 +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: 9f18b64e-6356-4e2f-a77a-0c2cbd6ab9bf X-Archives-Hash: a8d89c26249b9d6a5cc82f2b3e6360a9 commit: b3f6295f467a0d1ae2e48938a58bb575f02b36af Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jan 9 20:11:39 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Jan 10 16:03:27 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3f6295f net-libs/libbtbb: EAPI-8 bump, style fixes, HOMEPAGE, indentation Bug: https://bugs.gentoo.org/789234 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> net-libs/libbtbb/libbtbb-9999.ebuild | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/net-libs/libbtbb/libbtbb-9999.ebuild b/net-libs/libbtbb/libbtbb-9999.ebuild index edbf18eed8ff..07ebc4c4767b 100644 --- a/net-libs/libbtbb/libbtbb-9999.ebuild +++ b/net-libs/libbtbb/libbtbb-9999.ebuild @@ -1,21 +1,21 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit cmake -DESCRIPTION="A library to decode Bluetooth baseband packets" -HOMEPAGE="http://libbtbb.sourceforge.net/" +DESCRIPTION="Library to decode Bluetooth baseband packets" +HOMEPAGE="https://github.com/greatscottgadgets/libbtbb" -if [[ ${PV} == "9999" ]] ; then +if [[ ${PV} == *9999* ]] ; then EGIT_REPO_URI="https://github.com/greatscottgadgets/libbtbb.git" inherit git-r3 else MY_PV=${PV/\./-} MY_PV=${MY_PV/./-R} - S=${WORKDIR}/${PN}-${MY_PV} SRC_URI="https://github.com/greatscottgadgets/${PN}/archive/${MY_PV}.tar.gz -> ${PN}-${MY_PV}.tar.gz" + S="${WORKDIR}"/${PN}-${MY_PV} KEYWORDS="~amd64 ~arm ~x86" fi @@ -24,13 +24,12 @@ SLOT="0/${PV}" IUSE="static-libs wireshark-plugins" RDEPEND=" - wireshark-plugins? ( - >=net-analyzer/wireshark-1.8.3-r1:= - ) + wireshark-plugins? ( >=net-analyzer/wireshark-1.8.3-r1:= ) " DEPEND="${RDEPEND} - wireshark-plugins? ( dev-libs/glib - virtual/pkgconfig )" + wireshark-plugins? ( dev-libs/glib ) +" +BDEPEND="virtual/pkgconfig" get_PV() { local pv=$(best_version $1); pv=${pv#$1-}; pv=${pv%-r*}; pv=${pv//_}; echo ${pv}; }