diff options
author | 2020-04-29 23:25:06 +0200 | |
---|---|---|
committer | 2020-04-29 23:31:03 +0200 | |
commit | b1f13bdcab6d8977dfd4713f21cb7b7f01920983 (patch) | |
tree | ed4aa2f09af1bd225e9658ba570270c8dde8157c /dev-php/psr-log/psr-log-1.1.3.ebuild | |
parent | dev-php/PEAR-Mail_Mime: bump to v1.10.7 (diff) | |
download | gentoo-b1f13bdcab6d8977dfd4713f21cb7b7f01920983.tar.gz gentoo-b1f13bdcab6d8977dfd4713f21cb7b7f01920983.tar.bz2 gentoo-b1f13bdcab6d8977dfd4713f21cb7b7f01920983.zip |
dev-php/psr-log: bump to v1.1.3
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'dev-php/psr-log/psr-log-1.1.3.ebuild')
-rw-r--r-- | dev-php/psr-log/psr-log-1.1.3.ebuild | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/dev-php/psr-log/psr-log-1.1.3.ebuild b/dev-php/psr-log/psr-log-1.1.3.ebuild new file mode 100644 index 000000000000..f878ec482195 --- /dev/null +++ b/dev-php/psr-log/psr-log-1.1.3.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Common interface for logging libraries" +HOMEPAGE="https://github.com/php-fig/log" +SRC_URI="https://github.com/php-fig/log/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-lang/php:* + dev-php/fedora-autoloader" + +S="${WORKDIR}/log-${PV}" + +src_install() { + insinto "/usr/share/php/Psr/Log" + doins -r Psr/Log/. "${FILESDIR}"/autoload.php + dodoc README.md +} |