Bump to re2c 3.0 27/270827/1 accepted/tizen_7.0_unified accepted/tizen_7.0_unified_hotfix accepted/tizen_8.0_unified sandbox/backup/re2c_3.0_20240122 sandbox/dh0128.kwak/re2c-3.0-20220210 tizen_7.0 tizen_7.0_hotfix tizen_8.0 accepted/tizen/7.0/unified/20221110.061039 accepted/tizen/7.0/unified/hotfix/20221116.111408 accepted/tizen/8.0/unified/20231005.095513 accepted/tizen/unified/20220210.105946 submit/tizen/20220210.012226 tizen_7.0_m2_release tizen_8.0_m2_release
authorDongHun Kwak <dh0128.kwak@samsung.com>
Thu, 10 Feb 2022 00:55:07 +0000 (09:55 +0900)
committerDongHun Kwak <dh0128.kwak@samsung.com>
Thu, 10 Feb 2022 00:56:32 +0000 (09:56 +0900)
Change-Id: I1689c648a3ea249c3edf49a89fce6399bdeeb2c1

.gitignore [deleted file]
benchmarks/submatch_dfa_aot/.gitignore [deleted file]
doc/papers/2019_efficient_posix_submatch_extraction_on_nfa/.gitignore [deleted file]
packaging/re2c.manifest [new file with mode: 0644]
packaging/re2c.spec [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
deleted file mode 100644 (file)
index 4e50ff5..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-# Please do not use this ignore file to define platform specific files
-# e.g. autogenerated files by IDE.
-#
-# For these purposes create a global .gitignore file, which is a list of rules
-# for ignoring files in every Git repository on your computer.
-#
-# https://help.github.com/articles/ignoring-files/#create-a-global-gitignore
-
-# The directories to ignore (do not add trailing '/'s, they skip symlinks).
-/autom4te.cache
-/m4
-/test_*
-/.build*
-
-# Ignore user defined CMake presets
-CMakeUserPresets.json
-
-# The files autogenerated by automake.
-Makefile.in
-aclocal.m4
-configure
-compile
-config.h.in
-config.guess
-config.sub
-depcomp
-install-sh
-ltmain.sh
-missing
-test-driver
diff --git a/benchmarks/submatch_dfa_aot/.gitignore b/benchmarks/submatch_dfa_aot/.gitignore
deleted file mode 100644 (file)
index 5e73b52..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-bin/**
-data/*/big
diff --git a/doc/papers/2019_efficient_posix_submatch_extraction_on_nfa/.gitignore b/doc/papers/2019_efficient_posix_submatch_extraction_on_nfa/.gitignore
deleted file mode 100644 (file)
index c405ee6..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-*.aux
-*.build_log
-*.log
-*.pdf
diff --git a/packaging/re2c.manifest b/packaging/re2c.manifest
new file mode 100644 (file)
index 0000000..017d22d
--- /dev/null
@@ -0,0 +1,5 @@
+<manifest>
+ <request>
+    <domain name="_"/>
+ </request>
+</manifest>
diff --git a/packaging/re2c.spec b/packaging/re2c.spec
new file mode 100644 (file)
index 0000000..6e8572d
--- /dev/null
@@ -0,0 +1,46 @@
+Name:           re2c
+Version:        3.0
+Release:        0
+License:        PD
+Summary:        Tool for generating C-based recognizers from regular expressions
+Url:            http://re2c.org/
+Group:          Development/Libraries/C and C++
+Source:         %{name}-%{version}.tar.bz2
+Source1001:    re2c.manifest
+BuildRequires:  gcc-c++
+
+%description
+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.
+
+%prep
+%setup -q
+cp %{SOURCE1001} .
+find -type d -name .svn -print0 | xargs -r0 rm -rf
+find CHANGELOG lessons examples -type f -print0 \
+    | xargs -r0 chmod -v a-x
+
+%build
+export CFLAGS+=" -fPIC"
+export CXXFLAGS+=" -fPIC"
+export LDFLAGS+=" -pie"
+mkdir -p m4
+autoreconf -i -W all
+
+%configure
+%{__make} %{?_smp_mflags}
+
+%install
+%make_install
+%remove_docs
+
+%files
+%manifest %{name}.manifest
+%defattr(-,root,root,-)
+%{_bindir}/re2c
+%{_bindir}/re2go
+%{_bindir}/re2rust
+%{_datadir}/re2c/stdlib/unicode_categories.re