Added a lot of PHP packages for the defunct volkszaehler ebuild

This commit is contained in:
Torsten Kurbad
2025-10-09 12:09:31 +02:00
parent cba6641bde
commit 69cb537d3d
417 changed files with 8637 additions and 53 deletions
+3
View File
@@ -0,0 +1,3 @@
DIST symfony-polyfill-php80-1.31.0.tar.gz 4123 BLAKE2B c728d10daddf3017b4557a23e2791b6ce043853a48a3062151dd6ee3bfe61f9630f41d85a9c945b90a3e26a368468638446a2367f9e24cb28f8a14a89763f366 SHA512 74b5cb4cb204e19711a55711bdcf6a13ee77816fc4d184b1576debfd93aad0e60cd9f882fba74a6ac5e2a5eb05dd4dcc8b3285a3724bf2dd606a69d1fb9b810b
EBUILD symfony-polyfill-php80-1.31.0.ebuild 837 BLAKE2B 99e73cca53db20c002e48bfc459d4ec08b40e093b4ea12bba8e8ca30bdd4248855a21e945fca4c21f2a7b140709c541f521fc1c99e1960b476ebd786c54feb13 SHA512 8b1d28dab278fa21452a110851d59441371d98af6f45c756aa238cc6f1ca49a6ba3f7896ea1c43d0dfe54da8e24fb596b835e5603f225a8a7bb1476d6b7d8141
MISC metadata.xml 231 BLAKE2B d780ca85cb888fe819473914e79d30c03a1f12db6cfda648997fa60ce5b5af8263a61a28c1188513373ff2d05577afd1055c7787f109b51d35173cc401da80c6 SHA512 fd3552af41c55106f4aad28df1074e8b6e7d4f5f3852281137e963c5ea623e620ed51ec14b6197cb3b1e6ebeb48f606b3cd19e4d7bb7bf6f0feab0d0adb921fb
@@ -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">symfony/polyfill-php80</remote-id>
</upstream>
</pkgmetadata>
@@ -0,0 +1,40 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions"
HOMEPAGE="https://github.com/symfony/polyfill-php80"
SRC_URI="https://github.com/symfony/polyfill-php80/archive/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/polyfill-php80-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
BDEPEND="dev-php/theseer-Autoload"
RDEPEND="
>=dev-lang/php-7.2:*
dev-php/fedora-autoloader
"
src_prepare() {
default
phpab \
--quiet \
--output autoload.php \
--template fedora2 \
--basedir . \
. \
|| die
echo "require_once __DIR__ . \"/bootstrap.php\";" >> autoload.php
}
src_install() {
insinto "/usr/share/php/Symfony/Polyfill/Php80"
doins -r *.php LICENSE Resources
}