Compare commits
No commits in common. "c8" and "c10s" have entirely different histories.
@ -1 +0,0 @@
|
||||
82a824cf7c8b2eb16dc8ef2ffc270102d4e77efa SOURCES/2.7.0.tar.gz
|
1
.fmf/version
Normal file
1
.fmf/version
Normal file
@ -0,0 +1 @@
|
||||
1
|
6
.gitignore
vendored
6
.gitignore
vendored
@ -1 +1,5 @@
|
||||
SOURCES/2.7.0.tar.gz
|
||||
/1.3.1.tar.gz
|
||||
/2.4.0.tar.gz
|
||||
/2.8.0.tar.gz
|
||||
/2.8.1.tar.gz
|
||||
/2.8.3.tar.gz
|
||||
|
32
PEGTL-compiler-warning.patch
Normal file
32
PEGTL-compiler-warning.patch
Normal file
@ -0,0 +1,32 @@
|
||||
diff --git a/include/tao/pegtl/contrib/rep_one_min_max.hpp b/include/tao/pegtl/contrib/rep_one_min_max.hpp
|
||||
index 9173ad4a..2c9c25e6 100644
|
||||
--- a/include/tao/pegtl/contrib/rep_one_min_max.hpp
|
||||
+++ b/include/tao/pegtl/contrib/rep_one_min_max.hpp
|
||||
@@ -45,6 +45,27 @@ namespace tao
|
||||
}
|
||||
};
|
||||
|
||||
+ template< unsigned Max, char C >
|
||||
+ struct rep_one_min_max< 0, Max, C >
|
||||
+ {
|
||||
+ using analyze_t = analysis::counted< analysis::rule_type::any, 0 >;
|
||||
+
|
||||
+ template< typename Input >
|
||||
+ static bool match( Input& in )
|
||||
+ {
|
||||
+ const auto size = in.size( Max + 1 );
|
||||
+ std::size_t i = 0;
|
||||
+ while( ( i < size ) && ( in.peek_char( i ) == C ) ) {
|
||||
+ ++i;
|
||||
+ }
|
||||
+ if( i <= Max ) {
|
||||
+ bump_help< result_on_found::success, Input, char, C >( in, i );
|
||||
+ return true;
|
||||
+ }
|
||||
+ return false;
|
||||
+ }
|
||||
+ };
|
||||
+
|
||||
template< unsigned Min, unsigned Max, char C >
|
||||
struct skip_control< rep_one_min_max< Min, Max, C > > : std::true_type
|
||||
{
|
133
PEGTL.spec
Normal file
133
PEGTL.spec
Normal file
@ -0,0 +1,133 @@
|
||||
%global debug_package %{nil}
|
||||
|
||||
Name: PEGTL
|
||||
Version: 2.8.3
|
||||
Release: 12%{?dist}
|
||||
Summary: Parsing Expression Grammar Template Library
|
||||
License: MIT
|
||||
URL: https://github.com/taocpp/%{name}/
|
||||
Source0: https://github.com/taocpp/%{name}/archive/%{version}.tar.gz
|
||||
|
||||
BuildRequires: make
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: /usr/bin/make
|
||||
|
||||
Patch0: PEGTL-compiler-warning.patch
|
||||
|
||||
%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}
|
||||
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}
|
||||
|
||||
%patch -P 0 -p1 -b .compiler
|
||||
|
||||
%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
|
||||
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 2.8.3-12
|
||||
- Bump release for October 2024 mass rebuild:
|
||||
Resolves: RHEL-64018
|
||||
|
||||
* Thu Aug 15 2024 Attila Lakatos <alakatos@redhat.com> - 2.8.3-11
|
||||
- Rebuild
|
||||
Resolves: RHEL-54349
|
||||
|
||||
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 2.8.3-10
|
||||
- Bump release for June 2024 mass rebuild
|
||||
|
||||
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.3-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.3-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.3-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.3-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.3-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.3-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.3-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Mon Jan 25 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Thu Sep 03 2020 Attila Lakatos <alakatos@redhat.com> - 2.8.3-1
|
||||
- Update to 2.8.3
|
||||
Resolves: rhbz#1742557
|
||||
|
||||
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.1-4
|
||||
- Second attempt - Rebuilt for
|
||||
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Fri Oct 11 2019 Orion Poplawski <orion@nwra.com> - 2.8.1-1
|
||||
- Update to 2.8.1
|
||||
|
||||
* Wed Jul 31 2019 Daniel Kopecek <dkopecek@redhat.com> - 2.8.0-1
|
||||
- Update to 2.8.0
|
||||
|
||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Thu Mar 08 2018 Daniel Kopecek <dkopecek@redhat.com> - 2.4.0-1
|
||||
- Update to 2.4.0
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Thu Jul 14 2016 Daniel Kopecek <dkopecek@redhat.com> - 1.3.1-1
|
||||
- Initial package
|
@ -1,68 +0,0 @@
|
||||
%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 <dkopecek@redhat.com> - 2.7.0-1
|
||||
- Update to 2.7.0
|
||||
|
||||
* Wed Jul 11 2018 Daniel Kopecek <dkopecek@redhat.com> - 2.6.0-1
|
||||
- Update to 2.6.0
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Thu Jul 14 2016 Daniel Kopecek <dkopecek@redhat.com> - 1.3.1-1
|
||||
- Initial package
|
11
ci.fmf
Normal file
11
ci.fmf
Normal file
@ -0,0 +1,11 @@
|
||||
/e2e_ci:
|
||||
plan:
|
||||
import:
|
||||
url: https://github.com/RedHat-SP-Security/PEGTL-plans.git
|
||||
name: /generic/e2e_ci
|
||||
|
||||
/rpmverify:
|
||||
plan:
|
||||
import:
|
||||
url: https://github.com/RedHat-SP-Security/PEGTL-plans.git
|
||||
name: /generic/rpmverify
|
6
gating.yaml
Normal file
6
gating.yaml
Normal file
@ -0,0 +1,6 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-10
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
Loading…
Reference in New Issue
Block a user