Merge lp:~cyphermox/ubuntu/precise/ntrack/libnl3-transition into lp:ubuntu/precise/ntrack

Proposed by Mathieu Trudel-Lapierre
Status: Merged
Merged at revision: 14
Proposed branch: lp:~cyphermox/ubuntu/precise/ntrack/libnl3-transition
Merge into: lp:ubuntu/precise/ntrack
Diff against target: 160 lines (+116/-2)
5 files modified
debian/changelog (+10/-0)
debian/control (+4/-2)
debian/libntrack-qt4-1.symbols (+1/-0)
debian/patches/disable-pedantic.patch (+100/-0)
debian/patches/series (+1/-0)
To merge this branch: bzr merge lp:~cyphermox/ubuntu/precise/ntrack/libnl3-transition
Reviewer Review Type Date Requested Status
Martin Pitt Approve
Review via email: mp+86814@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Martin Pitt (pitti) wrote :

Thanks!

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 2011-11-13 14:30:30 +0000
3+++ debian/changelog 2011-12-23 15:37:26 +0000
4@@ -1,3 +1,13 @@
5+ntrack (016-1ubuntu1) precise; urgency=low
6+
7+ * debian/control: update Build-Depends: libnl3-dev -> libnl-3-dev,
8+ libnl-route-3-dev.
9+ * debian/patches/disable-pedantic.patch: don't pass -pedantic in CFLAGS, it
10+ makes the build fail to complete against libnl3 3.2 and glib.
11+ * debian/libntrack-qt4-1.symbols: add missing symbol: ZN15QNtrackListenerD2Ev.
12+
13+ -- Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com> Thu, 22 Dec 2011 20:46:23 -0500
14+
15 ntrack (016-1) unstable; urgency=low
16
17 Package upstream release 016
18
19=== modified file 'debian/control'
20--- debian/control 2011-11-13 14:30:30 +0000
21+++ debian/control 2011-12-23 15:37:26 +0000
22@@ -1,10 +1,12 @@
23 Source: ntrack
24-Maintainer: Alexander Sack <asac@debian.org>
25+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
26+XSBC-Original-Maintainer: Alexander Sack <asac@debian.org>
27 Section: net
28 Priority: optional
29 Build-Depends: debhelper (>=5), cdbs, quilt,
30 libglib2.0-dev,
31- libnl3-dev,
32+ libnl-3-dev,
33+ libnl-route-3-dev,
34 python-gtk2-dev,
35 libqt4-dev
36 Standards-Version: 3.9.1
37
38=== modified file 'debian/libntrack-qt4-1.symbols'
39--- debian/libntrack-qt4-1.symbols 2011-11-13 14:30:30 +0000
40+++ debian/libntrack-qt4-1.symbols 2011-12-23 15:37:26 +0000
41@@ -6,6 +6,7 @@
42 _ZN15QNtrackListener16staticMetaObjectE@Base 005
43 _ZN15QNtrackListenerD0Ev@Base 005
44 _ZN15QNtrackListenerD1Ev@Base 005
45+ _ZN15QNtrackListenerD2Ev@Base 016
46 _ZN7QNtrack11qt_metacallEN11QMetaObject4CallEiPPv@Base 005
47 _ZN7QNtrack11qt_metacastEPKc@Base 005
48 _ZN7QNtrack12monitorEventE14ntrack_event_t@Base 005
49
50=== added file 'debian/patches/disable-pedantic.patch'
51--- debian/patches/disable-pedantic.patch 1970-01-01 00:00:00 +0000
52+++ debian/patches/disable-pedantic.patch 2011-12-23 15:37:26 +0000
53@@ -0,0 +1,100 @@
54+From: Mathieu Trudel-Lapierre <mathieu.trudel-lapierre@canonical.com>
55+Subject: Disable -pedantic, it makes ntrack fail to build against
56+ libnl3 3.2 and glib.
57+
58+Index: ntrack/glib/Makefile.am
59+===================================================================
60+--- ntrack.orig/glib/Makefile.am 2011-12-22 19:25:13.137470000 -0500
61++++ ntrack/glib/Makefile.am 2011-12-22 20:07:10.243344976 -0500
62+@@ -26,7 +26,6 @@
63+ AM_CFLAGS = \
64+ -Wall \
65+ -Werror \
66+- -pedantic \
67+ -I$(srcdir)/../common/
68+
69+ AM_LDFLAGS =
70+Index: ntrack/glib/Makefile.in
71+===================================================================
72+--- ntrack.orig/glib/Makefile.in 2011-12-22 20:05:46.243208000 -0500
73++++ ntrack/glib/Makefile.in 2011-12-22 20:07:14.871344769 -0500
74+@@ -325,7 +325,6 @@
75+ AM_CFLAGS = \
76+ -Wall \
77+ -Werror \
78+- -pedantic \
79+ -I$(srcdir)/../common/
80+
81+ AM_LDFLAGS =
82+Index: ntrack/glib/test/Makefile.am
83+===================================================================
84+--- ntrack.orig/glib/test/Makefile.am 2011-12-22 19:25:13.137470000 -0500
85++++ ntrack/glib/test/Makefile.am 2011-12-22 20:07:19.451344565 -0500
86+@@ -27,7 +27,6 @@
87+ ../../common/libntrack.la
88+
89+ AM_CFLAGS = \
90+- -pedantic \
91+ -Wall \
92+ -Werror \
93+ -I$(srcdir)/.. \
94+Index: ntrack/glib/test/Makefile.in
95+===================================================================
96+--- ntrack.orig/glib/test/Makefile.in 2011-12-22 20:05:46.243208000 -0500
97++++ ntrack/glib/test/Makefile.in 2011-12-22 20:07:23.903344367 -0500
98+@@ -260,7 +260,6 @@
99+ ../../common/libntrack.la
100+
101+ AM_CFLAGS = \
102+- -pedantic \
103+ -Wall \
104+ -Werror \
105+ -I$(srcdir)/.. \
106+Index: ntrack/gobject/Makefile.am
107+===================================================================
108+--- ntrack.orig/gobject/Makefile.am 2011-12-22 20:05:46.243208000 -0500
109++++ ntrack/gobject/Makefile.am 2011-12-22 20:07:27.515344206 -0500
110+@@ -26,7 +26,6 @@
111+ AM_CFLAGS = \
112+ -Wall \
113+ -Werror \
114+- -pedantic \
115+ -I$(srcdir)/../common/ \
116+ -I$(srcdir)/../glib/
117+
118+Index: ntrack/gobject/Makefile.in
119+===================================================================
120+--- ntrack.orig/gobject/Makefile.in 2011-12-22 20:05:46.243208000 -0500
121++++ ntrack/gobject/Makefile.in 2011-12-22 20:07:31.519344028 -0500
122+@@ -347,7 +347,6 @@
123+ AM_CFLAGS = \
124+ -Wall \
125+ -Werror \
126+- -pedantic \
127+ -I$(srcdir)/../common/ \
128+ -I$(srcdir)/../glib/
129+
130+Index: ntrack/modules/Makefile.am
131+===================================================================
132+--- ntrack.orig/modules/Makefile.am 2011-12-22 20:05:46.243208000 -0500
133++++ ntrack/modules/Makefile.am 2011-12-22 20:07:35.519343851 -0500
134+@@ -26,7 +26,6 @@
135+ -Wall \
136+ -Werror \
137+ -Wno-variadic-macros \
138+- -pedantic \
139+ -I$(top_srcdir)/common/
140+
141+ AM_LDFLAGS =
142+Index: ntrack/modules/Makefile.in
143+===================================================================
144+--- ntrack.orig/modules/Makefile.in 2011-12-22 20:05:46.243208000 -0500
145++++ ntrack/modules/Makefile.in 2011-12-22 20:07:39.391343676 -0500
146+@@ -352,7 +352,6 @@
147+ -Wall \
148+ -Werror \
149+ -Wno-variadic-macros \
150+- -pedantic \
151+ -I$(top_srcdir)/common/
152+
153+ AM_LDFLAGS =
154
155=== modified file 'debian/patches/series'
156--- debian/patches/series 2011-11-13 14:30:30 +0000
157+++ debian/patches/series 2011-12-23 15:37:26 +0000
158@@ -1,1 +1,2 @@
159 # put your quilt patches here
160+disable-pedantic.patch

Subscribers

People subscribed via source and target branches