Merge lp:~noskcaj/ubuntu/utopic/backuppc/merge into lp:ubuntu/utopic/backuppc

Proposed by Jackson Doak
Status: Merged
Merge reported by: Sebastien Bacher
Merged at revision: not available
Proposed branch: lp:~noskcaj/ubuntu/utopic/backuppc/merge
Merge into: lp:ubuntu/utopic/backuppc
Diff against target: 121 lines (+38/-8)
5 files modified
bin/BackupPC_archive (+1/-1)
debian/changelog (+24/-1)
debian/control (+2/-2)
debian/postinst (+4/-0)
debian/rules (+7/-4)
To merge this branch: bzr merge lp:~noskcaj/ubuntu/utopic/backuppc/merge
Reviewer Review Type Date Requested Status
Sebastien Bacher Approve
Review via email: mp+231809@code.launchpad.net

Description of the change

Merge from debain

To post a comment you must log in.
Revision history for this message
Sebastien Bacher (seb128) wrote :

thanks

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'bin/BackupPC_archive'
2--- bin/BackupPC_archive 2014-01-15 09:33:13 +0000
3+++ bin/BackupPC_archive 2014-08-21 21:13:55 +0000
4@@ -299,7 +299,7 @@
5 if ( $NeedPostCmd ) {
6 UserCommandRun("ArchivePostUserCmd");
7 if ( $? && $Conf{UserCmdCheckStatus} ) {
8- $stat{hostError} = "RestorePreUserCmd returned error status $?";
9+ $stat{hostError} = "ArchivePostUserCmd returned error status $?";
10 $stat{xferOK} = 0;
11 }
12 }
13
14=== modified file 'debian/changelog'
15--- debian/changelog 2014-01-15 09:33:13 +0000
16+++ debian/changelog 2014-08-21 21:13:55 +0000
17@@ -1,3 +1,26 @@
18+backuppc (3.3.0-2ubuntu1) utopic; urgency=medium
19+
20+ * Merge from Debian unstable. Remaining changes:
21+ - debian/backuppc.init, debian/rules, debian/postinst: Do not call init
22+ script on shutdown and reboot (TearDown) (Closes: #488660).
23+ - debian/control:
24+ + Depend on default-mta | mail-transport-agent, instead of enumerating a
25+ long list of alternative MTAs.
26+ + Drop build dependency to 'par2', it's in universe.
27+ + Add build dependency on libsocket6-perl
28+ - configure.pl: Do not test for par2 being available at build time.
29+
30+ -- Jackson Doak <noskcaj@ubuntu.com> Fri, 22 Aug 2014 06:59:23 +1000
31+
32+backuppc (3.3.0-2) unstable; urgency=low
33+
34+ * Depends on apache2-utils
35+ * removed a superfluous libtime-modules-perl. Closes: #734356
36+ * Typo in log message fixed. Closes: #731087
37+ * using dpkg-buildflags
38+
39+ -- Ludovic Drolez <ldrolez@debian.org> Thu, 06 Feb 2014 12:41:22 +0100
40+
41 backuppc (3.3.0-1ubuntu1) trusty-proposed; urgency=low
42
43 * Merge from Debian unstable. Remaining changes: (LP: #1201029)
44@@ -14,7 +37,7 @@
45
46 * New upstream release. Closes: #716824
47 * Fix Typo in kill signal name (ALRM vs ARLM). Closes: #698441
48- * Enable Apache2 (2.4) configuration by default. Closes: #718550 #710956
49+ * Enable Apache2 (2.4) configuration by default in debconf.
50
51 -- Ludovic Drolez <ldrolez@debian.org> Thu, 12 Sep 2013 6:13:50 +0200
52
53
54=== modified file 'debian/control'
55--- debian/control 2014-01-15 09:33:13 +0000
56+++ debian/control 2014-08-21 21:13:55 +0000
57@@ -4,11 +4,11 @@
58 Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
59 XSBC-Original-Maintainer: Ludovic Drolez <ldrolez@debian.org>
60 Build-Depends: debhelper (>= 5), perl (>= 5.6.0), patch, libsocket6-perl
61-Standards-Version: 3.9.3
62+Standards-Version: 3.9.5
63
64 Package: backuppc
65 Architecture: any
66-Depends: ${shlibs:Depends}, ${perl:Depends}, libdigest-md5-perl, libcompress-zlib-perl, libarchive-zip-perl, tar (>> 1.13), adduser (>=3.9), dpkg (>=1.8.3), apache2 | httpd, ${misc:Depends}, smbclient, samba-common-bin, bzip2, default-mta | mail-transport-agent, iputils-ping | inetutils-ping, ucf, libtime-modules-perl, libwww-perl, libsocket6-perl
67+Depends: ${shlibs:Depends}, ${perl:Depends}, libdigest-md5-perl, libcompress-zlib-perl, libarchive-zip-perl, tar (>> 1.13), adduser (>=3.9), dpkg (>= 1.15.7.2), apache2 | httpd, ${misc:Depends}, smbclient, samba-common-bin, bzip2, default-mta | mail-transport-agent, iputils-ping | inetutils-ping, ucf, libtime-modules-perl, libwww-perl, apache2-utils
68 Recommends: rsync, libfile-rsyncp-perl (>= 0.68), openssh-client | ssh-client, rrdtool, libio-dirent-perl
69 Suggests: w3m | www-browser, par2
70 Conflicts: libfile-rsyncp-perl (<< 0.68)
71
72=== modified file 'debian/postinst'
73--- debian/postinst 2014-01-15 09:33:13 +0000
74+++ debian/postinst 2014-08-21 21:13:55 +0000
75@@ -141,6 +141,10 @@
76
77 # ucf stuff
78 ucf --debconf-ok --three-way /usr/share/backuppc/conf/config.pl /etc/backuppc/config.pl
79+
80+ # remove conffile
81+ #dpkg-maintscript-helper rm_conffile /etc/backuppc/config.pl 3.3.0-1 backuppc -- "$@";
82+
83
84 # change the rights of /etc/backuppc so that the CGI can modify the conf.
85 chown -R backuppc:www-data /etc/backuppc
86
87=== modified file 'debian/rules'
88--- debian/rules 2014-01-15 09:33:13 +0000
89+++ debian/rules 2014-08-21 21:13:55 +0000
90@@ -5,6 +5,10 @@
91 # Uncomment this to turn on verbose mode.
92 #export DH_VERBOSE=1
93
94+CPPFLAGS:=$(shell dpkg-buildflags --get CPPFLAGS)
95+CFLAGS:=$(shell dpkg-buildflags --get CFLAGS)
96+CXXFLAGS:=$(shell dpkg-buildflags --get CXXFLAGS)
97+LDFLAGS:=$(shell dpkg-buildflags --get LDFLAGS)
98
99 ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
100 CFLAGS += -g
101@@ -20,6 +24,8 @@
102
103 touch configure-stamp
104
105+build-arch: build
106+build-indep: build
107
108 build: build-stamp
109
110@@ -27,10 +33,7 @@
111 dh_testdir
112
113 # Add here commands to compile the package.
114- #$(MAKE)
115- #/usr/bin/docbook-to-man debian/backuppc.sgml > backuppc.1
116- cc debian/setuidwrapper.c -o index.cgi
117-
118+ $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) debian/setuidwrapper.c -o index.cgi
119 touch build-stamp
120
121 clean:

Subscribers

People subscribed via source and target branches

to all changes: