Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/sebastian-diff/files/, dev-php/sebastian-diff/
Date: Thu, 04 May 2017 12:28:37
Message-Id: 1493900877.7bed29d1e37576754311964464ded57ef9b40ed4.mjo@gentoo
1 commit: 7bed29d1e37576754311964464ded57ef9b40ed4
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 4 12:05:12 2017 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Thu May 4 12:27:57 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bed29d1
7
8 dev-php/sebastian-diff: new revision to fix autoloader class names.
9
10 Two of the class names in this package's autoload.php were in error:
11 they were named after the filename, instead of the classes that they
12 actually contain (perhaps this is a bug upstream?). In any case, the
13 PHPUnit test suite for symfony-finder was failing looking for a class
14 that it couldn't find. The new revision should force users to install
15 the updated autoload.php.
16
17 Package-Manager: Portage-2.3.3, Repoman-2.3.1
18
19 dev-php/sebastian-diff/files/autoload.php | 4 ++--
20 .../{sebastian-diff-1.4.1.ebuild => sebastian-diff-1.4.1-r1.ebuild} | 0
21 2 files changed, 2 insertions(+), 2 deletions(-)
22
23 diff --git a/dev-php/sebastian-diff/files/autoload.php b/dev-php/sebastian-diff/files/autoload.php
24 index 40925e7dd6f..5b72dc30331 100644
25 --- a/dev-php/sebastian-diff/files/autoload.php
26 +++ b/dev-php/sebastian-diff/files/autoload.php
27 @@ -13,8 +13,8 @@ if (!class_exists('Fedora\\Autoloader\\Autoload', false)) {
28 'sebastianbergmann\diff\line' => '/Line.php',
29 'sebastianbergmann\diff\parser' => '/Parser.php',
30 'sebastianbergmann\diff\lcs\longestcommonsubsequence' => '/LCS/LongestCommonSubsequence.php',
31 - 'sebastianbergmann\diff\lcs\memoryefficientlongestcommonsubsequenceimplementation' => '/LCS/MemoryEfficientLongestCommonSubsequenceImplementation.php',
32 - 'sebastianbergmann\diff\lcs\timeefficientlongestcommonsubsequenceimplementation' => '/LCS/TimeEfficientLongestCommonSubsequenceImplementation.php',
33 + 'sebastianbergmann\diff\lcs\memoryefficientimplementation' => '/LCS/MemoryEfficientLongestCommonSubsequenceImplementation.php',
34 + 'sebastianbergmann\diff\lcs\timeefficientimplementation' => '/LCS/TimeEfficientLongestCommonSubsequenceImplementation.php',
35 ),
36 __DIR__
37 );
38
39 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
40 similarity index 100%
41 rename from dev-php/sebastian-diff/sebastian-diff-1.4.1.ebuild
42 rename to dev-php/sebastian-diff/sebastian-diff-1.4.1-r1.ebuild