Added a lot of PHP packages for the defunct volkszaehler ebuild
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
DIST symfony-polyfill-intl-grapheme-1.33.0.tar.gz 6238 BLAKE2B b56fd8d410a827593df32fa2bb5dc5731142fd9e060ef0583e393c73d1f903681d2803d35e0bd92b137d9e3cfdce4a359c73d64f41ba3e813bbdc5bdd494cbf9 SHA512 7c60e56dbc480f31725a2e14aae24f5d96d71ad3a436168284c1137fe4baf0459f386fe23392be96ea32e85b0795d28fe1d0534528488060771b3e46e28ac5f7
|
||||
EBUILD symfony-polyfill-intl-grapheme-1.33.0.ebuild 834 BLAKE2B 54305a7230cd57e7f565213c4273cb185d9c2c162f19e16508ae4ffe0407621a87a234959b69cced97713b1cc81308ebf85641d8ce698be4d21d1b3ff653e1ec SHA512 54c14425c074b4a9f9647e205e4234c8873f0157871693d9d921440e2266a46c3bc98f9a86ffbd808b2f87d1cc624abd70039c0701e268752ba06e716a2a186a
|
||||
MISC metadata.xml 239 BLAKE2B f9c179f5d9442e414a58b58080594af5f48582b99bcba4525b993b4a044517b3d4377fdfd3d2c184b98d5bcbd07b393b5d68d88be967eeeb6241f4dfe64722f2 SHA512 020918233ca28a6fc6a62cb8a9b40166d5813e3796798894fb61c8262e97c5f87fcbdf8b6012d0ddb629ff0a89fc1e36b4d42297ca1fb41dd523cabe8467055a
|
||||
@@ -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-intl-grapheme</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 intl's grapheme_* functions"
|
||||
HOMEPAGE="https://github.com/symfony/polyfill-intl-grapheme"
|
||||
SRC_URI="https://github.com/symfony/polyfill-intl-grapheme/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
S="${WORKDIR}/polyfill-intl-grapheme-${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/Intl/Grapheme"
|
||||
doins -r *.php LICENSE
|
||||
}
|
||||
Reference in New Issue
Block a user