Gentoo Archives: gentoo-commits

From: "Matti Bickel (mabi)" <mabi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-php/phing: phing-2.6.1.ebuild ChangeLog
Date: Sat, 04 Jan 2014 19:52:23
Message-Id: 20140104195217.C017B2004C@flycatcher.gentoo.org
1 mabi 14/01/04 19:52:17
2
3 Modified: ChangeLog
4 Added: phing-2.6.1.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0xDDF971F118EEA5E6!)
9
10 Revision Changes Path
11 1.13 dev-php/phing/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/phing/ChangeLog?rev=1.13&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/phing/ChangeLog?rev=1.13&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/phing/ChangeLog?r1=1.12&r2=1.13
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-php/phing/ChangeLog,v
20 retrieving revision 1.12
21 retrieving revision 1.13
22 diff -u -r1.12 -r1.13
23 --- ChangeLog 17 Aug 2013 01:09:36 -0000 1.12
24 +++ ChangeLog 4 Jan 2014 19:52:17 -0000 1.13
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-php/phing
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-php/phing/ChangeLog,v 1.12 2013/08/17 01:09:36 patrick Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-php/phing/ChangeLog,v 1.13 2014/01/04 19:52:17 mabi Exp $
31 +
32 +*phing-2.6.1 (04 Jan 2014)
33 +
34 + 04 Jan 2014; Matti Bickel <mabi@g.o> +phing-2.6.1.ebuild:
35 + version bump
36
37 17 Aug 2013; Patrick Lauer <patrick@g.o> -phing-2.4.5.ebuild:
38 QA: Punt version with broken deps
39
40
41
42 1.1 dev-php/phing/phing-2.6.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/phing/phing-2.6.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/phing/phing-2.6.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: phing-2.6.1.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-php/phing/phing-2.6.1.ebuild,v 1.1 2014/01/04 19:52:17 mabi Exp $
52
53 EAPI="5"
54
55 inherit php-pear-lib-r1 eutils
56
57 DESCRIPTION="PHP project build system based on Apache Ant"
58 HOMEPAGE="http://www.phing.info/"
59 SRC_URI="http://pear.phing.info/get/phing-${PV/_/}.tgz"
60
61 LICENSE="LGPL-2.1"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="+minimal"
65
66 DEPEND=""
67 RDEPEND="!minimal? ( >=dev-php/PEAR-PhpDocumentor-1.4.0
68 >=dev-php/PEAR-PEAR_PackageFileManager-1.5.2
69 >=dev-php/PEAR-VersionControl_SVN-0.3.0_alpha1
70 >=dev-php/phpunit-3.2.0
71 >=dev-php/xdebug-2.0.0
72 >=dev-php/simpletest-1.0.1_beta2 )
73 dev-lang/php[xml,xslt]
74 "
75
76 S=${WORKDIR}/${PN}-${PV/_/}
77
78 pkg_postinst() {
79 if use minimal; then
80 elog "You have enabled the minimal USE flag. If you want to use features"
81 elog "from xdebug, phpunit, simpletest and more, disable the"
82 elog "USE flag or emerge the packages manually"
83 fi
84 }