bpftrace: bump version to 0.16.0 (#3914)
* cereal: add package v1.3.2 * bpftrace: bump version to 0.16.0 Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com>
This commit is contained in:
Родитель
301d64af52
Коммит
be47236530
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -94,6 +94,7 @@
|
|||
"catch",
|
||||
"catch1",
|
||||
"celt051",
|
||||
"cereal",
|
||||
"certmonger",
|
||||
"cgdcbxd",
|
||||
"chan",
|
||||
|
@ -2840,8 +2841,8 @@
|
|||
"license": "[ASL 2.0 License](http://www.apache.org/licenses/LICENSE-2.0)",
|
||||
"specs": [
|
||||
"k3s",
|
||||
"k3s-1.24.3",
|
||||
"k3s-1.23.8"
|
||||
"k3s-1.23.8",
|
||||
"k3s-1.24.3"
|
||||
]
|
||||
},
|
||||
"Sysbench source": {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"Signatures": {
|
||||
"bpftrace-0.13.0.tar.gz": "a5203e5c73277c87d624f32e8ee394d4c5e2c2810bde8314c1b015c9d810a6bb"
|
||||
"bpftrace-0.16.0.tar.gz": "89456dee3a20ec6c21ece345d4bf9a16a06af0f63cc5dffa9f5c7eea7916e21d"
|
||||
}
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
Summary: Berkeley Packet Filter Tracing Language
|
||||
Name: bpftrace
|
||||
Version: 0.13.0
|
||||
Release: 2%{?dist}
|
||||
Version: 0.16.0
|
||||
Release: 1%{?dist}
|
||||
License: ASL 2.0
|
||||
Vendor: Microsoft Corporation
|
||||
Distribution: Mariner
|
||||
|
@ -11,15 +11,19 @@ Source0: %{url}/archive/refs/tags/v%{version}.tar.gz#/%{name}-%{version}.
|
|||
BuildRequires: bcc-devel
|
||||
BuildRequires: binutils-devel
|
||||
BuildRequires: bison
|
||||
BuildRequires: cereal-devel
|
||||
BuildRequires: clang-devel
|
||||
BuildRequires: cmake
|
||||
BuildRequires: elfutils-libelf-devel
|
||||
BuildRequires: flex
|
||||
BuildRequires: gcc
|
||||
BuildRequires: git
|
||||
BuildRequires: libbpf-devel
|
||||
BuildRequires: libpcap-devel
|
||||
BuildRequires: llvm-devel >= 12.0.1-1
|
||||
BuildRequires: make
|
||||
BuildRequires: systemtap-sdt-devel
|
||||
BuildRequires: vim-extra
|
||||
BuildRequires: zlib-devel
|
||||
Requires: bcc
|
||||
Requires: binutils
|
||||
|
@ -74,6 +78,15 @@ install -p -m 644 tools/*.txt %{buildroot}%{_datadir}/bpftrace/tools/doc
|
|||
%{_datadir}/bpftrace/tools
|
||||
|
||||
%changelog
|
||||
* Tue Oct 04 2022 Muhammad Falak <mwani@microsoft.com> - 0.16.0-1
|
||||
- Bump version to 0.16.0
|
||||
|
||||
* Wed Aug 17 2022 Muhammad Falak <mwani@microsoft.com> - 0.15.0-1
|
||||
- Bump version to 0.15.0
|
||||
|
||||
* Tue Mar 08 2022 Muhammad Falak <mwani@microsoft.com> - 0.14.1-1
|
||||
- Bump version to 0.14.1
|
||||
|
||||
* Wed Feb 09 2022 Chris Co <chrco@microsoft.com> - 0.13.0-2
|
||||
- Disable building of shared libraries
|
||||
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"Signatures": {
|
||||
"cereal-1.3.2.tar.gz": "16a7ad9b31ba5880dac55d62b5d6f243c3ebc8d46a3514149e56b5e7ea81f85f"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,128 @@
|
|||
# Debuginfo packages are disabled to prevent rpmbuild from generating an empty
|
||||
# debuginfo package for the empty main package.
|
||||
%global debug_package %{nil}
|
||||
|
||||
Summary: A header-only C++11 serialization library
|
||||
Name: cereal
|
||||
Version: 1.3.2
|
||||
Release: 1%{?dist}
|
||||
License: BSD
|
||||
Vendor: Microsoft Corporation
|
||||
Distribution: Mariner
|
||||
URL: https://uscilab.github.io/cereal/
|
||||
Source0: https://github.com/USCiLab/cereal/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: boost-devel
|
||||
BuildRequires: cmake >= 3.0
|
||||
|
||||
%description
|
||||
cereal is a header-only C++11 serialization library. cereal takes arbitrary
|
||||
data types and reversibly turns them into different representations, such as
|
||||
compact binary encodings, XML, or JSON. cereal was designed to be fast,
|
||||
light-weight, and easy to extend - it has no external dependencies and can be
|
||||
easily bundled with other code or used standalone.
|
||||
|
||||
%package devel
|
||||
Summary: Development headers and libraries for %{name}
|
||||
Provides: %{name}-static = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
cereal is a header-only C++11 serialization library. cereal takes arbitrary
|
||||
data types and reversibly turns them into different representations, such as
|
||||
compact binary encodings, XML, or JSON. cereal was designed to be fast,
|
||||
light-weight, and easy to extend - it has no external dependencies and can be
|
||||
easily bundled with other code or used standalone.
|
||||
|
||||
This package contains development headers and libraries for the cereal library
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%cmake -DSKIP_PORTABILITY_TEST=ON -DWITH_WERROR=OFF
|
||||
%cmake_build
|
||||
|
||||
%install
|
||||
%cmake_install
|
||||
|
||||
%check
|
||||
%ctest --output-on-failure
|
||||
|
||||
%files devel
|
||||
%doc README.md
|
||||
%license LICENSE
|
||||
%{_includedir}/%{name}
|
||||
%dir %{_libdir}/cmake
|
||||
%{_libdir}/cmake/%{name}
|
||||
|
||||
%changelog
|
||||
* Tue Oct 04 2022 Muhammad Falak <mwani@microsoft.com> - 1.3.2-2
|
||||
- Initial CBL-Mariner import from Fedora 36 (license: MIT)
|
||||
- License verified
|
||||
|
||||
* Tue Mar 01 2022 Christoph Junghans <junghans@votca.org> - 1.3.2-1
|
||||
- Version bump v1.3.2 (bug #2059217)
|
||||
|
||||
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Tue Jan 18 2022 Christoph Junghans <junghans@votca.org> - 1.3.1-1
|
||||
- Version bump to v1.3.1 (bug #2041347)
|
||||
|
||||
* Fri Sep 17 2021 Christoph Junghans <junghans@votca.org> - 1.3.0-9
|
||||
- fix build on rawhide (bug #1987402) by updating bundled doctest.h
|
||||
|
||||
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.0-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.0-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Sat Oct 17 2020 Christoph Junghans <junghans@votca.org> - 1.3.0-6
|
||||
- Make package not noarch (bug #1888969)
|
||||
|
||||
* Mon Aug 03 2020 Christoph Junghans <junghans@votca.org> - 1.3.0-5
|
||||
- Fix out-of-source build on F33 (bug #1863317)
|
||||
|
||||
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.0-4
|
||||
- Second attempt - Rebuilt for
|
||||
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Sat Oct 26 2019 Christoph Junghans <junghans@votca.org> - 1.3.0-1
|
||||
- Version bump (bug #1765568)
|
||||
|
||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.2-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.2-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.2-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.2-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.2-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Wed Feb 15 2017 Christoph Junghans <junghans@votca.org> - 1.2.2-1
|
||||
- Update to v1.2.2 (bug #1422474)
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Sat Sep 03 2016 Christoph Junghans <junghans@votca.org> - 1.2.1-2
|
||||
- Minor changes from review (bug #1372403)
|
||||
|
||||
* Thu Sep 01 2016 Christoph Junghans <junghans@votca.org> - 1.2.1-1
|
||||
- First release.
|
|
@ -1097,8 +1097,8 @@
|
|||
"type": "other",
|
||||
"other": {
|
||||
"name": "bpftrace",
|
||||
"version": "0.13.0",
|
||||
"downloadUrl": "https://github.com/iovisor/bpftrace/archive/refs/tags/v0.13.0.tar.gz"
|
||||
"version": "0.16.0",
|
||||
"downloadUrl": "https://github.com/iovisor/bpftrace/archive/refs/tags/v0.16.0.tar.gz"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -1362,6 +1362,16 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"component": {
|
||||
"type": "other",
|
||||
"other": {
|
||||
"name": "cereal",
|
||||
"version": "1.3.2",
|
||||
"downloadUrl": "https://github.com/USCiLab/cereal/archive/v1.3.2.tar.gz"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"component": {
|
||||
"type": "other",
|
||||
|
|
Загрузка…
Ссылка в новой задаче