Received: by mail.netbsd.org (Postfix, from userid 605) id 9740984D65; Sun, 17 Nov 2019 12:35:42 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1D6A984D56 for ; Sun, 17 Nov 2019 12:35:42 +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 4rezWZtRstF5 for ; Sun, 17 Nov 2019 12:35:41 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7E21C84D51 for ; Sun, 17 Nov 2019 12:35:41 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7664CFA97; Sun, 17 Nov 2019 12:35:41 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1573994141194620" MIME-Version: 1.0 Date: Sun, 17 Nov 2019 12:35:41 +0000 From: "Makoto Fujiwara" Subject: CVS commit: pkgsrc/sysutils/psftools To: pkgsrc-changes@NetBSD.org Reply-To: mef@netbsd.org X-Mailer: log_accum Message-Id: <20191117123541.7664CFA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1573994141194620 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mef Date: Sun Nov 17 12:35:41 UTC 2019 Modified Files: pkgsrc/sysutils/psftools: Makefile PLIST distinfo Log Message: (sysutils/psftools) Updated 1.0.7 to 1.0.13 (pkgsrc change) - Add LICENSE = gnu-gpl-v2 (upstream changes) 2019-07-05 John Elliott * psftools-1.0.13 released. 2019-05-17 John Elliott * zx2psf: Added 'move1' mode to zx2psf - like 'bare' but remaps the pound and copyright to their ISO-8859-1 positions. [Damien Guard] 2019-03-19 John Elliott * psftools-1.0.12 released. * fnt2psf: Changed the Windows 1.x font extract to seek to the character bitmap rather than assuming it directly follows the widths table. 2017-03-17 John Elliott * cpi2psf: Was unable to parse LCD.CPI from Toshiba MS-DOS 3.30, which is slightly out of spec. * Updated GEM codepage now that there's a Unicode dingbat for 'bell'. (U+1F514). 2012-01-81 John Elliott * loadpsf: Support for Wang PC colour and mono video cards. Does not support 'CGDC' or 'IBM emulation' card types. 2010-11-14 John Elliott * Updated build scripts to a more recent autoconf / automake. 2009-05-03 John Elliott * loadpsf: Added support for Compaq Portable plasma displays. 2008-06-21 John Elliott * psftools-1.0.8 released. * psfs2mda: Created new utility to build an MDA character ROM image. * mda2psf: Added a --compaq option to match the --compaq option in psfs2mda(1). To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/sysutils/psftools/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/sysutils/psftools/PLIST cvs rdiff -u -r1.5 -r1.6 pkgsrc/sysutils/psftools/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1573994141194620 Content-Disposition: inline Content-Length: 2592 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/psftools/Makefile diff -u pkgsrc/sysutils/psftools/Makefile:1.6 pkgsrc/sysutils/psftools/Makefile:1.7 --- pkgsrc/sysutils/psftools/Makefile:1.6 Tue Oct 23 19:51:20 2012 +++ pkgsrc/sysutils/psftools/Makefile Sun Nov 17 12:35:41 2019 @@ -1,13 +1,14 @@ -# $NetBSD: Makefile,v 1.6 2012/10/23 19:51:20 asau Exp $ +# $NetBSD: Makefile,v 1.7 2019/11/17 12:35:41 mef Exp $ # -DISTNAME= psftools-1.0.7 +DISTNAME= psftools-1.0.13 CATEGORIES= sysutils fonts MASTER_SITES= http://www.seasip.info/Unix/PSF/ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.seasip.info/Unix/PSF/index.html COMMENT= Tools for manipulating fixed-width, [typically] console fonts +LICENSE= gnu-gpl-v2 GNU_CONFIGURE= yes USE_LIBTOOL= yes Index: pkgsrc/sysutils/psftools/PLIST diff -u pkgsrc/sysutils/psftools/PLIST:1.3 pkgsrc/sysutils/psftools/PLIST:1.4 --- pkgsrc/sysutils/psftools/PLIST:1.3 Wed Jul 23 23:47:16 2008 +++ pkgsrc/sysutils/psftools/PLIST Sun Nov 17 12:35:41 2019 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2008/07/23 23:47:16 bjs Exp $ +@comment $NetBSD: PLIST,v 1.4 2019/11/17 12:35:41 mef Exp $ bin/bbc2psf bin/cpi2psf bin/cpicomp @@ -24,6 +24,7 @@ bin/psfjoin bin/psfmerge bin/psfpages bin/psfs2cpi +bin/psfs2mda bin/psfxform bin/raw2psf bin/txt2psf @@ -55,6 +56,7 @@ man/man1/psfjoin.1 man/man1/psfmerge.1 man/man1/psfpages.1 man/man1/psfs2cpi.1 +man/man1/psfs2mda.1 man/man1/psfxform.1 man/man1/raw2psf.1 man/man1/txt2psf.1 Index: pkgsrc/sysutils/psftools/distinfo diff -u pkgsrc/sysutils/psftools/distinfo:1.5 pkgsrc/sysutils/psftools/distinfo:1.6 --- pkgsrc/sysutils/psftools/distinfo:1.5 Wed Nov 4 01:32:26 2015 +++ pkgsrc/sysutils/psftools/distinfo Sun Nov 17 12:35:41 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.5 2015/11/04 01:32:26 agc Exp $ +$NetBSD: distinfo,v 1.6 2019/11/17 12:35:41 mef Exp $ -SHA1 (psftools-1.0.7.tar.gz) = 4e8b2e7686532a25c18cacaeb90a8f0ed57a30c6 -RMD160 (psftools-1.0.7.tar.gz) = 7be57c4a8598e2b442750751cd3304ca5790d9d7 -SHA512 (psftools-1.0.7.tar.gz) = 9135f4aa8ea4a4cfdaebc7764db0409b304dc34310ebe84d6fc786d42a392c79da4f097b6b3526edaf862305edf8794ef62f6bf48a3de5dac22c8e0c0c77aa14 -Size (psftools-1.0.7.tar.gz) = 547537 bytes +SHA1 (psftools-1.0.13.tar.gz) = 9ac5a7a879091a5d1d28e338cc9f45eae48574c6 +RMD160 (psftools-1.0.13.tar.gz) = 0a14edd0bcd47ebf2daf69e891e896a1e471dfe8 +SHA512 (psftools-1.0.13.tar.gz) = 63a2bc4b5e2c61a195c41bea26a912963fb89ac49f1cb909ba4513be57dfcbe1d5b70e68ac516a8d1f4cabe576a11aaed3368a428f5b4dc65d38df959a28861d +Size (psftools-1.0.13.tar.gz) = 765129 bytes --_----------=_1573994141194620--