commit:     6596520729e8dd2c8d46c30c889aca0485e60d30
Author:     Rick Farina <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 30 15:43:40 2026 +0000
Commit:     Rick Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Fri Jan 30 15:44:16 2026 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65965207

net-libs/libhackrf: drop 2023.01.1, 2024.02.1, 2026.01.1, 2026.01.2

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

 net-libs/libhackrf/Manifest                   |  3 --
 net-libs/libhackrf/libhackrf-2023.01.1.ebuild | 58 ---------------------------
 net-libs/libhackrf/libhackrf-2024.02.1.ebuild | 58 ---------------------------
 net-libs/libhackrf/libhackrf-2026.01.1.ebuild | 55 -------------------------
 net-libs/libhackrf/libhackrf-2026.01.2.ebuild | 56 --------------------------
 5 files changed, 230 deletions(-)

diff --git a/net-libs/libhackrf/Manifest b/net-libs/libhackrf/Manifest
index df0a72b8d44d..4ee5181caff2 100644
--- a/net-libs/libhackrf/Manifest
+++ b/net-libs/libhackrf/Manifest
@@ -1,5 +1,2 @@
-DIST hackrf-2023.01.1.tar.xz 23030956 BLAKE2B 
f0ea4f92208d1db5b4e1c11231e4420db757c08e28e7a80d79e70b02d868689ddf516bc6f003fc208f60c221c9153412a12fe3cbdf8f58001c1f7cdd26383ac0
 SHA512 
7c2ef9c5c050e258a0d1695240f9163955cb3ea9ab9163aad6bdbdebfdb82cde9925818ced3323342fe9c4ddb80dcedbc5a7986caaa4e0b7036e8e07bec0296e
 DIST hackrf-2024.02.1.tar.xz 21734672 BLAKE2B 
493a886719aa90e1b52229beaec45cb9db315dc91d001c275dd3989cde56fe6a312d4fca1c27b4c1366a4653880e74ab3d1e4363ee392d0f93deb631b7fddac4
 SHA512 
d057574f1e9b1bc2cebcd06773054b7fcba55d44e4c028f4f95e67874b71bd0a83906795a391e283c15d2b21ad7f3e8337be5aa0ee2f6a3c57632a70da10e2e4
-DIST hackrf-2026.01.1.tar.xz 25923808 BLAKE2B 
519efa378c0f1d767a1aabe3065cf946067b6e3e24f4ebb18e2eb592ba2f38685c476662512480fec69b7a06f8583d2b3609239da23b3887f89c9acec9080c03
 SHA512 
c02d38ef158aaaca04a2ec1b78912a605cee7ed6024512e79fbdaf6c43dab8529353c18c2d23e78d9d3fd76d9d73e38588a08d8e64bb580d2acd25176155391b
-DIST hackrf-2026.01.2.tar.xz 25944064 BLAKE2B 
0b0d67fc8f3441905a1686d85050e884dcf84e3d41e28597b962e85816ca18dc98193f876c35e5439b86d876e31524d18d4cbcc87fc9758ecbbf34e215971ded
 SHA512 
1bbe4371fc944e7b8ebf36fc483bd7325f3229b9a3708123bd36db79cd3190d78e486e0971368a914c19f94d398977ab69d56ff217e09d5670bc1a2421391921
 DIST hackrf-2026.01.3.tar.xz 25945024 BLAKE2B 
e861d2250c59006fa42b63666c629bca2186d79a408dd7d0615023790434c3c06611e985da5a6c4bcbb776017d46ba7b90ba1d99825caa018318e361dbb0741f
 SHA512 
776aab11d23976ba87bf9c8af9c669b1e4967540a5b48d23d355cd0759d08b7fb36c88675082819fbca4cfd2fcdd19afbd79dea04f79128c23063334c45dd6b9

