diff options
author | Patrick Lauer <patrick@gentoo.org> | 2022-02-14 07:34:37 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2022-02-14 07:34:42 +0000 |
commit | 77b5bbde02771a5429b4edc0acbb2ea1cddd4c3e (patch) | |
tree | 9b82643fe4a17562b6ea90dfa13c2b2821122d9c /dev-db/pgtap | |
parent | dev-lang/lua:5.1.5-r107 5.3.6-r3 bump (diff) | |
download | gentoo-77b5bbde02771a5429b4edc0acbb2ea1cddd4c3e.tar.gz gentoo-77b5bbde02771a5429b4edc0acbb2ea1cddd4c3e.tar.bz2 gentoo-77b5bbde02771a5429b4edc0acbb2ea1cddd4c3e.zip |
dev-db/pgtap: Bump to 1.2.0
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Patrick Lauer <patrick@gentoo.org>
Diffstat (limited to 'dev-db/pgtap')
-rw-r--r-- | dev-db/pgtap/Manifest | 1 | ||||
-rw-r--r-- | dev-db/pgtap/pgtap-1.2.0.ebuild | 31 |
2 files changed, 32 insertions, 0 deletions
diff --git a/dev-db/pgtap/Manifest b/dev-db/pgtap/Manifest index 28721785989d..132f3933d90b 100644 --- a/dev-db/pgtap/Manifest +++ b/dev-db/pgtap/Manifest @@ -1,2 +1,3 @@ DIST pgtap-0.99.0.zip 275915 BLAKE2B 33499dacc0019ecbe85ff3dc4fcc243b6102e0b7e7018d70b17cda44b8d22d8260229ab732db9900296232e0801070722bf97a752734ea7d389dc8ae57198b6f SHA512 c1b39bf2c041d759006d692229a67af1520b6a3d23fdac43f0781cac9ce69e7714fc854d1e45f1cb3ee188a20dccfb7904bc4dd1513699189fae70f425c13b5f DIST pgtap-1.1.0.zip 306590 BLAKE2B efde91e26fafc8300fa39b80d90eef134ebf3a309fca3248f61e2b8beb76b94d83b035d76c789509297f0bec48f35b5947b49e2da211826cd9d828145783607d SHA512 1cade794d738fc6b78d53a0feceff4e6c0e988fbcfe8cd9e8dbf62e2bea25d2e714baac55575e99f6d74ae0b7e5277770a69c8af7dbb5714913ea7435cf493fc +DIST pgtap-1.2.0.zip 319374 BLAKE2B 1cea77860a1928ed7cbf4ddb0bb8ff418023bf88e377196ae2b505c065321e3003179227077567e676a8c551230d259ecd1cdb590001fc71bcc821b87fb3d0f6 SHA512 5569bea5e7879787a91fa9b2baae5cbff1db5b9a5a096db2a9a064012d65e02c52bd1520422b5e6f87fb5b6e64845371188ea53c43a277aee68ffc05d5152ed7 diff --git a/dev-db/pgtap/pgtap-1.2.0.ebuild b/dev-db/pgtap/pgtap-1.2.0.ebuild new file mode 100644 index 000000000000..4828c1a8d65a --- /dev/null +++ b/dev-db/pgtap/pgtap-1.2.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +POSTGRES_COMPAT=( 9.6 {10..13} ) + +inherit postgres-multi + +DESCRIPTION="Unit testing for PostgreSQL" +HOMEPAGE="https://pgtap.org/" +SRC_URI="https://api.pgxn.org/dist/${PN}/${PV}/${P}.zip" + +LICENSE="POSTGRESQL" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="${POSTGRES_DEP} + app-arch/unzip + dev-perl/TAP-Parser-SourceHandler-pgTAP +" +RDEPEND="${DEPEND}" + +# Tests requires a running database that match up with the current +# testing slot. Won't run from ${ED}, want's to install too early. +RESTRICT="test" + +src_configure() { + : +} |