Source-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/editors/fe (editors/fe) Updated 1.9



details:   https://anonhg.NetBSD.org/pkgsrc/rev/419131d022e0
branches:  trunk
changeset: 434729:419131d022e0
user:      mef <mef%pkgsrc.org@localhost>
date:      Sun Jun 21 04:09:24 2020 +0000

description:
(editors/fe) Updated 1.9

(pkgsrc)
 -  Silence pkglint, LICENSE (gnu-gpl-v1), add comment on patches

(upstream)
The following things were changed compared to version 1.8:

o  Look for <ncurses/ncurses.h>, as used by Cygwin.
o  Use LC_CTYPE to determine printable characters and display
   unprintable characters as \xx, not as M-chr.
   o  Allow M-. instead of C-space and C-x . instead of M-C-@.
   o  Accept +line as option to jump to a specific line besides -l line.

diffstat:

 editors/fe/Makefile         |   6 +++---
 editors/fe/distinfo         |  14 +++++++-------
 editors/fe/patches/patch-aa |  17 +++++++++++------
 editors/fe/patches/patch-ab |   5 ++++-
 4 files changed, 25 insertions(+), 17 deletions(-)

diffs (78 lines):

diff -r c7a0afb4c44c -r 419131d022e0 editors/fe/Makefile
--- a/editors/fe/Makefile       Sun Jun 21 03:55:17 2020 +0000
+++ b/editors/fe/Makefile       Sun Jun 21 04:09:24 2020 +0000
@@ -1,13 +1,13 @@
-# $NetBSD: Makefile,v 1.15 2015/08/18 07:31:06 wiz Exp $
+# $NetBSD: Makefile,v 1.16 2020/06/21 04:09:24 mef Exp $
 
-DISTNAME=      fe-1.8
-PKGREVISION=   2
+DISTNAME=      fe-1.9
 CATEGORIES=    editors
 MASTER_SITES=  http://www.moria.de/~michael/fe/
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
 HOMEPAGE=      http://www.moria.de/~michael/fe/
 COMMENT=       Folding editor
+LICENSE=       gnu-gpl-v1
 
 GNU_CONFIGURE= yes
 USE_TOOLS+=    msgfmt
diff -r c7a0afb4c44c -r 419131d022e0 editors/fe/distinfo
--- a/editors/fe/distinfo       Sun Jun 21 03:55:17 2020 +0000
+++ b/editors/fe/distinfo       Sun Jun 21 04:09:24 2020 +0000
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.4 2015/11/03 03:32:16 agc Exp $
+$NetBSD: distinfo,v 1.5 2020/06/21 04:09:24 mef Exp $
 
-SHA1 (fe-1.8.tar.gz) = b956e5e4c9c9bc925903d0c0b6de0b7b829fcce6
-RMD160 (fe-1.8.tar.gz) = a3d186dbc042fe74fbfdc8e83d6237a50fea692d
-SHA512 (fe-1.8.tar.gz) = c00f23769193b8b74867da32e7424ecb7f807a0186c8f91cd007f83a543777e1ca70909ee17a54ac8e7da743cd3fcb6b0e8cdd6d2fefbfb6766122ade125893b
-Size (fe-1.8.tar.gz) = 169151 bytes
-SHA1 (patch-aa) = 3686219a0f3fac572772344718384cf06cf5baba
-SHA1 (patch-ab) = 4b72dbe1eabfdb7f65c20f9d2db03950c636f97c
+SHA1 (fe-1.9.tar.gz) = 0b288c2c11351548f5bfb5c0255dc79656182854
+RMD160 (fe-1.9.tar.gz) = 4aef68638cacc7e4e12c7fb8808d59a8bf56e2f6
+SHA512 (fe-1.9.tar.gz) = 38121a21c1539ff8ad4f61b92ddfd0582c100f1bc1c5524faf7a60a162c5f8a0b2d1528da7719e522e9b75a527166223c2636f78c9f516abbb33434a9f6e6251
+Size (fe-1.9.tar.gz) = 178678 bytes
+SHA1 (patch-aa) = 20c0e2e3f6685b00188b0a78577bfb7f0cf57a20
+SHA1 (patch-ab) = ffd6a6ed87d8567a04835c2098afb022bf2f2eb0
diff -r c7a0afb4c44c -r 419131d022e0 editors/fe/patches/patch-aa
--- a/editors/fe/patches/patch-aa       Sun Jun 21 03:55:17 2020 +0000
+++ b/editors/fe/patches/patch-aa       Sun Jun 21 04:09:24 2020 +0000
@@ -1,12 +1,17 @@
-$NetBSD: patch-aa,v 1.2 2008/01/12 04:17:38 bjs Exp $
+$NetBSD: patch-aa,v 1.3 2020/06/21 04:09:24 mef Exp $
 
---- configure.orig     2007-09-12 09:58:44.000000000 -0400
+date: 2007-01-31 08:52:53 +0900;  author: wiz;  state: Exp;
+Second try at fixing the bulk build of this package --
+let the curses test always succeed.
+
+--- configure.orig     2011-03-04 19:05:52.000000000 +0000
 +++ configure
-@@ -3170,6 +3170,7 @@ fi
- 
+@@ -3294,6 +3294,8 @@ rm -f core *.core core.conftest.* gmon.o
+ fi
  
  LIBS=$ORIG_LIBS
 +curses_ok=yes
++
  if test "$curses_ok" = yes; then
-   { echo "$as_me:$LINENO: checking for modern curses without raw() bug" >&5
- echo $ECHO_N "checking for modern curses without raw() bug... $ECHO_C" >&6; }
+   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modern curses without raw() bug" >&5
+ $as_echo_n "checking for modern curses without raw() bug... " >&6; }
diff -r c7a0afb4c44c -r 419131d022e0 editors/fe/patches/patch-ab
--- a/editors/fe/patches/patch-ab       Sun Jun 21 03:55:17 2020 +0000
+++ b/editors/fe/patches/patch-ab       Sun Jun 21 04:09:24 2020 +0000
@@ -1,4 +1,7 @@
-$NetBSD: patch-ab,v 1.1 2008/01/12 04:17:38 bjs Exp $
+$NetBSD: patch-ab,v 1.2 2020/06/21 04:09:24 mef Exp $
+
+Update to version 1.8.  This version adds folding for C++ programs.
+While here, add user-destdir support.
 
 --- Makefile.in.orig   2007-08-31 14:47:09.000000000 -0400
 +++ Makefile.in



Home | Main Index | Thread Index | Old Index