Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8327C84E55 for ; Wed, 6 Sep 2023 11:48:16 +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 Yq02Qe7DlgjE for ; Wed, 6 Sep 2023 11:48:16 +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 F1F0684D13 for ; Wed, 6 Sep 2023 11:48:15 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EA7BDFBDB; Wed, 6 Sep 2023 11:48:15 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_169400089527370" MIME-Version: 1.0 Date: Wed, 6 Sep 2023 11:48:15 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/lang/lua54 To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230906114815.EA7BDFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_169400089527370 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Wed Sep 6 11:48:15 UTC 2023 Modified Files: pkgsrc/lang/lua54: Makefile PLIST Log Message: lua54: fix man page name to match executable name pkg_alternatives creates lua(1) and luac(1), overwriting these files. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/lang/lua54/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/lang/lua54/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_169400089527370 Content-Disposition: inline Content-Length: 1813 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/lua54/Makefile diff -u pkgsrc/lang/lua54/Makefile:1.5 pkgsrc/lang/lua54/Makefile:1.6 --- pkgsrc/lang/lua54/Makefile:1.5 Mon May 15 08:17:11 2023 +++ pkgsrc/lang/lua54/Makefile Wed Sep 6 11:48:15 2023 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.5 2023/05/15 08:17:11 nikita Exp $ +# $NetBSD: Makefile,v 1.6 2023/09/06 11:48:15 wiz Exp $ DISTNAME= lua-${LUA_VERSION} PKGNAME= lua54-${LUA_VERSION} +PKGREVISION= 1 CATEGORIES= lang lua MASTER_SITES= https://www.lua.org/ftp/ @@ -77,8 +78,8 @@ do-install: ${INSTALL_LIB} ${WRKSRC}/src/liblua5.4.la ${DESTDIR}${PREFIX}/lib cd ${WRKSRC}/src && ${INSTALL_DATA} lua.h luaconf.h lualib.h lauxlib.h lua.hpp \ ${DESTDIR}${PREFIX}/include/lua-5.4 - cd ${WRKSRC}/doc && ${INSTALL_MAN} lua.1 luac.1 \ - ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1 + ${INSTALL_MAN} ${WRKSRC}/doc/lua.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/lua5.4.1 + ${INSTALL_MAN} ${WRKSRC}/doc/luac.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/luac5.4.1 ${INSTALL_DATA} ${WRKSRC}/doc/*.[a-z][a-z][a-z] \ ${WRKSRC}/doc/*.html ${DESTDIR}${DOCDIR} ${INSTALL_DATA} ${WRKSRC}/lua.pc \ Index: pkgsrc/lang/lua54/PLIST diff -u pkgsrc/lang/lua54/PLIST:1.1 pkgsrc/lang/lua54/PLIST:1.2 --- pkgsrc/lang/lua54/PLIST:1.1 Tue Jun 30 13:16:14 2020 +++ pkgsrc/lang/lua54/PLIST Wed Sep 6 11:48:15 2023 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2020/06/30 13:16:14 nia Exp $ +@comment $NetBSD: PLIST,v 1.2 2023/09/06 11:48:15 wiz Exp $ bin/lua5.4 bin/luac5.4 include/lua-5.4/lauxlib.h @@ -8,8 +8,8 @@ include/lua-5.4/luaconf.h include/lua-5.4/lualib.h lib/liblua5.4.la lib/pkgconfig/lua-5.4.pc -man/man1/lua.1 -man/man1/luac.1 +man/man1/lua5.4.1 +man/man1/luac5.4.1 share/doc/lua-5.4/contents.html share/doc/lua-5.4/index.css share/doc/lua-5.4/logo.gif --_----------=_169400089527370--