* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-DSA/
@ 2016-09-12 11:08 Kent Fredric
0 siblings, 0 replies; 9+ messages in thread
From: Kent Fredric @ 2016-09-12 11:08 UTC (permalink / raw
To: gentoo-commits
commit: a1b7b88394b56b62159cf86b480f16a0f70f7870
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 12 10:51:50 2016 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Mon Sep 12 10:57:21 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1b7b883
dev-perl/Crypt-DSA: Fix dependency on dev-perl/Data-Buffer
Package-Manager: portage-2.3.0
dev-perl/Crypt-DSA/Crypt-DSA-1.170.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0.ebuild b/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0.ebuild
index ef9ee63..287b732 100644
--- a/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0.ebuild
+++ b/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0.ebuild
@@ -14,7 +14,7 @@ SLOT="0"
KEYWORDS="alpha amd64 hppa ppc sparc x86 ~x86-solaris"
IUSE="test"
-RDEPEND="dev-perl/data-buffer
+RDEPEND="dev-perl/Data-Buffer
dev-perl/Digest-SHA1
virtual/perl-File-Spec
dev-perl/File-Which
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-DSA/
@ 2017-06-11 2:37 Kent Fredric
0 siblings, 0 replies; 9+ messages in thread
From: Kent Fredric @ 2017-06-11 2:37 UTC (permalink / raw
To: gentoo-commits
commit: f10bbfbf2717e175d0fcf77fcc5a872b9cedf0e8
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 11 02:37:37 2017 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Sun Jun 11 02:37:37 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f10bbfbf
dev-perl/Crypt-DSA: Fix for '.' in @INC re bug #613630
Trivially restore '.' into @INC for Makefile.PL
Bug: https://bugs.gentoo.org/613630
Package-Manager: Portage-2.3.6, Repoman-2.3.2
dev-perl/Crypt-DSA/Crypt-DSA-1.170.0.ebuild | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0.ebuild b/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0.ebuild
index c2d9c8206bf..43704f40962 100644
--- a/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0.ebuild
+++ b/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -23,3 +23,9 @@ DEPEND="test? ( ${RDEPEND}
dev-perl/Math-BigInt-GMP )"
SRC_TEST="do"
+
+src_prepare() {
+ sed -i -e 's/use inc::Module::Install /use lib q[.]; use inc::Module::Install /' Makefile.PL ||
+ die "Can't patch Makefile.PL for 5.26 dot-in-inc"
+ perl-module_src_prepare
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-DSA/
@ 2020-07-01 0:17 Kent Fredric
0 siblings, 0 replies; 9+ messages in thread
From: Kent Fredric @ 2020-07-01 0:17 UTC (permalink / raw
To: gentoo-commits
commit: 8f1cc39e7021af220e5840322fd105a00bc936de
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 1 00:16:11 2020 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Wed Jul 1 00:16:57 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f1cc39e
dev-perl/Crypt-DSA: Fix DEPEND -> BDEPEND
I hate this mistake, and I keep making it, need some sort of QA check
for this, but I don't think it can be done generically.
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild b/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild
index 55bac478b23..27458159160 100644
--- a/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild
+++ b/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild
@@ -22,7 +22,7 @@ RDEPEND="
virtual/perl-MIME-Base64
>=virtual/perl-Math-BigInt-1.780.0
"
-DEPEND="${RDEPEND}
+BDEPEND="${RDEPEND}
>=virtual/perl-ExtUtils-MakeMaker-6.420.0
test? (
dev-perl/Convert-PEM
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-DSA/
@ 2020-07-14 16:38 Sergei Trofimovich
0 siblings, 0 replies; 9+ messages in thread
From: Sergei Trofimovich @ 2020-07-14 16:38 UTC (permalink / raw
To: gentoo-commits
commit: fe97a633d6ed77906933c30ebf7dd52573c75226
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Tue Jul 14 14:53:41 2020 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Tue Jul 14 16:38:20 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe97a633
dev-perl/Crypt-DSA: keyworded 1.170.0-r1 for sparc, bug #732322
Package-Manager: Portage-2.3.99, Repoman-2.3.23
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild b/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild
index 27458159160..4c5c3a952de 100644
--- a/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild
+++ b/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
DESCRIPTION="DSA Signatures and Key Generation"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~x86 ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86 ~x86-solaris"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-DSA/
@ 2021-05-08 18:41 Sam James
0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2021-05-08 18:41 UTC (permalink / raw
To: gentoo-commits
commit: 6ad6abc6acd8d4ab141acbf0bcea4a2de6ba8741
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri May 7 15:07:10 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri May 7 15:07:10 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ad6abc6
dev-perl/Crypt-DSA: Stabilize 1.170.0-r1 amd64, #788808
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild b/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild
index 4c5c3a952de..c5c797f928c 100644
--- a/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild
+++ b/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.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
@@ -10,7 +10,7 @@ inherit perl-module
DESCRIPTION="DSA Signatures and Key Generation"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86 ~x86-solaris"
+KEYWORDS="~alpha amd64 ~hppa ~ppc ~sparc ~x86 ~x86-solaris"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-DSA/
@ 2021-05-08 18:44 Sam James
0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2021-05-08 18:44 UTC (permalink / raw
To: gentoo-commits
commit: 535cdcaa3a85c9e9ca095aa135c9cfef27222ca1
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat May 8 18:43:22 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat May 8 18:43:22 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=535cdcaa
dev-perl/Crypt-DSA: Stabilize 1.170.0-r1 x86, #788808
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild b/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild
index c5c797f928c..5701cdf741d 100644
--- a/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild
+++ b/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
DESCRIPTION="DSA Signatures and Key Generation"
SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ppc ~sparc ~x86 ~x86-solaris"
+KEYWORDS="~alpha amd64 ~hppa ~ppc ~sparc x86 ~x86-solaris"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-DSA/
@ 2021-05-08 18:55 Sam James
0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2021-05-08 18:55 UTC (permalink / raw
To: gentoo-commits
commit: 3bb7f1e3ca328edd48fbec0577e8f6ed84c3c5c5
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat May 8 18:53:36 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat May 8 18:53:36 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bb7f1e3
dev-perl/Crypt-DSA: Stabilize 1.170.0-r1 ppc, #788808
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild b/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild
index 5701cdf741d..8c27a29f6d3 100644
--- a/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild
+++ b/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
DESCRIPTION="DSA Signatures and Key Generation"
SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ppc ~sparc x86 ~x86-solaris"
+KEYWORDS="~alpha amd64 ~hppa ppc ~sparc x86 ~x86-solaris"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-DSA/
@ 2021-05-08 18:58 Sam James
0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2021-05-08 18:58 UTC (permalink / raw
To: gentoo-commits
commit: 1c776cf4f84ebdda54daa5ba36082f449b335c77
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat May 8 18:57:42 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat May 8 18:57:42 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c776cf4
dev-perl/Crypt-DSA: Stabilize 1.170.0-r1 sparc, #788808
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild b/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild
index 8c27a29f6d3..fe00feea487 100644
--- a/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild
+++ b/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0-r1.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
DESCRIPTION="DSA Signatures and Key Generation"
SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ppc ~sparc x86 ~x86-solaris"
+KEYWORDS="~alpha amd64 ~hppa ppc sparc x86 ~x86-solaris"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-DSA/
@ 2021-10-16 10:43 Andreas K. Hüttel
0 siblings, 0 replies; 9+ messages in thread
From: Andreas K. Hüttel @ 2021-10-16 10:43 UTC (permalink / raw
To: gentoo-commits
commit: 0db6678ccf191ef03f755e6dba9ad550f9bd6ff4
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 16 10:21:22 2021 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sat Oct 16 10:42:57 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0db6678c
dev-perl/Crypt-DSA: Remove old
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
dev-perl/Crypt-DSA/Crypt-DSA-1.170.0.ebuild | 32 -----------------------------
1 file changed, 32 deletions(-)
diff --git a/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0.ebuild b/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0.ebuild
deleted file mode 100644
index 033eebb88ae..00000000000
--- a/dev-perl/Crypt-DSA/Crypt-DSA-1.170.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=ADAMK
-MODULE_VERSION=1.17
-inherit perl-module
-
-DESCRIPTION="DSA Signatures and Key Generation"
-
-SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ppc sparc x86 ~x86-solaris"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-perl/Data-Buffer
- dev-perl/Digest-SHA1
- virtual/perl-File-Spec
- dev-perl/File-Which
- virtual/perl-MIME-Base64
- >=virtual/perl-Math-BigInt-1.78"
-DEPEND="test? ( ${RDEPEND}
- dev-perl/Math-BigInt-GMP )"
-
-SRC_TEST="do"
-
-src_prepare() {
- sed -i -e 's/use inc::Module::Install /use lib q[.]; use inc::Module::Install /' Makefile.PL ||
- die "Can't patch Makefile.PL for 5.26 dot-in-inc"
- perl-module_src_prepare
-}
^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2021-10-16 10:43 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-08 18:55 [gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-DSA/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2021-10-16 10:43 Andreas K. Hüttel
2021-05-08 18:58 Sam James
2021-05-08 18:44 Sam James
2021-05-08 18:41 Sam James
2020-07-14 16:38 Sergei Trofimovich
2020-07-01 0:17 Kent Fredric
2017-06-11 2:37 Kent Fredric
2016-09-12 11:08 Kent Fredric
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox