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

commit:     43a78b14d63a70a70d78c90377358066acc3a9c3
Author:     Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Tue May  3 19:13:31 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=43a78b14

net-proxy/wwwoffle: remove old version

Package-Manager: portage-2.2.26

 net-proxy/wwwoffle/wwwoffle-2.9i.ebuild | 107 --------------------------------
 1 file changed, 107 deletions(-)

diff --git a/net-proxy/wwwoffle/wwwoffle-2.9i.ebuild b/net-proxy/wwwoffle/wwwoffle-2.9i.ebuild
deleted file mode 100644
index 18b187a..0000000
--- a/net-proxy/wwwoffle/wwwoffle-2.9i.ebuild
+++ /dev/null
@@ -1,107 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-inherit eutils user
-
-DESCRIPTION="Web caching proxy suitable for non-permanent Internet connections"
-HOMEPAGE="http://www.gedanken.org.uk/software/wwwoffle/"
-SRC_URI="http://www.gedanken.org.uk/software/${PN}/download/${P}.tgz"
-
-KEYWORDS="amd64 ppc ppc64 sparc x86"
-SLOT="0"
-LICENSE="GPL-2"
-IUSE="gnutls ipv6 zlib"
-
-RDEPEND="gnutls? ( net-libs/gnutls )
-	zlib? ( sys-libs/zlib )"
-DEPEND="dev-lang/perl
-	sys-devel/flex
-	${RDEPEND}"
-
-# Unsure whether to depend on >=www-misc/htdig-3.1.6-r4 or not
-
-src_prepare() {
-	epatch "${FILESDIR}"/${PN}-2.9i-define.patch
-	sed -i cache/Makefile.in \
-		-e 's#$(TAR) xpf #$(TAR) --no-same-owner -xpf #' \
-		|| die
-}
-
-src_configure() {
-	econf \
-		$(use_with gnutls) \
-		$(use_with ipv6) \
-		$(use_with zlib)
-}
-
-src_install() {
-	default
-
-	# documentation fix
-	# del empty doc dirs
-	rmdir "${D}/usr/doc/${PN}"/{it,nl,ru} || die
-	dodir /usr/share/doc
-	mv "${D}/usr/doc/${PN}" "${D}/usr/share/doc/${PF}" || die
-	rmdir "${D}/usr/doc" || die
-
-	# install the wwwoffled init script
-	newinitd "${FILESDIR}/${PN}.initd" wwwoffled
-	newinitd "${FILESDIR}/${PN}-online.initd" wwwoffled-online
-	newconfd "${FILESDIR}/${PN}-online.confd" wwwoffled-online
-
-	keepdir /var/spool/wwwoffle/{http,outgoing,monitor,lasttime,lastout,local}
-	for number in 1 2 3 4 5 6 7 8 9; do
-		keepdir "/var/spool/wwwoffle/prevtime${number}" "/var/spool/wwwoffle/prevout${number}"
-	done
-
-	# empty dirs are removed during update
-	keepdir \
-		/var/spool/wwwoffle/search/{mnogosearch/db,htdig/tmp,htdig/db-lasttime,htdig/db,namazu/db}
-
-	touch \
-		"${D}/var/spool/wwwoffle/search/htdig/wwwoffle-htdig.log" \
-		"${D}/var/spool/wwwoffle/search/mnogosearch/wwwoffle-mnogosearch.log" \
-		"${D}/var/spool/wwwoffle/search/namazu/wwwoffle-namazu.log"
-
-	# TODO htdig indexing as part of initscripts
-
-	# robots.txt modification - /var/spool/wwwoffle/html/en
-	# 		- remove Disallow: /index
-	sed -i -e "s|Disallow:.*/index|#Disallow: /index|" "${D}/var/spool/wwwoffle/html/en/robots.txt"
-}
-
-pkg_preinst() {
-	# Add a wwwoffle user
-	enewgroup wwwoffle
-	enewuser wwwoffle -1 -1 /var/spool/wwwoffle wwwoffle
-
-	# Changing the user:group to wwwoffle:woffle
-	fowners -R wwwoffle:wwwoffle /var/spool/wwwoffle /etc/wwwoffle
-	sed -i -e 's/^[# \t]\(run-[gu]id[ \t]*=[ \t]*\)[a-zA-Z0-9]*[ \t]*$/ \1wwwoffle/g' \
-		"${D}/etc/wwwoffle/wwwoffle.conf"
-
-}
-
-pkg_postinst() {
-	# fix permissions for those upgrading
-	for number in 1 2 3 4 5 6 7 8 9;
-	do
-		[ ! -d "${ROOT}/var/spool/wwwoffle/prevtime${number}" ] && \
-			keepdir "${ROOT}/var/spool/wwwoffle/prevtime${number}"
-		[ ! -d "${ROOT}/var/spool/wwwoffle/prevout${number}" ] && \
-			keepdir "${ROOT}/var/spool/wwwoffle/prevout${number}"
-	done
-	chown -R wwwoffle:wwwoffle "${ROOT}/var/spool/wwwoffle" "${ROOT}/etc/wwwoffle"
-
-	[ -f "${T}/stopped" ] && \
-		ewarn "wwwoffled was stopped. /etc/init.d/wwwoffled start to restart AFTER etc-update"
-
-	einfo "wwwoffled should run as an ordinary user now. The run-uid and run-gid should be set"
-	einfo "to \"wwwoffle\" in your /etc/wwwoffle/wwwoffle.conf. Please uncomment this if it hasn't been already"
-
-	einfo "This is for your own security. Otherwise wwwoffle is run as root which is relay bad if"
-	einfo "there is an exploit in this program that allows remote/local users to execute arbitary"
-	einfo "commands as the root user."
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/wwwoffle/
@ 2017-12-28 15:29 Craig Andrews
  0 siblings, 0 replies; 10+ messages in thread
From: Craig Andrews @ 2017-12-28 15:29 UTC (permalink / raw
  To: gentoo-commits

commit:     f3f36f453bf712aaa2bb75fcf2977cb8fc316790
Author:     charIes17 <charles17 <AT> arcor <DOT> de>
AuthorDate: Thu Dec 28 11:58:18 2017 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Thu Dec 28 15:29:12 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3f36f45

net-proxy/wwwoffle: HOMEPAGE and SRC_URI to use https

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 net-proxy/wwwoffle/wwwoffle-2.9i-r1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-proxy/wwwoffle/wwwoffle-2.9i-r1.ebuild b/net-proxy/wwwoffle/wwwoffle-2.9i-r1.ebuild
index 053f7395776..9ad5008d950 100644
--- a/net-proxy/wwwoffle/wwwoffle-2.9i-r1.ebuild
+++ b/net-proxy/wwwoffle/wwwoffle-2.9i-r1.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 inherit eutils user
 
 DESCRIPTION="Web caching proxy suitable for non-permanent Internet connections"
-HOMEPAGE="http://www.gedanken.org.uk/software/wwwoffle/"
-SRC_URI="http://www.gedanken.org.uk/software/${PN}/download/${P}.tgz"
+HOMEPAGE="https://www.gedanken.org.uk/software/wwwoffle/"
+SRC_URI="https://www.gedanken.org.uk/software/${PN}/download/${P}.tgz"
 
 KEYWORDS="amd64 ppc ppc64 sparc x86"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/wwwoffle/
@ 2021-04-17 19:20 Conrad Kostecki
  0 siblings, 0 replies; 10+ messages in thread
From: Conrad Kostecki @ 2021-04-17 19:20 UTC (permalink / raw
  To: gentoo-commits

commit:     3dee948f4fb57a4f6bcc4457bcf9751a7345d4ba
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 17 19:10:50 2021 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Apr 17 19:19:39 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dee948f

net-proxy/wwwoffle: drop old version

Closes: https://bugs.gentoo.org/630920
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 net-proxy/wwwoffle/wwwoffle-2.9i-r1.ebuild | 107 -----------------------------
 1 file changed, 107 deletions(-)

diff --git a/net-proxy/wwwoffle/wwwoffle-2.9i-r1.ebuild b/net-proxy/wwwoffle/wwwoffle-2.9i-r1.ebuild
deleted file mode 100644
index 2ce00ebe8e1..00000000000
--- a/net-proxy/wwwoffle/wwwoffle-2.9i-r1.ebuild
+++ /dev/null
@@ -1,107 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit user
-
-DESCRIPTION="Web caching proxy suitable for non-permanent Internet connections"
-HOMEPAGE="https://www.gedanken.org.uk/software/wwwoffle/"
-SRC_URI="https://www.gedanken.org.uk/software/${PN}/download/${P}.tgz"
-
-KEYWORDS="amd64 ppc ppc64 sparc x86"
-SLOT="0"
-LICENSE="GPL-2"
-IUSE="gnutls ipv6 zlib"
-
-RDEPEND="gnutls? ( net-libs/gnutls )
-	zlib? ( sys-libs/zlib )"
-DEPEND="dev-lang/perl
-	sys-devel/flex
-	${RDEPEND}"
-
-# Unsure whether to depend on >=www-misc/htdig-3.1.6-r4 or not
-
-src_prepare() {
-	eapply "${FILESDIR}"/${PN}-2.9i-define.patch
-	sed -i cache/Makefile.in \
-		-e 's#$(TAR) xpf #$(TAR) --no-same-owner -xpf #' \
-		|| die
-	default
-}
-
-src_configure() {
-	econf \
-		$(use_with gnutls) \
-		$(use_with ipv6) \
-		$(use_with zlib)
-}
-
-src_install() {
-	default
-
-	# documentation fix
-	# del empty doc dirs
-	rmdir "${D}/usr/doc/${PN}"/{it,nl,ru} || die
-	dodir /usr/share/doc
-	mv "${D}/usr/doc/${PN}" "${D}/usr/share/doc/${PF}" || die
-	rmdir "${D}/usr/doc" || die
-
-	# install the wwwoffled init script
-	newinitd "${FILESDIR}/${PN}.initd" wwwoffled
-	newinitd "${FILESDIR}/${PN}-online.initd" wwwoffled-online
-	newconfd "${FILESDIR}/${PN}-online.confd" wwwoffled-online
-
-	keepdir /var/spool/wwwoffle/{http,outgoing,monitor,lasttime,lastout,local}
-	for number in 1 2 3 4 5 6 7 8 9; do
-		keepdir "/var/spool/wwwoffle/prevtime${number}" "/var/spool/wwwoffle/prevout${number}"
-	done
-
-	# empty dirs are removed during update
-	keepdir \
-		/var/spool/wwwoffle/search/{mnogosearch/db,htdig/tmp,htdig/db-lasttime,htdig/db,namazu/db}
-
-	touch \
-		"${D}/var/spool/wwwoffle/search/htdig/wwwoffle-htdig.log" \
-		"${D}/var/spool/wwwoffle/search/mnogosearch/wwwoffle-mnogosearch.log" \
-		"${D}/var/spool/wwwoffle/search/namazu/wwwoffle-namazu.log"
-
-	# TODO htdig indexing as part of initscripts
-
-	# robots.txt modification - /var/spool/wwwoffle/html/en
-	# 		- remove Disallow: /index
-	sed -i -e "s|Disallow:.*/index|#Disallow: /index|" "${D}/var/spool/wwwoffle/html/en/robots.txt"
-}
-
-pkg_preinst() {
-	# Add a wwwoffle user
-	enewgroup wwwoffle
-	enewuser wwwoffle -1 -1 /var/spool/wwwoffle wwwoffle
-
-	# Changing the user:group to wwwoffle:woffle
-	fowners -R wwwoffle:wwwoffle /var/spool/wwwoffle /etc/wwwoffle
-	sed -i -e 's/^[# \t]\(run-[gu]id[ \t]*=[ \t]*\)[a-zA-Z0-9]*[ \t]*$/ \1wwwoffle/g' \
-		"${D}/etc/wwwoffle/wwwoffle.conf"
-
-}
-
-pkg_postinst() {
-	# fix permissions for those upgrading
-	for number in 1 2 3 4 5 6 7 8 9;
-	do
-		[ ! -d "${ROOT}/var/spool/wwwoffle/prevtime${number}" ] && \
-			keepdir "${ROOT}/var/spool/wwwoffle/prevtime${number}"
-		[ ! -d "${ROOT}/var/spool/wwwoffle/prevout${number}" ] && \
-			keepdir "${ROOT}/var/spool/wwwoffle/prevout${number}"
-	done
-	chown -R wwwoffle:wwwoffle "${ROOT}/var/spool/wwwoffle" "${ROOT}/etc/wwwoffle"
-
-	[ -f "${T}/stopped" ] && \
-		ewarn "wwwoffled was stopped. /etc/init.d/wwwoffled start to restart AFTER etc-update"
-
-	einfo "wwwoffled should run as an ordinary user now. The run-uid and run-gid should be set"
-	einfo "to \"wwwoffle\" in your /etc/wwwoffle/wwwoffle.conf. Please uncomment this if it hasn't been already"
-
-	einfo "This is for your own security. Otherwise wwwoffle is run as root which is relay bad if"
-	einfo "there is an exploit in this program that allows remote/local users to execute arbitary"
-	einfo "commands as the root user."
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/wwwoffle/
@ 2021-04-17 19:20 Conrad Kostecki
  0 siblings, 0 replies; 10+ messages in thread
From: Conrad Kostecki @ 2021-04-17 19:20 UTC (permalink / raw
  To: gentoo-commits

commit:     d06d581876942cee676bd2034c82b6c6594ce540
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 17 19:09:34 2021 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Apr 17 19:19:38 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d06d5818

net-proxy/wwwoffle: migrate to glep 81

Closes: https://bugs.gentoo.org/781473
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 net-proxy/wwwoffle/wwwoffle-2.9i-r2.ebuild | 104 +++++++++++++++++++++++++++++
 1 file changed, 104 insertions(+)

diff --git a/net-proxy/wwwoffle/wwwoffle-2.9i-r2.ebuild b/net-proxy/wwwoffle/wwwoffle-2.9i-r2.ebuild
new file mode 100644
index 00000000000..a9ea1c3fbe9
--- /dev/null
+++ b/net-proxy/wwwoffle/wwwoffle-2.9i-r2.ebuild
@@ -0,0 +1,104 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Web caching proxy suitable for non-permanent Internet connections"
+HOMEPAGE="https://www.gedanken.org.uk/software/wwwoffle/"
+SRC_URI="https://www.gedanken.org.uk/software/${PN}/download/${P}.tgz"
+
+KEYWORDS="amd64 ppc ppc64 sparc x86"
+SLOT="0"
+LICENSE="GPL-2"
+IUSE="gnutls ipv6 zlib"
+
+RDEPEND="
+	acct-group/wwwoffle
+	acct-user/wwwoffle
+	gnutls? ( net-libs/gnutls )
+	zlib? ( sys-libs/zlib )
+"
+DEPEND="
+	dev-lang/perl
+	sys-devel/flex
+	${RDEPEND}
+"
+# Unsure whether to depend on >=www-misc/htdig-3.1.6-r4 or not
+
+PATCHES=( "${FILESDIR}"/${PN}-2.9i-define.patch )
+
+src_prepare() {
+	default
+	sed -e 's#$(TAR) xpf #$(TAR) --no-same-owner -xpf #' -i cache/Makefile.in || die
+}
+
+src_configure() {
+	local myeconfargs=(
+		$(use_with gnutls)
+		$(use_with ipv6)
+		$(use_with zlib)
+	)
+
+	econf "${myeconfargs[@]}"
+}
+
+src_install() {
+	default
+
+	# documentation fix
+	# del empty doc dirs
+	rmdir "${D}/usr/doc/${PN}"/{it,nl,ru} || die
+	dodir /usr/share/doc
+	mv "${D}/usr/doc/${PN}" "${D}/usr/share/doc/${PF}" || die
+	rmdir "${D}/usr/doc" || die
+
+	# install the wwwoffled init script
+	newinitd "${FILESDIR}/${PN}.initd" wwwoffled
+	newinitd "${FILESDIR}/${PN}-online.initd" wwwoffled-online
+	newconfd "${FILESDIR}/${PN}-online.confd" wwwoffled-online
+
+	keepdir /var/spool/wwwoffle/{http,outgoing,monitor,lasttime,lastout,local}
+	for number in 1 2 3 4 5 6 7 8 9; do
+		keepdir "/var/spool/wwwoffle/prevtime${number}" "/var/spool/wwwoffle/prevout${number}"
+	done
+
+	# empty dirs are removed during update
+	keepdir /var/spool/wwwoffle/search/{mnogosearch/db,htdig/tmp,htdig/db-lasttime,htdig/db,namazu/db}
+
+	touch "${D}/var/spool/wwwoffle/search/htdig/wwwoffle-htdig.log"
+	touch "${D}/var/spool/wwwoffle/search/mnogosearch/wwwoffle-mnogosearch.log"
+	touch "${D}/var/spool/wwwoffle/search/namazu/wwwoffle-namazu.log"
+
+	# TODO htdig indexing as part of initscripts
+
+	# robots.txt modification - /var/spool/wwwoffle/html/en
+	# - remove Disallow: /index
+	sed -e "s|Disallow:.*/index|#Disallow: /index|" -i "${D}/var/spool/wwwoffle/html/en/robots.txt" || die
+}
+
+pkg_preinst() {
+	# Changing the user:group to wwwoffle:woffle
+	fowners -R wwwoffle:wwwoffle /var/spool/wwwoffle /etc/wwwoffle
+	sed -e 's/^[# \t]\(run-[gu]id[ \t]*=[ \t]*\)[a-zA-Z0-9]*[ \t]*$/ \1wwwoffle/g' -i "${D}/etc/wwwoffle/wwwoffle.conf" || die
+
+}
+
+pkg_postinst() {
+	# fix permissions for those upgrading
+	for number in 1 2 3 4 5 6 7 8 9;
+	do
+		[ ! -d "${ROOT}/var/spool/wwwoffle/prevtime${number}" ] && \
+			keepdir "${ROOT}/var/spool/wwwoffle/prevtime${number}"
+		[ ! -d "${ROOT}/var/spool/wwwoffle/prevout${number}" ] && \
+			keepdir "${ROOT}/var/spool/wwwoffle/prevout${number}"
+	done
+
+	[ -f "${T}/stopped" ] && ewarn "wwwoffled was stopped. /etc/init.d/wwwoffled start to restart AFTER etc-update"
+
+	einfo "wwwoffled should run as an ordinary user now. The run-uid and run-gid should be set"
+	einfo "to \"wwwoffle\" in your /etc/wwwoffle/wwwoffle.conf. Please uncomment this if it hasn't been already"
+
+	einfo "This is for your own security. Otherwise wwwoffle is run as root which is relay bad if"
+	einfo "there is an exploit in this program that allows remote/local users to execute arbitary"
+	einfo "commands as the root user."
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/wwwoffle/
@ 2022-11-03  2:05 Yixun Lan
  0 siblings, 0 replies; 10+ messages in thread
From: Yixun Lan @ 2022-11-03  2:05 UTC (permalink / raw
  To: gentoo-commits

commit:     171e10b0d0664b08b7c010abc5e58fb183b5484b
Author:     Chris Su <chris <AT> lesscrowds <DOT> org>
AuthorDate: Wed Nov  2 13:35:00 2022 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Thu Nov  3 02:05:38 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=171e10b0

net-proxy/wwwoffle: Keyword 2.9i-r2 riscv, #879165

Closes: https://github.com/gentoo/gentoo/pull/28102
Signed-off-by: Chris Su <chris <AT> lesscrowds.org>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 net-proxy/wwwoffle/wwwoffle-2.9i-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-proxy/wwwoffle/wwwoffle-2.9i-r2.ebuild b/net-proxy/wwwoffle/wwwoffle-2.9i-r2.ebuild
index a9ea1c3fbe98..23204157ad61 100644
--- a/net-proxy/wwwoffle/wwwoffle-2.9i-r2.ebuild
+++ b/net-proxy/wwwoffle/wwwoffle-2.9i-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -7,7 +7,7 @@ DESCRIPTION="Web caching proxy suitable for non-permanent Internet connections"
 HOMEPAGE="https://www.gedanken.org.uk/software/wwwoffle/"
 SRC_URI="https://www.gedanken.org.uk/software/${PN}/download/${P}.tgz"
 
-KEYWORDS="amd64 ppc ppc64 sparc x86"
+KEYWORDS="amd64 ppc ppc64 ~riscv sparc x86"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="gnutls ipv6 zlib"


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

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/wwwoffle/
@ 2024-11-17 21:03 Michał Górny
  0 siblings, 0 replies; 10+ messages in thread
From: Michał Górny @ 2024-11-17 21:03 UTC (permalink / raw
  To: gentoo-commits

commit:     e1be7b0e88f41086406aaa084c4b0b8e7b497f16
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 17 21:03:29 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Nov 17 21:03:29 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1be7b0e

net-proxy/wwwoffle: Stabilize 2.9j ppc64, #943692

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 net-proxy/wwwoffle/wwwoffle-2.9j.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/wwwoffle/wwwoffle-2.9j.ebuild b/net-proxy/wwwoffle/wwwoffle-2.9j.ebuild
index 31c6d0fb9c31..3045b40ca6de 100644
--- a/net-proxy/wwwoffle/wwwoffle-2.9j.ebuild
+++ b/net-proxy/wwwoffle/wwwoffle-2.9j.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://www.gedanken.org.uk/software/${PN}/download/${P}.tgz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ppc ppc64 ~riscv ~sparc ~x86"
 IUSE="gnutls ipv6 zlib"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/wwwoffle/
@ 2024-11-17 21:03 Michał Górny
  0 siblings, 0 replies; 10+ messages in thread
From: Michał Górny @ 2024-11-17 21:03 UTC (permalink / raw
  To: gentoo-commits

commit:     56f12ddb947d9fb485c68de53509c0d222f8ce1d
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 17 21:03:28 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Nov 17 21:03:28 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56f12ddb

net-proxy/wwwoffle: Stabilize 2.9j ppc, #943692

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 net-proxy/wwwoffle/wwwoffle-2.9j.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/wwwoffle/wwwoffle-2.9j.ebuild b/net-proxy/wwwoffle/wwwoffle-2.9j.ebuild
index df9f7824e828..31c6d0fb9c31 100644
--- a/net-proxy/wwwoffle/wwwoffle-2.9j.ebuild
+++ b/net-proxy/wwwoffle/wwwoffle-2.9j.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://www.gedanken.org.uk/software/${PN}/download/${P}.tgz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ppc ~ppc64 ~riscv ~sparc ~x86"
 IUSE="gnutls ipv6 zlib"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/wwwoffle/
@ 2024-11-18  1:43 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2024-11-18  1:43 UTC (permalink / raw
  To: gentoo-commits

commit:     a89acbd206076c8e5e6eaf5f90115767d5fa0996
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 18 01:42:41 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Nov 18 01:42:41 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a89acbd2

net-proxy/wwwoffle: Stabilize 2.9j x86, #943692

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

 net-proxy/wwwoffle/wwwoffle-2.9j.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/wwwoffle/wwwoffle-2.9j.ebuild b/net-proxy/wwwoffle/wwwoffle-2.9j.ebuild
index 3045b40ca6de..5fb8fa4ada8f 100644
--- a/net-proxy/wwwoffle/wwwoffle-2.9j.ebuild
+++ b/net-proxy/wwwoffle/wwwoffle-2.9j.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://www.gedanken.org.uk/software/${PN}/download/${P}.tgz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ppc ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ppc ppc64 ~riscv ~sparc x86"
 IUSE="gnutls ipv6 zlib"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/wwwoffle/
@ 2024-11-18 10:28 Arthur Zamarin
  0 siblings, 0 replies; 10+ messages in thread
From: Arthur Zamarin @ 2024-11-18 10:28 UTC (permalink / raw
  To: gentoo-commits

commit:     11abe80e8c16575a15a403126b9aab3973277e26
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 18 10:28:37 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Nov 18 10:28:37 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11abe80e

net-proxy/wwwoffle: Stabilize 2.9j sparc, #943692

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

 net-proxy/wwwoffle/wwwoffle-2.9j.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/wwwoffle/wwwoffle-2.9j.ebuild b/net-proxy/wwwoffle/wwwoffle-2.9j.ebuild
index 198a2650c6ea..64b0c131b852 100644
--- a/net-proxy/wwwoffle/wwwoffle-2.9j.ebuild
+++ b/net-proxy/wwwoffle/wwwoffle-2.9j.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://www.gedanken.org.uk/software/${PN}/download/${P}.tgz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ppc ppc64 ~riscv ~sparc x86"
+KEYWORDS="amd64 ppc ppc64 ~riscv sparc x86"
 IUSE="gnutls ipv6 zlib"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: net-proxy/wwwoffle/
@ 2024-11-18 10:28 Arthur Zamarin
  0 siblings, 0 replies; 10+ messages in thread
From: Arthur Zamarin @ 2024-11-18 10:28 UTC (permalink / raw
  To: gentoo-commits

commit:     32d450f6ccd5154aba4259daa0f5ed62828d7f5f
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 18 10:28:36 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Nov 18 10:28:36 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32d450f6

net-proxy/wwwoffle: Stabilize 2.9j amd64, #943692

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

 net-proxy/wwwoffle/wwwoffle-2.9j.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/wwwoffle/wwwoffle-2.9j.ebuild b/net-proxy/wwwoffle/wwwoffle-2.9j.ebuild
index 5fb8fa4ada8f..198a2650c6ea 100644
--- a/net-proxy/wwwoffle/wwwoffle-2.9j.ebuild
+++ b/net-proxy/wwwoffle/wwwoffle-2.9j.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://www.gedanken.org.uk/software/${PN}/download/${P}.tgz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ppc ppc64 ~riscv ~sparc x86"
+KEYWORDS="amd64 ppc ppc64 ~riscv ~sparc x86"
 IUSE="gnutls ipv6 zlib"
 
 RDEPEND="


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

end of thread, other threads:[~2024-11-18 10:28 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-17 21:03 [gentoo-commits] repo/gentoo:master commit in: net-proxy/wwwoffle/ Michał Górny
  -- strict thread matches above, loose matches on Subject: below --
2024-11-18 10:28 Arthur Zamarin
2024-11-18 10:28 Arthur Zamarin
2024-11-18  1:43 Sam James
2024-11-17 21:03 Michał Górny
2022-11-03  2:05 Yixun Lan
2021-04-17 19:20 Conrad Kostecki
2021-04-17 19:20 Conrad Kostecki
2017-12-28 15:29 Craig Andrews
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