pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc Fixed "test ==".
details: https://anonhg.NetBSD.org/pkgsrc/rev/5a7193f66681
branches: trunk
changeset: 520123:5a7193f66681
user: seb <seb%pkgsrc.org@localhost>
date: Sun Oct 15 22:54:26 2006 +0000
description:
Fixed "test ==".
diffstat:
devel/subversion/distinfo | 3 +-
devel/subversion/patches/patch-ak | 22 +++++++++++++++++++
sysutils/xentools20/distinfo | 5 +++-
sysutils/xentools20/patches/patch-ax | 29 ++++++++++++++++++++++++++
sysutils/xentools20/patches/patch-ay | 40 ++++++++++++++++++++++++++++++++++++
sysutils/xentools20/patches/patch-az | 13 +++++++++++
6 files changed, 110 insertions(+), 2 deletions(-)
diffs (150 lines):
diff -r 2dffd33c949e -r 5a7193f66681 devel/subversion/distinfo
--- a/devel/subversion/distinfo Sun Oct 15 22:25:41 2006 +0000
+++ b/devel/subversion/distinfo Sun Oct 15 22:54:26 2006 +0000
@@ -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-ah) = c41c68a8ad82a2e5f6c3e2568589da5b819946b4
SHA1 (patch-ai) = cf347c90c225dc2adf4908eaa4d632cf61434b65
SHA1 (patch-aj) = 18a90663e2abd2ea2ad5f9d3f0e76a3d937d3e64
+SHA1 (patch-ak) = cdcc7565fe06d4f0da5635158cbb920134c62df4
diff -r 2dffd33c949e -r 5a7193f66681 devel/subversion/patches/patch-ak
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/subversion/patches/patch-ak Sun Oct 15 22:54:26 2006 +0000
@@ -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 -r 2dffd33c949e -r 5a7193f66681 sysutils/xentools20/distinfo
--- a/sysutils/xentools20/distinfo Sun Oct 15 22:25:41 2006 +0000
+++ b/sysutils/xentools20/distinfo Sun Oct 15 22:54:26 2006 +0000
@@ -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-au) = a5eb7b34d43f57a3e1d4644e98ec571f30c56f5e
SHA1 (patch-av) = 8de5c95093571670f3eedf71684634f999ebda54
SHA1 (patch-aw) = cb66cce69dc7cecb478702108f2905a22ffc3aed
+SHA1 (patch-ax) = b4a0b8e06ff7ab6424d5340ee35d8f62243f8e3c
+SHA1 (patch-ay) = a77b39b508d05a8276550bccff02e770d27c3f42
+SHA1 (patch-az) = 972708387e8f87a2283b123887d6062eabc8bd82
diff -r 2dffd33c949e -r 5a7193f66681 sysutils/xentools20/patches/patch-ax
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/sysutils/xentools20/patches/patch-ax Sun Oct 15 22:54:26 2006 +0000
@@ -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 -r 2dffd33c949e -r 5a7193f66681 sysutils/xentools20/patches/patch-ay
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/sysutils/xentools20/patches/patch-ay Sun Oct 15 22:54:26 2006 +0000
@@ -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 -r 2dffd33c949e -r 5a7193f66681 sysutils/xentools20/patches/patch-az
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/sysutils/xentools20/patches/patch-az Sun Oct 15 22:54:26 2006 +0000
@@ -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
+
Home |
Main Index |
Thread Index |
Old Index