diff options
author | Brian Evans <grknight@gentoo.org> | 2022-02-17 13:10:26 -0500 |
---|---|---|
committer | Brian Evans <grknight@gentoo.org> | 2022-02-17 13:58:37 -0500 |
commit | ae84cbc518bac7de1832e904741ce9845cc69519 (patch) | |
tree | 2b8f3e5ac755c3fe516467f409a4984785fec34b /dev-php/sebastian-environment | |
parent | media-gfx/pencil: bump to 0.6.6 (diff) | |
download | gentoo-ae84cbc518bac7de1832e904741ce9845cc69519.tar.gz gentoo-ae84cbc518bac7de1832e904741ce9845cc69519.tar.bz2 gentoo-ae84cbc518bac7de1832e904741ce9845cc69519.zip |
dev-php/sebastian-environment: Version bump for 5.1.3
Signed-off-by: Brian Evans <grknight@gentoo.org>
Diffstat (limited to 'dev-php/sebastian-environment')
-rw-r--r-- | dev-php/sebastian-environment/Manifest | 1 | ||||
-rw-r--r-- | dev-php/sebastian-environment/sebastian-environment-5.1.3.ebuild | 26 |
2 files changed, 27 insertions, 0 deletions
diff --git a/dev-php/sebastian-environment/Manifest b/dev-php/sebastian-environment/Manifest index c7e3c89a8d15..5d025144e558 100644 --- a/dev-php/sebastian-environment/Manifest +++ b/dev-php/sebastian-environment/Manifest @@ -1,2 +1,3 @@ DIST sebastian-environment-2.0.0.tar.gz 5607 BLAKE2B 3c34c6e61d9a0bdc5df8083331390935bd513d735a1509890a9af05be8b5a718bbb1d5826ab0cb80da2ee5c4cd436b22ef4ccb50c7b4e1c11d361a78b51621c3 SHA512 cf91f0a5f057007f318c5d6b11f8a1345b8df35d513c6291c5b725f0874ed301a64d1097c3fac1e6b32533caa96b3f78ac415d99b9b6ef63dc4a303b90d49c88 DIST sebastian-environment-4.2.3.tar.gz 9622 BLAKE2B d90b181c3aae7c4ea8e172e5b7f897f8a93bf1edbeca19cc8a7a6f10963730ece1f267fed325a6734b1677b75cc8f5b84a5aa55be383a40b1ec2aa7a603bc668 SHA512 871a15297196b21364000d72afa73c2319e741a284c5446443ae3cacd8ce1a07b1ea3b1d8b6b1a88356fb261d093b889508cea63706341413b15f23348f77e80 +DIST sebastian-environment-5.1.3.tar.gz 6766 BLAKE2B b19be2ce9b9d514ed5ce7203f2bb0b06c90d36b42dac5f210cbc9d1a764d727aefd6b18fbd291b82516c8902aa3b895e5563eab4113ad977bbc7aa8e63a69068 SHA512 f11826a65ed758e1fe94e6c53293660406ea93f45c107b78053134d695580cb0507786c6d527fef8e7d52ab8df0b4ad9acb2c4a6c758c3a165658a5c3d138d65 diff --git a/dev-php/sebastian-environment/sebastian-environment-5.1.3.ebuild b/dev-php/sebastian-environment/sebastian-environment-5.1.3.ebuild new file mode 100644 index 000000000000..3eea9930d2f8 --- /dev/null +++ b/dev-php/sebastian-environment/sebastian-environment-5.1.3.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_PN="${PN/sebastian-//}" + +DESCRIPTION="Helps writing PHP code that has runtime-specific execution paths" +HOMEPAGE="https://phpunit.de" +SRC_URI="https://github.com/sebastianbergmann/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" +IUSE="" + +S="${WORKDIR}/${MY_PN}-${PV}" + +RDEPEND="dev-php/fedora-autoloader + >=dev-lang/php-7.3:*" + +src_install() { + insinto /usr/share/php/SebastianBergmann/Environment + doins -r src/* + newins "${FILESDIR}/autoload-4.2.3.php" autoload.php +} |