public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-Cracklib/
@ 2016-12-27 20:00 Andreas Hüttel
  0 siblings, 0 replies; 9+ messages in thread
From: Andreas Hüttel @ 2016-12-27 20:00 UTC (permalink / raw
  To: gentoo-commits

commit:     8e372baab4470ecfa6886492975eab7b73c91bd4
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 27 19:46:34 2016 +0000
Commit:     Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Tue Dec 27 19:59:55 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e372baa

dev-perl/Crypt-Cracklib: Fix license, bug 301969

Package-Manager: portage-2.3.3

 dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r1.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r1.ebuild b/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r1.ebuild
index 68cad3d..9cf65a4 100644
--- a/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r1.ebuild
+++ b/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -11,7 +11,6 @@ inherit perl-module
 DESCRIPTION="Perl interface to Alec Muffett's Cracklib"
 
 SLOT="0"
-LICENSE="Artistic"
 KEYWORDS="amd64 x86"
 IUSE="test"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-Cracklib/
@ 2017-06-19 19:32 Kent Fredric
  0 siblings, 0 replies; 9+ messages in thread
From: Kent Fredric @ 2017-06-19 19:32 UTC (permalink / raw
  To: gentoo-commits

commit:     11bb13ad3f4bcb0a672fb84fb6a06729dca93ce4
Author:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 19 19:28:24 2017 +0000
Commit:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Mon Jun 19 19:32:18 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11bb13ad

dev-perl/Crypt-Cracklib: Fix for '.' in @INC re bug #615122

Generic Module::Install + 5.26 Fix

Bug: https://bugs.gentoo.org/615122
Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r1.ebuild | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r1.ebuild b/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r1.ebuild
index 06949da9626..8e1fefef707 100644
--- a/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r1.ebuild
+++ b/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r1.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
@@ -20,3 +20,9 @@ DEPEND="${RDEPEND}
 		dev-perl/Test-Pod-Coverage )"
 
 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-Cracklib/
@ 2017-06-19 19:32 Kent Fredric
  0 siblings, 0 replies; 9+ messages in thread
From: Kent Fredric @ 2017-06-19 19:32 UTC (permalink / raw
  To: gentoo-commits

commit:     fef7d729b12c83b89621bedfbaea1f5ae8af28ca
Author:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 19 19:32:03 2017 +0000
Commit:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Mon Jun 19 19:32:19 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fef7d729

dev-perl/Crypt-Cracklib: Remove useless authortests and related deps

Pod:: and friends cause more problems than they solve.
Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r1.ebuild | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r1.ebuild b/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r1.ebuild
index 8e1fefef707..52a6b669eee 100644
--- a/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r1.ebuild
+++ b/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r1.ebuild
@@ -14,14 +14,12 @@ KEYWORDS="amd64 x86"
 IUSE="test"
 
 RDEPEND="sys-libs/cracklib"
-DEPEND="${RDEPEND}
-	test? ( dev-perl/Pod-Coverage
-		dev-perl/Test-Pod
-		dev-perl/Test-Pod-Coverage )"
+DEPEND="${RDEPEND}"
 
 SRC_TEST="do"
 
 src_prepare() {
+	use test && perl_rm_files t/pod-coverage.t t/pod.t
 	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-Cracklib/
@ 2020-08-06 16:40 Kent Fredric
  0 siblings, 0 replies; 9+ messages in thread
From: Kent Fredric @ 2020-08-06 16:40 UTC (permalink / raw
  To: gentoo-commits

commit:     a914bd68331764b72d7b5d2aae11e328b1bd7f2e
Author:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Thu Aug  6 16:34:25 2020 +0000
Commit:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Thu Aug  6 16:38:40 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a914bd68

dev-perl/Crypt-Cracklib: Cleanup old 1.700.0-r1

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

 .../Crypt-Cracklib-1.700.0-r1.ebuild               | 27 ----------------------
 1 file changed, 27 deletions(-)

diff --git a/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r1.ebuild b/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r1.ebuild
deleted file mode 100644
index 97c42f216f5..00000000000
--- a/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r1.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=DANIEL
-MODULE_VERSION=1.7
-inherit perl-module
-
-DESCRIPTION="Perl interface to Alec Muffett's Cracklib"
-
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="sys-libs/cracklib"
-DEPEND="${RDEPEND}"
-
-SRC_TEST="do"
-
-src_prepare() {
-	use test && perl_rm_files t/pod-coverage.t t/pod.t
-	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-Cracklib/
@ 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:     1b455c2a1f3b7296ea7f13ac611982fa038ecf45
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri May  7 15:06:42 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri May  7 15:06:42 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b455c2a

dev-perl/Crypt-Cracklib: Stabilize 1.700.0-r3 amd64, #788784

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

 dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r3.ebuild b/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r3.ebuild
index 9d86b5c2aae..b5711f02b53 100644
--- a/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r3.ebuild
+++ b/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r3.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="Perl interface to Alec Muffett's Cracklib"
 
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 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-Cracklib/
@ 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:     988b076290fea210cb10e89d1c96a0e83872c294
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat May  8 18:42:54 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat May  8 18:42:54 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=988b0762

dev-perl/Crypt-Cracklib: Stabilize 1.700.0-r3 x86, #788784

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

 dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r3.ebuild b/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r3.ebuild
index b5711f02b53..916aa358f4c 100644
--- a/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r3.ebuild
+++ b/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r3.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Perl interface to Alec Muffett's Cracklib"
 
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 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-Cracklib/
@ 2021-10-10 14:02 Andreas K. Hüttel
  0 siblings, 0 replies; 9+ messages in thread
From: Andreas K. Hüttel @ 2021-10-10 14:02 UTC (permalink / raw
  To: gentoo-commits

commit:     846e88466158456f93887b34bdf2d0ecc3c56b6a
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sat Oct  9 20:00:16 2021 +0000
Commit:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sun Oct 10 14:01:55 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=846e8846

dev-perl/Crypt-Cracklib: Remove old

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

 .../Crypt-Cracklib-1.700.0-r2.ebuild               | 27 ----------------------
 1 file changed, 27 deletions(-)

diff --git a/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r2.ebuild b/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r2.ebuild
deleted file mode 100644
index f19a634b0f6..00000000000
--- a/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r2.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=DANIEL
-DIST_VERSION=1.7
-inherit perl-module
-
-DESCRIPTION="Perl interface to Alec Muffett's Cracklib"
-
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="sys-libs/cracklib"
-DEPEND="${RDEPEND}"
-
-PATCHES=( "${FILESDIR}/${P}-CFLAGS.patch" )
-
-src_prepare() {
-	use test && perl_rm_files t/pod-coverage.t t/pod.t
-	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-Cracklib/
@ 2024-05-22  2:55 Sam James
  0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2024-05-22  2:55 UTC (permalink / raw
  To: gentoo-commits

commit:     ec62351bace628be592dcdd47af8cc8a163ec5a6
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed May 22 02:38:45 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 22 02:38:45 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec62351b

dev-perl/Crypt-Cracklib: EAPI 8, rely on eclass impls

This covers more variables/args, etc.

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

 .../Crypt-Cracklib-1.700.0-r4.ebuild               | 33 ++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r4.ebuild b/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r4.ebuild
new file mode 100644
index 000000000000..db112e35efee
--- /dev/null
+++ b/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r4.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=DANIEL
+DIST_VERSION=1.7
+inherit perl-module
+
+DESCRIPTION="Perl interface to Alec Muffett's Cracklib"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="sys-libs/cracklib"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	${RDEPEND}
+	>=virtual/perl-ExtUtils-MakeMaker-6.420.0
+	test? (
+		>=virtual/perl-Test-Simple-0.470.0
+	)
+"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-1.7-CFLAGS-1.patch"
+	"${FILESDIR}/${PN}-1.7-no-dot-inc.patch"
+)
+
+PERL_RM_FILES=(
+	t/pod-coverage.t
+	t/pod.t
+)


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

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-Cracklib/
@ 2024-06-25  4:41 Sam James
  0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2024-06-25  4:41 UTC (permalink / raw
  To: gentoo-commits

commit:     2dc7c5f5834325d748316f1ae1977b1c1e1fc063
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 25 04:39:37 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun 25 04:39:37 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dc7c5f5

dev-perl/Crypt-Cracklib: Stabilize 1.700.0-r4 amd64, #934832

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

 dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r4.ebuild b/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r4.ebuild
index 9ef971e75ad3..119bde80f212 100644
--- a/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r4.ebuild
+++ b/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r4.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Perl interface to Alec Muffett's Cracklib"
 
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="sys-libs/cracklib"
 DEPEND="${RDEPEND}"


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

end of thread, other threads:[~2024-06-25  4:41 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:44 [gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-Cracklib/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2024-06-25  4:41 Sam James
2024-05-22  2:55 Sam James
2021-10-10 14:02 Andreas K. Hüttel
2021-05-08 18:41 Sam James
2020-08-06 16:40 Kent Fredric
2017-06-19 19:32 Kent Fredric
2017-06-19 19:32 Kent Fredric
2016-12-27 20:00 Andreas Hüttel

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