Gentoo Archives: gentoo-commits

From: "Robin H. Johnson" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/biosdisk/
Date: Mon, 03 Aug 2020 05:31:50
Message-Id: 1596432632.a2039bcd70b868e394094f411794fa2f7a3f46d7.robbat2@gentoo
1 commit: a2039bcd70b868e394094f411794fa2f7a3f46d7
2 Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 3 05:30:32 2020 +0000
4 Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 3 05:30:32 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2039bcd
7
8 sys-apps/biosdisk: cleanup old version
9
10 The latest version doesn't need python at all, the Py2 cleanup hits
11 false positives like this.
12
13 Closes: https://bugs.gentoo.org/show_bug.cgi?id=735466
14 Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
15
16 sys-apps/biosdisk/biosdisk-0_p20171116.ebuild | 43 ---------------------------
17 1 file changed, 43 deletions(-)
18
19 diff --git a/sys-apps/biosdisk/biosdisk-0_p20171116.ebuild b/sys-apps/biosdisk/biosdisk-0_p20171116.ebuild
20 deleted file mode 100644
21 index 87367d63b19..00000000000
22 --- a/sys-apps/biosdisk/biosdisk-0_p20171116.ebuild
23 +++ /dev/null
24 @@ -1,43 +0,0 @@
25 -# Copyright 1999-2018 Gentoo Foundation
26 -# Distributed under the terms of the GNU General Public License v2
27 -
28 -EAPI="6"
29 -
30 -PYTHON_COMPAT=( python2_7 )
31 -
32 -inherit python-single-r1
33 -
34 -EGIT_COMMIT="f534dd22a795dca9c42f44b52f206bf02eadb682"
35 -DESCRIPTION="A script that creates floppy boot images to flash Dell BIOSes"
36 -HOMEPAGE="https://github.com/dell/biosdisk"
37 -SRC_URI="https://github.com/dell/${PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
38 -
39 -LICENSE="GPL-2"
40 -SLOT="0"
41 -KEYWORDS="~amd64 ~x86"
42 -IUSE=""
43 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
44 -
45 -RDEPEND="
46 - >=app-text/dos2unix-5.0
47 - sys-boot/syslinux
48 - ${PYTHON_DEPS}
49 -"
50 -
51 -S=${WORKDIR}/${PN}-${EGIT_COMMIT}
52 -
53 -src_install() {
54 - python_fix_shebang blconf
55 -
56 - dosbin biosdisk blconf
57 -
58 - dodoc AUTHORS README README.dosdisk TODO VERSION
59 - gunzip biosdisk.8.gz || die
60 - doman biosdisk.8
61 -
62 - insinto /usr/share/biosdisk
63 - doins dosdisk.img dosdisk{288,8192,20480}.img biosdisk-mkrpm-{fedora,redhat,generic}-template.spec
64 -
65 - insinto /etc
66 - doins biosdisk.conf
67 -}