public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2016-05-03 19:17 Austin English
  0 siblings, 0 replies; 44+ messages in thread
From: Austin English @ 2016-05-03 19:17 UTC (permalink / raw
  To: gentoo-commits

commit:     d223f92871a17247bb411f4183ef11e127ecf62b
Author:     Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Tue May  3 19:10:40 2016 +0000
Commit:     Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Tue May  3 19:17:01 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d223f928

net-proxy/tinyproxy: remove old version

Package-Manager: portage-2.2.26

 net-proxy/tinyproxy/tinyproxy-1.8.3-r3.ebuild | 85 ---------------------------
 1 file changed, 85 deletions(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.8.3-r3.ebuild b/net-proxy/tinyproxy/tinyproxy-1.8.3-r3.ebuild
deleted file mode 100644
index f31cf7d..0000000
--- a/net-proxy/tinyproxy/tinyproxy-1.8.3-r3.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit autotools eutils systemd user
-
-DESCRIPTION="A lightweight HTTP/SSL proxy"
-HOMEPAGE="http://www.banu.com/tinyproxy/"
-SRC_URI="http://www.banu.com/pub/${PN}/1.8/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 ~arm ia64 ppc sparc x86"
-
-IUSE="test debug +filter-proxy minimal reverse-proxy
-	transparent-proxy +upstream-proxy +xtinyproxy-header"
-
-REQUIRED_USE="test? ( xtinyproxy-header )"
-
-DEPEND="!minimal? ( app-text/asciidoc )"
-
-pkg_setup() {
-	enewgroup ${PN}
-	enewuser ${PN} "" "" "" ${PN}
-}
-
-src_prepare() {
-	epatch "${FILESDIR}"/${PN}-1.8.1-ldflags.patch
-	epatch "${FILESDIR}"/${P}-r2-DoS-Prevention.patch
-
-	use minimal && epatch "${FILESDIR}/${PN}-1.8.1-minimal.patch"
-
-	sed -i \
-		-e "s|nobody|${PN}|g" \
-		-e 's|/var/run/|/run/|g' \
-		etc/${PN}.conf.in || die "sed failed"
-
-	sed -i \
-		-e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' \
-		configure.ac || die
-
-	eautoreconf
-}
-
-src_configure() {
-	if use minimal; then
-		ln -s /bin/true "${T}"/a2x
-		export PATH="${T}:${PATH}"
-	fi
-
-	econf \
-		$(use_enable debug) \
-		$(use_enable filter-proxy filter) \
-		$(use_enable reverse-proxy reverse) \
-		$(use_enable transparent-proxy transparent) \
-		$(use_enable upstream-proxy upstream) \
-		$(use_enable xtinyproxy-header xtinyproxy) \
-		--disable-silent-rules \
-		--localstatedir=/var
-}
-
-src_test() {
-	# The make check target does not run the test suite
-	emake test
-}
-
-src_install() {
-	default
-
-	dodoc AUTHORS ChangeLog NEWS README TODO
-
-	diropts -m0775 -o ${PN} -g ${PN}
-	keepdir /var/log/${PN}
-
-	newinitd "${FILESDIR}"/${PN}-1.8.3-r2.initd tinyproxy
-	systemd_dounit "${FILESDIR}"/${PN}.service
-	systemd_dotmpfilesd "${FILESDIR}"/${PN}.tmpfiles.conf
-}
-
-pkg_postinst() {
-	elog "For filtering domains and URLs, enable filter option in the configuration"
-	elog "file and add them to the filter file (one domain or URL per line)."
-}


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2016-05-04  9:35 Lars Wendler
  0 siblings, 0 replies; 44+ messages in thread
From: Lars Wendler @ 2016-05-04  9:35 UTC (permalink / raw
  To: gentoo-commits

commit:     d24c4f2b2529ad3f009b200641793b5105c01426
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Wed May  4 09:34:49 2016 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Wed May  4 09:34:49 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d24c4f2b

net-proxy/tinyproxy: Fixed incomplete EAPI-6 conversion (bug #582060).

Package-Manager: portage-2.2.28
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 net-proxy/tinyproxy/tinyproxy-1.8.3-r4.ebuild | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.8.3-r4.ebuild b/net-proxy/tinyproxy/tinyproxy-1.8.3-r4.ebuild
index ac0b0c7..83adc78 100644
--- a/net-proxy/tinyproxy/tinyproxy-1.8.3-r4.ebuild
+++ b/net-proxy/tinyproxy/tinyproxy-1.8.3-r4.ebuild
@@ -21,18 +21,21 @@ REQUIRED_USE="test? ( xtinyproxy-header )"
 
 DEPEND="!minimal? ( app-text/asciidoc )"
 
+PATCHES=(
+	"${FILESDIR}"/${PN}-1.8.1-ldflags.patch
+	"${FILESDIR}"/${P}-r2-DoS-Prevention.patch
+
+)
+
 pkg_setup() {
 	enewgroup ${PN}
 	enewuser ${PN} "" "" "" ${PN}
 }
 
 src_prepare() {
-	default
+	use minimal && PATCHES+=( "${FILESDIR}/${PN}-1.8.1-minimal.patch" )
 
-	eapply "${FILESDIR}"/${PN}-1.8.1-ldflags.patch
-	eapply "${FILESDIR}"/${P}-r2-DoS-Prevention.patch
-
-	use minimal && epatch "${FILESDIR}/${PN}-1.8.1-minimal.patch"
+	default
 
 	sed -i \
 		-e "s|nobody|${PN}|g" \


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2018-10-09 13:06 Ben Kohler
  0 siblings, 0 replies; 44+ messages in thread
From: Ben Kohler @ 2018-10-09 13:06 UTC (permalink / raw
  To: gentoo-commits

commit:     e637327cddf8a210ca7a938d5c659003d5e6a4d6
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Tue Oct  9 12:41:54 2018 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Tue Oct  9 13:06:36 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e637327c

net-proxy/tinyproxy: add myself as maintainer

Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 net-proxy/tinyproxy/metadata.xml | 20 +++++++++++---------
 1 file changed, 11 insertions(+), 9 deletions(-)

diff --git a/net-proxy/tinyproxy/metadata.xml b/net-proxy/tinyproxy/metadata.xml
index b2a94affab6..228ebe4e18a 100644
--- a/net-proxy/tinyproxy/metadata.xml
+++ b/net-proxy/tinyproxy/metadata.xml
@@ -1,13 +1,15 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<!-- maintainer-needed -->
-<longdescription>A lightweight HTTP/SSL proxy</longdescription>
-<use>
-	<flag name="filter-proxy">Enable filtering of domains/URLS</flag>
-	<flag name="reverse-proxy">Enable reverse proxying</flag>
-	<flag name="transparent-proxy">Enable transparent proxying</flag>
-	<flag name="upstream-proxy">Enable upstream proxying</flag>
-	<flag name="xtinyproxy-header">Include the X-Tinyproxy header</flag>
-</use>
+	<maintainer type="person">
+		<email>bkohler@gentoo.org</email>
+	</maintainer>
+	<longdescription>A lightweight HTTP/SSL proxy</longdescription>
+	<use>
+		<flag name="filter-proxy">Enable filtering of domains/URLS</flag>
+		<flag name="reverse-proxy">Enable reverse proxying</flag>
+		<flag name="transparent-proxy">Enable transparent proxying</flag>
+		<flag name="upstream-proxy">Enable upstream proxying</flag>
+		<flag name="xtinyproxy-header">Include the X-Tinyproxy header</flag>
+	</use>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2018-10-09 13:21 Ben Kohler
  0 siblings, 0 replies; 44+ messages in thread
From: Ben Kohler @ 2018-10-09 13:21 UTC (permalink / raw
  To: gentoo-commits

commit:     8b8fffd8d4865ce1ee80e1454958f91fb5d6a6ad
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Tue Oct  9 13:21:15 2018 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Tue Oct  9 13:21:15 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b8fffd8

net-proxy/tinyproxy: bump to 1.10.0

Bump.  Remove obsolete sed replacements.  Remove obsolete minimal USE
flag.

Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 net-proxy/tinyproxy/Manifest                |  1 +
 net-proxy/tinyproxy/tinyproxy-1.10.0.ebuild | 71 +++++++++++++++++++++++++++++
 2 files changed, 72 insertions(+)

diff --git a/net-proxy/tinyproxy/Manifest b/net-proxy/tinyproxy/Manifest
index 1e6308bec83..646feb115ba 100644
--- a/net-proxy/tinyproxy/Manifest
+++ b/net-proxy/tinyproxy/Manifest
@@ -1,2 +1,3 @@
+DIST tinyproxy-1.10.0.tar.xz 176060 BLAKE2B 58f9b443c731de6b74d689a80ebd422d3b6f51f643546ee144b37fb3262725246f6a5fa1015267a94f192f8715eaf71ffc078ead75e6225a210f58ec28ee8fcf SHA512 8d82598c5f9c89bc672f4632139ac52696d5c7788963de51688a8aeb576c69004f8338fe1e1897bf704a21dfd25ab1effb092003b6afaa9a88c2b5d0608310f5
 DIST tinyproxy-1.8.3.tar.bz2 202430 BLAKE2B 1f85d6eb3a1b2cebe752f15e51869882c58f7dcafb2518511dd8c83c44a010a1cdac93e40e2c1f177a7687b126925258c79ff56011a42addd710b2009d546313 SHA512 69f1262b39d37f44a42621a0d25985632cdb790c8d9b49335a49a68c0f5237b97b111252856cba119895ac066770645560d2d7cd2de31f02103fa55fb4b3290c
 DIST tinyproxy-1.8.4.tar.xz 192300 BLAKE2B bc425ab40d5d5fb49111d74d67e7ac848d77ad4be87039b34543a118df317839aa529c6b9ca52f1eafe933e7d344e09770a76ed0184181591483c6b3f1d79243 SHA512 23398a2c8a6d926b371086ba96032d0fd8dd06d114edf24950b868f53bb6b4235cd0f5d6b9a0131879fcc16bbe6b71142a6855de593a937ef7b0c323b50e0aec

diff --git a/net-proxy/tinyproxy/tinyproxy-1.10.0.ebuild b/net-proxy/tinyproxy/tinyproxy-1.10.0.ebuild
new file mode 100644
index 00000000000..1399b5a328c
--- /dev/null
+++ b/net-proxy/tinyproxy/tinyproxy-1.10.0.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools systemd tmpfiles user
+
+DESCRIPTION="A lightweight HTTP/SSL proxy"
+HOMEPAGE="https://github.com/tinyproxy/tinyproxy/"
+SRC_URI="https://github.com/tinyproxy/tinyproxy/releases/download/${PV}/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
+
+IUSE="test debug +filter-proxy reverse-proxy transparent-proxy 
++upstream-proxy +xtinyproxy-header"
+
+REQUIRED_USE="test? ( xtinyproxy-header )"
+
+pkg_setup() {
+	enewgroup ${PN}
+	enewuser ${PN} "" "" "" ${PN}
+}
+
+src_prepare() {
+	default
+
+	sed -i \
+		-e "s|nobody|${PN}|g" \
+		etc/${PN}.conf.in || die "sed failed"
+
+	eautoreconf
+}
+
+src_configure() {
+	econf \
+		$(use_enable debug) \
+		$(use_enable filter-proxy filter) \
+		$(use_enable reverse-proxy reverse) \
+		$(use_enable transparent-proxy transparent) \
+		$(use_enable upstream-proxy upstream) \
+		$(use_enable xtinyproxy-header xtinyproxy) \
+		--disable-silent-rules \
+		--localstatedir=/var
+}
+
+src_test() {
+	# The make check target does not run the test suite
+	emake test
+}
+
+src_install() {
+	default
+
+	dodoc AUTHORS ChangeLog NEWS README TODO
+
+	diropts -m0775 -o ${PN} -g ${PN}
+	keepdir /var/log/${PN}
+
+	newinitd "${FILESDIR}"/${PN}-1.8.3-r2.initd tinyproxy
+	systemd_dounit "${FILESDIR}"/${PN}.service
+	systemd_dotmpfilesd "${FILESDIR}"/${PN}.tmpfiles.conf
+}
+
+pkg_postinst() {
+	tmpfiles_process ${PN}.tmpfiles.conf
+
+	elog "For filtering domains and URLs, enable filter option in the configuration"
+	elog "file and add them to the filter file (one domain or URL per line)."
+}


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2018-10-09 13:26 Ben Kohler
  0 siblings, 0 replies; 44+ messages in thread
From: Ben Kohler @ 2018-10-09 13:26 UTC (permalink / raw
  To: gentoo-commits

commit:     eae5ea96617080b6bc665a8f9816f8f2c2fd2e7d
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Tue Oct  9 13:26:28 2018 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Tue Oct  9 13:26:44 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eae5ea96

net-proxy/tinyproxy: fix whitespace on 1.10.0

Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 net-proxy/tinyproxy/tinyproxy-1.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.10.0.ebuild b/net-proxy/tinyproxy/tinyproxy-1.10.0.ebuild
index 1399b5a328c..ea8b9f2b083 100644
--- a/net-proxy/tinyproxy/tinyproxy-1.10.0.ebuild
+++ b/net-proxy/tinyproxy/tinyproxy-1.10.0.ebuild
@@ -13,7 +13,7 @@ LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
 
-IUSE="test debug +filter-proxy reverse-proxy transparent-proxy 
+IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
 +upstream-proxy +xtinyproxy-header"
 
 REQUIRED_USE="test? ( xtinyproxy-header )"


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2018-10-09 13:26 Ben Kohler
  0 siblings, 0 replies; 44+ messages in thread
From: Ben Kohler @ 2018-10-09 13:26 UTC (permalink / raw
  To: gentoo-commits

commit:     5472e71e3889101619ffad8f7497d368a6e510d5
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Tue Oct  9 13:25:53 2018 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Tue Oct  9 13:26:42 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5472e71e

net-proxy/tinyproxy: remove obsolete sed calls in 1.8.4 too

Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 net-proxy/tinyproxy/tinyproxy-1.8.4.ebuild | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.8.4.ebuild b/net-proxy/tinyproxy/tinyproxy-1.8.4.ebuild
index 52725873769..6c165306197 100644
--- a/net-proxy/tinyproxy/tinyproxy-1.8.4.ebuild
+++ b/net-proxy/tinyproxy/tinyproxy-1.8.4.ebuild
@@ -32,13 +32,8 @@ src_prepare() {
 
 	sed -i \
 		-e "s|nobody|${PN}|g" \
-		-e 's|/var/run/|/run/|g' \
 		etc/${PN}.conf.in || die "sed failed"
 
-	sed -i \
-		-e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' \
-		configure.ac || die
-
 	eautoreconf
 }
 


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2018-10-09 17:03 Ben Kohler
  0 siblings, 0 replies; 44+ messages in thread
From: Ben Kohler @ 2018-10-09 17:03 UTC (permalink / raw
  To: gentoo-commits

commit:     993c2da303c0e15881093f061c5a0768c37c78c3
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Tue Oct  9 17:03:14 2018 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Tue Oct  9 17:03:31 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=993c2da3

net-proxy/tinyproxy: fix new service filename

Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild b/net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild
index bb01f626907..16669d50efc 100644
--- a/net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild
+++ b/net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild
@@ -59,7 +59,7 @@ src_install() {
 	keepdir /var/log/${PN}
 
 	newinitd "${FILESDIR}"/${PN}-1.10.0.initd tinyproxy
-	systemd_dounit "${FILESDIR}"/${PN}-1.10.0.service
+	systemd_newunit "${FILESDIR}"/${PN}-1.10.0.service tinyproxy.service
 	systemd_dotmpfilesd "${FILESDIR}"/${PN}.tmpfiles.conf
 }
 


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2018-11-27 16:01 Tobias Klausmann
  0 siblings, 0 replies; 44+ messages in thread
From: Tobias Klausmann @ 2018-11-27 16:01 UTC (permalink / raw
  To: gentoo-commits

commit:     55f51b2edc8883d92606e94feb667732d14d5dcb
Author:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 27 16:00:55 2018 +0000
Commit:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Tue Nov 27 16:00:55 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55f51b2e

net-proxy/tinyproxy-1.10.0-r1: alpha stable

Bug: http://bugs.gentoo.org/626628
Signed-off-by: Tobias Klausmann <klausman <AT> gentoo.org>

 net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild b/net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild
index 16669d50efc..e35c66431e1 100644
--- a/net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild
+++ b/net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/tinyproxy/tinyproxy/releases/download/${PV}/${P}.tar
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
+KEYWORDS="alpha ~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
 
 IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
 +upstream-proxy +xtinyproxy-header"


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2018-11-27 21:55 Thomas Deutschmann
  0 siblings, 0 replies; 44+ messages in thread
From: Thomas Deutschmann @ 2018-11-27 21:55 UTC (permalink / raw
  To: gentoo-commits

commit:     7c095b34925a5214b52e5dcff0eea6b3414c76a5
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 27 21:53:53 2018 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Tue Nov 27 21:55:37 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c095b34

net-proxy/tinyproxy: x86 stable (bug #626628)

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>

 net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild b/net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild
index e35c66431e1..52042244594 100644
--- a/net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild
+++ b/net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/tinyproxy/tinyproxy/releases/download/${PV}/${P}.tar
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
+KEYWORDS="alpha ~amd64 ~arm ~ia64 ~ppc ~sparc x86"
 
 IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
 +upstream-proxy +xtinyproxy-header"


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2018-11-28 22:28 Sergei Trofimovich
  0 siblings, 0 replies; 44+ messages in thread
From: Sergei Trofimovich @ 2018-11-28 22:28 UTC (permalink / raw
  To: gentoo-commits

commit:     efee202a5e75e09ef1b92936a67fe3b6eac63ec7
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 28 22:27:06 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Wed Nov 28 22:27:06 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efee202a

net-proxy/tinyproxy: stable 1.10.0-r1 for ia64, bug #626628

Package-Manager: Portage-2.3.52, Repoman-2.3.12
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild b/net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild
index 52042244594..5f44ed4e7a4 100644
--- a/net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild
+++ b/net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/tinyproxy/tinyproxy/releases/download/${PV}/${P}.tar
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~ia64 ~ppc ~sparc x86"
+KEYWORDS="alpha ~amd64 ~arm ia64 ~ppc ~sparc x86"
 
 IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
 +upstream-proxy +xtinyproxy-header"


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2018-11-28 22:33 Sergei Trofimovich
  0 siblings, 0 replies; 44+ messages in thread
From: Sergei Trofimovich @ 2018-11-28 22:33 UTC (permalink / raw
  To: gentoo-commits

commit:     3f6f7f5046706a74598bc4487e57a87a4140d75b
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 28 22:30:30 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Wed Nov 28 22:32:53 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f6f7f50

net-proxy/tinyproxy: stable 1.10.0-r1 for ppc, bug #626628

Package-Manager: Portage-2.3.52, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild b/net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild
index 5f44ed4e7a4..ecb2d43999b 100644
--- a/net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild
+++ b/net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/tinyproxy/tinyproxy/releases/download/${PV}/${P}.tar
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ia64 ~ppc ~sparc x86"
+KEYWORDS="alpha ~amd64 ~arm ia64 ppc ~sparc x86"
 
 IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
 +upstream-proxy +xtinyproxy-header"


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2018-11-29 19:55 Mikle Kolyada
  0 siblings, 0 replies; 44+ messages in thread
From: Mikle Kolyada @ 2018-11-29 19:55 UTC (permalink / raw
  To: gentoo-commits

commit:     3e753d244a6e249de5a2840c5f08ec2a8634d7f1
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 29 19:54:59 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Thu Nov 29 19:54:59 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e753d24

net-proxy/tinyproxy: amd64 stable wrt bug #626628

Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild b/net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild
index ecb2d43999b..3cf14c4a309 100644
--- a/net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild
+++ b/net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/tinyproxy/tinyproxy/releases/download/${PV}/${P}.tar
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ia64 ppc ~sparc x86"
+KEYWORDS="alpha amd64 ~arm ia64 ppc ~sparc x86"
 
 IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
 +upstream-proxy +xtinyproxy-header"


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2018-11-30 17:43 Aaron Bauman
  0 siblings, 0 replies; 44+ messages in thread
From: Aaron Bauman @ 2018-11-30 17:43 UTC (permalink / raw
  To: gentoo-commits

commit:     5a7a14eb5f08a92daa5139d2ef6b4432f71d4203
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 30 17:43:28 2018 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Fri Nov 30 17:43:48 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a7a14eb

net-proxy/tinyproxy: drop vulnerable

Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 net-proxy/tinyproxy/Manifest                  |  2 -
 net-proxy/tinyproxy/tinyproxy-1.8.3-r4.ebuild | 89 ---------------------------
 net-proxy/tinyproxy/tinyproxy-1.8.4.ebuild    | 80 ------------------------
 3 files changed, 171 deletions(-)

diff --git a/net-proxy/tinyproxy/Manifest b/net-proxy/tinyproxy/Manifest
index 646feb115ba..729b3dbd18a 100644
--- a/net-proxy/tinyproxy/Manifest
+++ b/net-proxy/tinyproxy/Manifest
@@ -1,3 +1 @@
 DIST tinyproxy-1.10.0.tar.xz 176060 BLAKE2B 58f9b443c731de6b74d689a80ebd422d3b6f51f643546ee144b37fb3262725246f6a5fa1015267a94f192f8715eaf71ffc078ead75e6225a210f58ec28ee8fcf SHA512 8d82598c5f9c89bc672f4632139ac52696d5c7788963de51688a8aeb576c69004f8338fe1e1897bf704a21dfd25ab1effb092003b6afaa9a88c2b5d0608310f5
-DIST tinyproxy-1.8.3.tar.bz2 202430 BLAKE2B 1f85d6eb3a1b2cebe752f15e51869882c58f7dcafb2518511dd8c83c44a010a1cdac93e40e2c1f177a7687b126925258c79ff56011a42addd710b2009d546313 SHA512 69f1262b39d37f44a42621a0d25985632cdb790c8d9b49335a49a68c0f5237b97b111252856cba119895ac066770645560d2d7cd2de31f02103fa55fb4b3290c
-DIST tinyproxy-1.8.4.tar.xz 192300 BLAKE2B bc425ab40d5d5fb49111d74d67e7ac848d77ad4be87039b34543a118df317839aa529c6b9ca52f1eafe933e7d344e09770a76ed0184181591483c6b3f1d79243 SHA512 23398a2c8a6d926b371086ba96032d0fd8dd06d114edf24950b868f53bb6b4235cd0f5d6b9a0131879fcc16bbe6b71142a6855de593a937ef7b0c323b50e0aec

diff --git a/net-proxy/tinyproxy/tinyproxy-1.8.3-r4.ebuild b/net-proxy/tinyproxy/tinyproxy-1.8.3-r4.ebuild
deleted file mode 100644
index c371c7b1b9e..00000000000
--- a/net-proxy/tinyproxy/tinyproxy-1.8.3-r4.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools systemd user
-
-DESCRIPTION="A lightweight HTTP/SSL proxy"
-HOMEPAGE="http://www.banu.com/tinyproxy/"
-SRC_URI="http://www.banu.com/pub/${PN}/1.8/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 ~arm ia64 ppc sparc x86"
-
-IUSE="test debug +filter-proxy minimal reverse-proxy
-	transparent-proxy +upstream-proxy +xtinyproxy-header"
-
-REQUIRED_USE="test? ( xtinyproxy-header )"
-
-DEPEND="!minimal? ( app-text/asciidoc )"
-
-PATCHES=(
-	"${FILESDIR}"/${PN}-1.8.1-ldflags.patch
-	"${FILESDIR}"/${P}-r2-DoS-Prevention.patch
-
-)
-
-pkg_setup() {
-	enewgroup ${PN}
-	enewuser ${PN} "" "" "" ${PN}
-}
-
-src_prepare() {
-	use minimal && PATCHES+=( "${FILESDIR}/${PN}-1.8.1-minimal.patch" )
-
-	default
-
-	sed -i \
-		-e "s|nobody|${PN}|g" \
-		-e 's|/var/run/|/run/|g' \
-		etc/${PN}.conf.in || die "sed failed"
-
-	sed -i \
-		-e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' \
-		configure.ac || die
-
-	eautoreconf
-}
-
-src_configure() {
-	if use minimal; then
-		ln -s /bin/true "${T}"/a2x
-		export PATH="${T}:${PATH}"
-	fi
-
-	econf \
-		$(use_enable debug) \
-		$(use_enable filter-proxy filter) \
-		$(use_enable reverse-proxy reverse) \
-		$(use_enable transparent-proxy transparent) \
-		$(use_enable upstream-proxy upstream) \
-		$(use_enable xtinyproxy-header xtinyproxy) \
-		--disable-silent-rules \
-		--localstatedir=/var
-}
-
-src_test() {
-	# The make check target does not run the test suite
-	emake test
-}
-
-src_install() {
-	default
-
-	dodoc AUTHORS ChangeLog NEWS README TODO
-
-	diropts -m0775 -o ${PN} -g ${PN}
-	keepdir /var/log/${PN}
-
-	newinitd "${FILESDIR}"/${PN}-1.8.3-r2.initd tinyproxy
-	systemd_dounit "${FILESDIR}"/${PN}.service
-	systemd_dotmpfilesd "${FILESDIR}"/${PN}.tmpfiles.conf
-}
-
-pkg_postinst() {
-	elog "For filtering domains and URLs, enable filter option in the configuration"
-	elog "file and add them to the filter file (one domain or URL per line)."
-}

diff --git a/net-proxy/tinyproxy/tinyproxy-1.8.4.ebuild b/net-proxy/tinyproxy/tinyproxy-1.8.4.ebuild
deleted file mode 100644
index 6c165306197..00000000000
--- a/net-proxy/tinyproxy/tinyproxy-1.8.4.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools systemd tmpfiles user
-
-DESCRIPTION="A lightweight HTTP/SSL proxy"
-HOMEPAGE="https://github.com/tinyproxy/tinyproxy/"
-SRC_URI="https://github.com/tinyproxy/tinyproxy/releases/download/${PV}/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
-
-IUSE="test debug +filter-proxy minimal reverse-proxy
-	transparent-proxy +upstream-proxy +xtinyproxy-header"
-
-REQUIRED_USE="test? ( xtinyproxy-header )"
-
-DEPEND="!minimal? ( app-text/asciidoc )"
-
-pkg_setup() {
-	enewgroup ${PN}
-	enewuser ${PN} "" "" "" ${PN}
-}
-
-src_prepare() {
-	use minimal && PATCHES+=( "${FILESDIR}/${PN}-1.8.1-minimal.patch" )
-
-	default
-
-	sed -i \
-		-e "s|nobody|${PN}|g" \
-		etc/${PN}.conf.in || die "sed failed"
-
-	eautoreconf
-}
-
-src_configure() {
-	if use minimal; then
-		ln -s /bin/true "${T}"/a2x
-		export PATH="${T}:${PATH}"
-	fi
-
-	econf \
-		$(use_enable debug) \
-		$(use_enable filter-proxy filter) \
-		$(use_enable reverse-proxy reverse) \
-		$(use_enable transparent-proxy transparent) \
-		$(use_enable upstream-proxy upstream) \
-		$(use_enable xtinyproxy-header xtinyproxy) \
-		--disable-silent-rules \
-		--localstatedir=/var
-}
-
-src_test() {
-	# The make check target does not run the test suite
-	emake test
-}
-
-src_install() {
-	default
-
-	dodoc AUTHORS ChangeLog NEWS README TODO
-
-	diropts -m0775 -o ${PN} -g ${PN}
-	keepdir /var/log/${PN}
-
-	newinitd "${FILESDIR}"/${PN}-1.8.3-r2.initd tinyproxy
-	systemd_dounit "${FILESDIR}"/${PN}.service
-	systemd_dotmpfilesd "${FILESDIR}"/${PN}.tmpfiles.conf
-}
-
-pkg_postinst() {
-	tmpfiles_process ${PN}.tmpfiles.conf
-
-	elog "For filtering domains and URLs, enable filter option in the configuration"
-	elog "file and add them to the filter file (one domain or URL per line)."
-}


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2020-06-30 17:09 Ben Kohler
  0 siblings, 0 replies; 44+ messages in thread
From: Ben Kohler @ 2020-06-30 17:09 UTC (permalink / raw
  To: gentoo-commits

commit:     8c3503a404b6d2b8d7c062343685216ee029f81e
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 30 16:09:44 2020 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Tue Jun 30 17:09:16 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c3503a4

net-proxy/tinyproxy: fix RedundantLongDescription

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>

 net-proxy/tinyproxy/metadata.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/net-proxy/tinyproxy/metadata.xml b/net-proxy/tinyproxy/metadata.xml
index 228ebe4e18a..914860afef5 100644
--- a/net-proxy/tinyproxy/metadata.xml
+++ b/net-proxy/tinyproxy/metadata.xml
@@ -4,7 +4,6 @@
 	<maintainer type="person">
 		<email>bkohler@gentoo.org</email>
 	</maintainer>
-	<longdescription>A lightweight HTTP/SSL proxy</longdescription>
 	<use>
 		<flag name="filter-proxy">Enable filtering of domains/URLS</flag>
 		<flag name="reverse-proxy">Enable reverse proxying</flag>


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2020-09-06 12:35 Ben Kohler
  0 siblings, 0 replies; 44+ messages in thread
From: Ben Kohler @ 2020-09-06 12:35 UTC (permalink / raw
  To: gentoo-commits

commit:     b31c5ec7471a11cf20404a9ab24f232dac7e91f4
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Sun Sep  6 12:35:25 2020 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Sun Sep  6 12:35:25 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b31c5ec7

net-proxy/tinyproxy: finish up switch to tmpfiles.eclass

Closes: https://bugs.gentoo.org/740624
Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>

 net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild b/net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild
index 1bc212ef128..8bca4032ebe 100644
--- a/net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild
+++ b/net-proxy/tinyproxy/tinyproxy-1.10.0-r1.ebuild
@@ -60,7 +60,7 @@ src_install() {
 
 	newinitd "${FILESDIR}"/${PN}-1.10.0.initd tinyproxy
 	systemd_newunit "${FILESDIR}"/${PN}-1.10.0.service tinyproxy.service
-	systemd_dotmpfilesd "${FILESDIR}"/${PN}.tmpfiles.conf
+	dotmpfiles "${FILESDIR}"/${PN}.tmpfiles.conf
 }
 
 pkg_postinst() {


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2020-09-28 12:28 Ben Kohler
  0 siblings, 0 replies; 44+ messages in thread
From: Ben Kohler @ 2020-09-28 12:28 UTC (permalink / raw
  To: gentoo-commits

commit:     79ab06818600a2bd248f0fe9e5bd764119598465
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 28 12:27:23 2020 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Mon Sep 28 12:27:51 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79ab0681

net-proxy/tinyproxy: bump to 1.11.0_rc1

Finally switch to GLEP81 user/group too

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>

 net-proxy/tinyproxy/Manifest                    |  1 +
 net-proxy/tinyproxy/tinyproxy-1.11.0_rc1.ebuild | 76 +++++++++++++++++++++++++
 2 files changed, 77 insertions(+)

diff --git a/net-proxy/tinyproxy/Manifest b/net-proxy/tinyproxy/Manifest
index 729b3dbd18a..70424c11705 100644
--- a/net-proxy/tinyproxy/Manifest
+++ b/net-proxy/tinyproxy/Manifest
@@ -1 +1,2 @@
 DIST tinyproxy-1.10.0.tar.xz 176060 BLAKE2B 58f9b443c731de6b74d689a80ebd422d3b6f51f643546ee144b37fb3262725246f6a5fa1015267a94f192f8715eaf71ffc078ead75e6225a210f58ec28ee8fcf SHA512 8d82598c5f9c89bc672f4632139ac52696d5c7788963de51688a8aeb576c69004f8338fe1e1897bf704a21dfd25ab1effb092003b6afaa9a88c2b5d0608310f5
+DIST tinyproxy-1.11.0-rc1.tar.xz 176732 BLAKE2B a448c90b17a8d3256aec1dba4307e9bce87ac421a67486e4987afbf22e49041971138f09e98a4a775cc05071b73b4f1b34e652eb2c0992b2a5fa1861a0df26b2 SHA512 e1d05777072d178c66d1f007163bcb4b3a0b1dfdf460881daaf962b5f1c0d0213ec5403bf50c161d811f46c8b50a476cd534f535962ec01b70fbb955471c1af1

diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.0_rc1.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.0_rc1.ebuild
new file mode 100644
index 00000000000..7c0e27a1928
--- /dev/null
+++ b/net-proxy/tinyproxy/tinyproxy-1.11.0_rc1.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools systemd tmpfiles
+
+MY_PV=${PV/_/-}
+
+DESCRIPTION="A lightweight HTTP/SSL proxy"
+HOMEPAGE="https://github.com/tinyproxy/tinyproxy/"
+SRC_URI="https://github.com/tinyproxy/tinyproxy/releases/download/${MY_PV}/${PN}-${MY_PV}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
+
+IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
++upstream-proxy +xtinyproxy-header"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="test? ( xtinyproxy-header )"
+
+S="${WORKDIR}"/${PN}-${MY_PV}
+
+DEPEND="
+	acct-group/tinyproxy
+	acct-user/tinyproxy
+"
+
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+	default
+
+	sed -i \
+		-e "s|nobody|${PN}|g" \
+		etc/${PN}.conf.in || die "sed failed"
+
+	eautoreconf
+}
+
+src_configure() {
+	econf \
+		$(use_enable debug) \
+		$(use_enable filter-proxy filter) \
+		$(use_enable reverse-proxy reverse) \
+		$(use_enable transparent-proxy transparent) \
+		$(use_enable upstream-proxy upstream) \
+		$(use_enable xtinyproxy-header xtinyproxy) \
+		--localstatedir=/var
+}
+
+src_test() {
+	# The make check target does not run the test suite
+	emake test
+}
+
+src_install() {
+	default
+
+	dodoc AUTHORS ChangeLog NEWS README TODO
+
+	diropts -m0775 -o ${PN} -g ${PN}
+	keepdir /var/log/${PN}
+
+	newinitd "${FILESDIR}"/${PN}-1.10.0.initd tinyproxy
+	systemd_newunit "${FILESDIR}"/${PN}-1.10.0.service tinyproxy.service
+	dotmpfiles "${FILESDIR}"/${PN}.tmpfiles.conf
+}
+
+pkg_postinst() {
+	tmpfiles_process ${PN}.tmpfiles.conf
+
+	elog "For filtering domains and URLs, enable filter option in the configuration"
+	elog "file and add them to the filter file (one domain or URL per line)."
+}


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2020-12-29 17:14 Sam James
  0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2020-12-29 17:14 UTC (permalink / raw
  To: gentoo-commits

commit:     3082ce196b5ad39337ca64af36c4f38d67b91d5a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 29 17:14:33 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Dec 29 17:14:33 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3082ce19

net-proxy/tinyproxy: Stabilize 1.11.0_rc1 amd64, #762289

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-proxy/tinyproxy/tinyproxy-1.11.0_rc1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.0_rc1.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.0_rc1.ebuild
index 7c0e27a1928..a6027018a5d 100644
--- a/net-proxy/tinyproxy/tinyproxy-1.11.0_rc1.ebuild
+++ b/net-proxy/tinyproxy/tinyproxy-1.11.0_rc1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/tinyproxy/tinyproxy/releases/download/${MY_PV}/${PN}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
 
 IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
 +upstream-proxy +xtinyproxy-header"


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2021-01-03 11:51 Sergei Trofimovich
  0 siblings, 0 replies; 44+ messages in thread
From: Sergei Trofimovich @ 2021-01-03 11:51 UTC (permalink / raw
  To: gentoo-commits

commit:     4ade55d5a955a3933d675adf49b342864a7ce8ec
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Jan  3 11:43:37 2021 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Jan  3 11:43:37 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ade55d5

net-proxy/tinyproxy: stable 1.11.0_rc1 for ppc

stable wrt bug #762289

Package-Manager: Portage-3.0.12, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 net-proxy/tinyproxy/tinyproxy-1.11.0_rc1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.0_rc1.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.0_rc1.ebuild
index a6027018a5d..2b63726d31d 100644
--- a/net-proxy/tinyproxy/tinyproxy-1.11.0_rc1.ebuild
+++ b/net-proxy/tinyproxy/tinyproxy-1.11.0_rc1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/tinyproxy/tinyproxy/releases/download/${MY_PV}/${PN}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ~sparc ~x86"
 
 IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
 +upstream-proxy +xtinyproxy-header"


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2021-01-05 14:56 Ben Kohler
  0 siblings, 0 replies; 44+ messages in thread
From: Ben Kohler @ 2021-01-05 14:56 UTC (permalink / raw
  To: gentoo-commits

commit:     e2a978f6a0e16b977c19e945d4efaebb902dc3db
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Tue Jan  5 14:55:34 2021 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Tue Jan  5 14:55:34 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2a978f6

net-proxy/tinyproxy: stable on x86

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>

 net-proxy/tinyproxy/tinyproxy-1.11.0_rc1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.0_rc1.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.0_rc1.ebuild
index 2b63726d31d..29cef286983 100644
--- a/net-proxy/tinyproxy/tinyproxy-1.11.0_rc1.ebuild
+++ b/net-proxy/tinyproxy/tinyproxy-1.11.0_rc1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/tinyproxy/tinyproxy/releases/download/${MY_PV}/${PN}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ~sparc x86"
 
 IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
 +upstream-proxy +xtinyproxy-header"


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2021-04-16 14:43 Ben Kohler
  0 siblings, 0 replies; 44+ messages in thread
From: Ben Kohler @ 2021-04-16 14:43 UTC (permalink / raw
  To: gentoo-commits

commit:     1627cc0e6224622dbe28fb53ead6a555200e58da
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 16 14:41:46 2021 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Fri Apr 16 14:42:41 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1627cc0e

net-proxy/tinyproxy: bump to 1.11.0

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>

 net-proxy/tinyproxy/Manifest                |  1 +
 net-proxy/tinyproxy/tinyproxy-1.11.0.ebuild | 76 +++++++++++++++++++++++++++++
 2 files changed, 77 insertions(+)

diff --git a/net-proxy/tinyproxy/Manifest b/net-proxy/tinyproxy/Manifest
index 123fc01f106..dade097120c 100644
--- a/net-proxy/tinyproxy/Manifest
+++ b/net-proxy/tinyproxy/Manifest
@@ -1 +1,2 @@
 DIST tinyproxy-1.11.0-rc1.tar.xz 176732 BLAKE2B a448c90b17a8d3256aec1dba4307e9bce87ac421a67486e4987afbf22e49041971138f09e98a4a775cc05071b73b4f1b34e652eb2c0992b2a5fa1861a0df26b2 SHA512 e1d05777072d178c66d1f007163bcb4b3a0b1dfdf460881daaf962b5f1c0d0213ec5403bf50c161d811f46c8b50a476cd534f535962ec01b70fbb955471c1af1
+DIST tinyproxy-1.11.0.tar.xz 177664 BLAKE2B 6ea74ef0fff22fbc6e04b37519151fda771a7d3e789d94cbd2a77a76dce7b16151cfbad83ac665a5c1fdb7334cd4d26ed6d2bc73f70b3858ffe439b16698fd2e SHA512 c0ff2a90da2352e6021efc87d1293b85f2a7588b2a1ab13bd96d906382eda8188b22b01f9acb2d200fd570bf3ec9484fa370cae6834d1f055c0af1631d22ae9d

diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.0.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.0.ebuild
new file mode 100644
index 00000000000..0f0cb9c579f
--- /dev/null
+++ b/net-proxy/tinyproxy/tinyproxy-1.11.0.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools systemd tmpfiles
+
+MY_PV=${PV/_/-}
+
+DESCRIPTION="A lightweight HTTP/SSL proxy"
+HOMEPAGE="https://github.com/tinyproxy/tinyproxy/"
+SRC_URI="https://github.com/tinyproxy/tinyproxy/releases/download/${MY_PV}/${PN}-${MY_PV}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
+
+IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
++upstream-proxy +xtinyproxy-header"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="test? ( xtinyproxy-header )"
+
+S="${WORKDIR}"/${PN}-${MY_PV}
+
+DEPEND="
+	acct-group/tinyproxy
+	acct-user/tinyproxy
+"
+
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+	default
+
+	sed -i \
+		-e "s|nobody|${PN}|g" \
+		etc/${PN}.conf.in || die "sed failed"
+
+	eautoreconf
+}
+
+src_configure() {
+	econf \
+		$(use_enable debug) \
+		$(use_enable filter-proxy filter) \
+		$(use_enable reverse-proxy reverse) \
+		$(use_enable transparent-proxy transparent) \
+		$(use_enable upstream-proxy upstream) \
+		$(use_enable xtinyproxy-header xtinyproxy) \
+		--localstatedir=/var
+}
+
+src_test() {
+	# The make check target does not run the test suite
+	emake test
+}
+
+src_install() {
+	default
+
+	dodoc AUTHORS ChangeLog NEWS README TODO
+
+	diropts -m0775 -o ${PN} -g ${PN}
+	keepdir /var/log/${PN}
+
+	newinitd "${FILESDIR}"/${PN}-1.10.0.initd tinyproxy
+	systemd_newunit "${FILESDIR}"/${PN}-1.10.0.service tinyproxy.service
+	dotmpfiles "${FILESDIR}"/${PN}.tmpfiles.conf
+}
+
+pkg_postinst() {
+	tmpfiles_process ${PN}.tmpfiles.conf
+
+	elog "For filtering domains and URLs, enable filter option in the configuration"
+	elog "file and add them to the filter file (one domain or URL per line)."
+}


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2021-05-17 23:28 Sam James
  0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2021-05-17 23:28 UTC (permalink / raw
  To: gentoo-commits

commit:     a041f1858dc9da9c02a46bc9f37d5fb39ba9b8ee
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon May 17 23:28:09 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon May 17 23:28:09 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a041f185

net-proxy/tinyproxy: Stabilize 1.11.0 x86, #790704

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-proxy/tinyproxy/tinyproxy-1.11.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.0.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.0.ebuild
index 0f0cb9c579f..a1cd7373bd6 100644
--- a/net-proxy/tinyproxy/tinyproxy-1.11.0.ebuild
+++ b/net-proxy/tinyproxy/tinyproxy-1.11.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/tinyproxy/tinyproxy/releases/download/${MY_PV}/${PN}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~sparc x86"
 
 IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
 +upstream-proxy +xtinyproxy-header"


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2021-05-17 23:28 Sam James
  0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2021-05-17 23:28 UTC (permalink / raw
  To: gentoo-commits

commit:     b70fa183f3835f9904a4bf930b8acf7674edde0a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon May 17 23:28:37 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon May 17 23:28:37 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b70fa183

net-proxy/tinyproxy: Stabilize 1.11.0 amd64, #790704

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-proxy/tinyproxy/tinyproxy-1.11.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.0.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.0.ebuild
index a1cd7373bd6..7a60652678f 100644
--- a/net-proxy/tinyproxy/tinyproxy-1.11.0.ebuild
+++ b/net-proxy/tinyproxy/tinyproxy-1.11.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/tinyproxy/tinyproxy/releases/download/${MY_PV}/${PN}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~sparc x86"
 
 IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
 +upstream-proxy +xtinyproxy-header"


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2021-05-17 23:29 Sam James
  0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2021-05-17 23:29 UTC (permalink / raw
  To: gentoo-commits

commit:     b487256cc401127a00f70b888d2e930d36d91149
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon May 17 23:29:02 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon May 17 23:29:02 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b487256c

net-proxy/tinyproxy: Stabilize 1.11.0 ppc, #790704

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-proxy/tinyproxy/tinyproxy-1.11.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.0.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.0.ebuild
index 7a60652678f..29cef286983 100644
--- a/net-proxy/tinyproxy/tinyproxy-1.11.0.ebuild
+++ b/net-proxy/tinyproxy/tinyproxy-1.11.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/tinyproxy/tinyproxy/releases/download/${MY_PV}/${PN}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ~sparc x86"
 
 IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
 +upstream-proxy +xtinyproxy-header"


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2021-05-18 11:56 Ben Kohler
  0 siblings, 0 replies; 44+ messages in thread
From: Ben Kohler @ 2021-05-18 11:56 UTC (permalink / raw
  To: gentoo-commits

commit:     3d0f48f298cc2d712bdaa1a2cf8bd0137ffc9589
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Tue May 18 11:56:17 2021 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Tue May 18 11:56:44 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d0f48f2

net-proxy/tinyproxy: drop old

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>

 net-proxy/tinyproxy/Manifest                    |  1 -
 net-proxy/tinyproxy/tinyproxy-1.11.0_rc1.ebuild | 76 -------------------------
 2 files changed, 77 deletions(-)

diff --git a/net-proxy/tinyproxy/Manifest b/net-proxy/tinyproxy/Manifest
index dade097120c..f53d028c839 100644
--- a/net-proxy/tinyproxy/Manifest
+++ b/net-proxy/tinyproxy/Manifest
@@ -1,2 +1 @@
-DIST tinyproxy-1.11.0-rc1.tar.xz 176732 BLAKE2B a448c90b17a8d3256aec1dba4307e9bce87ac421a67486e4987afbf22e49041971138f09e98a4a775cc05071b73b4f1b34e652eb2c0992b2a5fa1861a0df26b2 SHA512 e1d05777072d178c66d1f007163bcb4b3a0b1dfdf460881daaf962b5f1c0d0213ec5403bf50c161d811f46c8b50a476cd534f535962ec01b70fbb955471c1af1
 DIST tinyproxy-1.11.0.tar.xz 177664 BLAKE2B 6ea74ef0fff22fbc6e04b37519151fda771a7d3e789d94cbd2a77a76dce7b16151cfbad83ac665a5c1fdb7334cd4d26ed6d2bc73f70b3858ffe439b16698fd2e SHA512 c0ff2a90da2352e6021efc87d1293b85f2a7588b2a1ab13bd96d906382eda8188b22b01f9acb2d200fd570bf3ec9484fa370cae6834d1f055c0af1631d22ae9d

diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.0_rc1.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.0_rc1.ebuild
deleted file mode 100644
index 29cef286983..00000000000
--- a/net-proxy/tinyproxy/tinyproxy-1.11.0_rc1.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools systemd tmpfiles
-
-MY_PV=${PV/_/-}
-
-DESCRIPTION="A lightweight HTTP/SSL proxy"
-HOMEPAGE="https://github.com/tinyproxy/tinyproxy/"
-SRC_URI="https://github.com/tinyproxy/tinyproxy/releases/download/${MY_PV}/${PN}-${MY_PV}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ~sparc x86"
-
-IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
-+upstream-proxy +xtinyproxy-header"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="test? ( xtinyproxy-header )"
-
-S="${WORKDIR}"/${PN}-${MY_PV}
-
-DEPEND="
-	acct-group/tinyproxy
-	acct-user/tinyproxy
-"
-
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-	default
-
-	sed -i \
-		-e "s|nobody|${PN}|g" \
-		etc/${PN}.conf.in || die "sed failed"
-
-	eautoreconf
-}
-
-src_configure() {
-	econf \
-		$(use_enable debug) \
-		$(use_enable filter-proxy filter) \
-		$(use_enable reverse-proxy reverse) \
-		$(use_enable transparent-proxy transparent) \
-		$(use_enable upstream-proxy upstream) \
-		$(use_enable xtinyproxy-header xtinyproxy) \
-		--localstatedir=/var
-}
-
-src_test() {
-	# The make check target does not run the test suite
-	emake test
-}
-
-src_install() {
-	default
-
-	dodoc AUTHORS ChangeLog NEWS README TODO
-
-	diropts -m0775 -o ${PN} -g ${PN}
-	keepdir /var/log/${PN}
-
-	newinitd "${FILESDIR}"/${PN}-1.10.0.initd tinyproxy
-	systemd_newunit "${FILESDIR}"/${PN}-1.10.0.service tinyproxy.service
-	dotmpfiles "${FILESDIR}"/${PN}.tmpfiles.conf
-}
-
-pkg_postinst() {
-	tmpfiles_process ${PN}.tmpfiles.conf
-
-	elog "For filtering domains and URLs, enable filter option in the configuration"
-	elog "file and add them to the filter file (one domain or URL per line)."
-}


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2022-05-30 19:13 Ben Kohler
  0 siblings, 0 replies; 44+ messages in thread
From: Ben Kohler @ 2022-05-30 19:13 UTC (permalink / raw
  To: gentoo-commits

commit:     eba214f3e68e625d78c898310d827beea95a4383
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Mon May 30 19:07:50 2022 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Mon May 30 19:12:46 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eba214f3

net-proxy/tinyproxy: add 1.11.1

Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>

 net-proxy/tinyproxy/Manifest                |  1 +
 net-proxy/tinyproxy/tinyproxy-1.11.1.ebuild | 76 +++++++++++++++++++++++++++++
 2 files changed, 77 insertions(+)

diff --git a/net-proxy/tinyproxy/Manifest b/net-proxy/tinyproxy/Manifest
index f53d028c839d..f461e39056ea 100644
--- a/net-proxy/tinyproxy/Manifest
+++ b/net-proxy/tinyproxy/Manifest
@@ -1 +1,2 @@
 DIST tinyproxy-1.11.0.tar.xz 177664 BLAKE2B 6ea74ef0fff22fbc6e04b37519151fda771a7d3e789d94cbd2a77a76dce7b16151cfbad83ac665a5c1fdb7334cd4d26ed6d2bc73f70b3858ffe439b16698fd2e SHA512 c0ff2a90da2352e6021efc87d1293b85f2a7588b2a1ab13bd96d906382eda8188b22b01f9acb2d200fd570bf3ec9484fa370cae6834d1f055c0af1631d22ae9d
+DIST tinyproxy-1.11.1.tar.xz 182080 BLAKE2B d39fa1986343af60cdfd07c6a049962e646a72874f7058fd082b9758bae3c7bc1a2288103527e0e1054ab098a3a41fc67eb3e08cd160e2bd4bd030e114326a6f SHA512 2e3435bbfece3797c11ccce222eef494ed92e00dd82bea2c40a54e454b7e03c8abc8e09b244f2da7192209c39047369439d08974b79eebc996fb3095230d0374

diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.1.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.1.ebuild
new file mode 100644
index 000000000000..6c987419d72d
--- /dev/null
+++ b/net-proxy/tinyproxy/tinyproxy-1.11.1.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools systemd tmpfiles
+
+MY_PV=${PV/_/-}
+
+DESCRIPTION="A lightweight HTTP/SSL proxy"
+HOMEPAGE="https://github.com/tinyproxy/tinyproxy/"
+SRC_URI="https://github.com/tinyproxy/tinyproxy/releases/download/${MY_PV}/${PN}-${MY_PV}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
+
+IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
++upstream-proxy +xtinyproxy-header"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="test? ( xtinyproxy-header )"
+
+S="${WORKDIR}"/${PN}-${MY_PV}
+
+DEPEND="
+	acct-group/tinyproxy
+	acct-user/tinyproxy
+"
+
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+	default
+
+	sed -i \
+		-e "s|nobody|${PN}|g" \
+		etc/${PN}.conf.in || die "sed failed"
+
+	eautoreconf
+}
+
+src_configure() {
+	econf \
+		$(use_enable debug) \
+		$(use_enable filter-proxy filter) \
+		$(use_enable reverse-proxy reverse) \
+		$(use_enable transparent-proxy transparent) \
+		$(use_enable upstream-proxy upstream) \
+		$(use_enable xtinyproxy-header xtinyproxy) \
+		--localstatedir=/var
+}
+
+src_test() {
+	# The make check target does not run the test suite
+	emake test
+}
+
+src_install() {
+	default
+
+	dodoc AUTHORS ChangeLog NEWS README TODO
+
+	diropts -m0775 -o ${PN} -g ${PN}
+	keepdir /var/log/${PN}
+
+	newinitd "${FILESDIR}"/${PN}-1.10.0.initd tinyproxy
+	systemd_newunit "${FILESDIR}"/${PN}-1.10.0.service tinyproxy.service
+	dotmpfiles "${FILESDIR}"/${PN}.tmpfiles.conf
+}
+
+pkg_postinst() {
+	tmpfiles_process ${PN}.tmpfiles.conf
+
+	elog "For filtering domains and URLs, enable filter option in the configuration"
+	elog "file and add them to the filter file (one domain or URL per line)."
+}


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2022-07-19 20:26 Sam James
  0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2022-07-19 20:26 UTC (permalink / raw
  To: gentoo-commits

commit:     ab8229e817f45c4380138aecd9cc9c63baefa2dc
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 19 20:25:02 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jul 19 20:26:09 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab8229e8

net-proxy/tinyproxy: Stabilize 1.11.1 amd64, #859346

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-proxy/tinyproxy/tinyproxy-1.11.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.1.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.1.ebuild
index 6c987419d72d..c44019e747da 100644
--- a/net-proxy/tinyproxy/tinyproxy-1.11.1.ebuild
+++ b/net-proxy/tinyproxy/tinyproxy-1.11.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/tinyproxy/tinyproxy/releases/download/${MY_PV}/${PN}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
 
 IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
 +upstream-proxy +xtinyproxy-header"


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2022-07-19 20:27 Sam James
  0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2022-07-19 20:27 UTC (permalink / raw
  To: gentoo-commits

commit:     32467cc0a018c2aeea8d671b8ce0bc81adc2de03
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 19 20:27:00 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jul 19 20:27:00 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32467cc0

net-proxy/tinyproxy: Stabilize 1.11.1 x86, #859346

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-proxy/tinyproxy/tinyproxy-1.11.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.1.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.1.ebuild
index c44019e747da..59f686e17436 100644
--- a/net-proxy/tinyproxy/tinyproxy-1.11.1.ebuild
+++ b/net-proxy/tinyproxy/tinyproxy-1.11.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/tinyproxy/tinyproxy/releases/download/${MY_PV}/${PN}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~sparc x86"
 
 IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
 +upstream-proxy +xtinyproxy-header"


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2022-07-20 13:31 Ben Kohler
  0 siblings, 0 replies; 44+ messages in thread
From: Ben Kohler @ 2022-07-20 13:31 UTC (permalink / raw
  To: gentoo-commits

commit:     12cbda9a240a1b88d211d519b12d100f9e195d60
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 20 13:30:53 2022 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Wed Jul 20 13:31:00 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12cbda9a

net-proxy/tinyproxy: stabilize 1.11.1 for ppc

Closes: https://bugs.gentoo.org/859346

Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>

 net-proxy/tinyproxy/tinyproxy-1.11.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.1.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.1.ebuild
index 59f686e17436..fd02282f412c 100644
--- a/net-proxy/tinyproxy/tinyproxy-1.11.1.ebuild
+++ b/net-proxy/tinyproxy/tinyproxy-1.11.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/tinyproxy/tinyproxy/releases/download/${MY_PV}/${PN}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ~sparc x86"
 
 IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
 +upstream-proxy +xtinyproxy-header"


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2022-07-25 14:26 Ben Kohler
  0 siblings, 0 replies; 44+ messages in thread
From: Ben Kohler @ 2022-07-25 14:26 UTC (permalink / raw
  To: gentoo-commits

commit:     7e0cf5a1ba1eccb50702aca1acdfe81734a11efb
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 24 19:18:15 2022 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Mon Jul 25 14:26:24 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e0cf5a1

net-proxy/tinyproxy: drop 1.11.0-r1

Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>

 net-proxy/tinyproxy/Manifest                   |  1 -
 net-proxy/tinyproxy/tinyproxy-1.11.0-r1.ebuild | 76 --------------------------
 2 files changed, 77 deletions(-)

diff --git a/net-proxy/tinyproxy/Manifest b/net-proxy/tinyproxy/Manifest
index f461e39056ea..631360fede1a 100644
--- a/net-proxy/tinyproxy/Manifest
+++ b/net-proxy/tinyproxy/Manifest
@@ -1,2 +1 @@
-DIST tinyproxy-1.11.0.tar.xz 177664 BLAKE2B 6ea74ef0fff22fbc6e04b37519151fda771a7d3e789d94cbd2a77a76dce7b16151cfbad83ac665a5c1fdb7334cd4d26ed6d2bc73f70b3858ffe439b16698fd2e SHA512 c0ff2a90da2352e6021efc87d1293b85f2a7588b2a1ab13bd96d906382eda8188b22b01f9acb2d200fd570bf3ec9484fa370cae6834d1f055c0af1631d22ae9d
 DIST tinyproxy-1.11.1.tar.xz 182080 BLAKE2B d39fa1986343af60cdfd07c6a049962e646a72874f7058fd082b9758bae3c7bc1a2288103527e0e1054ab098a3a41fc67eb3e08cd160e2bd4bd030e114326a6f SHA512 2e3435bbfece3797c11ccce222eef494ed92e00dd82bea2c40a54e454b7e03c8abc8e09b244f2da7192209c39047369439d08974b79eebc996fb3095230d0374

diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.0-r1.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.0-r1.ebuild
deleted file mode 100644
index fd02282f412c..000000000000
--- a/net-proxy/tinyproxy/tinyproxy-1.11.0-r1.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools systemd tmpfiles
-
-MY_PV=${PV/_/-}
-
-DESCRIPTION="A lightweight HTTP/SSL proxy"
-HOMEPAGE="https://github.com/tinyproxy/tinyproxy/"
-SRC_URI="https://github.com/tinyproxy/tinyproxy/releases/download/${MY_PV}/${PN}-${MY_PV}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ~sparc x86"
-
-IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
-+upstream-proxy +xtinyproxy-header"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="test? ( xtinyproxy-header )"
-
-S="${WORKDIR}"/${PN}-${MY_PV}
-
-DEPEND="
-	acct-group/tinyproxy
-	acct-user/tinyproxy
-"
-
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-	default
-
-	sed -i \
-		-e "s|nobody|${PN}|g" \
-		etc/${PN}.conf.in || die "sed failed"
-
-	eautoreconf
-}
-
-src_configure() {
-	econf \
-		$(use_enable debug) \
-		$(use_enable filter-proxy filter) \
-		$(use_enable reverse-proxy reverse) \
-		$(use_enable transparent-proxy transparent) \
-		$(use_enable upstream-proxy upstream) \
-		$(use_enable xtinyproxy-header xtinyproxy) \
-		--localstatedir=/var
-}
-
-src_test() {
-	# The make check target does not run the test suite
-	emake test
-}
-
-src_install() {
-	default
-
-	dodoc AUTHORS ChangeLog NEWS README TODO
-
-	diropts -m0775 -o ${PN} -g ${PN}
-	keepdir /var/log/${PN}
-
-	newinitd "${FILESDIR}"/${PN}-1.10.0.initd tinyproxy
-	systemd_newunit "${FILESDIR}"/${PN}-1.10.0.service tinyproxy.service
-	dotmpfiles "${FILESDIR}"/${PN}.tmpfiles.conf
-}
-
-pkg_postinst() {
-	tmpfiles_process ${PN}.tmpfiles.conf
-
-	elog "For filtering domains and URLs, enable filter option in the configuration"
-	elog "file and add them to the filter file (one domain or URL per line)."
-}


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2022-09-20 12:02 Ben Kohler
  0 siblings, 0 replies; 44+ messages in thread
From: Ben Kohler @ 2022-09-20 12:02 UTC (permalink / raw
  To: gentoo-commits

commit:     0aaa953b3e08b8d320e85c417faf9110bd4a120f
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 20 12:01:51 2022 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Tue Sep 20 12:03:00 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0aaa953b

net-proxy/tinyproxy: add 1.11.1_p20220908

https://bugs.gentoo.org/871924

Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>

 net-proxy/tinyproxy/Manifest                       |  1 +
 .../tinyproxy/tinyproxy-1.11.1_p20220908.ebuild    | 76 ++++++++++++++++++++++
 2 files changed, 77 insertions(+)

diff --git a/net-proxy/tinyproxy/Manifest b/net-proxy/tinyproxy/Manifest
index 631360fede1a..c837f2fdb7be 100644
--- a/net-proxy/tinyproxy/Manifest
+++ b/net-proxy/tinyproxy/Manifest
@@ -1 +1,2 @@
 DIST tinyproxy-1.11.1.tar.xz 182080 BLAKE2B d39fa1986343af60cdfd07c6a049962e646a72874f7058fd082b9758bae3c7bc1a2288103527e0e1054ab098a3a41fc67eb3e08cd160e2bd4bd030e114326a6f SHA512 2e3435bbfece3797c11ccce222eef494ed92e00dd82bea2c40a54e454b7e03c8abc8e09b244f2da7192209c39047369439d08974b79eebc996fb3095230d0374
+DIST tinyproxy-1.11.1_p20220908.tar.gz 112898 BLAKE2B 0f00a103661a5e5891a9f82cb95f1a421a47e68ea6e2144ead01241e6b4bcda8dbd4dce302432fa0432aae1e048b4a788a0ad3bad2dc8691906b872730c31b2b SHA512 3d1c0ad4915e81e775e981b8ba625664128c8d63b2093cc29b3873dc83da4e16646e2a39e32769f463bab1d5af2b699deaa546a705f1269d5a6dfc2c927dafef

diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.1_p20220908.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.1_p20220908.ebuild
new file mode 100644
index 000000000000..98a6c6810fd4
--- /dev/null
+++ b/net-proxy/tinyproxy/tinyproxy-1.11.1_p20220908.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools systemd tmpfiles
+
+COMMIT=3764b8551463b900b5b4e3ec0cd9bb9182191cb7
+
+DESCRIPTION="A lightweight HTTP/SSL proxy"
+HOMEPAGE="https://github.com/tinyproxy/tinyproxy/"
+SRC_URI="https://github.com/tinyproxy/tinyproxy/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
+
+IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
++upstream-proxy +xtinyproxy-header"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="test? ( xtinyproxy-header )"
+
+S="${WORKDIR}"/${PN}-${COMMIT}
+
+DEPEND="
+	acct-group/tinyproxy
+	acct-user/tinyproxy
+"
+
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+	default
+
+	sed -i \
+		-e "s|nobody|${PN}|g" \
+		etc/${PN}.conf.in || die "sed failed"
+
+	eautoreconf
+}
+
+src_configure() {
+	econf \
+		$(use_enable debug) \
+		$(use_enable filter-proxy filter) \
+		$(use_enable reverse-proxy reverse) \
+		$(use_enable transparent-proxy transparent) \
+		$(use_enable upstream-proxy upstream) \
+		$(use_enable xtinyproxy-header xtinyproxy) \
+		--localstatedir=/var
+}
+
+src_test() {
+	# The make check target does not run the test suite
+	emake test
+}
+
+src_install() {
+	default
+
+	dodoc AUTHORS ChangeLog NEWS README TODO
+
+	diropts -m0775 -o ${PN} -g ${PN}
+	keepdir /var/log/${PN}
+
+	newinitd "${FILESDIR}"/${PN}-1.10.0.initd tinyproxy
+	systemd_newunit "${FILESDIR}"/${PN}-1.10.0.service tinyproxy.service
+	dotmpfiles "${FILESDIR}"/${PN}.tmpfiles.conf
+}
+
+pkg_postinst() {
+	tmpfiles_process ${PN}.tmpfiles.conf
+
+	elog "For filtering domains and URLs, enable filter option in the configuration"
+	elog "file and add them to the filter file (one domain or URL per line)."
+}


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2022-09-27  6:05 Jakov Smolić
  0 siblings, 0 replies; 44+ messages in thread
From: Jakov Smolić @ 2022-09-27  6:05 UTC (permalink / raw
  To: gentoo-commits

commit:     912169421a8b917a37f829fad694d4f3f083a66c
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 27 06:04:37 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Sep 27 06:04:37 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91216942

net-proxy/tinyproxy: Stabilize 1.11.1_p20220908 amd64, #873073

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 net-proxy/tinyproxy/tinyproxy-1.11.1_p20220908.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.1_p20220908.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.1_p20220908.ebuild
index 98a6c6810fd4..18245e11e252 100644
--- a/net-proxy/tinyproxy/tinyproxy-1.11.1_p20220908.ebuild
+++ b/net-proxy/tinyproxy/tinyproxy-1.11.1_p20220908.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/tinyproxy/tinyproxy/archive/${COMMIT}.tar.gz -> ${P}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
 
 IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
 +upstream-proxy +xtinyproxy-header"


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2022-09-27  7:08 Agostino Sarubbo
  0 siblings, 0 replies; 44+ messages in thread
From: Agostino Sarubbo @ 2022-09-27  7:08 UTC (permalink / raw
  To: gentoo-commits

commit:     be46616a89816f2f8466492dda132e81604dca52
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 27 07:08:38 2022 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Sep 27 07:08:41 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be46616a

net-proxy/tinyproxy: Stabilize 1.11.1_p20220908 ppc, #873073

Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 net-proxy/tinyproxy/tinyproxy-1.11.1_p20220908.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.1_p20220908.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.1_p20220908.ebuild
index 18245e11e252..b0ee9bca50eb 100644
--- a/net-proxy/tinyproxy/tinyproxy-1.11.1_p20220908.ebuild
+++ b/net-proxy/tinyproxy/tinyproxy-1.11.1_p20220908.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/tinyproxy/tinyproxy/archive/${COMMIT}.tar.gz -> ${P}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ~sparc ~x86"
 
 IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
 +upstream-proxy +xtinyproxy-header"


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2022-09-27  7:10 Agostino Sarubbo
  0 siblings, 0 replies; 44+ messages in thread
From: Agostino Sarubbo @ 2022-09-27  7:10 UTC (permalink / raw
  To: gentoo-commits

commit:     b411433e6d8a673ba2d5836071753bc87a38d1c2
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 27 07:10:28 2022 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Sep 27 07:10:28 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b411433e

net-proxy/tinyproxy: Stabilize 1.11.1_p20220908 x86, #873073

Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 net-proxy/tinyproxy/tinyproxy-1.11.1_p20220908.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.1_p20220908.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.1_p20220908.ebuild
index b0ee9bca50eb..9328a2f39d7c 100644
--- a/net-proxy/tinyproxy/tinyproxy-1.11.1_p20220908.ebuild
+++ b/net-proxy/tinyproxy/tinyproxy-1.11.1_p20220908.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/tinyproxy/tinyproxy/archive/${COMMIT}.tar.gz -> ${P}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ~sparc x86"
 
 IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
 +upstream-proxy +xtinyproxy-header"


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2022-09-27 16:43 Ben Kohler
  0 siblings, 0 replies; 44+ messages in thread
From: Ben Kohler @ 2022-09-27 16:43 UTC (permalink / raw
  To: gentoo-commits

commit:     d8f812cd6694204fb437994cd3a90160db34fc25
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 27 16:42:21 2022 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Tue Sep 27 16:42:28 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8f812cd

net-proxy/tinyproxy: drop 1.11.1

Bug: https://bugs.gentoo.org/871924

Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>

 net-proxy/tinyproxy/Manifest                |  1 -
 net-proxy/tinyproxy/tinyproxy-1.11.1.ebuild | 76 -----------------------------
 2 files changed, 77 deletions(-)

diff --git a/net-proxy/tinyproxy/Manifest b/net-proxy/tinyproxy/Manifest
index c837f2fdb7be..ffc77e758748 100644
--- a/net-proxy/tinyproxy/Manifest
+++ b/net-proxy/tinyproxy/Manifest
@@ -1,2 +1 @@
-DIST tinyproxy-1.11.1.tar.xz 182080 BLAKE2B d39fa1986343af60cdfd07c6a049962e646a72874f7058fd082b9758bae3c7bc1a2288103527e0e1054ab098a3a41fc67eb3e08cd160e2bd4bd030e114326a6f SHA512 2e3435bbfece3797c11ccce222eef494ed92e00dd82bea2c40a54e454b7e03c8abc8e09b244f2da7192209c39047369439d08974b79eebc996fb3095230d0374
 DIST tinyproxy-1.11.1_p20220908.tar.gz 112898 BLAKE2B 0f00a103661a5e5891a9f82cb95f1a421a47e68ea6e2144ead01241e6b4bcda8dbd4dce302432fa0432aae1e048b4a788a0ad3bad2dc8691906b872730c31b2b SHA512 3d1c0ad4915e81e775e981b8ba625664128c8d63b2093cc29b3873dc83da4e16646e2a39e32769f463bab1d5af2b699deaa546a705f1269d5a6dfc2c927dafef

diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.1.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.1.ebuild
deleted file mode 100644
index fd02282f412c..000000000000
--- a/net-proxy/tinyproxy/tinyproxy-1.11.1.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools systemd tmpfiles
-
-MY_PV=${PV/_/-}
-
-DESCRIPTION="A lightweight HTTP/SSL proxy"
-HOMEPAGE="https://github.com/tinyproxy/tinyproxy/"
-SRC_URI="https://github.com/tinyproxy/tinyproxy/releases/download/${MY_PV}/${PN}-${MY_PV}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ~sparc x86"
-
-IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
-+upstream-proxy +xtinyproxy-header"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="test? ( xtinyproxy-header )"
-
-S="${WORKDIR}"/${PN}-${MY_PV}
-
-DEPEND="
-	acct-group/tinyproxy
-	acct-user/tinyproxy
-"
-
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-	default
-
-	sed -i \
-		-e "s|nobody|${PN}|g" \
-		etc/${PN}.conf.in || die "sed failed"
-
-	eautoreconf
-}
-
-src_configure() {
-	econf \
-		$(use_enable debug) \
-		$(use_enable filter-proxy filter) \
-		$(use_enable reverse-proxy reverse) \
-		$(use_enable transparent-proxy transparent) \
-		$(use_enable upstream-proxy upstream) \
-		$(use_enable xtinyproxy-header xtinyproxy) \
-		--localstatedir=/var
-}
-
-src_test() {
-	# The make check target does not run the test suite
-	emake test
-}
-
-src_install() {
-	default
-
-	dodoc AUTHORS ChangeLog NEWS README TODO
-
-	diropts -m0775 -o ${PN} -g ${PN}
-	keepdir /var/log/${PN}
-
-	newinitd "${FILESDIR}"/${PN}-1.10.0.initd tinyproxy
-	systemd_newunit "${FILESDIR}"/${PN}-1.10.0.service tinyproxy.service
-	dotmpfiles "${FILESDIR}"/${PN}.tmpfiles.conf
-}
-
-pkg_postinst() {
-	tmpfiles_process ${PN}.tmpfiles.conf
-
-	elog "For filtering domains and URLs, enable filter option in the configuration"
-	elog "file and add them to the filter file (one domain or URL per line)."
-}


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2023-01-10 16:11 Ben Kohler
  0 siblings, 0 replies; 44+ messages in thread
From: Ben Kohler @ 2023-01-10 16:11 UTC (permalink / raw
  To: gentoo-commits

commit:     464a33a4c0f30ef42dd7d063f52bea7b18ed7ae0
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 10 16:11:24 2023 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Tue Jan 10 16:11:24 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=464a33a4

net-proxy/tinyproxy: add github upstream metadata

Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>

 net-proxy/tinyproxy/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/net-proxy/tinyproxy/metadata.xml b/net-proxy/tinyproxy/metadata.xml
index d256004cbd7c..3ab60c74daaf 100644
--- a/net-proxy/tinyproxy/metadata.xml
+++ b/net-proxy/tinyproxy/metadata.xml
@@ -11,4 +11,7 @@
 		<flag name="upstream-proxy">Enable upstream proxying</flag>
 		<flag name="xtinyproxy-header">Include the X-Tinyproxy header</flag>
 	</use>
+	<upstream>
+		<remote-id type="github">tinyproxy/tinyproxy</remote-id>
+	</upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2023-02-22 17:13 Ben Kohler
  0 siblings, 0 replies; 44+ messages in thread
From: Ben Kohler @ 2023-02-22 17:13 UTC (permalink / raw
  To: gentoo-commits

commit:     822e5d2252f2402c3b3b89fd924c83bb9f09f083
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 22 17:11:47 2023 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Wed Feb 22 17:12:53 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=822e5d22

net-proxy/tinyproxy: new snapshot plus _FORTIFY_SOURCE fix

Closes: https://bugs.gentoo.org/895872

Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>

 net-proxy/tinyproxy/Manifest                       |  1 +
 .../tinyproxy/tinyproxy-1.11.1_p20230201.ebuild    | 78 ++++++++++++++++++++++
 2 files changed, 79 insertions(+)

diff --git a/net-proxy/tinyproxy/Manifest b/net-proxy/tinyproxy/Manifest
index ffc77e758748..2560c805b71f 100644
--- a/net-proxy/tinyproxy/Manifest
+++ b/net-proxy/tinyproxy/Manifest
@@ -1 +1,2 @@
 DIST tinyproxy-1.11.1_p20220908.tar.gz 112898 BLAKE2B 0f00a103661a5e5891a9f82cb95f1a421a47e68ea6e2144ead01241e6b4bcda8dbd4dce302432fa0432aae1e048b4a788a0ad3bad2dc8691906b872730c31b2b SHA512 3d1c0ad4915e81e775e981b8ba625664128c8d63b2093cc29b3873dc83da4e16646e2a39e32769f463bab1d5af2b699deaa546a705f1269d5a6dfc2c927dafef
+DIST tinyproxy-31339cb1615765f2fbb4ec7779400535bad6da46.tar.gz 112886 BLAKE2B 82af9f671b31c9be46624400d726e428837763ab763942c335df1aa63499e33c17384b55ea2f68790cd3b8b1e4eff3b61b40f25e1d55506ce0f0694c7cddaddb SHA512 638ae0731aa2d9f498643aa883871f7b3978c68ee5098fcbeb234234e5432d1a833c33fb0cc1944504369bdf975baa0bd6166664c340825b9b55664d8afdf94c

diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.1_p20230201.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.1_p20230201.ebuild
new file mode 100644
index 000000000000..7af955c819a2
--- /dev/null
+++ b/net-proxy/tinyproxy/tinyproxy-1.11.1_p20230201.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools systemd tmpfiles
+
+COMMIT=31339cb1615765f2fbb4ec7779400535bad6da46
+
+DESCRIPTION="A lightweight HTTP/SSL proxy"
+HOMEPAGE="https://github.com/tinyproxy/tinyproxy/"
+SRC_URI="https://github.com/tinyproxy/tinyproxy/archive/${COMMIT}.tar.gz -> ${PN}-${COMMIT}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
+
+IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
++upstream-proxy +xtinyproxy-header"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="test? ( xtinyproxy-header )"
+
+S="${WORKDIR}"/${PN}-${COMMIT}
+
+DEPEND="
+	acct-group/tinyproxy
+	acct-user/tinyproxy
+"
+
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+	default
+
+	sed -i \
+		-e "s|nobody|${PN}|g" \
+		etc/${PN}.conf.in || die "sed failed"
+
+	sed -i -e "s# -Wp,-D_FORTIFY_SOURCE=2##" configure.ac || die "sed failed"
+
+	eautoreconf
+}
+
+src_configure() {
+	econf \
+		$(use_enable debug) \
+		$(use_enable filter-proxy filter) \
+		$(use_enable reverse-proxy reverse) \
+		$(use_enable transparent-proxy transparent) \
+		$(use_enable upstream-proxy upstream) \
+		$(use_enable xtinyproxy-header xtinyproxy) \
+		--localstatedir=/var
+}
+
+src_test() {
+	# The make check target does not run the test suite
+	emake test
+}
+
+src_install() {
+	default
+
+	dodoc AUTHORS ChangeLog NEWS README TODO
+
+	diropts -m0775 -o ${PN} -g ${PN}
+	keepdir /var/log/${PN}
+
+	newinitd "${FILESDIR}"/${PN}-1.10.0.initd tinyproxy
+	systemd_newunit "${FILESDIR}"/${PN}-1.10.0.service tinyproxy.service
+	dotmpfiles "${FILESDIR}"/${PN}.tmpfiles.conf
+}
+
+pkg_postinst() {
+	tmpfiles_process ${PN}.tmpfiles.conf
+
+	elog "For filtering domains and URLs, enable filter option in the configuration"
+	elog "file and add them to the filter file (one domain or URL per line)."
+}


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2023-03-30 15:34 Arthur Zamarin
  0 siblings, 0 replies; 44+ messages in thread
From: Arthur Zamarin @ 2023-03-30 15:34 UTC (permalink / raw
  To: gentoo-commits

commit:     53c53d7d73a2766849b12e68c51fbaa833c02294
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 30 15:34:32 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 30 15:34:32 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53c53d7d

net-proxy/tinyproxy: Stabilize 1.11.1_p20230201 ppc, #903582

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-proxy/tinyproxy/tinyproxy-1.11.1_p20230201.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.1_p20230201.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.1_p20230201.ebuild
index 7af955c819a2..e22dc2374da7 100644
--- a/net-proxy/tinyproxy/tinyproxy-1.11.1_p20230201.ebuild
+++ b/net-proxy/tinyproxy/tinyproxy-1.11.1_p20230201.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/tinyproxy/tinyproxy/archive/${COMMIT}.tar.gz -> ${PN
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ppc ~sparc ~x86"
 
 IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
 +upstream-proxy +xtinyproxy-header"


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2023-03-30 16:18 Arthur Zamarin
  0 siblings, 0 replies; 44+ messages in thread
From: Arthur Zamarin @ 2023-03-30 16:18 UTC (permalink / raw
  To: gentoo-commits

commit:     ec276a6aede88cbffa1be023bf2d86cc628ef76c
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 30 16:18:47 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 30 16:18:47 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec276a6a

net-proxy/tinyproxy: Stabilize 1.11.1_p20230201 amd64, #903582

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-proxy/tinyproxy/tinyproxy-1.11.1_p20230201.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.1_p20230201.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.1_p20230201.ebuild
index e22dc2374da7..ab33ab0964f5 100644
--- a/net-proxy/tinyproxy/tinyproxy-1.11.1_p20230201.ebuild
+++ b/net-proxy/tinyproxy/tinyproxy-1.11.1_p20230201.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/tinyproxy/tinyproxy/archive/${COMMIT}.tar.gz -> ${PN
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ~sparc ~x86"
 
 IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
 +upstream-proxy +xtinyproxy-header"


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2023-03-30 16:38 Sam James
  0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2023-03-30 16:38 UTC (permalink / raw
  To: gentoo-commits

commit:     bc384d2230a1d910af5613a19b0094ff5fb8c561
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 30 16:38:24 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 30 16:38:32 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc384d22

net-proxy/tinyproxy: Stabilize 1.11.1_p20230201 x86, #903582

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-proxy/tinyproxy/tinyproxy-1.11.1_p20230201.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.1_p20230201.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.1_p20230201.ebuild
index ab33ab0964f5..5a8bcbd50069 100644
--- a/net-proxy/tinyproxy/tinyproxy-1.11.1_p20230201.ebuild
+++ b/net-proxy/tinyproxy/tinyproxy-1.11.1_p20230201.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/tinyproxy/tinyproxy/archive/${COMMIT}.tar.gz -> ${PN
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ~sparc x86"
 
 IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
 +upstream-proxy +xtinyproxy-header"


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2023-03-30 18:05 Ben Kohler
  0 siblings, 0 replies; 44+ messages in thread
From: Ben Kohler @ 2023-03-30 18:05 UTC (permalink / raw
  To: gentoo-commits

commit:     1b2671ab12f575b34c3aebdc2330a93349adc681
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 30 17:02:24 2023 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Thu Mar 30 18:05:15 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b2671ab

net-proxy/tinyproxy: drop 1.11.1_p20220908

Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>

 net-proxy/tinyproxy/Manifest                       |  1 -
 .../tinyproxy/tinyproxy-1.11.1_p20220908.ebuild    | 76 ----------------------
 2 files changed, 77 deletions(-)

diff --git a/net-proxy/tinyproxy/Manifest b/net-proxy/tinyproxy/Manifest
index 2560c805b71f..6466b36bb81d 100644
--- a/net-proxy/tinyproxy/Manifest
+++ b/net-proxy/tinyproxy/Manifest
@@ -1,2 +1 @@
-DIST tinyproxy-1.11.1_p20220908.tar.gz 112898 BLAKE2B 0f00a103661a5e5891a9f82cb95f1a421a47e68ea6e2144ead01241e6b4bcda8dbd4dce302432fa0432aae1e048b4a788a0ad3bad2dc8691906b872730c31b2b SHA512 3d1c0ad4915e81e775e981b8ba625664128c8d63b2093cc29b3873dc83da4e16646e2a39e32769f463bab1d5af2b699deaa546a705f1269d5a6dfc2c927dafef
 DIST tinyproxy-31339cb1615765f2fbb4ec7779400535bad6da46.tar.gz 112886 BLAKE2B 82af9f671b31c9be46624400d726e428837763ab763942c335df1aa63499e33c17384b55ea2f68790cd3b8b1e4eff3b61b40f25e1d55506ce0f0694c7cddaddb SHA512 638ae0731aa2d9f498643aa883871f7b3978c68ee5098fcbeb234234e5432d1a833c33fb0cc1944504369bdf975baa0bd6166664c340825b9b55664d8afdf94c

diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.1_p20220908.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.1_p20220908.ebuild
deleted file mode 100644
index 9328a2f39d7c..000000000000
--- a/net-proxy/tinyproxy/tinyproxy-1.11.1_p20220908.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools systemd tmpfiles
-
-COMMIT=3764b8551463b900b5b4e3ec0cd9bb9182191cb7
-
-DESCRIPTION="A lightweight HTTP/SSL proxy"
-HOMEPAGE="https://github.com/tinyproxy/tinyproxy/"
-SRC_URI="https://github.com/tinyproxy/tinyproxy/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ~sparc x86"
-
-IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
-+upstream-proxy +xtinyproxy-header"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="test? ( xtinyproxy-header )"
-
-S="${WORKDIR}"/${PN}-${COMMIT}
-
-DEPEND="
-	acct-group/tinyproxy
-	acct-user/tinyproxy
-"
-
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-	default
-
-	sed -i \
-		-e "s|nobody|${PN}|g" \
-		etc/${PN}.conf.in || die "sed failed"
-
-	eautoreconf
-}
-
-src_configure() {
-	econf \
-		$(use_enable debug) \
-		$(use_enable filter-proxy filter) \
-		$(use_enable reverse-proxy reverse) \
-		$(use_enable transparent-proxy transparent) \
-		$(use_enable upstream-proxy upstream) \
-		$(use_enable xtinyproxy-header xtinyproxy) \
-		--localstatedir=/var
-}
-
-src_test() {
-	# The make check target does not run the test suite
-	emake test
-}
-
-src_install() {
-	default
-
-	dodoc AUTHORS ChangeLog NEWS README TODO
-
-	diropts -m0775 -o ${PN} -g ${PN}
-	keepdir /var/log/${PN}
-
-	newinitd "${FILESDIR}"/${PN}-1.10.0.initd tinyproxy
-	systemd_newunit "${FILESDIR}"/${PN}-1.10.0.service tinyproxy.service
-	dotmpfiles "${FILESDIR}"/${PN}.tmpfiles.conf
-}
-
-pkg_postinst() {
-	tmpfiles_process ${PN}.tmpfiles.conf
-
-	elog "For filtering domains and URLs, enable filter option in the configuration"
-	elog "file and add them to the filter file (one domain or URL per line)."
-}


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2024-05-09 11:29 Ben Kohler
  0 siblings, 0 replies; 44+ messages in thread
From: Ben Kohler @ 2024-05-09 11:29 UTC (permalink / raw
  To: gentoo-commits

commit:     39bd59e9508d0c9d0b4b5f09588afc45df6b0b3e
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Thu May  9 10:57:23 2024 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Thu May  9 11:29:43 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39bd59e9

net-proxy/tinyproxy: add 1.11.2

Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>

 net-proxy/tinyproxy/Manifest                |  1 +
 net-proxy/tinyproxy/tinyproxy-1.11.2.ebuild | 74 +++++++++++++++++++++++++++++
 2 files changed, 75 insertions(+)

diff --git a/net-proxy/tinyproxy/Manifest b/net-proxy/tinyproxy/Manifest
index 6466b36bb81d..0cb36d4f8329 100644
--- a/net-proxy/tinyproxy/Manifest
+++ b/net-proxy/tinyproxy/Manifest
@@ -1 +1,2 @@
+DIST tinyproxy-1.11.2.tar.xz 185864 BLAKE2B ae8f1cc0fcfa3f2a6b239ad1f0f34bf21843cbf85613643b221359904e672d5c28c69bcb6b61f0244c5a3e6fd901b0c24488c3b80a0aa1f95b87ff90b175dc62 SHA512 008e43b770f946965d5a3fbad1881859e30b66a3a4a97cf9982e63d81139da7a8f23937601b72f32276166cd170008cafec9231b616fc840f05cae3c1329be35
 DIST tinyproxy-31339cb1615765f2fbb4ec7779400535bad6da46.tar.gz 112886 BLAKE2B 82af9f671b31c9be46624400d726e428837763ab763942c335df1aa63499e33c17384b55ea2f68790cd3b8b1e4eff3b61b40f25e1d55506ce0f0694c7cddaddb SHA512 638ae0731aa2d9f498643aa883871f7b3978c68ee5098fcbeb234234e5432d1a833c33fb0cc1944504369bdf975baa0bd6166664c340825b9b55664d8afdf94c

diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.2.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.2.ebuild
new file mode 100644
index 000000000000..4cbde7982d63
--- /dev/null
+++ b/net-proxy/tinyproxy/tinyproxy-1.11.2.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools systemd tmpfiles
+
+DESCRIPTION="A lightweight HTTP/SSL proxy"
+HOMEPAGE="https://github.com/tinyproxy/tinyproxy/"
+SRC_URI="https://github.com/tinyproxy/tinyproxy/releases/download/${PV}/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
+
+IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
++upstream-proxy +xtinyproxy-header"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="test? ( xtinyproxy-header )"
+
+DEPEND="
+	acct-group/tinyproxy
+	acct-user/tinyproxy
+"
+
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+	default
+
+	sed -i \
+		-e "s|nobody|${PN}|g" \
+		etc/${PN}.conf.in || die "sed failed"
+
+	sed -i -e "s# -Wp,-D_FORTIFY_SOURCE=2##" configure.ac || die "sed failed"
+
+	eautoreconf
+}
+
+src_configure() {
+	econf \
+		$(use_enable debug) \
+		$(use_enable filter-proxy filter) \
+		$(use_enable reverse-proxy reverse) \
+		$(use_enable transparent-proxy transparent) \
+		$(use_enable upstream-proxy upstream) \
+		$(use_enable xtinyproxy-header xtinyproxy) \
+		--localstatedir=/var
+}
+
+src_test() {
+	# The make check target does not run the test suite
+	emake test
+}
+
+src_install() {
+	default
+
+	dodoc AUTHORS README.md
+
+	diropts -m0775 -o ${PN} -g ${PN}
+	keepdir /var/log/${PN}
+
+	newinitd "${FILESDIR}"/${PN}-1.10.0.initd tinyproxy
+	systemd_newunit "${FILESDIR}"/${PN}-1.10.0.service tinyproxy.service
+	dotmpfiles "${FILESDIR}"/${PN}.tmpfiles.conf
+}
+
+pkg_postinst() {
+	tmpfiles_process ${PN}.tmpfiles.conf
+
+	elog "For filtering domains and URLs, enable filter option in the configuration"
+	elog "file and add them to the filter file (one domain or URL per line)."
+}


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2024-07-01 16:58 Arthur Zamarin
  0 siblings, 0 replies; 44+ messages in thread
From: Arthur Zamarin @ 2024-07-01 16:58 UTC (permalink / raw
  To: gentoo-commits

commit:     5ac87953c399a469af896a1917923c52b4b5ca52
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Jul  1 16:58:55 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Jul  1 16:58:55 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ac87953

net-proxy/tinyproxy: Stabilize 1.11.2 ppc, #935287

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-proxy/tinyproxy/tinyproxy-1.11.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.2.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.2.ebuild
index 4cbde7982d63..45964fe4f1b0 100644
--- a/net-proxy/tinyproxy/tinyproxy-1.11.2.ebuild
+++ b/net-proxy/tinyproxy/tinyproxy-1.11.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/tinyproxy/tinyproxy/releases/download/${PV}/${P}.tar
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ppc ~sparc ~x86"
 
 IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
 +upstream-proxy +xtinyproxy-header"


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2024-07-01 17:03 Sam James
  0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2024-07-01 17:03 UTC (permalink / raw
  To: gentoo-commits

commit:     387a3908884ae079c83232a1665dc4858c3185fd
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jul  1 17:03:19 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jul  1 17:03:19 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=387a3908

net-proxy/tinyproxy: Stabilize 1.11.2 amd64, #935287

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-proxy/tinyproxy/tinyproxy-1.11.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.2.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.2.ebuild
index 45964fe4f1b0..4d36800998e3 100644
--- a/net-proxy/tinyproxy/tinyproxy-1.11.2.ebuild
+++ b/net-proxy/tinyproxy/tinyproxy-1.11.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/tinyproxy/tinyproxy/releases/download/${PV}/${P}.tar
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ~sparc ~x86"
 
 IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
 +upstream-proxy +xtinyproxy-header"


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/
@ 2024-07-01 17:03 Sam James
  0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2024-07-01 17:03 UTC (permalink / raw
  To: gentoo-commits

commit:     e92aa4d7a7c6245c80a600044c540d430ebf807f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jul  1 17:03:20 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jul  1 17:03:20 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e92aa4d7

net-proxy/tinyproxy: Stabilize 1.11.2 x86, #935287

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-proxy/tinyproxy/tinyproxy-1.11.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/tinyproxy/tinyproxy-1.11.2.ebuild b/net-proxy/tinyproxy/tinyproxy-1.11.2.ebuild
index 4d36800998e3..124bb5f67074 100644
--- a/net-proxy/tinyproxy/tinyproxy-1.11.2.ebuild
+++ b/net-proxy/tinyproxy/tinyproxy-1.11.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/tinyproxy/tinyproxy/releases/download/${PV}/${P}.tar
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ~sparc x86"
 
 IUSE="test debug +filter-proxy reverse-proxy transparent-proxy
 +upstream-proxy +xtinyproxy-header"


^ permalink raw reply related	[flat|nested] 44+ messages in thread

end of thread, other threads:[~2024-07-01 17:03 UTC | newest]

Thread overview: 44+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-29 17:14 [gentoo-commits] repo/gentoo:master commit in: net-proxy/tinyproxy/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2024-07-01 17:03 Sam James
2024-07-01 17:03 Sam James
2024-07-01 16:58 Arthur Zamarin
2024-05-09 11:29 Ben Kohler
2023-03-30 18:05 Ben Kohler
2023-03-30 16:38 Sam James
2023-03-30 16:18 Arthur Zamarin
2023-03-30 15:34 Arthur Zamarin
2023-02-22 17:13 Ben Kohler
2023-01-10 16:11 Ben Kohler
2022-09-27 16:43 Ben Kohler
2022-09-27  7:10 Agostino Sarubbo
2022-09-27  7:08 Agostino Sarubbo
2022-09-27  6:05 Jakov Smolić
2022-09-20 12:02 Ben Kohler
2022-07-25 14:26 Ben Kohler
2022-07-20 13:31 Ben Kohler
2022-07-19 20:27 Sam James
2022-07-19 20:26 Sam James
2022-05-30 19:13 Ben Kohler
2021-05-18 11:56 Ben Kohler
2021-05-17 23:29 Sam James
2021-05-17 23:28 Sam James
2021-05-17 23:28 Sam James
2021-04-16 14:43 Ben Kohler
2021-01-05 14:56 Ben Kohler
2021-01-03 11:51 Sergei Trofimovich
2020-09-28 12:28 Ben Kohler
2020-09-06 12:35 Ben Kohler
2020-06-30 17:09 Ben Kohler
2018-11-30 17:43 Aaron Bauman
2018-11-29 19:55 Mikle Kolyada
2018-11-28 22:33 Sergei Trofimovich
2018-11-28 22:28 Sergei Trofimovich
2018-11-27 21:55 Thomas Deutschmann
2018-11-27 16:01 Tobias Klausmann
2018-10-09 17:03 Ben Kohler
2018-10-09 13:26 Ben Kohler
2018-10-09 13:26 Ben Kohler
2018-10-09 13:21 Ben Kohler
2018-10-09 13:06 Ben Kohler
2016-05-04  9:35 Lars Wendler
2016-05-03 19:17 Austin English

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox