public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Filesys-SmbClient/
@ 2017-10-21  9:25 Kent Fredric
  0 siblings, 0 replies; 6+ messages in thread
From: Kent Fredric @ 2017-10-21  9:25 UTC (permalink / raw
  To: gentoo-commits

commit:     5b5c59026bd75866f1db72b58a620f9a6280952a
Author:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 21 09:10:04 2017 +0000
Commit:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Sat Oct 21 09:25:13 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b5c5902

dev-perl/Filesys-SmbClient: Add very basic tests

Module compilation tests are better than none.

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 .../Filesys-SmbClient-3.200.0-r3.ebuild            | 50 ++++++++++++++++++++++
 1 file changed, 50 insertions(+)

diff --git a/dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r3.ebuild b/dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r3.ebuild
new file mode 100644
index 00000000000..88ce0aaeace
--- /dev/null
+++ b/dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r3.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=ALIAN
+DIST_VERSION=3.2
+inherit perl-module autotools
+
+DESCRIPTION="Provide Perl API for libsmbclient.so"
+
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND=">=net-fs/samba-4.2[client]"
+DEPEND="${RDEPEND}
+	virtual/perl-ExtUtils-MakeMaker
+	virtual/pkgconfig
+"
+
+PATCHES=(
+	"${FILESDIR}/${P}-pkg_config.patch"
+	"${FILESDIR}/${P}-close_fn.patch"
+)
+
+src_prepare() {
+	perl-module_src_prepare
+	eautoreconf
+}
+src_test() {
+	local MODULES=(
+		"Filesys::SmbClient ${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
+	# standard tests are not designed to work on a non-developer system.
+}


^ permalink raw reply related	[flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Filesys-SmbClient/
@ 2025-07-03  1:07 Andreas K. Hüttel
  0 siblings, 0 replies; 6+ messages in thread
From: Andreas K. Hüttel @ 2025-07-03  1:07 UTC (permalink / raw
  To: gentoo-commits

commit:     568983212c9bdd132d02de570058a86e3234c9e6
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Thu Jul  3 01:03:34 2025 +0000
Commit:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Thu Jul  3 01:03:34 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56898321

dev-perl/Filesys-SmbClient: EAPI bump

Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>

 ...t-3.200.0-r4.ebuild => Filesys-SmbClient-3.200.0-r5.ebuild} | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r4.ebuild b/dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r5.ebuild
similarity index 89%
rename from dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r4.ebuild
rename to dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r5.ebuild
index adf0d3316b03..9d3a5f4c319a 100644
--- a/dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r4.ebuild
+++ b/dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r5.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 DIST_AUTHOR=ALIAN
 DIST_VERSION=3.2
@@ -11,17 +11,11 @@ DESCRIPTION="Provide Perl API for libsmbclient.so"
 
 SLOT="0"
 KEYWORDS="~amd64"
-IUSE="test"
-RESTRICT="!test? ( test )"
 
 RDEPEND=">=net-fs/samba-4.2[client]"
 DEPEND=">=net-fs/samba-4.2[client]"
 BDEPEND="${RDEPEND}
-	virtual/perl-ExtUtils-MakeMaker
 	virtual/pkgconfig
-	test? (
-		virtual/perl-Test-Simple
-	)
 "
 
 PATCHES=(


^ permalink raw reply related	[flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Filesys-SmbClient/
@ 2021-06-18 21:07 David Seifert
  0 siblings, 0 replies; 6+ messages in thread
From: David Seifert @ 2021-06-18 21:07 UTC (permalink / raw
  To: gentoo-commits

commit:     f0da870f170fa4a22b31fba321416cf35d43f6fa
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 18 21:06:33 2021 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Jun 18 21:06:33 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0da870f

dev-perl/Filesys-SmbClient: respect ${PKG_CONFIG}

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

 dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r4.ebuild | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r4.ebuild b/dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r4.ebuild
index adf20536a0e..adf0d3316b0 100644
--- a/dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r4.ebuild
+++ b/dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r4.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
 DIST_AUTHOR=ALIAN
 DIST_VERSION=3.2
-inherit perl-module autotools
+inherit perl-module autotools toolchain-funcs
 
 DESCRIPTION="Provide Perl API for libsmbclient.so"
 
@@ -36,8 +36,8 @@ src_prepare() {
 	eautoreconf
 }
 src_configure() {
-	GENTOO_INC_SMBCLIENT="$( pkg-config --variable=includedir smbclient )" \
-		GENTOO_LIB_SMBCLIENT="$( pkg-config --variable=libdir smbclient )" \
+	GENTOO_INC_SMBCLIENT="$( $(tc-getPKG_CONFIG) --variable=includedir smbclient )" \
+		GENTOO_LIB_SMBCLIENT="$( $(tc-getPKG_CONFIG) --variable=libdir smbclient )" \
 		perl-module_src_configure
 }
 src_compile() {


^ permalink raw reply related	[flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Filesys-SmbClient/
@ 2018-06-08 11:59 Kent Fredric
  0 siblings, 0 replies; 6+ messages in thread
From: Kent Fredric @ 2018-06-08 11:59 UTC (permalink / raw
  To: gentoo-commits

commit:     926ed9598309a3f525bbf2824e8361ce3da2d5dc
Author:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Fri Jun  8 11:39:09 2018 +0000
Commit:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Fri Jun  8 11:59:37 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=926ed959

dev-perl/Filesys-SmbClient: Cleanup old version 3.200.0-r2

Package-Manager: Portage-2.3.29, Repoman-2.3.9

 .../Filesys-SmbClient-3.200.0-r2.ebuild            | 33 ----------------------
 1 file changed, 33 deletions(-)

diff --git a/dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r2.ebuild b/dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r2.ebuild
deleted file mode 100644
index 43884b0072d..00000000000
--- a/dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r2.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=ALIAN
-DIST_VERSION=3.2
-inherit perl-module autotools
-
-DESCRIPTION="Provide Perl API for libsmbclient.so"
-
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-RDEPEND=">=net-fs/samba-4.2[client]"
-DEPEND="${RDEPEND}
-	virtual/perl-ExtUtils-MakeMaker
-	virtual/pkgconfig
-"
-
-# tests are not designed to work on a non-developer system.
-RESTRICT=test
-
-PATCHES=(
-	"${FILESDIR}/${P}-pkg_config.patch"
-	"${FILESDIR}/${P}-close_fn.patch"
-)
-
-src_prepare() {
-	perl-module_src_prepare
-	eautoreconf
-}


^ permalink raw reply related	[flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Filesys-SmbClient/
@ 2017-06-26  7:10 Kent Fredric
  0 siblings, 0 replies; 6+ messages in thread
From: Kent Fredric @ 2017-06-26  7:10 UTC (permalink / raw
  To: gentoo-commits

commit:     a7ce3683eb6ddd874c6f42b9d0ee6b420b6ef122
Author:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 26 07:10:13 2017 +0000
Commit:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Mon Jun 26 07:10:43 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7ce3683

dev-perl/Filesys-SmbClient: Remove old re bug #581338

Cleanup old version that no longer builds since samba4 is the lowest
samba available.

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

 .../Filesys-SmbClient-3.200.0-r1.ebuild              | 20 --------------------
 1 file changed, 20 deletions(-)

diff --git a/dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r1.ebuild b/dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r1.ebuild
deleted file mode 100644
index aa998261a3c..00000000000
--- a/dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r1.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR="ALIAN"
-MODULE_VERSION=3.2
-inherit perl-module
-
-DESCRIPTION="Provide Perl API for libsmbclient.so"
-
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND=">=net-fs/samba-4.2[client]"
-RDEPEND="${DEPEND}"
-
-# tests are not designed to work on a non-developer system.
-RESTRICT=test


^ permalink raw reply related	[flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Filesys-SmbClient/
@ 2016-12-19 14:21 Lars Wendler
  0 siblings, 0 replies; 6+ messages in thread
From: Lars Wendler @ 2016-12-19 14:21 UTC (permalink / raw
  To: gentoo-commits

commit:     c5b8bfdf3cd5c2989627040403aab414d41a0fa6
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 19 14:21:09 2016 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Mon Dec 19 14:21:29 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5b8bfdf

dev-perl/Filesys-SmbClient: Fixed samba dep.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r1.ebuild b/dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r1.ebuild
index cf3c6fa..468cebc 100644
--- a/dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r1.ebuild
+++ b/dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.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$
 
@@ -14,7 +14,7 @@ SLOT="0"
 KEYWORDS="~amd64"
 IUSE=""
 
-DEPEND=">=net-fs/samba-3.0.20[smbclient]"
+DEPEND=">=net-fs/samba-4.2[client]"
 RDEPEND="${DEPEND}"
 
 # tests are not designed to work on a non-developer system.


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

end of thread, other threads:[~2025-07-03  1:08 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-21  9:25 [gentoo-commits] repo/gentoo:master commit in: dev-perl/Filesys-SmbClient/ Kent Fredric
  -- strict thread matches above, loose matches on Subject: below --
2025-07-03  1:07 Andreas K. Hüttel
2021-06-18 21:07 David Seifert
2018-06-08 11:59 Kent Fredric
2017-06-26  7:10 Kent Fredric
2016-12-19 14:21 Lars Wendler

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