summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Evans <grknight@gentoo.org>2019-08-26 09:37:27 -0400
committerBrian Evans <grknight@gentoo.org>2019-08-26 09:37:27 -0400
commit147ff3d952aeea19a822f42ba2805e980d696735 (patch)
tree7d65d3bf828d27d052690e34c9c617ede568ff18 /dev-php/twig/files
parentdev-php/twig: Version bump for 1.42.3 (diff)
downloadgentoo-147ff3d952aeea19a822f42ba2805e980d696735.tar.gz
gentoo-147ff3d952aeea19a822f42ba2805e980d696735.tar.bz2
gentoo-147ff3d952aeea19a822f42ba2805e980d696735.zip
dev-php/twig: Drop old versions which include the extension
PHP 5.6 is EOL and the extension needs to go away PHP team is planning on masking 5.6 2019-10-01 Package-Manager: Portage-2.3.72, Repoman-2.3.17 Signed-off-by: Brian Evans <grknight@gentoo.org>
Diffstat (limited to 'dev-php/twig/files')
-rw-r--r--dev-php/twig/files/1.40.1-autoloader-path.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/dev-php/twig/files/1.40.1-autoloader-path.patch b/dev-php/twig/files/1.40.1-autoloader-path.patch
deleted file mode 100644
index 8c236883e070..000000000000
--- a/dev-php/twig/files/1.40.1-autoloader-path.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- a/lib/Twig/Autoloader.php 2019-04-29 16:12:28.000000000 +0200
-+++ b/lib/Twig/Autoloader.php.new 2019-05-06 21:37:39.955238245 +0200
-@@ -43,9 +43,11 @@
- return;
- }
-
-- if (is_file($file = __DIR__.'/../'.str_replace(['_', "\0"], ['/', ''], $class).'.php')) {
-+ if (is_file($file = __DIR__.'/../'.str_replace(['Twig_', "\0"], ['lib/', ''], $class).'.php')) {
- require $file;
-- } elseif (is_file($file = __DIR__.'/../../src/'.str_replace(['Twig\\', '\\', "\0"], ['', '/', ''], $class).'.php')) {
-+ } elseif (is_file($file = __DIR__.'/../'.str_replace(['_', "\0"], ['/', ''], $class).'.php')) {
-+ require $file;
-+ } elseif (is_file($file = __DIR__.'/../src/'.str_replace(['Twig\\', '\\', "\0"], ['', '/', ''], $class).'.php')) {
- require $file;
- }
- }