diff --git a/net-libs/libhackrf/libhackrf-2023.01.1.ebuild 
b/net-libs/libhackrf/libhackrf-2023.01.1.ebuild
deleted file mode 100644
index 3ddc3f0ba4d2..000000000000
--- a/net-libs/libhackrf/libhackrf-2023.01.1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake udev
-
-DESCRIPTION="library for communicating with HackRF SDR platform"
-HOMEPAGE="http://greatscottgadgets.com/hackrf/";
-
-if [[ ${PV} == "9999" ]] ; then
-       EGIT_REPO_URI="https://github.com/greatscottgadgets/hackrf.git";
-       inherit git-r3
-       EGIT_CHECKOUT_DIR="${WORKDIR}/hackrf"
-       S="${WORKDIR}/hackrf/host/libhackrf"
-else
-       S="${WORKDIR}/hackrf-${PV}/host/libhackrf"
-       
SRC_URI="https://github.com/greatscottgadgets/hackrf/releases/download/v${PV}/hackrf-${PV}.tar.xz";
-       KEYWORDS="amd64 arm ppc ~riscv x86"
-fi
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-IUSE="+udev"
-
-DEPEND="virtual/libusb:1"
-RDEPEND="${DEPEND}"
-
-# https://github.com/greatscottgadgets/hackrf/issues/1193
-PATCHES=( "${FILESDIR}/hackrf-disable-static-2022.09.1.patch" )
-
-src_configure() {
-       local mycmakeargs=(
-               -DINSTALL_UDEV_RULES="$(usex udev)"
-       )
-       if use udev; then
-               mycmakeargs+=(
-                       -DUDEV_RULES_GROUP=usb
-                       -DUDEV_RULES_PATH="$(get_udevdir)/rules.d"
-               )
-       fi
-       cmake_src_configure
-}
-
-src_compile() {
-       cmake_build hackrf
-}
-
-pkg_postinst() {
-       if use udev; then
-               einfo "Users in the usb group can use hackrf."
-               udev_reload
-       fi
-}
-
-pkg_postrm() {
-       udev_reload
-}

diff --git a/net-libs/libhackrf/libhackrf-2024.02.1.ebuild 
b/net-libs/libhackrf/libhackrf-2024.02.1.ebuild
deleted file mode 100644
index ef37877383dc..000000000000
--- a/net-libs/libhackrf/libhackrf-2024.02.1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake udev
-
-DESCRIPTION="library for communicating with HackRF SDR platform"
-HOMEPAGE="http://greatscottgadgets.com/hackrf/";
-
-if [[ ${PV} == "9999" ]] ; then
-       EGIT_REPO_URI="https://github.com/greatscottgadgets/hackrf.git";
-       inherit git-r3
-       EGIT_CHECKOUT_DIR="${WORKDIR}/hackrf"
-       S="${WORKDIR}/hackrf/host/libhackrf"
-else
-       S="${WORKDIR}/hackrf-${PV}/host/libhackrf"
-       
SRC_URI="https://github.com/greatscottgadgets/hackrf/releases/download/v${PV}/hackrf-${PV}.tar.xz";
-       KEYWORDS="amd64 arm ppc ~riscv x86"
-fi
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-IUSE="+udev"
-
-DEPEND="virtual/libusb:1"
-RDEPEND="${DEPEND}"
-
-# https://github.com/greatscottgadgets/hackrf/issues/1193
-PATCHES=( "${FILESDIR}/hackrf-disable-static-2022.09.1.patch" )
-
-src_configure() {
-       local mycmakeargs=(
-               -DINSTALL_UDEV_RULES="$(usex udev)"
-       )
-       if use udev; then
-               mycmakeargs+=(
-                       -DUDEV_RULES_GROUP=usb
-                       -DUDEV_RULES_PATH="$(get_udevdir)/rules.d"
-               )
-       fi
-       cmake_src_configure
-}
-
-src_compile() {
-       cmake_build hackrf
-}
-
-pkg_postinst() {
-       if use udev; then
-               einfo "Users in the usb group can use hackrf."
-               udev_reload
-       fi
-}
-
-pkg_postrm() {
-       udev_reload
-}

