summaryrefslogtreecommitdiffstats
path: root/composer-rpm.patch
blob: 52d26ad67e0a3f8d06ed1b1af94b063a9a4bb1f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
diff -up ./bin/composer.rpm ./bin/composer
--- ./bin/composer.rpm	2015-07-14 14:37:15.000000000 +0200
+++ ./bin/composer	2015-07-16 08:58:33.415021590 +0200
@@ -5,7 +5,7 @@ if (PHP_SAPI !== 'cli') {
     echo 'Warning: Composer should be invoked via the CLI version of PHP, not the '.PHP_SAPI.' SAPI'.PHP_EOL;
 }
 
-require __DIR__.'/../src/bootstrap.php';
+require '/usr/share/php/Composer/autoload.php';
 
 use Composer\Console\Application;
 
diff -up ./src/Composer/Json/JsonFile.php.rpm ./src/Composer/Json/JsonFile.php
--- ./src/Composer/Json/JsonFile.php.rpm	2015-07-14 14:37:15.000000000 +0200
+++ ./src/Composer/Json/JsonFile.php	2015-07-16 08:58:33.415021590 +0200
@@ -149,7 +149,7 @@ class JsonFile
             self::validateSyntax($content, $this->path);
         }
 
-        $schemaFile = __DIR__ . '/../../../res/composer-schema.json';
+        $schemaFile = (getenv('BUILDROOT')?:'') . '/usr/share/composer/res/composer-schema.json';
         $schemaData = json_decode(file_get_contents($schemaFile));
 
         if ($schema === self::LAX_SCHEMA) {
diff -up ./src/Composer/Util/SpdxLicense.php.rpm ./src/Composer/Util/SpdxLicense.php
--- ./src/Composer/Util/SpdxLicense.php.rpm	2015-07-16 08:58:33.415021590 +0200
+++ ./src/Composer/Util/SpdxLicense.php	2015-07-16 08:59:36.006332340 +0200
@@ -167,7 +167,7 @@ class SpdxLicense
             return $this->licenses;
         }
 
-        $jsonFile = file_get_contents(__DIR__ . '/../../../res/spdx-licenses.json');
+        $jsonFile = file_get_contents((getenv('BUILDROOT')?:'') . '/usr/share/composer/res/spdx-licenses.json');
         $this->licenses = json_decode($jsonFile, true);
 
         return $this->licenses;
@@ -182,7 +182,7 @@ class SpdxLicense
             return $this->exceptions;
         }
 
-        $jsonFile = file_get_contents(__DIR__ . '/../../../res/spdx-exceptions.json');
+        $jsonFile = file_get_contents((getenv('BUILDROOT')?:'') . '/usr/share/composer/res/spdx-exceptions.json');
         $this->exceptions = json_decode($jsonFile, true);
 
         return $this->exceptions;