diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2020-08-02 22:30:32 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2020-08-02 22:30:32 -0700 |
commit | a2039bcd70b868e394094f411794fa2f7a3f46d7 (patch) | |
tree | 81613145b3b80fac26c863905311077fa367c1fb /sys-apps | |
parent | profiles/package.mask: latest biosdisk does not use python at all (diff) | |
download | gentoo-a2039bcd70b868e394094f411794fa2f7a3f46d7.tar.gz gentoo-a2039bcd70b868e394094f411794fa2f7a3f46d7.tar.bz2 gentoo-a2039bcd70b868e394094f411794fa2f7a3f46d7.zip |
sys-apps/biosdisk: cleanup old version
The latest version doesn't need python at all, the Py2 cleanup hits
false positives like this.
Closes: https://bugs.gentoo.org/show_bug.cgi?id=735466
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/biosdisk/biosdisk-0_p20171116.ebuild | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/sys-apps/biosdisk/biosdisk-0_p20171116.ebuild b/sys-apps/biosdisk/biosdisk-0_p20171116.ebuild deleted file mode 100644 index 87367d63b19d..000000000000 --- a/sys-apps/biosdisk/biosdisk-0_p20171116.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -PYTHON_COMPAT=( python2_7 ) - -inherit python-single-r1 - -EGIT_COMMIT="f534dd22a795dca9c42f44b52f206bf02eadb682" -DESCRIPTION="A script that creates floppy boot images to flash Dell BIOSes" -HOMEPAGE="https://github.com/dell/biosdisk" -SRC_URI="https://github.com/dell/${PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -RDEPEND=" - >=app-text/dos2unix-5.0 - sys-boot/syslinux - ${PYTHON_DEPS} -" - -S=${WORKDIR}/${PN}-${EGIT_COMMIT} - -src_install() { - python_fix_shebang blconf - - dosbin biosdisk blconf - - dodoc AUTHORS README README.dosdisk TODO VERSION - gunzip biosdisk.8.gz || die - doman biosdisk.8 - - insinto /usr/share/biosdisk - doins dosdisk.img dosdisk{288,8192,20480}.img biosdisk-mkrpm-{fedora,redhat,generic}-template.spec - - insinto /etc - doins biosdisk.conf -} |