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 seld-signal-handler-2.0.2.tar.gz 6833 BLAKE2B 59a2818a51c6534fa34b1a9d10c29c411179568bf9453a40b49e8e653078f7d27b1df401c9d59aa84e4d59a6228150ce548718c7df4f8db22fd3c98e8cfbb5b0 SHA512 ee308b8a5765dd66b43e142ba9aba5630e4b9dc7266f5c98a6e1bba30dd267b393cbcb82819bc09725030a1a779f184201cf54457036ccc9595b8651dbaaca91
EBUILD seld-signal-handler-2.0.2.ebuild 778 BLAKE2B 06fbcfc12cc4fba8abfa1ccdae3374fd3fcf3929fbc44d4bedd82e49a230b5becfeb33aca1156eec754e275277e15dbb515f4b39ffff063954ccaee59dd458e9 SHA512 593ee0bdf98e8b3399cc695f7471e1b0cebf76c8569466a12e54b264520517789000647ddb2f199085ecf3233b4643a7fa407c3c895c4b67dce4e8acd939d5d8
MISC metadata.xml 231 BLAKE2B fadad2e465473ff0984cca3c17a644f734eef721dd8f5bbb7ddb8d263b38c9d886be4f2e0de7ce1cefc4568431efc964834229852f389553789f1bb989c31858 SHA512 e5fb26c72c2a43ff7cacabd2622af71f1c65b7c314e4511e9f7c75bbc411b00e36c75345c4b2eb8532714bfea59c407c73f9ef076d80d684d56621dab90510a1
+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">Seldaek/signal-handler</remote-id>
</upstream>
</pkgmetadata>
@@ -0,0 +1,37 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Simple unix signal handler that silently fails where signals are not supported for easy cross-platform development"
HOMEPAGE="https://github.com/Seldaek/signal-handler"
SRC_URI="https://github.com/Seldaek/signal-handler/archive/${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/signal-handler-${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 \
--output autoload.php \
--template fedora2 \
--basedir . \
. \
|| die
}
src_install() {
insinto "/usr/share/php/Seld/Signal"
doins -r *.php src src/*
}