public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-mail/qmail-autoresponder/
@ 2019-02-18 21:00 Brian Evans
  0 siblings, 0 replies; 13+ messages in thread
From: Brian Evans @ 2019-02-18 21:00 UTC (permalink / raw
  To: gentoo-commits

commit:     674c26ca8fd885341bfa3eebf72fa2e6d710b247
Author:     Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 18 21:00:18 2019 +0000
Commit:     Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Mon Feb 18 21:00:18 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=674c26ca

net-mail/qmail-autoresponder: Revbump for EAPI and dependency change

Non-maintainer commit

Bug: https://bugs.gentoo.org/665998
Package-Manager: Portage-2.3.61, Repoman-2.3.12
Signed-off-by: Brian Evans <grknight <AT> gentoo.org>

 ...2.ebuild => qmail-autoresponder-0.97-r3.ebuild} | 23 +++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

diff --git a/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r2.ebuild b/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild
similarity index 68%
rename from net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r2.ebuild
rename to net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild
index 6950af0af69..d27b7bd9ce5 100644
--- a/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r2.ebuild
+++ b/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="2"
+EAPI=7
 
-inherit toolchain-funcs eutils multilib
+inherit toolchain-funcs
 
 DESCRIPTION="Rate-limited autoresponder for qmail"
 HOMEPAGE="http://untroubled.org/qmail-autoresponder/"
@@ -15,7 +15,7 @@ KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86"
 IUSE="mysql"
 
 DEPEND=">=dev-libs/bglibs-1.106
-	mysql? ( virtual/mysql )"
+	mysql? ( dev-db/mysql-connector-c:0= )"
 RDEPEND="
 	${DEPEND}
 	virtual/qmail
