From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1025022-garchives=archives.gentoo.org@lists.gentoo.org>
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 D4CC01382C5
	for <garchives@archives.gentoo.org>; Sun, 20 May 2018 10:25:21 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id CCEE0E0966;
	Sun, 20 May 2018 10:25:20 +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 A309BE0966
	for <gentoo-commits@lists.gentoo.org>; Sun, 20 May 2018 10:25:20 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(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 167FA335C8C
	for <gentoo-commits@lists.gentoo.org>; Sun, 20 May 2018 10:25:19 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 45257296
	for <gentoo-commits@lists.gentoo.org>; Sun, 20 May 2018 10:25:17 +0000 (UTC)
From: "Johannes Huber" <johu@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" <johu@gentoo.org>
Message-ID: <1526811913.01d62f4514143f343e23ab485e8dc2fd8679b506.johu@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/chrootuid/
X-VCS-Repository: repo/gentoo
X-VCS-Files: app-admin/chrootuid/chrootuid-1.3-r2.ebuild
X-VCS-Directories: app-admin/chrootuid/
X-VCS-Committer: johu
X-VCS-Committer-Name: Johannes Huber
X-VCS-Revision: 01d62f4514143f343e23ab485e8dc2fd8679b506
X-VCS-Branch: master
Date: Sun, 20 May 2018 10:25:17 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: 457ad01f-eef0-48bb-965a-afa52b082cc3
X-Archives-Hash: d487cf3921e60d44cda67acba2359cc8

commit:     01d62f4514143f343e23ab485e8dc2fd8679b506
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Sun May 20 10:23:22 2018 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sun May 20 10:25:13 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01d62f45

app-admin/chrootuid: Revision bump 1.3-r2

EAPI 7

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 app-admin/chrootuid/chrootuid-1.3-r2.ebuild | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/app-admin/chrootuid/chrootuid-1.3-r2.ebuild b/app-admin/chrootuid/chrootuid-1.3-r2.ebuild
new file mode 100644
index 00000000000..cdb02fef8c5
--- /dev/null
+++ b/app-admin/chrootuid/chrootuid-1.3-r2.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+MY_P="${P/-/}"
+
+DESCRIPTION="Run a network service at low privilege level and restricted file system access"
+HOMEPAGE="ftp://ftp.porcupine.org/pub/security/index.html"
+SRC_URI="ftp://ftp.porcupine.org/pub/security/${MY_P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~x86"
+IUSE=""
+
+S="${WORKDIR}/${MY_P}"
+
+src_compile() {
+	emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} ${LDFLAGS}"
+}
+
+src_install() {
+	dodoc README chrootuid_license
+	dobin chrootuid
+	doman chrootuid.1
+}