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-Archive_Tar/
Date: Thu, 28 Jul 2016 14:45:32
Message-Id: 1469716666.96d514fd3be1d69ff4da6fdc25131d0fec8fdbcc.mjo@gentoo
1 commit: 96d514fd3be1d69ff4da6fdc25131d0fec8fdbcc
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 28 14:04:07 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=96d514fd
7
8 dev-php/PEAR-Archive_Tar: 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 ...-r1.ebuild => PEAR-Archive_Tar-1.4.2-r2.ebuild} | 24 +++++++++++-----------
20 1 file changed, 12 insertions(+), 12 deletions(-)
21
22 diff --git a/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.2-r1.ebuild b/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.2-r2.ebuild
23 similarity index 53%
24 rename from dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.2-r1.ebuild
25 rename to dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.2-r2.ebuild
26 index d0d4b20..4012f54 100644
27 --- a/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.2-r1.ebuild
28 +++ b/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.2-r2.ebuild
29 @@ -2,31 +2,31 @@
30 # Distributed under the terms of the GNU General Public License v2
31 # $Id$
32
33 -EAPI="6"
34 +EAPI=6
35
36 MY_PN="${PN/PEAR-/}"
37 MY_P="${MY_PN}-${PV}"
38
39 DESCRIPTION="Tar file management class"
40 -
41 +HOMEPAGE="http://pear.php.net/package/${MY_PN}"
42 +SRC_URI="http://pear.php.net/get/${MY_P}.tgz"
43 LICENSE="BSD"
44 SLOT="0"
45 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
46 IUSE=""
47 -SRC_URI="http://pear.php.net/get/${MY_P}.tgz"
48 -DEPEND="dev-lang/php:*[pcre(+)]
49 - >=dev-php/PEAR-PEAR-1.9.0
50 -"
51 -RDEPEND="dev-lang/php:*[bzip2,zlib]
52 - ${DEPEND}"
53 -PDEPEND="dev-php/pear"
54 -HOMEPAGE="http://pear.php.net/package/Archive_Tar"
55 +
56 +# bzip2 and zlib are needed for compressed tarballs, and there's one
57 +# call to preg_match to test paths against a pattern of files and
58 +# directories that will be ignored.
59 +RDEPEND="dev-lang/php:*[bzip2,pcre(+),zlib]"
60 +PDEPEND="dev-php/PEAR-PEAR"
61 +DEPEND=""
62
63 S="${WORKDIR}/${MY_P}"
64
65 src_install() {
66 - insinto /usr/share/php/Archive
67 - doins Archive/*
68 + insinto /usr/share/php
69 + doins -r Archive
70
71 dodoc docs/*
72 }