@@ -23,14 +23,15 @@ RDEPEND="
 "
 
 src_prepare() {
-	use mysql || epatch	"${FILESDIR}/${PN}-0.97-remove-mysql.h.diff"
+	use mysql || eapply "${FILESDIR}/${PN}-0.97-remove-mysql.h.diff"
+	default
 }
 
 src_configure() {
-	echo "/usr/include/bglibs" > conf-bgincs
-	echo "/usr/$(get_libdir)/bglibs" > conf-bglibs
-	echo "$(tc-getCC) ${CFLAGS}" > conf-cc
-	echo "$(tc-getCC) ${LDFLAGS}" > conf-ld
+	echo "/usr/include/bglibs" > conf-bgincs || die
+	echo "/usr/$(get_libdir)/bglibs" > conf-bglibs || die
+	echo "$(tc-getCC) ${CFLAGS}" > conf-cc || die
+	echo "$(tc-getCC) ${LDFLAGS}" > conf-ld || die
 }
 
 src_compile() {
@@ -42,10 +43,10 @@ src_compile() {
 }
 
 src_install () {
-	dobin qmail-autoresponder || die
+	dobin qmail-autoresponder
 	doman qmail-autoresponder.1
 	if use mysql; then
-		dobin qmail-autoresponder-mysql || die
+		dobin qmail-autoresponder-mysql
 		dodoc schema.mysql
 	fi
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-mail/qmail-autoresponder/
@ 2019-03-09 19:18 Thomas Deutschmann
  0 siblings, 0 replies; 13+ messages in thread
From: Thomas Deutschmann @ 2019-03-09 19:18 UTC (permalink / raw
  To: gentoo-commits

commit:     091d8939f420088695e2660307614716b59bb109
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  9 19:14:33 2019 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sat Mar  9 19:18:33 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=091d8939

net-mail/qmail-autoresponder: x86 stable (bug #679456)

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

 net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild b/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild
index d27b7bd9ce5..4e031b06f80 100644
--- a/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild
+++ b/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://untroubled.org/qmail-autoresponder/archive/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc x86"
 IUSE="mysql"
 
 DEPEND=">=dev-libs/bglibs-1.106


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

* [gentoo-commits] repo/gentoo:master commit in: net-mail/qmail-autoresponder/
@ 2019-03-15 23:08 Mikle Kolyada
  0 siblings, 0 replies; 13+ messages in thread
From: Mikle Kolyada @ 2019-03-15 23:08 UTC (permalink / raw
  To: gentoo-commits

commit:     5859f31011d2e3fb98ed10dbfff694f1502c5d6e
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 15 23:07:54 2019 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Fri Mar 15 23:07:54 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5859f310

net-mail/qmail-autoresponder: amd64 stable wrt bug #679456

Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild b/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild
index 4e031b06f80..7be4b19866a 100644
--- a/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild
+++ b/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://untroubled.org/qmail-autoresponder/archive/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ~mips ~ppc ~sparc x86"
 IUSE="mysql"
 
 DEPEND=">=dev-libs/bglibs-1.106


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

* [gentoo-commits] repo/gentoo:master commit in: net-mail/qmail-autoresponder/
@ 2019-03-16 20:14 Sergei Trofimovich
  0 siblings, 0 replies; 13+ messages in thread
From: Sergei Trofimovich @ 2019-03-16 20:14 UTC (permalink / raw
  To: gentoo-commits

commit:     79e40a982eef86666db5d16681b6715a18043d12
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 16 20:14:27 2019 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sat Mar 16 20:14:35 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79e40a98

net-mail/qmail-autoresponder: stable 0.97-r3 for ppc, bug #679456

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

 net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild b/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild
index 7be4b19866a..6f70922eedd 100644
--- a/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild
+++ b/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://untroubled.org/qmail-autoresponder/archive/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="~alpha amd64 ~hppa ~mips ~ppc ~sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ~mips ppc ~sparc x86"
 IUSE="mysql"
 
 DEPEND=">=dev-libs/bglibs-1.106


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

* [gentoo-commits] repo/gentoo:master commit in: net-mail/qmail-autoresponder/
@ 2019-03-25 22:18 Sergei Trofimovich
  0 siblings, 0 replies; 13+ messages in thread
From: Sergei Trofimovich @ 2019-03-25 22:18 UTC (permalink / raw
  To: gentoo-commits

commit:     f08c07b6af6057ebbf05003e561fa4a54c80562a
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 25 22:18:04 2019 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Mar 25 22:18:04 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f08c07b6

net-mail/qmail-autoresponder: stable 0.97-r3 for hppa, bug #679456

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

 net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild b/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild
index 6f70922eedd..a870147e083 100644
--- a/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild
+++ b/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://untroubled.org/qmail-autoresponder/archive/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="~alpha amd64 ~hppa ~mips ppc ~sparc x86"
+KEYWORDS="~alpha amd64 hppa ~mips ppc ~sparc x86"
 IUSE="mysql"
 
 DEPEND=">=dev-libs/bglibs-1.106


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

* [gentoo-commits] repo/gentoo:master commit in: net-mail/qmail-autoresponder/
@ 2019-05-02 20:54 Mikle Kolyada
  0 siblings, 0 replies; 13+ messages in thread
From: Mikle Kolyada @ 2019-05-02 20:54 UTC (permalink / raw
  To: gentoo-commits

commit:     a0758588a66ec945b2c52728b0a1f1391b314ed0
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Thu May  2 20:51:48 2019 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Thu May  2 20:54:00 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0758588

net-mail/qmail-autoresponder: alpha stable wrt bug #679456

Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="alpha"

 net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild b/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild
index a870147e083..a55799d5484 100644
--- a/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild
+++ b/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://untroubled.org/qmail-autoresponder/archive/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="~alpha amd64 hppa ~mips ppc ~sparc x86"
+KEYWORDS="alpha amd64 hppa ~mips ppc ~sparc x86"
 IUSE="mysql"
 
 DEPEND=">=dev-libs/bglibs-1.106


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

* [gentoo-commits] repo/gentoo:master commit in: net-mail/qmail-autoresponder/
@ 2019-05-02 20:54 Mikle Kolyada
  0 siblings, 0 replies; 13+ messages in thread
From: Mikle Kolyada @ 2019-05-02 20:54 UTC (permalink / raw
  To: gentoo-commits

commit:     f3cd9049df68ec34c137cab49223e22963da0225
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Thu May  2 20:53:00 2019 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Thu May  2 20:54:02 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3cd9049

net-mail/qmail-autoresponder: Drop old

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

 .../qmail-autoresponder-0.97-r1.ebuild             | 57 ----------------------
 1 file changed, 57 deletions(-)

diff --git a/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r1.ebuild b/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r1.ebuild
deleted file mode 100644
index d7c0c1da018..00000000000
--- a/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-inherit toolchain-funcs eutils
-
-DESCRIPTION="Rate-limited autoresponder for qmail"
-HOMEPAGE="http://untroubled.org/qmail-autoresponder/"
-SRC_URI="http://untroubled.org/qmail-autoresponder/archive/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="alpha amd64 hppa ~mips ppc sparc x86"
-IUSE="mysql"
-
-DEPEND=">=dev-libs/bglibs-1.022
-	mysql? ( virtual/mysql )"
-RDEPEND="
-	${DEPEND}
-	virtual/qmail
-	mysql? ( virtual/mysql )
-"
-
-src_prepare() {
-	use mysql || epatch	"${FILESDIR}/${PN}-0.97-remove-mysql.h.diff"
-}
-
-src_configure() {
-	echo "/usr/include/bglibs" > conf-bgincs
-	echo "/usr/lib/bglibs" > conf-bglibs
-	echo "$(tc-getCC) ${CFLAGS}" > conf-cc
-	echo "$(tc-getCC) ${LDFLAGS}" > conf-ld
-}
-
-src_compile() {
-	# fails on parallel builds!
-	make qmail-autoresponder || die "Failed to make qmail-autoresponder"
-	if use mysql; then
-		make qmail-autoresponder-mysql || die "Failed to make qmail-autoresponder-mysql"
-	fi
-}
-
-src_install () {
-	dobin qmail-autoresponder || die
-	doman qmail-autoresponder.1
-	if use mysql; then
-		dobin qmail-autoresponder-mysql || die
-		dodoc schema.mysql
-	fi
-
-	dodoc ANNOUNCEMENT NEWS README TODO ChangeLog procedure.txt
-}
-
-pkg_postinst() {
-	elog "Please see the README file in /usr/share/doc/${PF}/ for per-user configurations."
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-mail/qmail-autoresponder/
@ 2020-04-12 11:02 Sergei Trofimovich
  0 siblings, 0 replies; 13+ messages in thread
From: Sergei Trofimovich @ 2020-04-12 11:02 UTC (permalink / raw
  To: gentoo-commits

commit:     bd24c2c25bc21764d3105c5f591c69ff39bda510
Author:     Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Sun Apr 12 10:44:34 2020 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Apr 12 11:02:42 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd24c2c2

net-mail/qmail-autoresponder: drop to ~hppa

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild b/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild
index a3bfc4346de..64b91b1aebe 100644
--- a/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild
+++ b/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://untroubled.org/qmail-autoresponder/archive/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="~alpha amd64 hppa ~mips ppc ~sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ~mips ppc ~sparc x86"
 IUSE="mysql"
 
 DEPEND=">=dev-libs/bglibs-1.106


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

* [gentoo-commits] repo/gentoo:master commit in: net-mail/qmail-autoresponder/
@ 2023-01-14 22:07 Sam James
  0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2023-01-14 22:07 UTC (permalink / raw
  To: gentoo-commits

commit:     2375ca6e94c072fa00b17b0e081be116757dc0f8
Author:     Marco Scardovi <scardracs-gentoo <AT> proton <DOT> me>
AuthorDate: Sat Jan 14 21:50:01 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 14 22:07:13 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2375ca6e

net-mail/qmail-autoresponder: drop 2.0

Signed-off-by: Marco Scardovi <scardracs-gentoo <AT> proton.me>
Closes: https://github.com/gentoo/gentoo/pull/29108
Signed-off-by: Sam James <sam <AT> gentoo.org>

 .../qmail-autoresponder-2.0.ebuild                 | 45 ----------------------
 1 file changed, 45 deletions(-)

diff --git a/net-mail/qmail-autoresponder/qmail-autoresponder-2.0.ebuild b/net-mail/qmail-autoresponder/qmail-autoresponder-2.0.ebuild
deleted file mode 100644
index 1fdf92e79e0d..000000000000
--- a/net-mail/qmail-autoresponder/qmail-autoresponder-2.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="Rate-limited autoresponder for qmail"
-HOMEPAGE="https://untroubled.org/qmail-autoresponder/"
-SRC_URI="https://untroubled.org/qmail-autoresponder/archive/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2+"
-KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86"
-IUSE="mysql"
-
-DEPEND=">=dev-libs/bglibs-2.04
-	mysql? ( dev-db/mysql-connector-c:0= )"
-RDEPEND="${DEPEND}
-	virtual/qmail
-	mysql? ( virtual/mysql )"
-
-src_configure() {
-	echo "$(tc-getCC) ${CFLAGS}" > conf-cc || die
-	echo "$(tc-getCC) ${LDFLAGS}" > conf-ld || die
-}
-
-src_compile() {
-	emake qmail-autoresponder
-	if use mysql; then
-		emake qmail-autoresponder-mysql
-	fi
-}
-
-src_install() {
-	dobin qmail-autoresponder
-	doman qmail-autoresponder.1
-	if use mysql; then
-		dobin qmail-autoresponder-mysql
-		doman qmail-autoresponder-mysql.1
-		dodoc schema.mysql
-	fi
-
-	dodoc ANNOUNCEMENT NEWS README TODO ChangeLog procedure.txt
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-mail/qmail-autoresponder/
@ 2023-01-14 23:22 Sam James
  0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2023-01-14 23:22 UTC (permalink / raw
  To: gentoo-commits

commit:     348d62cef1a816c61e1959759fd2369e9b8b4f31
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 14 23:22:05 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 14 23:22:05 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=348d62ce

net-mail/qmail-autoresponder: Stabilize 2.0-r1 x86, #828305

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

 net-mail/qmail-autoresponder/qmail-autoresponder-2.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-mail/qmail-autoresponder/qmail-autoresponder-2.0-r1.ebuild b/net-mail/qmail-autoresponder/qmail-autoresponder-2.0-r1.ebuild
index 1580fd65df44..68543911c461 100644
--- a/net-mail/qmail-autoresponder/qmail-autoresponder-2.0-r1.ebuild
+++ b/net-mail/qmail-autoresponder/qmail-autoresponder-2.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://untroubled.org/qmail-autoresponder/archive/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="GPL-2+"
-KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc x86"
 IUSE="mysql"
 
 DEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: net-mail/qmail-autoresponder/
@ 2023-01-14 23:22 Sam James
  0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2023-01-14 23:22 UTC (permalink / raw
  To: gentoo-commits

commit:     50df0f820b8c841a2a279b8e36c7f638bd2ddc35
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 14 23:22:06 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 14 23:22:06 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50df0f82

net-mail/qmail-autoresponder: Stabilize 2.0-r1 amd64, #828305

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

 net-mail/qmail-autoresponder/qmail-autoresponder-2.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-mail/qmail-autoresponder/qmail-autoresponder-2.0-r1.ebuild b/net-mail/qmail-autoresponder/qmail-autoresponder-2.0-r1.ebuild
index 68543911c461..603cc8f6db0b 100644
--- a/net-mail/qmail-autoresponder/qmail-autoresponder-2.0-r1.ebuild
+++ b/net-mail/qmail-autoresponder/qmail-autoresponder-2.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://untroubled.org/qmail-autoresponder/archive/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="GPL-2+"
-KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ~mips ~ppc ~sparc x86"
 IUSE="mysql"
 
 DEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: net-mail/qmail-autoresponder/
@ 2023-06-23 18:07 Matt Turner
  0 siblings, 0 replies; 13+ messages in thread
From: Matt Turner @ 2023-06-23 18:07 UTC (permalink / raw
  To: gentoo-commits

commit:     547f134f99ed669b32e80c1c7fc91a3fd5d7b40f
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 23 17:50:29 2023 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Fri Jun 23 18:07:05 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=547f134f

net-mail/qmail-autoresponder: Drop ppc keywords

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild | 2 +-
 net-mail/qmail-autoresponder/qmail-autoresponder-2.0-r1.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild b/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild
index 205a57c00cd5..599b03e5fdbe 100644
--- a/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild
+++ b/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://untroubled.org/qmail-autoresponder/archive/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="~alpha amd64 ~hppa ~mips ~ppc ~sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ~mips ~sparc x86"
 IUSE="mysql"
 
 DEPEND=">=dev-libs/bglibs-1.106

diff --git a/net-mail/qmail-autoresponder/qmail-autoresponder-2.0-r1.ebuild b/net-mail/qmail-autoresponder/qmail-autoresponder-2.0-r1.ebuild
index 603cc8f6db0b..24c065bf55fd 100644
--- a/net-mail/qmail-autoresponder/qmail-autoresponder-2.0-r1.ebuild
+++ b/net-mail/qmail-autoresponder/qmail-autoresponder-2.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://untroubled.org/qmail-autoresponder/archive/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="GPL-2+"
-KEYWORDS="~alpha amd64 ~hppa ~mips ~ppc ~sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ~mips ~sparc x86"
 IUSE="mysql"
 
 DEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: net-mail/qmail-autoresponder/
@ 2024-09-11 19:54 Petr Vaněk
  0 siblings, 0 replies; 13+ messages in thread
From: Petr Vaněk @ 2024-09-11 19:54 UTC (permalink / raw
  To: gentoo-commits

commit:     78e2323b6bc34995e7561ebe575636730cfc9a99
Author:     Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 11 19:48:09 2024 +0000
Commit:     Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Wed Sep 11 19:53:34 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78e2323b

net-mail/qmail-autoresponder: fix variable order

Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>

 net-mail/qmail-autoresponder/qmail-autoresponder-2.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-mail/qmail-autoresponder/qmail-autoresponder-2.0-r1.ebuild b/net-mail/qmail-autoresponder/qmail-autoresponder-2.0-r1.ebuild
index 24c065bf55fd..0bc660b8b6c3 100644
--- a/net-mail/qmail-autoresponder/qmail-autoresponder-2.0-r1.ebuild
+++ b/net-mail/qmail-autoresponder/qmail-autoresponder-2.0-r1.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=8
@@ -9,8 +9,8 @@ DESCRIPTION="Rate-limited autoresponder for qmail"
 HOMEPAGE="https://untroubled.org/qmail-autoresponder/"
 SRC_URI="https://untroubled.org/qmail-autoresponder/archive/${P}.tar.gz"
 
-SLOT="0"
 LICENSE="GPL-2+"
+SLOT="0"
 KEYWORDS="~alpha amd64 ~hppa ~mips ~sparc x86"
 IUSE="mysql"
 


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

end of thread, other threads:[~2024-09-11 19:54 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-23 18:07 [gentoo-commits] repo/gentoo:master commit in: net-mail/qmail-autoresponder/ Matt Turner
  -- strict thread matches above, loose matches on Subject: below --
2024-09-11 19:54 Petr Vaněk
2023-01-14 23:22 Sam James
2023-01-14 23:22 Sam James
2023-01-14 22:07 Sam James
2020-04-12 11:02 Sergei Trofimovich
2019-05-02 20:54 Mikle Kolyada
2019-05-02 20:54 Mikle Kolyada
2019-03-25 22:18 Sergei Trofimovich
2019-03-16 20:14 Sergei Trofimovich
2019-03-15 23:08 Mikle Kolyada
2019-03-09 19:18 Thomas Deutschmann
2019-02-18 21:00 Brian Evans

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