Gentoo Archives: gentoo-commits

From: Brian Evans <grknight@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Console_Getargs/, dev-php/PEAR-Console_Getargs/files/
Date: Tue, 13 Feb 2018 16:18:03
Message-Id: 1518538663.617c456576718b5c7350ae037b48574f5f732951.grknight@gentoo
1 commit: 617c456576718b5c7350ae037b48574f5f732951
2 Author: Brian Evans <grknight <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 13 16:06:05 2018 +0000
4 Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 13 16:17:43 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=617c4565
7
8 dev-php/PEAR-Console_Getargs: Drop old version
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 dev-php/PEAR-Console_Getargs/Manifest | 1 -
13 .../PEAR-Console_Getargs-1.3.5-r1.ebuild | 18 ------------------
14 .../files/new-reference-fix.patch | 22 ----------------------
15 3 files changed, 41 deletions(-)
16
17 diff --git a/dev-php/PEAR-Console_Getargs/Manifest b/dev-php/PEAR-Console_Getargs/Manifest
18 index 2558677dcd3..26707a5cf28 100644
19 --- a/dev-php/PEAR-Console_Getargs/Manifest
20 +++ b/dev-php/PEAR-Console_Getargs/Manifest
21 @@ -1,2 +1 @@
22 -DIST Console_Getargs-1.3.5.tgz 18207 BLAKE2B d68ea1220700d43a9d7a0844d8659f9e95b377f9a9c609501d0b325083013ac220367c98b545917066e952a8c304703dddf920cdb80c129f222873934895822e SHA512 2e79bfc3947dbce928ae592d825ea16414de147a10f7c41a896d9a557c40a1e83842e39de6e6a78918d91235da73307f84b837a3d049b36cacd202c4b8aa7fd6
23 DIST Console_Getargs-1.4.0.tgz 18267 BLAKE2B c0aab73414a0b6dec9818faa2eae4a4f54d70168d089bb64497599e88f4b8ff86e4195e3705a75bece25f6c7d1054759b846be75f7fc749f1d50b4447ad9ec50 SHA512 927777f48599f64e2cdb05b80a473741718493e9efc20988f2993e6b092852f1432e2e9732c1470f7d580fc7e4000d563b7915a94305fe572b7f6dc27da0858e
24
25 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
26 deleted file mode 100644
27 index 991a8089f5a..00000000000
28 --- a/dev-php/PEAR-Console_Getargs/PEAR-Console_Getargs-1.3.5-r1.ebuild
29 +++ /dev/null
30 @@ -1,18 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI="6"
35 -
36 -inherit php-pear-r2
37 -
38 -DESCRIPTION="A command-line arguments parser"
39 -
40 -LICENSE="PHP-3"
41 -SLOT="0"
42 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
43 -IUSE=""
44 -
45 -src_prepare() {
46 - eapply "${FILESDIR}/new-reference-fix.patch"
47 - eapply_user
48 -}
49
50 diff --git a/dev-php/PEAR-Console_Getargs/files/new-reference-fix.patch b/dev-php/PEAR-Console_Getargs/files/new-reference-fix.patch
51 deleted file mode 100644
52 index a69aa2b9bde..00000000000
53 --- a/dev-php/PEAR-Console_Getargs/files/new-reference-fix.patch
54 +++ /dev/null
55 @@ -1,22 +0,0 @@
56 -From c769f79831c43f1cad0b4f8831276da93d28f479 Mon Sep 17 00:00:00 2001
57 -From: Daniel O'Connor <daniel.oconnor@×××××.com>
58 -Date: Sun, 6 Nov 2011 13:25:04 +1030
59 -Subject: [PATCH] &new vs new
60 -
61 ----
62 - Console/Getargs.php | 2 +-
63 - 1 file changed, 1 insertion(+), 1 deletion(-)
64 -
65 -diff --git a/Console/Getargs.php b/Console/Getargs.php
66 -index 8ba21c6..c6826ea 100644
67 ---- a/Console/Getargs.php
68 -+++ b/Console/Getargs.php
69 -@@ -224,7 +224,7 @@ class Console_Getargs
70 - function &factory($config = array(), $arguments = null)
71 - {
72 - // Create the options object.
73 -- $obj = & new Console_Getargs_Options();
74 -+ $obj = new Console_Getargs_Options();
75 -
76 - // Try to set up the arguments.
77 - $err = $obj->init($config, $arguments);