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-jsonlint-1.11.0.tar.gz 11912 BLAKE2B 6df78d6ae4a6f09e2dc9267a39a6926ff207d01ee1bf7a9c252386ae98b40d581ecb3cd4ea5d469d1987c7a2261b0d43d2295c5fe89390821bead872afe2c130 SHA512 8bf9e78c07d2387011ee322036667355903c9247e679291026f16437bf19a60360becd806c74d38e6435d9cc15d17704584ba9a37d5ba4ae22d350dec548b458
EBUILD seld-jsonlint-1.11.0.ebuild 716 BLAKE2B a43ff699699c2dd6ab2d5f3e24c9288ae4d8a821cb5089c002f858844ac799a096d83d22ad391ef85b93580de242b8741984338075079d104f3dcd955247f4f5 SHA512 6b3ed29311671f7c9cad1969392427dd5df40aab48e56030009c07b25e0b57888791d5a2f78de0057c6dbd68287b96f2688a8e7013d90734d9f11602ec8f0aee
MISC metadata.xml 225 BLAKE2B 8fe058e3db782005457a2f722a63ad75255531de8409249ebd9a575f1f61af8a660e2d4dc21052c15768959db511647b9d90e2ee31fb40ce98d30476899460d9 SHA512 1695e8470502b8d7686e9b8f879511c1e112e7f5f6c576505e8d9a104251c862314ffae9e33a281ce85eb5a189e28133940e1983038cd47c6517f4e8fe02b5b6
+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/jsonlint</remote-id>
</upstream>
</pkgmetadata>
@@ -0,0 +1,41 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="JSON Linter"
HOMEPAGE="https://github.com/Seldaek/jsonlint"
SRC_URI="https://github.com/Seldaek/jsonlint/archive/${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/jsonlint-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
BDEPEND="
dev-php/theseer-Autoload
!dev-php/jsonlint
"
RDEPEND="
>=dev-lang/php-7.4:*
dev-php/fedora-autoloader
!dev-php/jsonlint
"
src_prepare() {
default
phpab \
--output autoload.php \
--template fedora2 \
--basedir . \
. \
|| die
}
src_install() {
insinto "/usr/share/php/Seld/JsonLint"
doins -r *.php bin src src/Seld/JsonLint
}