commit: 4bc2b0d62f4c98557934f3ddb245271a53fc3c4b
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 20 00:48:52 2017 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Fri Oct 20 07:39:42 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bc2b0d6
dev-perl/DBIx-Class-UserStamp: EAPI6 + Tests
- EAPI6
- Enable tests
- Cleanup tests
Package-Manager: Portage-2.3.8, Repoman-2.3.3
.../DBIx-Class-UserStamp-0.110.0-r1.ebuild | 30 ++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git
a/dev-perl/DBIx-Class-UserStamp/DBIx-Class-UserStamp-0.110.0-r1.ebuild
b/dev-perl/DBIx-Class-UserStamp/DBIx-Class-UserStamp-0.110.0-r1.ebuild
new file mode 100644
index 00000000000..4c00151cbba
--- /dev/null
+++ b/dev-perl/DBIx-Class-UserStamp/DBIx-Class-UserStamp-0.110.0-r1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=JGOULAH
+DIST_VERSION=0.11
+inherit perl-module
+
+DESCRIPTION="Automatically set update and create user id fields"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="dev-perl/Class-Accessor-Grouped
+ dev-perl/DBIx-Class-DynamicDefault
+ dev-perl/DBIx-Class"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+ sed -i -e 's/use inc::Module::Install;/use lib q[.];\nuse
inc::Module::Install;/' Makefile.PL ||
+ die "Can't patch Makefile.PL for 5.26 dot-in-inc"
+ perl-module_src_prepare
+}
+
+src_test() {
+ perl_rm_files t/02pod.t t/03podcoverage.t
+ perl-module_src_test
+}