Received: by mail.netbsd.org (Postfix, from userid 605) id 2193B84F13; Fri, 30 Dec 2022 20:41:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 504B284D3D for ; Fri, 30 Dec 2022 20:41:25 +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 DSHjVtk1Iwfd for ; Fri, 30 Dec 2022 20:41:24 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id C672284D32 for ; Fri, 30 Dec 2022 20:41:24 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BF93CFA90; Fri, 30 Dec 2022 20:41:24 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_167243288435160" MIME-Version: 1.0 Date: Fri, 30 Dec 2022 20:41:24 +0000 From: "Min Sik Kim" Subject: CVS commit: pkgsrc/devel/lua-mpack To: pkgsrc-changes@NetBSD.org Reply-To: minskim@netbsd.org X-Mailer: log_accum Message-Id: <20221230204124.BF93CFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_167243288435160 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: minskim Date: Fri Dec 30 20:41:24 UTC 2022 Modified Files: pkgsrc/devel/lua-mpack: distinfo Added Files: pkgsrc/devel/lua-mpack/patches: patch-Makefile Log Message: devel/lua-mpack: Fix build on Darwin Added a patch to remove a redundant -D option for install. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/lua-mpack/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/devel/lua-mpack/patches/patch-Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_167243288435160 Content-Disposition: inline Content-Length: 1492 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/lua-mpack/distinfo diff -u pkgsrc/devel/lua-mpack/distinfo:1.2 pkgsrc/devel/lua-mpack/distinfo:1.3 --- pkgsrc/devel/lua-mpack/distinfo:1.2 Thu Apr 21 07:39:02 2022 +++ pkgsrc/devel/lua-mpack/distinfo Fri Dec 30 20:41:24 2022 @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.2 2022/04/21 07:39:02 wiz Exp $ +$NetBSD: distinfo,v 1.3 2022/12/30 20:41:24 minskim Exp $ BLAKE2s (libmpack-lua-1.0.8.tar.gz) = 4cabc954d6cc4f756725c7e6aaadaea752dc86198aea084781e0c52c7428f001 SHA512 (libmpack-lua-1.0.8.tar.gz) = 6d21cc6bbdee583a1d808742991459e4b1796f347b2f4eaa747b576f5bb1ca989123339120e43246bac859c20e6f46ac57116ce9f135157256fecbd8cf817f75 Size (libmpack-lua-1.0.8.tar.gz) = 15616 bytes +SHA1 (patch-Makefile) = 1660772dcdf7fd22b75f501a64016cab02215e8e Added files: Index: pkgsrc/devel/lua-mpack/patches/patch-Makefile diff -u /dev/null pkgsrc/devel/lua-mpack/patches/patch-Makefile:1.1 --- /dev/null Fri Dec 30 20:41:24 2022 +++ pkgsrc/devel/lua-mpack/patches/patch-Makefile Fri Dec 30 20:41:24 2022 @@ -0,0 +1,13 @@ +$NetBSD: patch-Makefile,v 1.1 2022/12/30 20:41:24 minskim Exp $ + +--- Makefile.orig 2019-06-24 22:59:38.000000000 +0000 ++++ Makefile +@@ -147,7 +147,7 @@ ifeq ($(USE_SYSTEM_LUA),no) + @: + else + mkdir -p "$(DESTDIR)$(LUA_CMOD_INSTALLDIR)" +- install -Dm755 $< "$(DESTDIR)$(LUA_CMOD_INSTALLDIR)/$<" ++ install -m755 $< "$(DESTDIR)$(LUA_CMOD_INSTALLDIR)/$<" + endif + + .PHONY: all clean depsclean install test gdb valgrind ci-test release --_----------=_167243288435160--