* [gentoo-commits] repo/gentoo:master commit in: www-servers/sniproxy/
@ 2019-01-31 17:40 Georgy Yakovlev
0 siblings, 0 replies; 6+ messages in thread
From: Georgy Yakovlev @ 2019-01-31 17:40 UTC (permalink / raw
To: gentoo-commits
commit: 18add7aec786a08fd58b15813ba18796f695f807
Author: Pierre-Olivier Mercier <nemunaire <AT> nemunai <DOT> re>
AuthorDate: Mon Dec 10 12:49:53 2018 +0000
Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
CommitDate: Thu Jan 31 17:36:39 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18add7ae
www-server/sniproxy: bump to 0.6.0
Closes: https://bugs.gentoo.org/651928
Closes: https://github.com/gentoo/gentoo/pull/10604
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: Pierre-Olivier Mercier <nemunaire <AT> nemunai.re>
Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
www-servers/sniproxy/Manifest | 1 +
www-servers/sniproxy/sniproxy-0.6.0.ebuild | 82 ++++++++++++++++++++++++++++++
2 files changed, 83 insertions(+)
diff --git a/www-servers/sniproxy/Manifest b/www-servers/sniproxy/Manifest
index 3f149dfd375..14bb5bf4900 100644
--- a/www-servers/sniproxy/Manifest
+++ b/www-servers/sniproxy/Manifest
@@ -1 +1,2 @@
DIST sniproxy-0.5.0.tar.gz 72654 BLAKE2B 11f2a66af0d5a19807178687b2a5044aa0cca18a9586c60a6e15604b90f4c32d16d9ac8d037df2cafe57a2dc3a576e1ff72b8f58b59e6822d2a45520b9c770f4 SHA512 52dbb217193d2b7bf9dea37b13fde395b5c56d0a6627508a245f2807920deb282aae3c1ae7e6b5fa68432990e48998989fd28027b65cb7310f214b29f98e5e5d
+DIST sniproxy-0.6.0.tar.gz 78515 BLAKE2B 1ac8decc793e7b3d73d833bc392b3ef035bd2ba7d515c54ff46de16ee8897c0c5392929d5c7a22a131c1f017897cc6f8e9c50aff8164e4afbdc23155b804b613 SHA512 8a99573673bdd57e528c5781cb166d39c80daed699382b24c3fa18a6011d074a1d9e470fee404d24b4450cf067c9995125910b2941b5216d88d189a1d79ebf73
diff --git a/www-servers/sniproxy/sniproxy-0.6.0.ebuild b/www-servers/sniproxy/sniproxy-0.6.0.ebuild
new file mode 100644
index 00000000000..2c4947ff75a
--- /dev/null
+++ b/www-servers/sniproxy/sniproxy-0.6.0.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools user
+
+if [[ ${PV} == 9999* ]]; then
+ EGIT_REPO_URI="https://github.com/dlundquist/sniproxy.git"
+ EGIT_BRANCH="master"
+ inherit git-r3
+ KEYWORDS=""
+else
+ SRC_URI="https://github.com/dlundquist/sniproxy/archive/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="Proxies incoming HTTP and TLS connections based on the hostname"
+HOMEPAGE="https://github.com/dlundquist/sniproxy"
+
+LICENSE="BSD-2"
+SLOT="0"
+IUSE="+dns +largefile rfc3339 test"
+
+RDEPEND="
+ dev-libs/libev
+ >=dev-libs/libpcre-3
+ dns? ( net-libs/udns )
+"
+BDEPEND="
+ ${RDEPEND}
+ sys-devel/gettext
+ virtual/pkgconfig
+"
+DEPEND="
+ test? ( net-misc/curl )
+"
+
+src_prepare() {
+ default
+ eautoreconf
+
+ sed -i "/user/s/daemon/sniproxy/" debian/sniproxy.conf || die "Unable to replace configuration"
+ sed -i "/create/s/daemon/sniproxy/" debian/logrotate.conf || die "Unable to replace logrotate configuration"
+}
+
+src_configure() {
+ local my_conf=(
+ $(use_enable dns)
+ $(use_enable largefile)
+ $(use_enable rfc3339 rfc3339-timestamps)
+ )
+
+ econf "${my_conf[@]}"
+}
+
+src_install() {
+ default
+
+ newinitd "${FILESDIR}/sniproxy.init" sniproxy
+
+ insinto /etc/sniproxy
+ doins debian/sniproxy.conf
+
+ keepdir /var/log/sniproxy
+
+ insinto /etc/logrotate.d
+ newins debian/logrotate.conf sniproxy
+
+ dodoc ARCHITECTURE.md AUTHORS README.md
+ doman man/sniproxy.8
+ doman man/sniproxy.conf.5
+}
+
+src_test() {
+ emake -j1 check
+}
+
+pkg_postinst() {
+ enewgroup "${PN}"
+ enewuser "${PN}" -1 -1 /var/lib/sniproxy "${PN}"
+}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-servers/sniproxy/
@ 2021-01-05 14:45 David Seifert
0 siblings, 0 replies; 6+ messages in thread
From: David Seifert @ 2021-01-05 14:45 UTC (permalink / raw
To: gentoo-commits
commit: 08c8c2402e80cb15f7e661fe635607624f654b77
Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Tue Jan 5 14:45:47 2021 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Tue Jan 5 14:45:47 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08c8c240
www-servers/sniproxy: Remove old
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: David Seifert <soap <AT> gentoo.org>
www-servers/sniproxy/Manifest | 1 -
www-servers/sniproxy/sniproxy-0.5.0.ebuild | 65 ------------------------------
2 files changed, 66 deletions(-)
diff --git a/www-servers/sniproxy/Manifest b/www-servers/sniproxy/Manifest
index 14bb5bf4900..7c2380a9ee3 100644
--- a/www-servers/sniproxy/Manifest
+++ b/www-servers/sniproxy/Manifest
@@ -1,2 +1 @@
-DIST sniproxy-0.5.0.tar.gz 72654 BLAKE2B 11f2a66af0d5a19807178687b2a5044aa0cca18a9586c60a6e15604b90f4c32d16d9ac8d037df2cafe57a2dc3a576e1ff72b8f58b59e6822d2a45520b9c770f4 SHA512 52dbb217193d2b7bf9dea37b13fde395b5c56d0a6627508a245f2807920deb282aae3c1ae7e6b5fa68432990e48998989fd28027b65cb7310f214b29f98e5e5d
DIST sniproxy-0.6.0.tar.gz 78515 BLAKE2B 1ac8decc793e7b3d73d833bc392b3ef035bd2ba7d515c54ff46de16ee8897c0c5392929d5c7a22a131c1f017897cc6f8e9c50aff8164e4afbdc23155b804b613 SHA512 8a99573673bdd57e528c5781cb166d39c80daed699382b24c3fa18a6011d074a1d9e470fee404d24b4450cf067c9995125910b2941b5216d88d189a1d79ebf73
diff --git a/www-servers/sniproxy/sniproxy-0.5.0.ebuild b/www-servers/sniproxy/sniproxy-0.5.0.ebuild
deleted file mode 100644
index c5b9a45f2ea..00000000000
--- a/www-servers/sniproxy/sniproxy-0.5.0.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools user
-
-if [[ ${PV} == 9999* ]]; then
- EGIT_REPO_URI="https://github.com/dlundquist/sniproxy.git"
- EGIT_BRANCH="master"
- inherit git-r3
- KEYWORDS=""
-else
- SRC_URI="https://github.com/dlundquist/sniproxy/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="Proxies incoming HTTP and TLS connections based on the hostname"
-HOMEPAGE="https://github.com/dlundquist/sniproxy"
-
-LICENSE="BSD-2"
-SLOT="0"
-IUSE="+dns +largefile rfc3339"
-
-RDEPEND="
- dev-libs/libev
- >=dev-libs/libpcre-3
- dns? ( net-libs/udns )
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- default
- eautoreconf
-
- sed -i "/user/s/daemon/sniproxy/" debian/sniproxy.conf || die "Unable to replace configuration"
- sed -i "/create/s/daemon/sniproxy/" debian/logrotate.conf || die "Unable to replace logrotate configuration"
-}
-
-src_install() {
- default
-
- newinitd "${FILESDIR}/sniproxy.init" sniproxy
-
- insinto /etc/sniproxy
- doins debian/sniproxy.conf
-
- keepdir /var/log/sniproxy
-
- insinto /etc/logrotate.d
- newins debian/logrotate.conf sniproxy
-
- dodoc ARCHITECTURE.md AUTHORS README.md
- doman man/sniproxy.8
- doman man/sniproxy.conf.5
-}
-
-src_test() {
- emake -j1 check
-}
-
-pkg_postinst() {
- enewgroup ${PN}
- enewuser ${PN} -1 -1 /var/lib/sniproxy ${PN}
-}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-servers/sniproxy/
@ 2022-08-26 10:46 Sam James
0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2022-08-26 10:46 UTC (permalink / raw
To: gentoo-commits
commit: 7355854922537937129c8db6b8afd297ed2add49
Author: Petr Vaněk <arkamar <AT> atlas <DOT> cz>
AuthorDate: Thu Aug 25 21:41:30 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Aug 26 10:46:33 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73558549
www-servers/sniproxy: use <pkg> tag in metadata.xml
Signed-off-by: Petr Vaněk <arkamar <AT> atlas.cz>
Signed-off-by: Sam James <sam <AT> gentoo.org>
www-servers/sniproxy/metadata.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-servers/sniproxy/metadata.xml b/www-servers/sniproxy/metadata.xml
index dffaa64cc888..a5f57d2612be 100644
--- a/www-servers/sniproxy/metadata.xml
+++ b/www-servers/sniproxy/metadata.xml
@@ -11,7 +11,7 @@
</maintainer>
<use>
<flag name="dns">
- Enable DNS resolver via net-libs/udns
+ Enable DNS resolver via <pkg>net-libs/udns</pkg>
</flag>
<flag name="largefile">
Enable large file support (so we can log more than 2GB)
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-servers/sniproxy/
@ 2023-04-16 6:56 Sam James
0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2023-04-16 6:56 UTC (permalink / raw
To: gentoo-commits
commit: b9191fa2cfc75b93fc39e5cc9693f6bd9fb41b86
Author: Pierre-Olivier Mercier <nemunaire <AT> nemunai <DOT> re>
AuthorDate: Mon Apr 3 07:38:44 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 16 06:47:32 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9191fa2
www-servers/sniproxy: Add missing remote-id in metadata
Signed-off-by: Pierre-Olivier Mercier <nemunaire <AT> nemunai.re>
Closes: https://github.com/gentoo/gentoo/pull/30454
Signed-off-by: Sam James <sam <AT> gentoo.org>
www-servers/sniproxy/metadata.xml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/www-servers/sniproxy/metadata.xml b/www-servers/sniproxy/metadata.xml
index a5f57d2612be..7764676c8f3f 100644
--- a/www-servers/sniproxy/metadata.xml
+++ b/www-servers/sniproxy/metadata.xml
@@ -9,6 +9,9 @@
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
+ <upstream>
+ <remote-id type="github">dlundquist/sniproxy</remote-id>
+ </upstream>
<use>
<flag name="dns">
Enable DNS resolver via <pkg>net-libs/udns</pkg>
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-servers/sniproxy/
@ 2023-04-16 6:56 Sam James
0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2023-04-16 6:56 UTC (permalink / raw
To: gentoo-commits
commit: 4999c5e769737f642df960bdeff4b00a41740b82
Author: Pierre-Olivier Mercier <nemunaire <AT> nemunai <DOT> re>
AuthorDate: Mon Apr 3 07:30:16 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 16 06:47:32 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4999c5e7
www-servers/sniproxy: Bump to 0.6.1
Bug: https://bugs.gentoo.org/903716
Signed-off-by: Pierre-Olivier Mercier <nemunaire <AT> nemunai.re>
Signed-off-by: Sam James <sam <AT> gentoo.org>
www-servers/sniproxy/Manifest | 1 +
www-servers/sniproxy/sniproxy-0.6.1.ebuild | 75 ++++++++++++++++++++++++++++++
2 files changed, 76 insertions(+)
diff --git a/www-servers/sniproxy/Manifest b/www-servers/sniproxy/Manifest
index 7c2380a9ee3f..de16ec378fb9 100644
--- a/www-servers/sniproxy/Manifest
+++ b/www-servers/sniproxy/Manifest
@@ -1 +1,2 @@
DIST sniproxy-0.6.0.tar.gz 78515 BLAKE2B 1ac8decc793e7b3d73d833bc392b3ef035bd2ba7d515c54ff46de16ee8897c0c5392929d5c7a22a131c1f017897cc6f8e9c50aff8164e4afbdc23155b804b613 SHA512 8a99573673bdd57e528c5781cb166d39c80daed699382b24c3fa18a6011d074a1d9e470fee404d24b4450cf067c9995125910b2941b5216d88d189a1d79ebf73
+DIST sniproxy-0.6.1.tar.gz 78939 BLAKE2B dd11d47779dbf876724a8e0951c137343c25e420ca0b34055adbd31abda9ad56e38d1addd3ab0a7d85079fec3a456faba87df9cdf261570d8c1d7cfdf534f852 SHA512 4a20830ee6dfeb33a363c480c4698c263a8deccfcac2071198248147ef40d951a1b551c373b0e1e29f6b6bfcdac350390f8f4c3653ed9d1f1940ed50c96af785
diff --git a/www-servers/sniproxy/sniproxy-0.6.1.ebuild b/www-servers/sniproxy/sniproxy-0.6.1.ebuild
new file mode 100644
index 000000000000..f95fb68f3e20
--- /dev/null
+++ b/www-servers/sniproxy/sniproxy-0.6.1.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+if [[ ${PV} == *9999 ]]; then
+ EGIT_REPO_URI="https://github.com/dlundquist/sniproxy.git"
+ EGIT_BRANCH="master"
+ inherit git-r3
+else
+ SRC_URI="https://github.com/dlundquist/sniproxy/archive/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="Proxies incoming HTTP and TLS connections based on the hostname"
+HOMEPAGE="https://github.com/dlundquist/sniproxy"
+
+LICENSE="BSD-2"
+SLOT="0"
+IUSE="+dns +largefile rfc3339 test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ acct-group/sniproxy
+ acct-user/sniproxy
+ dev-libs/libev
+ >=dev-libs/libpcre-3
+ dns? ( net-libs/udns )"
+DEPEND="${RDEPEND}
+ test? ( net-misc/curl )"
+BDEPEND="
+ sys-devel/gettext
+ virtual/pkgconfig"
+
+src_prepare() {
+ default
+ eautoreconf
+
+ sed -i "/user/s/daemon/sniproxy/" debian/sniproxy.conf || die "Unable to replace configuration"
+ sed -i "/create/s/daemon/sniproxy/" debian/logrotate.conf || die "Unable to replace logrotate configuration"
+}
+
+src_configure() {
+ local my_conf=(
+ $(use_enable dns)
+ $(use_enable largefile)
+ $(use_enable rfc3339 rfc3339-timestamps)
+ )
+
+ econf "${my_conf[@]}"
+}
+
+src_test() {
+ emake -j1 check
+}
+
+src_install() {
+ default
+
+ newinitd "${FILESDIR}/sniproxy.init" sniproxy
+
+ insinto /etc/sniproxy
+ doins debian/sniproxy.conf
+
+ keepdir /var/log/sniproxy
+
+ insinto /etc/logrotate.d
+ newins debian/logrotate.conf sniproxy
+
+ dodoc ARCHITECTURE.md AUTHORS README.md
+ doman man/sniproxy.8
+ doman man/sniproxy.conf.5
+}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-servers/sniproxy/
@ 2024-04-23 10:17 Arthur Zamarin
0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2024-04-23 10:17 UTC (permalink / raw
To: gentoo-commits
commit: 24138044403c3f7a7e53af7dd035b70e36997561
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 23 10:17:02 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Apr 23 10:17:02 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24138044
www-servers/sniproxy: fix compile on musl
Closes: https://bugs.gentoo.org/831460
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
www-servers/sniproxy/sniproxy-0.6.1.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/www-servers/sniproxy/sniproxy-0.6.1.ebuild b/www-servers/sniproxy/sniproxy-0.6.1.ebuild
index f95fb68f3e20..68ab699da316 100644
--- a/www-servers/sniproxy/sniproxy-0.6.1.ebuild
+++ b/www-servers/sniproxy/sniproxy-0.6.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -29,6 +29,7 @@ RDEPEND="
>=dev-libs/libpcre-3
dns? ( net-libs/udns )"
DEPEND="${RDEPEND}
+ elibc_musl? ( sys-libs/queue-standalone )
test? ( net-misc/curl )"
BDEPEND="
sys-devel/gettext
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-04-23 10:17 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-26 10:46 [gentoo-commits] repo/gentoo:master commit in: www-servers/sniproxy/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2024-04-23 10:17 Arthur Zamarin
2023-04-16 6:56 Sam James
2023-04-16 6:56 Sam James
2021-01-05 14:45 David Seifert
2019-01-31 17:40 Georgy Yakovlev
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox