From 5a91e43dec8969c86faf7fc49f40adfe6c5c88e5 Mon Sep 17 00:00:00 2001 From: Thomas Deutschmann Date: Tue, 18 Feb 2020 16:26:12 +0100 Subject: dev-php/fedora-autoloader: bump to v1.0.1 Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Thomas Deutschmann --- .../fedora-autoloader-1.0.1.ebuild | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 dev-php/fedora-autoloader/fedora-autoloader-1.0.1.ebuild (limited to 'dev-php/fedora-autoloader/fedora-autoloader-1.0.1.ebuild') diff --git a/dev-php/fedora-autoloader/fedora-autoloader-1.0.1.ebuild b/dev-php/fedora-autoloader/fedora-autoloader-1.0.1.ebuild new file mode 100644 index 000000000000..81eea1238509 --- /dev/null +++ b/dev-php/fedora-autoloader/fedora-autoloader-1.0.1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Fedora's Static PSR-4, PSR-0, and classmap autoloader" +HOMEPAGE="https://github.com/php-fedora/autoloader" +SRC_URI="https://github.com/php-fedora/autoloader/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" + +IUSE="test" + +RESTRICT="test" + +RDEPEND="dev-lang/php:*" +DEPEND=" + test? ( + ${RDEPEND} + dev-php/phpunit )" + +S="${WORKDIR}/autoloader-${PV}" + +src_install() { + insinto "/usr/share/php/Fedora/Autoloader" + doins -r src/. + dodoc CHANGELOG.md README.md +} + +src_test() { + phpunit || die "test suite failed" +} -- cgit v1.2.3-65-gdbad