Gentoo Archives: gentoo-commits

From: "Aaron W. Swenson" <titanofold@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/pgtap/
Date: Wed, 28 Nov 2018 11:26:22
Message-Id: 1543404355.7b1bad3a6068b974161b6404cb21a85227637e6e.titanofold@gentoo
1 commit: 7b1bad3a6068b974161b6404cb21a85227637e6e
2 Author: Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 28 11:25:18 2018 +0000
4 Commit: Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 28 11:25:55 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b1bad3a
7
8 dev-db/pgtap: Bump to 0.99.0
9
10 Ebuild now restricts tests.
11
12 Bug: https://bugs.gentoo.org/663792
13 Package-Manager: Portage-2.3.51, Repoman-2.3.11
14 Signed-off-by: Aaron W. Swenson <titanofold <AT> gentoo.org>
15
16 dev-db/pgtap/Manifest | 1 +
17 dev-db/pgtap/pgtap-0.99.0.ebuild | 30 ++++++++++++++++++++++++++++++
18 2 files changed, 31 insertions(+)
19
20 diff --git a/dev-db/pgtap/Manifest b/dev-db/pgtap/Manifest
21 index d36b43d654d..bacf450982f 100644
22 --- a/dev-db/pgtap/Manifest
23 +++ b/dev-db/pgtap/Manifest
24 @@ -1 +1,2 @@
25 DIST pgtap-0.98.0.zip 270583 BLAKE2B 25d409f5fc63bc7059e8a4ffd3cb460885648f8569cd10ca05d4c5fbe09af323ecc719d663f81389d45f4a4910ca77beef968e264a0d3f4fabf63fa30b8b98ac SHA512 478841aa9cf378120713b90f33dc16d40fdd030ee1856edd4bfa288a7803cabad09661cf5219925335d9220e12b6202a1fcd8cc0fc55d1974d1e98dc0f6ddac0
26 +DIST pgtap-0.99.0.zip 275915 BLAKE2B 33499dacc0019ecbe85ff3dc4fcc243b6102e0b7e7018d70b17cda44b8d22d8260229ab732db9900296232e0801070722bf97a752734ea7d389dc8ae57198b6f SHA512 c1b39bf2c041d759006d692229a67af1520b6a3d23fdac43f0781cac9ce69e7714fc854d1e45f1cb3ee188a20dccfb7904bc4dd1513699189fae70f425c13b5f
27
28 diff --git a/dev-db/pgtap/pgtap-0.99.0.ebuild b/dev-db/pgtap/pgtap-0.99.0.ebuild
29 new file mode 100644
30 index 00000000000..2be40ea3ba4
31 --- /dev/null
32 +++ b/dev-db/pgtap/pgtap-0.99.0.ebuild
33 @@ -0,0 +1,30 @@
34 +# Copyright 1999-2018 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=6
38 +
39 +POSTGRES_COMPAT=( 9.{3..6} {10..11} )
40 +
41 +inherit postgres-multi
42 +
43 +DESCRIPTION="Unit testing for PostgreSQL"
44 +HOMEPAGE="https://pgtap.org/"
45 +SRC_URI="https://api.pgxn.org/dist/${PN}/${PV}/${P}.zip"
46 +
47 +LICENSE="POSTGRESQL"
48 +SLOT="0"
49 +KEYWORDS="~amd64"
50 +IUSE=""
51 +
52 +DEPEND="${POSTGRES_DEP}
53 + app-arch/unzip
54 + dev-perl/TAP-Parser-SourceHandler-pgTAP
55 +"
56 +RDEPEND="${DEPEND}"
57 +
58 +# Tests requires a running database that match up with the current testing slot.
59 +RESTRICT="test"
60 +
61 +src_configure() {
62 + :
63 +}