pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/editors/nano



Module Name:    pkgsrc
Committed By:   nia
Date:           Tue Nov 24 18:21:38 UTC 2020

Modified Files:
        pkgsrc/editors/nano: Makefile distinfo options.mk

Log Message:
nano: Update to 5.3

Add missing tools. Use NetBSD curses where possible.

2020.10.07 - GNU nano 5.3 "Revolution!"
• Option 'set stateflags' makes nano show the state of auto-indenting,
  the mark, hard-wrapping, macro recording, and soft-wrapping in the
  title bar.  The flags take the place of "Modified", and a modified
  buffer is instead indicated by an asterisk (*) after its name.
• Nano no longer by default tries using libmagic to determine the type
  of a file (when neither filename nor first line gave a clue), because
  in most cases it is a waste of time.  It requires using the option
  --magic or -! or 'set magic' to make nano try libmagic.
• The color of the indicator can be changed with 'set scrollercolor'.

2020.08.24 - GNU nano 5.2 "Ranrapalca"
• Making certain replacements after a large paste does not crash.
• Hitting a toggle at the Search prompt does not clear the answer.
• Using --positionlog does not complain at the first start.
• A macro containing a Search command will not sometimes fail.


To generate a diff of this commit:
cvs rdiff -u -r1.89 -r1.90 pkgsrc/editors/nano/Makefile
cvs rdiff -u -r1.60 -r1.61 pkgsrc/editors/nano/distinfo
cvs rdiff -u -r1.5 -r1.6 pkgsrc/editors/nano/options.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/editors/nano/Makefile
diff -u pkgsrc/editors/nano/Makefile:1.89 pkgsrc/editors/nano/Makefile:1.90
--- pkgsrc/editors/nano/Makefile:1.89   Sun Aug 23 23:09:01 2020
+++ pkgsrc/editors/nano/Makefile        Tue Nov 24 18:21:38 2020
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.89 2020/08/23 23:09:01 wiedi Exp $
+# $NetBSD: Makefile,v 1.90 2020/11/24 18:21:38 nia Exp $
 
-DISTNAME=      nano-5.1
+DISTNAME=      nano-5.3
 CATEGORIES=    editors
 MASTER_SITES=  https://www.nano-editor.org/dist/v${PKGVERSION_NOREV:C/\..*$//}/
 EXTRACT_SUFX=  .tar.xz
@@ -11,7 +11,7 @@ COMMENT=      Small and friendly text editor 
 LICENSE=       gnu-gpl-v3
 
 USE_PKGLOCALEDIR=      yes
-USE_TOOLS+=            msgfmt gmake
+USE_TOOLS+=            msgfmt msgmerge xgettext gmake
 GNU_CONFIGURE=         yes
 CONFIGURE_ARGS+=       --enable-color
 CONFIGURE_ARGS+=       --enable-multibuffer
@@ -37,4 +37,5 @@ post-install:
        ${INSTALL_DATA} ${WRKSRC}/doc/sample.nanorc ${DESTDIR}${PREFIX}/share/examples/nano/nanorc
 
 .include "../../devel/gettext-lib/buildlink3.mk"
+.include "../../mk/curses.buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/editors/nano/distinfo
diff -u pkgsrc/editors/nano/distinfo:1.60 pkgsrc/editors/nano/distinfo:1.61
--- pkgsrc/editors/nano/distinfo:1.60   Sun Aug 23 23:09:01 2020
+++ pkgsrc/editors/nano/distinfo        Tue Nov 24 18:21:38 2020
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.60 2020/08/23 23:09:01 wiedi Exp $
+$NetBSD: distinfo,v 1.61 2020/11/24 18:21:38 nia Exp $
 
-SHA1 (nano-5.1.tar.xz) = df537632d5952f67f7008d35bbba10f180a7c40d
-RMD160 (nano-5.1.tar.xz) = 465082baf2413cfcc9410f556dd9ed71bb6dddaf
-SHA512 (nano-5.1.tar.xz) = b6b96077169c623517c1f148ba7095484fc8b8b65e103a1dedac140741554e3d4b6551abb75733f833f9b18530189882963ab3b03b89db8898f208c6a1de7783
-Size (nano-5.1.tar.xz) = 1395076 bytes
+SHA1 (nano-5.3.tar.xz) = 4293a9c1a1fd13f0bb095a576164124ada03430c
+RMD160 (nano-5.3.tar.xz) = 6ff1c3a76a049e0499a062d25bcefbb93e59898b
+SHA512 (nano-5.3.tar.xz) = 8e12120dbfbd4c6b3adf1e158e3b1e5a31a57528da1b461479a2d45bf82138815b2d0549cd7565ec32353d18c122a7428fd60bc539af4311066441b2a025b54f
+Size (nano-5.3.tar.xz) = 1400792 bytes
 SHA1 (patch-configure) = 20c1525ba2b762d851a2938d1cce4b128985a0b8

Index: pkgsrc/editors/nano/options.mk
diff -u pkgsrc/editors/nano/options.mk:1.5 pkgsrc/editors/nano/options.mk:1.6
--- pkgsrc/editors/nano/options.mk:1.5  Sat Jun  8 10:40:56 2019
+++ pkgsrc/editors/nano/options.mk      Tue Nov 24 18:21:38 2020
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.5 2019/06/08 10:40:56 rillig Exp $
+# $NetBSD: options.mk,v 1.6 2020/11/24 18:21:38 nia Exp $
 
 PKG_OPTIONS_VAR=               PKG_OPTIONS.nano
 PKG_SUPPORTED_OPTIONS=         wide-curses
@@ -11,7 +11,5 @@ PKG_OPTIONS_LEGACY_OPTS+=     ncursesw:wide-
 ### Wide curses support; otherwise, default to using narrow curses.
 ###
 .if !empty(PKG_OPTIONS:Mwide-curses)
-.  include "../../devel/ncursesw/buildlink3.mk"
-.else
-.  include "../../mk/curses.buildlink3.mk"
+# Handled by curses.mk.
 .endif



Home | Main Index | Thread Index | Old Index