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-lexer-3.0.1.tar.gz 4268 BLAKE2B 73b63b8f53655293eab7c65551e0d2e966d71a0bdd3e5b558d981532a379364210794ff605f04302a9a3c5a7de6bf6ab8fc3d127fafb1c9a51daa346fd02346c SHA512 f7e2cc729feffe8df7aef50588675e3a611cb6f638bccd3e2998d34e500cae64dc614c08c876ecbeeb71c3912d804d63072c71987ce94921a650e143512e0e6f
EBUILD doctrine-lexer-3.0.1.ebuild 759 BLAKE2B 0d8eeead098954d588441ac1e2741a73349f3d013a9d8261c4d52dfe4f3c33558a9c779e3250510687410708bee8265bfdaf34e1429b532ba227b05c021469bd SHA512 1b42a7a487e4c1202f7d2aa806640985cec881896fc3ac8e469e9b8d9f3c0d2754c4de8eafff780f0267b64ec319e96a4881654b2660cf1588c83b32f17ef8e1
MISC metadata.xml 223 BLAKE2B cdb2cde8b41505c41bbd09584f369c3da40f9674a13488ca9d537a0c2785a4649be90de975589cebc06a953e9b158136f20d0948043ca7e320aa3db18c9fd1f7 SHA512 f05b8da1265133d9c2d0f5f87e0ac66209cf5a9a3469ff82604598bb1d8d78c5274658ac81a3faae64fb879924f96da53e45822c452937b23f0d2de54b49bc8f
@@ -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 Lexer parser library that can be used in Top-Down, Recursive Descent Parsers."
HOMEPAGE="https://github.com/doctrine/lexer"
SRC_URI="https://github.com/doctrine/lexer/archive/${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/lexer-${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/Common/Lexer"
doins -r *.php LICENSE 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/lexer</remote-id>
</upstream>
</pkgmetadata>