commit: 7bed29d1e37576754311964464ded57ef9b40ed4
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Thu May 4 12:05:12 2017 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Thu May 4 12:27:57 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bed29d1
dev-php/sebastian-diff: new revision to fix autoloader class names.
Two of the class names in this package's autoload.php were in error:
they were named after the filename, instead of the classes that they
actually contain (perhaps this is a bug upstream?). In any case, the
PHPUnit test suite for symfony-finder was failing looking for a class
that it couldn't find. The new revision should force users to install
the updated autoload.php.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
dev-php/sebastian-diff/files/autoload.php | 4 ++--
.../{sebastian-diff-1.4.1.ebuild => sebastian-diff-1.4.1-r1.ebuild} | 0
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-php/sebastian-diff/files/autoload.php
b/dev-php/sebastian-diff/files/autoload.php
index 40925e7dd6f..5b72dc30331 100644
--- a/dev-php/sebastian-diff/files/autoload.php
+++ b/dev-php/sebastian-diff/files/autoload.php
@@ -13,8 +13,8 @@ if (!class_exists('Fedora\\Autoloader\\Autoload', false)) {
'sebastianbergmann\diff\line' => '/Line.php',
'sebastianbergmann\diff\parser' => '/Parser.php',
'sebastianbergmann\diff\lcs\longestcommonsubsequence' =>
'/LCS/LongestCommonSubsequence.php',
-
'sebastianbergmann\diff\lcs\memoryefficientlongestcommonsubsequenceimplementation'
=> '/LCS/MemoryEfficientLongestCommonSubsequenceImplementation.php',
-
'sebastianbergmann\diff\lcs\timeefficientlongestcommonsubsequenceimplementation'
=> '/LCS/TimeEfficientLongestCommonSubsequenceImplementation.php',
+ 'sebastianbergmann\diff\lcs\memoryefficientimplementation' =>
'/LCS/MemoryEfficientLongestCommonSubsequenceImplementation.php',
+ 'sebastianbergmann\diff\lcs\timeefficientimplementation' =>
'/LCS/TimeEfficientLongestCommonSubsequenceImplementation.php',
),
__DIR__
);
diff --git a/dev-php/sebastian-diff/sebastian-diff-1.4.1.ebuild
b/dev-php/sebastian-diff/sebastian-diff-1.4.1-r1.ebuild
similarity index 100%
rename from dev-php/sebastian-diff/sebastian-diff-1.4.1.ebuild
rename to dev-php/sebastian-diff/sebastian-diff-1.4.1-r1.ebuild