diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2021-02-01 17:32:14 +0100 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2021-02-01 17:35:32 +0100 |
commit | b7f219c7490149a7a0cd5d2d57090df026af25dd (patch) | |
tree | e9b55b469fa7e06ed333cf6b16f5eacfdf471c63 /dev-php | |
parent | dev-php/phar-io-version: bump to v3.0.4 (diff) | |
download | gentoo-b7f219c7490149a7a0cd5d2d57090df026af25dd.tar.gz gentoo-b7f219c7490149a7a0cd5d2d57090df026af25dd.tar.bz2 gentoo-b7f219c7490149a7a0cd5d2d57090df026af25dd.zip |
dev-php/phar-io-manifest: bump to v2.0.1
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'dev-php')
-rw-r--r-- | dev-php/phar-io-manifest/Manifest | 1 | ||||
-rw-r--r-- | dev-php/phar-io-manifest/phar-io-manifest-2.0.1.ebuild | 49 |
2 files changed, 50 insertions, 0 deletions
diff --git a/dev-php/phar-io-manifest/Manifest b/dev-php/phar-io-manifest/Manifest index cb5837a1cb2a..3e0b56dae27b 100644 --- a/dev-php/phar-io-manifest/Manifest +++ b/dev-php/phar-io-manifest/Manifest @@ -1 +1,2 @@ DIST phar-io-manifest-1.0.3.tar.gz 21903 BLAKE2B 48fb8858ea6c89415e78da399e2d3b6660e1857958094bf5e6c42465cfc32e34122ec1ab6e413f36f48e288ef40af7b85f93c80e6a2cfa547a166557de04ec97 SHA512 f8f9a6d4b761b739ec24a9f94ae5d4ac74f7276621675e3f3c7c3085aa7662c73cc703b1c86531d327199cf42074bb19446c14f78a3c8a888b1d236dc59bed94 +DIST phar-io-manifest-2.0.1.tar.gz 10146 BLAKE2B dad3a04bf63c53c2cf4c715eb752ca57458f936a0872db481e81452b9efc8f10bb3903248cb834c8e25eb88987b68545903e1f68876e284597f54ceef755dfe8 SHA512 5c9772a5a48f17abab3806bbb8f9c07a2f26f3231385fb7dd7dcdc390f925f0f7de2d07d8b0bb4e966de86c3262bb4900cf81c1bf897fb38425aa8d644c74e95 diff --git a/dev-php/phar-io-manifest/phar-io-manifest-2.0.1.ebuild b/dev-php/phar-io-manifest/phar-io-manifest-2.0.1.ebuild new file mode 100644 index 000000000000..25f65d07e8d4 --- /dev/null +++ b/dev-php/phar-io-manifest/phar-io-manifest-2.0.1.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +DESCRIPTION="Reading phar.io manifest information from a PHP Archive (PHAR)" +HOMEPAGE="https://github.com/phar-io/manifest" +SRC_URI="https://github.com/phar-io/manifest/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" +IUSE="examples" + +CDEPEND="dev-php/fedora-autoloader + >=dev-php/phar-io-version-3.0.1 + >=dev-lang/php-7.2:*[phar,xml(-),xmlwriter(-)]" + +BDEPEND="dev-php/theseer-Autoload" + +RDEPEND="${CDEPEND}" + +S="${WORKDIR}/manifest-${PV}" + +src_prepare() { + default + + phpab \ + --output src/autoload.php \ + --template fedora2 \ + --basedir src \ + src \ + || die + + cat >> src/autoload.php <<EOF || die "failed to extend autoload.php" + +// Dependencies +\Fedora\Autoloader\Dependencies::required([ + '/usr/share/php/PharIo/Version/autoload.php' +]); +EOF +} + +src_install() { + insinto /usr/share/php/PharIo/Manifest + doins -r src/* + dodoc README.md + use examples && dodoc -r examples +} |