commit:     8544036496c44901cc6d67c2b3f177e78d4c5378
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 11 18:54:54 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Sep 11 18:56:31 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85440364

dev-php/PEAR-HTML_Template_IT: Remove last-rited pkg

 dev-php/PEAR-HTML_Template_IT/Manifest             |  1 -
 .../PEAR-HTML_Template_IT-1.3.0-r1.ebuild          | 32 -----------
 .../PEAR-HTML_Template_IT-1.3.0.ebuild             | 12 -----
 .../PEAR-HTML_Template_IT/files/constructor.patch  | 62 ----------------------
 .../files/preg-callback.patch                      | 17 ------
 dev-php/PEAR-HTML_Template_IT/metadata.xml         |  8 ---
 profiles/package.mask                              |  1 -
 7 files changed, 133 deletions(-)

diff --git a/dev-php/PEAR-HTML_Template_IT/Manifest 
b/dev-php/PEAR-HTML_Template_IT/Manifest
deleted file mode 100644
index ff46c074bfc..00000000000
--- a/dev-php/PEAR-HTML_Template_IT/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST HTML_Template_IT-1.3.0.tgz 23309 SHA256 
fe042e9fcc34b77cb6c008090257a25c39e3c1f5e3b0cac99e4eef142954fe70 SHA512 
3174db25b09de3dd11e572c6f85b40ba8d6dd213175bcf9b308a52a6b3756ffa7870cfca5766f5692282b5788d6ae586003259e518f26fc263b25da12f99e168
 WHIRLPOOL 
6591343353dcd5ce09161d0afed1ebedaf6d92592ef467f11bb1126c733059a41d043675d8ed966d0cd949cfc22897cc659c5c229d85bd421221a11f6fb4cff4

diff --git 
a/dev-php/PEAR-HTML_Template_IT/PEAR-HTML_Template_IT-1.3.0-r1.ebuild 
b/dev-php/PEAR-HTML_Template_IT/PEAR-HTML_Template_IT-1.3.0-r1.ebuild
deleted file mode 100644
index c60b49c2ffd..00000000000
--- a/dev-php/PEAR-HTML_Template_IT/PEAR-HTML_Template_IT-1.3.0-r1.ebuild
+++ /dev/null
@@ -1,32 +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="Integrated Templates"
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
-IUSE="examples test"
-DEPEND="test? ( dev-php/phpunit ${RDEPEND} )"
-
-src_prepare() {
-       eapply "${FILESDIR}/preg-callback.patch" \
-               "${FILESDIR}/constructor.patch"
-       eapply_user
-}
-
-src_install() {
-       use examples && HTML_DOCS=(
-               examples/sample_it.php
-               examples/sample_itx_addblockfile.php
-               examples/templates/
-       )
-       php-pear-r2_src_install
-}
-
-src_test() {
-       phpunit tests/AllTests.php || die
-}

diff --git a/dev-php/PEAR-HTML_Template_IT/PEAR-HTML_Template_IT-1.3.0.ebuild 
b/dev-php/PEAR-HTML_Template_IT/PEAR-HTML_Template_IT-1.3.0.ebuild
deleted file mode 100644
index 6afed25538f..00000000000
--- a/dev-php/PEAR-HTML_Template_IT/PEAR-HTML_Template_IT-1.3.0.ebuild
+++ /dev/null
@@ -1,12 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit php-pear-r1
-
-DESCRIPTION="Integrated Templates"
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
-IUSE=""

diff --git a/dev-php/PEAR-HTML_Template_IT/files/constructor.patch 
b/dev-php/PEAR-HTML_Template_IT/files/constructor.patch
deleted file mode 100644
index 61d54eab4e2..00000000000
--- a/dev-php/PEAR-HTML_Template_IT/files/constructor.patch
+++ /dev/null
@@ -1,62 +0,0 @@
-diff -aurN a/HTML/Template/IT_Error.php b/HTML/Template/IT_Error.php
---- a/HTML/Template/IT_Error.php       2010-03-10 03:08:10.000000000 -0500
-+++ b/HTML/Template/IT_Error.php       2017-08-01 16:44:31.257269180 -0400
-@@ -58,8 +58,11 @@
-      */
-     function IT_Error($msg, $file = __FILE__, $line = __LINE__)
-     {
-+        $this->__construct($msg, $file, $line);
-+    }
-+    function __construct($msg, $file = __FILE__, $line = __LINE__)
-+    {
-         $this->PEAR_Error(sprintf("%s [%s on line %d].", $msg, $file, 
$line)); 
-     } // end func IT_Error
-   
- } // end class IT_Error
--?>
-diff -aurN a/HTML/Template/IT.php b/HTML/Template/IT.php
---- a/HTML/Template/IT.php     2017-08-01 16:40:29.822907534 -0400
-+++ b/HTML/Template/IT.php     2017-08-01 16:44:46.515860952 -0400
-@@ -409,6 +409,10 @@
-      */
-     function HTML_Template_IT($root = '', $options = null)
-     {
-+        $this->__construct($root, $options);
-+    }
-+    function __construct($root = '', $options = null)
-+    {
-         if (!is_null($options)) {
-             $this->setOptions($options);
-         }
-@@ -1184,4 +1188,3 @@
-                 $errorMessages[$value] : $errorMessages[IT_ERROR];
-     }
- } // end class IntegratedTemplate
--?>
-diff -aurN a/HTML/Template/ITX.php b/HTML/Template/ITX.php
---- a/HTML/Template/ITX.php    2010-03-10 03:08:10.000000000 -0500
-+++ b/HTML/Template/ITX.php    2017-08-01 16:44:41.185654236 -0400
-@@ -138,13 +138,17 @@
-      */
-     function HTML_Template_ITX($root = '')
-     {
-+        $this->__construct($root);
-+    }
-+    function __construct($root = '')
-+    {
- 
-         $this->checkblocknameRegExp = '@' . $this->blocknameRegExp . '@';
- 
-         $this->functionRegExp = '@' . $this->functionPrefix . '(' .
-                                 $this->functionnameRegExp . ')\s*\(@sm';
- 
--        $this->HTML_Template_IT($root);
-+        parent::__construct($root);
-     } // end func constructor
- 
-     /**
-@@ -886,4 +890,3 @@
-     } // end func warning
- 
- } // end class HTML_Template_ITX
--?>

diff --git a/dev-php/PEAR-HTML_Template_IT/files/preg-callback.patch 
b/dev-php/PEAR-HTML_Template_IT/files/preg-callback.patch
deleted file mode 100644
index 60ae20af189..00000000000
--- a/dev-php/PEAR-HTML_Template_IT/files/preg-callback.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff -aurN a/HTML/Template/IT.php b/HTML/Template/IT.php
---- a/HTML/Template/IT.php     2010-03-10 03:08:10.000000000 -0500
-+++ b/HTML/Template/IT.php     2017-08-01 15:12:31.161235223 -0400
-@@ -1088,9 +1088,10 @@
-         $content = fread($fh, $fsize);
-         fclose($fh);
- 
--        return preg_replace(
--            "#<!-- INCLUDE (.*) -->#ime",
--            "\$this->getFile('\\1')",
-+        return preg_replace_callback(
-+            "#<!-- INCLUDE (.*) -->#im",
-+            function($matches) {
-+              return $this->getFile($matches[1]); },
-             $content
-         );
-     } // end func getFile

diff --git a/dev-php/PEAR-HTML_Template_IT/metadata.xml 
b/dev-php/PEAR-HTML_Template_IT/metadata.xml
deleted file mode 100644
index aca42932b83..00000000000
--- a/dev-php/PEAR-HTML_Template_IT/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-<maintainer type="project">
-       <email>[email protected]</email>
-       <name>PHP</name>
-</maintainer>
-</pkgmetadata>

diff --git a/profiles/package.mask b/profiles/package.mask
index f04ae2a48ef..e2b60c7767a 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -355,7 +355,6 @@ kde-apps/kommander
 # Masked for removal in 30 days
 dev-php/PEAR-Auth
 dev-php/PEAR-Auth_HTTP
-dev-php/PEAR-HTML_Template_IT
 
 # Lars Wendler <[email protected]> (06 Aug 2017)
 # Masked for security reasons:

Reply via email to