Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_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 37A841A9217 for ; Fri, 8 Jan 2021 19:19:57 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 759AD84D69; Fri, 8 Jan 2021 19:19:56 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AE7CE84D63 for ; Fri, 8 Jan 2021 19:19:55 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id JE8aVhdLJIrn for ; Fri, 8 Jan 2021 19:19:55 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 1D37084C13 for ; Fri, 8 Jan 2021 19:19:55 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 173C1FA9D; Fri, 8 Jan 2021 19:19:55 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1610133595296740" MIME-Version: 1.0 Date: Fri, 8 Jan 2021 19:19:55 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/emulators/nono To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20210108191955.173C1FA9D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1610133595296740 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Fri Jan 8 19:19:55 UTC 2021 Modified Files: pkgsrc/emulators/nono: distinfo Added Files: pkgsrc/emulators/nono/patches: patch-cli_Makefile patch-po_Makefile patch-wx_Makefile.in Log Message: nono: Restore patches to fix install The patches were accidentally removed from distinfo during the last update. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/emulators/nono/distinfo cvs rdiff -u -r0 -r1.3 pkgsrc/emulators/nono/patches/patch-cli_Makefile \ pkgsrc/emulators/nono/patches/patch-po_Makefile \ pkgsrc/emulators/nono/patches/patch-wx_Makefile.in Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1610133595296740 Content-Disposition: inline Content-Length: 3344 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=utf-8 Modified files: Index: pkgsrc/emulators/nono/distinfo diff -u pkgsrc/emulators/nono/distinfo:1.2 pkgsrc/emulators/nono/distinfo:1.3 --- pkgsrc/emulators/nono/distinfo:1.2 Tue Jan 5 18:47:24 2021 +++ pkgsrc/emulators/nono/distinfo Fri Jan 8 19:19:54 2021 @@ -1,6 +1,9 @@ -$NetBSD: distinfo,v 1.2 2021/01/05 18:47:24 ryoon Exp $ +$NetBSD: distinfo,v 1.3 2021/01/08 19:19:54 ryoon Exp $ SHA1 (nono-0.1.5.tar.gz) = 42339b97b62a3bdc9858560db5cc378277646397 RMD160 (nono-0.1.5.tar.gz) = 8188533f2b430d7d78f8f0f222303f0ae442e7c2 SHA512 (nono-0.1.5.tar.gz) = 94c5dc660cbee150382f5a54e8b168c79d4ec817b8b94f537eb02dd5cfaa7af51a673f8b8292e54afbc8c04d9c0bfddf76ea7d06f7cbf6ebde3b7004a9e77aad Size (nono-0.1.5.tar.gz) = 2403971 bytes +SHA1 (patch-cli_Makefile) = a9597bc1c8c5376ea78c35415abae4bab7c086f3 +SHA1 (patch-po_Makefile) = 76a7d30858d1afd27fcfed512f00bfb4b9dd0f13 +SHA1 (patch-wx_Makefile.in) = 982a4cff11d453bdb7924d05c81173b7c43ad010 Added files: Index: pkgsrc/emulators/nono/patches/patch-cli_Makefile diff -u /dev/null pkgsrc/emulators/nono/patches/patch-cli_Makefile:1.3 --- /dev/null Fri Jan 8 19:19:55 2021 +++ pkgsrc/emulators/nono/patches/patch-cli_Makefile Fri Jan 8 19:19:54 2021 @@ -0,0 +1,14 @@ +$NetBSD: patch-cli_Makefile,v 1.3 2021/01/08 19:19:54 ryoon Exp $ + +* Fix non-root installation with pkgsrc-specific macro. + +--- cli/Makefile.orig 2020-11-20 12:50:31.000000000 +0000 ++++ cli/Makefile +@@ -24,6 +24,6 @@ nono-cli: ${MYLIBS} ${OBJS} + + install: nono-cli + ${INSTALL} -d ${DESTDIR}${BINDIR} +- ${INSTALL} -m 755 -o 0 -g 0 nono-cli ${DESTDIR}${BINDIR} ++ ${BSD_INSTALL_PROGRAM} nono-cli ${DESTDIR}${BINDIR} + + .include "../Makefile.rule" Index: pkgsrc/emulators/nono/patches/patch-po_Makefile diff -u /dev/null pkgsrc/emulators/nono/patches/patch-po_Makefile:1.3 --- /dev/null Fri Jan 8 19:19:55 2021 +++ pkgsrc/emulators/nono/patches/patch-po_Makefile Fri Jan 8 19:19:54 2021 @@ -0,0 +1,15 @@ +$NetBSD: patch-po_Makefile,v 1.3 2021/01/08 19:19:54 ryoon Exp $ + +* Fix non-root installation with pkgsrc-specific macro. + +--- po/Makefile.orig 2020-11-20 12:50:31.000000000 +0000 ++++ po/Makefile +@@ -21,7 +21,7 @@ CAT= LC_MESSAGES + install: ${TARGETS} + .for L in ${LANGUAGES} + ${INSTALL} -d ${DESTDIR}${LOCALEDIR}/${L}/${CAT} +- ${INSTALL} -m 644 -o 0 -g 0 ${L}/nono.mo ${DESTDIR}${LOCALEDIR}/${L}/${CAT} ++ ${BSD_INSTALL_DATA} ${L}/nono.mo ${DESTDIR}${LOCALEDIR}/${L}/${CAT} + .endfor + + depend: Index: pkgsrc/emulators/nono/patches/patch-wx_Makefile.in diff -u /dev/null pkgsrc/emulators/nono/patches/patch-wx_Makefile.in:1.3 --- /dev/null Fri Jan 8 19:19:55 2021 +++ pkgsrc/emulators/nono/patches/patch-wx_Makefile.in Fri Jan 8 19:19:54 2021 @@ -0,0 +1,15 @@ +$NetBSD: patch-wx_Makefile.in,v 1.3 2021/01/08 19:19:54 ryoon Exp $ + +* Fix non-root installation with pkgsrc-specific macro. + +--- wx/Makefile.in.orig 2020-11-20 12:50:31.000000000 +0000 ++++ wx/Makefile.in +@@ -48,7 +48,7 @@ nono: ${MYLIBS} ${OBJS} + + install: nono + ${INSTALL} -d ${DESTDIR}${BINDIR} +- ${INSTALL} -m 755 -o 0 -g 0 nono ${DESTDIR}${BINDIR} ++ ${BSD_INSTALL_PROGRAM} nono ${DESTDIR}${BINDIR} + + # make pot はトップディレクトリで行う必要がある (実行した位置からの相対パスが + # ファイルにコメントで残されるため、毎回違うと diff が出てしまう)。 --_----------=_1610133595296740--