ragel/ragel.spec
cherry530 2c14a78f17 upgrade version to 7.0.4
Signed-off-by: cherry530 <707078654@qq.com>
2023-09-14 19:37:00 +08:00

87 lines
2.3 KiB
RPMSpec

%bcond_with bootstrap
Name: ragel
Version: 7.0.4
Release: 1
Summary: Finite state machine compiler
# aapl/ is the LGPLv2+
License: MIT and LGPLv2+
URL: http://www.colm.net/open-source/%{name}/
Source0: https://www.colm.net/files/%{name}/%{name}-%{version}.tar.gz
Patch0: ragel-fallback-no-la.patch
Patch1: ragel-use-libdir.patch
BuildRequires: gcc
BuildRequires: gcc-c++
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: libtool
BuildRequires: make
%if %{with bootstrap}
BuildRequires: kelbt
BuildRequires: ragel
%endif
BuildRequires: colm-devel
# Unfortunately, upstream doesn't exist and not possible to find version
Provides: bundled(aapl)
%description
Ragel compiles executable finite state machines from regular languages.
Ragel targets C, C++ and ASM. Ragel state machines can not only recognize
byte sequences as regular expression machines do, but can also execute code
at arbitrary points in the recognition of a regular language. Code embedding
is done using inline operators that do not disrupt the regular language syntax.
%package devel
Summary: Development libraries header files for %{name}
Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
%description devel
%{summary}.
%prep
%autosetup -p1
# Do not pollute with docs
sed -i -e "/dist_doc_DATA/d" Makefile.am
%build
autoreconf -vfi
%configure --disable-static --with-colm=%{_prefix} --disable-manual
%make_build
%install
%make_install
find %{buildroot}%{_libdir} -type f -name '*.la' -print -delete
install -p -m 0644 -D %{name}.vim %{buildroot}%{_datadir}/vim/vimfiles/syntax/%{name}.vim
%ldconfig_scriptlets
%files
%license COPYING
%{_bindir}/%{name}
%{_bindir}/%{name}-*
%{_mandir}/man1/%{name}.1*
%{_libdir}/libragel.so.*
%{_datarootdir}/%{name}.lm
%{_datarootdir}/out-go.lm
%dir %{_datadir}/vim
%dir %{_datadir}/vim/vimfiles
%dir %{_datadir}/vim/vimfiles/syntax
%{_datadir}/vim/vimfiles/syntax/%{name}.vim
%files devel
%{_libdir}/libragel.so
%changelog
* Thu Sep 14 2023 xu_ping <707078654@qq.com> - 7.0.4-1
- Upgrade version to 7.0.4
* Mon Sep 21 2020 Guoshuai Sun <sunguoshuai@huawei.com> - 7.0.0.12-2
- Fix ragel-d ragel-go ragel-java eg. command segfault
* Mon Jun 22 2020 Yikun Jiang <yikunkero@gmail.com> - 7.0.0.12-1
- Package init