diff options
author | Brian Evans <grknight@gentoo.org> | 2018-12-06 10:50:18 -0500 |
---|---|---|
committer | Brian Evans <grknight@gentoo.org> | 2018-12-06 10:50:18 -0500 |
commit | 8882c2e551259d9e41e09f7a6cb68b36bdc8462c (patch) | |
tree | 192bc669b3178d51639065ffc5fda899a540a249 /dev-php | |
parent | dev-db/freetds: Drop old (diff) | |
download | gentoo-8882c2e551259d9e41e09f7a6cb68b36bdc8462c.tar.gz gentoo-8882c2e551259d9e41e09f7a6cb68b36bdc8462c.tar.bz2 gentoo-8882c2e551259d9e41e09f7a6cb68b36bdc8462c.zip |
dev-php/PEAR-DB: Version bump for 1.9.3
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Brian Evans <grknight@gentoo.org>
Diffstat (limited to 'dev-php')
-rw-r--r-- | dev-php/PEAR-DB/Manifest | 1 | ||||
-rw-r--r-- | dev-php/PEAR-DB/PEAR-DB-1.9.3.ebuild | 26 |
2 files changed, 27 insertions, 0 deletions
diff --git a/dev-php/PEAR-DB/Manifest b/dev-php/PEAR-DB/Manifest index df4b8fabb45b..e3d2db6dcf77 100644 --- a/dev-php/PEAR-DB/Manifest +++ b/dev-php/PEAR-DB/Manifest @@ -1 +1,2 @@ DIST DB-1.9.2.tgz 133795 BLAKE2B 8b37b010145efd10a2b551392988a810c35b9a8c794eb0e162056fcded104276b19e97afb91149f1814f9f838a0db579a76578fb80d96d0574e5b7714d77aa91 SHA512 126bbbb847a24c20731f1e5f4a549e9d7e0651a760f10c49cfc7550f80dd8b05f3560bc80110bcaab9e79dcbb714c6113948f14a727f7f4087a23178b3db0afa +DIST DB-1.9.3.tgz 132290 BLAKE2B 8970697ac66bc9fe7f8c374431c59627133401e5b591fb3fc95ffc3a6ebb8cfe7e93982178e092eefc79d91657992eb539fc7211a237e3fe7407c75c7013831f SHA512 3fe98f97307818f65c0eaf291169fd13533a4d484d34d7fa7aa82580f6ec3d89b984292f173da2cf896f5f15531db9bde2be981e5a7679cc00c48aa2f9cc1142 diff --git a/dev-php/PEAR-DB/PEAR-DB-1.9.3.ebuild b/dev-php/PEAR-DB/PEAR-DB-1.9.3.ebuild new file mode 100644 index 000000000000..b7d376017594 --- /dev/null +++ b/dev-php/PEAR-DB/PEAR-DB-1.9.3.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit php-pear-r2 + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" + +DESCRIPTION="Database abstraction layer for PHP" +LICENSE="PHP-3" +SLOT="0" +IUSE="test" +DEPEND="test? ( dev-php/PEAR-PEAR )" + +DOCS=( doc/TESTERS doc/IDEAS doc/MAINTAINERS doc/STATUS ) + +src_test() { + # Requires the "pear" executable from dev-php/PEAR-PEAR, and also + # a working version of the cli SAPI eselected. + pear run-tests tests || die + + # The command succeeds regardless of whether or not the test suite + # passed, but this file is only written when there was a failure. + [[ -f run-tests.log ]] && die "test suite failed" +} |