Merge lp:~dannf/ubuntu/trusty/nis/lp1280666 into lp:ubuntu/trusty/nis

Proposed by dann frazier
Status: Merged
Merge reported by: Marc Deslauriers
Merged at revision: not available
Proposed branch: lp:~dannf/ubuntu/trusty/nis/lp1280666
Merge into: lp:ubuntu/trusty/nis
Diff against target: 128 lines (+16/-33)
8 files modified
debian/autoreconf (+3/-0)
debian/changelog (+6/-0)
debian/control (+1/-1)
debian/fix-up-autoconf (+0/-27)
debian/rules (+3/-5)
yp-tools-2.9/configure.in (+1/-0)
ypbind-mt-1.20.1/configure.in (+1/-0)
ypserv-2.19/configure.in (+1/-0)
To merge this branch: bzr merge lp:~dannf/ubuntu/trusty/nis/lp1280666
Reviewer Review Type Date Requested Status
Ubuntu branches Pending
Review via email: mp+206592@code.launchpad.net
To post a comment you must log in.
36. By dann frazier

use dh_clean instead of manually removing debhelper log

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== added file 'debian/autoreconf'
--- debian/autoreconf 1970-01-01 00:00:00 +0000
+++ debian/autoreconf 2014-02-18 17:15:45 +0000
@@ -0,0 +1,3 @@
1ypbind-mt-1.20.1
2ypserv-2.19
3yp-tools-2.9
04
=== modified file 'debian/changelog'
--- debian/changelog 2012-06-25 16:55:01 +0000
+++ debian/changelog 2014-02-18 17:15:45 +0000
@@ -1,3 +1,9 @@
1nis (3.17-32ubuntu6) UNRELEASED; urgency=medium
2
3 * Use dh-autoreconf to fix FTBFS on arm64 (LP: #1280666)
4
5 -- dann frazier <dannf@debian.org> Sat, 15 Feb 2014 13:15:00 -0700
6
1nis (3.17-32ubuntu5) quantal; urgency=low7nis (3.17-32ubuntu5) quantal; urgency=low
28
3 * debian/preinst: Check for existence of /etc/init.d/nis before9 * debian/preinst: Check for existence of /etc/init.d/nis before
410
=== modified file 'debian/control'
--- debian/control 2012-02-28 00:20:56 +0000
+++ debian/control 2014-02-18 17:15:45 +0000
@@ -5,7 +5,7 @@
5XSBC-Original-Maintainer: Mark Brown <broonie@debian.org>5XSBC-Original-Maintainer: Mark Brown <broonie@debian.org>
6Uploaders: Miquel van Smoorenburg <miquels@cistron.nl>6Uploaders: Miquel van Smoorenburg <miquels@cistron.nl>
7Standards-Version: 3.8.17Standards-Version: 3.8.1
8Build-Depends: libgdbm-dev, gcc (>= 2.95), gettext, po-debconf, libslp-dev, libdbus-glib-1-dev, network-manager-dev, file, debhelper (>= 7.3.15ubuntu2)8Build-Depends: libgdbm-dev, gcc (>= 2.95), gettext, po-debconf, libslp-dev, libdbus-glib-1-dev, network-manager-dev, file, debhelper (>= 7.3.15ubuntu2), dh-autoreconf
9Vcs-Bzr: http://bzr.debian.org/bzr/pkg-nis/nis/debian/9Vcs-Bzr: http://bzr.debian.org/bzr/pkg-nis/nis/debian/
1010
11Package: nis11Package: nis
1212
=== removed file 'debian/fix-up-autoconf'
--- debian/fix-up-autoconf 2004-08-10 01:41:45 +0000
+++ debian/fix-up-autoconf 1970-01-01 00:00:00 +0000
@@ -1,27 +0,0 @@
1#! /bin/sh
2#
3# Prevent autoconf and automake if they're installed from
4# generating new Makefiles and configure scripts by lowering
5# the timestamps on the master files if they're newer than
6# the generated files.
7#
8
9find . -name \*.am | while read master
10do
11 generated=${master%.am}.in
12 if [ -f $generated -a $master -nt $generated ]
13 then
14 echo touch -r $generated $master
15 touch -r $generated $master
16 fi
17done
18
19find . -name configure.in | while read master
20do
21 generated=${master%.in}
22 if [ -f $generated -a $master -nt $generated ]
23 then
24 echo touch -r $generated $master
25 touch -r $generated $master
26 fi
27done
280
=== modified file 'debian/rules'
--- debian/rules 2012-02-28 00:20:56 +0000
+++ debian/rules 2014-02-18 17:15:45 +0000
@@ -34,11 +34,7 @@
3434
35build:35build:
36# Builds the binary package.36# Builds the binary package.
37 #37 dh_autoreconf
38 # Kludge to prevent configure from being rebuilt
39 #
40 sh debian/fix-up-autoconf
41 #
42 -(cd $(YPTOOLS) && [ ! -f config.status ] && \38 -(cd $(YPTOOLS) && [ ! -f config.status ] && \
43 CFLAGS=$(CFLAGS) ./configure \39 CFLAGS=$(CFLAGS) ./configure \
44 --prefix=/usr --mandir=/usr/share/man \40 --prefix=/usr --mandir=/usr/share/man \
@@ -77,6 +73,8 @@
77 rm -f build debian/{files,substvars,templates.gen}73 rm -f build debian/{files,substvars,templates.gen}
78 find . -name '*.bak' -o -name '*~' | xargs -r rm --74 find . -name '*.bak' -o -name '*~' | xargs -r rm --
79 rm -f */config.cache75 rm -f */config.cache
76 dh_autoreconf_clean
77 dh_clean
8078
81# Architecture independant files.79# Architecture independant files.
82binary-indep: build80binary-indep: build
8381
=== modified file 'yp-tools-2.9/configure.in'
--- yp-tools-2.9/configure.in 2005-04-03 12:29:38 +0000
+++ yp-tools-2.9/configure.in 2014-02-18 17:15:45 +0000
@@ -4,6 +4,7 @@
4AC_CONFIG_SRCDIR([src/ypcat.c])4AC_CONFIG_SRCDIR([src/ypcat.c])
5AM_CONFIG_HEADER(config.h)5AM_CONFIG_HEADER(config.h)
6AC_PREFIX_DEFAULT(/usr)6AC_PREFIX_DEFAULT(/usr)
7AM_GNU_GETTEXT_VERSION(0.18.3)
78
8dnl Set of available languages.9dnl Set of available languages.
9ALL_LINGUAS="de"10ALL_LINGUAS="de"
1011
=== modified file 'ypbind-mt-1.20.1/configure.in'
--- ypbind-mt-1.20.1/configure.in 2006-11-28 15:27:25 +0000
+++ ypbind-mt-1.20.1/configure.in 2014-02-18 17:15:45 +0000
@@ -3,6 +3,7 @@
3AM_INIT_AUTOMAKE(ypbind-mt, 1.20.1)3AM_INIT_AUTOMAKE(ypbind-mt, 1.20.1)
4AM_CONFIG_HEADER(config.h)4AM_CONFIG_HEADER(config.h)
5AC_PREFIX_DEFAULT(/usr)5AC_PREFIX_DEFAULT(/usr)
6AM_GNU_GETTEXT_VERSION(0.18.3)
67
7dnl Set of available languages.8dnl Set of available languages.
8ALL_LINGUAS="de"9ALL_LINGUAS="de"
910
=== modified file 'ypserv-2.19/configure.in'
--- ypserv-2.19/configure.in 2006-07-10 10:31:56 +0000
+++ ypserv-2.19/configure.in 2014-02-18 17:15:45 +0000
@@ -7,6 +7,7 @@
7AC_CONFIG_SRCDIR([ypserv/ypserv.c])7AC_CONFIG_SRCDIR([ypserv/ypserv.c])
8AM_CONFIG_HEADER(config.h)8AM_CONFIG_HEADER(config.h)
9AC_PREFIX_DEFAULT(/usr)9AC_PREFIX_DEFAULT(/usr)
10AM_GNU_GETTEXT_VERSION(0.18.3)
1011
11AC_SUBST(PACKAGE)12AC_SUBST(PACKAGE)
12AC_SUBST(VERSION)13AC_SUBST(VERSION)

Subscribers

People subscribed via source and target branches

to all changes: