diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2019-02-22 15:39:20 +0100 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2019-02-22 15:39:20 +0100 |
commit | c4f5d035e7b3dbf0165d2ea693907e1c85b84275 (patch) | |
tree | b394ea28f1dff1cd28e092bff5554ae8debe9b01 /dev-php/phar-io-version | |
parent | dev-php/phar-io-manifest: bump to v1.0.3 (diff) | |
download | gentoo-c4f5d035e7b3dbf0165d2ea693907e1c85b84275.tar.gz gentoo-c4f5d035e7b3dbf0165d2ea693907e1c85b84275.tar.bz2 gentoo-c4f5d035e7b3dbf0165d2ea693907e1c85b84275.zip |
dev-php/phar-io-version: bump to v2.0.1
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'dev-php/phar-io-version')
-rw-r--r-- | dev-php/phar-io-version/Manifest | 1 | ||||
-rw-r--r-- | dev-php/phar-io-version/phar-io-version-2.0.1.ebuild | 25 |
2 files changed, 26 insertions, 0 deletions
diff --git a/dev-php/phar-io-version/Manifest b/dev-php/phar-io-version/Manifest index ada5f18db0ef..c9f122b7f3e8 100644 --- a/dev-php/phar-io-version/Manifest +++ b/dev-php/phar-io-version/Manifest @@ -1 +1,2 @@ DIST phar-io-version-1.0.1.tar.gz 8686 BLAKE2B 2cb7208f24ebce981b1b487170d8f07fd43c6dc53782e2797c3172736255e29863aa832d8e63f59e9f941fc154a1e3ebc6452437641f92521f84ddfdf2d3e6ec SHA512 c3bd6e7426bbac99c2b7028d86429f954daafebb7aea3c969305035ce5fc98c3d718f34efbf36658442bb4f60518dbb8217c314f2a3afd429e037120cc7428d9 +DIST phar-io-version-2.0.1.tar.gz 10348 BLAKE2B 22a4f8426c14662781534e63ddb62e4e783fe563ae061c0c3ae87960e0c649d68adff9b19e4388e9aafc52184aa273e8ecc5df08f16e0918258a2a4862950181 SHA512 068d872ecafc3491c7cd27068fa2b35cf1d7e3abe21649677c935e897b6582d2efcdcbcef71a00f3b9b416320f6139c671411821ad41e3b7c906fac5288646ec diff --git a/dev-php/phar-io-version/phar-io-version-2.0.1.ebuild b/dev-php/phar-io-version/phar-io-version-2.0.1.ebuild new file mode 100644 index 000000000000..2a2ba341e417 --- /dev/null +++ b/dev-php/phar-io-version/phar-io-version-2.0.1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +DESCRIPTION="Library for handling version information and constraints" +HOMEPAGE="https://github.com/phar-io/version" +SRC_URI="${HOMEPAGE}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="" + +S="${WORKDIR}/version-${PV}" + +RDEPEND="dev-php/fedora-autoloader + dev-lang/php:*" + +src_install() { + insinto /usr/share/php/PharIo/Version + doins src/*.php + doins "${FILESDIR}/autoload.php" + dodoc README.md +} |