Date: Thu, 14 Feb 2019 17:42:19 +0000 (UTC) From: Pietro Cerutti <gahr@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r492926 - in head/textproc: . re-flex Message-ID: <201902141742.x1EHgJWQ096145@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: gahr Date: Thu Feb 14 17:42:19 2019 New Revision: 492926 URL: https://svnweb.freebsd.org/changeset/ports/492926 Log: textproc/re-flex: add new port RE/flex is a free and open-source alternative to the fast lexical analyzer Flex. RE/flex generates fast lexical analyzers for C++, also known as "scanners", "lexers", or "tokenizers". RE/flex offers many new useful features including Unicode support, indent/nodent/dedent anchors, word boundaries, lazy quantifiers (non-greedy, lazy repeats), and performance tuning options. The RE/flex software also includes a very fast stand-alone regex library for C++. WWW: https://www.genivia.com/reflex.html Added: head/textproc/re-flex/ head/textproc/re-flex/Makefile (contents, props changed) head/textproc/re-flex/distinfo (contents, props changed) head/textproc/re-flex/pkg-descr (contents, props changed) head/textproc/re-flex/pkg-plist (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Thu Feb 14 16:28:34 2019 (r492925) +++ head/textproc/Makefile Thu Feb 14 17:42:19 2019 (r492926) @@ -1480,6 +1480,7 @@ SUBDIR += rarian SUBDIR += rasqal SUBDIR += re_graph + SUBDIR += re-flex SUBDIR += redet SUBDIR += redland SUBDIR += redland-bindings Added: head/textproc/re-flex/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/re-flex/Makefile Thu Feb 14 17:42:19 2019 (r492926) @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= re-flex +PORTVERSION= 1.0.12 +DISTVERSIONPREFIX= v +CATEGORIES= textproc + +MAINTAINER= gahr@FreeBSD.org +COMMENT= Regex-centric, fast and flexible scanner generator for C++ + +LICENSE= BSD3CLAUSE + +CONFLICTS_INSTALL= reflex + +USES= autoreconf compiler:c++11-lib gmake + +USE_GITHUB= yes +GH_ACCOUNT= Genivia +GH_PROJECT= RE-flex + +GNU_CONFIGURE= yes + +post-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/include/reflex + (cd ${WRKSRC}/include/reflex && \ + ${COPYTREE_SHARE} \* ${STAGEDIR}${PREFIX}/include/reflex) + +.include <bsd.port.mk> Added: head/textproc/re-flex/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/re-flex/distinfo Thu Feb 14 17:42:19 2019 (r492926) @@ -0,0 +1,3 @@ +TIMESTAMP = 1550144678 +SHA256 (Genivia-RE-flex-v1.0.12_GH0.tar.gz) = b10baf1aca26410013aafc5094ca79a837711a458cc41fc170a0e9d21d60667a +SIZE (Genivia-RE-flex-v1.0.12_GH0.tar.gz) = 3926377 Added: head/textproc/re-flex/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/re-flex/pkg-descr Thu Feb 14 17:42:19 2019 (r492926) @@ -0,0 +1,8 @@ +RE/flex is a free and open-source alternative to the fast lexical analyzer +Flex. RE/flex generates fast lexical analyzers for C++, also known as +"scanners", "lexers", or "tokenizers". RE/flex offers many new useful features +including Unicode support, indent/nodent/dedent anchors, word boundaries, lazy +quantifiers (non-greedy, lazy repeats), and performance tuning options. The +RE/flex software also includes a very fast stand-alone regex library for C++. + +WWW: https://www.genivia.com/reflex.html Added: head/textproc/re-flex/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/re-flex/pkg-plist Thu Feb 14 17:42:19 2019 (r492926) @@ -0,0 +1,22 @@ +bin/reflex +include/reflex/abslexer.h +include/reflex/absmatcher.h +include/reflex/bits.h +include/reflex/boostmatcher.h +include/reflex/convert.h +include/reflex/debug.h +include/reflex/error.h +include/reflex/flexlexer.h +include/reflex/input.h +include/reflex/matcher.h +include/reflex/pattern.h +include/reflex/posix.h +include/reflex/ranges.h +include/reflex/setop.h +include/reflex/stdmatcher.h +include/reflex/timer.h +include/reflex/traits.h +include/reflex/unicode.h +include/reflex/utf8.h +lib/libreflex.a +man/man1/reflex.1.gz
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902141742.x1EHgJWQ096145>