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 91529138334 for ; Fri, 6 Dec 2019 16:12:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E2ECEE086F; Fri, 6 Dec 2019 16:12:29 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 CC98AE086F for ; Fri, 6 Dec 2019 16:12:29 +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 008C734D844 for ; Fri, 6 Dec 2019 16:12:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 86567778 for ; Fri, 6 Dec 2019 16:12:27 +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: <1575648742.a6de24047cbc01012821c31be44a7b6e925a4f57.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.2.4_rc-r1.ebuild net-vpn/tor/tor-0.4.2.4_rc.ebuild X-VCS-Directories: net-vpn/tor/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: a6de24047cbc01012821c31be44a7b6e925a4f57 X-VCS-Branch: master Date: Fri, 6 Dec 2019 16:12:27 +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: 6c2ee37b-6eff-4543-8a4d-3361a129b012 X-Archives-Hash: 7d7be1c2dc874845ca73e4ec07474fe5 commit: a6de24047cbc01012821c31be44a7b6e925a4f57 Author: Anthony G. Basile gentoo org> AuthorDate: Fri Dec 6 16:12:02 2019 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Fri Dec 6 16:12:22 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6de2404 net-vpn/tor: port to GLEP 81, bug #701212 Package-Manager: Portage-2.3.79, Repoman-2.3.16 Signed-off-by: Anthony G. Basile gentoo.org> .../tor/{tor-0.4.2.4_rc.ebuild => tor-0.4.2.4_rc-r1.ebuild} | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/net-vpn/tor/tor-0.4.2.4_rc.ebuild b/net-vpn/tor/tor-0.4.2.4_rc-r1.ebuild similarity index 96% rename from net-vpn/tor/tor-0.4.2.4_rc.ebuild rename to net-vpn/tor/tor-0.4.2.4_rc-r1.ebuild index 70dc59c0d81..b4e2fd0c1db 100644 --- a/net-vpn/tor/tor-0.4.2.4_rc.ebuild +++ b/net-vpn/tor/tor-0.4.2.4_rc-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) @@ -89,5 +87,4 @@ src_install() { insinto /etc/tor/ newins "${FILESDIR}"/torrc-r1 torrc - }