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/DBD-MariaDB/
Date: Wed, 19 Aug 2020 04:14:55
Message-Id: 1597810476.a90f82c56a29643f5c12dd80ba9b8ce008f458a5.kentnl@gentoo
1 commit: a90f82c56a29643f5c12dd80ba9b8ce008f458a5
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 19 04:10:58 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 19 04:14:36 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a90f82c5
7
8 dev-perl/DBD-MariaDB: Cleanup old 1.210.0
9
10 Package-Manager: Portage-2.3.103, Repoman-2.3.22
11 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
12
13 dev-perl/DBD-MariaDB/DBD-MariaDB-1.210.0.ebuild | 76 -------------------------
14 1 file changed, 76 deletions(-)
15
16 diff --git a/dev-perl/DBD-MariaDB/DBD-MariaDB-1.210.0.ebuild b/dev-perl/DBD-MariaDB/DBD-MariaDB-1.210.0.ebuild
17 deleted file mode 100644
18 index 82ac4fa01fb..00000000000
19 --- a/dev-perl/DBD-MariaDB/DBD-MariaDB-1.210.0.ebuild
20 +++ /dev/null
21 @@ -1,76 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -DIST_AUTHOR=PALI
28 -DIST_VERSION=1.21
29 -inherit perl-module
30 -
31 -DESCRIPTION="MariaDB and MySQL driver for the Perl5 Database Interface (DBI)"
32 -SLOT="0"
33 -KEYWORDS="~amd64 ~x86"
34 -IUSE="test +mariadb mysql minimal"
35 -RESTRICT="!test? ( test )"
36 -REQUIRED_USE="^^ ( mysql mariadb )"
37 -
38 -RDEPEND="
39 - >=dev-perl/DBI-1.608.0
40 - virtual/perl-XSLoader
41 - mysql? ( dev-db/mysql-connector-c:0= )
42 - mariadb? ( dev-db/mariadb-connector-c:0= )
43 -"
44 -# New test-harness needed for parallel testing to work
45 -DEPEND="${RDEPEND}
46 - virtual/perl-Data-Dumper
47 - >=dev-perl/Devel-CheckLib-1.120.0
48 - virtual/perl-ExtUtils-MakeMaker
49 - virtual/perl-File-Spec
50 - virtual/perl-Getopt-Long
51 - test? (
52 - !minimal? (
53 - >=dev-perl/Net-SSLeay-1.430.0
54 - dev-perl/Proc-ProcessTable
55 - virtual/perl-Storable
56 - )
57 - virtual/perl-Encode
58 - virtual/perl-File-Temp
59 - dev-perl/Test-Deep
60 - >=virtual/perl-Test-Harness-3.310.0
61 - >=virtual/perl-Test-Simple-0.900.0
62 - virtual/perl-Time-HiRes
63 - virtual/perl-bignum
64 - )
65 -"
66 -PERL_RM_FILES=(
67 - "t/pod.t"
68 - "t/manifest.t"
69 -)
70 -
71 -src_configure() {
72 - local impl
73 - impl=$(usex mariadb mariadb mysql)
74 - if use test; then
75 - myconf="${myconf} --testdb=test \
76 - --testhost=localhost \
77 - --testuser=test \
78 - --testpassword=test"
79 - fi
80 - myconf+=" --${impl}_config=${EROOT%/}/usr/bin/${impl}_config"
81 - perl-module_src_configure
82 -}
83 -
84 -src_test() {
85 - einfo
86 - einfo "If tests fail, you have to configure your MariaDB/MySQL instance"
87 - einfo "to create and grant some privileges to the test user."
88 - einfo "You can run the following commands at the MariaDB/MySQL prompt: "
89 - einfo "> CREATE USER 'test'@'localhost' IDENTIFIED BY 'test';"
90 - einfo "> CREATE DATABASE test;"
91 - einfo "> GRANT ALL PRIVILEGES ON test.* TO 'test'@'localhost';"
92 - einfo
93 - sleep 5
94 - # Don't be a hero and try to do EXTENDED_TESTING=1 unless you can figure
95 - # out why 60leaks.t fails
96 - perl-module_src_test
97 -}