Package: ifupdown
Version: 0.6.4-4.12exp5
Severity: normal
Tags: patch
The patch is attached.
-- System Information:
Debian Release: 3.1
APT prefers testing
APT policy: (500, 'testing'), (50, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.11
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Versions of packages ifupdown depends on:
ii debconf [debconf-2.0] 1.4.32 Debian configuration management sy
ii libc6 2.3.2.ds1-20 GNU C Library: Shared libraries an
ii net-tools 1.60-10 The NET-3 networking toolkit
-- debconf information excluded
diff -Naur ifupdown-0.6.4-4.12/debian/changelog
ifupdown-0.6.4-4.12a1/debian/changelog
--- ifupdown-0.6.4-4.12/debian/changelog 2005-04-03 11:11:39.000000000
+0200
+++ ifupdown-0.6.4-4.12a1/debian/changelog 2005-04-03 10:29:58.000000000
+0200
@@ -1,3 +1,13 @@
+ifupdown (0.6.4-4.12a1) unstable; urgency=low
+
+ * Depend on initscripts (>= 2.85-15) | coreutils (>= 5.3.0) in order
+ to get a readlink program that implements the -f option the way we
+ need (Closes: #302519)
+ * Add bash shebang to mkenwdep.sh (closes: #294970) and remove some
+ XSIisms
+
+ -- Thomas Hood <[EMAIL PROTECTED]> Fri, 1 Apr 2005 16:26:13 +0200
+
ifupdown (0.6.4-4.12) unstable; urgency=low
* Non-maintainer upload
diff -Naur ifupdown-0.6.4-4.12/debian/control
ifupdown-0.6.4-4.12a1/debian/control
--- ifupdown-0.6.4-4.12/debian/control 2005-04-03 11:11:39.000000000 +0200
+++ ifupdown-0.6.4-4.12a1/debian/control 2005-04-03 10:29:58.000000000
+0200
@@ -7,7 +7,7 @@
Package: ifupdown
Architecture: any
-Depends: net-tools, ${shlibs:Depends}, ${misc:Depends}, ${debconf-depends}
+Depends: initscripts (>= 2.85-15) | coreutils (>= 5.3.0), net-tools,
${shlibs:Depends}, ${misc:Depends}, ${debconf-depends}
Suggests: iproute, dhcp3-client | dhcp-client, ppp
Replaces: netbase (<< 4.00)
Conflicts: dhcp-client (= 3.0.1betaRC4-1)
diff -Naur ifupdown-0.6.4-4.12/makecdep.sh ifupdown-0.6.4-4.12a1/makecdep.sh
--- ifupdown-0.6.4-4.12/makecdep.sh 2000-11-18 08:12:02.000000000 +0100
+++ ifupdown-0.6.4-4.12a1/makecdep.sh 2005-04-03 10:29:58.000000000 +0200
@@ -1,6 +1,6 @@
-#!/bin/sh
+#!/bin/bash
FILE=$1
-if [ "$FILE" = "" -o ! -f "$FILE" ]; then
+if [ "$FILE" = "" ] || [ ! -f "$FILE" ]; then
echo "Please specify a .c file"
exit 1
fi
diff -Naur ifupdown-0.6.4-4.12/makenwdep.sh ifupdown-0.6.4-4.12a1/makenwdep.sh
--- ifupdown-0.6.4-4.12/makenwdep.sh 2000-11-18 08:12:01.000000000 +0100
+++ ifupdown-0.6.4-4.12a1/makenwdep.sh 2005-04-03 10:29:58.000000000 +0200
@@ -1,6 +1,9 @@
+#!/bin/bash
+# Require bash because we use echo -e
+
FILE=$1
-if [ "$FILE" = "" -o ! -f "$FILE" ]; then
+if [ "$FILE" = "" ] || [ ! -f "$FILE" ]; then
echo "Please specify a .nw file"
exit 1
fi