Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-vpn/tor/
Date: Sun, 24 Feb 2019 17:34:11
Message-Id: 1551029543.191bb01de7bf7ed60044650624ac063b69da0e75.blueness@gentoo
1 commit: 191bb01de7bf7ed60044650624ac063b69da0e75
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 24 17:32:23 2019 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 24 17:32:23 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=191bb01d
7
8 net-vpn/tor: version bump to 0.3.5.8
9
10 Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 net-vpn/tor/Manifest | 1 +
14 net-vpn/tor/tor-0.3.5.8.ebuild | 87 ++++++++++++++++++++++++++++++++++++++++++
15 2 files changed, 88 insertions(+)
16
17 diff --git a/net-vpn/tor/Manifest b/net-vpn/tor/Manifest
18 index f8d6bb2eb12..2a4824601f4 100644
19 --- a/net-vpn/tor/Manifest
20 +++ b/net-vpn/tor/Manifest
21 @@ -1,3 +1,4 @@
22 DIST tor-0.3.4.9.tar.gz 6695931 BLAKE2B ebfe0f49ae923e63b0bd8a7cafc453d7b0775cbfd167463b364490faf9bbf61decd28906d8f5bb08bfa9a5a10b371d9188a5019314c0de5ace15cc379347f88e SHA512 cc254a2cc2f21b4511e9cb215ba5f05fefc4dceffcf46a402efa2d3540872a4ed8e0095245df0802ea12c1367451bc16ca60c0aea6a77e2139580f3c5ba8c02f
23 DIST tor-0.3.5.7.tar.gz 6934521 BLAKE2B 3af9a1a14fa5ea7ce0a5be08db3e2cbe4188d569bda92c7a24a66f94d79869acfd1ba9e1c51bfb0ac3f6399d79b907888d1546ba7898af9563d65f5288c09577 SHA512 e3a7be620c228c3bc73ea9350a19abecb0ac6dae2b309d6233151ab2377c754110a9854d8d221f380f80cffa2f723d266bd09b3432ae33c319c0fe9a7e538bc9
24 +DIST tor-0.3.5.8.tar.gz 6994335 BLAKE2B d37006ee48f6ecb9205fe9ad1178f2375aec5a8f8c614a85af398e2114d13e4ef7dcfc501685f2f6d4dbb44cca2ab318be69ac37686a3ef1bb980adcdefcac11 SHA512 47a21cdd6d4563dd9bfb43c26f054f00747d069611dc9b16eb11b9653fab5c0133fb8bd30e162fa27d90d6bc4f88c0e2bf49eb4fe54529017d5eb87c3bb86132
25 DIST tor-0.4.0.1-alpha.tar.gz 7087989 BLAKE2B 757a478ac9619553b687144fa2c5e56cfa9324800f567fb66fd2d637f33f8886ec13cf96accc46bd8c93dd8adcdcf51f0ed3c50e377af6e198cdfc3734741425 SHA512 4c09837316921d170a8866116bbbd31603fd312e0e2282abcf13e52a656141d22e3d0dd91185c0429cf9ae080d06bd100f747d18795b1b606aec7178c19f5bac
26
27 diff --git a/net-vpn/tor/tor-0.3.5.8.ebuild b/net-vpn/tor/tor-0.3.5.8.ebuild
28 new file mode 100644
29 index 00000000000..2e27b784b6b
30 --- /dev/null
31 +++ b/net-vpn/tor/tor-0.3.5.8.ebuild
32 @@ -0,0 +1,87 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI="7"
37 +
38 +inherit flag-o-matic readme.gentoo-r1 systemd user
39 +
40 +MY_PV="$(ver_rs 4 -)"
41 +MY_PF="${PN}-${MY_PV}"
42 +DESCRIPTION="Anonymizing overlay network for TCP"
43 +HOMEPAGE="http://www.torproject.org/"
44 +SRC_URI="https://www.torproject.org/dist/${MY_PF}.tar.gz
45 + https://archive.torproject.org/tor-package-archive/${MY_PF}.tar.gz"
46 +S="${WORKDIR}/${MY_PF}"
47 +
48 +LICENSE="BSD GPL-2"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86 ~ppc-macos"
51 +IUSE="caps libressl lzma scrypt seccomp selinux systemd tor-hardening test zstd"
52 +
53 +DEPEND="
54 + app-text/asciidoc
55 + dev-libs/libevent[ssl]
56 + sys-libs/zlib
57 + caps? ( sys-libs/libcap )
58 + !libressl? ( dev-libs/openssl:0=[-bindist] )
59 + libressl? ( dev-libs/libressl:0= )
60 + lzma? ( app-arch/xz-utils )
61 + scrypt? ( app-crypt/libscrypt )
62 + seccomp? ( sys-libs/libseccomp )
63 + systemd? ( sys-apps/systemd )
64 + zstd? ( app-arch/zstd )"
65 +RDEPEND="${DEPEND}
66 + selinux? ( sec-policy/selinux-tor )"
67 +
68 +PATCHES=(
69 + "${FILESDIR}"/${PN}-0.2.7.4-torrc.sample.patch
70 + "${FILESDIR}"/${PN}-0.3.3.2-alpha-tor.service.in.patch
71 +)
72 +
73 +DOCS=( README ChangeLog ReleaseNotes doc/HACKING )
74 +
75 +pkg_setup() {
76 + enewgroup tor
77 + enewuser tor -1 -1 /var/lib/tor tor
78 +}
79 +
80 +src_configure() {
81 + export ac_cv_lib_cap_cap_init=$(usex caps)
82 + econf \
83 + --localstatedir="${EPREFIX}/var" \
84 + --enable-system-torrc \
85 + --enable-asciidoc \
86 + --disable-android \
87 + --disable-libfuzzer \
88 + --disable-module-dirauth \
89 + --enable-pic \
90 + --disable-rust \
91 + --disable-restart-debugging \
92 + --disable-zstd-advanced-apis \
93 + $(use_enable lzma) \
94 + $(use_enable scrypt libscrypt) \
95 + $(use_enable seccomp) \
96 + $(use_enable systemd) \
97 + $(use_enable tor-hardening gcc-hardening) \
98 + $(use_enable tor-hardening linker-hardening) \
99 + $(use_enable test unittests) \
100 + $(use_enable test coverage) \
101 + $(use_enable zstd)
102 +}
103 +
104 +src_install() {
105 + default
106 + readme.gentoo_create_doc
107 +
108 + newconfd "${FILESDIR}"/tor.confd tor
109 + newinitd "${FILESDIR}"/tor.initd-r8 tor
110 + systemd_dounit contrib/dist/tor.service
111 +
112 + keepdir /var/lib/tor
113 +
114 + fperms 750 /var/lib/tor
115 + fowners tor:tor /var/lib/tor
116 +
117 + insinto /etc/tor/
118 + newins "${FILESDIR}"/torrc-r1 torrc
119 +}