Added a lot of PHP packages for the defunct volkszaehler ebuild
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
DIST psr-http-message-2.0.tar.gz 15612 BLAKE2B 69283fa0bdacf0649c257a885a3a2d8836a4f650df8ea17ec162906e3322d6d993455bd112b1f75988ea9746da3731fd8f9a303da73a85fe38f30b69c34f3829 SHA512 297c10a795695e687e3606a83c575af84cfe54221e9d2cb12d5e49459804c4625bbc9668b00ae629468393c26570740a1418f6d8cf5e3e795020f1521d471f46
|
||||
EBUILD psr-http-message-2.0.ebuild 722 BLAKE2B c44d7eba818fb6b40bfba7c28d4eb00d6f3eebd8b42156cd03ab2168dd9edbfa0e3830fec8d4f45706083ea758b186df0b51bf59cc6fa80e3ccbb20eb4f0df49 SHA512 a9fb17bec27a9536f75feecc8f1c63e9cf842ef9a99867236ed9b9382567ada09b3264b6747f34d2cd173f053953011bf7e10c4514d99d57a5219ff130d3a6fd
|
||||
MISC metadata.xml 229 BLAKE2B b9e0a48cab98c35a4c19f453f5be82a18bbfe40cff055e5fb57a52f907ad03fb7ec6eb19e29ca6d10478e32cedd96f694b3ea02d6df3c4b4870eefa3b0ff0f03 SHA512 8dc8d39c8342b83cbb7da82a4304785de6613abfdc1e8ffc9dd7e8e4680890211dd0589191b5066e9744293f358c0e406a817528525d4112ee925c8f72f7802b
|
||||
@@ -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">php-fig/http-message</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -0,0 +1,38 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DESCRIPTION="Common interface for HTTP messages"
|
||||
HOMEPAGE="https://github.com/php-fig/http-message"
|
||||
SRC_URI="https://github.com/php-fig/http-message/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
S="${WORKDIR}/http-message-${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 . \
|
||||
. \
|
||||
|| die
|
||||
}
|
||||
|
||||
src_install() {
|
||||
insinto "/usr/share/php/Psr/Http/Message"
|
||||
doins -r *.php LICENSE docs src src/*
|
||||
}
|
||||
Reference in New Issue
Block a user