public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Mail-Sendmail/
@ 2017-11-01  8:02 Kent Fredric
  0 siblings, 0 replies; 11+ messages in thread
From: Kent Fredric @ 2017-11-01  8:02 UTC (permalink / raw
  To: gentoo-commits

commit:     61041966119c616bd7a782ca41b602c1ef2b2e51
Author:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Wed Nov  1 05:20:35 2017 +0000
Commit:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Wed Nov  1 08:01:29 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61041966

dev-perl/Mail-Sendmail: Bump to version 0.800.0

- EAPI6
- Add basic compile tests
- Make it possible to execute network tests

Upstream:
- Simplify license to Perl
- Add experimental SMTP Auth
- Fix bug where refused RCPT TO does global abort
- send EHLO and parse response (Auth TODO)
- Better handle multi-line responses
- Better error messages
- Normalize line endings in headers
- Keep Sender header if used
- Remove space after RCPT TO and MAIL FROM header

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 .../Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild     | 50 ++++++++++++++++++++++
 dev-perl/Mail-Sendmail/Manifest                    |  1 +
 2 files changed, 51 insertions(+)

diff --git a/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild b/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild
new file mode 100644
index 00000000000..d9ca6ac0c36
--- /dev/null
+++ b/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=NEILB
+DIST_VERSION=0.80
+inherit perl-module
+
+DESCRIPTION="Simple platform independent mailer"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE=""
+
+RDEPEND="
+	virtual/perl-Digest-MD5
+	virtual/perl-Exporter
+	virtual/perl-MIME-Base64
+	virtual/perl-Socket
+	virtual/perl-Time-Local
+	virtual/perl-parent
+"
+DEPEND="${RDEPEND}
+	virtual/perl-ExtUtils-MakeMaker
+"
+src_test() {
+	local MODULES=(
+		"Mail::Sendmail ${DIST_VERSION}"
+	)
+	local failed=()
+	for dep in "${MODULES[@]}"; do
+		ebegin "Compile testing ${dep}"
+			perl -Mblib="${S}" -M"${dep} ()" -e1
+		eend $? || failed+=( "$dep" )
+	done
+	if [[ ${failed[@]} ]]; then
+		echo
+		eerror "One or more modules failed compile:";
+		for dep in "${failed[@]}"; do
+			eerror "  ${dep}"
+		done
+		die "Failing due to module compilation errors";
+	fi
+	if has network ${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel}}; then
+		perl-module_src_test
+	else
+		ewarn "Network tests disabled without DIST_TEST_OVERRIDE=~network"
+	fi
+}

diff --git a/dev-perl/Mail-Sendmail/Manifest b/dev-perl/Mail-Sendmail/Manifest
index 0dfcc3fb1d6..c8094218c5c 100644
--- a/dev-perl/Mail-Sendmail/Manifest
+++ b/dev-perl/Mail-Sendmail/Manifest
@@ -1 +1,2 @@
 DIST Mail-Sendmail-0.79.tar.gz 16245 SHA256 8a5eb39d3b9a3a4219c6d6051328c62bd51e9b53723ee5b42cd66e8672e681b9 SHA512 5a39efa2f059e97b8da2d3e5f08fc30f7ac990dc7fe4f8df9580314e11c111884942335ab64af5dc4082d3a807381a8db281122237471888ecb92da6ee874e85 WHIRLPOOL 0f4ae23d70d070332347c84a726250caf63e5a7711f297c457d16b503b29920a50d9b3fe80336a363430b215c006a5e6241e4551c221d7331ec246def8f4d445
+DIST Mail-Sendmail-0.80.tar.gz 23537 SHA256 5b8a98cb5cc39d80441a38aab010885ddf80e6fcd8e6e0314392cb23e7c268e4 SHA512 848ec471938d679645dfb4e032a33d35e49655a336dc6ff3a24ffa35606bff77e73162af672d1a60ad3a7bf571113e802fc42d6cb9a072cdca0d89f707f54a08 WHIRLPOOL 9e59e46f359abd9ca5afd89ffef986de17f1a72569c0049dbac8a57049d94b55d14e478caf6aadd0d046b2f09a5c2df67a8562e3d2c7560a0bdb878439239079


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

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Mail-Sendmail/
@ 2018-07-15 15:51 Mikle Kolyada
  0 siblings, 0 replies; 11+ messages in thread
From: Mikle Kolyada @ 2018-07-15 15:51 UTC (permalink / raw
  To: gentoo-commits

commit:     93554e93f21cec46e7e74a444eefa058d5b67dca
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 15 15:35:16 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Jul 15 15:50:56 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93554e93

dev-perl/Mail-Sendmail: amd64 stable wrt bug #661196

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild b/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild
index d9ca6ac0c36..cd37d8a0686 100644
--- a/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild
+++ b/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Simple platform independent mailer"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE=""
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Mail-Sendmail/
@ 2018-07-15 18:55 Thomas Deutschmann
  0 siblings, 0 replies; 11+ messages in thread
From: Thomas Deutschmann @ 2018-07-15 18:55 UTC (permalink / raw
  To: gentoo-commits

commit:     7931dfcb4650e7b3a1d16a5c0738311157143545
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 15 18:46:19 2018 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun Jul 15 18:46:19 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7931dfcb

dev-perl/Mail-Sendmail: x86 stable (bug #661196)

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild b/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild
index cd37d8a0686..e53b52be013 100644
--- a/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild
+++ b/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Simple platform independent mailer"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE=""
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Mail-Sendmail/
@ 2018-07-16  6:54 Sergei Trofimovich
  0 siblings, 0 replies; 11+ messages in thread
From: Sergei Trofimovich @ 2018-07-16  6:54 UTC (permalink / raw
  To: gentoo-commits

commit:     19a19b3a9cf9081cd218a65857b22e77f34e1524
Author:     Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Mon Jul 16 06:39:53 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Jul 16 06:54:14 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19a19b3a

dev-perl/Mail-Sendmail: stable 0.800.0 for sparc

Bug: https://bugs.gentoo.org/661196
Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="sparc"

 dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild b/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild
index e53b52be013..7dfd68c1d04 100644
--- a/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild
+++ b/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Simple platform independent mailer"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc x86"
 IUSE=""
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Mail-Sendmail/
@ 2018-07-20  8:08 Sergei Trofimovich
  0 siblings, 0 replies; 11+ messages in thread
From: Sergei Trofimovich @ 2018-07-20  8:08 UTC (permalink / raw
  To: gentoo-commits

commit:     e250ff0afff8513bbc7eef3b30d68e8761323eda
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 20 08:00:56 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Fri Jul 20 08:07:28 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e250ff0a

dev-perl/Mail-Sendmail: stable 0.800.0 for ia64, bug #661196

Bug: https://bugs.gentoo.org/661196
Package-Manager: Portage-2.3.43, Repoman-2.3.10
RepoMan-Options: --include-arches="ia64"

 dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild b/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild
index 7dfd68c1d04..23436da777f 100644
--- a/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild
+++ b/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Simple platform independent mailer"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ia64 ~mips ~ppc ~ppc64 sparc x86"
 IUSE=""
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Mail-Sendmail/
@ 2018-07-20 22:48 Sergei Trofimovich
  0 siblings, 0 replies; 11+ messages in thread
From: Sergei Trofimovich @ 2018-07-20 22:48 UTC (permalink / raw
  To: gentoo-commits

commit:     cab438551a3765d914cbc7dbc8da5e43e850086d
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 20 22:30:29 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Fri Jul 20 22:44:26 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cab43855

dev-perl/Mail-Sendmail: stable 0.800.0 for ppc64, bug #661196

Bug: https://bugs.gentoo.org/661196
Package-Manager: Portage-2.3.43, Repoman-2.3.10
RepoMan-Options: --include-arches="ppc64"

 dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild b/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild
index 23436da777f..8a1706cc0f4 100644
--- a/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild
+++ b/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Simple platform independent mailer"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ia64 ~mips ~ppc ~ppc64 sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ia64 ~mips ~ppc ppc64 sparc x86"
 IUSE=""
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Mail-Sendmail/
@ 2018-07-20 23:18 Sergei Trofimovich
  0 siblings, 0 replies; 11+ messages in thread
From: Sergei Trofimovich @ 2018-07-20 23:18 UTC (permalink / raw
  To: gentoo-commits

commit:     81ce28d755c368a7cce302329a9c9e4ef93a6274
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 20 22:58:01 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Fri Jul 20 23:17:47 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81ce28d7

dev-perl/Mail-Sendmail: stable 0.800.0 for ppc, bug #661196

Bug: https://bugs.gentoo.org/661196
Package-Manager: Portage-2.3.43, Repoman-2.3.10
RepoMan-Options: --include-arches="ppc"

 dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild b/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild
index 8a1706cc0f4..7e91eb79142 100644
--- a/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild
+++ b/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Simple platform independent mailer"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ia64 ~mips ~ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ia64 ~mips ppc ppc64 sparc x86"
 IUSE=""
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Mail-Sendmail/
@ 2018-07-21 11:50 Tobias Klausmann
  0 siblings, 0 replies; 11+ messages in thread
From: Tobias Klausmann @ 2018-07-21 11:50 UTC (permalink / raw
  To: gentoo-commits

commit:     5a86932da9b06bcdd29ca60c4f767dc847b06988
Author:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 21 11:49:03 2018 +0000
Commit:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Sat Jul 21 11:50:23 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a86932d

dev-perl/Mail-Sendmail-0.800.0-r0: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/661196

 dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild b/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild
index 7e91eb79142..c3403ac6ee1 100644
--- a/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild
+++ b/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Simple platform independent mailer"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ia64 ~mips ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 ~hppa ia64 ~mips ppc ppc64 sparc x86"
 IUSE=""
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Mail-Sendmail/
@ 2018-07-23 19:00 Sergei Trofimovich
  0 siblings, 0 replies; 11+ messages in thread
From: Sergei Trofimovich @ 2018-07-23 19:00 UTC (permalink / raw
  To: gentoo-commits

commit:     0bcf1f3e989859bb6719225c52cfd643639638cb
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 23 18:57:32 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Jul 23 18:57:32 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bcf1f3e

dev-perl/Mail-Sendmail: stable 0.800.0 for hppa, bug #661196

Bug: https://bugs.gentoo.org/661196
Package-Manager: Portage-2.3.43, Repoman-2.3.10
RepoMan-Options: --include-arches="hppa"

 dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild b/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild
index c3403ac6ee1..f9f0e698f9c 100644
--- a/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild
+++ b/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Simple platform independent mailer"
 
 SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ia64 ~mips ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 hppa ia64 ~mips ppc ppc64 sparc x86"
 IUSE=""
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Mail-Sendmail/
@ 2020-04-15  9:53 Kent Fredric
  0 siblings, 0 replies; 11+ messages in thread
From: Kent Fredric @ 2020-04-15  9:53 UTC (permalink / raw
  To: gentoo-commits

commit:     2933b0a52e51da291a6ed5100d5d0f428f7c3f01
Author:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 14 14:13:32 2020 +0000
Commit:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Wed Apr 15 09:51:04 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2933b0a5

dev-perl/Mail-Sendmail: Remove old 0.790.0-r1

Package-Manager: Portage-2.3.97, Repoman-2.3.22
Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>

 dev-perl/Mail-Sendmail/Mail-Sendmail-0.790.0-r1.ebuild | 15 ---------------
 dev-perl/Mail-Sendmail/Manifest                        |  1 -
 2 files changed, 16 deletions(-)

diff --git a/dev-perl/Mail-Sendmail/Mail-Sendmail-0.790.0-r1.ebuild b/dev-perl/Mail-Sendmail/Mail-Sendmail-0.790.0-r1.ebuild
deleted file mode 100644
index 3d915f0479e..00000000000
--- a/dev-perl/Mail-Sendmail/Mail-Sendmail-0.790.0-r1.ebuild
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=MIVKOVIC
-MODULE_VERSION=0.79
-inherit perl-module
-
-DESCRIPTION="Simple platform independent mailer"
-
-LICENSE="Mail-Sendmail"
-SLOT="0"
-KEYWORDS="~alpha amd64 hppa ~ia64 ~mips ppc ppc64 sparc x86"
-IUSE=""

diff --git a/dev-perl/Mail-Sendmail/Manifest b/dev-perl/Mail-Sendmail/Manifest
index 5d3af3556a2..9ab78690108 100644
--- a/dev-perl/Mail-Sendmail/Manifest
+++ b/dev-perl/Mail-Sendmail/Manifest
@@ -1,2 +1 @@
-DIST Mail-Sendmail-0.79.tar.gz 16245 BLAKE2B 7fef4b4474abd9a1c534fd62dfcb0d96c2a9e6d10e1af3a436cee830e37668087f727096ef50b6d1d8ef2fba0986faff9bda3e9fc2ef05842e77614f7869549b SHA512 5a39efa2f059e97b8da2d3e5f08fc30f7ac990dc7fe4f8df9580314e11c111884942335ab64af5dc4082d3a807381a8db281122237471888ecb92da6ee874e85
 DIST Mail-Sendmail-0.80.tar.gz 23537 BLAKE2B 8dc50359739c225bd0ed0bf3ca2a0ee10eb6a26a1ae1892e93932f030021a2cafc8efacff677d04a730ce11f2ee6c68426b64098baab7f3155429544f5bc8f2f SHA512 848ec471938d679645dfb4e032a33d35e49655a336dc6ff3a24ffa35606bff77e73162af672d1a60ad3a7bf571113e802fc42d6cb9a072cdca0d89f707f54a08


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

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Mail-Sendmail/
@ 2021-11-12  0:25 Andreas K. Hüttel
  0 siblings, 0 replies; 11+ messages in thread
From: Andreas K. Hüttel @ 2021-11-12  0:25 UTC (permalink / raw
  To: gentoo-commits

commit:     de429a16b23b4473f7821b7c86b00e54e0b74535
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 12 00:21:10 2021 +0000
Commit:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Fri Nov 12 00:25:42 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de429a16

dev-perl/Mail-Sendmail: EAPI=8 bump

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>

 ...il-Sendmail-0.800.0.ebuild => Mail-Sendmail-0.800.0-r1.ebuild} | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild b/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0-r1.ebuild
similarity index 93%
rename from dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild
rename to dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0-r1.ebuild
index 6755e1b5946..cfa36687e1f 100644
--- a/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0.ebuild
+++ b/dev-perl/Mail-Sendmail/Mail-Sendmail-0.800.0-r1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 DIST_AUTHOR=NEILB
 DIST_VERSION=0.80
@@ -11,7 +11,6 @@ DESCRIPTION="Simple platform independent mailer"
 
 SLOT="0"
 KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86"
-IUSE=""
 
 RDEPEND="
 	virtual/perl-Digest-MD5
@@ -21,9 +20,10 @@ RDEPEND="
 	virtual/perl-Time-Local
 	virtual/perl-parent
 "
-DEPEND="${RDEPEND}
+BDEPEND="${RDEPEND}
 	virtual/perl-ExtUtils-MakeMaker
 "
+
 src_test() {
 	local MODULES=(
 		"Mail::Sendmail ${DIST_VERSION}"


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

end of thread, other threads:[~2021-11-12  0:26 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-20 22:48 [gentoo-commits] repo/gentoo:master commit in: dev-perl/Mail-Sendmail/ Sergei Trofimovich
  -- strict thread matches above, loose matches on Subject: below --
2021-11-12  0:25 Andreas K. Hüttel
2020-04-15  9:53 Kent Fredric
2018-07-23 19:00 Sergei Trofimovich
2018-07-21 11:50 Tobias Klausmann
2018-07-20 23:18 Sergei Trofimovich
2018-07-20  8:08 Sergei Trofimovich
2018-07-16  6:54 Sergei Trofimovich
2018-07-15 18:55 Thomas Deutschmann
2018-07-15 15:51 Mikle Kolyada
2017-11-01  8:02 Kent Fredric

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