summaryrefslogtreecommitdiffstats
path: root/php-bartlett-PHP-CompatInfo-5.3.0-rpm.patch
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2020-07-06 15:25:00 +0200
committerRemi Collet <remi@remirepo.net>2020-07-06 15:25:00 +0200
commitf207de38d4ec2acdbbc165e191b2839cd33f5884 (patch)
tree512f0054e9a9f30b1e9ab321b915336e60d7d48a /php-bartlett-PHP-CompatInfo-5.3.0-rpm.patch
parent19bc8513f2fa37e4f2b5b546b0f67eeef1314ca1 (diff)
test build for upcoming 5.3.0
raise dependency on PHP 7.1.3 raise dependency on bartlett/php-reflect 4.4 raise dependency on bartlett/php-compatinfo-db 2.0 switch to phpunit8
Diffstat (limited to 'php-bartlett-PHP-CompatInfo-5.3.0-rpm.patch')
-rw-r--r--php-bartlett-PHP-CompatInfo-5.3.0-rpm.patch62
1 files changed, 62 insertions, 0 deletions
diff --git a/php-bartlett-PHP-CompatInfo-5.3.0-rpm.patch b/php-bartlett-PHP-CompatInfo-5.3.0-rpm.patch
new file mode 100644
index 0000000..74e4a1c
--- /dev/null
+++ b/php-bartlett-PHP-CompatInfo-5.3.0-rpm.patch
@@ -0,0 +1,62 @@
+diff -up ./bin/phpcompatinfo.json.dist.rpm ./bin/phpcompatinfo.json.dist
+--- ./bin/phpcompatinfo.json.dist.rpm 2020-07-06 10:54:23.000000000 +0200
++++ ./bin/phpcompatinfo.json.dist 2020-07-06 15:17:00.620618627 +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-06 15:17:00.620618627 +0200
++++ ./bin/phpcompatinfo 2020-07-06 15:20:53.977038529 +0200
+@@ -1,23 +1,13 @@
+ #!/usr/bin/env php
+ <?php
+ $appName = 'phpCompatInfo';
++$vendorDir = '/usr/share/php';
+
+-if (\Phar::running()) {
+- $vendorDir = 'phar://' . strtolower($appName) . '.phar/vendor';
+-} else {
+- $baseDir = dirname(__DIR__);
+- $vendorDir = $baseDir . '/vendor';
+-
+- if (!file_exists($vendorDir . '/autoload.php')) {
+- $vendorDir = dirname(dirname($baseDir));
+- }
+-
+- if (!getenv("BARTLETTRC")) {
+- putenv("BARTLETTRC=" . strtolower($appName) . '.json');
+- }
++require_once $vendorDir . '/Bartlett/CompatInfo/autoload.php';
++
++if (!getenv("BARTLETTRC")) {
++ putenv("BARTLETTRC=" . strtolower($appName) . '.json');
+ }
+-$loader = require_once $vendorDir . '/autoload.php';
+-$loader->setUseIncludePath(true);
+
+ if (PHP_SAPI !== 'cli') {
+ return;
+@@ -28,5 +18,5 @@ use Bartlett\CompatInfo\Console\Applicat
+
+ Environment::setScanDir();
+
+-$application = new Application($appName, '5.2.3');
++$application = new Application($appName, '@package_version@');
+ $application->run();