From 323064013489986568b8fea1dddfa1b54eeae101 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 6 Oct 2020 15:27:03 +0200 Subject: update to 5.4.1 --- php-bartlett-PHP-CompatInfo-5.3.0-rpm.patch | 80 ----------------------------- 1 file changed, 80 deletions(-) delete mode 100644 php-bartlett-PHP-CompatInfo-5.3.0-rpm.patch (limited to 'php-bartlett-PHP-CompatInfo-5.3.0-rpm.patch') diff --git a/php-bartlett-PHP-CompatInfo-5.3.0-rpm.patch b/php-bartlett-PHP-CompatInfo-5.3.0-rpm.patch deleted file mode 100644 index e460999..0000000 --- a/php-bartlett-PHP-CompatInfo-5.3.0-rpm.patch +++ /dev/null @@ -1,80 +0,0 @@ -diff -up ./bin/phpcompatinfo.json.dist.rpm ./bin/phpcompatinfo.json.dist ---- ./bin/phpcompatinfo.json.dist.rpm 2020-07-07 10:49:03.000000000 +0200 -+++ ./bin/phpcompatinfo.json.dist 2020-07-07 15:10:25.330090185 +0200 -@@ -6,6 +6,19 @@ - } - ], - "plugins": [ -+ { -+ "name": "Cache", -+ "class": "Bartlett\\Reflect\\Plugin\\CachePlugin", -+ "options": { -+ "adapter": "DoctrineCacheAdapter", -+ "backend": { -+ "class": "Doctrine\\Common\\Cache\\FilesystemCache", -+ "args": [ -+ "%{HOME}/.cache/php-reflect" -+ ] -+ } -+ } -+ } - ], - "analysers" : [ - ], -diff -up ./bin/phpcompatinfo.rpm ./bin/phpcompatinfo ---- ./bin/phpcompatinfo.rpm 2020-07-07 10:49:03.000000000 +0200 -+++ ./bin/phpcompatinfo 2020-07-07 15:10:25.330090185 +0200 -@@ -1,23 +1,13 @@ - #!/usr/bin/env php - setUseIncludePath(true); - - if (PHP_SAPI !== 'cli') { - return; -diff -up ./src/Bartlett/CompatInfo/Console/Application.php.rpm ./src/Bartlett/CompatInfo/Console/Application.php ---- ./src/Bartlett/CompatInfo/Console/Application.php.rpm 2020-07-07 10:49:03.000000000 +0200 -+++ ./src/Bartlett/CompatInfo/Console/Application.php 2020-07-07 15:10:37.214047839 +0200 -@@ -16,8 +16,6 @@ namespace Bartlett\CompatInfo\Console; - use Bartlett\CompatInfo\Util\Database; - use Bartlett\Reflect\Console\Application as BaseApplication; - --use Jean85\PrettyVersions; -- - use OutOfBoundsException; - - /** -@@ -48,12 +46,7 @@ class Application extends BaseApplicatio - - public function __construct() - { -- try { -- $version = PrettyVersions::getVersion('bartlett/php-compatinfo')->getPrettyVersion(); -- } catch (OutOfBoundsException $e) { -- $version = self::VERSION; -- } -- parent::__construct(self::NAME, $version); -+ parent::__construct(self::NAME, self::VERSION); - } - - /** -- cgit