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 ca-bundle-1.5.6.tar.gz 138700 BLAKE2B a4b4ddd2b337e53a471f9a79ab9f568662ab4ed02e070efa764096badb9e759a829cb1e6bc3bf9e8efacd58f44c0a4c374973fb5ea34f46042c8583a940ce8c5 SHA512 46363ed7c5ec1e04f5bd2a1d25a5402de03958d651d63ee9453d589b6fe4daaec7049a458b441be83dfe7a226a3bbd551f77bcbad107236fa3e987c7d87c8d2d
EBUILD ca-bundle-1.5.6.ebuild 756 BLAKE2B c536c3fe7819d6bd68b6b310fd6ec3ba2170d0e674a9e93ce5d2e08dac3c6f7a8b56c3747651d80205f8da8e91797cfc596d51a55d0244f5d7c7b6011da2748f SHA512 195a6b630b9c1f33f142fbbfc185b42835ed914fdd075fe2868731c92fbd3bc5a7b896f1b5491b577f462e481863c0b2c3b8257f8c2eb155175f7d125f2348cc
MISC metadata.xml 227 BLAKE2B 1440cd5b71a76b0bf600b9306832013e710290341eb49a1505b7e415edeb250706d38b1e6f98cf13c5ee7ff369b816741efd0f069c11f08eea87e3d7bded55fa SHA512 5475d736b20bf00438b6ab03f8234bd332989b020a8818e4c9e4402d6cb64690a96c400fa38f82751c2b955c602b79c9539a269ef2df8a7c173002c00e36a829
+37
View File
@@ -0,0 +1,37 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle."
HOMEPAGE="https://github.com/composer/ca-bundle"
SRC_URI="https://github.com/composer/ca-bundle/archive/${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/ca-bundle-${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 \
--output autoload.php \
--template fedora2 \
--basedir src \
src \
|| die
}
src_install() {
insinto "/usr/share/php/Composer/CaBundle"
doins -r *.php res 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">composer/ca-bundle</remote-id>
</upstream>
</pkgmetadata>