Gentoo Archives: gentoo-commits

From: Aaron Swenson <titanofold@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/pgtap/
Date: Mon, 10 Jul 2017 14:12:32
Message-Id: 1499695937.92861b0391f025a106ea80a423b0978e342443b2.titanofold@gentoo
1 commit: 92861b0391f025a106ea80a423b0978e342443b2
2 Author: Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 10 14:11:58 2017 +0000
4 Commit: Aaron Swenson <titanofold <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 10 14:12:17 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92861b03
7
8 dev-db/pgtap: version bump, use postgres-multi
9
10 Version bump to 0.97. Use postgres-multi to install to multiple
11 slots.
12
13 No longer overwrites files it just installed (bug 496488).
14
15 Bugs: 496488
16
17 Package-Manager: Portage-2.3.6, Repoman-2.3.1
18
19 dev-db/pgtap/Manifest | 1 +
20 dev-db/pgtap/pgtap-0.97.0.ebuild | 26 ++++++++++++++++++++++++++
21 2 files changed, 27 insertions(+)
22
23 diff --git a/dev-db/pgtap/Manifest b/dev-db/pgtap/Manifest
24 index 1145ca06be0..98a255d7095 100644
25 --- a/dev-db/pgtap/Manifest
26 +++ b/dev-db/pgtap/Manifest
27 @@ -1 +1,2 @@
28 DIST pgtap-0.93.0.zip 219355 SHA256 d1fa168b5d089d031552103c985d1f4b681659ece2f976d27c070ad26f6c1d4c SHA512 6165f8bd107168a3955c3ec4c63277ce9fce31d7c375fdfe13cb31b7df71cb9aae4b20a1c2d961fba97e3ae207b45b8daf9174f0701a220e52f4ffb53dddea94 WHIRLPOOL 2352e71e004ad9486d6a5ed3b6c5967613caa06ea657af7394ea37249f16f266e611b64d3d2106bc737bf10e9810613b67f9eb79faadc578ca3ff16cd132a263
29 +DIST pgtap-0.97.0.zip 260089 SHA256 a29f739e5973b19d83e0448f62e5529d11e8c71546d57e80791b172140c9a76a SHA512 8d1a87b6060e28150c580383b0151553dc9c588145a3888d1b2313770283c327bb50820eee3db8cfa5d21e4664272c1538cd3784908fd042c7e788b4558a0df5 WHIRLPOOL 8f3c6114b3dac8c349e72a1608607518a44fa8f6a3ae67fca7213d4d96a63e8c44f6fd4d10ec768376af8f654641094c1e4cc7077fdb159292ac8f7cced1535d
30
31 diff --git a/dev-db/pgtap/pgtap-0.97.0.ebuild b/dev-db/pgtap/pgtap-0.97.0.ebuild
32 new file mode 100644
33 index 00000000000..ac184400535
34 --- /dev/null
35 +++ b/dev-db/pgtap/pgtap-0.97.0.ebuild
36 @@ -0,0 +1,26 @@
37 +# Copyright 1999-2017 Gentoo Foundation
38 +# Distributed under the terms of the GNU General Public License v2
39 +
40 +EAPI=6
41 +
42 +POSTGRES_COMPAT=( 9.{2..6} )
43 +
44 +inherit postgres-multi
45 +
46 +DESCRIPTION="Unit testing for PostgreSQL"
47 +HOMEPAGE="http://pgtap.org/"
48 +SRC_URI="http://api.pgxn.org/dist/${PN}/${PV}/${P}.zip"
49 +
50 +LICENSE="POSTGRESQL"
51 +SLOT="0"
52 +KEYWORDS="~amd64"
53 +IUSE=""
54 +
55 +DEPEND="${POSTGRES_DEP}
56 + dev-perl/TAP-Parser-SourceHandler-pgTAP
57 +"
58 +RDEPEND="${DEPEND}"
59 +
60 +src_configure() {
61 + :
62 +}