diff --git a/net-libs/libhackrf/libhackrf-2026.01.1.ebuild 
b/net-libs/libhackrf/libhackrf-2026.01.1.ebuild
deleted file mode 100644
index cfb5d29b2cdd..000000000000
--- a/net-libs/libhackrf/libhackrf-2026.01.1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake udev
-
-DESCRIPTION="library for communicating with HackRF SDR platform"
-HOMEPAGE="http://greatscottgadgets.com/hackrf/";
-
-if [[ ${PV} == "9999" ]] ; then
-       EGIT_REPO_URI="https://github.com/greatscottgadgets/hackrf.git";
-       inherit git-r3
-       EGIT_CHECKOUT_DIR="${WORKDIR}/hackrf"
-       S="${WORKDIR}/hackrf/host/libhackrf"
-else
-       S="${WORKDIR}/hackrf-${PV}/host/libhackrf"
-       
SRC_URI="https://github.com/greatscottgadgets/hackrf/releases/download/v${PV}/hackrf-${PV}.tar.xz";
-       KEYWORDS="~amd64 ~arm ~ppc ~riscv ~x86"
-fi
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-IUSE="+udev"
-
-DEPEND="virtual/libusb:1"
-RDEPEND="${DEPEND}"
-
-src_configure() {
-       local mycmakeargs=(
-               -DINSTALL_UDEV_RULES="$(usex udev)"
-       )
-       if use udev; then
-               mycmakeargs+=(
-                       -DUDEV_RULES_GROUP=usb
-                       -DUDEV_RULES_PATH="$(get_udevdir)/rules.d"
-               )
-       fi
-       cmake_src_configure
-}
-
-src_compile() {
-       cmake_build hackrf
-}
-
-pkg_postinst() {
-       if use udev; then
-               einfo "Users in the usb group can use hackrf."
-               udev_reload
-       fi
-}
-
-pkg_postrm() {
-       udev_reload
-}

diff --git a/net-libs/libhackrf/libhackrf-2026.01.2.ebuild 
b/net-libs/libhackrf/libhackrf-2026.01.2.ebuild
deleted file mode 100644
index 089b12d067c9..000000000000
--- a/net-libs/libhackrf/libhackrf-2026.01.2.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake udev
-
-DESCRIPTION="library for communicating with HackRF SDR platform"
-HOMEPAGE="http://greatscottgadgets.com/hackrf/";
-
-if [[ ${PV} == "9999" ]] ; then
-       EGIT_REPO_URI="https://github.com/greatscottgadgets/hackrf.git";
-       inherit git-r3
-       EGIT_CHECKOUT_DIR="${WORKDIR}/hackrf"
-       S="${WORKDIR}/hackrf/host/libhackrf"
-else
-       S="${WORKDIR}/hackrf-${PV}/host/libhackrf"
-       
SRC_URI="https://github.com/greatscottgadgets/hackrf/releases/download/v${PV}/hackrf-${PV}.tar.xz";
-       KEYWORDS="~amd64 ~arm ~ppc ~riscv ~x86"
-fi
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-IUSE="+udev"
-
-DEPEND="virtual/libusb:1"
-RDEPEND="${DEPEND}"
-
-src_configure() {
-       local mycmakeargs=(
-               -DINSTALL_UDEV_RULES="$(usex udev)"
-               -DENABLE_STATIC_LIB=OFF
-       )
-       if use udev; then
-               mycmakeargs+=(
-                       -DUDEV_RULES_GROUP=usb
-                       -DUDEV_RULES_PATH="$(get_udevdir)/rules.d"
-               )
-       fi
-       cmake_src_configure
-}
-
-src_compile() {
-       cmake_build hackrf
-}
-
-pkg_postinst() {
-       if use udev; then
-               einfo "Users in the usb group can use hackrf."
-               udev_reload
-       fi
-}
-
-pkg_postrm() {
-       udev_reload
-}

Reply via email to