Merge lp:~yolanda.robla/ubuntu/saucy/etckeeper/debian_merge into lp:ubuntu/saucy/etckeeper

Proposed by Yolanda Robla
Status: Approved
Approved by: Martin Pitt
Approved revision: 47
Proposed branch: lp:~yolanda.robla/ubuntu/saucy/etckeeper/debian_merge
Merge into: lp:ubuntu/saucy/etckeeper
Diff against target: 84 lines (+27/-6)
5 files modified
debian/changelog (+21/-0)
debian/control (+1/-1)
etckeeper.spec (+1/-1)
uninit.d/50vcs-uninit (+2/-2)
update-ignore.d/01update-ignore (+2/-2)
To merge this branch: bzr merge lp:~yolanda.robla/ubuntu/saucy/etckeeper/debian_merge
Reviewer Review Type Date Requested Status
Martin Pitt Approve
Review via email: mp+175012@code.launchpad.net

Description of the change

Merging last Debian version (LP: #1200508)

To post a comment you must log in.
Revision history for this message
Martin Pitt (pitti) wrote :

Thanks! Uploaded.

review: Approve

Unmerged revisions

47. By Yolanda Robla

* Merge from Debian unstable (LP: #1200508). Remaining changes:
  - commit.d/50vcs-commit: Avoid failure in initial commit if etckeeper is
    not installed from a tty (like early during installation).
  - etckeeper.conf, debian/control: default to bzr
  - etckeeper: Ensure that LANG is set, default to UTF8, necessary for bzr
    to function properly in non-interactive shells (eg, cron); user's local
    LANG will override if set.
  - Makefile: Do not call the etckeeper.spec target in clean because it
    modifies the spec file instead of cleaning it.
  - README: Update tutorial to use bzr.
* Deal with unix^wlinux portability nonsense.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'debian/changelog'
2--- debian/changelog 2013-05-10 08:30:27 +0000
3+++ debian/changelog 2013-07-16 13:19:25 +0000
4@@ -1,3 +1,24 @@
5+etckeeper (1.4ubuntu1) saucy; urgency=low
6+
7+ * Merge from Debian unstable (LP: #1200508). Remaining changes:
8+ - commit.d/50vcs-commit: Avoid failure in initial commit if etckeeper is
9+ not installed from a tty (like early during installation).
10+ - etckeeper.conf, debian/control: default to bzr
11+ - etckeeper: Ensure that LANG is set, default to UTF8, necessary for bzr
12+ to function properly in non-interactive shells (eg, cron); user's local
13+ LANG will override if set.
14+ - Makefile: Do not call the etckeeper.spec target in clean because it
15+ modifies the spec file instead of cleaning it.
16+ - README: Update tutorial to use bzr.
17+
18+ -- Yolanda Robla <yolanda.robla@canonical.com> Fri, 12 Jul 2013 09:28:51 +0200
19+
20+etckeeper (1.4) unstable; urgency=low
21+
22+ * Deal with unix^wlinux portability nonsense.
23+
24+ -- Joey Hess <joeyh@debian.org> Mon, 17 Jun 2013 12:00:59 -0400
25+
26 etckeeper (1.3ubuntu1) saucy; urgency=low
27
28 * Merge from Debian unstable (LP: #1178739). Remaining changes:
29
30=== modified file 'debian/control'
31--- debian/control 2013-01-08 10:39:55 +0000
32+++ debian/control 2013-07-16 13:19:25 +0000
33@@ -4,7 +4,7 @@
34 Build-Depends: debhelper (>= 7), dpkg-dev (>= 1.9.0), bzr (>= 1.5~), python
35 Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
36 XSBC-Original-Maintainer: Joey Hess <joeyh@debian.org>
37-Standards-Version: 3.9.3
38+Standards-Version: 3.9.4
39 XS-Python-Version: all
40 Vcs-Git: git://git.kitenet.net/etckeeper
41 Homepage: http://kitenet.net/~joey/code/etckeeper/
42
43=== modified file 'etckeeper.spec'
44--- etckeeper.spec 2013-05-10 08:30:27 +0000
45+++ etckeeper.spec 2013-07-16 13:19:25 +0000
46@@ -1,5 +1,5 @@
47 Name: etckeeper
48-Version: 1.3
49+Version: 1.4
50 Release: 4%{?dist}
51 Summary: store /etc in git, mercurial, bzr or darcs
52
53
54=== modified file 'uninit.d/50vcs-uninit'
55--- uninit.d/50vcs-uninit 2013-05-08 22:36:30 +0000
56+++ uninit.d/50vcs-uninit 2013-07-16 13:19:25 +0000
57@@ -21,9 +21,9 @@
58 exit 0
59 else
60 realfile="$file"
61- if which tempfile >/dev/null 2>&1; then
62+ if which tempfile >/dev/null 2>&1 || type -p tempfile >/dev/null 2>&1; then
63 tempfile="tempfile"
64- elif which mktemp >/dev/null 2>&1; then
65+ elif which mktemp >/dev/null 2>&1 || type -p mktemp >/dev/null 2>&1; then
66 tempfile="mktemp"
67 else
68 echo "etckeeper warning: can't find tempfile or mktemp" >&2
69
70=== modified file 'update-ignore.d/01update-ignore'
71--- update-ignore.d/01update-ignore 2013-05-08 22:36:30 +0000
72+++ update-ignore.d/01update-ignore 2013-07-16 13:19:25 +0000
73@@ -171,9 +171,9 @@
74 fi
75 fi
76 realfile="$file"
77- if which tempfile >/dev/null 2>&1; then
78+ if which tempfile >/dev/null 2>&1 || type -p tempfile >/dev/null 2>&1; then
79 tempfile="tempfile"
80- elif which mktemp >/dev/null 2>&1; then
81+ elif which mktemp >/dev/null 2>&1 || type -p mktemp >/dev/null 2>&1; then
82 tempfile="mktemp"
83 else
84 echo "etckeeper warning: can't find tempfile or mktemp" >&2

Subscribers

People subscribed via source and target branches

to all changes: