diff -Nru php-fxsl-1.1.1/debian/changelog php-fxsl-1.1.1/debian/changelog --- php-fxsl-1.1.1/debian/changelog 2016-03-09 15:37:17.000000000 +0000 +++ php-fxsl-1.1.1/debian/changelog 2017-12-04 02:37:51.000000000 +0000 @@ -1,3 +1,10 @@ +php-fxsl (1.1.1-3) unstable; urgency=medium + + * Move to namespaced phpunit versions (Closes: #882892) + * Update Standards-Version to 4.1.2 + + -- David Prévot Sun, 03 Dec 2017 16:37:51 -1000 + php-fxsl (1.1.1-2) unstable; urgency=medium * PHP 7.0 transition: diff -Nru php-fxsl-1.1.1/debian/control php-fxsl-1.1.1/debian/control --- php-fxsl-1.1.1/debian/control 2016-03-09 15:36:39.000000000 +0000 +++ php-fxsl-1.1.1/debian/control 2017-12-04 02:37:46.000000000 +0000 @@ -14,7 +14,7 @@ phpmd, phpunit, pkg-php-tools (>= 1.7~) -Standards-Version: 3.9.7 +Standards-Version: 4.1.2 Homepage: https://github.com/theseer/fXSL Vcs-Git: git://anonscm.debian.org/pkg-php/php-fxsl.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-php/php-fxsl.git diff -Nru php-fxsl-1.1.1/debian/patches/0003-Move-to-namespaced-phpunit-versions.patch php-fxsl-1.1.1/debian/patches/0003-Move-to-namespaced-phpunit-versions.patch --- php-fxsl-1.1.1/debian/patches/0003-Move-to-namespaced-phpunit-versions.patch 1970-01-01 00:00:00.000000000 +0000 +++ php-fxsl-1.1.1/debian/patches/0003-Move-to-namespaced-phpunit-versions.patch 2017-12-04 02:37:42.000000000 +0000 @@ -0,0 +1,41 @@ +From: =?utf-8?q?David_Pr=C3=A9vot?= +Date: Sun, 3 Dec 2017 16:31:52 -1000 +Subject: Move to namespaced phpunit versions + +Debian-Bug: https://bugs.debian.org/882892 +Forwarded: https://github.com/theseer/fXSL/pull/6 +--- + tests/fxslcallbackTest.php | 4 +++- + tests/fxsltprocessorTest.php | 4 +++- + 2 files changed, 6 insertions(+), 2 deletions(-) + +diff --git a/tests/fxslcallbackTest.php b/tests/fxslcallbackTest.php +index 9e27596..1151667 100644 +--- a/tests/fxslcallbackTest.php ++++ b/tests/fxslcallbackTest.php +@@ -2,7 +2,9 @@ + + namespace TheSeer\fXSL; + +-class fXSLCallbackTest extends \PHPUnit_Framework_TestCase { ++use PHPUnit\Framework\TestCase; ++ ++class fXSLCallbackTest extends TestCase { + + public function testSimple() { + $object = new \stdClass(); +diff --git a/tests/fxsltprocessorTest.php b/tests/fxsltprocessorTest.php +index 7de948c..cc08b4d 100644 +--- a/tests/fxsltprocessorTest.php ++++ b/tests/fxsltprocessorTest.php +@@ -2,7 +2,9 @@ + + namespace TheSeer\fXSL; + +-class fxsltprocessorTest extends \PHPUnit_Framework_TestCase { ++use PHPUnit\Framework\TestCase; ++ ++class fxsltprocessorTest extends TestCase { + + public function testLoadingStylesheetFromFile() { + $dom = new \DOMDocument(); diff -Nru php-fxsl-1.1.1/debian/patches/series php-fxsl-1.1.1/debian/patches/series --- php-fxsl-1.1.1/debian/patches/series 2016-03-09 15:33:02.000000000 +0000 +++ php-fxsl-1.1.1/debian/patches/series 2017-12-04 02:37:42.000000000 +0000 @@ -1,2 +1,3 @@ 0001-Adapt-main-target-to-Debian-packaging-expectations.patch 0002-Adapt-path.patch +0003-Move-to-namespaced-phpunit-versions.patch