[Pkg-sql-ledger-commit] r210 - in trunk/debian: . patches

pkg-sql-ledger-commit-owner at lists.alioth.debian.org pkg-sql-ledger-commit-owner at lists.alioth.debian.org
Fri Oct 16 09:25:19 UTC 2009


Author: hertzog
Date: 2009-10-16 09:25:19 +0000 (Fri, 16 Oct 2009)
New Revision: 210

Removed:
   trunk/debian/patches/50fixes-perl-5.10
Modified:
   trunk/debian/README.Debian
   trunk/debian/changelog
   trunk/debian/control
   trunk/debian/patches/series
   trunk/debian/rules
Log:
* New upstream release:
  - added customer and vendor import function
  - added variables for remittance forms and reminder notices
  - added companyemail and companywebsite variables. Closes: #440131
  - fixed internal notes display for new transactions
  - added modulo calculation for spoolfiles
  - import payments with DCN for open and closed transactions
  - added message handling for admin locks
  - fixed emtpy line issue with template editor
* Updated Standards-Version to 3.8.3 (no changes required).
* Drop patch debian/patches/50fixes-perl-5.10 as it has been integrated
  upstream.
* Fix my name in the Maintainer field.
* Simplify further the rules file with dh 7 overrides.
* Update the description to refer to README.Debian and enhance the
  README.Debian.

Modified: trunk/debian/README.Debian
===================================================================
--- trunk/debian/README.Debian	2009-04-21 08:09:56 UTC (rev 209)
+++ trunk/debian/README.Debian	2009-10-16 09:25:19 UTC (rev 210)
@@ -20,6 +20,10 @@
 http://www.securityfocus.com/archive/1/459264
 http://www.securityfocus.com/archive/1/445817
 
+Furthermore, Debian doesn't offer official security suppport for this
+package given that the upstream developer almost never acknowledges
+security issues and doesn't provide the corresponding fixes.
+
 CONFIGURATION INFORMATION
 -------------------------
 

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2009-04-21 08:09:56 UTC (rev 209)
+++ trunk/debian/changelog	2009-10-16 09:25:19 UTC (rev 210)
@@ -1,3 +1,24 @@
+sql-ledger (2.8.25-1) unstable; urgency=low
+
+  * New upstream release:
+    - added customer and vendor import function
+    - added variables for remittance forms and reminder notices
+    - added companyemail and companywebsite variables. Closes: #440131
+    - fixed internal notes display for new transactions
+    - added modulo calculation for spoolfiles
+    - import payments with DCN for open and closed transactions
+    - added message handling for admin locks
+    - fixed emtpy line issue with template editor
+  * Updated Standards-Version to 3.8.3 (no changes required).
+  * Drop patch debian/patches/50fixes-perl-5.10 as it has been integrated
+    upstream.
+  * Fix my name in the Maintainer field.
+  * Simplify further the rules file with dh 7 overrides.
+  * Update the description to refer to README.Debian and enhance the
+    README.Debian.
+
+ -- Raphaël Hertzog <hertzog at debian.org>  Fri, 16 Oct 2009 10:06:36 +0200
+
 sql-ledger (2.8.24-1) unstable; urgency=low
 
   * New upstream release:

Modified: trunk/debian/control
===================================================================
--- trunk/debian/control	2009-04-21 08:09:56 UTC (rev 209)
+++ trunk/debian/control	2009-10-16 09:25:19 UTC (rev 210)
@@ -1,13 +1,13 @@
 Source: sql-ledger
 Section: web
 Priority: optional
-Maintainer: Raphael Hertzog <hertzog at debian.org>
+Maintainer: Raphaël Hertzog <hertzog at debian.org>
 Uploaders: Petter Reinholdtsen <pere at debian.org>, Gerardo Reynoso <greynoso at tindes.com>
-Build-Depends: debhelper (>= 7), quilt, recode
+Build-Depends: debhelper (>= 7.0.50~), quilt (>= 0.46-7~), recode
 Homepage: http://www.sql-ledger.com
 Vcs-Svn: svn://svn.debian.org/pkg-sql-ledger/trunk
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-sql-ledger/trunk/?op=log
-Standards-Version: 3.8.1
+Standards-Version: 3.8.3
 
 Package: sql-ledger
 Architecture: all
@@ -35,4 +35,5 @@
  .
  NOTE: This package does not benefit from serious security support
  and you should use it only in a trusted environment. It's known
- to be affected by multiple SQL injections and similar problems.
+ to be affected by multiple SQL injections and similar problems. See
+ the README.Debian file for more information.

