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-proxy/torsocks/
Date: Mon, 30 May 2022 16:02:16
Message-Id: 1653926525.02f427ef6730de2617e40e3842cdd34e56ad4236.blueness@gentoo
1 commit: 02f427ef6730de2617e40e3842cdd34e56ad4236
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 30 16:02:05 2022 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Mon May 30 16:02:05 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02f427ef
7
8 net-proxy/torsocks: remove older version 2.2.0
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
12
13 net-proxy/torsocks/Manifest | 1 -
14 net-proxy/torsocks/torsocks-2.2.0.ebuild | 46 --------------------------------
15 2 files changed, 47 deletions(-)
16
17 diff --git a/net-proxy/torsocks/Manifest b/net-proxy/torsocks/Manifest
18 index f63e08613936..7bed495316dd 100644
19 --- a/net-proxy/torsocks/Manifest
20 +++ b/net-proxy/torsocks/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST torsocks-2.2.0.tar.gz 115269 BLAKE2B e6e376dbe9b248bcb51fb0c3c16346f4888310abd6e84942acca69f67ae15afe5dfeba9a6b3a8d1fa562f87548450af93cea3bea4d899980ca6acb651658cfaa SHA512 903d11d58ece76eaf75ff8fc11a27e4a29f94be530f2d77d1a6f0982d556a4b9c78677a43eed88f2451054d0e985672900ecf73b360fa09e80195c3b9006622b
23 DIST torsocks-2.3.0.tar.gz 118033 BLAKE2B a4329ffa5e20204024c4f7dda8619ba2d3e2a5f370727acdc720527688bdb3f8735b0386dfa07758fe59e1890f9ce88bb148a1b0c401bbb5966d2fe17934ca61 SHA512 139f4cf60191632add8bc845b2d68d25a0285e9746988167d832e50cedb8083f2765571429d3a11350fa2d327a1ff0a0ead9b464dac90d897b13ab948f609114
24 DIST torsocks-2.4.0.tar.gz 118991 BLAKE2B e1817c3bbf10f83431292c644d7187e40b62c5f223784074b3f9c082d8d75243090e226ffebb6fd81805fbd887588790833adc4ab8923e8116585c0a29255ad0 SHA512 7d625ce3a4600f87b86ae9ac79dfd206e7709cb0bafe0b7afcf33a6f1825f968cc63ad3e23c584582b244647bdeafbfdbfc54f7c81e521b0a3d278a1483ce86e
25
26 diff --git a/net-proxy/torsocks/torsocks-2.2.0.ebuild b/net-proxy/torsocks/torsocks-2.2.0.ebuild
27 deleted file mode 100644
28 index e6454f696b72..000000000000
29 --- a/net-proxy/torsocks/torsocks-2.2.0.ebuild
30 +++ /dev/null
31 @@ -1,46 +0,0 @@
32 -# Copyright 1999-2016 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -inherit autotools versionator
38 -
39 -MY_PV="$(replace_version_separator 3 -)"
40 -MY_PF="${PN}-${MY_PV}"
41 -S=${WORKDIR}/${MY_PF}
42 -
43 -DESCRIPTION="Use most socks-friendly applications with Tor"
44 -HOMEPAGE="https://github.com/dgoulet/torsocks"
45 -SRC_URI="https://github.com/dgoulet/torsocks/archive/v${MY_PV}.tar.gz -> ${MY_PF}.tar.gz"
46 -
47 -LICENSE="GPL-2"
48 -SLOT="0"
49 -KEYWORDS="amd64 ~arm x86"
50 -IUSE="static-libs"
51 -
52 -# We do not depend on tor which might be running on a different box
53 -DEPEND=""
54 -RDEPEND="${DEPEND}"
55 -
56 -src_prepare() {
57 - # Disable tests requiring network access.
58 - local test
59 - for test in dns fd_passing getpeername; do
60 - sed -i -e "/^ test_${test} \\\\\$/d" tests/Makefile.am || \
61 - die "failed to disable network tests"
62 - done
63 -
64 - default
65 - eautoreconf
66 -}
67 -
68 -src_configure() {
69 - econf $(use_enable static-libs static)
70 -}
71 -
72 -src_install() {
73 - default
74 -
75 - # Remove libtool .la files
76 - find "${D}" -name '*.la' -delete || die
77 -}