commit:     3ac646c92028bccead69f0142f19aa638fa3592f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 25 07:29:07 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Dec 25 07:29:23 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ac646c9

dev-libs/hidapi: drop 0.11.0, 0.12.0, 0.12.0-r1

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-libs/hidapi/Manifest                |  2 --
 dev-libs/hidapi/hidapi-0.11.0.ebuild    | 62 ---------------------------------
 dev-libs/hidapi/hidapi-0.12.0-r1.ebuild | 42 ----------------------
 dev-libs/hidapi/hidapi-0.12.0.ebuild    | 42 ----------------------
 dev-libs/hidapi/metadata.xml            |  3 --
 5 files changed, 151 deletions(-)

diff --git a/dev-libs/hidapi/Manifest b/dev-libs/hidapi/Manifest
index 285479f7ad3a..3bece08534c5 100644
--- a/dev-libs/hidapi/Manifest
+++ b/dev-libs/hidapi/Manifest
@@ -1,4 +1,2 @@
-DIST hidapi-0.11.0.tgz 232631 BLAKE2B 
770c0663b007aa36580af217d0d38be72923e0ad84cee137594ca3e174e589cebb9188003a50999e1c561b0e4e9ca68bd1af29029b89fde2b0a46020b12f9744
 SHA512 
0de4abc963600d159ce231416c468b9e81a8361e4d2c2202988d6eb2e58a923700e9b9be639fbddc6bc14625131848409e2e88dbc4b34a1f8a726c8fa4692d92
-DIST hidapi-0.12.0.tgz 238751 BLAKE2B 
25eddf337970275a026839dfe8c0c3beef58da892a6b192751f70faa7ca3ad12f9deab34c3800e053ef9bdefca481a863fac0c25aab51dbf172b44bd94e34e56
 SHA512 
866268927698db6fa553e000ead3c0c4b8df67ea768d36acac9c71f06f0bd8283778e90eee03f81aaa930f38dbb5719391906c7d2742b74479ffa436104f5fa4
 DIST hidapi-0.13.1.tgz 244666 BLAKE2B 
b3406114f8dd8b192eecac1673592866f930688af8023819d20f73c76226f0829c8d68f4b47051b4836ce4348fc3bbad8f9849f1d565563dcd0f993df43de4ca
 SHA512 
07b224b9b5146caf693e6d67514fed236436ed68f38a3ada98ebf8352dfaa4e175f576902affb4b79da1bb8c9b47a1ee0831a93c7d3d210e93faee24632f7d53
 DIST hidapi-0.14.0.tgz 348221 BLAKE2B 
6472bfe5863d75a8901983a763191f3b6c18c25934b652b79f33141a6818619f816d35ed2480435254cecc51598d1e07e53c8c8c4f35a10cf28c1e4374bb450d
 SHA512 
66a045144f90b41438898b82f0398e80223323ebfe6e4f197d2713696bb3ae60f36aea5a37a9999b34b12294783fd7e4c28c6e785462559cbe21276009da1eac

diff --git a/dev-libs/hidapi/hidapi-0.11.0.ebuild 
b/dev-libs/hidapi/hidapi-0.11.0.ebuild
deleted file mode 100644
index 2096ee28357b..000000000000
--- a/dev-libs/hidapi/hidapi-0.11.0.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools multilib-minimal
-
-DESCRIPTION="A multi-platform library for USB and Bluetooth HID-Class devices"
-HOMEPAGE="https://github.com/libusb/hidapi";
-SRC_URI="https://github.com/libusb/hidapi/archive/${P}.tar.gz -> ${P}.tgz"
-
-LICENSE="|| ( BSD GPL-3 HIDAPI )"
-SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ppc ppc64 ~riscv x86"
-IUSE="doc fox"
-
-RDEPEND="
-       virtual/libusb:1[${MULTILIB_USEDEP}]
-       virtual/libudev:0[${MULTILIB_USEDEP}]"
-DEPEND="${RDEPEND}
-       fox? ( x11-libs/fox )"
-BDEPEND="
-       virtual/pkgconfig
-       doc? ( app-doc/doxygen )"
-
-S="${WORKDIR}/${PN}-${P}"
-
-src_prepare() {
-       default
-
-       if ! use fox; then
-               sed -i -e 's:PKG_CHECK_MODULES(\[fox\], 
.*):AC_SUBST(fox_CFLAGS,[ ])AC_SUBST(fox_LIBS,[ ]):' configure.ac || die
-       fi
-
-       # Portage handles license texts itself, no need to install them
-       sed -i -e 's/LICENSE.*/ # blank/' Makefile.am || die
-
-       eautoreconf
-}
-
-multilib_src_configure() {
-       ECONF_SOURCE="${S}" econf \
-               --disable-static \
-               $(multilib_native_use_enable fox testgui)
-}
-
-multilib_src_compile() {
-       default
-       if use doc && multilib_is_native_abi; then
-               doxygen "${S}/doxygen/Doxyfile" || die
-       fi
-}
-
-multilib_src_install() {
-       emake install DESTDIR="${D}"
-       find "${D}" -name '*.la' -delete || die
-
-       if use doc && multilib_is_native_abi; then
-               local HTML_DOCS=( html/. )
-       fi
-       einstalldocs
-}

