From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A9243139694 for ; Sat, 4 Mar 2017 21:14:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AEA5CE0C9A; Sat, 4 Mar 2017 21:14:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 86AB2E0C9A for ; Sat, 4 Mar 2017 21:14:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E82CF341851 for ; Sat, 4 Mar 2017 21:14:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 567CE5C79 for ; Sat, 4 Mar 2017 21:14:25 +0000 (UTC) From: "Matt Thode" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Thode" Message-ID: <1488661988.b891105b63b3a7f88038302f7ac5ade7a10473ab.prometheanfire@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/growpart/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/growpart/Manifest sys-fs/growpart/growpart-0.0.30.ebuild X-VCS-Directories: sys-fs/growpart/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matt Thode X-VCS-Revision: b891105b63b3a7f88038302f7ac5ade7a10473ab X-VCS-Branch: master Date: Sat, 4 Mar 2017 21:14:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 8f5d3068-c4b0-45a9-b23b-142e2b70486a X-Archives-Hash: b6acc363bc8d5eabe8b7421b3bea8694 commit: b891105b63b3a7f88038302f7ac5ade7a10473ab Author: Matthew Thode gentoo org> AuthorDate: Sat Mar 4 21:12:34 2017 +0000 Commit: Matt Thode gentoo org> CommitDate: Sat Mar 4 21:13:08 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b891105b sys-fs/growpart: bup for bug 611726 Package-Manager: Portage-2.3.3, Repoman-2.3.1 sys-fs/growpart/Manifest | 1 + sys-fs/growpart/growpart-0.0.30.ebuild | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/sys-fs/growpart/Manifest b/sys-fs/growpart/Manifest index 0b322444bec..b771c5f23a8 100644 --- a/sys-fs/growpart/Manifest +++ b/sys-fs/growpart/Manifest @@ -1 +1,2 @@ DIST growpart-0.0.1.gz 7731 SHA256 a990731b618280413ac911321f22b3db3d41e2c9ff0d3b21d8053d0faaa2b954 SHA512 84645e68f8ee913740333d3dca097e1322d74c99020af7205f6f4c2527469a2fbb4cbc3fe69bda7e19b5758897e9e6a09b17a4d1fb1f2934bf7c45186156eae9 WHIRLPOOL e58b27d5132d47c323ad2c5d558d5f0b5e4add11a9fee6d108e7fd81c56efd8ce060b15ed2304a8a76536f1eb6870de766188596ea78eb74b212c54f94cfb99b +DIST growpart-0.0.30.gz 7897 SHA256 99b361a98fc9f4b2d718e0269ada51f0188d75297db771cda4d75b3006e8deb9 SHA512 ed6cf92149c0802c4a08427fa025ce2666dd7c32c5d1f362f4d14973f709dfd73124fd85b7eaf179daad5dfb1d126e86d7db0fb1fe7e2d496e17bf0bc1bc9c58 WHIRLPOOL 8d01729605edcce4da5a6a189a00c86ff1cb54ea11b780da657e1b945be9f87decc46af5b9aa6c071ed73c4e4475c375e1ee7953175892b182830560093c2f84 diff --git a/sys-fs/growpart/growpart-0.0.30.ebuild b/sys-fs/growpart/growpart-0.0.30.ebuild new file mode 100644 index 00000000000..27954d1ba64 --- /dev/null +++ b/sys-fs/growpart/growpart-0.0.30.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="A script that can grow your rootfs on first boot" +HOMEPAGE="http://manpages.ubuntu.com/manpages/natty/man1/growpart.1.html" +SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/${PN}/${P}.gz" +S="${WORKDIR}" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="sys-apps/gptfdisk" + +src_install() { + exeinto /usr/sbin/ + newexe "growpart-${PV}" growpart +}