commit:     d7abf21f5071a0e39f25a9efafaf9025a9efa509
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 23 14:51:26 2019 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Mon Dec 23 14:51:26 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7abf21f

net-vpn/tor: remove older unstable version

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

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

diff --git a/net-vpn/tor/Manifest b/net-vpn/tor/Manifest
index bcabedfe421..2ff186c0e65 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.0.6.tar.gz 7380018 BLAKE2B 
d013fdb5c253be934e28d312fb1e9f03b679651a42878859375d12620fcbe30e077870b1714f2e52f5d7836351dbb1cc0805535c2a7e32256ebf1fce1ba68d63
 SHA512 
6ed701e5a3c05437877b7c3891c924655f2e47585ac3e2e6ac2fb5604a3ebf8a945f17f03e042d491d4d956da653ba110aa7e5f8bfa231fc0476d36a0a7f02e5
 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

diff --git a/net-vpn/tor/tor-0.4.0.6.ebuild b/net-vpn/tor/tor-0.4.0.6.ebuild
deleted file mode 100644
index cfb78c50ce3..00000000000
--- a/net-vpn/tor/tor-0.4.0.6.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