Added a lot of PHP packages for the defunct volkszaehler ebuild
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
DIST doctrine-instantiator-2.0.0.tar.gz 5910 BLAKE2B 37903f60305694eb32b25ab1d8adc61d38a7bc072d7b80f4ec63be1f1dc7453fa45f30a92c8d738ff205708d60a335fda052420d6289e65decc396fec9e0ae67 SHA512 2247d892447229ade59b251136e9a542c9f795c01aa6fa2e6a2a2e42d2522912aade4227968abb80232a72861b9c68fe1a11f9c18660c2da522f7c5b4f2404d3
|
||||
EBUILD doctrine-instantiator-2.0.0.ebuild 783 BLAKE2B 10fa64e622d98a5e186809baf7daa9bb992e02c0b333bee371992e7587a0a891dd6fc3493ac7519580dada0b7a55197d202bb9832d97c0f65abd7e2aa11835fa SHA512 aba504cffc0fd982beeb72da7a2ef665478c463184b3b7a1814115018bd9c171277e43ac38ae32909ca9b888e3b4203610515b38b387f243243bf62b367b8436
|
||||
MISC metadata.xml 230 BLAKE2B d0804c36200587031b20c2af506a3010cff7eb6f2e5849585cb323cb0de9d260b92530ac3bc4768b75af5e19aaba920cccfab97a15a1fce506548e7ecc5fe0e8 SHA512 1270a9230ab06503f81ae80b162909fbf12354bfaf14995ffc22f064a6fe4188ed1f0ccb5ae25507d457c54237e62fb06b5453701fc85714eed858e153f93631
|
||||
@@ -0,0 +1,38 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DESCRIPTION="A small, lightweight utility to instantiate objects in PHP without invoking their constructors"
|
||||
HOMEPAGE="https://github.com/doctrine/instantiator"
|
||||
SRC_URI="https://github.com/doctrine/instantiator/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
S="${WORKDIR}/instantiator-${PV}"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
|
||||
|
||||
BDEPEND="dev-php/theseer-Autoload"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-lang/php-7.4:*
|
||||
dev-php/fedora-autoloader
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
phpab \
|
||||
--quiet \
|
||||
--output autoload.php \
|
||||
--template fedora2 \
|
||||
--basedir . \
|
||||
. \
|
||||
|| die
|
||||
}
|
||||
|
||||
src_install() {
|
||||
insinto "/usr/share/php/Doctrine/Instantiator"
|
||||
doins -r *.php LICENSE docs src
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<upstream>
|
||||
<remote-id type="github">doctrine/instantiator</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
Reference in New Issue
Block a user