net-vpn/tor: version bump alpha branch to 0.3.3.1
authorAnthony G. Basile <blueness@gentoo.org>
Fri, 26 Jan 2018 12:20:37 +0000 (07:20 -0500)
committerAnthony G. Basile <blueness@gentoo.org>
Fri, 26 Jan 2018 12:20:37 +0000 (07:20 -0500)
Package-Manager: Portage-2.3.13, Repoman-2.3.3

net-vpn/tor/Manifest
net-vpn/tor/tor-0.3.3.1_alpha.ebuild [new file with mode: 0644]

index 44bc8664e67e50babf8d22c33be072967e7231aa..31bfc017dd0b60b5dc4d1d45bd743b2db1ab9812 100644 (file)
@@ -1,3 +1,4 @@
 DIST tor-0.3.1.7.tar.gz 6058284 BLAKE2B f2d825c82342cf1ca9354f051d532ef31e1d183be28f0f5b49f14c0d88176910292b6727b8cf0f066bae276e3a431851714cdb385219516d0a7519c5ed02b203 SHA512 a835526984187fad88cffc39ea8f6a4b61d5f8d2579b5a66425612607a22ff82e0f9da96e029e134e04d25ae0f59a1b4f771e9e8c19ebb563e1a0f5b3a3849e4
 DIST tor-0.3.1.9.tar.gz 6092702 BLAKE2B c009567b5866ff50159fbcbab05462a860c3e66c15599d11d40495d8a1a18fbad610f8ea94492519f2c8b6adfce7f4a54ad3bd2aee2b902ffae7215f35a3d4d5 SHA512 c22557251272595c65b2fade485020d76de16f5bb826d4a47d7bd093b7336dad42e8e2b8a3e0c56d9a10e62f0a5b1596c4b10cd578bf6da17f058f3d4e356f66
 DIST tor-0.3.2.9.tar.gz 6250442 BLAKE2B 34f6436d94f105bc0e68fa89bd6b671c84c9a6389010b5741b2da339caaea2e4d549f799aa8c6867eddc90818195c73a4d13cdf7f7003d578779f7e2d9964cfb SHA512 60b8d93eee8d0b04b49a8fa941ea3489e8cd9b3f3923d9da39865caa1f5bce6666c1db06594520aa3726151a54c9c0c30bb8d9b25fb38d7172ffb15a011d6c8c
+DIST tor-0.3.3.1-alpha.tar.gz 6317585 BLAKE2B bba9f5c78c5a66c0232c5f2c982349d800ab7ed6245cf69583fc85ba97b5b0a5d974a667cb2a3204255b72f7c446f242581c9bfeef5437463fb97ab1ec2df897 SHA512 796deb6c31d78e3424aed72d3c9a0958c77a28fc883da77e724e94bb92376858ae094c73acf166a5415587186667d4ea3e87c0578e42f4a59b8397365d782314
diff --git a/net-vpn/tor/tor-0.3.3.1_alpha.ebuild b/net-vpn/tor/tor-0.3.3.1_alpha.ebuild
new file mode 100644 (file)
index 0000000..fc96649
--- /dev/null
@@ -0,0 +1,84 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit flag-o-matic readme.gentoo-r1 systemd versionator user
+
+MY_PV="$(replace_version_separator 4 -)"
+MY_PF="${PN}-${MY_PV}"
+DESCRIPTION="Anonymizing overlay network for TCP"
+HOMEPAGE="http://www.torproject.org/"
+SRC_URI="https://www.torproject.org/dist/${MY_PF}.tar.gz
+       https://archive.torproject.org/tor-package-archive/${MY_PF}.tar.gz"
+S="${WORKDIR}/${MY_PF}"
+
+LICENSE="BSD GPL-2"
+SLOT="0"
+# We need to keyword app-arch/zstd
+#KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos"
+KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86 ~ppc-macos"
+IUSE="libressl lzma scrypt seccomp selinux systemd tor-hardening test web zstd"
+
+DEPEND="
+       app-text/asciidoc
+       dev-libs/libevent[ssl]
+       sys-libs/zlib
+       !libressl? ( dev-libs/openssl:0=[-bindist] )
+       libressl? ( dev-libs/libressl:0= )
+       lzma? ( app-arch/xz-utils )
+       scrypt? ( app-crypt/libscrypt )
+       seccomp? ( sys-libs/libseccomp )
+       systemd? ( sys-apps/systemd )
+       zstd? ( app-arch/zstd )"
+RDEPEND="${DEPEND}
+       selinux? ( sec-policy/selinux-tor )"
+
+PATCHES=(
+       "${FILESDIR}"/${PN}-0.2.7.4-torrc.sample.patch
+)
+
+DOCS=( README ChangeLog ReleaseNotes doc/HACKING )
+
+pkg_setup() {
+       enewgroup tor
+       enewuser tor -1 -1 /var/lib/tor tor
+}
+
+src_configure() {
+       econf \
+               --localstatedir="${EPREFIX}/var" \
+               --enable-system-torrc \
+               --enable-asciidoc \
+               --disable-android \
+               --disable-libfuzzer \
+               --disable-rust \
+               --disable-restart-debugging \
+               $(use_enable lzma) \
+               $(use_enable scrypt libscrypt) \
+               $(use_enable seccomp) \
+               $(use_enable systemd) \
+               $(use_enable tor-hardening gcc-hardening) \
+               $(use_enable tor-hardening linker-hardening) \
+               $(use_enable web tor2web-mode) \
+               $(use_enable test unittests) \
+               $(use_enable test coverage) \
+               $(use_enable zstd)
+}
+
+src_install() {
+       default
+       readme.gentoo_create_doc
+
+       newconfd "${FILESDIR}"/tor.confd tor
+       newinitd "${FILESDIR}"/tor.initd-r8 tor
+       systemd_dounit contrib/dist/tor.service
+
+       keepdir /var/lib/tor
+
+       fperms 750 /var/lib/tor
+       fowners tor:tor /var/lib/tor
+
+       insinto /etc/tor/
+       newins "${FILESDIR}"/torrc-r1 torrc
+}