repo/gentoo:master commit in: net-wireless/gr-osmosdr/

"Rick Farina" <[email protected]> Tue, 04 Aug 2026 22:39:32 +0000 (UTC)
Newsgroups gmane.linux.gentoo.cvs
Message-ID <1785883159.c7f516375d54c3caaff2b942399e0ef237c7c9e2.zerochaos@gentoo>
commit:     c7f516375d54c3caaff2b942399e0ef237c7c9e2
Author:     Rick Farina (Zero_Chaos) <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Tue Aug  4 22:35:13 2026 +0000
Commit:     Rick Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Tue Aug  4 22:39:19 2026 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7f51637

net-wireless/gr-osmosdr: drop 0.2.6-r1

Signed-off-by: Rick Farina (Zero_Chaos) <zerochaos <AT> gentoo.org>

 net-wireless/gr-osmosdr/gr-osmosdr-0.2.6-r1.ebuild | 88 ----------------------
 1 file changed, 88 deletions(-)

diff --git a/net-wireless/gr-osmosdr/gr-osmosdr-0.2.6-r1.ebuild b/net-wireless/gr-osmosdr/gr-osmosdr-0.2.6-r1.ebuild
deleted file mode 100644
index 405ae5caafff..000000000000
--- a/net-wireless/gr-osmosdr/gr-osmosdr-0.2.6-r1.ebuild
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{12..13} )
-inherit cmake python-single-r1
-
-DESCRIPTION="GNU Radio source block for OsmoSDR and rtlsdr and hackrf"
-HOMEPAGE="
-	https://sdr.osmocom.org/trac/wiki/GrOsmoSDR
-	https://gitea.osmocom.org/sdr/gr-osmosdr
-"
-
-if [[ ${PV} == *9999* ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://gitea.osmocom.org/sdr/gr-osmosdr.git"
-else
-	SRC_URI="https://gitea.osmocom.org/sdr/gr-osmosdr/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="amd64 ~arm ~riscv ~x86"
-	S="${WORKDIR}/${PN}"
-fi
-
-LICENSE="GPL-3"
-SLOT="0/${PV}"
-IUSE="airspy bladerf doc hackrf iqbalance rtlsdr sdrplay soapy uhd xtrx"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS}
-	dev-libs/boost:=
-	dev-libs/log4cpp
-	net-wireless/gnuradio:0=[${PYTHON_SINGLE_USEDEP}]
-	sci-libs/volk:=
-	airspy? ( net-wireless/airspy )
-	bladerf? ( >=net-wireless/bladerf-2018.08_rc1:= )
-	hackrf? ( net-libs/libhackrf:= )
-	iqbalance? ( net-wireless/gr-iqbal:=[${PYTHON_SINGLE_USEDEP}] )
-	rtlsdr? (
-		|| (
-			net-wireless/rtl-sdr
-			net-wireless/rtl-sdr-blog
-		)
-	)
-	sdrplay? ( net-wireless/sdrplay )
-	soapy? ( net-wireless/soapysdr:= )
-	uhd? ( net-wireless/uhd:=[${PYTHON_SINGLE_USEDEP}] )
-	xtrx? ( net-wireless/libxtrx )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-	$(python_gen_cond_dep 'dev-python/pybind11[${PYTHON_USEDEP}]')
-	doc? ( app-text/doxygen )
-"
-
-PATCHES=(
-	"${FILESDIR}/${PN}-0.2.3_p20210128-fix-enable-python.patch"
-	"${FILESDIR}/${P}-boost-1.89.patch" # bug #969160
-)
-
-src_configure() {
-	local mycmakeargs=(
-		-DENABLE_DEFAULT=OFF
-		-DPYTHON_EXECUTABLE="${PYTHON}"
-		-DENABLE_FILE=ON
-		-DENABLE_AIRSPY="$(usex airspy ON OFF)"
-		-DENABLE_BLADERF="$(usex bladerf ON OFF)"
-		-DENABLE_HACKRF="$(usex hackrf ON OFF)"
-		-DENABLE_IQBALANCE="$(usex iqbalance ON OFF)"
-		-DENABLE_PYTHON=ON
-		-DENABLE_RTL="$(usex rtlsdr ON OFF)"
-		-DENABLE_RTL_TCP="$(usex rtlsdr ON OFF)"
-		-DENABLE_SDRPLAY="$(usex sdrplay ON OFF)"
-		-DENABLE_NONFREE="$(usex sdrplay ON OFF)"
-		-DENABLE_SOAPY="$(usex soapy ON OFF)"
-		-DENABLE_UHD="$(usex uhd ON OFF)"
-		-DENABLE_XTRX="$(usex xtrx ON OFF)"
-		-DENABLE_DOXYGEN="$(usex doc ON OFF)"
-	)
-
-	cmake_src_configure
-}
-
-src_install() {
-	cmake_src_install
-	find "${ED}" -name '*.py[oc]' -delete || die
-	python_fix_shebang "${ED}"/usr/bin
-	python_optimize
-}