Merge lp:~l3on/ubuntu/trusty/wyrd/ftbfs-1281275 into lp:ubuntu/trusty/wyrd

Proposed by Leo Iannacone
Status: Merged
Merge reported by: Martin Pitt
Merged at revision: not available
Proposed branch: lp:~l3on/ubuntu/trusty/wyrd/ftbfs-1281275
Merge into: lp:ubuntu/trusty/wyrd
Diff against target: 108 lines (+57/-4)
6 files modified
debian/changelog (+11/-0)
debian/patches/01_editor.dpatch (+7/-3)
debian/patches/02_fix-ftbfs-ocaml-4.patch (+36/-0)
debian/patches/series (+2/-0)
debian/rules (+0/-1)
debian/source/format (+1/-0)
To merge this branch: bzr merge lp:~l3on/ubuntu/trusty/wyrd/ftbfs-1281275
Reviewer Review Type Date Requested Status
Martin Pitt Approve
Review via email: mp+208978@code.launchpad.net

Description of the change

* Use quilt instead of dpatch (deprecated):
    + added debian/source/format 3.0 quilt
    + removed include dpatch.mk from debian/rules
  * Imported patch from upstream to fix FTBFS with
    Ocalm 4: 02_fix-ftbfs-ocaml-4.patch (LP: #1281275)
  * Refreshed 01_editor.dpatch

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

Thanks! Uploaded.

review: Approve

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 2008-02-22 16:30:36 +0000
3+++ debian/changelog 2014-03-02 21:48:11 +0000
4@@ -1,3 +1,14 @@
5+wyrd (1.4.4-1ubuntu1) trusty; urgency=medium
6+
7+ * Use quilt instead of dpatch (deprecated):
8+ + added debian/source/format 3.0 quilt
9+ + removed include dpatch.mk from debian/rules
10+ * Imported patch from upstream to fix FTBFS with
11+ Ocalm 4: 02_fix-ftbfs-ocaml-4.patch (LP: #1281275)
12+ * Refreshed 01_editor.dpatch
13+
14+ -- Leo Iannacone <l3on@ubuntu.com> Sun, 02 Mar 2014 22:41:48 +0100
15+
16 wyrd (1.4.4-1) unstable; urgency=low
17
18 * New upstream release that address temporary file vulnerability
19
20=== modified file 'debian/patches/01_editor.dpatch'
21--- debian/patches/01_editor.dpatch 2007-09-15 14:08:57 +0000
22+++ debian/patches/01_editor.dpatch 2014-03-02 21:48:11 +0000
23@@ -6,11 +6,15 @@
24
25 @DPATCH@
26
27---- wyrd-1.4.1.orig/wyrdrc 2006-11-27 11:42:27.000000000 +0100
28-+++ wyrd-1.4.1/wyrdrc 2006-11-27 11:42:35.000000000 +0100
29+---
30+ wyrdrc | 6 +++---
31+ 1 file changed, 3 insertions(+), 3 deletions(-)
32+
33+--- a/wyrdrc
34++++ b/wyrdrc
35 @@ -5,11 +5,11 @@
36 # the default reminder file to display
37- set reminders_file="~/.reminders"
38+ set reminders_file="$HOME/.reminders"
39 # command for editing an old appointment, given a line number %line% and filename %file%
40 -set edit_old_command="$EDITOR +%line% %file%"
41 +set edit_old_command="${VISUAL:-$EDITOR} +%line% %file%"
42
43=== added file 'debian/patches/02_fix-ftbfs-ocaml-4.patch'
44--- debian/patches/02_fix-ftbfs-ocaml-4.patch 1970-01-01 00:00:00 +0000
45+++ debian/patches/02_fix-ftbfs-ocaml-4.patch 2014-03-02 21:48:11 +0000
46@@ -0,0 +1,36 @@
47+From: Paul Pelzl
48+Subject: fix 'configure' test which incorrectly rejected OCaml 4
49+ .
50+ Patch not needed for wyrd >= 1.4.6
51+ .
52+Origin: upstream, http://bazaar.launchpad.net/~pelzlpj/wyrd/wyrd-dev/revision/304
53+Bug-Ubuntu: https://launchpad.net/bugs/1281275
54+Bug-Debian: http://bugs.debian.org/735832
55+
56+---
57+ configure | 2 +-
58+ configure.in | 2 +-
59+ 2 files changed, 2 insertions(+), 2 deletions(-)
60+
61+--- a/configure.in
62++++ b/configure.in
63+@@ -63,7 +63,7 @@
64+ OCAMLMINORVERSION=`echo $OCAMLVERSION | cut -d '.' -f 2`
65+ if test $OCAMLMAJORVERSION -lt 3 ; then
66+ AC_MSG_ERROR(Wyrd requires OCaml version 3.08 or greater.)
67+-else
68++elif test $OCAMLMAJORVERSION -eq 3; then
69+ if test $OCAMLMINORVERSION -lt 8 ; then
70+ AC_MSG_ERROR(Wyrd requires OCaml version 3.08 or greater.)
71+ fi
72+--- a/configure
73++++ b/configure
74+@@ -1724,7 +1724,7 @@
75+ { { echo "$as_me:$LINENO: error: Wyrd requires OCaml version 3.08 or greater." >&5
76+ echo "$as_me: error: Wyrd requires OCaml version 3.08 or greater." >&2;}
77+ { (exit 1); exit 1; }; }
78+-else
79++elif test $OCAMLMAJORVERSION -eq 3; then
80+ if test $OCAMLMINORVERSION -lt 8 ; then
81+ { { echo "$as_me:$LINENO: error: Wyrd requires OCaml version 3.08 or greater." >&5
82+ echo "$as_me: error: Wyrd requires OCaml version 3.08 or greater." >&2;}
83
84=== added file 'debian/patches/series'
85--- debian/patches/series 1970-01-01 00:00:00 +0000
86+++ debian/patches/series 2014-03-02 21:48:11 +0000
87@@ -0,0 +1,2 @@
88+01_editor.dpatch
89+02_fix-ftbfs-ocaml-4.patch
90
91=== modified file 'debian/rules'
92--- debian/rules 2008-02-22 16:30:36 +0000
93+++ debian/rules 2014-03-02 21:48:11 +0000
94@@ -2,7 +2,6 @@
95
96 include /usr/share/cdbs/1/rules/debhelper.mk
97 include /usr/share/cdbs/1/class/autotools.mk
98-include /usr/share/cdbs/1/rules/dpatch.mk
99
100 DEB_CONFIGURE_EXTRA_FLAGS = --enable-utf8
101
102
103=== added directory 'debian/source'
104=== added file 'debian/source/format'
105--- debian/source/format 1970-01-01 00:00:00 +0000
106+++ debian/source/format 2014-03-02 21:48:11 +0000
107@@ -0,0 +1,1 @@
108+3.0 (quilt)

Subscribers

People subscribed via source and target branches

to all changes: