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 4475A1A923A for ; Wed, 15 Dec 2021 18:00:22 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id BA1F284E73; Wed, 15 Dec 2021 18:00:21 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id F04F984E6E for ; Wed, 15 Dec 2021 18:00:20 +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 4S1Tw3HAthGa for ; Wed, 15 Dec 2021 18:00:20 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 2A0F384CE2 for ; Wed, 15 Dec 2021 18:00:20 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1C938FAEC; Wed, 15 Dec 2021 18:00:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1639591220228700" MIME-Version: 1.0 Date: Wed, 15 Dec 2021 18:00:20 +0000 From: "Sebastian Wiedenroth" Subject: CVS commit: pkgsrc/editors/nano To: pkgsrc-changes@NetBSD.org Reply-To: wiedi@netbsd.org X-Mailer: log_accum Message-Id: <20211215180020.1C938FAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1639591220228700 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: wiedi Date: Wed Dec 15 18:00:20 UTC 2021 Modified Files: pkgsrc/editors/nano: Makefile PLIST distinfo Log Message: nano: update to 6.0 2021.12.15 - GNU nano 6.0 "Humor heeft ook zijn leuke kanten" • Option --zero hides the title bar, status bar and help lines, and uses all rows of the terminal as editing area. The title bar and status bar can be toggled with M-Z. • Colors can now be specified also as three-digit hexadecimal numbers, in the format #rgb. This picks from the 216 index colors (that most terminals know) the color that is nearest to the given values. • For users who dislike numbers, there are fourteen new color names: rosy, beet, plum, sea, sky, slate, teal, sage, brown, ocher, sand, tawny, brick, and crimson. • Suspension is enabled by default, invokable with ^T^Z. The options -z, --suspendable, and 'set suspendable' are obsolete and ignored. (In case you want to be able to suspend nano with a single keystroke, you can put 'bind ^Z suspend main' in your nanorc.) • When automatic hard-wrapping is in effect, pasting just a few words (without a line break) will now hard-wrap the line when needed. • Toggling Append or Prepend clears the current filename. • The word count as shown by M-D is now affected by option --wordbounds; with it, nano counts words as 'wc' does; without it (the new default), words are counted in a more human way: seeing punctuation as space. • The YAML syntax file is now actually included in the tarball. To generate a diff of this commit: cvs rdiff -u -r1.101 -r1.102 pkgsrc/editors/nano/Makefile cvs rdiff -u -r1.29 -r1.30 pkgsrc/editors/nano/PLIST cvs rdiff -u -r1.71 -r1.72 pkgsrc/editors/nano/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1639591220228700 Content-Disposition: inline Content-Length: 2576 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/editors/nano/Makefile diff -u pkgsrc/editors/nano/Makefile:1.101 pkgsrc/editors/nano/Makefile:1.102 --- pkgsrc/editors/nano/Makefile:1.101 Wed Dec 8 16:04:11 2021 +++ pkgsrc/editors/nano/Makefile Wed Dec 15 18:00:19 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.101 2021/12/08 16:04:11 adam Exp $ +# $NetBSD: Makefile,v 1.102 2021/12/15 18:00:19 wiedi Exp $ -DISTNAME= nano-5.9 -PKGREVISION= 1 +DISTNAME= nano-6.0 CATEGORIES= editors MASTER_SITES= https://www.nano-editor.org/dist/v${PKGVERSION_NOREV:C/\..*$//}/ EXTRACT_SUFX= .tar.xz Index: pkgsrc/editors/nano/PLIST diff -u pkgsrc/editors/nano/PLIST:1.29 pkgsrc/editors/nano/PLIST:1.30 --- pkgsrc/editors/nano/PLIST:1.29 Mon Oct 18 13:56:26 2021 +++ pkgsrc/editors/nano/PLIST Wed Dec 15 18:00:19 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.29 2021/10/18 13:56:26 nia Exp $ +@comment $NetBSD: PLIST,v 1.30 2021/12/15 18:00:19 wiedi Exp $ bin/nano bin/rnano info/nano.info @@ -55,9 +55,7 @@ share/nano/default.nanorc share/nano/elisp.nanorc share/nano/email.nanorc share/nano/extra/ada.nanorc -share/nano/extra/debian.nanorc share/nano/extra/fortran.nanorc -share/nano/extra/gentoo.nanorc share/nano/extra/haskell.nanorc share/nano/extra/povray.nanorc share/nano/extra/spec.nanorc @@ -90,3 +88,4 @@ share/nano/tcl.nanorc share/nano/tex.nanorc share/nano/texinfo.nanorc share/nano/xml.nanorc +share/nano/yaml.nanorc Index: pkgsrc/editors/nano/distinfo diff -u pkgsrc/editors/nano/distinfo:1.71 pkgsrc/editors/nano/distinfo:1.72 --- pkgsrc/editors/nano/distinfo:1.71 Tue Oct 26 10:21:34 2021 +++ pkgsrc/editors/nano/distinfo Wed Dec 15 18:00:19 2021 @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.71 2021/10/26 10:21:34 nia Exp $ +$NetBSD: distinfo,v 1.72 2021/12/15 18:00:19 wiedi Exp $ -BLAKE2s (nano-5.9.tar.xz) = 1ca6cb7e5a421897c6cbb493e6a0812a4894fec12a48bca9d3f82b8f98cb4dff -SHA512 (nano-5.9.tar.xz) = 45ff3abce4dab24a8090409e6d7bb26afa7fa7812a51e06728c2aa47d5b4de610d97ba4609cf13d9173087bd909fdf377235eee988a6fdcf52abb70341c40b5b -Size (nano-5.9.tar.xz) = 1499852 bytes +BLAKE2s (nano-6.0.tar.xz) = 2acbee8464cb2dc253b95797a844f093766197f7733f03a7c53481a22f865b6d +SHA512 (nano-6.0.tar.xz) = 5f9487e710385888fb6d0aadbac1f5d58e0a5d05eb07de4d59b6ef65bdf54b07da490a48282d20c422b5177fbaa9d867237f7472effbe5e6f3be958e660b6c99 +Size (nano-6.0.tar.xz) = 1509388 bytes SHA1 (patch-configure) = 8df30018d732c00202b4173f1c3ae0e03aa56245 SHA1 (patch-doc_nano.1) = 3d160aa6a4324400e79064d22cbd291a0d3de4f9 SHA1 (patch-doc_nanorc.5) = 4d8af863bfa51eeac2a5e5cd04bd16aba3b6e29a --_----------=_1639591220228700--