Hi, This diff updates sash to the latest release.
Comments ? OK ? Cheers, benoit
Index: Makefile =================================================================== RCS file: /cvs/ports/shells/sash/Makefile,v retrieving revision 1.14 diff -u -p -u -r1.14 Makefile --- Makefile 1 Jan 2014 20:46:28 -0000 1.14 +++ Makefile 26 Apr 2014 18:54:22 -0000 @@ -2,7 +2,7 @@ COMMENT= stand-alone shell with built-in commands -DISTNAME= sash-3.7 +DISTNAME = sash-3.8 CATEGORIES= shells HOMEPAGE= http://www.canb.auug.org.au/~dbell/ Index: distinfo =================================================================== RCS file: /cvs/ports/shells/sash/distinfo,v retrieving revision 1.6 diff -u -p -u -r1.6 distinfo --- distinfo 5 Dec 2007 14:42:51 -0000 1.6 +++ distinfo 26 Apr 2014 18:54:22 -0000 @@ -1,5 +1,2 @@ -MD5 (sash-3.7.tar.gz) = 7nx+1arXZZmXTQFqbyAe9A== -RMD160 (sash-3.7.tar.gz) = 2JpHmORRIV+FBdUDOwfxzxc9OCM= -SHA1 (sash-3.7.tar.gz) = PdIstTh5ZhhNvVQEMZqcrB05GS4= -SHA256 (sash-3.7.tar.gz) = NScmrblza6WptFnVyKfXw7LDbMmTY63MwlqKmR1xnH8= -SIZE (sash-3.7.tar.gz) = 50337 +SHA256 (sash-3.8.tar.gz) = E8T5qRFSaUkJa/VDwhpBFJ5rA3BhGTsVumtwfup7ZXk= +SIZE (sash-3.8.tar.gz) = 53049 Index: patches/patch-cmds_c =================================================================== RCS file: /cvs/ports/shells/sash/patches/patch-cmds_c,v retrieving revision 1.4 diff -u -p -u -r1.4 patch-cmds_c --- patches/patch-cmds_c 6 Jun 2007 11:39:53 -0000 1.4 +++ patches/patch-cmds_c 26 Apr 2014 18:54:22 -0000 @@ -1,7 +1,15 @@ -$OpenBSD: patch-cmds_c,v 1.4 2007/06/06 11:39:53 steven Exp $ ---- cmds.c.orig Wed Jun 6 13:34:53 2007 -+++ cmds.c Wed Jun 6 13:36:16 2007 -@@ -594,7 +594,6 @@ do_mount(int argc, const char ** argv) +$OpenBSD$ +--- cmds.c.orig Fri Mar 7 14:06:29 2014 ++++ cmds.c Sat Apr 26 20:53:08 2014 +@@ -28,7 +28,6 @@ + #else + #define dev_t unsigned short + #endif +-#include <linux/loop.h> + #undef dev_t + #define dev_t dev_t + +@@ -748,7 +747,6 @@ #elif HAVE_BSD_MOUNT { struct ufs_args ufs; @@ -9,24 +17,26 @@ $OpenBSD: patch-cmds_c,v 1.4 2007/06/06 struct iso_args iso; struct mfs_args mfs; struct msdosfs_args msdosfs; -@@ -603,11 +602,6 @@ do_mount(int argc, const char ** argv) - if(!strcmp(type, "ffs") || !strcmp(type, "ufs")) { +@@ -759,13 +757,6 @@ ufs.fspec = (char*) argv[0]; args = &ufs; -- } else if(!strcmp(type, "adosfs")) { + } +- else if (!strcmp(type, "adosfs")) +- { - adosfs.fspec = (char*) argv[0]; - adosfs.uid = 0; - adosfs.gid = 0; - args = &adosfs; - } else if(!strcmp(type, "cd9660")) { +- } + else if (!strcmp(type, "cd9660")) + { iso.fspec = (char*) argv[0]; - args = &iso; -@@ -622,7 +616,7 @@ do_mount(int argc, const char ** argv) - } else { +@@ -787,7 +778,7 @@ + { fprintf(stderr, "Unknown filesystem type: %s", type); fprintf(stderr, - "Supported: ffs ufs adosfs cd9660 mfs msdos\n"); + "Supported: ffs ufs cd9660 mfs msdos\n"); - return; - } + return 1; + }