[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Please consider boxbackup_0.11~rc2-4 for lenny



The latest upload to unstable introduces the following changes:

 - Fixes one RC (#502742) and one important (#502461) bug.
 - builds and installs upstream provided documentation
 - removes some (more) autogenerated files during package cleaning.

Find the diff here for your convinience (the output of debdiff(1)
compared with the previous package is a bit misleading because of the
removed files...):

=== removed file 'bin/bbackupd/bbackupd-config'
=== removed file 'bin/bbackupquery/makedocumentation.pl'
=== removed file 'bin/bbstored/bbstored-certs'
=== removed file 'bin/bbstored/bbstored-config'
=== removed file 'lib/common/BoxConfig.h'
=== removed file 'lib/common/BoxPortsAndFiles.h'
=== removed file 'lib/common/makeexception.pl'
=== removed file 'lib/raidfile/raidfile-config'
=== removed file 'lib/server/makeprotocol.pl'
=== removed file 'test/backupstorefix/testfiles/testbackupstorefix.pl'
=== removed file 'test/bbackupd/testfiles/extcheck1.pl'
=== removed file 'test/bbackupd/testfiles/extcheck2.pl'
=== removed file 'test/bbackupd/testfiles/notifyscript.pl'
=== removed file 'test/bbackupd/testfiles/syncallowscript.pl'

=== modified file 'debian/boxbackup-server.templates'
--- debian/boxbackup-server.templates	2008-07-24 13:16:40 +0000
+++ debian/boxbackup-server.templates	2008-10-23 18:18:15 +0000
@@ -9,7 +9,7 @@
 
 Template: boxbackup-server/debconf
 Type: boolean
-Default: true
+Default: false
 _Description: Should BoxBackup be configured automatically?
  The package configuration scripts can create the configuration files
  for the BoxBackup server.

=== modified file 'debian/changelog'
--- debian/changelog	2008-07-24 13:16:56 +0000
+++ debian/changelog	2008-10-23 18:25:11 +0000
@@ -1,3 +1,13 @@
+boxbackup (0.11~rc2-4) unstable; urgency=low
+
+  * add a note to documentation about adjusted syslog facility.
+  * build and install the administrator guide and the installation guide.
+  * By default do not configure boxbackup. Most users of this package need
+    to know what the postinst/configure scripts are doing anyway, and this
+    avoids piuparts to fail here. Closes: #502742, #502461
+
+ -- Reinhard Tartler <siretart@tauware.de>  Thu, 23 Oct 2008 20:25:10 +0200
+
 boxbackup (0.11~rc2-3.1) unstable; urgency=low
 
   * Non-maintainer upload to fix pending l10n issues.

=== modified file 'debian/control'
--- debian/control	2008-07-24 13:16:32 +0000
+++ debian/control	2008-07-24 13:47:48 +0000
@@ -2,7 +2,7 @@
 Section: utils
 Priority: optional
 Maintainer: Reinhard Tartler <siretart@tauware.de>
-Build-Depends: debhelper (>> 5.0.0), libedit-dev, libdb-dev, libssl-dev, zlib1g-dev
+Build-Depends: debhelper (>> 5.0.0), libedit-dev, libdb-dev, libssl-dev, zlib1g-dev, docbook-utils
 Standards-Version: 3.7.3
 XS-Vcs-bzr: http://bazaar.launchpad.net/~siretart/boxbackup/boxbackup.debian
 XS-Vcs-Browser: http://codebrowse.launchpad.net/~siretart/boxbackup/boxbackup.debian/files

=== modified file 'debian/rules'
--- debian/rules	2008-07-24 13:16:40 +0000
+++ debian/rules	2008-10-26 08:05:07 +0000
@@ -26,10 +26,19 @@
 build-stamp: configure-stamp
 	dh_testdir
 	$(MAKE)
-	touch build-stamp
 ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
 	-./runtest.pl ALL
 endif
+	touch build-stamp
+
+documentation/ExceptionCodes.xml: ExceptionCodes.txt
+	cd documentation && perl generate_except_xml.pl
+
+documentation/instguide.pdf:
+	cd documentation && docbook2pdf instguide.xml
+
+documentation/adminguide.pdf: documentation/ExceptionCodes.xml
+	cd documentation && docbook2pdf adminguide.xml
 
 # generated files for removal
 GENERATED_FILES =  ExceptionCodes.txt infrastructure/BoxPlatform.pm
@@ -38,6 +47,7 @@
 GENERATED_FILES += infrastructure/makedistribution.pl
 GENERATED_FILES += infrastructure/makeparcels.pl
 GENERATED_FILES += lib/common/makeexception.pl
+GENERATED_FILES += lib/common/BoxPortsAndFiles.h
 GENERATED_FILES += lib/raidfile/raidfile-config
 GENERATED_FILES += lib/server/makeprotocol.pl
 GENERATED_FILES += test/backupstorefix/testfiles/testbackupstorefix.pl
@@ -49,8 +59,16 @@
 GENERATED_FILES += bin/bbackupquery/makedocumentation.pl
 GENERATED_FILES += bin/bbstored/bbstored-certs
 GENERATED_FILES += bin/bbstored/bbstored-config
-
-build: build-stamp
+GENERATED_FILES += contrib/solaris/bbackupd-manifest.xml
+GENERATED_FILES += contrib/solaris/bbackupd-smf-method
+GENERATED_FILES += contrib/solaris/bbstored-manifest.xml
+GENERATED_FILES += contrib/solaris/bbstored-smf-method
+GENERATED_FILES += documentation/ExceptionCodes.xml
+GENERATED_FILES += documentation/manpage.links
+GENERATED_FILES += documentation/manpage.refs
+
+
+build: build-stamp documentation/instguide.pdf documentation/adminguide.pdf
 
 clean:
 	dh_testdir
@@ -71,6 +89,7 @@
 	rm -fr release/ debug/ local/ parcels/
 
 	dh_clean config.log config.status
+	dh_clean documentation/instguide.pdf documentation/adminguide.pdf
 	[ ! -f Makefile ] || $(MAKE) distclean
 	[ ! -f Makefile ] || $(MAKE) clean
 	dh_clean $(GENERATED_FILES)
@@ -97,7 +116,7 @@
 	dh_testdir -a
 	dh_testroot -a
 	dh_installdebconf -a
-	dh_installdocs -a -A ExceptionCodes.txt
+	dh_installdocs -a -A ExceptionCodes.txt documentation/instguide.pdf documentation/adminguide.pdf
 	dh_installinit -a
 	dh_installcron -a
 	dh_installman

=== modified file 'documentation/adminguide.xml'
--- documentation/adminguide.xml	2008-07-24 13:16:32 +0000
+++ documentation/adminguide.xml	2008-07-24 13:18:28 +0000
@@ -286,6 +286,12 @@
         <para><emphasis role="bold">Note:</emphasis> Separators must be tabs,
         otherwise these entries will be ignored.</para>
 
+        <para><emphasis role="bold">Note2:</emphasis> The packaged
+        debian and ubuntu versions of boxbackup do not log to local6,
+        but to the more standard 'daemon' facility. This means you
+        should not have anything to do to your syslog configuration,
+        since it is configured to be logged by default.</para>
+
         <programlisting>touch /var/log/box
 touch /var/log/raidfile</programlisting>
 

=== modified file 'documentation/generate_except_xml.pl'
--- documentation/generate_except_xml.pl	2008-02-02 07:31:52 +0000
+++ documentation/generate_except_xml.pl	2008-07-24 13:33:11 +0000
@@ -40,7 +40,7 @@
 #  
 use strict;
 
-open (EXCEPT, "<../../ExceptionCodes.txt") or die "Can't open ../../ExceptionCodes.txt: $!\n";
+open (EXCEPT, "<../ExceptionCodes.txt") or die "Can't open ../ExceptionCodes.txt: $!\n";
 open (DOCBOOK, ">ExceptionCodes.xml") or die "Can't open Exceptioncodes.xml for writing: $!\n";
 
 print DOCBOOK <<EOD;
@@ -110,4 +110,4 @@
 
 close EXCEPT;
 close DOCBOOK;
-        
\ No newline at end of file
+        


-- 
Gruesse/greetings,
Reinhard Tartler, KeyID 945348A4


Reply to: