summaryrefslogtreecommitdiff
path: root/shells
diff options
context:
space:
mode:
authorfcambus <fcambus@pkgsrc.org>2020-05-09 21:58:20 +0000
committerfcambus <fcambus@pkgsrc.org>2020-05-09 21:58:20 +0000
commit3f2a786e128241631e763c105380866881ca8273 (patch)
tree88df202dec74b1c70553881145b8c98b3211f78d /shells
parentaa06ea8f15083112358585d192cb87744ef5a7e5 (diff)
downloadpkgsrc-3f2a786e128241631e763c105380866881ca8273.tar.gz
oksh: update to 6.7.
No ChangeLog available.
Diffstat (limited to 'shells')
-rw-r--r--shells/oksh/Makefile5
-rw-r--r--shells/oksh/distinfo10
-rw-r--r--shells/oksh/patches/patch-io.c12
-rw-r--r--shells/oksh/patches/patch-portable.h22
4 files changed, 7 insertions, 42 deletions
diff --git a/shells/oksh/Makefile b/shells/oksh/Makefile
index 3a3c24089ea..a6b33a9ec5a 100644
--- a/shells/oksh/Makefile
+++ b/shells/oksh/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.3 2020/03/07 21:14:45 cheusov Exp $
+# $NetBSD: Makefile,v 1.4 2020/05/09 21:58:20 fcambus Exp $
-DISTNAME= oksh-6.5
-PKGREVISION= 1
+DISTNAME= oksh-6.7
CATEGORIES= shells
MASTER_SITES= ${MASTER_SITE_GITHUB:=ibara/}
GITHUB_TAG= ${DISTNAME}
diff --git a/shells/oksh/distinfo b/shells/oksh/distinfo
index 9c042f4cbbb..40012b4bec6 100644
--- a/shells/oksh/distinfo
+++ b/shells/oksh/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.2 2019/07/24 11:15:41 maya Exp $
+$NetBSD: distinfo,v 1.3 2020/05/09 21:58:20 fcambus Exp $
-SHA1 (oksh-6.5.tar.gz) = 80ca09d09a430b70ad38d7b3098d642560f5323e
-RMD160 (oksh-6.5.tar.gz) = d774a686fc76f6671cc9d6be542c6d4f0afcd07c
-SHA512 (oksh-6.5.tar.gz) = 473fc21e829018d3dd2977ae2909d95488a0c8f7a293778fe1e73f8e047cf46da2e3afe4786e95ff650fc7d207da342e0b2a8f8ccd98aa5957765a25bb844f98
-Size (oksh-6.5.tar.gz) = 301894 bytes
+SHA1 (oksh-6.7.tar.gz) = 1851b2bf02807159ed6481aa328ff7aab7bfc4e1
+RMD160 (oksh-6.7.tar.gz) = d5293fc41edd983f14fb5d5ec10e695b0dc4e8ca
+SHA512 (oksh-6.7.tar.gz) = 94bdf846dbce68a2c72bf83b867fd1beeaa0f36f8fdb3dd95cee801f75abd6acd8433cc7e534e79cc053274defeec55ba71714e178cc9b53291c7907edb01b37
+Size (oksh-6.7.tar.gz) = 301879 bytes
SHA1 (patch-io.c) = e231fe9fbef5df7f7a73facbedb0260134e8158c
SHA1 (patch-portable.h) = 9b4cdc1511db6093a0fe24c101bd4491c5df2f49
diff --git a/shells/oksh/patches/patch-io.c b/shells/oksh/patches/patch-io.c
deleted file mode 100644
index 0ff1d48c309..00000000000
--- a/shells/oksh/patches/patch-io.c
+++ /dev/null
@@ -1,12 +0,0 @@
-$NetBSD: patch-io.c,v 1.1 2019/07/24 11:15:41 maya Exp $
-
---- io.c.orig 2019-04-10 23:55:43.000000000 +0000
-+++ io.c
-@@ -10,6 +10,7 @@
- #include <errno.h>
- #include <fcntl.h>
- #include <string.h>
-+#include <stdlib.h>
- #include <unistd.h>
-
- #include "sh.h"
diff --git a/shells/oksh/patches/patch-portable.h b/shells/oksh/patches/patch-portable.h
deleted file mode 100644
index 1f3f99b342d..00000000000
--- a/shells/oksh/patches/patch-portable.h
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-portable.h,v 1.1 2019/07/24 11:15:41 maya Exp $
-
-Avoid re-defining timespecsub on netbsd, that already has it.
-
---- portable.h.orig 2019-04-10 23:55:43.000000000 +0000
-+++ portable.h
-@@ -151,6 +151,7 @@
- ((tsp)->tv_nsec cmp (usp)->tv_nsec) : \
- ((tsp)->tv_sec cmp (usp)->tv_sec))
-
-+#ifndef timespecsub
- #define timespecsub(tsp, usp, vsp) \
- do { \
- (vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \
-@@ -160,6 +161,7 @@
- (vsp)->tv_nsec += 1000000000L; \
- } \
- } while (0)
-+#endif
- #endif /* !__OpenBSD__ */
-
- #if !defined(HAVE_ST_MTIM) && !defined(HAVE_ST_MTIMESPEC)