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 psr-log-3.0.2.tar.gz 3604 BLAKE2B c8c932b23d18abfdf1ef84f633f3173bc48bfa950de226ebe3906ef13edc3fbe4491df3bb616b6c4ef1235eb1ef6d0a3dda7817122f2eb4f00158078615ff0ef SHA512 b332b65a014b9ac341a2e4147b92dc995fd54d04d66654352e653924a6406f1c7979c8f787a272ff80607b0cb8e18b0aa25c787abc649d69b9f9fb705bf6b758
EBUILD psr-log-3.0.2.ebuild 685 BLAKE2B 11e71fa19285fd25995d68a89c3217b220e0ed5000e58d0c8e531b875b3f492e2bc320352f7ec94952b88981fc2ef5cb3c7f517d1309b732ce5beb7b5b1c5aef SHA512 a8056319dde1eeaca99c99d57b4594c8b5a8a128ab6e5b11784cdf16ab64315fd7a841043d503f794534a5f133bbac316cfc1c0ba9cef50de2a42aaf59b9e99c
MISC metadata.xml 220 BLAKE2B 7e0c18f067e41d4e3076012d030c52e8632757d33768850764ca874676c00e9faef9ef7a7cc5bfe84112d402b9f8141b1c85e4a4370dd25b58ec8a2131d5fab1 SHA512 bc9373ceb93b5c7bd1ca08e95a19c3b0fab3d11bd2f6d2f466457cec067ed09e76c1b607303ac8bceaa4d15c3892812b189145f63a1061ccb27e6584ececad47
+7
View File
@@ -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">php-fig/log</remote-id>
</upstream>
</pkgmetadata>
+38
View File
@@ -0,0 +1,38 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Common interface for logging libraries"
HOMEPAGE="https://github.com/php-fig/log"
SRC_URI="https://github.com/php-fig/log/archive/${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/log-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
BDEPEND="dev-php/theseer-Autoload"
RDEPEND="
>=dev-lang/php-8.0:*
dev-php/fedora-autoloader
"
src_prepare() {
default
phpab \
--quiet \
--output autoload.php \
--template fedora2 \
--basedir src \
src \
|| die
}
src_install() {
insinto "/usr/share/php/Psr/Log"
doins -r *.php LICENSE src/*
}