diff -Nru php-sql-formatter-1.2.17/debian/changelog php-sql-formatter-1.2.17/debian/changelog --- php-sql-formatter-1.2.17/debian/changelog 2016-02-20 01:01:35.000000000 +0000 +++ php-sql-formatter-1.2.17/debian/changelog 2016-03-03 01:56:13.000000000 +0000 @@ -1,8 +1,11 @@ -php-sql-formatter (1.2.17-1build1) xenial; urgency=medium +php-sql-formatter (1.2.17-2) unstable; urgency=medium - * No-change rebuild against php 7 + * Provide homemade static autoload.php + * Simplified unique patch, and tests + * Update Standards-Version to 3.9.7 + * Rebuild with latest pkg-php-tools for the PHP 7.0 transition - -- Nish Aravamudan Sat, 20 Feb 2016 01:01:35 +0000 + -- David Prévot Wed, 02 Mar 2016 21:55:50 -0400 php-sql-formatter (1.2.17-1) unstable; urgency=low diff -Nru php-sql-formatter-1.2.17/debian/control php-sql-formatter-1.2.17/debian/control --- php-sql-formatter-1.2.17/debian/control 2016-02-20 01:01:35.000000000 +0000 +++ php-sql-formatter-1.2.17/debian/control 2016-03-03 01:48:54.000000000 +0000 @@ -1,13 +1,10 @@ Source: php-sql-formatter Section: php Priority: optional -Maintainer: Ubuntu Developers -XSBC-Original-Maintainer: Debian PHP PEAR Maintainers +Maintainer: Debian PHP PEAR Maintainers Uploaders: David Prévot -Build-Depends: debhelper (>= 9), - phpunit, - pkg-php-tools (>= 1.7~) -Standards-Version: 3.9.6 +Build-Depends: debhelper (>= 9), phpab, phpunit, pkg-php-tools (>= 1.7~) +Standards-Version: 3.9.7 Homepage: https://github.com/jdorn/sql-formatter Vcs-Git: git://anonscm.debian.org/pkg-php/php-sql-formatter.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-php/php-sql-formatter.git diff -Nru php-sql-formatter-1.2.17/debian/patches/0001-Fix-path-in-examples.patch php-sql-formatter-1.2.17/debian/patches/0001-Fix-path-in-examples.patch --- php-sql-formatter-1.2.17/debian/patches/0001-Fix-path-in-examples.patch 2015-01-08 18:13:11.000000000 +0000 +++ php-sql-formatter-1.2.17/debian/patches/0001-Fix-path-in-examples.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -From: =?utf-8?q?David_Pr=C3=A9vot?= -Date: Thu, 8 Jan 2015 06:54:11 -0400 -Subject: Fix path in examples - ---- - examples/cli.php | 2 +- - examples/examples.php | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/examples/cli.php b/examples/cli.php -index 17ee0e1..97df58f 100644 ---- a/examples/cli.php -+++ b/examples/cli.php -@@ -12,6 +12,6 @@ else { - $sql = stream_get_contents(fopen("php://stdin", "r")); - } - --require_once(__DIR__.'/../lib/SqlFormatter.php'); -+require_once('SqlFormatter.php'); - - echo SqlFormatter::format($sql); -diff --git a/examples/examples.php b/examples/examples.php -index f54cfb0..7c6c356 100644 ---- a/examples/examples.php -+++ b/examples/examples.php -@@ -31,7 +31,7 @@ - - +Date: Thu, 8 Jan 2015 06:54:11 -0400 +Subject: Use homemade static autoload in examples and tests + +--- + examples/cli.php | 2 +- + examples/examples.php | 2 +- + tests/SqlFormatterTest.php | 2 +- + tests/performance.php | 2 +- + 4 files changed, 4 insertions(+), 4 deletions(-) + +diff --git a/examples/cli.php b/examples/cli.php +index 17ee0e1..bfbae21 100644 +--- a/examples/cli.php ++++ b/examples/cli.php +@@ -12,6 +12,6 @@ else { + $sql = stream_get_contents(fopen("php://stdin", "r")); + } + +-require_once(__DIR__.'/../lib/SqlFormatter.php'); ++require_once('SqlFormatter/autoload.php'); + + echo SqlFormatter::format($sql); +diff --git a/examples/examples.php b/examples/examples.php +index f54cfb0..22b0344 100644 +--- a/examples/examples.php ++++ b/examples/examples.php +@@ -31,7 +31,7 @@ + + -Date: Thu, 8 Jan 2015 06:56:10 -0400 -Subject: Use installed class for DEP-8 tests - -Gbp: Topic DEP-8 ---- - tests/SqlFormatterTest.php | 2 +- - tests/performance.php | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/tests/SqlFormatterTest.php b/tests/SqlFormatterTest.php -index ca535cf..1deb635 100644 ---- a/tests/SqlFormatterTest.php -+++ b/tests/SqlFormatterTest.php -@@ -1,5 +1,5 @@ -