dev-php/symfony-dependency-injection: bump to v2.8.50
authorThomas Deutschmann <whissi@gentoo.org>
Thu, 18 Jul 2019 12:25:01 +0000 (14:25 +0200)
committerThomas Deutschmann <whissi@gentoo.org>
Thu, 18 Jul 2019 13:01:22 +0000 (15:01 +0200)
security release

Package-Manager: Portage-2.3.68, Repoman-2.3.16
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
dev-php/symfony-dependency-injection/Manifest
dev-php/symfony-dependency-injection/symfony-dependency-injection-2.8.50.ebuild [new file with mode: 0644]

index a186b77f24dc31ceb4dfbd6bfee063a701c2a101..4102180b8f3236a6a1124185c4a97055fb94db26 100644 (file)
@@ -1 +1,2 @@
 DIST symfony-dependency-injection-2.8.20.tar.gz 117123 BLAKE2B 469b11d55bbfdffe46b5cc94592f0bf81c1ddf82c656bbf9914a78cb7e5164960455c2ef1a70ef905b35775e91e279693af19015e586ddb3c95a0184d1737f32 SHA512 9ab6a4b36fde3908f26c2211066df501dd73387a7ec3d0aae85f8289257653bb54393bd9f4b50c347a4d5ba47214f13c089e475eaace3868f5c18f67b69bd829
+DIST symfony-dependency-injection-2.8.50.tar.gz 117771 BLAKE2B b71535619a45a03640064b987a7b5996dc991458c737661a983782d7af53bf89865bf511dbac99384f8ece583b628a2cde0def2cdd3e8c133055d84d9dbed1e1 SHA512 690b3f373c2fb549115f7fdb35880a2c94bf7afa28be2c75d718373e8925897f89d5e34f82b709b11cd8940547289345a8def4debe657f495a0b636a6aa72baa
diff --git a/dev-php/symfony-dependency-injection/symfony-dependency-injection-2.8.50.ebuild b/dev-php/symfony-dependency-injection/symfony-dependency-injection-2.8.50.ebuild
new file mode 100644 (file)
index 0000000..e1ab01a
--- /dev/null
@@ -0,0 +1,45 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+DESCRIPTION="Symfony DependencyInjection Component"
+HOMEPAGE="https://github.com/symfony/dependency-injection"
+SRC_URI="https://github.com/symfony/dependency-injection/archive/v${PV}.tar.gz
+       -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+# The test suite requires the unpackaged symfony-expression-language.
+RESTRICT=test
+
+# I'm not sure if symfony-config and symfony-yaml are actually needed if
+# you're not running the test suite...
+RDEPEND="dev-lang/php:*
+       dev-php/fedora-autoloader
+       >=dev-php/symfony-config-2.1.0
+       >=dev-php/symfony-yaml-2.1.0"
+DEPEND="test? ( ${RDEPEND} >=dev-php/phpunit-5.7.15 )"
+
+S="${WORKDIR}/dependency-injection-${PV}"
+
+src_prepare() {
+       default
+       if use test; then
+               cp "${FILESDIR}/autoload.php" "${S}/autoload-test.php" || die
+       fi
+}
+
+src_install() {
+       insinto "/usr/share/php/Symfony/Component/DependencyInjection"
+       doins -r Compiler Dumper Exception Extension LazyProxy Loader ParameterBag
+       doins *.php "${FILESDIR}/autoload.php"
+       dodoc CHANGELOG.md README.md
+}
+
+src_test() {
+       phpunit --bootstrap "${S}/autoload-test.php" || die 'test suite failed'
+}