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 doctrine-inflector-2.1.0.tar.gz 16599 BLAKE2B 3ebe5284ce76251e18aa7163ef706ea78c7765686d13b3b220d62138dfbb1b43e7cb51cb4f91e84c8367a2e251cd396b04e2dae1efd170f62e654a15a4e62f51 SHA512 e5e845a636f5a43a89747dab21ccec15405d37a6871ae9b068973b41839691b924e10bb6e016ab53fcc261ae85ab09e9f9d936a11040dd5ba046d62114876be1
EBUILD doctrine-inflector-2.1.0.ebuild 829 BLAKE2B 160d0ce11e860617509138f028804eb309c405a7135af2983c994d2f520a6a166f896df112fc74517c2d803256ba2d9d9af7b06281846a3891bb54438ff6578b SHA512 d7425f25842ebec048e96253f9c0dbff4e3f4480731ef03542fc09a33b6dc90f4f0642827def7d1c1622df82d6225b1fb80b6bc711a44b265595e52b1a0fa016
MISC metadata.xml 227 BLAKE2B a86660c0341da15e6c486a4287a8aa2f0d33d0a2cc934655cb2ee6830e2b829c8e4881cbe30a714bd066adf03270ec69c1f7fe0cf244e5be5d9eec3a786288c6 SHA512 d441f222ca5ea6ee7b70ab0cba4fc4fe6608b3a24701b0caa8d2659963b1709e54b0f932fcfcfe561619095ba98dc6ab4177b2a3d271a78b2eb0c35659f35d68
@@ -0,0 +1,38 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words."
HOMEPAGE="https://github.com/doctrine/inflector"
SRC_URI="https://github.com/doctrine/inflector/archive/${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/inflector-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
BDEPEND="dev-php/theseer-Autoload"
RDEPEND="
>=dev-lang/php-7.4:*
dev-php/fedora-autoloader
"
src_prepare() {
default
phpab \
--quiet \
--output autoload.php \
--template fedora2 \
--basedir src \
src \
|| die
}
src_install() {
insinto "/usr/share/php/Doctrine/Inflector"
doins -r *.php LICENSE docs src/*
}
+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">doctrine/inflector</remote-id>
</upstream>
</pkgmetadata>