Gentoo Archives: gentoo-commits

From: "Michael Orlitzky (mjo)" <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-php/php-redmine-api: metadata.xml php-redmine-api-1.5.2.ebuild ChangeLog
Date: Tue, 30 Dec 2014 23:08:03
Message-Id: 20141230230756.AF898E856@oystercatcher.gentoo.org
1 mjo 14/12/30 23:07:56
2
3 Added: metadata.xml php-redmine-api-1.5.2.ebuild ChangeLog
4 Log:
5 New package dev-php/php-redmine-api, a simple object-oriented PHP Redmine API client.
6
7 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x6F48D3DA05C2DADB!)
8
9 Revision Changes Path
10 1.1 dev-php/php-redmine-api/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/php-redmine-api/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/php-redmine-api/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>php</herd>
21 <maintainer>
22 <email>mjo@g.o</email>
23 <name>Michael Orlitzky</name>
24 </maintainer>
25 </pkgmetadata>
26
27
28
29 1.1 dev-php/php-redmine-api/php-redmine-api-1.5.2.ebuild
30
31 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/php-redmine-api/php-redmine-api-1.5.2.ebuild?rev=1.1&view=markup
32 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/php-redmine-api/php-redmine-api-1.5.2.ebuild?rev=1.1&content-type=text/plain
33
34 Index: php-redmine-api-1.5.2.ebuild
35 ===================================================================
36 # Copyright 1999-2014 Gentoo Foundation
37 # Distributed under the terms of the GNU General Public License v2
38 # $Header: /var/cvsroot/gentoo-x86/dev-php/php-redmine-api/php-redmine-api-1.5.2.ebuild,v 1.1 2014/12/30 23:07:56 mjo Exp $
39
40 EAPI=5
41
42 DESCRIPTION="A simple, object-oriented, PHP Redmine API client"
43 HOMEPAGE="https://github.com/kbsali/${PN}"
44 SRC_URI="https://github.com/kbsali/${PN}/archive/v${PV}.tar.gz"
45
46 LICENSE="MIT"
47 SLOT="0"
48 KEYWORDS="~amd64 ~x86"
49 IUSE="test"
50
51 RDEPEND="dev-lang/php[curl,json,simplexml]"
52 DEPEND="test? ( ${RDEPEND} >=dev-php/phpunit-4 )"
53
54 src_install() {
55 insinto "/usr/share/php/${PN}"
56 doins -r lib
57
58 dodoc example.php README.markdown
59 }
60
61 src_test() {
62 phpunit || die "test suite failed"
63 }
64
65 pkg_postinst() {
66 elog "${PN} has been installed in /usr/share/php/${PN}/."
67 elog "To use it in a script, require('${PN}/lib/autoload.php'), and then"
68 elog "use the Redmine\\Client class normally. Most of the examples in the"
69 elog "documentation should work without modification."
70 }
71
72
73
74 1.1 dev-php/php-redmine-api/ChangeLog
75
76 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/php-redmine-api/ChangeLog?rev=1.1&view=markup
77 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/php-redmine-api/ChangeLog?rev=1.1&content-type=text/plain
78
79 Index: ChangeLog
80 ===================================================================
81 # ChangeLog for dev-php/php-redmine-api
82 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
83 # $Header: /var/cvsroot/gentoo-x86/dev-php/php-redmine-api/ChangeLog,v 1.1 2014/12/30 23:07:56 mjo Exp $
84
85 *php-redmine-api-1.5.2 (30 Dec 2014)
86
87 30 Dec 2014; Michael Orlitzky <mjo@g.o> +metadata.xml,
88 +php-redmine-api-1.5.2.ebuild:
89 New package dev-php/php-redmine-api, a simple object-oriented PHP Redmine API
90 client.