Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 4BEA31A9239 for ; Sat, 19 Dec 2020 11:30:26 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id B1D42850E0; Sat, 19 Dec 2020 11:30:25 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id EED4684D2E for ; Sat, 19 Dec 2020 11:30:24 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id qvRTslYywp1s for ; Sat, 19 Dec 2020 11:30:24 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 481EA84D27 for ; Sat, 19 Dec 2020 11:30:24 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4115CFA9D; Sat, 19 Dec 2020 11:30:24 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1608377424278210" MIME-Version: 1.0 Date: Sat, 19 Dec 2020 11:30:24 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/devel/lua-rocks To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20201219113024.4115CFA9D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1608377424278210 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sat Dec 19 11:30:24 UTC 2020 Modified Files: pkgsrc/devel/lua-rocks: Makefile distinfo Log Message: lua-rocks: Update to 3.5.0 ## What's new in LuaRocks 3.4.0 ### Features * `luarocks make` now supports `--only-deps` * `luarocks make` new flag: `--no-install`, which only performs the compilation step * `--deps-only` is now an alias for `--only-deps` (useful in case you always kept getting it wrong, like me!) * `luarocks build` and `luarocks make` now support using `--pin` and `--only-deps` at the same time, to produce a lock file of dependencies in use without installing the main package. * `luarocks show` can now accept a substring of the rock's name, like `list`. * `luarocks config`: when running without system-wide permissions, try storing the config locally by default. Also, if setting both lua_dir and --lua-version explicitly, auto-switch the default Lua version. * `luarocks` with no arguments now prints more info about the location of the Lua interpreter which is being used * `luarocks new_version` now keeps the old URL if the MD5 doesn't change. * `DEPS_DIR` is now accepted as a generic variable for dependency directories (e.g. `luarocks install foo DEPS_DIR=/usr/local`) * Handle quoting of arguments at the application level, for improved Windows support * All-in-one binary bundles `dkjson`, so it runs `luarocks upload` without requiring any additional dependencies. * Tweaks for Terra compatibility ### Fixes * win32: generate proper temp filename * No longer assume that Lua 5.3 is built with compat libraries and bundles `bit32` * `luarocks show`: do not crash when rockspec description is empty * When detecting the location of `lua.h`, check that its version matches the version of Lua being used * Fail gracefully when a third-party tool (wget, etc.) is missing * Fix logic for disabling mirrors that return network errors * Fix detection of Lua path based on arg variable * Fix regression on dependency matching of luarocks.loader To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 pkgsrc/devel/lua-rocks/Makefile cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/lua-rocks/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1608377424278210 Content-Disposition: inline Content-Length: 2076 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/lua-rocks/Makefile diff -u pkgsrc/devel/lua-rocks/Makefile:1.15 pkgsrc/devel/lua-rocks/Makefile:1.16 --- pkgsrc/devel/lua-rocks/Makefile:1.15 Thu Jul 2 20:53:10 2020 +++ pkgsrc/devel/lua-rocks/Makefile Sat Dec 19 11:30:24 2020 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.15 2020/07/02 20:53:10 nia Exp $ +# $NetBSD: Makefile,v 1.16 2020/12/19 11:30:24 nia Exp $ -DISTNAME= luarocks-3.3.1 +DISTNAME= luarocks-3.5.0 PKGNAME= ${DISTNAME:S/luarocks/${LUA_PKGPREFIX}-rocks/} -PKGREVISION= 1 CATEGORIES= devel lua MASTER_SITES= https://luarocks.org/releases/ @@ -20,7 +19,9 @@ MAKE_FILE= GNUmakefile .include "../../mk/bsd.prefs.mk" -PREFER.unzip= pkgsrc +.if ${OPSYS} == "NetBSD" +TOOLS_PLATFORM.unzip= # it seems to not like netbsd unzip(1) +.endif HAS_CONFIGURE= yes USE_LANGUAGES= # none Index: pkgsrc/devel/lua-rocks/distinfo diff -u pkgsrc/devel/lua-rocks/distinfo:1.7 pkgsrc/devel/lua-rocks/distinfo:1.8 --- pkgsrc/devel/lua-rocks/distinfo:1.7 Thu Jul 2 12:13:36 2020 +++ pkgsrc/devel/lua-rocks/distinfo Sat Dec 19 11:30:24 2020 @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.7 2020/07/02 12:13:36 nia Exp $ +$NetBSD: distinfo,v 1.8 2020/12/19 11:30:24 nia Exp $ -SHA1 (luarocks-3.3.1.tar.gz) = b85a4afd890d172994f4ebc95fe647f71de7eeb4 -RMD160 (luarocks-3.3.1.tar.gz) = 937a2d6d62474e3245927dc77fbe982b8ca4f2bb -SHA512 (luarocks-3.3.1.tar.gz) = 0a695ceb30ae575cbca52abd2aad9675e33a234c53c5d1e125442d874c21e0e3cf6157431f07085e4311f81833680366adfe5c626a66cb5880380b48899a116a -Size (luarocks-3.3.1.tar.gz) = 241636 bytes +SHA1 (luarocks-3.5.0.tar.gz) = 6bede6287c588f0501e601da058c6d4724af21ad +RMD160 (luarocks-3.5.0.tar.gz) = f0dbd59585cee9d53f461d31e55c614e94f9641d +SHA512 (luarocks-3.5.0.tar.gz) = fda01b7149839adf7c0e1c05d0f1793e79575c5d378d96ee1e197828e9b9b6e89a635f8a26a5b71db5b48465ef74b219fac18ecdbd59962cbf9da613b05dd42a +Size (luarocks-3.5.0.tar.gz) = 244798 bytes SHA1 (patch-GNUmakefile) = 1f84ae6e926a57b07abcc65789d784c8e6a0fa75 SHA1 (patch-src_luarocks_core_cfg.lua) = 24c8c7e66fa12b2daf67924ac8ae0a2458380250 --_----------=_1608377424278210--