From 018dffefb521ece73b0ebf01021b674dfa649579 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Tue, 7 May 2019 02:29:22 -0400 Subject: [PATCH] import PEGTL-2.7.0-1.el8 --- .PEGTL.metadata | 1 + .gitignore | 1 + SPECS/PEGTL.spec | 68 ++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 70 insertions(+) create mode 100644 .PEGTL.metadata create mode 100644 .gitignore create mode 100644 SPECS/PEGTL.spec diff --git a/.PEGTL.metadata b/.PEGTL.metadata new file mode 100644 index 0000000..1b9fade --- /dev/null +++ b/.PEGTL.metadata @@ -0,0 +1 @@ +82a824cf7c8b2eb16dc8ef2ffc270102d4e77efa SOURCES/2.7.0.tar.gz diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..865bc9c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/2.7.0.tar.gz diff --git a/SPECS/PEGTL.spec b/SPECS/PEGTL.spec new file mode 100644 index 0000000..f7504e9 --- /dev/null +++ b/SPECS/PEGTL.spec @@ -0,0 +1,68 @@ +%global debug_package %{nil} + +Name: PEGTL +Version: 2.7.0 +Release: 1%{?dist} +Summary: Parsing Expression Grammar Template Library +Group: Development/Libraries +License: MIT +URL: https://github.com/taocpp/%{name}/ +Source0: https://github.com/taocpp/%{name}/archive/%{version}.tar.gz + +BuildRequires: /usr/bin/make + +%description +The Parsing Expression Grammar Template Library (PEGTL) is a zero-dependency +C++11 header-only library for creating parsers according to a Parsing +Expression Grammar (PEG). + +%package devel +Summary: Development files for %{name} +Group: Development/Libraries +Provides: %{name}-static = %{version}-%{release} +Provides: %{name} = %{version}-%{release} +Requires: libstdc++-devel + +%description devel +The %{name}-devel package contains C++ header files for developing +applications that use %{name}. + +%prep +%setup -q -n %{name}-%{version} + +%check +make + +%install +install -d -m 0755 %{buildroot}%{_includedir} +pushd include/ +cp -R tao/ %{buildroot}%{_includedir} +popd + +%files devel +%doc README.md doc/ +%license LICENSE +%{_includedir}/tao/pegtl.hpp +%{_includedir}/tao/pegtl + +%changelog +* Wed Aug 01 2018 Daniel Kopecek - 2.7.0-1 +- Update to 2.7.0 + +* Wed Jul 11 2018 Daniel Kopecek - 2.6.0-1 +- Update to 2.6.0 + +* Wed Feb 07 2018 Fedora Release Engineering - 1.3.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Wed Aug 02 2017 Fedora Release Engineering - 1.3.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 1.3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Fri Feb 10 2017 Fedora Release Engineering - 1.3.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Thu Jul 14 2016 Daniel Kopecek - 1.3.1-1 +- Initial package