diff --git a/dev-libs/hidapi/hidapi-0.12.0-r1.ebuild 
b/dev-libs/hidapi/hidapi-0.12.0-r1.ebuild
deleted file mode 100644
index 6f2ed465adcc..000000000000
--- a/dev-libs/hidapi/hidapi-0.12.0-r1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake-multilib
-
-DESCRIPTION="A multi-platform library for USB and Bluetooth HID-Class devices"
-HOMEPAGE="https://github.com/libusb/hidapi";
-SRC_URI="https://github.com/libusb/hidapi/archive/${P}.tar.gz -> ${P}.tgz"
-
-LICENSE="|| ( BSD GPL-3 HIDAPI )"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
-IUSE="doc"
-
-DEPEND="
-       virtual/libusb:1[${MULTILIB_USEDEP}]
-       virtual/libudev:0[${MULTILIB_USEDEP}]"
-RDEPEND="${DEPEND}"
-BDEPEND="
-       doc? ( app-doc/doxygen )"
-
-S="${WORKDIR}/${PN}-${P}"
-
-multilib_src_compile() {
-       cmake_src_compile
-
-       if use doc && multilib_is_native_abi; then
-               cd "${S}/doxygen"
-               doxygen Doxyfile || die
-       fi
-}
-
-multilib_src_install() {
-       cmake_src_install
-
-       if use doc && multilib_is_native_abi; then
-               local HTML_DOCS=( "${S}/doxygen/html/." )
-       fi
-       einstalldocs
-}

diff --git a/dev-libs/hidapi/hidapi-0.12.0.ebuild 
b/dev-libs/hidapi/hidapi-0.12.0.ebuild
deleted file mode 100644
index 308a68df2888..000000000000
--- a/dev-libs/hidapi/hidapi-0.12.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake-multilib
-
-DESCRIPTION="A multi-platform library for USB and Bluetooth HID-Class devices"
-HOMEPAGE="https://github.com/libusb/hidapi";
-SRC_URI="https://github.com/libusb/hidapi/archive/${P}.tar.gz -> ${P}.tgz"
-
-LICENSE="|| ( BSD GPL-3 HIDAPI )"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
-IUSE="doc"
-
-RDEPEND="
-       virtual/libusb:1[${MULTILIB_USEDEP}]
-       virtual/libudev:0[${MULTILIB_USEDEP}]"
-DEPEND="${RDEPEND}"
-BDEPEND="
-       virtual/pkgconfig
-       doc? ( app-doc/doxygen )"
-
-S="${WORKDIR}/${PN}-${P}"
-
-multilib_src_compile() {
-       cmake_src_compile
-
-       if use doc && multilib_is_native_abi; then
-               doxygen "${S}/doxygen/Doxyfile" || die
-       fi
-}
-
-multilib_src_install() {
-       cmake_src_install
-
-       if use doc && multilib_is_native_abi; then
-               local HTML_DOCS=( html/. )
-       fi
-       einstalldocs
-}

diff --git a/dev-libs/hidapi/metadata.xml b/dev-libs/hidapi/metadata.xml
index 2b526d40b73c..2493acc7ce5b 100644
--- a/dev-libs/hidapi/metadata.xml
+++ b/dev-libs/hidapi/metadata.xml
@@ -2,9 +2,6 @@
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd";>
 <pkgmetadata>
   <!-- maintainer-needed -->
-  <use>
-    <flag name="fox">Build a <pkg>x11-libs/fox</pkg> GUI</flag>
-  </use>
   <upstream>
     <remote-id type="github">libusb/hidapi</remote-id>
   </upstream>

Reply via email to