diff --git a/dev-php/phar-io-version/Manifest b/dev-php/phar-io-version/Manifest new file mode 100644 index 0000000000000..ada5f18db0efe --- /dev/null +++ b/dev-php/phar-io-version/Manifest @@ -0,0 +1 @@ +DIST phar-io-version-1.0.1.tar.gz 8686 BLAKE2B 2cb7208f24ebce981b1b487170d8f07fd43c6dc53782e2797c3172736255e29863aa832d8e63f59e9f941fc154a1e3ebc6452437641f92521f84ddfdf2d3e6ec SHA512 c3bd6e7426bbac99c2b7028d86429f954daafebb7aea3c969305035ce5fc98c3d718f34efbf36658442bb4f60518dbb8217c314f2a3afd429e037120cc7428d9 diff --git a/dev-php/phar-io-version/files/autoload.php b/dev-php/phar-io-version/files/autoload.php new file mode 100644 index 0000000000000..6072d5990663b --- /dev/null +++ b/dev-php/phar-io-version/files/autoload.php @@ -0,0 +1,8 @@ + + + + + php-bugs@gentoo.org + PHP + + + phar-io/version + + diff --git a/dev-php/phar-io-version/phar-io-version-1.0.1.ebuild b/dev-php/phar-io-version/phar-io-version-1.0.1.ebuild new file mode 100644 index 0000000000000..1ec43b1fdaf83 --- /dev/null +++ b/dev-php/phar-io-version/phar-io-version-1.0.1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +MY_PN="version" + +DESCRIPTION="Library for handling version information and constraints" +HOMEPAGE="https://github.com/phar-io/version" +SRC_URI="https://github.com/phar-io/${MY_PN}/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}/${MY_PN}-${PV}" + +RDEPEND="dev-php/fedora-autoloader + >=dev-lang/php-5.6" + +src_install() { + insinto /usr/share/php/PharIo/Version + doins -r src/* + doins "${FILESDIR}/autoload.php" + dodoc README.md +}