Added a lot of PHP packages for the defunct volkszaehler ebuild
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
DIST sebastian-version-6.0.0.tar.gz 4484 BLAKE2B 80d9cc5d285f7634eda93d9f4ef08c778959c6b9f19504541f4759f356c9256561850e47b4b24e89d73653622ec8da82329a61f1bb3cee57d27efb3d7a85114a SHA512 8c50f2836b8a2ddcda776a627778668db5c13ae9281ef877844e954ab7c516e1172da6c1e713e158c76362551e725dce0449af12cea98dffbd536a1ca9abb4c4
|
||||
EBUILD sebastian-version-6.0.0.ebuild 789 BLAKE2B 4412e0b0a6c01ac9a8b3fd77678d03a622bd4a5b4bf637c3fe7f8857a25479d1279e04ce82ec46a4b8e4dca6eb0225637b6511a277c5b8efda58d9c482c2c55e SHA512 76ef4cf6fbd6f43d550cdaee61cdcb1369f528ca83fd4884a8d0bef08275ac7632d636b508adb48b3c7f9d1dd7bc68d046a2402416eba56ceaf29ed7f2e4fdbc
|
||||
MISC metadata.xml 625 BLAKE2B d5ce6f8145c3a2c3cc020db91f489ae66d2278363c0020cfaca4976dcda12ab5839de4853560d559cfaacea4254e18ec630d99f8a097038b0fb8d3bd51d76bad SHA512 21a8b6bf1972e9441bfec6b32b7181695aae1ba7bfc7b61059428eb13de4db65669b8759cd89e854c94096c8dda336470d4c4428018a64bb323dbb02c446acf7
|
||||
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>spiderx@spiderx.dp.ua</email>
|
||||
<name>Vladimir Pavljuchenkov</name>
|
||||
</maintainer>
|
||||
<maintainer type="project">
|
||||
<email>proxy-maint@gentoo.org</email>
|
||||
<name>Proxy Maintainers</name>
|
||||
</maintainer>
|
||||
<longdescription lang="en">
|
||||
This package provides a PHP library that helps with managing
|
||||
the version number of Git-hosted PHP projects.
|
||||
</longdescription>
|
||||
<upstream>
|
||||
<remote-id type="github">sebastianbergmann/version</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -0,0 +1,35 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
MY_PN="${PN//sebastian-/}"
|
||||
MY_P="${MY_PN}-${PV}"
|
||||
|
||||
DESCRIPTION="Library that helps with managing the version number"
|
||||
HOMEPAGE="https://github.com/sebastianbergmann/version"
|
||||
SRC_URI="https://github.com/sebastianbergmann/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
RESTRICT="test" # no tests
|
||||
|
||||
RDEPEND="dev-lang/php:*
|
||||
dev-php/fedora-autoloader"
|
||||
BDEPEND="dev-php/theseer-Autoload"
|
||||
|
||||
DOCS=( {ChangeLog,README}.md )
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
phpab -q -o src/autoload.php -t fedora2 src || die "phpab failed"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
insinto /usr/share/php/SebastianBergmann/Version
|
||||
doins -r src/.
|
||||
}
|
||||
Reference in New Issue
Block a user