Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: re2c | Distribution: openSUSE:Factory:zSystems |
Version: 3.1 | Vendor: openSUSE |
Release: 1.4 | Build date: Wed Aug 9 16:24:49 2023 |
Group: Development/Libraries/C and C++ | Build host: reproducible |
Size: 3520537 | Source RPM: re2c-3.1-1.4.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://re2c.org/ | |
Summary: Tool for generating C-based recognizers from regular expressions |
re2c is a tool for writing fast and flexible lexers. Unlike other such tools, it concentrates solely on generating efficient code for matching regular expressions. This makes it suitable for a wide variety of applications. The generated scanners approach hand-crafted ones in terms of size and speed.
SUSE-Public-Domain
* Wed Aug 09 2023 Andrea Manzini <andrea.manzini@suse.com> - Update to 3.1: * new options --leftmost-captures option and re2c:leftmost-captures on capturing groups * new syntax (! ...) for non-capturing groups * It is also possible to flip defaults with --invert-captures option or re2c:invert_captures configuration, so that (...) is a capturing group and (! ...) is a non-capturing one * TDFA paper and removal of experimental algorithms * internal codebase , build system and CI improvements see details at https://re2c.org/releases/release_notes.html#release-3-1 * Thu Apr 28 2022 Dirk Müller <dmueller@suse.com> - update to 3.0: - Added code generation backend for Rust: - Added options: + ``--loop-switch`` + ``--no-unsafe`` - Added configurations; + ``re2c:label:yyloop`` + ``re2c:unsafe`` - Renamed options to use common naming scheme. The old names are supported as aliases, so the change does not break existing code. Documentation has been updated to use new names. + ``--api`` is a new alias for ``--input`` + ``--ebcdic`` is a new alias for ``--ecb`` + ``--ucs2`` is a new alias for ``--wide-chars`` + ``--utf32`` is a new alias for ``--unicode`` + ``--utf16`` is a new alias for ``--utf-16`` + ``--utf8`` is a new alias for ``--utf-8`` + ``--header`` is a new alias for ``--type-header`` - Renamed configurations to use common naming scheme and support proper scoping under subcategories such as ``:define``, ``:label``, ``:variable``, etc. The old names are supported as aliases, so the change does not break existing code. Documentation has been updated to use new names. + ``re2c:api`` is a new alias for ``re2c:flags:input`` + ``re2c:bit-vectors`` is a new alias for ``re2c:flags:bit-vectors`` + ``re2c:case-insensitive`` is a new alias for ``re2c:flags:case-insensitive`` + ``re2c:case-inverted`` is a new alias for ``re2c:flags:case-inverted`` + ``re2c:case-ranges`` is a new alias for ``re2c:flags:case-ranges`` + ``re2c:cond:prefix`` is a new alias for ``re2c:condprefix`` + ``re2c:cond:enumprefix`` is a new alias for ``re2c:condenumprefix`` + ``re2c:computed-gotos`` is a new alias for ``re2c:flags:computed-gotos`` + ``re2c:computed-gotos:threshold`` is a new alias for ``re2c:cgoto:threshold`` + ``re2c:debug-output`` is a new alias for ``re2c:flags:debug-output`` + ``re2c:encoding:ebcdic`` is a new alias for ``re2c:flags:ecb`` + ``re2c:encoding:utf32`` is a new alias for ``re2c:flags:unicode`` + ``re2c:encoding:ucs2`` is a new alias for ``re2c:flags:wide-chars`` + ``re2c:encoding:utf16`` is a new alias for ``re2c:flags:utf-16`` + ``re2c:encoding:utf8`` is a new alias for ``re2c:flags:utf-8`` + ``re2c:encoding-policy`` is a new alias for ``re2c:flags:encoding-policy`` + ``re2c:empty-class`` is a new alias for ``re2c:flags:empty-class`` + ``re2c:header`` is a new alias for ``re2c:flags:type-header`` + ``re2c:label:prefix`` is a new alias for ``re2c:labelprefix`` + ``re2c:label:yyfill`` is a new alias for ``re2c:label:yyFillLabel`` + ``re2c:label:start`` is a new alias for ``re2c:startlabel`` + ``re2c:nested-ifs`` is a new alias for ``re2c:flags:nested-ifs`` + ``re2c:posix-captures`` is a new alias for ``re2c:flags:posix-captures`` + ``re2c:tags`` is a new alias for ``re2c:flags:tags`` + ``re2c:variable:yych:conversion`` is a new alias for ``re2c:yych:conversion`` + ``re2c:variable:yych:emit`` is a new alias for ``re2c:yych:emit`` + ``re2c:variable:yybm:hex`` is a new alias for ``re2c:yybm:hex`` + ``re2c:unsafe`` is a new alias for ``re2c:flags:unsafe`` - Added directive alias ``conditions:re2c`` for ``types:re2c``. - Multiple small changes in code generation, including some formatting changes that result in large diffs in the generated code: + Do not allocate indices for unused state labels (this results in a change in state enumeration), commits + Do not generate redundant ``YYPEEK`` statements, commit + Do not generate ``YYDEBUG`` statements for unused states labels, commit + C backend: change formatting of switch statements, commit + Go backend: render continuous character ranges in compact form, commit + Mark start and end of included .re files with line directives, commit - A fix to limit maximum allowed NFA and DFA size (to avoid out of memory crashes and stack overflows), - A fix to correctly compute fixed tags in trailing context, commit - A fix to generate non-overlapping names for s-tag and m-tag variables, commit - Infrastructural: added support for CMake presets. - Updated documentation. - Backwards-incompatible changes that are unlikely to affect any users: + Restrict lexical contexts where ``%{`` is recognized as a block start, + Emit an error when repetition lower bound exceeds upper bound, commit * Fri Nov 12 2021 Dominique Leuenberger <dimstar@opensuse.org> - BuildRequire python3-base instead of full python3: allow to be slimmer. * Mon Nov 08 2021 Daniel Donisa <daniel.donisa@suse.com> - update 2.2: - Added named blocks and block lists in directives. - Added local blocks ``/*!local:re2c ... */``. - Added in-block ``!include`` directive. - Added in-block ``!use`` directive. - Allowed reusable blocks without ``-r --reusable`` option. - Allowed customizing the generated code with configurations for directives ``max:re2c``, ``maxnmatch:re2c``, ``stags:re2c``, ``mtags:re2c`` and ``types:re2c`` (see directive descriptions for details). - Forbid arbitrary text at the end of ``max:re2c`` directive. This may break backwards compatibility, although it is unlikely that this was used by anyone. The change was necessary in order to allow customization of the generated code with configurations. - Deprecated configurations ``flags:i``, ``flags:no-debug-info`` in favour of the global options ``-i``, ``--no-debug-info``. - Reimplemented re2c test runner in Python (thanks to `Serghei Iakovlev <https://github.com/sergeyklay>`_). Improved integration with GitHub Actions. - Changes in the experimental libre2c library: added new algorithms that construct t-string or extract submatch on all repetitions; added TDFA benchmark written in Java by Angelo Borsotti. - Updated documentation. - Add python >= 3.7 dependency required by new tests. - Upstream added some tests written in python. The tests failed locally because the module dataclasses from python >= 3.7 were missing. On OBS the builds failed due to a timeout when trying to run those python tests. * Sun May 09 2021 Dirk Müller <dmueller@suse.com> - update to 2.1.1: - Added missing CMakeLists.txt to release tarballs - Added GitHub Actions CI for Linux, macOS and Windows and fixed numerous build issues on those platforms - Added benchmarks for submatch extraction in lexer generators (ragel vs. kleenex vs. re2c with TDFA(0), TDFA(1) or sta-DFA algorithms). + New CMake options: ``-DRE2C_BUILD_BENCHMARKS``, ``-DRE2C_REGEN_BENCHMARKS`` + New `json2pgfplot.py - Added option ``--depfile <filename>`` to generate build dependency files - Added option ``--fixed-tags <none | all | toplevel>`` and improved fixed-tag optimization to work with nested tags. - Added lzip to the distribution tarballs. - Added registerless-TDFA algorithm in the experimental libre2c library. - Explicitly disallowed invalid configuration when ``-f``, ``--storable-state`` option is used, but ``YYFILL`` is disabled - Fixed bug in UTF-8 decode for 4-bytes rune - Fixed bugs in rare cases of the end-of-input rule ``$`` usage - Optimized ``--skeleton`` generation time. - Renamed internal option ``--dfa`` to ``--nested-negative-tags``. - Updated documentation for end of input handling and submatch extraction. * Fri Sep 04 2020 Dirk Mueller <dmueller@suse.com> - update to 2.0.3: - Fix issues when building re2c as a CMake subproject - Final corrections in the SIMPA article "RE2C: A lexer generator based on lookahead-TDFA", https://doi.org/10.1016/j.simpa.2020.100027 * Thu Aug 13 2020 Paolo Stivanin <info@paolostivanin.com> - Update to version 2.0.2: * Go backend. The new Go code generation backend can be used either with a --lang go re2c option, or as a standalone re2go binary * Free-form generic API. Generic API now supports two styles * Improved reuse mode and start conditions * Backwards incompatible changes: + Generic APIs YYSHIFT/YYSHIFTSTAG/YYSHIFTMTAG have been added + Generic APIs YYSTAGPD/YYMTAGPD have been removed + The re2c:flags:type-header option now treats the header filename as relative to the output directory + Some internal labels have been renamed, in particular the yyFillLabel prefix has been replaced with yyfill * Wed Feb 05 2020 Martin Pluskal <mpluskal@suse.com> - Update to version 1.3: * Added option: ``--stadfa``. * Added warning: ``-Wsentinel-in-midrule``. * Added generic API primitives: + ``YYSTAGPD`` + ``YYMTAGPD`` * Added configurations: + ``re2c:sentinel = 0;`` + ``re2c:define:YYSTAGPD = "YYSTAGPD";`` + ``re2c:define:YYMTAGPD = "YYMTAGPD";`` * Worked on reproducible builds * Wed Aug 14 2019 Martin Pluskal <mpluskal@suse.com> - Update to version 1.2.1: * Lots of changes, see provided CHANGELOG - Drop no longer needed re2c-nogenerationdatedefault.patch - Enable profile guided optimization during build * Mon Mar 11 2019 Chris Coutinho <chrisbcoutinho@gmail.com> - Update re2c to 1.1.1 * Fixed bug #211 re2c '-V' throws 'std::out_of_range' (version to vernum conversion). * Replaced Kuklewicz POSIX disambiguation algorithm with Okui algorithm. * Optimized GOR1 algorithm (computation of tagged epsilon-closure). * Added option "--conditions" (an alias for "-c" and "--start-conditions"). * Fixed bug #201 Bugs with option: 're2c:flags:no-debug-info'. * Reworked first part of TDFA paper.
/usr/bin/re2c /usr/bin/re2go /usr/bin/re2rust /usr/share/doc/packages/re2c /usr/share/doc/packages/re2c/CHANGELOG /usr/share/doc/packages/re2c/examples /usr/share/doc/packages/re2c/examples/c /usr/share/doc/packages/re2c/examples/c/01_basic.c /usr/share/doc/packages/re2c/examples/c/01_basic.re /usr/share/doc/packages/re2c/examples/c/__run_all.sh /usr/share/doc/packages/re2c/examples/c/conditions /usr/share/doc/packages/re2c/examples/c/conditions/parse_u32_blocks.c /usr/share/doc/packages/re2c/examples/c/conditions/parse_u32_blocks.re /usr/share/doc/packages/re2c/examples/c/conditions/parse_u32_conditions.c /usr/share/doc/packages/re2c/examples/c/conditions/parse_u32_conditions.re /usr/share/doc/packages/re2c/examples/c/encodings /usr/share/doc/packages/re2c/examples/c/encodings/unicode_identifier.c /usr/share/doc/packages/re2c/examples/c/encodings/unicode_identifier.re /usr/share/doc/packages/re2c/examples/c/eof /usr/share/doc/packages/re2c/examples/c/eof/01_sentinel.c /usr/share/doc/packages/re2c/examples/c/eof/01_sentinel.re /usr/share/doc/packages/re2c/examples/c/eof/02_bounds_checking.c /usr/share/doc/packages/re2c/examples/c/eof/02_bounds_checking.re /usr/share/doc/packages/re2c/examples/c/eof/03_eof_rule.c /usr/share/doc/packages/re2c/examples/c/eof/03_eof_rule.re /usr/share/doc/packages/re2c/examples/c/eof/04_generic_api_sentinel.c /usr/share/doc/packages/re2c/examples/c/eof/04_generic_api_sentinel.re /usr/share/doc/packages/re2c/examples/c/eof/05_generic_api_eof_rule.c /usr/share/doc/packages/re2c/examples/c/eof/05_generic_api_eof_rule.re /usr/share/doc/packages/re2c/examples/c/fill /usr/share/doc/packages/re2c/examples/c/fill/01_fill.c /usr/share/doc/packages/re2c/examples/c/fill/01_fill.re /usr/share/doc/packages/re2c/examples/c/fill/02_fill.c /usr/share/doc/packages/re2c/examples/c/fill/02_fill.re /usr/share/doc/packages/re2c/examples/c/generic_api /usr/share/doc/packages/re2c/examples/c/generic_api/ifstream.c /usr/share/doc/packages/re2c/examples/c/generic_api/ifstream.re /usr/share/doc/packages/re2c/examples/c/headers /usr/share/doc/packages/re2c/examples/c/headers/header.c /usr/share/doc/packages/re2c/examples/c/headers/header.re /usr/share/doc/packages/re2c/examples/c/headers/lexer /usr/share/doc/packages/re2c/examples/c/headers/lexer/state.h /usr/share/doc/packages/re2c/examples/c/includes /usr/share/doc/packages/re2c/examples/c/includes/definitions.h /usr/share/doc/packages/re2c/examples/c/includes/extra_rules.re.inc /usr/share/doc/packages/re2c/examples/c/includes/include.c /usr/share/doc/packages/re2c/examples/c/includes/include.re /usr/share/doc/packages/re2c/examples/c/real_world /usr/share/doc/packages/re2c/examples/c/real_world/cxx98.c /usr/share/doc/packages/re2c/examples/c/real_world/cxx98.re /usr/share/doc/packages/re2c/examples/c/reuse /usr/share/doc/packages/re2c/examples/c/reuse/braille.c /usr/share/doc/packages/re2c/examples/c/reuse/braille.re /usr/share/doc/packages/re2c/examples/c/reuse/braille.ucs2.txt /usr/share/doc/packages/re2c/examples/c/reuse/braille.utf16.txt /usr/share/doc/packages/re2c/examples/c/reuse/braille.utf32.txt /usr/share/doc/packages/re2c/examples/c/reuse/braille.utf8.txt /usr/share/doc/packages/re2c/examples/c/reuse/reuse.c /usr/share/doc/packages/re2c/examples/c/reuse/reuse.re /usr/share/doc/packages/re2c/examples/c/reuse/usedir.c /usr/share/doc/packages/re2c/examples/c/reuse/usedir.re /usr/share/doc/packages/re2c/examples/c/state /usr/share/doc/packages/re2c/examples/c/state/push.c /usr/share/doc/packages/re2c/examples/c/state/push.re /usr/share/doc/packages/re2c/examples/c/submatch /usr/share/doc/packages/re2c/examples/c/submatch/01_stags.c /usr/share/doc/packages/re2c/examples/c/submatch/01_stags.re /usr/share/doc/packages/re2c/examples/c/submatch/01_stags_fill.c /usr/share/doc/packages/re2c/examples/c/submatch/01_stags_fill.re /usr/share/doc/packages/re2c/examples/c/submatch/02_mtags.c /usr/share/doc/packages/re2c/examples/c/submatch/02_mtags.re /usr/share/doc/packages/re2c/examples/c/submatch/03_posix.c /usr/share/doc/packages/re2c/examples/c/submatch/03_posix.re /usr/share/doc/packages/re2c/examples/c/submatch/http_rfc7230.c /usr/share/doc/packages/re2c/examples/c/submatch/http_rfc7230.re /usr/share/doc/packages/re2c/examples/c/submatch/parse_etc_passwd.c /usr/share/doc/packages/re2c/examples/c/submatch/parse_etc_passwd.re /usr/share/doc/packages/re2c/examples/c/submatch/parse_options.c /usr/share/doc/packages/re2c/examples/c/submatch/parse_options.re /usr/share/doc/packages/re2c/examples/c/submatch/parse_records.c /usr/share/doc/packages/re2c/examples/c/submatch/parse_records.re /usr/share/doc/packages/re2c/examples/c/submatch/uri_rfc3986.c /usr/share/doc/packages/re2c/examples/c/submatch/uri_rfc3986.re /usr/share/doc/packages/re2c/examples/go /usr/share/doc/packages/re2c/examples/go/01_basic.go /usr/share/doc/packages/re2c/examples/go/01_basic.re /usr/share/doc/packages/re2c/examples/go/__run_all.sh /usr/share/doc/packages/re2c/examples/go/conditions /usr/share/doc/packages/re2c/examples/go/conditions/parse_u32_blocks.go /usr/share/doc/packages/re2c/examples/go/conditions/parse_u32_blocks.re /usr/share/doc/packages/re2c/examples/go/conditions/parse_u32_conditions.go /usr/share/doc/packages/re2c/examples/go/conditions/parse_u32_conditions.re /usr/share/doc/packages/re2c/examples/go/encodings /usr/share/doc/packages/re2c/examples/go/encodings/unicode_identifier.go /usr/share/doc/packages/re2c/examples/go/encodings/unicode_identifier.re /usr/share/doc/packages/re2c/examples/go/eof /usr/share/doc/packages/re2c/examples/go/eof/01_sentinel.go /usr/share/doc/packages/re2c/examples/go/eof/01_sentinel.re /usr/share/doc/packages/re2c/examples/go/eof/02_bounds_checking.go /usr/share/doc/packages/re2c/examples/go/eof/02_bounds_checking.re /usr/share/doc/packages/re2c/examples/go/eof/03_eof_rule.go /usr/share/doc/packages/re2c/examples/go/eof/03_eof_rule.re /usr/share/doc/packages/re2c/examples/go/eof/04_generic_api_sentinel.go /usr/share/doc/packages/re2c/examples/go/eof/04_generic_api_sentinel.re /usr/share/doc/packages/re2c/examples/go/eof/05_generic_api_eof_rule.go /usr/share/doc/packages/re2c/examples/go/eof/05_generic_api_eof_rule.re /usr/share/doc/packages/re2c/examples/go/fill /usr/share/doc/packages/re2c/examples/go/fill/01_fill.go /usr/share/doc/packages/re2c/examples/go/fill/01_fill.re /usr/share/doc/packages/re2c/examples/go/fill/02_fill.go /usr/share/doc/packages/re2c/examples/go/fill/02_fill.re /usr/share/doc/packages/re2c/examples/go/headers /usr/share/doc/packages/re2c/examples/go/headers/header.go /usr/share/doc/packages/re2c/examples/go/headers/header.re /usr/share/doc/packages/re2c/examples/go/headers/lexer /usr/share/doc/packages/re2c/examples/go/headers/lexer/state.go /usr/share/doc/packages/re2c/examples/go/includes /usr/share/doc/packages/re2c/examples/go/includes/definitions.go /usr/share/doc/packages/re2c/examples/go/includes/extra_rules.re.inc /usr/share/doc/packages/re2c/examples/go/includes/include.go /usr/share/doc/packages/re2c/examples/go/includes/include.re /usr/share/doc/packages/re2c/examples/go/reuse /usr/share/doc/packages/re2c/examples/go/reuse/reuse.go /usr/share/doc/packages/re2c/examples/go/reuse/reuse.re /usr/share/doc/packages/re2c/examples/go/reuse/usedir.go /usr/share/doc/packages/re2c/examples/go/reuse/usedir.re /usr/share/doc/packages/re2c/examples/go/state /usr/share/doc/packages/re2c/examples/go/state/push.go /usr/share/doc/packages/re2c/examples/go/state/push.re /usr/share/doc/packages/re2c/examples/go/submatch /usr/share/doc/packages/re2c/examples/go/submatch/01_stags.go /usr/share/doc/packages/re2c/examples/go/submatch/01_stags.re /usr/share/doc/packages/re2c/examples/go/submatch/01_stags_fill.go /usr/share/doc/packages/re2c/examples/go/submatch/01_stags_fill.re /usr/share/doc/packages/re2c/examples/go/submatch/02_mtags.go /usr/share/doc/packages/re2c/examples/go/submatch/02_mtags.re /usr/share/doc/packages/re2c/examples/go/submatch/03_posix.go /usr/share/doc/packages/re2c/examples/go/submatch/03_posix.re /usr/share/doc/packages/re2c/examples/rust /usr/share/doc/packages/re2c/examples/rust/01_basic.re /usr/share/doc/packages/re2c/examples/rust/01_basic.rs /usr/share/doc/packages/re2c/examples/rust/__run_all.sh /usr/share/doc/packages/re2c/examples/rust/conditions /usr/share/doc/packages/re2c/examples/rust/conditions/parse_u32_blocks.re /usr/share/doc/packages/re2c/examples/rust/conditions/parse_u32_blocks.rs /usr/share/doc/packages/re2c/examples/rust/conditions/parse_u32_conditions.re /usr/share/doc/packages/re2c/examples/rust/conditions/parse_u32_conditions.rs /usr/share/doc/packages/re2c/examples/rust/encodings /usr/share/doc/packages/re2c/examples/rust/encodings/unicode_identifier.re /usr/share/doc/packages/re2c/examples/rust/encodings/unicode_identifier.rs /usr/share/doc/packages/re2c/examples/rust/eof /usr/share/doc/packages/re2c/examples/rust/eof/01_sentinel.re /usr/share/doc/packages/re2c/examples/rust/eof/01_sentinel.rs /usr/share/doc/packages/re2c/examples/rust/eof/02_bounds_checking.re /usr/share/doc/packages/re2c/examples/rust/eof/02_bounds_checking.rs /usr/share/doc/packages/re2c/examples/rust/eof/03_eof_rule.re /usr/share/doc/packages/re2c/examples/rust/eof/03_eof_rule.rs /usr/share/doc/packages/re2c/examples/rust/eof/04_generic_api_sentinel.re /usr/share/doc/packages/re2c/examples/rust/eof/04_generic_api_sentinel.rs /usr/share/doc/packages/re2c/examples/rust/eof/05_generic_api_eof_rule.re /usr/share/doc/packages/re2c/examples/rust/eof/05_generic_api_eof_rule.rs /usr/share/doc/packages/re2c/examples/rust/fill /usr/share/doc/packages/re2c/examples/rust/fill/01_fill.re /usr/share/doc/packages/re2c/examples/rust/fill/01_fill.rs /usr/share/doc/packages/re2c/examples/rust/fill/02_fill.re /usr/share/doc/packages/re2c/examples/rust/fill/02_fill.rs /usr/share/doc/packages/re2c/examples/rust/headers /usr/share/doc/packages/re2c/examples/rust/headers/header.re /usr/share/doc/packages/re2c/examples/rust/headers/header.rs /usr/share/doc/packages/re2c/examples/rust/headers/lexer /usr/share/doc/packages/re2c/examples/rust/headers/lexer/mod.rs /usr/share/doc/packages/re2c/examples/rust/headers/lexer/state.rs /usr/share/doc/packages/re2c/examples/rust/includes /usr/share/doc/packages/re2c/examples/rust/includes/definitions.rs /usr/share/doc/packages/re2c/examples/rust/includes/extra_rules.re.inc /usr/share/doc/packages/re2c/examples/rust/includes/include.re /usr/share/doc/packages/re2c/examples/rust/includes/include.rs /usr/share/doc/packages/re2c/examples/rust/real_world /usr/share/doc/packages/re2c/examples/rust/real_world/c.re /usr/share/doc/packages/re2c/examples/rust/real_world/c.rs /usr/share/doc/packages/re2c/examples/rust/reuse /usr/share/doc/packages/re2c/examples/rust/reuse/reuse.re /usr/share/doc/packages/re2c/examples/rust/reuse/reuse.rs /usr/share/doc/packages/re2c/examples/rust/reuse/usedir.re /usr/share/doc/packages/re2c/examples/rust/reuse/usedir.rs /usr/share/doc/packages/re2c/examples/rust/state /usr/share/doc/packages/re2c/examples/rust/state/push.re /usr/share/doc/packages/re2c/examples/rust/state/push.rs /usr/share/doc/packages/re2c/examples/rust/submatch /usr/share/doc/packages/re2c/examples/rust/submatch/01_stags.re /usr/share/doc/packages/re2c/examples/rust/submatch/01_stags.rs /usr/share/doc/packages/re2c/examples/rust/submatch/01_stags_fill.re /usr/share/doc/packages/re2c/examples/rust/submatch/01_stags_fill.rs /usr/share/doc/packages/re2c/examples/rust/submatch/02_mtags.re /usr/share/doc/packages/re2c/examples/rust/submatch/02_mtags.rs /usr/share/doc/packages/re2c/examples/rust/submatch/03_posix.re /usr/share/doc/packages/re2c/examples/rust/submatch/03_posix.rs /usr/share/licenses/re2c /usr/share/licenses/re2c/README.md /usr/share/man/man1/re2c.1.gz /usr/share/man/man1/re2go.1.gz /usr/share/man/man1/re2rust.1.gz /usr/share/re2c /usr/share/re2c/stdlib /usr/share/re2c/stdlib/unicode_categories.re
Generated by rpm2html 1.8.1
Fabrice Bellet, Thu Nov 7 00:51:36 2024