summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Evans <grknight@gentoo.org>2018-02-13 11:06:05 -0500
committerBrian Evans <grknight@gentoo.org>2018-02-13 11:17:43 -0500
commit617c456576718b5c7350ae037b48574f5f732951 (patch)
tree52c37d3dde096e418d6573da3575cbf1563a6925 /dev-php/PEAR-Console_Getargs
parentdev-php/PEAR-Console_Getargs: Version bump to 1.4.0 with PHP 7 support (diff)
downloadgentoo-617c456576718b5c7350ae037b48574f5f732951.tar.gz
gentoo-617c456576718b5c7350ae037b48574f5f732951.tar.bz2
gentoo-617c456576718b5c7350ae037b48574f5f732951.zip
dev-php/PEAR-Console_Getargs: Drop old version
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'dev-php/PEAR-Console_Getargs')
-rw-r--r--dev-php/PEAR-Console_Getargs/Manifest1
-rw-r--r--dev-php/PEAR-Console_Getargs/PEAR-Console_Getargs-1.3.5-r1.ebuild18
-rw-r--r--dev-php/PEAR-Console_Getargs/files/new-reference-fix.patch22
3 files changed, 0 insertions, 41 deletions
diff --git a/dev-php/PEAR-Console_Getargs/Manifest b/dev-php/PEAR-Console_Getargs/Manifest
index 2558677dcd3a..26707a5cf28a 100644
--- a/dev-php/PEAR-Console_Getargs/Manifest
+++ b/dev-php/PEAR-Console_Getargs/Manifest
@@ -1,2 +1 @@
-DIST Console_Getargs-1.3.5.tgz 18207 BLAKE2B d68ea1220700d43a9d7a0844d8659f9e95b377f9a9c609501d0b325083013ac220367c98b545917066e952a8c304703dddf920cdb80c129f222873934895822e SHA512 2e79bfc3947dbce928ae592d825ea16414de147a10f7c41a896d9a557c40a1e83842e39de6e6a78918d91235da73307f84b837a3d049b36cacd202c4b8aa7fd6
DIST Console_Getargs-1.4.0.tgz 18267 BLAKE2B c0aab73414a0b6dec9818faa2eae4a4f54d70168d089bb64497599e88f4b8ff86e4195e3705a75bece25f6c7d1054759b846be75f7fc749f1d50b4447ad9ec50 SHA512 927777f48599f64e2cdb05b80a473741718493e9efc20988f2993e6b092852f1432e2e9732c1470f7d580fc7e4000d563b7915a94305fe572b7f6dc27da0858e
diff --git a/dev-php/PEAR-Console_Getargs/PEAR-Console_Getargs-1.3.5-r1.ebuild b/dev-php/PEAR-Console_Getargs/PEAR-Console_Getargs-1.3.5-r1.ebuild
deleted file mode 100644
index 991a8089f5af..000000000000
--- a/dev-php/PEAR-Console_Getargs/PEAR-Console_Getargs-1.3.5-r1.ebuild
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit php-pear-r2
-
-DESCRIPTION="A command-line arguments parser"
-
-LICENSE="PHP-3"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE=""
-
-src_prepare() {
- eapply "${FILESDIR}/new-reference-fix.patch"
- eapply_user
-}
diff --git a/dev-php/PEAR-Console_Getargs/files/new-reference-fix.patch b/dev-php/PEAR-Console_Getargs/files/new-reference-fix.patch
deleted file mode 100644
index a69aa2b9bde5..000000000000
--- a/dev-php/PEAR-Console_Getargs/files/new-reference-fix.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-From c769f79831c43f1cad0b4f8831276da93d28f479 Mon Sep 17 00:00:00 2001
-From: Daniel O'Connor <daniel.oconnor@gmail.com>
-Date: Sun, 6 Nov 2011 13:25:04 +1030
-Subject: [PATCH] &new vs new
-
----
- Console/Getargs.php | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/Console/Getargs.php b/Console/Getargs.php
-index 8ba21c6..c6826ea 100644
---- a/Console/Getargs.php
-+++ b/Console/Getargs.php
-@@ -224,7 +224,7 @@ class Console_Getargs
- function &factory($config = array(), $arguments = null)
- {
- // Create the options object.
-- $obj = & new Console_Getargs_Options();
-+ $obj = new Console_Getargs_Options();
-
- // Try to set up the arguments.
- $err = $obj->init($config, $arguments);