Received: by mail.netbsd.org (Postfix, from userid 605) id 8AF4F84F2E; Fri, 19 May 2023 09:33:29 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AF34A84F41 for ; Fri, 19 May 2023 09:33:28 +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 kvZTDjT5TPTF for ; Fri, 19 May 2023 09:33:28 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id EF7C084F40 for ; Fri, 19 May 2023 09:33:27 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 238C7FA87; Fri, 19 May 2023 09:33:27 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1684488807292530" MIME-Version: 1.0 Date: Fri, 19 May 2023 09:33:27 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/games/dMagnetic To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230519093327.238C7FA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1684488807292530 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Fri May 19 09:33:27 UTC 2023 Modified Files: pkgsrc/games/dMagnetic: Makefile PLIST distinfo Log Message: dMagnetic: update to 0.37. This version saw a little bit action on the help screens. Plus, the WEIRD WEIRD graphics mode of the Apple II ate a lot of memory, which, if you do it properly, is no longer wasted. Based on PR 57420 by Thomas Dettbarn with some changes. To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 pkgsrc/games/dMagnetic/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/games/dMagnetic/PLIST cvs rdiff -u -r1.17 -r1.18 pkgsrc/games/dMagnetic/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1684488807292530 Content-Disposition: inline Content-Length: 3255 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/games/dMagnetic/Makefile diff -u pkgsrc/games/dMagnetic/Makefile:1.15 pkgsrc/games/dMagnetic/Makefile:1.16 --- pkgsrc/games/dMagnetic/Makefile:1.15 Sat Jan 28 22:49:37 2023 +++ pkgsrc/games/dMagnetic/Makefile Fri May 19 09:33:26 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.15 2023/01/28 22:49:37 wiz Exp $ +# $NetBSD: Makefile,v 1.16 2023/05/19 09:33:26 wiz Exp $ -DISTNAME= dMagnetic_0.36 +DISTNAME= dMagnetic_0.37 PKGNAME= ${DISTNAME:S/_/-/} CATEGORIES= games MASTER_SITES= https://www.dettus.net/dMagnetic/ @@ -11,14 +11,13 @@ HOMEPAGE= https://www.dettus.net/dMagne COMMENT= Magnetic Scrolls Interpreter LICENSE= 2-clause-bsd -INSTALLATION_DIRS= bin share/doc/dMagnetic ${PKGMANDIR}/man5 ${PKGMANDIR}/man6 - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/dMagnetic ${DESTDIR}${PREFIX}/bin - ${INSTALL_DATA} ${WRKSRC}/README.txt ${DESTDIR}${PREFIX}/share/doc/dMagnetic - ${INSTALL_DATA} ${WRKSRC}/dMagnetic.ini ${DESTDIR}${PREFIX}/share/doc/dMagnetic - ${INSTALL_MAN} ${WRKSRC}/dMagneticini.5 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man5 - ${INSTALL_MAN} ${WRKSRC}/dMagnetic.6 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man6 +INSTALLATION_DIRS= bin share/doc/dMagnetic share/examples/dMagnetic +INSTALL_MAKE_FLAGS+= MYPREFIX=${DESTDIR}${PREFIX} +INSTALL_MAKE_FLAGS+= INSTALLMAN=${DESTDIR}${PREFIX}/${PKGMANDIR} + +post-install: + ${MV} ${DESTDIR}${PREFIX}/share/games/dMagnetic/dMagnetic.ini ${DESTDIR}${PREFIX}/share/examples/dMagnetic + ${MV} ${DESTDIR}${PREFIX}/share/games/dMagnetic/* ${DESTDIR}${PREFIX}/share/doc/dMagnetic ## The idea of this test is to check if the output is the expected one. ## for this, the sha256sum is being compared. Index: pkgsrc/games/dMagnetic/PLIST diff -u pkgsrc/games/dMagnetic/PLIST:1.2 pkgsrc/games/dMagnetic/PLIST:1.3 --- pkgsrc/games/dMagnetic/PLIST:1.2 Thu Jun 24 07:28:54 2021 +++ pkgsrc/games/dMagnetic/PLIST Fri May 19 09:33:26 2023 @@ -1,6 +1,7 @@ -@comment $NetBSD: PLIST,v 1.2 2021/06/24 07:28:54 wiz Exp $ +@comment $NetBSD: PLIST,v 1.3 2023/05/19 09:33:26 wiz Exp $ bin/dMagnetic man/man5/dMagneticini.5 man/man6/dMagnetic.6 +share/doc/dMagnetic/LICENSE.txt share/doc/dMagnetic/README.txt -share/doc/dMagnetic/dMagnetic.ini +share/examples/dMagnetic/dMagnetic.ini Index: pkgsrc/games/dMagnetic/distinfo diff -u pkgsrc/games/dMagnetic/distinfo:1.17 pkgsrc/games/dMagnetic/distinfo:1.18 --- pkgsrc/games/dMagnetic/distinfo:1.17 Sat Jan 28 22:49:37 2023 +++ pkgsrc/games/dMagnetic/distinfo Fri May 19 09:33:26 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.17 2023/01/28 22:49:37 wiz Exp $ +$NetBSD: distinfo,v 1.18 2023/05/19 09:33:26 wiz Exp $ -BLAKE2s (dMagnetic_0.36.tar.bz2) = c696b674bd046d207ad43ac8fdbe153d1ce592bae5fcee023e4afa2c5053acce -SHA512 (dMagnetic_0.36.tar.bz2) = 2de79a6de8ac3112f76b9b409def6eaa9265e9acd80143cdccf984dfead4d9134f1fc4ea3835f77f97b64a57a924eafadf57a4015e6710b6e4b603fc589128fd -Size (dMagnetic_0.36.tar.bz2) = 93540 bytes +BLAKE2s (dMagnetic_0.37.tar.bz2) = 44566ff67220c9ed2c58e7289af7ed651c8b36ada0ccc97804638bc926c6ee92 +SHA512 (dMagnetic_0.37.tar.bz2) = 44f2a7abcf0f97887f02c1567937cfcac54168effa2289766e4b2798773ad9561f634f028f36051faac229adf3cb27199a7df331fbf59e8981beb76941f29710 +Size (dMagnetic_0.37.tar.bz2) = 93405 bytes --_----------=_1684488807292530--