diff options
author | Tomas Mozes <hydrapolic@gmail.com> | 2018-09-07 13:12:25 +0200 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2018-09-20 14:00:15 +0200 |
commit | c35ed05fbc0b1cdaab332dafcee90b6e79dd51f2 (patch) | |
tree | 11df1b01db6390ba17ab92b343c3bf1aabe3dbf5 /dev-php/jsonlint | |
parent | dev-php/ca-bundle: bump to 1.1.2 (diff) | |
download | gentoo-c35ed05fbc0b1cdaab332dafcee90b6e79dd51f2.tar.gz gentoo-c35ed05fbc0b1cdaab332dafcee90b6e79dd51f2.tar.bz2 gentoo-c35ed05fbc0b1cdaab332dafcee90b6e79dd51f2.zip |
dev-php/jsonlint: bump to 1.7.1
Signed-off-by: Tomáš Mózes <hydrapolic@gmail.com>
Package-Manager: Portage-2.3.49, Repoman-2.3.10
Diffstat (limited to 'dev-php/jsonlint')
-rw-r--r-- | dev-php/jsonlint/Manifest | 1 | ||||
-rw-r--r-- | dev-php/jsonlint/jsonlint-1.7.1.ebuild | 40 |
2 files changed, 41 insertions, 0 deletions
diff --git a/dev-php/jsonlint/Manifest b/dev-php/jsonlint/Manifest index eddf6fb36af1..c848c5894bbe 100644 --- a/dev-php/jsonlint/Manifest +++ b/dev-php/jsonlint/Manifest @@ -1 +1,2 @@ DIST jsonlint-1.6.0.tar.gz 11327 BLAKE2B 481744188c6aa8a3135fc76c1026fce75df9ceaf939db9cb88f323afae27bf5041a56d3a63618ef497dc1e8f0606a8b8c24651fab566bb421d12d0ac5853ad15 SHA512 16538781807a4ca73de83e7be69d0fc2b530dd9b25f2b9a2ee3f1156dd5ebccb79e9489b873f307718ca2da658a1ae7cef5144adb32f2d1e5c34bd192d496c79 +DIST jsonlint-1.7.1.tar.gz 11813 BLAKE2B ed1a1404cf77d526a5dce15d0a3f36c5ff8c691e3d2560b6b5e309108d6f0072988b292fd1410b48bfad4ba528abd854204c38bf36f5196c7d8beb468716a5db SHA512 dd8380d02591997a129dc8f25f3b2f7c2f00c1d280bdce6551079b564b54b4828beb929bd9a7c608be6429754eb1c33d2d655a0f87b8f671ccf26ee2ae46095d diff --git a/dev-php/jsonlint/jsonlint-1.7.1.ebuild b/dev-php/jsonlint/jsonlint-1.7.1.ebuild new file mode 100644 index 000000000000..ae2c9d17871e --- /dev/null +++ b/dev-php/jsonlint/jsonlint-1.7.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="JSON Lint for PHP" +HOMEPAGE="https://github.com/Seldaek/jsonlint" +SRC_URI="${HOMEPAGE}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +RESTRICT="test" + +RDEPEND=" + dev-lang/php:* + dev-php/fedora-autoloader" +DEPEND=" + test? ( + ${RDEPEND} + dev-php/phpunit )" + +src_prepare() { + default + if use test; then + cp "${FILESDIR}"/autoload.php "${S}"/autoload-test.php || die + sed -i -e "s:__DIR__:'${S}/src/Seld/JsonLint':" "${S}"/autoload-test.php || die + fi +} + +src_install() { + insinto "/usr/share/php/Seld/JsonLint" + doins -r src/Seld/JsonLint/. "${FILESDIR}"/autoload.php + dodoc README.md +} + +src_test() { + phpunit --bootstrap "${S}"/autoload-test.php || die "test suite failed" +} |