Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/biosdisk/
Date: Wed, 24 Jun 2020 20:29:08
Message-Id: 1593030524.a080e02f38f5641870074b3682d5d0d4722f321e.conikost@gentoo
1 commit: a080e02f38f5641870074b3682d5d0d4722f321e
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 24 20:28:24 2020 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 24 20:28:44 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a080e02f
7
8 sys-apps/biosdisk: bump to version 1.01
9
10 Closes: https://bugs.gentoo.org/696194
11 Package-Manager: Portage-2.3.101, Repoman-2.3.22
12 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
13
14 sys-apps/biosdisk/Manifest | 1 +
15 sys-apps/biosdisk/biosdisk-1.01.ebuild | 32 ++++++++++++++++++++++++++++++++
16 2 files changed, 33 insertions(+)
17
18 diff --git a/sys-apps/biosdisk/Manifest b/sys-apps/biosdisk/Manifest
19 index ecfc5412c4e..2dca2afd174 100644
20 --- a/sys-apps/biosdisk/Manifest
21 +++ b/sys-apps/biosdisk/Manifest
22 @@ -1 +1,2 @@
23 DIST biosdisk-0_p20171116.tar.gz 712587 BLAKE2B f09a8c68f57cddb1949d369cfc18d1216c3e64612a7074c58e6c50c12682fce92a4d6295810d5358fac0340483387f14059811a5681ae4f37c7da8e40c34fec4 SHA512 27d99990d0e92f1295d2ddb949214946db681e7f80c6606b252473fe7b5b0d3254180b54cb26479c9014219f6b989aa6ba29e8a818f3801f9ccce4efd2f1c3b9
24 +DIST biosdisk-1.01.tar.gz 214715 BLAKE2B 1a42523d0ec713a895276e3ca3b383206bb841c59bf789eb2b869ce3ade6bfde1e96d47afb8874eec5efec1ef4d404c093a707e36d2d9ab785211fa62abb5782 SHA512 f1920a0eee0a1f8530488c5ccd3f37b36170150b7658658af55beb41c2084c66b6d6bded6e144e36dd9d74f963881c504d7869bbe5c8b57749bff4d918581537
25
26 diff --git a/sys-apps/biosdisk/biosdisk-1.01.ebuild b/sys-apps/biosdisk/biosdisk-1.01.ebuild
27 new file mode 100644
28 index 00000000000..f4ae904c895
29 --- /dev/null
30 +++ b/sys-apps/biosdisk/biosdisk-1.01.ebuild
31 @@ -0,0 +1,32 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit eutils
38 +
39 +DESCRIPTION="FreeDOS based BIOS updating utility for Dell machines"
40 +HOMEPAGE="https://github.com/dell/biosdisk"
41 +SRC_URI="https://github.com/dell/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="GPL-2+"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +
47 +RDEPEND="
48 + app-cdr/cdrtools
49 + sys-boot/grub
50 + sys-boot/syslinux
51 +"
52 +
53 +src_prepare() {
54 + default
55 +
56 + sed -e 's/biosdisk.8.gz/biosdisk.8/g' -e '/gzip/d' -i Makefile || die
57 +}
58 +
59 +src_install() {
60 + default
61 +
62 + keepdir /var/lib/biosdisk
63 +}