public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Net-LDAPapi/
@ 2021-07-15 15:43 Andreas K. Hüttel
  0 siblings, 0 replies; 5+ messages in thread
From: Andreas K. Hüttel @ 2021-07-15 15:43 UTC (permalink / raw
  To: gentoo-commits

commit:     c083da04d20d12eebefa1df17e8e5a16e3655215
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 15 15:42:33 2021 +0000
Commit:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Thu Jul 15 15:43:16 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c083da04

dev-perl/Net-LDAPapi: Version bump 3.0.7

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

 dev-perl/Net-LDAPapi/Manifest                 |  1 +
 dev-perl/Net-LDAPapi/Net-LDAPapi-3.0.7.ebuild | 64 +++++++++++++++++++++++++++
 2 files changed, 65 insertions(+)

diff --git a/dev-perl/Net-LDAPapi/Manifest b/dev-perl/Net-LDAPapi/Manifest
index f5e60f194a2..2a84eaa7a73 100644
--- a/dev-perl/Net-LDAPapi/Manifest
+++ b/dev-perl/Net-LDAPapi/Manifest
@@ -1 +1,2 @@
 DIST Net-LDAPapi-3.0.5.tar.gz 67814 BLAKE2B 2f35000e23ba17016837cd4a0cbe86be5d25254d8a34dd39c8c82cbc5a1979bb56b5b8a37af81cf1e8f12326709e252181e441d051ca0b18314408348d1435be SHA512 f3a6f4bb2e182ca93de2aa6c7a80bf20d64152fec5c4bda54efb91ec2a9be52939922993b79a2cdd248be3b83e605fc9ca3e6020f2cfb49b85256361edb512bd
+DIST Net-LDAPapi-3.0.7.tar.gz 67902 BLAKE2B 6cec3e9d53aa3e1ee2b742f78869a0ded68f73c4e159e8b58a9063589271f610c847dcae2db5ce81e47971a783e4d097f68a84c4dead333264bcb0c9f4a4730a SHA512 230f906c94265ddb35fcd6dc0b5401f2b293064a61c5eb13bed271c47f5feb82e57abff4c41b89c5e8436aea6efa09dda6d290db793cb5cb8dd97cfd1cde96ee

diff --git a/dev-perl/Net-LDAPapi/Net-LDAPapi-3.0.7.ebuild b/dev-perl/Net-LDAPapi/Net-LDAPapi-3.0.7.ebuild
new file mode 100644
index 00000000000..d55300f8d51
--- /dev/null
+++ b/dev-perl/Net-LDAPapi/Net-LDAPapi-3.0.7.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=MISHIKAL
+DIST_EXAMPLES=( "examples/*" )
+inherit multilib perl-module
+
+DESCRIPTION="Perl5 Module Supporting LDAP API"
+HOMEPAGE="https://sourceforge.net/projects/net-ldapapi/
+	http://search.cpan.org/~mishikal/Net-LDAPapi/"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+# LICENSE is given on the corresponding sourceforge project and matches the
+# default cpan/perl license
+
+RDEPEND="net-nds/openldap[sasl]
+	dev-libs/cyrus-sasl
+	>=dev-perl/Convert-ASN1-0.190.0"
+DEPEND="${RDEPEND}
+	virtual/perl-ExtUtils-MakeMaker"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-3.0.5-ldap_result-no_error.patch"
+	"${FILESDIR}/${PN}-3.0.5-test-env.patch"
+)
+
+src_configure() {
+	myconf="-sdk OpenLDAP -lib_path /usr/$(get_libdir) -include_path /usr/include"
+	perl-module_src_configure
+}
+
+src_install() {
+	mydoc="Credits Todo"
+	perl-module_src_install
+}
+
+src_test() {
+	local MODULES=(
+		"Net::LDAPapi ${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 [[ -n "${LDAP_TEST_HOST}" ]]; then
+		perl-module_src_test
+	else
+		elog "Comprehensive testing disabled without LDAP_TEST_HOST set. For details, see:"
+		elog "https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/${CATEGORY}/${PN}"
+	fi
+}


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

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

commit:     8e4e8488720096474dd5784e26f053e22df9edb5
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 21 11:19:59 2021 +0000
Commit:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sun Nov 21 11:23:55 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e4e8488

dev-perl/Net-LDAPapi: 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/Net-LDAPapi/Manifest                 |  1 -
 dev-perl/Net-LDAPapi/Net-LDAPapi-3.0.5.ebuild | 64 ---------------------------
 2 files changed, 65 deletions(-)

diff --git a/dev-perl/Net-LDAPapi/Manifest b/dev-perl/Net-LDAPapi/Manifest
index 2a84eaa7a73f..e92e90f68ef0 100644
--- a/dev-perl/Net-LDAPapi/Manifest
+++ b/dev-perl/Net-LDAPapi/Manifest
@@ -1,2 +1 @@
-DIST Net-LDAPapi-3.0.5.tar.gz 67814 BLAKE2B 2f35000e23ba17016837cd4a0cbe86be5d25254d8a34dd39c8c82cbc5a1979bb56b5b8a37af81cf1e8f12326709e252181e441d051ca0b18314408348d1435be SHA512 f3a6f4bb2e182ca93de2aa6c7a80bf20d64152fec5c4bda54efb91ec2a9be52939922993b79a2cdd248be3b83e605fc9ca3e6020f2cfb49b85256361edb512bd
 DIST Net-LDAPapi-3.0.7.tar.gz 67902 BLAKE2B 6cec3e9d53aa3e1ee2b742f78869a0ded68f73c4e159e8b58a9063589271f610c847dcae2db5ce81e47971a783e4d097f68a84c4dead333264bcb0c9f4a4730a SHA512 230f906c94265ddb35fcd6dc0b5401f2b293064a61c5eb13bed271c47f5feb82e57abff4c41b89c5e8436aea6efa09dda6d290db793cb5cb8dd97cfd1cde96ee

diff --git a/dev-perl/Net-LDAPapi/Net-LDAPapi-3.0.5.ebuild b/dev-perl/Net-LDAPapi/Net-LDAPapi-3.0.5.ebuild
deleted file mode 100644
index aa72e67283f7..000000000000
--- a/dev-perl/Net-LDAPapi/Net-LDAPapi-3.0.5.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=MISHIKAL
-DIST_EXAMPLES=( "examples/*" )
-inherit multilib perl-module
-
-DESCRIPTION="Perl5 Module Supporting LDAP API"
-HOMEPAGE="https://sourceforge.net/projects/net-ldapapi/
-	http://search.cpan.org/~mishikal/Net-LDAPapi/"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-# LICENSE is given on the corresponding sourceforge project and matches the
-# default cpan/perl license
-
-RDEPEND="net-nds/openldap[sasl]
-	dev-libs/cyrus-sasl
-	>=dev-perl/Convert-ASN1-0.190.0"
-DEPEND="${RDEPEND}
-	virtual/perl-ExtUtils-MakeMaker"
-
-PATCHES=(
-	"${FILESDIR}/${P}-ldap_result-no_error.patch"
-	"${FILESDIR}/${P}-test-env.patch"
-)
-
-src_configure() {
-	myconf="-sdk OpenLDAP -lib_path /usr/$(get_libdir) -include_path /usr/include"
-	perl-module_src_configure
-}
-
-src_install() {
-	mydoc="Credits Todo"
-	perl-module_src_install
-}
-
-src_test() {
-	local MODULES=(
-		"Net::LDAPapi ${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 [[ -n "${LDAP_TEST_HOST}" ]]; then
-		perl-module_src_test
-	else
-		elog "Comprehensive testing disabled without LDAP_TEST_HOST set. For details, see:"
-		elog "https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/${CATEGORY}/${PN}"
-	fi
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Net-LDAPapi/
@ 2022-03-10 21:12 Sam James
  0 siblings, 0 replies; 5+ messages in thread
From: Sam James @ 2022-03-10 21:12 UTC (permalink / raw
  To: gentoo-commits

commit:     3ced63b7b3f2ece9faa283e9ce8a83d861913233
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 10 05:13:55 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 10 21:10:18 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ced63b7

dev-perl/Net-LDAPapi: [QA] fix UnusedInherits (multilib)

get_libdir has been built-in since EAPI 6

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

 dev-perl/Net-LDAPapi/Net-LDAPapi-3.0.7.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Net-LDAPapi/Net-LDAPapi-3.0.7.ebuild b/dev-perl/Net-LDAPapi/Net-LDAPapi-3.0.7.ebuild
index d55300f8d519..8401df2d0d13 100644
--- a/dev-perl/Net-LDAPapi/Net-LDAPapi-3.0.7.ebuild
+++ b/dev-perl/Net-LDAPapi/Net-LDAPapi-3.0.7.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
 DIST_AUTHOR=MISHIKAL
 DIST_EXAMPLES=( "examples/*" )
-inherit multilib perl-module
+inherit perl-module
 
 DESCRIPTION="Perl5 Module Supporting LDAP API"
 HOMEPAGE="https://sourceforge.net/projects/net-ldapapi/


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

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Net-LDAPapi/
@ 2022-03-23  1:02 Sam James
  0 siblings, 0 replies; 5+ messages in thread
From: Sam James @ 2022-03-23  1:02 UTC (permalink / raw
  To: gentoo-commits

commit:     6eefee4b2d6cc76ef5c97f6f1fc9cf1348980558
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 23 00:58:59 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Mar 23 00:58:59 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6eefee4b

dev-perl/Net-LDAPapi: add subslot dep on OpenLDAP

New OpenLDAP breaks ABI (changes SONAME)

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

 .../{Net-LDAPapi-3.0.7.ebuild => Net-LDAPapi-3.0.7-r1.ebuild}           | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Net-LDAPapi/Net-LDAPapi-3.0.7.ebuild b/dev-perl/Net-LDAPapi/Net-LDAPapi-3.0.7-r1.ebuild
similarity index 97%
rename from dev-perl/Net-LDAPapi/Net-LDAPapi-3.0.7.ebuild
rename to dev-perl/Net-LDAPapi/Net-LDAPapi-3.0.7-r1.ebuild
index 8401df2d0d13..de9b073d7c86 100644
--- a/dev-perl/Net-LDAPapi/Net-LDAPapi-3.0.7.ebuild
+++ b/dev-perl/Net-LDAPapi/Net-LDAPapi-3.0.7-r1.ebuild
@@ -16,7 +16,7 @@ IUSE=""
 # LICENSE is given on the corresponding sourceforge project and matches the
 # default cpan/perl license
 
-RDEPEND="net-nds/openldap[sasl]
+RDEPEND="net-nds/openldap:=[sasl]
 	dev-libs/cyrus-sasl
 	>=dev-perl/Convert-ASN1-0.190.0"
 DEPEND="${RDEPEND}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Net-LDAPapi/
@ 2023-06-11 15:37 Sam James
  0 siblings, 0 replies; 5+ messages in thread
From: Sam James @ 2023-06-11 15:37 UTC (permalink / raw
  To: gentoo-commits

commit:     449ee36155ffb55a01023143e0bbcebf98c03903
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sun Jun 11 10:03:04 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jun 11 15:35:52 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=449ee361

dev-perl/Net-LDAPapi: use HTTPS

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-perl/Net-LDAPapi/Net-LDAPapi-3.0.7-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Net-LDAPapi/Net-LDAPapi-3.0.7-r1.ebuild b/dev-perl/Net-LDAPapi/Net-LDAPapi-3.0.7-r1.ebuild
index de9b073d7c86..511c888e0eba 100644
--- a/dev-perl/Net-LDAPapi/Net-LDAPapi-3.0.7-r1.ebuild
+++ b/dev-perl/Net-LDAPapi/Net-LDAPapi-3.0.7-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -9,7 +9,7 @@ inherit perl-module
 
 DESCRIPTION="Perl5 Module Supporting LDAP API"
 HOMEPAGE="https://sourceforge.net/projects/net-ldapapi/
-	http://search.cpan.org/~mishikal/Net-LDAPapi/"
+	https://search.cpan.org/~mishikal/Net-LDAPapi/"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE=""


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

end of thread, other threads:[~2023-06-11 15:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-23  1:02 [gentoo-commits] repo/gentoo:master commit in: dev-perl/Net-LDAPapi/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2023-06-11 15:37 Sam James
2022-03-10 21:12 Sam James
2021-11-21 11:24 Andreas K. Hüttel
2021-07-15 15:43 Andreas K. Hüttel

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