diff --git a/dev-php/spyc/metadata.xml b/dev-php/spyc/metadata.xml new file mode 100644 index 000000000..bdc03ab2c --- /dev/null +++ b/dev-php/spyc/metadata.xml @@ -0,0 +1,15 @@ + + + + + gentoo@tastytea.de + tastytea + + + + mustangostang + vlad.andersen@gmail.com + + https://github.com/mustangostang/spyc/issues + + diff --git a/dev-php/spyc/spyc-9999.ebuild b/dev-php/spyc/spyc-9999.ebuild new file mode 100644 index 000000000..fb3d2178a --- /dev/null +++ b/dev-php/spyc/spyc-9999.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit git-r3 + +KEYWORDS="" + +DESCRIPTION="A simple YAML loader/dumper class for PHP" +HOMEPAGE="https://github.com/mustangostang/spyc" +EGIT_REPO_URI="https://github.com/mustangostang/spyc.git" + +LICENSE="MIT" +SLOT="0" +IUSE="" + +RDEPEND=">=dev-lang/php-7.1.18 + >=dev-php/fedora-autoloader-0.2.1" +DEPEND="${RDEPEND}" + +src_unpack() { + git-r3_src_unpack +} + +src_install() { + insinto "/usr/share/php/spyc" + doins Spyc.php "${FILESDIR}"/autoload.php + dodoc README.md +}