|
|
|
@ -1,11 +1,15 @@
|
|
|
|
|
Name: babeltrace
|
|
|
|
|
Version: 1.5.4
|
|
|
|
|
Release: 4%{?dist}
|
|
|
|
|
Version: 1.5.8
|
|
|
|
|
Release: 10%{?dist}
|
|
|
|
|
Summary: Trace Viewer and Converter, mainly for the Common Trace Format
|
|
|
|
|
License: MIT and GPLv2
|
|
|
|
|
URL: https://www.efficios.com/babeltrace
|
|
|
|
|
Source0: https://www.efficios.com/files/%{name}/%{name}-%{version}.tar.bz2
|
|
|
|
|
Group: Development/Tools
|
|
|
|
|
Source1: https://www.efficios.com/files/%{name}/%{name}-%{version}.tar.bz2.asc
|
|
|
|
|
# gpg2 --export --export-options export-minimal 7F49314A26E0DE78427680E05F1B2A0789F12B11 > gpgkey-7F49314A26E0DE78427680E05F1B2A0789F12B11.gpg
|
|
|
|
|
Source2: gpgkey-7F49314A26E0DE78427680E05F1B2A0789F12B11.gpg
|
|
|
|
|
Patch0: python39.patch
|
|
|
|
|
Patch1: babeltrace-getaddrinfo.patch
|
|
|
|
|
|
|
|
|
|
BuildRequires: bison >= 2.4
|
|
|
|
|
BuildRequires: flex >= 2.5.35
|
|
|
|
@ -16,8 +20,9 @@ BuildRequires: python3-devel
|
|
|
|
|
BuildRequires: swig >= 2.0
|
|
|
|
|
BuildRequires: elfutils-devel >= 0.154
|
|
|
|
|
BuildRequires: autoconf automake libtool
|
|
|
|
|
# For check
|
|
|
|
|
BuildRequires: perl-Test-Harness
|
|
|
|
|
BuildRequires: gnupg2
|
|
|
|
|
BuildRequires: make
|
|
|
|
|
|
|
|
|
|
Requires: lib%{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
@ -31,7 +36,6 @@ Format (CTF). See http://www.efficios.com/ctf.
|
|
|
|
|
|
|
|
|
|
%package -n lib%{name}
|
|
|
|
|
Summary: Common Trace Format Babel Tower
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
|
|
|
|
|
%description -n lib%{name}
|
|
|
|
|
This project provides trace read and write libraries, as well as a trace
|
|
|
|
@ -41,7 +45,6 @@ to/from another trace format.
|
|
|
|
|
|
|
|
|
|
%package -n lib%{name}-devel
|
|
|
|
|
Summary: Common Trace Format Babel Tower
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
Requires: lib%{name}%{?_isa} = %{version}-%{release} glib2-devel
|
|
|
|
|
|
|
|
|
|
%description -n lib%{name}-devel
|
|
|
|
@ -52,7 +55,6 @@ to/from another trace format.
|
|
|
|
|
|
|
|
|
|
%package -n python3-%{name}
|
|
|
|
|
Summary: Common Trace Format Babel Tower
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
Requires: lib%{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%description -n python3-%{name}
|
|
|
|
@ -62,7 +64,8 @@ to/from another trace format.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q
|
|
|
|
|
%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
|
|
|
|
|
%autosetup -p1
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
# Reinitialize libtool with the fedora version to remove Rpath
|
|
|
|
@ -87,8 +90,7 @@ rm -f %{buildroot}/%{_pkgdocdir}/gpl-2.0.txt
|
|
|
|
|
rm -f %{buildroot}/%{_pkgdocdir}/mit-license.txt
|
|
|
|
|
rm -f %{buildroot}/%{_pkgdocdir}/std-ext-lib.txt
|
|
|
|
|
|
|
|
|
|
%post -n lib%{name} -p /sbin/ldconfig
|
|
|
|
|
%postun -n lib%{name} -p /sbin/ldconfig
|
|
|
|
|
%ldconfig_scriptlets -n lib%{name}
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%doc ChangeLog
|
|
|
|
@ -115,11 +117,75 @@ rm -f %{buildroot}/%{_pkgdocdir}/std-ext-lib.txt
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Wed Mar 2 2022 Bruno Larsen <blarsen@redhat.com> - 1.5.4-4
|
|
|
|
|
- Bump NVR for subpackage release.
|
|
|
|
|
* Wed Mar 16 2022 Bruno Larsen <blarsen@redhat.com> - 1.5.8-10
|
|
|
|
|
- Use getaddrinfo instead of gethostbyname.
|
|
|
|
|
(Keith Seitz)
|
|
|
|
|
|
|
|
|
|
* Tue Mar 15 2022 Bruno Larsen <blarsen@redhat.com> - 1.6.8-9
|
|
|
|
|
- Bumped NVR to release subpackage
|
|
|
|
|
Related: rhbz#2058409
|
|
|
|
|
|
|
|
|
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.5.8-8
|
|
|
|
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
|
|
|
Related: rhbz#1991688
|
|
|
|
|
|
|
|
|
|
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 1.5.8-7
|
|
|
|
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
|
|
|
|
|
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.8-6
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Nov 16 2020 Keith Seitz <keiths@redhat.com> - 1.5.8-5
|
|
|
|
|
- Remove workaround for 1890813 now that binutils is fixed.
|
|
|
|
|
|
|
|
|
|
* Mon Oct 26 2020 Keith Seitz <keiths@redhat.com> - 1.5.8-4
|
|
|
|
|
- Workaround __openat_missing_mode compiler error.
|
|
|
|
|
(Keith Seitz, RH BZ 1890813)
|
|
|
|
|
|
|
|
|
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.8-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 1.5.8-2
|
|
|
|
|
- Rebuilt for Python 3.9
|
|
|
|
|
|
|
|
|
|
* Wed Feb 12 2020 Michael Jeanson <mjeanson@efficios.com> - 1.5.8-1
|
|
|
|
|
- New upstream release
|
|
|
|
|
|
|
|
|
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.7-6
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Thu Jan 16 2020 Michael Jeanson <mjeanson@efficios.com> - 1.5.7-5
|
|
|
|
|
- Add Python 3.9 patch
|
|
|
|
|
|
|
|
|
|
* Wed Jul 1 2020 Keith Seitz <keiths@redhat.com> - 1.5.4-3
|
|
|
|
|
- Bump NVR for BaseOS move.
|
|
|
|
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 1.5.7-4
|
|
|
|
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
|
|
|
|
|
|
|
|
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 1.5.7-3
|
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
|
|
|
|
|
* Wed Jul 24 2019 Michael Jeanson <mjeanson@efficios.com> - 1.5.7-2
|
|
|
|
|
- Add GPG source file verification
|
|
|
|
|
|
|
|
|
|
* Wed Jul 24 2019 Michael Jeanson <mjeanson@efficios.com> - 1.5.7-1
|
|
|
|
|
- New upstream release
|
|
|
|
|
|
|
|
|
|
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.6-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.6-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Jul 24 2018 Michael Jeanson <mjeanson@efficios.com> - 1.5.6-1
|
|
|
|
|
- New upstream release
|
|
|
|
|
|
|
|
|
|
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.5-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 1.5.5-2
|
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
|
|
|
|
|
* Tue Mar 27 2018 Michael Jeanson <mjeanson@efficios.com> - 1.5.5-1
|
|
|
|
|
- New upstream release
|
|
|
|
|
|
|
|
|
|
* Fri Feb 16 2018 2018 Lumír Balhar <lbalhar@redhat.com> - 1.5.4-2
|
|
|
|
|
- Fix directory ownership in python3 subpackage
|
|
|
|
|