babeltrace/babeltrace.spec

210 lines
7.0 KiB
RPMSpec
Raw Normal View History

2013-01-17 22:19:42 +00:00
Name: babeltrace
2017-01-09 20:01:57 +00:00
Version: 1.5.1
Release: 2%{?dist}
2015-07-19 11:51:37 +00:00
Summary: Trace Viewer and Converter, mainly for the Common Trace Format
2013-01-17 22:19:42 +00:00
License: MIT and GPLv2
2016-06-21 19:01:02 +00:00
URL: https://www.efficios.com/babeltrace
Source0: https://www.efficios.com/files/%{name}/%{name}-%{version}.tar.bz2
2013-01-17 22:19:42 +00:00
Group: Development/Tools
2015-07-19 11:51:37 +00:00
2015-07-29 03:36:16 +00:00
BuildRequires: bison >= 2.4
BuildRequires: flex >= 2.5.35
BuildRequires: glib2-devel >= 2.22.0
2015-07-19 11:51:37 +00:00
BuildRequires: libuuid-devel
2015-07-29 03:36:16 +00:00
BuildRequires: popt-devel >= 1.13
BuildRequires: python3-devel
BuildRequires: swig >= 2.0
2016-06-21 19:01:02 +00:00
BuildRequires: elfutils-devel >= 0.154
2016-06-22 15:47:08 +00:00
BuildRequires: autoconf automake libtool
2015-07-19 11:51:37 +00:00
# For check
BuildRequires: perl-Test-Harness
2013-01-17 22:19:42 +00:00
Requires: lib%{name}%{?_isa} = %{version}-%{release}
%description
This project provides trace read and write libraries, as well as a trace
converter. A plugin can be created for any trace format to allow its conversion
to/from another trace format.
The main format expected to be converted to/from is the Common Trace
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
converter. A plugin can be created for any trace format to allow its conversion
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
This project provides trace read and write libraries, as well as a trace
converter. A plugin can be created for any trace format to allow its conversion
to/from another trace format.
2015-07-29 03:36:16 +00:00
%package -n python3-%{name}
Summary: Common Trace Format Babel Tower
Group: Development/Libraries
Requires: lib%{name}%{?_isa} = %{version}-%{release}
%description -n python3-%{name}
This project provides trace read and write libraries, as well as a trace
converter. A plugin can be created for any trace format to allow its conversion
to/from another trace format.
2013-01-17 22:19:42 +00:00
%prep
2015-07-19 11:51:37 +00:00
%setup -q
2013-01-17 22:19:42 +00:00
%build
2016-06-22 15:47:08 +00:00
# Reinitialize libtool with the fedora version to remove Rpath
autoreconf -vif
2015-07-29 03:36:16 +00:00
export PYTHON=%{__python3}
%configure --disable-static --enable-python-bindings
2013-01-17 22:19:42 +00:00
make %{?_smp_mflags} V=1
%check
make check
%install
make DESTDIR=%{buildroot} install
2015-07-19 11:51:37 +00:00
find %{buildroot} -type f -name "*.la" -delete
2015-07-29 03:36:16 +00:00
# Clean installed doc
rm -f %{buildroot}/%{_pkgdocdir}/API.txt
rm -f %{buildroot}/%{_pkgdocdir}/LICENSE
rm -f %{buildroot}/%{_pkgdocdir}/gpl-2.0.txt
rm -f %{buildroot}/%{_pkgdocdir}/mit-license.txt
rm -f %{buildroot}/%{_pkgdocdir}/std-ext-lib.txt
2013-01-17 22:19:42 +00:00
%post -n lib%{name} -p /sbin/ldconfig
%postun -n lib%{name} -p /sbin/ldconfig
%files
2015-07-19 11:51:37 +00:00
%doc ChangeLog
2015-07-29 03:36:16 +00:00
%doc doc/lttng-live.txt
2013-01-17 22:19:42 +00:00
%{_bindir}/%{name}*
%{_mandir}/man1/*.1*
%files -n lib%{name}
2015-07-29 03:36:16 +00:00
%doc doc/API.txt
%doc std-ext-lib.txt
2015-07-19 11:51:37 +00:00
%{!?_licensedir:%global license %%doc}
%license LICENSE gpl-2.0.txt mit-license.txt
2013-01-17 22:19:42 +00:00
%{_libdir}/*.so.*
%files -n lib%{name}-devel
%{_prefix}/include/*
%{_libdir}/*.so
2013-02-26 22:29:01 +00:00
%{_libdir}/pkgconfig/babeltrace.pc
%{_libdir}/pkgconfig/babeltrace-ctf.pc
2013-01-17 22:19:42 +00:00
2015-07-29 03:36:16 +00:00
%files -n python3-%{name}
2016-06-21 19:01:02 +00:00
%{python3_sitearch}/babeltrace.py
%{python3_sitearch}/__pycache__/*
2015-07-29 03:36:16 +00:00
%{python3_sitearch}/
2013-01-17 22:19:42 +00:00
%changelog
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
2017-01-09 20:01:57 +00:00
* Mon Jan 09 2017 Michael Jeanson <mjeanson@efficios.com> - 1.5.1-1
- New upstream release
2016-12-19 17:20:36 +00:00
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 1.5.0-2
- Rebuild for Python 3.6
2016-11-30 23:10:57 +00:00
* Wed Nov 30 2016 Michael Jeanson <mjeanson@efficios.com> - 1.5.0-1
- New upstream release
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.0-3
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
2016-06-22 15:47:08 +00:00
* Wed Jun 22 2016 Michael Jeanson <mjeanson@efficios.com> - 1.4.0-2
- Re-add rpath removing
2016-06-21 19:01:02 +00:00
* Tue Jun 21 2016 Michael Jeanson <mjeanson@efficios.com> - 1.4.0-1
- New upstream release
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.4-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.4-3
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
2015-07-29 03:36:16 +00:00
* Tue Jul 28 2015 Michael Jeanson <mjeanson@gmail.com> - 1.2.4-2
- Added python3 bindings module
2015-07-19 12:14:34 +00:00
* Sun Jul 19 2015 Peter Robinson <pbrobinson@fedoraproject.org> 1.2.4.1
- Update to 1.2.4
2015-07-19 11:51:37 +00:00
* Sun Jul 19 2015 Peter Robinson <pbrobinson@fedoraproject.org> 1.2.1-5
- Fix FTBFS, use %%license
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.1-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2014-03-28 05:36:21 +00:00
* Thu Mar 27 2014 Yannick Brosseau <yannick.brosseau@gmail.com> - 1.2.1-1
- New upstream release
* Sat Mar 01 2014 Suchakra Sharma <suchakra@fedoraproject.org> - 1.2.0-1
- New upstream release
- Popt patch for babeltrace.pc.in removed. Its fixed in Fedora now
- Add new file (babeltrace-ctf.pc)
* Mon Aug 05 2013 Yannick Brosseau <yannick.brosseau@gmail.com> - 1.1.1-3
- Remove reference to versionned docdir (#992011)
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2013-07-22 18:43:00 +00:00
* Mon Jul 22 2013 Yannick Brosseau <yannick.brosseau@gmail.com> - 1.1.1-1
- New upstream bugfix release
2013-05-28 19:09:20 +00:00
* Tue May 28 2013 Yannick Brosseau <yannick.brosseau@gmail.com> - 1.1.0-1
- New upstream release
- Patch babeltrace.pc to not depends on popt.pc, as it does not exist in Fedora
2013-02-26 22:29:01 +00:00
* Tue Feb 26 2013 Yannick Brosseau <yannick.brosseau@gmail.com> - 1.0.3-1
- New upstream release
- Add pkg-config file to devel package (#913895)
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
2013-01-18 05:56:12 +00:00
* Fri Jan 18 2013 Yannick Brosseau <yannick.brosseau@gmail.com> - 1.0.2-1
- New upstream release
2013-01-17 22:19:42 +00:00
* Tue Jan 15 2013 Yannick Brosseau <yannick.brosseau@gmail.com> - 1.0.0-3
- Change documentation directory to proper versionned one.
* Mon Jan 14 2013 Yannick Brosseau <yannick.brosseau@gmail.com> - 1.0.0-2
- Use autoreconf rpath fix because the sed one was breaking the make check
- Use correct tar file version
- Package documentations in the right packages
* Mon Oct 29 2012 Yannick Brosseau <yannick.brosseau@gmail.com> - 1.0.0-1
- New upstream release
* Tue Oct 02 2012 Yannick Brosseau <yannick.brosseau@gmail.com> - 1.0.0-0.1.rc5
- New upstream release candidate
* Thu Jul 05 2012 Yannick Brosseau <yannick.brosseau@gmail.com> - 1.0.0-0.1.rc4
- New package, inspired by the one from OpenSuse