Gentoo Archives: gentoo-commits

From: Patrick Lauer <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/fakechroot/
Date: Sat, 24 Feb 2018 19:32:41
Message-Id: 1519500748.f8b890580ed2794c0e296a900d040f9c61c11538.patrick@gentoo
1 commit: f8b890580ed2794c0e296a900d040f9c61c11538
2 Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 24 19:31:48 2018 +0000
4 Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 24 19:32:28 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8b89058
7
8 sys-apps/fakechroot: Bump to 2.19 #639816
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 sys-apps/fakechroot/Manifest | 1 +
13 sys-apps/fakechroot/fakechroot-2.19.ebuild | 26 ++++++++++++++++++++++++++
14 2 files changed, 27 insertions(+)
15
16 diff --git a/sys-apps/fakechroot/Manifest b/sys-apps/fakechroot/Manifest
17 index 803278dddc7..c426cc8ce7f 100644
18 --- a/sys-apps/fakechroot/Manifest
19 +++ b/sys-apps/fakechroot/Manifest
20 @@ -1 +1,2 @@
21 DIST fakechroot_2.17.2.orig.tar.gz 463307 BLAKE2B c13e0bb649dc4ecafed1d1f7aa487659631bfae94b2fdc91aee8b23910954e46a74ba6f3d50107a9a282b9e7cb21bf4edb372257adaf157f43c4055738ddce49 SHA512 bcdcf8e77aae46b567acddb80e6817a118c7ef250ba7b6962982e60a6a5e3b8c1eeef950dc33335f31466c3f53ab6b7260bc64a1da9c4b156a44d811ef8cccd0
22 +DIST fakechroot_2.19.orig.tar.gz 492346 BLAKE2B 9ad9d6515756e867f5e936deec3f6a020f2d8937000f1b7ea9f0f915db68efc4a8f1075d9ee1932c1f20d1c20db04f97de22574f6c51905a070dc1d130a435c4 SHA512 3f1846360dac2ebf9430949651ab0e4b232218cb576a3408b7199dac1e8b555d550ec281eacc65890e79f079f558308c9d56c10a6c7ff38e1419bb45ada7450a
23
24 diff --git a/sys-apps/fakechroot/fakechroot-2.19.ebuild b/sys-apps/fakechroot/fakechroot-2.19.ebuild
25 new file mode 100644
26 index 00000000000..4a89ac3de3c
27 --- /dev/null
28 +++ b/sys-apps/fakechroot/fakechroot-2.19.ebuild
29 @@ -0,0 +1,26 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=5
34 +inherit eutils
35 +
36 +DESCRIPTION="Provide a faked chroot environment without requiring root privileges"
37 +HOMEPAGE="http://fakechroot.alioth.debian.org/"
38 +SRC_URI="mirror://debian/pool/main/f/${PN}/${PN}_${PV}.orig.tar.gz"
39 +
40 +LICENSE="LGPL-2.1"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
43 +IUSE=""
44 +
45 +RESTRICT="test"
46 +
47 +src_configure() {
48 + econf --disable-static
49 +}
50 +
51 +src_install() {
52 + emake DESTDIR="${D}" install
53 + dodoc NEWS.md README.md
54 + find "${D}" -name '*.la' -exec rm -f '{}' +
55 +}