Date: Sat, 1 Aug 2020 21:35:31 +0000 (UTC) From: Craig Leres <leres@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r543924 - head/editors/nvi2 Message-ID: <202008012135.071LZVkB098936@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: leres Date: Sat Aug 1 21:35:30 2020 New Revision: 543924 URL: https://svnweb.freebsd.org/changeset/ports/543924 Log: editors/nvi2: Update to the 2020801 version - The expandtab option now applies to lines filtered with the ! command - Enable Ninja for the build thanks to upstream changes - Add symlinks for the nex and nview man pages Modified: head/editors/nvi2/Makefile head/editors/nvi2/distinfo (contents, props changed) head/editors/nvi2/pkg-descr (contents, props changed) Modified: head/editors/nvi2/Makefile ============================================================================== --- head/editors/nvi2/Makefile Sat Aug 1 21:16:05 2020 (r543923) +++ head/editors/nvi2/Makefile Sat Aug 1 21:35:30 2020 (r543924) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nvi2 -PORTVERSION= 2.1.3.g2020726 +PORTVERSION= 2.1.3.g2020801 CATEGORIES= editors MAINTAINER= leres@FreeBSD.org @@ -10,11 +10,11 @@ COMMENT= Updated implementation of the ex/vi text edit LICENSE= BSD3CLAUSE -USES= bdb cmake:noninja ncurses +USES= bdb cmake ncurses USE_GITHUB= yes GH_ACCOUNT= lichray -GH_TAGNAME= 0ef1c82 +GH_TAGNAME= 6a8af80 CONFLICTS_INSTALL= nvi-m17n-[0-9]* nvi-[0-9]* @@ -29,24 +29,20 @@ ICONV_CMAKE_BOOL= ENABLE_ICONV ICONV_USES= iconv WIDECHAR_CMAKE_BOOL= ENABLE_WIDECHAR -CMAKE_SOURCE_PATH= ${WRKSRC}/build - PLIST_FILES= bin/nex \ bin/nvi \ bin/nview \ - man/man1/nvi.1.gz + man/man1/nex.1.gz \ + man/man1/nvi.1.gz \ + man/man1/nview.1.gz -post-patch: - ${REINPLACE_CMD} -E \ - -e 's,\.\./(cl|common|ex|regex|vi)/,${WRKSRC}/\1/,g' \ - -e 's,\.\./(regex|README),${WRKSRC}/\1,g' \ - ${WRKSRC}/build/CMakeLists.txt - do-install: ${INSTALL_PROGRAM} ${BUILD_WRKSRC}/nvi ${STAGEDIR}${PREFIX}/bin ${LN} ${STAGEDIR}${PREFIX}/bin/nvi ${STAGEDIR}${PREFIX}/bin/nex ${LN} ${STAGEDIR}${PREFIX}/bin/nvi ${STAGEDIR}${PREFIX}/bin/nview ${INSTALL_MAN} ${WRKSRC}/man/vi.1 \ ${STAGEDIR}${MAN1PREFIX}/man/man1/nvi.1 + ${LN} -sf nvi.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/nex.1 + ${LN} -sf nvi.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/nview.1 .include <bsd.port.mk> Modified: head/editors/nvi2/distinfo ============================================================================== --- head/editors/nvi2/distinfo Sat Aug 1 21:16:05 2020 (r543923) +++ head/editors/nvi2/distinfo Sat Aug 1 21:35:30 2020 (r543924) @@ -1,3 +1,3 @@ -TIMESTAMP = 1595813081 -SHA256 (lichray-nvi2-2.1.3.g2020726-0ef1c82_GH0.tar.gz) = f18507f88866203d72bb0cd3f5ea744c57a8498066f7d6492b6796cad8f5afc6 -SIZE (lichray-nvi2-2.1.3.g2020726-0ef1c82_GH0.tar.gz) = 438819 +TIMESTAMP = 1596316771 +SHA256 (lichray-nvi2-2.1.3.g2020801-6a8af80_GH0.tar.gz) = e16c63352426a490c35543825fbccbb3436f4876439d6f21a5c6f1ba341bc2a3 +SIZE (lichray-nvi2-2.1.3.g2020801-6a8af80_GH0.tar.gz) = 439562 Modified: head/editors/nvi2/pkg-descr ============================================================================== --- head/editors/nvi2/pkg-descr Sat Aug 1 21:16:05 2020 (r543923) +++ head/editors/nvi2/pkg-descr Sat Aug 1 21:35:30 2020 (r543924) @@ -7,6 +7,8 @@ nvi was written by Keith Bostic and was distributed as Fourth Berkeley Software Distribution (4BSD) by the University of California, Berkeley. -This version is based on a fork of nvi by Sven Verdoolaege. +This version is based on a fork of nvi by Sven Verdoolaege. It is +very similar to the base vi but includes the expandtab option from +NetBSD which is handy for Python development. WWW: https://github.com/lichray/nvi2/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202008012135.071LZVkB098936>