Merge lp:~noskcaj/ubuntu/utopic/obexftp/merge2 into lp:ubuntu/utopic/obexftp

Proposed by Jackson Doak
Status: Merged
Merge reported by: Martin Pitt
Merged at revision: not available
Proposed branch: lp:~noskcaj/ubuntu/utopic/obexftp/merge2
Merge into: lp:ubuntu/utopic/obexftp
Diff against target: 107 lines (+45/-3)
5 files modified
debian/changelog (+19/-0)
debian/copyright (+20/-1)
debian/libobexftp-perl.install (+0/-1)
debian/libobexftp-perl.install.in (+1/-0)
debian/rules (+5/-1)
To merge this branch: bzr merge lp:~noskcaj/ubuntu/utopic/obexftp/merge2
Reviewer Review Type Date Requested Status
Martin Pitt Approve
Review via email: mp+229131@code.launchpad.net

Description of the change

Merge from debian

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
=== modified file 'debian/changelog'
--- debian/changelog 2014-06-10 07:20:43 +0000
+++ debian/changelog 2014-07-31 21:35:45 +0000
@@ -1,3 +1,22 @@
1obexftp (0.23-3ubuntu1) UNRELEASED; urgency=medium
2
3 * Merge from Debian unstable. Remaining changes:
4 - Fix build failure, using StringValuePtr instead of STR2CSTR.
5 - Use dh-autoreconf instead of dh-autotools-dev
6
7 -- Jackson Doak <noskcaj@ubuntu.com> Thu, 31 Jul 2014 06:10:53 +1000
8
9obexftp (0.23-3) unstable; urgency=medium
10
11 * QA upload.
12 * Fix "hardcodes /usr/lib/perl5":
13 dynamically set perl library path in debian/rules from $Config{vendorarch}
14 (Closes: #752799)
15 * Add missing license to debian/copyright.
16 (Closes: #750564)
17
18 -- gregor herrmann <gregoa@debian.org> Tue, 29 Jul 2014 19:51:27 +0200
19
1obexftp (0.23-2ubuntu1) utopic; urgency=medium20obexftp (0.23-2ubuntu1) utopic; urgency=medium
221
3 * Merge from Debian unstable. Remaining changes:22 * Merge from Debian unstable. Remaining changes:
423
=== modified file 'debian/copyright'
--- debian/copyright 2008-10-25 16:28:12 +0000
+++ debian/copyright 2014-07-31 21:35:45 +0000
@@ -25,6 +25,25 @@
25 Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,25 Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
26 MA 02110-1301, USA.26 MA 02110-1301, USA.
2727
28
29On Debian GNU/Linux systems, the complete text of the GNU General28On Debian GNU/Linux systems, the complete text of the GNU General
30Public License can be found in `/usr/share/common-licenses/GPL-2'.29Public License can be found in `/usr/share/common-licenses/GPL-2'.
30
31
32License for bfb/* and obexftp/*:
33
34 ObexFTP is free software; you can redistribute it and/or modify
35 it under the terms of the GNU Lesser General Public License as
36 published by the Free Software Foundation; either version 2 of
37 the License, or (at your option) any later version.
38
39 This program is distributed in the hope that it will be useful,
40 but WITHOUT ANY WARRANTY; without even the implied warranty of
41 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
42 GNU Lesser General Public License for more details.
43
44 You should have received a copy of the GNU Lesser General Public
45 License along with ObexFTP. If not, see <http://www.gnu.org/>.
46
47
48On Debian GNU/Linux systems, the complete text of the GNU Lesser General
49Public License can be found in `/usr/share/common-licenses/LGPL-2'.
3150
=== removed file 'debian/libobexftp-perl.install'
--- debian/libobexftp-perl.install 2008-10-25 16:28:12 +0000
+++ debian/libobexftp-perl.install 1970-01-01 00:00:00 +0000
@@ -1,1 +0,0 @@
1usr/lib/perl5/*
20
=== added file 'debian/libobexftp-perl.install.in'
--- debian/libobexftp-perl.install.in 1970-01-01 00:00:00 +0000
+++ debian/libobexftp-perl.install.in 2014-07-31 21:35:45 +0000
@@ -0,0 +1,1 @@
1@PERL_ARCHLIB@/*
02
=== modified file 'debian/rules'
--- debian/rules 2014-06-10 07:20:43 +0000
+++ debian/rules 2014-07-31 21:35:45 +0000
@@ -63,6 +63,8 @@
63CROSS= --build $(DEB_BUILD_GNU_TYPE)63CROSS= --build $(DEB_BUILD_GNU_TYPE)
64endif64endif
6565
66PERL_ARCHLIB := $(shell perl -MConfig -e 'print $$Config{vendorarch}')
67
66include /usr/share/quilt/quilt.make68include /usr/share/quilt/quilt.make
6769
68config.status: configure $(QUILT_STAMPFN)70config.status: configure $(QUILT_STAMPFN)
@@ -88,6 +90,7 @@
88 rm -f build-stamp90 rm -f build-stamp
89 debian/rules unpatch91 debian/rules unpatch
90 rm -rf doc/api92 rm -rf doc/api
93 rm -f debian/libobexftp-perl.install
91 $(MAKE) -C doc clean || true94 $(MAKE) -C doc clean || true
92 $(MAKE) distclean || true95 $(MAKE) distclean || true
93 rm -f swig/python/__init__.py[co]96 rm -f swig/python/__init__.py[co]
@@ -109,6 +112,7 @@
109binary-arch: build install112binary-arch: build install
110 dh_testdir113 dh_testdir
111 dh_testroot114 dh_testroot
115 sed -e 's;@PERL_ARCHLIB@;$(PERL_ARCHLIB);g;' $(CURDIR)/debian/libobexftp-perl.install.in > $(CURDIR)/debian/libobexftp-perl.install
112 dh_install --sourcedir=debian/tmp --autodest --fail-missing -X.la116 dh_install --sourcedir=debian/tmp --autodest --fail-missing -X.la
113 dh_installdocs -XCOPYING -XINSTALL -Xobexftp.1117 dh_installdocs -XCOPYING -XINSTALL -Xobexftp.1
114 dh_installman118 dh_installman
@@ -120,7 +124,7 @@
120 dh_strip124 dh_strip
121125
122ifeq ($(COMPILE_PERL_BINDING),yes)126ifeq ($(COMPILE_PERL_BINDING),yes)
123 find $(CURDIR)/debian/*/usr/lib/perl5 -name *.so -type f -exec chrpath -d {} \;127 find $(CURDIR)/debian/*/$(PERL_ARCHLIB) -name *.so -type f -exec chrpath -d {} \;
124#run it again to make sure that permissions are correct128#run it again to make sure that permissions are correct
125 dh_fixperms129 dh_fixperms
126 dh_perl -plibobexftp-perl130 dh_perl -plibobexftp-perl

Subscribers

People subscribed via source and target branches

to all changes: