diff options
author | Mike Gilbert <floppym@gentoo.org> | 2021-02-07 12:44:50 -0500 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2021-02-07 13:09:11 -0500 |
commit | c17250c70508f5c6a13a680caff69e3bd8026711 (patch) | |
tree | 1cfb7055e6aaf9ea918ae2ba2c45865af7a3a567 /sys-apps/hwids/hwids-20200306.ebuild | |
parent | sys-apps/hwids: stabilize 20201207 (diff) | |
download | gentoo-c17250c70508f5c6a13a680caff69e3bd8026711.tar.gz gentoo-c17250c70508f5c6a13a680caff69e3bd8026711.tar.bz2 gentoo-c17250c70508f5c6a13a680caff69e3bd8026711.zip |
sys-apps/hwids: remove old
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Diffstat (limited to 'sys-apps/hwids/hwids-20200306.ebuild')
-rw-r--r-- | sys-apps/hwids/hwids-20200306.ebuild | 89 |
1 files changed, 0 insertions, 89 deletions
diff --git a/sys-apps/hwids/hwids-20200306.ebuild b/sys-apps/hwids/hwids-20200306.ebuild deleted file mode 100644 index c964e6ebfa16..000000000000 --- a/sys-apps/hwids/hwids-20200306.ebuild +++ /dev/null @@ -1,89 +0,0 @@ -# Copyright 2012-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit udev - -DESCRIPTION="Hardware (PCI, USB, OUI, IAB) IDs databases" -HOMEPAGE="https://github.com/gentoo/hwids" -if [[ ${PV} == 99999999 ]]; then - PYTHON_COMPAT=( python3_{6,7} ) - inherit git-r3 python-any-r1 - EGIT_REPO_URI="https://github.com/gentoo/hwids.git" -else - SRC_URI="https://github.com/gentoo/hwids/archive/${P}.tar.gz" - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" -fi - -LICENSE="|| ( GPL-2 BSD ) public-domain" -SLOT="0" -IUSE="+net +pci +udev +usb" - -RDEPEND=" - udev? ( virtual/udev ) -" - -if [[ ${PV} == 99999999 ]]; then - BDEPEND=" - net-misc/curl - udev? ( $(python_gen_any_dep 'dev-python/pyparsing[${PYTHON_USEDEP}]') ) - " - python_check_deps() { - if use udev; then - has_version -b "dev-python/pyparsing[${PYTHON_USEDEP}]" - fi - } -else - S=${WORKDIR}/hwids-${P} -fi - -pkg_setup() { - : -} - -src_unpack() { - if [[ ${PV} == 99999999 ]]; then - git-r3_src_unpack - cd "${S}" || die - emake fetch - else - default - fi -} - -src_prepare() { - default - sed -i -e '/udevadm hwdb/d' Makefile || die -} - -_emake() { - emake \ - NET=$(usex net) \ - PCI=$(usex pci) \ - UDEV=$(usex udev) \ - USB=$(usex usb) \ - "$@" -} - -src_compile() { - if [[ ${PV} == 99999999 ]] && use udev; then - python_setup - _emake udev-hwdb - fi - _emake -} - -src_install() { - _emake install \ - DOCDIR="${EPREFIX}/usr/share/doc/${PF}" \ - MISCDIR="${EPREFIX}/usr/share/misc" \ - HWDBDIR="${EPREFIX}$(get_udevdir)/hwdb.d" \ - DESTDIR="${D}" -} - -pkg_postinst() { - if use udev; then - udevadm hwdb --update --root="${ROOT}" - fi -} |