From 96d514fd3be1d69ff4da6fdc25131d0fec8fdbcc Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Thu, 28 Jul 2016 10:04:07 -0400 Subject: dev-php/PEAR-Archive_Tar: new revision to clean up dependencies. This package had a build-time dependency on dev-lang/php that was intended to be a runtime dependency; now fixed. There were also redundant dependencies on dev-php/pear and dev-php/PEAR-PEAR (which are the same, for all intents and purposes). The dev-php/pear dependency has been removed in favor of a single PDEPEND on dev-php/PEAR-PEAR. Package-Manager: portage-2.2.28 --- .../PEAR-Archive_Tar-1.4.2-r1.ebuild | 32 ---------------------- .../PEAR-Archive_Tar-1.4.2-r2.ebuild | 32 ++++++++++++++++++++++ 2 files changed, 32 insertions(+), 32 deletions(-) delete mode 100644 dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.2-r1.ebuild create mode 100644 dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.2-r2.ebuild (limited to 'dev-php') 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-r1.ebuild deleted file mode 100644 index d0d4b2045c63..000000000000 --- a/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.2-r1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="6" - -MY_PN="${PN/PEAR-/}" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="Tar file management class" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="" -SRC_URI="http://pear.php.net/get/${MY_P}.tgz" -DEPEND="dev-lang/php:*[pcre(+)] - >=dev-php/PEAR-PEAR-1.9.0 -" -RDEPEND="dev-lang/php:*[bzip2,zlib] - ${DEPEND}" -PDEPEND="dev-php/pear" -HOMEPAGE="http://pear.php.net/package/Archive_Tar" - -S="${WORKDIR}/${MY_P}" - -src_install() { - insinto /usr/share/php/Archive - doins Archive/* - - dodoc docs/* -} diff --git a/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.2-r2.ebuild b/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.2-r2.ebuild new file mode 100644 index 000000000000..4012f542efa5 --- /dev/null +++ b/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.2-r2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +MY_PN="${PN/PEAR-/}" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Tar file management class" +HOMEPAGE="http://pear.php.net/package/${MY_PN}" +SRC_URI="http://pear.php.net/get/${MY_P}.tgz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="" + +# bzip2 and zlib are needed for compressed tarballs, and there's one +# call to preg_match to test paths against a pattern of files and +# directories that will be ignored. +RDEPEND="dev-lang/php:*[bzip2,pcre(+),zlib]" +PDEPEND="dev-php/PEAR-PEAR" +DEPEND="" + +S="${WORKDIR}/${MY_P}" + +src_install() { + insinto /usr/share/php + doins -r Archive + + dodoc docs/* +} -- cgit v1.2.3-65-gdbad