summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Popov <pinkbyte@gentoo.org>2014-03-16 07:56:21 +0000
committerSergey Popov <pinkbyte@gentoo.org>2014-03-16 07:56:21 +0000
commitc81f223cb62bf66556a27a57ce9cabda56119f8a (patch)
tree98eec09fae7e435e299fdcc56111690f0e0e5462 /sys-apps/proot
parentia64 stable wrt bug #502752 (diff)
downloadgentoo-2-c81f223cb62bf66556a27a57ce9cabda56119f8a.tar.gz
gentoo-2-c81f223cb62bf66556a27a57ce9cabda56119f8a.tar.bz2
gentoo-2-c81f223cb62bf66556a27a57ce9cabda56119f8a.zip
Add upstream information to metadata, drop old revision
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
Diffstat (limited to 'sys-apps/proot')
-rw-r--r--sys-apps/proot/ChangeLog6
-rw-r--r--sys-apps/proot/metadata.xml10
-rw-r--r--sys-apps/proot/proot-3.2.2.ebuild51
3 files changed, 14 insertions, 53 deletions
diff --git a/sys-apps/proot/ChangeLog b/sys-apps/proot/ChangeLog
index 034716a590a7..361c7f158024 100644
--- a/sys-apps/proot/ChangeLog
+++ b/sys-apps/proot/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-apps/proot
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/proot/ChangeLog,v 1.6 2014/03/11 08:13:00 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/proot/ChangeLog,v 1.7 2014/03/16 07:56:21 pinkbyte Exp $
+
+ 16 Mar 2014; Sergey Popov <pinkbyte@gentoo.org> -proot-3.2.2.ebuild,
+ metadata.xml:
+ Add upstream information to metadata, drop old revision
*proot-3.2.2-r1 (11 Mar 2014)
diff --git a/sys-apps/proot/metadata.xml b/sys-apps/proot/metadata.xml
index 9ad8dbdff303..eea20839bb2a 100644
--- a/sys-apps/proot/metadata.xml
+++ b/sys-apps/proot/metadata.xml
@@ -9,7 +9,15 @@
PRoot is a user-space implementation of chroot, mount --bind, and binfmt_misc.
This means that users don't need any privilege or setup to do things like: using an arbitrary directory as the new root filesystem,
making files accessible somewhere else in the filesystem hierarchy, or executing programs built for another CPU architecture
- transparently through QEMU user-mode.</longdescription>
+ transparently through QEMU user-mode.
+ </longdescription>
+ <upstream>
+ <remote-id type="github">cedric-vincent/PRoot</remote-id>
+ <maintainer>
+ <email>cedric.vincent@gmail.com</email>
+ <name>Cédric Vincent</name>
+ </maintainer>
+ </upstream>
<use>
<flag name="care">Build dynamic CARE binary (more info - http://reproducible.io/)</flag>
</use>
diff --git a/sys-apps/proot/proot-3.2.2.ebuild b/sys-apps/proot/proot-3.2.2.ebuild
deleted file mode 100644
index f7d79d402715..000000000000
--- a/sys-apps/proot/proot-3.2.2.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/proot/proot-3.2.2.ebuild,v 1.1 2014/02/25 08:15:17 patrick Exp $
-
-EAPI=5
-MY_PN="PRoot"
-
-inherit eutils pax-utils toolchain-funcs
-
-DESCRIPTION="User-space implementation of chroot, mount --bind, and binfmt_misc"
-HOMEPAGE="http://proot.me"
-SRC_URI="https://github.com/cedric-vincent/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="sys-libs/talloc"
-DEPEND="${RDEPEND}
- test? ( dev-util/valgrind )"
-
-# Breaks sandbox
-RESTRICT="test"
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-src_prepare() {
- epatch "${FILESDIR}/${PN}-3.2.1-makefile.patch" \
- "${FILESDIR}/${PN}-2.3.1-lib-paths-fix.patch"
- epatch_user
-}
-
-src_compile() {
- emake -C src V=1 \
- CC="$(tc-getCC)" \
- CHECK_VERSION="true"
-}
-
-src_install() {
- # Workaround for bug #493416
- pax-mark -Emp src/proot
-
- dobin src/proot
- doman doc/proot.1
- dodoc doc/*.txt doc/articles/*
-}
-
-src_test() {
- emake -C tests -j1 CC="$(tc-getCC)"
-}