summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseb <seb>2006-10-15 22:54:26 +0000
committerseb <seb>2006-10-15 22:54:26 +0000
commita984aa5092139dff5600cf9cbd6a91a1c4cf0eed (patch)
treec07e747f3fa7ecceb5516bfc8901b41207a5dcd9
parent604f694f75b734d3799fdd4630f9dedcfbd2fd96 (diff)
downloadpkgsrc-a984aa5092139dff5600cf9cbd6a91a1c4cf0eed.tar.gz
Fixed "test ==".
-rw-r--r--devel/subversion/distinfo3
-rw-r--r--devel/subversion/patches/patch-ak22
-rw-r--r--sysutils/xentools20/distinfo5
-rw-r--r--sysutils/xentools20/patches/patch-ax29
-rw-r--r--sysutils/xentools20/patches/patch-ay40
-rw-r--r--sysutils/xentools20/patches/patch-az13
6 files changed, 110 insertions, 2 deletions
diff --git a/devel/subversion/distinfo b/devel/subversion/distinfo
index 23633168cdb..d3d60a91fe1 100644
--- a/devel/subversion/distinfo
+++ b/devel/subversion/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.54 2006/09/11 04:14:30 epg Exp $
+$NetBSD: distinfo,v 1.55 2006/10/15 22:54:26 seb Exp $
SHA1 (subversion-1.4.0.tar.gz) = fcea8ab76d6d6b3d532d921b94c312ca7fdc9f81
RMD160 (subversion-1.4.0.tar.gz) = 7a868b4fe6338ccdb93916afffbe8e2692450039
@@ -8,3 +8,4 @@ SHA1 (patch-ag) = c1e41bbb0e6a0ae5015cb24fe3db7ce67931d6b8
SHA1 (patch-ah) = c41c68a8ad82a2e5f6c3e2568589da5b819946b4
SHA1 (patch-ai) = cf347c90c225dc2adf4908eaa4d632cf61434b65
SHA1 (patch-aj) = 18a90663e2abd2ea2ad5f9d3f0e76a3d937d3e64
+SHA1 (patch-ak) = cdcc7565fe06d4f0da5635158cbb920134c62df4
diff --git a/devel/subversion/patches/patch-ak b/devel/subversion/patches/patch-ak
new file mode 100644
index 00000000000..55cf8999437
--- /dev/null
+++ b/devel/subversion/patches/patch-ak
@@ -0,0 +1,22 @@
+$NetBSD: patch-ak,v 1.1 2006/10/15 22:54:26 seb Exp $
+
+--- subversion/tests/cmdline/davautocheck.sh.orig 2006-04-27 17:18:09.000000000 +0000
++++ subversion/tests/cmdline/davautocheck.sh
+@@ -62,7 +62,7 @@ function query() {
+ echo -n "$SCRIPT: $1 (y/n)? [$2] "
+ read -n 1 -t 32
+ echo
+- [ "${REPLY:-$2}" == 'y' ]
++ [ "${REPLY:-$2}" = 'y' ]
+ }
+
+ function get_loadmodule_config() {
+@@ -268,7 +268,7 @@ rm "$HTTPD_CFG-copy"
+
+ say "HTTPD is good, starting the tests..."
+
+-if [ $# == 0 ]; then
++if [ $# = 0 ]; then
+ time make check "BASE_URL=$BASE_URL"
+ r=$?
+ else
diff --git a/sysutils/xentools20/distinfo b/sysutils/xentools20/distinfo
index 4e51cce8ac0..4bb547da774 100644
--- a/sysutils/xentools20/distinfo
+++ b/sysutils/xentools20/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.12 2005/09/16 18:14:49 bouyer Exp $
+$NetBSD: distinfo,v 1.13 2006/10/15 23:34:02 seb Exp $
SHA1 (xen-2.0.7-src.tgz) = 5317100e1e062961e3fee398fccbf023eb8f0337
RMD160 (xen-2.0.7-src.tgz) = db99fb49e592df7229d4d361c48bab1d23a1d725
@@ -21,3 +21,6 @@ SHA1 (patch-at) = 0964bc7dd23ff6fcd596d6a8564d9e3033f34563
SHA1 (patch-au) = a5eb7b34d43f57a3e1d4644e98ec571f30c56f5e
SHA1 (patch-av) = 8de5c95093571670f3eedf71684634f999ebda54
SHA1 (patch-aw) = cb66cce69dc7cecb478702108f2905a22ffc3aed
+SHA1 (patch-ax) = b4a0b8e06ff7ab6424d5340ee35d8f62243f8e3c
+SHA1 (patch-ay) = a77b39b508d05a8276550bccff02e770d27c3f42
+SHA1 (patch-az) = 972708387e8f87a2283b123887d6062eabc8bd82
diff --git a/sysutils/xentools20/patches/patch-ax b/sysutils/xentools20/patches/patch-ax
new file mode 100644
index 00000000000..f501fbd40e0
--- /dev/null
+++ b/sysutils/xentools20/patches/patch-ax
@@ -0,0 +1,29 @@
+$NetBSD: patch-ax,v 1.1 2006/10/15 23:34:02 seb Exp $
+
+--- examples/network.orig 2005-08-03 23:57:57.000000000 +0000
++++ examples/network
+@@ -158,7 +158,7 @@ show_status () {
+ }
+
+ op_start () {
+- if [ "${bridge}" == "null" ] ; then
++ if [ "${bridge}" = "null" ] ; then
+ return
+ fi
+
+@@ -190,13 +190,13 @@ op_start () {
+ # Attach the real interface to the bridge.
+ add_to_bridge ${bridge} ${netdev}
+
+- if [ ${antispoof} == 'yes' ] ; then
++ if [ ${antispoof} = 'yes' ] ; then
+ antispoofing ${netdev} ${bridge}
+ fi
+ }
+
+ op_stop () {
+- if [ "${bridge}" == "null" ] ; then
++ if [ "${bridge}" = "null" ] ; then
+ return
+ fi
+
diff --git a/sysutils/xentools20/patches/patch-ay b/sysutils/xentools20/patches/patch-ay
new file mode 100644
index 00000000000..bb6fc542f42
--- /dev/null
+++ b/sysutils/xentools20/patches/patch-ay
@@ -0,0 +1,40 @@
+$NetBSD: patch-ay,v 1.1 2006/10/15 23:34:02 seb Exp $
+
+--- vnet/examples/network-vnet.orig 2005-08-03 23:57:58.000000000 +0000
++++ vnet/examples/network-vnet
+@@ -154,7 +154,7 @@ vnet_insert () {
+ break
+ fi
+ done
+- if [ "${mod_obj}" == "" ] ; then
++ if [ "${mod_obj}" = "" ] ; then
+ return
+ fi
+ if lsmod | grep -q ${module} ; then
+@@ -166,7 +166,7 @@ vnet_insert () {
+ }
+
+ op_start () {
+- if [ "${bridge}" == "null" ] ; then
++ if [ "${bridge}" = "null" ] ; then
+ return
+ fi
+ # Create the bridge and give it the interface IP addresses.
+@@ -179,7 +179,7 @@ op_start () {
+ brctl addif ${bridge} ${netdev}
+ fi
+
+- if [ ${antispoof} == 'yes' ] ; then
++ if [ ${antispoof} = 'yes' ] ; then
+ antispoofing ${netdev} ${bridge}
+ fi
+
+@@ -187,7 +187,7 @@ op_start () {
+ }
+
+ op_stop () {
+- if [ "${bridge}" == "null" ] ; then
++ if [ "${bridge}" = "null" ] ; then
+ return
+ fi
+ # Remove the interface from the bridge.
diff --git a/sysutils/xentools20/patches/patch-az b/sysutils/xentools20/patches/patch-az
new file mode 100644
index 00000000000..b755a356973
--- /dev/null
+++ b/sysutils/xentools20/patches/patch-az
@@ -0,0 +1,13 @@
+$NetBSD: patch-az,v 1.1 2006/10/15 23:34:02 seb Exp $
+
+--- examples/vif-bridge.orig 2005-08-03 23:57:57.000000000 +0000
++++ examples/vif-bridge
+@@ -70,7 +70,7 @@ case $OP in
+ esac
+
+ # Don't do anything if the bridge is "null".
+-if [ "${bridge}" == "null" ] ; then
++if [ "${bridge}" = "null" ] ; then
+ exit
+ fi
+