Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Console_Getopt/
Date: Thu, 28 Jul 2016 14:45:32
Message-Id: 1469716666.58dfcd33e7bf173be4e0f34e259ebd153fa69ccf.mjo@gentoo
1 commit: 58dfcd33e7bf173be4e0f34e259ebd153fa69ccf
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 28 14:09:48 2016 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 28 14:37:46 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58dfcd33
7
8 dev-php/PEAR-Console_Getopt: new revision to clean up dependencies.
9
10 This package had a build-time dependency on dev-lang/php that was
11 intended to be a runtime dependency; now fixed. There were also
12 redundant dependencies on dev-php/pear and dev-php/PEAR-PEAR (which
13 are the same, for all intents and purposes). The dev-php/pear
14 dependency has been removed in favor of a single PDEPEND on
15 dev-php/PEAR-PEAR.
16
17 Package-Manager: portage-2.2.28
18
19 ...4.1.ebuild => PEAR-Console_Getopt-1.4.1-r1.ebuild} | 19 +++++++++----------
20 1 file changed, 9 insertions(+), 10 deletions(-)
21
22 diff --git a/dev-php/PEAR-Console_Getopt/PEAR-Console_Getopt-1.4.1.ebuild b/dev-php/PEAR-Console_Getopt/PEAR-Console_Getopt-1.4.1-r1.ebuild
23 similarity index 62%
24 rename from dev-php/PEAR-Console_Getopt/PEAR-Console_Getopt-1.4.1.ebuild
25 rename to dev-php/PEAR-Console_Getopt/PEAR-Console_Getopt-1.4.1-r1.ebuild
26 index d2487e4..3924f36 100644
27 --- a/dev-php/PEAR-Console_Getopt/PEAR-Console_Getopt-1.4.1.ebuild
28 +++ b/dev-php/PEAR-Console_Getopt/PEAR-Console_Getopt-1.4.1-r1.ebuild
29 @@ -1,28 +1,27 @@
30 -# Copyright 1999-2015 Gentoo Foundation
31 +# Copyright 1999-2016 Gentoo Foundation
32 # Distributed under the terms of the GNU General Public License v2
33 # $Id$
34
35 -EAPI=5
36 +EAPI=6
37
38 MY_PN="${PN/PEAR-/}"
39 MY_P="${MY_PN}-${PV}"
40
41 DESCRIPTION="Command-line option parser"
42 -
43 +HOMEPAGE="http://pear.php.net/package/${MY_PN}"
44 +SRC_URI="http://pear.php.net/get/${MY_P}.tgz"
45 LICENSE="BSD-2"
46 SLOT="0"
47 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
48 IUSE=""
49 -SRC_URI="http://pear.php.net/get/${MY_P}.tgz"
50 -DEPEND=">=dev-lang/php-5.4:*
51 - >=dev-php/PEAR-PEAR-1.8.1"
52 -RDEPEND="${DEPEND}"
53 -PDEPEND="dev-php/pear"
54 -HOMEPAGE="http://pear.php.net/package/Console_Getopt"
55 +
56 +DEPEND=""
57 +RDEPEND="dev-lang/php:*"
58 +PDEPEND="dev-php/PEAR-PEAR"
59
60 S="${WORKDIR}/${MY_P}"
61
62 src_install() {
63 - insinto /usr/share/php/
64 + insinto /usr/share/php
65 doins -r Console
66 }