Deleted: trunk/debian/patches/50fixes-perl-5.10
===================================================================
--- trunk/debian/patches/50fixes-perl-5.10	2009-04-21 08:09:56 UTC (rev 209)
+++ trunk/debian/patches/50fixes-perl-5.10	2009-10-16 09:25:19 UTC (rev 210)
@@ -1,48 +0,0 @@
-Description: Fix for perl 5.10
- This change should fix the error "panic: attempt to copy freed scalar
- 83e6ee0 to 8233bf0 at SL/Form.pm line 984." that many people have been
- experiencing while trying to print some documents. It's specific to perl
- 5.10.
-Author: Dieter Simader
-Forwarded-Upstream: yes (patch coming from upstream)
-
---- a/SL/Form.pm	2009-03-26 23:37:32.000000000 +0100
-+++ b/SL/Form.pm	2009-04-21 08:44:19.000000000 +0200
-@@ -653,10 +653,10 @@
- 	}
- 
- 	# display contents of $self->{number}[] array
--	for my $i (0 .. $#{ $self->{$var} }) {
-+	for my $j (0 .. $#{ $self->{$var} }) {
- 
- 	  if ($var =~ /^(part|service)$/) {
--	    next if $self->{$var}[$i] eq 'NULL';
-+	    next if $self->{$var}[$j] eq 'NULL';
- 	  }
- 
- 	  # Try to detect whether a manual page break is necessary
-@@ -666,8 +666,8 @@
- 	    if ($chars_per_line && defined $self->{$var}) {
- 	      my $line;
- 	      my $lines = 0;
--	      my $item = $self->{description}[$i];
--	      $item .= "\n".$self->{itemnotes}[$i] if $self->{itemnotes}[$i];
-+	      my $item = $self->{description}[$j];
-+	      $item .= "\n".$self->{itemnotes}[$j] if $self->{itemnotes}[$j];
- 	      
- 	      foreach $line (split /\r?\n/, $item) {
- 		$lines++;
-@@ -706,11 +706,11 @@
- 	      }
- 	      $current_line += $lines;
- 	    }
--	    $sum += $self->parse_amount($myconfig, $self->{linetotal}[$i]);
-+	    $sum += $self->parse_amount($myconfig, $self->{linetotal}[$j]);
- 	  }
- 
- 	  # don't parse par, we need it for each line
--	  print OUT $self->format_line($par, $i);
-+	  print OUT $self->format_line($par, $j);
- 	  
- 	}
- 	next;

Modified: trunk/debian/patches/series
===================================================================
--- trunk/debian/patches/series	2009-04-21 08:09:56 UTC (rev 209)
+++ trunk/debian/patches/series	2009-10-16 09:25:19 UTC (rev 210)
@@ -1,4 +1,3 @@
 # List of patches to apply.
 10makefiles
 45crosslink
-50fixes-perl-5.10

Modified: trunk/debian/rules
===================================================================
--- trunk/debian/rules	2009-04-21 08:09:56 UTC (rev 209)
+++ trunk/debian/rules	2009-10-16 09:25:19 UTC (rev 210)
@@ -1,31 +1,16 @@
 #!/usr/bin/make -f
 
-include /usr/share/quilt/quilt.make
+%:
+	dh --with quilt $@
 
-build: patch
-	dh build
-
-clean: unpatch
-	dh clean
+override_dh_auto_clean:
+	dh_auto_clean
 	rm -f sql-ledger.conf
 
-install: build
-	# Add here commands to install the package into debian/sql-ledger.
+override_dh_auto_install:
 	sed -e 's|^\$$userspath = .*$$|$$userspath = "/var/lib/sql-ledger/users";|' \
 	    -e 's|^\$$memberfile = .*$$|$$memberfile = "/var/lib/sql-ledger/users/members";|' \
 	sql-ledger.conf.default > sql-ledger.conf
 	cd locale && sh ../debian/create_utf8_locales.sh
-	dh install
-	rm -f debian/sql-ledger/usr/share/sql-ledger/bin/mozilla/.rp.pl.swp
+	dh_auto_install
 
-# Build architecture-independent files here.
-binary-indep: install
-	dh binary-indep
-
-# Build architecture-dependent files here.
-binary-arch: install
-	dh binary-arch
-
-binary: binary-indep binary-arch
-
-.PHONY: build clean binary-indep binary-arch binary install




More information about the Pkg-sql-ledger-commit mailing list