Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/cromwell-bin/
Date: Wed, 04 Jan 2017 11:40:47
Message-Id: 1483530032.eccf574f16c76954aea90e08575b04eb13229e69.soap@gentoo
1 commit: eccf574f16c76954aea90e08575b04eb13229e69
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 4 11:35:52 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 4 11:40:32 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eccf574f
7
8 sys-boot/cromwell-bin: Port to EAPI=6
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 ...ll-bin-2.31.ebuild => cromwell-bin-2.31-r1.ebuild} | 19 ++++++++++++-------
13 ...ll-bin-2.40.ebuild => cromwell-bin-2.40-r1.ebuild} | 19 ++++++++++++-------
14 2 files changed, 24 insertions(+), 14 deletions(-)
15
16 diff --git a/sys-boot/cromwell-bin/cromwell-bin-2.31.ebuild b/sys-boot/cromwell-bin/cromwell-bin-2.31-r1.ebuild
17 similarity index 81%
18 rename from sys-boot/cromwell-bin/cromwell-bin-2.31.ebuild
19 rename to sys-boot/cromwell-bin/cromwell-bin-2.31-r1.ebuild
20 index 79016b6..bb8a047 100644
21 --- a/sys-boot/cromwell-bin/cromwell-bin-2.31.ebuild
22 +++ b/sys-boot/cromwell-bin/cromwell-bin-2.31-r1.ebuild
23 @@ -1,23 +1,28 @@
24 -# Copyright 1999-2016 Gentoo Foundation
25 +# Copyright 1999-2017 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 # $Id$
28
29 +EAPI=6
30 +
31 inherit mount-boot
32
33 -IUSE=""
34 DESCRIPTION="Xbox boot loader precompiled binaries from xbox-linux.org"
35 -SRC_URI="mirror://sourceforge/xbox-linux/cromwell-${PV}.tar.gz"
36 HOMEPAGE="https://sourceforge.net/projects/xbox-linux/"
37 -RESTRICT="${RESTRICT} strip"
38 -DEPEND=""
39 -SLOT="0"
40 +SRC_URI="mirror://sourceforge/xbox-linux/cromwell-${PV}.tar.gz"
41 LICENSE="GPL-2"
42 +
43 +SLOT="0"
44 KEYWORDS="-* x86"
45 +IUSE=""
46 +RESTRICT="${RESTRICT} strip"
47 +
48 +DEPEND=""
49 +RDEPEND=""
50
51 S=${WORKDIR}/cromwell
52
53 src_install () {
54 dodir /boot/${PN}
55 insinto /boot/${PN}
56 - doins ${S}/image.bin ${S}/image_1024.bin ${S}/default.xbe || die
57 + doins image{,_1024}.bin default.xbe
58 }
59
60 diff --git a/sys-boot/cromwell-bin/cromwell-bin-2.40.ebuild b/sys-boot/cromwell-bin/cromwell-bin-2.40-r1.ebuild
61 similarity index 80%
62 rename from sys-boot/cromwell-bin/cromwell-bin-2.40.ebuild
63 rename to sys-boot/cromwell-bin/cromwell-bin-2.40-r1.ebuild
64 index 9cfa586..7e08e63 100644
65 --- a/sys-boot/cromwell-bin/cromwell-bin-2.40.ebuild
66 +++ b/sys-boot/cromwell-bin/cromwell-bin-2.40-r1.ebuild
67 @@ -1,23 +1,28 @@
68 -# Copyright 1999-2016 Gentoo Foundation
69 +# Copyright 1999-2017 Gentoo Foundation
70 # Distributed under the terms of the GNU General Public License v2
71 # $Id$
72
73 +EAPI=6
74 +
75 inherit mount-boot
76
77 -IUSE=""
78 DESCRIPTION="Xbox boot loader precompiled binaries from xbox-linux.org"
79 -SRC_URI="mirror://sourceforge/xbox-linux/cromwell-${PV}.tar.gz"
80 HOMEPAGE="https://sourceforge.net/projects/xbox-linux/"
81 -RESTRICT="${RESTRICT} strip"
82 -DEPEND=""
83 -SLOT="0"
84 +SRC_URI="mirror://sourceforge/xbox-linux/cromwell-${PV}.tar.gz"
85 LICENSE="GPL-2"
86 +
87 +SLOT="0"
88 KEYWORDS="-* x86"
89 +IUSE=""
90 +RESTRICT="${RESTRICT} strip"
91 +
92 +DEPEND=""
93 +RDEPEND=""
94
95 S=${WORKDIR}/cromwell-${PV}
96
97 src_install () {
98 dodir /boot/${PN}
99 insinto /boot/${PN}
100 - doins ${S}/cromwell.bin ${S}/cromwell_1024.bin ${S}/xromwell.xbe || die
101 + doins cromwell{,_1024}.bin xromwell.xbe
102 }