summaryrefslogtreecommitdiffstats
path: root/composer-rpm.patch
blob: 548ff707b2fb63f036f28f8124c8a5127494bf98 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
diff -up ./bin/composer.rpm ./bin/composer
--- ./bin/composer.rpm	2015-05-25 15:29:26.000000000 +0200
+++ ./bin/composer	2015-05-26 15:36:46.984350206 +0200
@@ -5,7 +5,16 @@ 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';
+// Ensure correct include_path for RHSCL
+$inc = get_include_path();
+$dirs = explode(':', $inc);
+if (!in_array('/usr/share/php', $dirs)) {
+    $dirs[] = '/usr/share/php';
+    set_include_path(implode(':', $dirs));
+}
+unset ($inc, $dirs);
+
+require '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-02-25 20:44:34.000000000 +0100
+++ ./src/Composer/Json/JsonFile.php	2015-02-26 10:25:16.012610034 +0100
@@ -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.old src/Composer/Util/SpdxLicense.php
--- ./src/Composer/Util/SpdxLicense.php.old	2015-04-17 09:57:53.680999733 +0200
+++ ./src/Composer/Util/SpdxLicense.php	2015-04-17 09:59:50.397498276 +0200
@@ -38,7 +38,7 @@ class SpdxLicense
             return $this->licenses;
         }

-        $jsonFile = new JsonFile(__DIR__ . '/../../../res/spdx-licenses.json');
+        $jsonFile = new JsonFile((getenv('BUILDROOT')?:'') . '/usr/share/composer/res/spdx-licenses.json');
         $this->licenses = $jsonFile->read();

         return $this->licenses;
diff -up src/Composer/Util/SpdxLicensesUpdater.php.old src/Composer/Util/SpdxLicensesUpdater.php
--- ./src/Composer/Util/SpdxLicensesUpdater.php.old	2015-04-17 09:58:00.645029479 +0200
+++ ./src/Composer/Util/SpdxLicensesUpdater.php	2015-04-17 10:00:36.578695534 +0200
@@ -28,7 +28,7 @@ class SpdxLicensesUpdater
     {
         $json = json_encode($this->getLicenses(), true);
         $prettyJson = JsonFormatter::format($json, true, true);
-        file_put_contents(__DIR__ . '/../../../res/spdx-licenses.json', $prettyJson);
+        file_put_contents((getenv('BUILDROOT')?:'') . '/usr/share/composer/res/spdx-licenses.json', $prettyJson);
     }

     private function getLicenses()
diff -up ./tests/Composer/Test/Json/JsonFileTest.php.rpm ./tests/Composer/Test/Json/JsonFileTest.php
--- ./tests/Composer/Test/Json/JsonFileTest.php.rpm	2015-02-26 10:26:10.607821640 +0100
+++ ./tests/Composer/Test/Json/JsonFileTest.php	2015-02-26 10:27:05.430034125 +0100
@@ -54,6 +54,7 @@ class JsonFileTest extends \PHPUnit_Fram
 
     public function testParseErrorDetectSingleQuotes()
     {
+        $this->markTestSkipped('jsonc issue');
         $json = '{
         \'foo\': "bar"
 }';