diff options
author | Aaron W. Swenson <titanofold@gentoo.org> | 2017-07-10 10:11:58 -0400 |
---|---|---|
committer | Aaron W. Swenson <titanofold@gentoo.org> | 2017-07-10 10:12:17 -0400 |
commit | 92861b0391f025a106ea80a423b0978e342443b2 (patch) | |
tree | 4e2e593ef371704e024d93b6bf757314dd22fe4c /dev-db/pgtap | |
parent | dev-php/ZendFramework: Fix description (diff) | |
download | gentoo-92861b0391f025a106ea80a423b0978e342443b2.tar.gz gentoo-92861b0391f025a106ea80a423b0978e342443b2.tar.bz2 gentoo-92861b0391f025a106ea80a423b0978e342443b2.zip |
dev-db/pgtap: version bump, use postgres-multi
Version bump to 0.97. Use postgres-multi to install to multiple
slots.
No longer overwrites files it just installed (bug 496488).
Bugs: 496488
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'dev-db/pgtap')
-rw-r--r-- | dev-db/pgtap/Manifest | 1 | ||||
-rw-r--r-- | dev-db/pgtap/pgtap-0.97.0.ebuild | 26 |
2 files changed, 27 insertions, 0 deletions
diff --git a/dev-db/pgtap/Manifest b/dev-db/pgtap/Manifest index 1145ca06be0c..98a255d70957 100644 --- a/dev-db/pgtap/Manifest +++ b/dev-db/pgtap/Manifest @@ -1 +1,2 @@ DIST pgtap-0.93.0.zip 219355 SHA256 d1fa168b5d089d031552103c985d1f4b681659ece2f976d27c070ad26f6c1d4c SHA512 6165f8bd107168a3955c3ec4c63277ce9fce31d7c375fdfe13cb31b7df71cb9aae4b20a1c2d961fba97e3ae207b45b8daf9174f0701a220e52f4ffb53dddea94 WHIRLPOOL 2352e71e004ad9486d6a5ed3b6c5967613caa06ea657af7394ea37249f16f266e611b64d3d2106bc737bf10e9810613b67f9eb79faadc578ca3ff16cd132a263 +DIST pgtap-0.97.0.zip 260089 SHA256 a29f739e5973b19d83e0448f62e5529d11e8c71546d57e80791b172140c9a76a SHA512 8d1a87b6060e28150c580383b0151553dc9c588145a3888d1b2313770283c327bb50820eee3db8cfa5d21e4664272c1538cd3784908fd042c7e788b4558a0df5 WHIRLPOOL 8f3c6114b3dac8c349e72a1608607518a44fa8f6a3ae67fca7213d4d96a63e8c44f6fd4d10ec768376af8f654641094c1e4cc7077fdb159292ac8f7cced1535d diff --git a/dev-db/pgtap/pgtap-0.97.0.ebuild b/dev-db/pgtap/pgtap-0.97.0.ebuild new file mode 100644 index 000000000000..ac184400535a --- /dev/null +++ b/dev-db/pgtap/pgtap-0.97.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +POSTGRES_COMPAT=( 9.{2..6} ) + +inherit postgres-multi + +DESCRIPTION="Unit testing for PostgreSQL" +HOMEPAGE="http://pgtap.org/" +SRC_URI="http://api.pgxn.org/dist/${PN}/${PV}/${P}.zip" + +LICENSE="POSTGRESQL" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="${POSTGRES_DEP} + dev-perl/TAP-Parser-SourceHandler-pgTAP +" +RDEPEND="${DEPEND}" + +src_configure() { + : +} |