From owner-svn-ports-all@freebsd.org Thu Feb 14 17:42:20 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B1C6A14DB9DE; Thu, 14 Feb 2019 17:42:20 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 54D17839BE; Thu, 14 Feb 2019 17:42:20 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 49474A639; Thu, 14 Feb 2019 17:42:20 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x1EHgK2O096149; Thu, 14 Feb 2019 17:42:20 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x1EHgJWQ096145; Thu, 14 Feb 2019 17:42:19 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201902141742.x1EHgJWQ096145@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Thu, 14 Feb 2019 17:42:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r492926 - in head/textproc: . re-flex X-SVN-Group: ports-head X-SVN-Commit-Author: gahr X-SVN-Commit-Paths: in head/textproc: . re-flex X-SVN-Commit-Revision: 492926 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 54D17839BE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_SHORT(-0.97)[-0.970,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-0.999,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Feb 2019 17:42:20 -0000 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 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