summaryrefslogtreecommitdiff
path: root/dev-php/jsonlint/jsonlint-1.4.0.ebuild
diff options
context:
space:
mode:
authorMichael Orlitzky <mjo@gentoo.org>2017-04-25 11:05:27 -0400
committerMichael Orlitzky <mjo@gentoo.org>2017-04-25 11:14:47 -0400
commitcc1ec35050626eba3f19dcdfeb10dba0587757b0 (patch)
tree8cced9428c37d21cbb98fd1d9bb62039d57fe970 /dev-php/jsonlint/jsonlint-1.4.0.ebuild
parentf7d3914fd79f06f5e0820e453054a127c0f52211 (diff)
downloadgentoo-cc1ec35050626eba3f19dcdfeb10dba0587757b0.tar.gz
gentoo-cc1ec35050626eba3f19dcdfeb10dba0587757b0.tar.bz2
gentoo-cc1ec35050626eba3f19dcdfeb10dba0587757b0.zip
dev-php/jsonlint: remove old version 1.4.0.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'dev-php/jsonlint/jsonlint-1.4.0.ebuild')
-rw-r--r--dev-php/jsonlint/jsonlint-1.4.0.ebuild40
1 files changed, 0 insertions, 40 deletions
diff --git a/dev-php/jsonlint/jsonlint-1.4.0.ebuild b/dev-php/jsonlint/jsonlint-1.4.0.ebuild
deleted file mode 100644
index 4bb1471b6b2b..000000000000
--- a/dev-php/jsonlint/jsonlint-1.4.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="JSON Lint for PHP"
-HOMEPAGE="https://github.com/Seldaek/jsonlint"
-SRC_URI="https://github.com/Seldaek/${PN}/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.mdown
-}
-
-src_test() {
- phpunit --bootstrap "${S}"/autoload-test.php || die "test suite failed"
-}