SecBSD's official ports repository

This commit is contained in:
purplerain 2023-08-16 22:26:55 +00:00
commit 2c0afcbbf3
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
64331 changed files with 5339189 additions and 0 deletions

View file

@ -0,0 +1,15 @@
COMMENT= gem for tokenizing, parsing, and transforming regexps
DISTNAME= regexp_parser-2.8.0
CATEGORIES= devel
HOMEPAGE= https://github.com/ammar/regexp_parser
# MIT
PERMIT_PACKAGE= Yes
MODULES= lang/ruby
CONFIGURE_STYLE= ruby gem
.include <bsd.port.mk>

View file

@ -0,0 +1,2 @@
SHA256 (regexp_parser-2.8.0.gem) = oCSRw9QfSBXqc4HhCWlht7ec268dR2IwhIj7XPj8sZ8=
SIZE (regexp_parser-2.8.0.gem) = 74752

View file

@ -0,0 +1,10 @@
regexp_parser is a Ruby gem for tokenizing, parsing, and transforming
regular expressions.
Features:
* Multilayered
* A scanner/tokenizer based on Ragel
* A lexer that produces a "stream" of token objects.
* A parser that produces a "tree" of Expression objects (OO API)
* Recognizes Ruby 1.8, 1.9, and 2.x regular expressions

View file

@ -0,0 +1,104 @@
${GEM_LIB}/cache/${DISTNAME}.gem
${GEM_LIB}/gems/${DISTNAME}/
${GEM_LIB}/gems/${DISTNAME}/CHANGELOG.md
${GEM_LIB}/gems/${DISTNAME}/Gemfile
${GEM_LIB}/gems/${DISTNAME}/LICENSE
${GEM_LIB}/gems/${DISTNAME}/README.md
${GEM_LIB}/gems/${DISTNAME}/Rakefile
${GEM_LIB}/gems/${DISTNAME}/lib/
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/error.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/base.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/classes/
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/classes/alternation.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/classes/anchor.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/classes/backreference.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/classes/character_set/
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/classes/character_set.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/classes/character_set/intersection.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/classes/character_set/range.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/classes/character_type.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/classes/conditional.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/classes/escape_sequence.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/classes/free_space.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/classes/group.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/classes/keep.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/classes/literal.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/classes/posix_class.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/classes/root.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/classes/unicode_property.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/methods/
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/methods/construct.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/methods/human_name.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/methods/match.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/methods/match_length.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/methods/options.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/methods/parts.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/methods/printing.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/methods/strfregexp.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/methods/tests.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/methods/traverse.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/quantifier.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/sequence.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/sequence_operation.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/shared.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/expression/subexpression.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/lexer.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/parser.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/scanner/
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/scanner.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/scanner/char_type.rl
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/scanner/errors/
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/scanner/errors/premature_end_error.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/scanner/errors/scanner_error.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/scanner/errors/validation_error.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/scanner/mapping.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/scanner/properties/
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/scanner/properties/long.csv
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/scanner/properties/short.csv
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/scanner/property.rl
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/scanner/scanner.rl
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/any.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/base.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/token/
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/token.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/token/anchor.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/token/assertion.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/token/backreference.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/token/character_set.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/token/character_type.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/token/conditional.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/token/escape.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/token/group.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/token/keep.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/token/meta.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/token/posix_class.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/token/quantifier.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/token/unicode_property.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/token/virtual.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/version_lookup.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/versions/
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/versions.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/versions/1.8.6.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/versions/1.9.1.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/versions/1.9.3.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/versions/2.0.0.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/versions/2.2.0.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/versions/2.3.0.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/versions/2.4.0.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/versions/2.4.1.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/versions/2.5.0.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/versions/2.6.0.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/versions/2.6.2.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/versions/2.6.3.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/versions/3.1.0.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/syntax/versions/3.2.0.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/token.rb
${GEM_LIB}/gems/${DISTNAME}/lib/regexp_parser/version.rb
${GEM_LIB}/gems/${DISTNAME}/regexp_parser.gemspec
${GEM_LIB}/specifications/${DISTNAME}.gemspec