Hi Dominique, > Next version will issue a warning when a patch cannot be parsed *if* > the -force option is passed to cme.
Thanks! > To be sure that I've addressed your patch issue, could you send me an > example of a patch that cause you problem with cme ? Attached, picked up from the current experimental version of the owncloud package. Regards David
From: =?utf-8?q?David_Pr=C3=A9vot?= <[email protected]> Date: Tue, 5 Nov 2013 20:39:36 -0400 Subject: Adapt Doctrine, Symphony, Patchwork and Pimple path MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit The Debian package depends on the needed classes instead of embedding them, i.e. php-doctrine-common, php-symfony-console, php-symfony-routing, php-patchwork-utf8 and php-pimple. php-doctrine-dbal canât be used currently because upstream made some modifications that makes it incompatible with the original one. Forwarded: not-needed Last-Update: 2014-05-26 Gbp: Topic path --- lib/base.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/base.php b/lib/base.php index c4824d1..6c6d78e 100644 --- a/lib/base.php +++ b/lib/base.php @@ -411,12 +411,12 @@ class OC { // register autoloader require_once __DIR__ . '/autoloader.php'; self::$loader = new \OC\Autoloader(); - self::$loader->registerPrefix('Doctrine\\Common', 'doctrine/common/lib'); + self::$loader->registerPrefix('Doctrine\\Common', '/usr/share/php'); self::$loader->registerPrefix('Doctrine\\DBAL', 'doctrine/dbal/lib'); - self::$loader->registerPrefix('Symfony\\Component\\Routing', 'symfony/routing'); - self::$loader->registerPrefix('Symfony\\Component\\Console', 'symfony/console'); - self::$loader->registerPrefix('Patchwork', '3rdparty'); - self::$loader->registerPrefix('Pimple', '3rdparty/Pimple'); + self::$loader->registerPrefix('Symfony\\Component\\Routing', '/usr/share/php'); + self::$loader->registerPrefix('Symfony\\Component\\Console', '/usr/share/php'); + self::$loader->registerPrefix('Patchwork', '/usr/share/php'); + self::$loader->registerPrefix('Pimple', '/usr/share/php'); spl_autoload_register(array(self::$loader, 'load')); // set some stuff

