pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/textproc/lua-stringy lua-stringy: Update to 0.7.0
details: https://anonhg.NetBSD.org/pkgsrc/rev/861c08c72637
branches: trunk
changeset: 443241:861c08c72637
user: nia <nia%pkgsrc.org@localhost>
date: Wed Dec 09 11:12:47 2020 +0000
description:
lua-stringy: Update to 0.7.0
Adds join function.
diffstat:
textproc/lua-stringy/DESCR | 3 ++-
textproc/lua-stringy/Makefile | 9 ++++++---
textproc/lua-stringy/distinfo | 11 ++++++-----
textproc/lua-stringy/patches/patch-stringy_stringy.c | 18 ++++++++++++++++++
4 files changed, 32 insertions(+), 9 deletions(-)
diffs (73 lines):
diff -r 63094d66c5be -r 861c08c72637 textproc/lua-stringy/DESCR
--- a/textproc/lua-stringy/DESCR Wed Dec 09 11:12:33 2020 +0000
+++ b/textproc/lua-stringy/DESCR Wed Dec 09 11:12:47 2020 +0000
@@ -1,1 +1,2 @@
-Fast Lua string operations for: count, find, startswith, endswith, split
+Fast Lua string operations for: count, find, startswith, endswith, split,
+strip, join
diff -r 63094d66c5be -r 861c08c72637 textproc/lua-stringy/Makefile
--- a/textproc/lua-stringy/Makefile Wed Dec 09 11:12:33 2020 +0000
+++ b/textproc/lua-stringy/Makefile Wed Dec 09 11:12:47 2020 +0000
@@ -1,11 +1,11 @@
-# $NetBSD: Makefile,v 1.1 2020/07/08 11:54:53 nia Exp $
+# $NetBSD: Makefile,v 1.2 2020/12/09 11:12:47 nia Exp $
-DISTNAME= lua-stringy-0.6.1
+DISTNAME= lua-stringy-0.7.0
PKGNAME= ${DISTNAME:S/lua-/${LUA_PKGPREFIX}-/1}
CATEGORIES= textproc lua
MASTER_SITES= ${MASTER_SITE_GITHUB:=mdeneen/}
GITHUB_PROJECT= lua-stringy
-GITHUB_TAG= v0.6-1
+GITHUB_TAG= v0.7-0
MAINTAINER= nia%NetBSD.org@localhost
HOMEPAGE= https://github.com/mdeneen/lua-stringy
@@ -24,5 +24,8 @@
${INSTALL_LIB} ${WRKSRC}/stringy/stringy.so \
${DESTDIR}${PREFIX}/${LUA_CDIR}/stringy.so
+do-test:
+ cd ${WRKSRC}/stringy && ${LUA_INTERPRETER} stringy_test.lua
+
.include "../../lang/lua/module.mk"
.include "../../mk/bsd.pkg.mk"
diff -r 63094d66c5be -r 861c08c72637 textproc/lua-stringy/distinfo
--- a/textproc/lua-stringy/distinfo Wed Dec 09 11:12:33 2020 +0000
+++ b/textproc/lua-stringy/distinfo Wed Dec 09 11:12:47 2020 +0000
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.1 2020/07/08 11:54:53 nia Exp $
+$NetBSD: distinfo,v 1.2 2020/12/09 11:12:47 nia Exp $
-SHA1 (lua-stringy-0.6.1.tar.gz) = 25ed808267eb8e09993ecc7b067ad5f0362bcb61
-RMD160 (lua-stringy-0.6.1.tar.gz) = bd2b7d55ca4b53d2258a4c3ed685a51b2540c944
-SHA512 (lua-stringy-0.6.1.tar.gz) = 2c2e07bc0c9981a58da350e13a2c956a250fd3a270aa8c165a8ad4609c6bd1a3c308df89352827f5a936c50d942b5348a4accb68776d628d9bcb66e9afd1ec2a
-Size (lua-stringy-0.6.1.tar.gz) = 5826 bytes
+SHA1 (lua-stringy-0.7.0.tar.gz) = 1aad5694ac3b5662b6b02165700e79f51832d18e
+RMD160 (lua-stringy-0.7.0.tar.gz) = 8996c17b8fb6147cfc693e96d657e41bbfe43a8b
+SHA512 (lua-stringy-0.7.0.tar.gz) = e23ea0f04bd4c1db8fe3fdda2d8fb4a18e78b82aadc12edf1114b29b18b68d981f7d304ccd1823711e7cc6dc586694f0d902faba41a91387319a1ceefc29e116
+Size (lua-stringy-0.7.0.tar.gz) = 6213 bytes
SHA1 (patch-stringy_Makefile) = de1abbb4e5c5a4b805caea58bd88b1ed4eeff0ae
+SHA1 (patch-stringy_stringy.c) = a984b24ec331fc0188b95a119c923f443e08b8a3
diff -r 63094d66c5be -r 861c08c72637 textproc/lua-stringy/patches/patch-stringy_stringy.c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/lua-stringy/patches/patch-stringy_stringy.c Wed Dec 09 11:12:47 2020 +0000
@@ -0,0 +1,18 @@
+$NetBSD: patch-stringy_stringy.c,v 1.1 2020/12/09 11:12:47 nia Exp $
+
+Argument to ctype functions must be unsigned char.
+
+--- stringy/stringy.c.orig 2020-09-16 18:28:14.000000000 +0000
++++ stringy/stringy.c
+@@ -164,9 +164,9 @@ static int strip(lua_State *L) {
+ front = luaL_checklstring(L, 1, &size);
+ end = &front[size - 1];
+
+- for ( ; size && isspace(*front) ; size-- , front++)
++ for ( ; size && isspace((unsigned char)*front) ; size-- , front++)
+ ;
+- for ( ; size && isspace(*end) ; size-- , end--)
++ for ( ; size && isspace((unsigned char)*end) ; size-- , end--)
+ ;
+
+ lua_pushlstring(L, front, (size_t)(end - front) + 1);
Home |
Main Index |
Thread Index |
Old Index