Merge lp:~logan/ubuntu/quantal/conglomerate/debian-merge into lp:ubuntu/quantal/conglomerate

Proposed by Logan Rosen
Status: Merged
Merged at revision: 12
Proposed branch: lp:~logan/ubuntu/quantal/conglomerate/debian-merge
Merge into: lp:ubuntu/quantal/conglomerate
Diff against target: 125 lines (+82/-1)
5 files modified
debian/changelog (+16/-0)
debian/control (+1/-1)
debian/patches/00list (+1/-0)
debian/patches/fix_duplicate_clone.dpatch (+63/-0)
debian/rules (+1/-0)
To merge this branch: bzr merge lp:~logan/ubuntu/quantal/conglomerate/debian-merge
Reviewer Review Type Date Requested Status
Ubuntu branches Pending
Review via email: mp+124279@code.launchpad.net
To post a comment you must log in.

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 2009-08-25 20:21:55 +0000
3+++ debian/changelog 2012-09-13 18:41:21 +0000
4@@ -1,3 +1,19 @@
5+conglomerate (0.9.1-3.3ubuntu1) quantal; urgency=low
6+
7+ * Merge from Debian unstable (LP: #1016032). Remaining change:
8+ - debian/patches/remove-gnome-entry-from-desktop.dpatch: Make .desktop
9+ files freedesktop compliant
10+
11+ -- Logan Rosen <logatronico@gmail.com> Thu, 13 Sep 2012 14:35:16 -0400
12+
13+conglomerate (0.9.1-3.3) unstable; urgency=low
14+
15+ * Non-maintainer upload.
16+ * fix_duplicate_clone.dpatch: Rename clone functions. (Closes: #666584).
17+ * Remove rpath setting in conglomerate binary with chrpath.
18+
19+ -- Mònica Ramírez Arceda <monica@debian.org> Mon, 07 May 2012 14:03:37 +0200
20+
21 conglomerate (0.9.1-3.2ubuntu1) karmic; urgency=low
22
23 * Merge from debian unstable, remaining changes: LP: #418663
24
25=== modified file 'debian/control'
26--- debian/control 2009-08-25 20:21:55 +0000
27+++ debian/control 2012-09-13 18:41:21 +0000
28@@ -3,7 +3,7 @@
29 Priority: optional
30 Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
31 XSBC-Original-Maintainer: Geert Stappers <stappers@debian.org>
32-Build-Depends: debhelper (>> 5.0.0), dpatch, libxml-parser-perl, libbonobo2-dev, libbonoboui2-dev, libenchant-dev, libgnomeui-dev (>= 2.6.1.1-4), libgnomeprintui2.2-dev, libgtksourceview2.0-dev, libxslt1-dev, scrollkeeper, libglade2-dev, autotools-dev
33+Build-Depends: debhelper (>> 5.0.0), dpatch, libxml-parser-perl, libbonobo2-dev, libbonoboui2-dev, libenchant-dev, libgnomeui-dev (>= 2.6.1.1-4), libgnomeprintui2.2-dev, libgtksourceview2.0-dev, libxslt1-dev, scrollkeeper, libglade2-dev, autotools-dev, chrpath
34 Standards-Version: 3.8.2
35 Homepage: http://www.conglomerate.org
36
37
38=== modified file 'debian/patches/00list'
39--- debian/patches/00list 2005-04-17 23:15:00 +0000
40+++ debian/patches/00list 2012-09-13 18:41:21 +0000
41@@ -7,3 +7,4 @@
42 # only cosmetic
43 package_version.dpatch
44 remove-gnome-entry-from-desktop
45+fix_duplicate_clone.dpatch
46
47=== added file 'debian/patches/fix_duplicate_clone.dpatch'
48--- debian/patches/fix_duplicate_clone.dpatch 1970-01-01 00:00:00 +0000
49+++ debian/patches/fix_duplicate_clone.dpatch 2012-09-13 18:41:21 +0000
50@@ -0,0 +1,63 @@
51+#! /bin/sh /usr/share/dpatch/dpatch-run
52+## fix_duplicate_cloned.dpatch by Mònica Ramírez Arceda <monica@debian.org>
53+##
54+## All lines beginning with `## DP:' are a description of the patch.
55+## DP: Rename clone functions. (Closes: #666584).
56+
57+@DPATCH@
58+diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' conglomerate-0.9.1~/src/cong-editor-line-iter-simple.c conglomerate-0.9.1/src/cong-editor-line-iter-simple.c
59+--- conglomerate-0.9.1~/src/cong-editor-line-iter-simple.c 2012-05-07 11:59:34.000000000 +0200
60++++ conglomerate-0.9.1/src/cong-editor-line-iter-simple.c 2012-05-07 11:59:37.000000000 +0200
61+@@ -26,13 +26,13 @@
62+ #include "cong-editor-line-iter-simple.h"
63+
64+ static CongEditorLineIter*
65+-clone (CongEditorLineIter *line_iter);
66++congclone (CongEditorLineIter *line_iter);
67+
68+ static CongEditorAreaLine*
69+ get_line (CongEditorLineIter *line_iter);
70+
71+ CONG_DEFINE_CLASS_PUBLIC_DATA (CongEditorLineIterSimple, cong_editor_line_iter_simple, CONG_EDITOR_LINE_ITER_SIMPLE, CongEditorLineIter, CONG_EDITOR_LINE_ITER_TYPE,
72+- CONG_EDITOR_LINE_ITER_CLASS (klass)->clone = clone;
73++ CONG_EDITOR_LINE_ITER_CLASS (klass)->clone = congclone;
74+ CONG_EDITOR_LINE_ITER_CLASS (klass)->get_line = get_line;)
75+
76+ CONG_DEFINE_EMPTY_DISPOSE(cong_editor_line_iter_simple)
77+@@ -58,7 +58,7 @@
78+ }
79+
80+ static CongEditorLineIter*
81+-clone (CongEditorLineIter *line_iter)
82++congclone (CongEditorLineIter *line_iter)
83+ {
84+ CongEditorLineIterSimple* simple_iter = CONG_EDITOR_LINE_ITER_SIMPLE (line_iter);
85+ CongEditorLineIterSimple* new_iter;
86+diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' conglomerate-0.9.1~/src/cong-editor-line-iter-span-wrapper.c conglomerate-0.9.1/src/cong-editor-line-iter-span-wrapper.c
87+--- conglomerate-0.9.1~/src/cong-editor-line-iter-span-wrapper.c 2004-11-04 20:18:48.000000000 +0100
88++++ conglomerate-0.9.1/src/cong-editor-line-iter-span-wrapper.c 2012-05-07 12:00:46.642532680 +0200
89+@@ -26,13 +26,13 @@
90+ #include "cong-editor-line-iter-span-wrapper.h"
91+
92+ static CongEditorLineIter*
93+-clone (CongEditorLineIter *line_iter);
94++congclone (CongEditorLineIter *line_iter);
95+
96+ static CongEditorAreaLine*
97+ get_line (CongEditorLineIter *line_iter);
98+
99+ CONG_DEFINE_CLASS_PUBLIC_DATA (CongEditorLineIterSpanWrapper, cong_editor_line_iter_span_wrapper, CONG_EDITOR_LINE_ITER_SPAN_WRAPPER, CongEditorLineIter, CONG_EDITOR_LINE_ITER_TYPE,
100+- CONG_EDITOR_LINE_ITER_CLASS (klass)->clone = clone;
101++ CONG_EDITOR_LINE_ITER_CLASS (klass)->clone = congclone;
102+ CONG_EDITOR_LINE_ITER_CLASS (klass)->get_line = get_line;)
103+
104+ /* Implementation of CongLineEditorIterSpanWrapper: */
105+@@ -80,7 +80,7 @@
106+ }
107+
108+ static CongEditorLineIter*
109+-clone (CongEditorLineIter *line_iter)
110++congclone (CongEditorLineIter *line_iter)
111+ {
112+ CongEditorLineIterSpanWrapper* span_wrapper_iter = CONG_EDITOR_LINE_ITER_SPAN_WRAPPER (line_iter);
113+ CongEditorLineIterSpanWrapper* new_iter;
114
115=== modified file 'debian/rules'
116--- debian/rules 2009-08-25 20:21:55 +0000
117+++ debian/rules 2012-09-13 18:41:21 +0000
118@@ -116,6 +116,7 @@
119 dh_clean -k -s
120 dh_installdirs -s
121
122+ chrpath -d src/conglomerate
123 install -m 755 src/conglomerate $(CURDIR)/debian/conglomerate/usr/bin/conglomerate
124
125 install -m 644 debian/conglomerate.lintian-override $(CURDIR)/debian/conglomerate/usr/share/lintian/overrides/conglomerate

Subscribers

People subscribed via source and target branches

to all changes: