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-misc/tor/
Date: Thu, 02 Mar 2017 11:32:54
Message-Id: 1488454365.6503c9cfcd56b4d1735e300edfd50b3d4df9731e.blueness@gentoo
1 commit: 6503c9cfcd56b4d1735e300edfd50b3d4df9731e
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 2 11:32:24 2017 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 2 11:32:45 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6503c9cf
7
8 net-misc/tor: version bumps to 0.2.9.10 and 0.3.0.4_rc
9
10 Package-Manager: portage-2.3.3
11
12 net-misc/tor/Manifest | 2 +
13 net-misc/tor/tor-0.2.9.10.ebuild | 82 ++++++++++++++++++++++++++++++++++++++
14 net-misc/tor/tor-0.3.0.4_rc.ebuild | 74 ++++++++++++++++++++++++++++++++++
15 3 files changed, 158 insertions(+)
16
17 diff --git a/net-misc/tor/Manifest b/net-misc/tor/Manifest
18 index c3429d4ea01..8ff6c084d0f 100644
19 --- a/net-misc/tor/Manifest
20 +++ b/net-misc/tor/Manifest
21 @@ -1,3 +1,5 @@
22 DIST tor-0.2.8.12.tar.gz 5331785 SHA256 b35748f2839cf8ce9910b677ea873463495ac88689244c007ed038f6887f4aaf SHA512 b0cfa34914208bbb28f74178a87ece2a320a44606a94c35de715548fc5a3517cd3d9bf27512d9efe2f1c4685620a62ed591927f828e72fe5ac0a1fffa543eb26 WHIRLPOOL 342db1479f7c03ac3569b8b3bd86ca315fa7eb23dbb0e22d6f4490d399175b70cd398fc140eb42609b3c9656083ac99a7b6ce8d1eaa30530b6e4a3c20a1177ce
23 +DIST tor-0.2.9.10.tar.gz 5557586 SHA256 d611283e1fb284b5f884f8c07e7d3151016851848304f56cfdf3be2a88bd1341 SHA512 c18c4faf18406f04165136f0d70e6bc2896f3f02770beadaab5e7a99441d71b897ae3a14a046eaec99a1bd6d8ad7758b28f7d652588842b77621cdc95d4fb7e1 WHIRLPOOL 8a12ab4bd148c6cf57e4e21ae29ccff46b9f687a1646f4453b0ba312b97b78d0c2a428f3178f47e58ec012eb2edce53efff4e07d7f0418d7ccc4ded3856a84a0
24 DIST tor-0.2.9.9.tar.gz 5534005 SHA256 33325d2b250fd047ba2ddc5d11c2190c4e2951f4b03ec48ebd8bf0666e990d43 SHA512 cbe7e1f3e503b945f150916b7147cf23d1c32c3660e15aecfe5e2f2baac3a241de665e6ce4e81b81229933eba7f02d4a86e8deeabf2378d40fa83a7036928c9b WHIRLPOOL 9fc83693ea3b0519354a6d1fde83d090b66a9738f67abd7be2f9c3a36e95df92968b6da6c8cecd97ad352c70aac62817a86efae2dd42129934c2e6b38577439c
25 DIST tor-0.3.0.3-alpha.tar.gz 5738504 SHA256 739adb4a7ae1eb12582a667d56f7e8348123b1e00fe9d8a6159776df6dba7a87 SHA512 312b18599749252f8e66cc334481dfc8655f76717f02d3ecdcd7d278d43bc9e60e8464ab76d1a150adbb6a5468c1a03fff0db51f67ce12b9132bc772463a3849 WHIRLPOOL 2853eb585e608e098aee30fea7bf0f0c8175bc4ed1ad86a2511fc85a75bec2e8571dcf3a017986a73ceededff312c90650c83d44f7224e2de9d829f8d675c6e5
26 +DIST tor-0.3.0.4-rc.tar.gz 5757770 SHA256 32a7c0b322c61e15ce770f43715682f8b0be47844478387ddf8444cdf7c2f46f SHA512 21b335a973c9958c6c832ca171ac5e94c78379e365e4564289a623f264f8daab30be874a083ca3867364a6008c3b447080fad940dbbbda73f0cd3bb0dbf17d08 WHIRLPOOL af587ad1ce0c8fdac8eab65a9b7fb354abab700d967bddee9f2f647ffe7d630a5fd4cd0bb8f564ef62ccc2b482d87b83fe5f061da698504836ba997690417a10
27
28 diff --git a/net-misc/tor/tor-0.2.9.10.ebuild b/net-misc/tor/tor-0.2.9.10.ebuild
29 new file mode 100644
30 index 00000000000..035d07ef861
31 --- /dev/null
32 +++ b/net-misc/tor/tor-0.2.9.10.ebuild
33 @@ -0,0 +1,82 @@
34 +# Copyright 1999-2017 Gentoo Foundation
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI="6"
38 +
39 +inherit eutils flag-o-matic readme.gentoo-r1 systemd versionator user
40 +
41 +MY_PV="$(replace_version_separator 4 -)"
42 +MY_PF="${PN}-${MY_PV}"
43 +DESCRIPTION="Anonymizing overlay network for TCP"
44 +HOMEPAGE="http://www.torproject.org/"
45 +SRC_URI="https://www.torproject.org/dist/${MY_PF}.tar.gz
46 + https://archive.torproject.org/tor-package-archive/${MY_PF}.tar.gz"
47 +S="${WORKDIR}/${MY_PF}"
48 +
49 +LICENSE="BSD GPL-2"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos"
52 +IUSE="libressl scrypt seccomp selinux systemd tor-hardening test web"
53 +
54 +DEPEND="
55 + app-text/asciidoc
56 + dev-libs/libevent[ssl]
57 + sys-libs/zlib
58 + !libressl? ( dev-libs/openssl:0=[-bindist] )
59 + libressl? ( dev-libs/libressl:0= )
60 + scrypt? ( app-crypt/libscrypt )
61 + seccomp? ( sys-libs/libseccomp )
62 + systemd? ( sys-apps/systemd )"
63 +RDEPEND="${DEPEND}
64 + selinux? ( sec-policy/selinux-tor )"
65 +
66 +pkg_setup() {
67 + enewgroup tor
68 + enewuser tor -1 -1 /var/lib/tor tor
69 +}
70 +
71 +src_prepare() {
72 + eapply "${FILESDIR}"/${PN}-0.2.7.4-torrc.sample.patch
73 + eapply_user
74 +}
75 +
76 +src_configure() {
77 + # Upstream isn't sure of all the user provided CFLAGS that
78 + # will break tor, but does recommend against -fstrict-aliasing.
79 + # We'll filter-flags them here as we encounter them.
80 + filter-flags -fstrict-aliasing
81 +
82 + econf \
83 + --enable-system-torrc \
84 + --enable-asciidoc \
85 + --docdir="${EPREFIX}"/usr/share/doc/${PF} \
86 + $(use_enable scrypt libscrypt) \
87 + $(use_enable seccomp) \
88 + $(use_enable systemd) \
89 + $(use_enable tor-hardening gcc-hardening) \
90 + $(use_enable tor-hardening linker-hardening) \
91 + $(use_enable web tor2web-mode) \
92 + $(use_enable test unittests) \
93 + $(use_enable test coverage)
94 +}
95 +
96 +src_install() {
97 + readme.gentoo_create_doc
98 +
99 + newconfd "${FILESDIR}"/tor.confd tor
100 + newinitd "${FILESDIR}"/tor.initd-r8 tor
101 + systemd_dounit "${FILESDIR}/${PN}.service"
102 + systemd_dotmpfilesd "${FILESDIR}/${PN}.conf"
103 +
104 + emake DESTDIR="${D}" install
105 +
106 + keepdir /var/lib/tor
107 +
108 + dodoc -r README ChangeLog ReleaseNotes doc/HACKING
109 +
110 + fperms 750 /var/lib/tor
111 + fowners tor:tor /var/lib/tor
112 +
113 + insinto /etc/tor/
114 + newins "${FILESDIR}"/torrc-r1 torrc
115 +}
116
117 diff --git a/net-misc/tor/tor-0.3.0.4_rc.ebuild b/net-misc/tor/tor-0.3.0.4_rc.ebuild
118 new file mode 100644
119 index 00000000000..b103e82a8ae
120 --- /dev/null
121 +++ b/net-misc/tor/tor-0.3.0.4_rc.ebuild
122 @@ -0,0 +1,74 @@
123 +# Copyright 1999-2017 Gentoo Foundation
124 +# Distributed under the terms of the GNU General Public License v2
125 +
126 +EAPI="6"
127 +
128 +inherit flag-o-matic readme.gentoo-r1 systemd versionator user
129 +
130 +MY_PV="$(replace_version_separator 4 -)"
131 +MY_PF="${PN}-${MY_PV}"
132 +DESCRIPTION="Anonymizing overlay network for TCP"
133 +HOMEPAGE="http://www.torproject.org/"
134 +SRC_URI="https://www.torproject.org/dist/${MY_PF}.tar.gz
135 + https://archive.torproject.org/tor-package-archive/${MY_PF}.tar.gz"
136 +S="${WORKDIR}/${MY_PF}"
137 +
138 +LICENSE="BSD GPL-2"
139 +SLOT="0"
140 +KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos"
141 +IUSE="libressl scrypt seccomp selinux systemd tor-hardening test web"
142 +
143 +DEPEND="
144 + app-text/asciidoc
145 + dev-libs/libevent[ssl]
146 + sys-libs/zlib
147 + !libressl? ( dev-libs/openssl:0=[-bindist] )
148 + libressl? ( dev-libs/libressl:0= )
149 + scrypt? ( app-crypt/libscrypt )
150 + seccomp? ( sys-libs/libseccomp )
151 + systemd? ( sys-apps/systemd )"
152 +RDEPEND="${DEPEND}
153 + selinux? ( sec-policy/selinux-tor )"
154 +
155 +PATCHES=(
156 + "${FILESDIR}"/${PN}-0.2.7.4-torrc.sample.patch
157 +)
158 +
159 +DOCS=( README ChangeLog ReleaseNotes doc/HACKING )
160 +
161 +pkg_setup() {
162 + enewgroup tor
163 + enewuser tor -1 -1 /var/lib/tor tor
164 +}
165 +
166 +src_configure() {
167 + econf \
168 + --localstatedir="${EPREFIX}/var" \
169 + --enable-system-torrc \
170 + --enable-asciidoc \
171 + $(use_enable scrypt libscrypt) \
172 + $(use_enable seccomp) \
173 + $(use_enable systemd) \
174 + $(use_enable tor-hardening gcc-hardening) \
175 + $(use_enable tor-hardening linker-hardening) \
176 + $(use_enable web tor2web-mode) \
177 + $(use_enable test unittests) \
178 + $(use_enable test coverage)
179 +}
180 +
181 +src_install() {
182 + default
183 + readme.gentoo_create_doc
184 +
185 + newconfd "${FILESDIR}"/tor.confd tor
186 + newinitd "${FILESDIR}"/tor.initd-r8 tor
187 + systemd_dounit contrib/dist/tor.service
188 +
189 + keepdir /var/lib/tor
190 +
191 + fperms 750 /var/lib/tor
192 + fowners tor:tor /var/lib/tor
193 +
194 + insinto /etc/tor/
195 + newins "${FILESDIR}"/torrc-r1 torrc
196 +}