Added a lot of PHP packages for the defunct volkszaehler ebuild
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
DIST symfony-polyfill-mbstring-1.33.0.tar.gz 30097 BLAKE2B 58b3da3c1736b61713702f1390cb62e7681cba1e40f4f6373e36ed13c3b313a64ca38135c9af83a59dcef039e4420a577ffdefe0db5df9b324340a34ac99a94c SHA512 0f9a6a3028ffea3119e3bbf6f09c0e565c7b4505c234df3d741064e5976b3fd53edfc4d8b2ed998b478280ba59c5399b8c4abec9b40cbd07f04a2c2876156984
|
||||
EBUILD symfony-polyfill-mbstring-1.33.0.ebuild 819 BLAKE2B b04430885d2c3c106c2edfeb1d01abd7f59d5048d8401a5be4ce8d12be3f97df2ade1b003ae8118a362e422fd4633672fbcda4f3dd3bc8136e698edcea131fe2 SHA512 67876d231490b06161053139fc75101006744bd6dd4fa12956dd9402ddc05ad0a02a6f9769a53b0ae9bde5ba29bb267645ff9ec082bedc2aa7220325e3508684
|
||||
MISC metadata.xml 234 BLAKE2B ea43a255f659dae5a614022fa994165b08cf866f6ab32cc2486f444a5848ab50838b17c67a9fcc6a489e3d8e52224cd2d09403dbdd394f941c985cd910ca9e03 SHA512 204325560747f33703981cc348f728097ba651d5acfd5fae0bd833258e8d191f72b72c16304d82b6cc9409fa18517460420d0ad6dbb46b9d8660034ced79672a
|
||||
@@ -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">symfony/polyfill-mbstring</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -0,0 +1,40 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DESCRIPTION="Symfony polyfill for the Mbstring extension"
|
||||
HOMEPAGE="https://github.com/symfony/polyfill-mbstring"
|
||||
SRC_URI="https://github.com/symfony/polyfill-mbstring/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
S="${WORKDIR}/polyfill-mbstring-${PV}"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
|
||||
|
||||
BDEPEND="dev-php/theseer-Autoload"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-lang/php-7.2:*
|
||||
dev-php/fedora-autoloader
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
phpab \
|
||||
--quiet \
|
||||
--output autoload.php \
|
||||
--template fedora2 \
|
||||
--basedir . \
|
||||
. \
|
||||
|| die
|
||||
echo "require_once __DIR__ . \"/bootstrap.php\";" >> autoload.php
|
||||
|
||||
}
|
||||
|
||||
src_install() {
|
||||
insinto "/usr/share/php/Symfony/Polyfill/Mbstring"
|
||||
doins -r *.php LICENSE Resources
|
||||
}
|
||||
Reference in New Issue
Block a user