This comparison shows the changes necessary to convert path /pear/php-log/trunk/debian (Rev 969) TO /pear/php-log/trunk/debian (Rev 994)
@@ -1,21 +1,22 @@
| Source: php-log |
| Section: web |
| Priority: optional |
| Maintainer: Jose Carlos Medeiros <debian@psabs.com.br> |
| Uploaders: Ola Lundqvist <opal@debian.org> |
| Maintainer: Debian PHP Maintainers <pkg-php-maint@lists.alioth.debian.org> |
| Uploaders: Ola Lundqvist <opal@debian.org>, Gregory Colpart (evolix) <reg@evolix.fr> |
| Build-Depends-Indep: php-pear |
| Build-Depends: debhelper (>= 5) |
| Standards-Version: 3.7.2 |
| Standards-Version: 3.7.3 |
| Homepage: http://pear.php.net/package/Log/ |
| Vcs-Svn: svn://svn.debian.org/pkg-php/pear/php-log/trunk |
| Vcs-Browser: http://svn.debian.org/wsvn/pkg-php/pear/php-log/trunk |
| Package: php-log |
| Architecture: all |
| Depends: php-pear |
| Suggests: php-db (>= 1.3), php5-sqlite, php-mdb2 |
| Suggests: php-db (>= 1.3), php5-sqlite |
| Replaces: php4-pear-log (<= 1.9.3-1) |
| Conflicts: php4-pear-log (<= 1.9.3-2) |
| Description: Log module for PEAR |
| The Log framework provides an abstracted logging system. It supports |
| logging to console, file, syslog, SQL, and mcal targets. It also provides |
| a subject - observer mechanism. |
| . |
| Homepage: http://pear.php.net/package/Log/ |
| Description: PHP PEAR modules for logging |
| The Log package provides an abstracted logging framework. It includes output |
| handlers for log files, databases, syslog, email, Firebug, and the console. |
| It also provides composite and subject-observer logging mechanisms. |
@@ -1,3 +1,18 @@
| php-log (1.9.16-1) unstable; urgency=low |
| * New upstream release. |
| * Update to standards version 3.7.3, no further required changes. |
| * Update short description to have unform PEAR packaging. |
| * Migrate homepage to Homepage: field. |
| * Update description like in package.xml. |
| * Remove php-mdb2 from Suggests (php-mdb2 isn't in Debian). |
| * Add Vcs-* fields in debian/control. |
| * Move to team maintainership and update Uploaders. (Closes: #383010) |
| * Upgrade debian/rules to have unform PEAR packaging. |
| * Remove empty directory in debian/rules to fix lintian warning. |
| -- Gregory Colpart (evolix) <reg@evolix.fr> Fri, 08 Feb 2008 23:23:37 +0100 |
| php-log (1.9.11-1) unstable; urgency=low |
| * New upstream release. (Closes: #417567) |
@@ -5,6 +5,10 @@
| # Uncomment this to turn on verbose mode. |
| #export DH_VERBOSE=1 |
| DEB_VERSION := $(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ') |
| DEB_NOEPOCH_VERSION := $(shell echo $(DEB_VERSION) | cut -d: -f2-) |
| DEB_UPSTREAM_VERSION := $(shell echo $(DEB_NOEPOCH_VERSION) | sed 's/-[^-]*$$//') |
| PEAR ?= /usr/bin/pear |
| pear_pkg = $(shell ls |grep Log) |
| package = php-log |
@@ -36,7 +40,18 @@
| # Add here commands to install the package into debian/package. |
| cp package.xml $(pear_pkg)/package.xml; |
| $(PEAR) install -n -R debian/$(package) $(pear_pkg)/package.xml; |
| $(PEAR) \ |
| -c debian/pearrc \ |
| -d include_path=/usr/share/php \ |
| -d php_bin=/usr/bin/php \ |
| -d bin_dir=/usr/bin \ |
| -d php_dir=/usr/share/php \ |
| -d data_dir=/usr/share/php/data \ |
| -d doc_dir=/usr/share/php/docs \ |
| -d test_dir=/usr/share/php/tests \ |
| install -n -f -P debian/$(package) $(pear_pkg)/package.xml |
| # remove unwanted files |
| rm -f debian/$(package)/usr/share/php/.filemap; |
| rm -f debian/$(package)/usr/share/php/.lock; |
| rm -rf debian/$(package)/usr/share/php/.channels; |
@@ -44,21 +59,22 @@
| rm -rf debian/$(package)/usr/share/php/.depdb; |
| rm -rf debian/$(package)/usr/share/php/.registry/.channel.pecl.php.net; |
| rm -rf debian/$(package)/usr/share/php/.registry/.channel.__uri; |
| rm -rf debian/$(package)/tmp |
| # remove duplicated files, these files are in /usr/share/doc/package |
| rm -rf debian/$(package)/usr/share/php/docs; |
| rm -rf debian/$(package)/usr/share/php/tests; |
| rm -rf debian/$(package)/usr/share/php/data/Log/misc; |
| rm -rf debian/$(package)/usr/share/php/tests \ |
| debian/$(package)/usr/share/php/docs \ |
| debian/$(package)/usr/share/php/data/Log |
| # remove created tmp dir |
| rm -rf debian/$(package)/tmp |
| # remove empty directory (lintian warning) |
| rmdir debian/$(package)/usr/share/php/data |
| # Build architecture-dependent files here. |
| binary-arch: build install |
| # We have nothing to do by default. |
| # Build architecture-independent files here. |
| binary-indep: build install |
| # We have nothing to do by default. |
| # Build architecture-dependent files here. |
| binary-arch: build install |
| dh_testdir |
| dh_testroot |
| dh_installdocs |
@@ -73,3 +89,8 @@
| binary: binary-indep binary-arch |
| .PHONY: build clean binary-indep binary-arch binary install configure |
| get-orig-source: |
| wget http://download.pear.php.net/package/Log-${DEB_UPSTREAM_VERSION}.tgz \ |
| -O php-log_${DEB_UPSTREAM_VERSION}.orig.tar.gz |
@@ -1,21 +1,22 @@
| Source: php-log |
| Section: web |
| Priority: optional |
| Maintainer: Jose Carlos Medeiros <debian@psabs.com.br> |
| Uploaders: Ola Lundqvist <opal@debian.org> |
| Maintainer: Debian PHP Maintainers <pkg-php-maint@lists.alioth.debian.org> |
| Uploaders: Ola Lundqvist <opal@debian.org>, Gregory Colpart (evolix) <reg@evolix.fr> |
| Build-Depends-Indep: php-pear |
| Build-Depends: debhelper (>= 5) |
| Standards-Version: 3.7.2 |
| Standards-Version: 3.7.3 |
| Homepage: http://pear.php.net/package/Log/ |
| Vcs-Svn: svn://svn.debian.org/pkg-php/pear/php-log/trunk |
| Vcs-Browser: http://svn.debian.org/wsvn/pkg-php/pear/php-log/trunk |
| Package: php-log |
| Architecture: all |
| Depends: php-pear |
| Suggests: php-db (>= 1.3), php5-sqlite, php-mdb2 |
| Suggests: php-db (>= 1.3), php5-sqlite |
| Replaces: php4-pear-log (<= 1.9.3-1) |
| Conflicts: php4-pear-log (<= 1.9.3-2) |
| Description: Log module for PEAR |
| The Log framework provides an abstracted logging system. It supports |
| logging to console, file, syslog, SQL, and mcal targets. It also provides |
| a subject - observer mechanism. |
| . |
| Homepage: http://pear.php.net/package/Log/ |
| Description: PHP PEAR modules for logging |
| The Log package provides an abstracted logging framework. It includes output |
| handlers for log files, databases, syslog, email, Firebug, and the console. |
| It also provides composite and subject-observer logging mechanisms. |
@@ -1,3 +1,18 @@
| php-log (1.9.16-1) unstable; urgency=low |
| * New upstream release. |
| * Update to standards version 3.7.3, no further required changes. |
| * Update short description to have unform PEAR packaging. |
| * Migrate homepage to Homepage: field. |
| * Update description like in package.xml. |
| * Remove php-mdb2 from Suggests (php-mdb2 isn't in Debian). |
| * Add Vcs-* fields in debian/control. |
| * Move to team maintainership and update Uploaders. (Closes: #383010) |
| * Upgrade debian/rules to have unform PEAR packaging. |
| * Remove empty directory in debian/rules to fix lintian warning. |
| -- Gregory Colpart (evolix) <reg@evolix.fr> Fri, 08 Feb 2008 23:23:37 +0100 |
| php-log (1.9.11-1) unstable; urgency=low |
| * New upstream release. (Closes: #417567) |
@@ -5,6 +5,10 @@
| # Uncomment this to turn on verbose mode. |
| #export DH_VERBOSE=1 |
| DEB_VERSION := $(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ') |
| DEB_NOEPOCH_VERSION := $(shell echo $(DEB_VERSION) | cut -d: -f2-) |
| DEB_UPSTREAM_VERSION := $(shell echo $(DEB_NOEPOCH_VERSION) | sed 's/-[^-]*$$//') |
| PEAR ?= /usr/bin/pear |
| pear_pkg = $(shell ls |grep Log) |
| package = php-log |
@@ -36,7 +40,18 @@
| # Add here commands to install the package into debian/package. |
| cp package.xml $(pear_pkg)/package.xml; |
| $(PEAR) install -n -R debian/$(package) $(pear_pkg)/package.xml; |
| $(PEAR) \ |
| -c debian/pearrc \ |
| -d include_path=/usr/share/php \ |
| -d php_bin=/usr/bin/php \ |
| -d bin_dir=/usr/bin \ |
| -d php_dir=/usr/share/php \ |
| -d data_dir=/usr/share/php/data \ |
| -d doc_dir=/usr/share/php/docs \ |
| -d test_dir=/usr/share/php/tests \ |
| install -n -f -P debian/$(package) $(pear_pkg)/package.xml |
| # remove unwanted files |
| rm -f debian/$(package)/usr/share/php/.filemap; |
| rm -f debian/$(package)/usr/share/php/.lock; |
| rm -rf debian/$(package)/usr/share/php/.channels; |
@@ -44,21 +59,22 @@
| rm -rf debian/$(package)/usr/share/php/.depdb; |
| rm -rf debian/$(package)/usr/share/php/.registry/.channel.pecl.php.net; |
| rm -rf debian/$(package)/usr/share/php/.registry/.channel.__uri; |
| rm -rf debian/$(package)/tmp |
| # remove duplicated files, these files are in /usr/share/doc/package |
| rm -rf debian/$(package)/usr/share/php/docs; |
| rm -rf debian/$(package)/usr/share/php/tests; |
| rm -rf debian/$(package)/usr/share/php/data/Log/misc; |
| rm -rf debian/$(package)/usr/share/php/tests \ |
| debian/$(package)/usr/share/php/docs \ |
| debian/$(package)/usr/share/php/data/Log |
| # remove created tmp dir |
| rm -rf debian/$(package)/tmp |
| # remove empty directory (lintian warning) |
| rmdir debian/$(package)/usr/share/php/data |
| # Build architecture-dependent files here. |
| binary-arch: build install |
| # We have nothing to do by default. |
| # Build architecture-independent files here. |
| binary-indep: build install |
| # We have nothing to do by default. |
| # Build architecture-dependent files here. |
| binary-arch: build install |
| dh_testdir |
| dh_testroot |
| dh_installdocs |
@@ -73,3 +89,8 @@
| binary: binary-indep binary-arch |
| .PHONY: build clean binary-indep binary-arch binary install configure |
| get-orig-source: |
| wget http://download.pear.php.net/package/Log-${DEB_UPSTREAM_VERSION}.tgz \ |
| -O php-log_${DEB_UPSTREAM_VERSION}.orig.tar.gz |