summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dev-php/php-redmine-api/Manifest1
-rw-r--r--dev-php/php-redmine-api/php-redmine-api-1.5.2.ebuild35
2 files changed, 0 insertions, 36 deletions
diff --git a/dev-php/php-redmine-api/Manifest b/dev-php/php-redmine-api/Manifest
index e0fb2ecebe5b..802d11ae3f87 100644
--- a/dev-php/php-redmine-api/Manifest
+++ b/dev-php/php-redmine-api/Manifest
@@ -1,2 +1 @@
-DIST php-redmine-api-1.5.2.tar.gz 31126 SHA256 466a83703997793b0bc783c0b61aa83824c690e233a5278db2b9e7bd31108a43 SHA512 cf39a154edc3994d380901ef20f6d1f26dc948a45664c819fd98225d86e6aef440518fa70896ca72149ed7ed2a163df856f33f6e9b3b36858573f118b22f10e5 WHIRLPOOL afe4eba58769ab17e18f321bea887e45e1853343afa125c67b79c260e4875841cc321e541e54fcd73541f1c56ae14c2cbffa67834965ce25ac8fc948f94575bd
DIST php-redmine-api-1.5.9.tar.gz 36297 SHA256 e50b1030706d5596673c925ac6c0cf6bbbef7e5e25cb7f6b287b3e4547c83e2e SHA512 dd23dcadb27965568c3066f417edbff633eee5e804430568e60abf6b69f0fdfe36b73497984f80b055fae07cd3bb6f94264875f076b98f05327c474eb3f2ae5e WHIRLPOOL 767e5e30303be1fe69bb75fa1f76d3616b59953f890a66238a8f030317ea2792f26441bbc4c667dd0627cacdc0608a8143e64149e2a3bed23749ecf245711f6f
diff --git a/dev-php/php-redmine-api/php-redmine-api-1.5.2.ebuild b/dev-php/php-redmine-api/php-redmine-api-1.5.2.ebuild
deleted file mode 100644
index 4fa2a8c1298c..000000000000
--- a/dev-php/php-redmine-api/php-redmine-api-1.5.2.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-DESCRIPTION="A simple, object-oriented, PHP Redmine API client"
-HOMEPAGE="https://github.com/kbsali/${PN}"
-SRC_URI="https://github.com/kbsali/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-
-RDEPEND="dev-lang/php:*[curl,json,simplexml]"
-DEPEND="test? ( ${RDEPEND} >=dev-php/phpunit-4 )"
-
-src_install() {
- insinto "/usr/share/php/${PN}"
- doins -r lib
-
- dodoc example.php README.markdown
-}
-
-src_test() {
- phpunit || die "test suite failed"
-}
-
-pkg_postinst() {
- elog "${PN} has been installed in /usr/share/php/${PN}/."
- elog "To use it in a script, require('${PN}/lib/autoload.php'), and then"
- elog "use the Redmine\\Client class normally. Most of the examples in the"
- elog "documentation should work without modification."
-}