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 C8D7C138334 for ; Sun, 8 Dec 2019 16:44:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DDC7EE0897; Sun, 8 Dec 2019 16:44:54 +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 C0198E0897 for ; Sun, 8 Dec 2019 16:44:54 +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 79E5E34D70B for ; Sun, 8 Dec 2019 16:44:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 118708CD for ; Sun, 8 Dec 2019 16:44:51 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1575823472.9fccdd09496091fb45ba1984396361843c929df0.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-vpn/tor/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-vpn/tor/tor-0.4.1.6-r1.ebuild net-vpn/tor/tor-0.4.1.6.ebuild X-VCS-Directories: net-vpn/tor/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 9fccdd09496091fb45ba1984396361843c929df0 X-VCS-Branch: master Date: Sun, 8 Dec 2019 16:44:51 +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: d66e577c-d948-44be-912d-141e21e51be7 X-Archives-Hash: 5ad5b8bf2a815161da993cfa8f822316 commit: 9fccdd09496091fb45ba1984396361843c929df0 Author: Anthony G. Basile gentoo org> AuthorDate: Sun Dec 8 16:44:32 2019 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Sun Dec 8 16:44:32 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fccdd09 net-vpn/tor: also port older versions to GLEP 81 Package-Manager: Portage-2.3.79, Repoman-2.3.16 Signed-off-by: Anthony G. Basile gentoo.org> net-vpn/tor/{tor-0.4.1.6.ebuild => tor-0.4.1.6-r1.ebuild} | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/net-vpn/tor/tor-0.4.1.6.ebuild b/net-vpn/tor/tor-0.4.1.6-r1.ebuild similarity index 96% rename from net-vpn/tor/tor-0.4.1.6.ebuild rename to net-vpn/tor/tor-0.4.1.6-r1.ebuild index e2fbeea8b40..548a309eebc 100644 --- a/net-vpn/tor/tor-0.4.1.6.ebuild +++ b/net-vpn/tor/tor-0.4.1.6-r1.ebuild @@ -30,7 +30,10 @@ DEPEND=" seccomp? ( sys-libs/libseccomp ) systemd? ( sys-apps/systemd ) zstd? ( app-arch/zstd )" -RDEPEND="${DEPEND} +RDEPEND=" + acct-user/tor + acct-group/tor + ${DEPEND} selinux? ( sec-policy/selinux-tor )" PATCHES=( @@ -42,11 +45,6 @@ DOCS=() RESTRICT="!test? ( test )" -pkg_setup() { - enewgroup tor - enewuser tor -1 -1 /var/lib/tor tor -} - src_configure() { use doc && DOCS+=( README ChangeLog ReleaseNotes doc/HACKING ) export ac_cv_lib_cap_cap_init=$(usex caps) @@ -87,5 +85,4 @@ src_install() { insinto /etc/tor/ newins "${FILESDIR}"/torrc-r1 torrc - }