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 react-event-loop-1.5.0.tar.gz 29083 BLAKE2B 387193da906d973fe5a443943081d6b3cecc98fbe24b00838e5b6a4cae13acbc96c67ab8973d20bdb9f908387355576de52e0be2c9ed6330eb8aeff3e351e89d SHA512 13074671124d76deb4e5e572944bb5a91a477bc0f385a217ade8c8dd59b9433b114df997bd1d611d1063a55549d37ef3cf8d99d306df8a077ab6b4a59ded1baa
EBUILD react-event-loop-1.5.0.ebuild 753 BLAKE2B 37689f5edc3905095b6691002a3616ddef35a54d31a9f49fea9ae807c9526fe1ff57b030fc43be63908eee145ee19ca5e657ddf611987a4ee44ad706a7d38fe1 SHA512 d6b8510b23d208911442ac731ea60406c14e0b4c30e737557df403c62a424d2eeff9cc43fcef0534a62c21571548010ea3dced58a85251a77566ecaffe529129
MISC metadata.xml 228 BLAKE2B 81b4cf406f4411040504d35c2e12cb8a580bba52f588676b1ed0f19983c2a16f431b8aa2af462a446996155701576ff650e7a00aec8b8558d982b2537e62efbc SHA512 8deb0538839457fbe817c33307ecab034475f673d712ae68f8f57071139316ef23100d428281e2e7ced611d3a2326b0d5ba313469da3c52ffa3992642406cea2
+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">reactphp/event-loop</remote-id>
</upstream>
</pkgmetadata>
@@ -0,0 +1,38 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="ReactPHP's core reactor event loop that libraries can use for evented I/O."
HOMEPAGE="https://github.com/reactphp/event-loop"
SRC_URI="https://github.com/reactphp/event-loop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/event-loop-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
BDEPEND="dev-php/theseer-Autoload"
RDEPEND="
>=dev-lang/php-5.3:*
dev-php/fedora-autoloader
"
src_prepare() {
default
phpab \
--quiet \
--output autoload.php \
--template fedora2 \
--basedir . \
. \
|| die
}
src_install() {
insinto "/usr/share/php/React/EventLoop"
doins -r *.php LICENSE src src/*
}