Gentoo Archives: gentoo-commits

From: Matt Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/growpart/
Date: Sat, 04 Mar 2017 21:14:31
Message-Id: 1488661988.b891105b63b3a7f88038302f7ac5ade7a10473ab.prometheanfire@gentoo
1 commit: b891105b63b3a7f88038302f7ac5ade7a10473ab
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 4 21:12:34 2017 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 4 21:13:08 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b891105b
7
8 sys-fs/growpart: bup for bug 611726
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 sys-fs/growpart/Manifest | 1 +
13 sys-fs/growpart/growpart-0.0.30.ebuild | 22 ++++++++++++++++++++++
14 2 files changed, 23 insertions(+)
15
16 diff --git a/sys-fs/growpart/Manifest b/sys-fs/growpart/Manifest
17 index 0b322444bec..b771c5f23a8 100644
18 --- a/sys-fs/growpart/Manifest
19 +++ b/sys-fs/growpart/Manifest
20 @@ -1 +1,2 @@
21 DIST growpart-0.0.1.gz 7731 SHA256 a990731b618280413ac911321f22b3db3d41e2c9ff0d3b21d8053d0faaa2b954 SHA512 84645e68f8ee913740333d3dca097e1322d74c99020af7205f6f4c2527469a2fbb4cbc3fe69bda7e19b5758897e9e6a09b17a4d1fb1f2934bf7c45186156eae9 WHIRLPOOL e58b27d5132d47c323ad2c5d558d5f0b5e4add11a9fee6d108e7fd81c56efd8ce060b15ed2304a8a76536f1eb6870de766188596ea78eb74b212c54f94cfb99b
22 +DIST growpart-0.0.30.gz 7897 SHA256 99b361a98fc9f4b2d718e0269ada51f0188d75297db771cda4d75b3006e8deb9 SHA512 ed6cf92149c0802c4a08427fa025ce2666dd7c32c5d1f362f4d14973f709dfd73124fd85b7eaf179daad5dfb1d126e86d7db0fb1fe7e2d496e17bf0bc1bc9c58 WHIRLPOOL 8d01729605edcce4da5a6a189a00c86ff1cb54ea11b780da657e1b945be9f87decc46af5b9aa6c071ed73c4e4475c375e1ee7953175892b182830560093c2f84
23
24 diff --git a/sys-fs/growpart/growpart-0.0.30.ebuild b/sys-fs/growpart/growpart-0.0.30.ebuild
25 new file mode 100644
26 index 00000000000..27954d1ba64
27 --- /dev/null
28 +++ b/sys-fs/growpart/growpart-0.0.30.ebuild
29 @@ -0,0 +1,22 @@
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="A script that can grow your rootfs on first boot"
36 +HOMEPAGE="http://manpages.ubuntu.com/manpages/natty/man1/growpart.1.html"
37 +SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/${PN}/${P}.gz"
38 +S="${WORKDIR}"
39 +
40 +LICENSE="GPL-3"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~x86"
43 +IUSE=""
44 +
45 +DEPEND=""
46 +RDEPEND="sys-apps/gptfdisk"
47 +
48 +src_install() {
49 + exeinto /usr/sbin/
50 + newexe "growpart-${PV}" growpart
51 +}