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-apps/byld/
Date: Sat, 02 Dec 2017 16:15:31
Message-Id: 1512231308.ddafeddaf6ae13391b7bd0317ebe5538930680f7.soap@gentoo
1 commit: ddafeddaf6ae13391b7bd0317ebe5538930680f7
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 2 15:49:06 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 2 16:15:08 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddafedda
7
8 sys-apps/byld: Port to EAPI 6
9
10 Package-Manager: Portage-2.3.16, Repoman-2.3.6
11
12 sys-apps/byld/Manifest | 2 +-
13 sys-apps/byld/byld-1.0.3.ebuild | 9 ++++++---
14 2 files changed, 7 insertions(+), 4 deletions(-)
15
16 diff --git a/sys-apps/byld/Manifest b/sys-apps/byld/Manifest
17 index a3c6984141e..0f0a96f5889 100644
18 --- a/sys-apps/byld/Manifest
19 +++ b/sys-apps/byld/Manifest
20 @@ -1 +1 @@
21 -DIST byld-1_0_3.tgz 1128317 SHA256 f5206f6eb0d85f6b9435c24e554262b69dede6dd7d24acd9faea1dc77549cde3 SHA512 ec141b5c7f636e611fd43bbfa69c8a06ebbfb766e5f58086ce4c0fce1271b8a0cd76333b748322efb19e46aaf2ed150cb3a5fc09c91aef55e10f80b1d1551eb0 WHIRLPOOL f2d43ba2c8820f16dcf6beda530e0c4fe3887fa4039b90d920516b4cf9ef25b736ef14133b0ed2924db0328362896eb6583b0ef2fd5d2c0e84b614d8b120de98
22 +DIST byld-1_0_3.tgz 1128317 BLAKE2B c096cc3cfa4f467c9e5310a6f17d97d5f690fed20a03ce2d70b1d8476003df87815f4ba7c6262be7bfa2597e467c64e750eed8d5da386950d86c1413b62ff380 SHA512 ec141b5c7f636e611fd43bbfa69c8a06ebbfb766e5f58086ce4c0fce1271b8a0cd76333b748322efb19e46aaf2ed150cb3a5fc09c91aef55e10f80b1d1551eb0
23
24 diff --git a/sys-apps/byld/byld-1.0.3.ebuild b/sys-apps/byld/byld-1.0.3.ebuild
25 index 2359a6e8dd4..2c9a65e33e9 100644
26 --- a/sys-apps/byld/byld-1.0.3.ebuild
27 +++ b/sys-apps/byld/byld-1.0.3.ebuild
28 @@ -1,6 +1,8 @@
29 -# Copyright 1999-2008 Gentoo Foundation
30 +# Copyright 1999-2017 Gentoo Foundation
31 # Distributed under the terms of the GNU General Public License v2
32
33 +EAPI=6
34 +
35 DESCRIPTION="build a Linux distribution on a single floppy"
36 HOMEPAGE="http://byld.sourceforge.net/"
37 SRC_URI="mirror://sourceforge/byld/byld-${PV//./_}.tgz"
38 @@ -16,8 +18,9 @@ RDEPEND="sys-apps/util-linux"
39 src_install() {
40 dodoc BYLDING CREDITS README INSTALL FHS PAKING
41 rm MAKEDEV.8 BYLDING CREDITS README INSTALL FHS LICENSE PAKING
42 - dodir /usr/lib/${PN}
43 - cp -rf * ${D}/usr/lib/${PN}/
44 +
45 + insinto /usr/lib/${PN}
46 + doins -r .
47 }
48
49 pkg_postinst() {