Gentoo Archives: gentoo-commits

From: Kent Fredric <kentnl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-DBI-mysql/
Date: Sun, 04 Oct 2020 05:05:58
Message-Id: 1601787604.048242056027171bb5bdebf831eb6080dc41c563.kentnl@gentoo
1 commit: 048242056027171bb5bdebf831eb6080dc41c563
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 4 05:00:04 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 4 05:00:04 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04824205
7
8 dev-perl/Class-DBI-mysql: Cleanup old 1.0.0-r2
9
10 Package-Manager: Portage-3.0.8, Repoman-3.0.1
11 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
12
13 .../Class-DBI-mysql-1.0.0-r2.ebuild | 47 ----------------------
14 1 file changed, 47 deletions(-)
15
16 diff --git a/dev-perl/Class-DBI-mysql/Class-DBI-mysql-1.0.0-r2.ebuild b/dev-perl/Class-DBI-mysql/Class-DBI-mysql-1.0.0-r2.ebuild
17 deleted file mode 100644
18 index 2dcd8f3af81..00000000000
19 --- a/dev-perl/Class-DBI-mysql/Class-DBI-mysql-1.0.0-r2.ebuild
20 +++ /dev/null
21 @@ -1,47 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -DIST_AUTHOR=TMTM
28 -DIST_VERSION=1.00
29 -inherit perl-module
30 -
31 -DESCRIPTION="Extensions to Class::DBI for MySQL"
32 -
33 -LICENSE="|| ( GPL-3 GPL-2 )" # GPL-2+
34 -SLOT="0"
35 -KEYWORDS="amd64 x86"
36 -IUSE=""
37 -
38 -RDEPEND="dev-perl/Class-DBI
39 - dev-perl/DBD-mysql"
40 -DEPEND="${RDEPEND}"
41 -
42 -src_test() {
43 - local MODULES=(
44 - "Class::DBI::mysql ${DIST_VERSION}"
45 - )
46 - local failed=()
47 - for dep in "${MODULES[@]}"; do
48 - ebegin "Compile testing ${dep}"
49 - perl -Mblib="${S}" -M"${dep} ()" -e1
50 - eend $? || failed+=( "$dep" )
51 - done
52 - if [[ ${failed[@]} ]]; then
53 - echo
54 - eerror "One or more modules failed compile:";
55 - for dep in "${failed[@]}"; do
56 - eerror " ${dep}"
57 - done
58 - die "Failing due to module compilation errors";
59 - fi
60 - if [[ -n "${DBD_MYSQL_DBNAME}" ]]; then
61 - perl_rm_files t/pod-coverage.t t/pod.t
62 - perl-module_src_test
63 - else
64 - ewarn "Functional testing of this package requires user intervention."
65 - ewarn "For details, see:"
66 - ewarn "https://wiki.gentoo.org/Project:Perl/maint-notes/dev-perl/Class-DBI-mysql"
67 - fi
68 -}