Gentoo Archives: gentoo-commits

From: Ben Kohler <bkohler@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
Date: Tue, 27 Sep 2022 16:43:09
Message-Id: 1664296948.d8f812cd6694204fb437994cd3a90160db34fc25.bkohler@gentoo
1 commit: d8f812cd6694204fb437994cd3a90160db34fc25
2 Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 27 16:42:21 2022 +0000
4 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 27 16:42:28 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8f812cd
7
8 net-proxy/tinyproxy: drop 1.11.1
9
10 Bug: https://bugs.gentoo.org/871924
11
12 Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
13
14 net-proxy/tinyproxy/Manifest | 1 -
15 net-proxy/tinyproxy/tinyproxy-1.11.1.ebuild | 76 -----------------------------
16 2 files changed, 77 deletions(-)
17
18 diff --git a/net-proxy/tinyproxy/Manifest b/net-proxy/tinyproxy/Manifest
19 index c837f2fdb7be..ffc77e758748 100644
20 --- a/net-proxy/tinyproxy/Manifest
21 +++ b/net-proxy/tinyproxy/Manifest
22 @@ -1,2 +1 @@
23 -DIST tinyproxy-1.11.1.tar.xz 182080 BLAKE2B d39fa1986343af60cdfd07c6a049962e646a72874f7058fd082b9758bae3c7bc1a2288103527e0e1054ab098a3a41fc67eb3e08cd160e2bd4bd030e114326a6f SHA512 2e3435bbfece3797c11ccce222eef494ed92e00dd82bea2c40a54e454b7e03c8abc8e09b244f2da7192209c39047369439d08974b79eebc996fb3095230d0374
24 DIST tinyproxy-1.11.1_p20220908.tar.gz 112898 BLAKE2B 0f00a103661a5e5891a9f82cb95f1a421a47e68ea6e2144ead01241e6b4bcda8dbd4dce302432fa0432aae1e048b4a788a0ad3bad2dc8691906b872730c31b2b SHA512 3d1c0ad4915e81e775e981b8ba625664128c8d63b2093cc29b3873dc83da4e16646e2a39e32769f463bab1d5af2b699deaa546a705f1269d5a6dfc2c927dafef
25
26 diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.1.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.1.ebuild
27 deleted file mode 100644
28 index fd02282f412c..000000000000
29 --- a/net-proxy/tinyproxy/tinyproxy-1.11.1.ebuild
30 +++ /dev/null
31 @@ -1,76 +0,0 @@
32 -# Copyright 1999-2022 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -inherit autotools systemd tmpfiles
38 -
39 -MY_PV=${PV/_/-}
40 -
41 -DESCRIPTION="A lightweight HTTP/SSL proxy"
42 -HOMEPAGE="https://github.com/tinyproxy/tinyproxy/"
43 -SRC_URI="https://github.com/tinyproxy/tinyproxy/releases/download/${MY_PV}/${PN}-${MY_PV}.tar.xz"
44 -
45 -LICENSE="GPL-2"
46 -SLOT="0"
47 -KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ~sparc x86"
48 -
49 -IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
50 -+upstream-proxy +xtinyproxy-header"
51 -RESTRICT="!test? ( test )"
52 -REQUIRED_USE="test? ( xtinyproxy-header )"
53 -
54 -S="${WORKDIR}"/${PN}-${MY_PV}
55 -
56 -DEPEND="
57 - acct-group/tinyproxy
58 - acct-user/tinyproxy
59 -"
60 -
61 -RDEPEND="${DEPEND}"
62 -
63 -src_prepare() {
64 - default
65 -
66 - sed -i \
67 - -e "s|nobody|${PN}|g" \
68 - etc/${PN}.conf.in || die "sed failed"
69 -
70 - eautoreconf
71 -}
72 -
73 -src_configure() {
74 - econf \
75 - $(use_enable debug) \
76 - $(use_enable filter-proxy filter) \
77 - $(use_enable reverse-proxy reverse) \
78 - $(use_enable transparent-proxy transparent) \
79 - $(use_enable upstream-proxy upstream) \
80 - $(use_enable xtinyproxy-header xtinyproxy) \
81 - --localstatedir=/var
82 -}
83 -
84 -src_test() {
85 - # The make check target does not run the test suite
86 - emake test
87 -}
88 -
89 -src_install() {
90 - default
91 -
92 - dodoc AUTHORS ChangeLog NEWS README TODO
93 -
94 - diropts -m0775 -o ${PN} -g ${PN}
95 - keepdir /var/log/${PN}
96 -
97 - newinitd "${FILESDIR}"/${PN}-1.10.0.initd tinyproxy
98 - systemd_newunit "${FILESDIR}"/${PN}-1.10.0.service tinyproxy.service
99 - dotmpfiles "${FILESDIR}"/${PN}.tmpfiles.conf
100 -}
101 -
102 -pkg_postinst() {
103 - tmpfiles_process ${PN}.tmpfiles.conf
104 -
105 - elog "For filtering domains and URLs, enable filter option in the configuration"
106 - elog "file and add them to the filter file (one domain or URL per line)."
107 -}