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 D1438138334 for ; Sat, 20 Apr 2019 23:29:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0C50FE088A; Sat, 20 Apr 2019 23:20:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E8E1CE088A for ; Sat, 20 Apr 2019 23:20:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 67035341B32 for ; Fri, 19 Apr 2019 09:34:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A48E75B5 for ; Fri, 19 Apr 2019 09:34:04 +0000 (UTC) From: "Alon Bar-Lev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alon Bar-Lev" Message-ID: <1555666411.7176fa6c3846786cb9303060b3d2cc74523c377d.alonbl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/fakechroot/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/fakechroot/Manifest sys-apps/fakechroot/fakechroot-2.20.1.ebuild X-VCS-Directories: sys-apps/fakechroot/ X-VCS-Committer: alonbl X-VCS-Committer-Name: Alon Bar-Lev X-VCS-Revision: 7176fa6c3846786cb9303060b3d2cc74523c377d X-VCS-Branch: master Date: Fri, 19 Apr 2019 09:34:04 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 785e5f13-e61c-486a-95b6-3ec42c13cd5c X-Archives-Hash: 7600841a96d5cf83d43a999af7f5a274 commit: 7176fa6c3846786cb9303060b3d2cc74523c377d Author: Alon Bar-Lev gentoo org> AuthorDate: Fri Apr 19 09:28:37 2019 +0000 Commit: Alon Bar-Lev gentoo org> CommitDate: Fri Apr 19 09:33:31 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7176fa6c sys-apps/fakechroot: version bump Signed-off-by: Alon Bar-Lev gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11 sys-apps/fakechroot/Manifest | 1 + sys-apps/fakechroot/fakechroot-2.20.1.ebuild | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/sys-apps/fakechroot/Manifest b/sys-apps/fakechroot/Manifest index 39e73564e3d..2e1daebc38f 100644 --- a/sys-apps/fakechroot/Manifest +++ b/sys-apps/fakechroot/Manifest @@ -1 +1,2 @@ DIST fakechroot-2.19.tar.gz 492346 BLAKE2B 9ad9d6515756e867f5e936deec3f6a020f2d8937000f1b7ea9f0f915db68efc4a8f1075d9ee1932c1f20d1c20db04f97de22574f6c51905a070dc1d130a435c4 SHA512 3f1846360dac2ebf9430949651ab0e4b232218cb576a3408b7199dac1e8b555d550ec281eacc65890e79f079f558308c9d56c10a6c7ff38e1419bb45ada7450a +DIST fakechroot-2.20.1.tar.gz 504343 BLAKE2B 73459895319c1fd6297ab455e0d15f4b9985f433d958598d8581a35268e4df0f631b39d026061fe5c00ec6b805f3bf4f5f261039b93176db460b6f936c0de1b8 SHA512 9ddc715ff5c550b700c2384284c9f0cf6c2a99353a06d8e4c3b8363f4affdf9a11757ed5d1c9b85c83499b3bec054544290508a20f2ee16d46e66dc824a924ed diff --git a/sys-apps/fakechroot/fakechroot-2.20.1.ebuild b/sys-apps/fakechroot/fakechroot-2.20.1.ebuild new file mode 100644 index 00000000000..4657276f544 --- /dev/null +++ b/sys-apps/fakechroot/fakechroot-2.20.1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Provide a faked chroot environment without requiring root privileges" +HOMEPAGE="https://github.com/dex4er/fakechroot" +SRC_URI="https://github.com/dex4er/${PN}/releases/download/${PV}/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" + +RESTRICT="test" + +src_configure() { + econf --disable-static +} + +src_install() { + default + find "${D}" -name '*.la' -exec rm -f '{}' + +}