Accepting request 770165 from devel:tools:compiler
- 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 OBS-URL: https://build.opensuse.org/request/show/770165 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/re2c?expand=0&rev=37
This commit is contained in:
commit
6ce7fd1fec
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:1a4cd706b5b966aeffd78e3cf8b24239470ded30551e813610f9cd1a4e01b817
|
|
||||||
size 2059304
|
|
3
re2c-1.3.tar.xz
Normal file
3
re2c-1.3.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f37f25ff760e90088e7d03d1232002c2c2672646d5844fdf8e0d51a5cd75a503
|
||||||
|
size 1239280
|
15
re2c.changes
15
re2c.changes
@ -1,3 +1,18 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 5 08:52:11 UTC 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 15:37:39 UTC 2019 - Martin Pluskal <mpluskal@suse.com>
|
Wed Aug 14 15:37:39 UTC 2019 - Martin Pluskal <mpluskal@suse.com>
|
||||||
|
|
||||||
|
16
re2c.spec
16
re2c.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package re2c
|
# spec file for package re2c
|
||||||
#
|
#
|
||||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2020 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,12 +17,12 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: re2c
|
Name: re2c
|
||||||
Version: 1.2.1
|
Version: 1.3
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Tool for generating C-based recognizers from regular expressions
|
Summary: Tool for generating C-based recognizers from regular expressions
|
||||||
License: SUSE-Public-Domain
|
License: SUSE-Public-Domain
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
URL: http://re2c.org/
|
URL: https://re2c.org/
|
||||||
Source: https://github.com/skvadrik/re2c/releases/download/%{version}/%{name}-%{version}.tar.xz
|
Source: https://github.com/skvadrik/re2c/releases/download/%{version}/%{name}-%{version}.tar.xz
|
||||||
BuildRequires: bison
|
BuildRequires: bison
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
@ -40,13 +40,13 @@ terms of size and speed.
|
|||||||
%build
|
%build
|
||||||
%configure
|
%configure
|
||||||
%if 0%{?do_profiling}
|
%if 0%{?do_profiling}
|
||||||
make %{?_smp_mflags} CFLAGS="%{optflags} %{cflags_profile_generate}" V=1
|
%make_build CFLAGS="%{optflags} %{cflags_profile_generate}"
|
||||||
# do not run profiling in parallel for reproducible builds (boo#1040589 boo#1102408)
|
# do not run profiling in parallel for reproducible builds (boo#1040589 boo#1102408)
|
||||||
make CFLAGS="%{optflags} %{cflags_profile_generate}" check
|
%make_build CFLAGS="%{optflags} %{cflags_profile_generate}" check
|
||||||
make %{?_smp_mflags} clean
|
%make_build clean
|
||||||
make %{?_smp_mflags} CFLAGS="%{optflags} %{cflags_profile_feedback}" V=1
|
%make_build CFLAGS="%{optflags} %{cflags_profile_feedback}"
|
||||||
%else
|
%else
|
||||||
make %{?_smp_mflags} CFLAGS="%{optflags}"
|
%make_build CFLAGS="%{optflags}"
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
|
Loading…
Reference in New Issue
Block a user