Merge lp:~barry/ubuntu/natty/mdbus/618809-ftbfs into lp:ubuntu/natty/mdbus

Proposed by Barry Warsaw
Status: Merged
Merged at revision: 4
Proposed branch: lp:~barry/ubuntu/natty/mdbus/618809-ftbfs
Merge into: lp:ubuntu/natty/mdbus
Diff against target: 83 lines (+31/-3)
6 files modified
.bzrignore (+1/-0)
debian/changelog (+8/-0)
debian/control (+4/-3)
debian/patches/pkg-config-for-vala-0.10.patch (+14/-0)
debian/patches/series (+1/-0)
debian/rules (+3/-0)
To merge this branch: bzr merge lp:~barry/ubuntu/natty/mdbus/618809-ftbfs
Reviewer Review Type Date Requested Status
Artur Rona (community) Approve
Ubuntu branches Pending
Review via email: mp+45576@code.launchpad.net

Description of the change

Another libvala transition fix.

To post a comment you must log in.
Revision history for this message
Artur Rona (ari-tczew) wrote :
review: Needs Fixing
Revision history for this message
Barry Warsaw (barry) wrote :

Done. Updated branch is pushed.

5. By Barry Warsaw

Add DEP3 patch headers

Revision history for this message
Artur Rona (ari-tczew) wrote :

Please drop simple-patchsys.mk from d/rules since mdbus uses quilt. You can check patch system via command 'what-patch' in source directory.

Would be nice to be more verbose in debian/changelog, I suggest:
* Transition from libvala-dev to libvala-0.10-dev. (LP: #618809)
* debian/rules: Run autoreconf due to touched configure.ac.

Please use also short URL in tag Bug-Ubuntu instead Bug, e.g.:
Bug-Ubuntu: https://launchpad.net/bugs/618809

I'd like to see also tag 'Fowarded' to get clear whether patch needs to be forwarded or not.

review: Needs Fixing
Revision history for this message
Artur Rona (ari-tczew) wrote :

I noticed that there is no patch system. You can check it in source directory via command 'what-patch'. You should patch configure.ac directly. Automatically, there is no place to adding DEP3 tags. Sorry for that, I didn't check before whether patch system is used. Please also drop simple-patchsys.mk from d/rules.

However, would be nice to be more verbose in debian/changelog, I suggest:

* debian/control, configure.ac:
  - Transition from libvala-dev to libvala-0.10-dev. (LP: #618809)
* debian/rules: Run autoreconf due to touched configure.ac.

review: Needs Fixing
Revision history for this message
Artur Rona (ari-tczew) wrote :

Sorry, my 2nd comment was done wrong. It's caused reviewing your several patches and late time.

Revision history for this message
Barry Warsaw (barry) wrote :

patch converted to quilt. as mentioned in fso-misc-vapi I don't like editing upstream files in place. changelog updated. Thanks!

6. By Barry Warsaw

Patch system is quilt.

7. By Barry Warsaw

patch-sys is quilt.

8. By Barry Warsaw

debian/rules: Run autoreconf after patching configure.ac

9. By Barry Warsaw

Update changelog

10. By Barry Warsaw

Update changelog.

Revision history for this message
Artur Rona (ari-tczew) wrote :

Eveything looks OK, beside tag 'Bug' which should be 'Bug-Ubuntu'. However, it's not major issue so I'm accepting your changes.
Thank you for your contribution!

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added file '.bzrignore'
2--- .bzrignore 1970-01-01 00:00:00 +0000
3+++ .bzrignore 2011-01-10 21:14:16 +0000
4@@ -0,0 +1,1 @@
5+.pc
6
7=== modified file 'debian/changelog'
8--- debian/changelog 2010-08-01 01:40:51 +0000
9+++ debian/changelog 2011-01-10 21:14:16 +0000
10@@ -1,3 +1,11 @@
11+mdbus (2.0.2-1ubuntu1) natty; urgency=low
12+
13+ * configure.ac, debian/control:
14+ - Transition from libvala-dev to libvala-0.10-dev. (LP: #618809)
15+ * debian/rules: Run autoreconf before building.
16+
17+ -- Barry Warsaw <barry@ubuntu.com> Mon, 10 Jan 2011 16:10:01 -0500
18+
19 mdbus (2.0.2-1) unstable; urgency=low
20
21 * New upstream release
22
23=== modified file 'debian/control'
24--- debian/control 2010-08-01 01:40:51 +0000
25+++ debian/control 2011-01-10 21:14:16 +0000
26@@ -1,7 +1,8 @@
27 Source: mdbus
28 Section: misc
29 Priority: extra
30-Maintainer: Debian FreeSmartphone.Org Team <pkg-fso-maint@lists.alioth.debian.org>
31+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
32+XSBC-Original-Maintainer: Debian FreeSmartphone.Org Team <pkg-fso-maint@lists.alioth.debian.org>
33 Uploaders: Sebastian Reichel <elektranox@gmail.com>
34 DM-Upload-Allowed: yes
35 Build-Depends: autoconf,
36@@ -14,8 +15,8 @@
37 libglib2.0-dev (>= 2.18.0),
38 libtool,
39 libreadline-dev,
40- libvala-dev (>= 0.8),
41- valac (>= 0.8)
42+ libvala-0.10-dev,
43+ valac-0.10
44 Standards-Version: 3.9.1
45 Homepage: http://www.freesmartphone.org
46 Vcs-Git: git://git.debian.org/pkg-fso/mdbus.git
47
48=== added directory 'debian/patches'
49=== added file 'debian/patches/pkg-config-for-vala-0.10.patch'
50--- debian/patches/pkg-config-for-vala-0.10.patch 1970-01-01 00:00:00 +0000
51+++ debian/patches/pkg-config-for-vala-0.10.patch 2011-01-10 21:14:16 +0000
52@@ -0,0 +1,14 @@
53+From: Barry Warsaw <barry@ubuntu.com>
54+Subject: Transition from libvala-dev to libvala-0.10-dev.
55+Bug: https://launchpad.net/bugs/618809
56+--- a/configure.ac
57++++ b/configure.ac
58+@@ -55,7 +55,7 @@
59+
60+ # vala
61+ PKG_CHECK_MODULES(VALA,
62+- vala-1.0 >= $VALA_REQUIRED)
63++ vala-0.10 >= $VALA_REQUIRED)
64+
65+ # glib and friends
66+ PKG_CHECK_MODULES(GLIB,
67
68=== added file 'debian/patches/series'
69--- debian/patches/series 1970-01-01 00:00:00 +0000
70+++ debian/patches/series 2011-01-10 21:14:16 +0000
71@@ -0,0 +1,1 @@
72+pkg-config-for-vala-0.10.patch
73
74=== modified file 'debian/rules'
75--- debian/rules 2010-05-29 03:17:37 +0000
76+++ debian/rules 2011-01-10 21:14:16 +0000
77@@ -17,3 +17,6 @@
78 binary-install/mdbus2::
79 # remove empty changelog
80 rm -f debian/mdbus2/usr/share/doc/mdbus2/changelog
81+
82+post-patches::
83+ autoreconf -f -i -v

Subscribers

People subscribed via source and target branches

to all changes: