commit:     b2007c2bd0a9b674b02b01bc982775fe01872da4
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 25 20:41:20 2020 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sat Jan 25 20:41:20 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2007c2b

net-vpn/tor: remove older stable

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>

 net-vpn/tor/Manifest           |  1 -
 net-vpn/tor/tor-0.4.0.5.ebuild | 91 ------------------------------------------
 2 files changed, 92 deletions(-)

diff --git a/net-vpn/tor/Manifest b/net-vpn/tor/Manifest
index b33b018529a..59bdc0aa00d 100644
--- a/net-vpn/tor/Manifest
+++ b/net-vpn/tor/Manifest
@@ -1,4 +1,3 @@
-DIST tor-0.4.0.5.tar.gz 7203877 BLAKE2B 
e03710038615a5b9baf327933917c369bb3fabd4df6dd9f16053a0b72bcf20219e956e74258d0e39ae297d406035a89fab017d2e28c795f5d713c3933ad7cd29
 SHA512 
f6bccc52aaa436a501077b0891ecd3a9779f288b3b15fd76fa2c612e60aba04763b5951f55b2357e6271797b2f924bee9a6d2c1ee20419daa02d9d38ec68510b
 DIST tor-0.4.1.7.tar.gz 7512661 BLAKE2B 
34c1c8e40c6a2a2aeb19e1161b3b32d1683da246c5839c9fc4375471d8e7c46bb1277bcf8fc700898580a6b15d8f401ee61f422ecd7a88c783cffb1157150fc5
 SHA512 
f6ead1412d23516a16f31e1157b4538071752ae09a421d9dceaa7cf76599c01490f9bfcb8e26f1a75e888359adf6adcd029ca64cf48e3b45b07e2d62482c9541
 DIST tor-0.4.2.5.tar.gz 7596836 BLAKE2B 
0c7fa5d427f9d0683846c1023a4539ae4042c0d26f1c5afff20037f0681f6ea0dfb735e9c0e9d14bd7dddbfd5a0023064dc6e6cf6e6629402a6a13248129e6c5
 SHA512 
e63157713caa3590324f652f17c5c5634bab015dcde5c7832eb725351c3a91c1051dd8a95650502703e9c3dd5daefc2867ff3d20530dfec17310bb3dd4bb5b7d
 DIST tor-0.4.3.1-alpha.tar.gz 7716850 BLAKE2B 
a03d0a1ad172ac9e5fd511ad772b4dbb4f2c75f42bb30636d5928bad819b984ac36bc11894d2aa75f0cca57591385a8cda5186c64c54aad222cd233268bfe8c9
 SHA512 
fb51b368927fd292de7f257e31bd882168a04bf7ffc108a1fff2bf555118d71732213ef6d2b5adb93f9178b5410307025c4a0494858fb457913655a0b705466b

diff --git a/net-vpn/tor/tor-0.4.0.5.ebuild b/net-vpn/tor/tor-0.4.0.5.ebuild
deleted file mode 100644
index 6d72e96669d..00000000000
--- a/net-vpn/tor/tor-0.4.0.5.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit flag-o-matic readme.gentoo-r1 systemd user
-
-MY_PV="$(ver_rs 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"
-KEYWORDS="amd64 arm ~arm64 ~mips ppc ppc64 x86 ~ppc-macos"
-IUSE="caps doc libressl lzma +man scrypt seccomp selinux systemd tor-hardening 
test zstd"
-
-DEPEND="
-       dev-libs/libevent[ssl]
-       sys-libs/zlib
-       caps? ( sys-libs/libcap )
-       man? ( app-text/asciidoc )
-       !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
-       "${FILESDIR}"/${PN}-0.3.3.2-alpha-tor.service.in.patch
-)
-
-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)
-       econf \
-               --localstatedir="${EPREFIX}/var" \
-               --enable-system-torrc \
-               --disable-android \
-               --disable-libfuzzer \
-               --disable-module-dirauth \
-               --enable-pic \
-               --disable-rust \
-               --disable-restart-debugging \
-               --disable-zstd-advanced-apis  \
-               $(use_enable man asciidoc) \
-               $(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 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
-
-}

Reply via email to