2021-03-20 07:55:39 +00:00
|
|
|
# git tag
|
|
|
|
#%%global commit 4f24f98960c223e56329519bb90a90f0b2ad813f
|
|
|
|
#%%global commitdate 20201120
|
|
|
|
#%%global shortcommit %%(c=%%{commit}; echo ${c:0:7})
|
|
|
|
|
|
|
|
# LTO causes linking issues randomly like
|
|
|
|
# lto1: internal compiler error: resolution sub id 0x7136344381f3059f not in object file
|
|
|
|
# So disabling LTO at this moment.
|
|
|
|
|
|
|
|
%global _lto_cflags %nil
|
|
|
|
|
|
|
|
Name: libtracefs
|
2021-04-19 13:32:52 +00:00
|
|
|
Version: 1.1.1
|
2022-01-20 17:26:54 +00:00
|
|
|
Release: 3%{?dist}
|
2021-03-20 07:55:39 +00:00
|
|
|
License: LGPLv2+ and GPLv2+
|
|
|
|
Summary: Library for access kernel tracefs
|
|
|
|
|
|
|
|
URL: https://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git/
|
|
|
|
# If upstream does not provide tarballs, to generate:
|
|
|
|
# git clone git://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git
|
|
|
|
# cd libtracefs
|
|
|
|
# git archive --prefix=libtracefs-%%{version}/ -o libtracefs-%%{version}.tar.gz %%{git_commit}
|
|
|
|
#Source0: libtracefs-%%{version}.tar.gz
|
|
|
|
#Source0: https://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git/snapshot/libtracefs-%%{commit}.tar.gz
|
|
|
|
Source0: https://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git/snapshot/libtracefs-%{version}.tar.gz
|
|
|
|
BuildRequires: gcc
|
|
|
|
BuildRequires: make
|
2021-04-19 13:32:52 +00:00
|
|
|
BuildRequires: pkgconfig(libtraceevent) >= 1.2
|
2021-03-20 07:55:39 +00:00
|
|
|
# The libtracefs is meant to be used by perf, trace-cmd etc. in the future, before it's ready in perf, let's add a conflict
|
2021-03-24 17:45:10 +00:00
|
|
|
Conflicts: trace-cmd < 2.9.1-6
|
2021-03-20 07:55:39 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
libtracefs is a library for accessing kernel tracefs
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development headers of %{name}
|
|
|
|
Requires: %{name}%{_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
Development headers of %{name}
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
%build
|
|
|
|
%set_build_flags
|
|
|
|
%make_build prefix=%{_prefix} libdir=%{_libdir} all
|
|
|
|
|
|
|
|
%install
|
|
|
|
%make_install prefix=%{_prefix} libdir=%{_libdir}
|
|
|
|
rm -rf %{buildroot}/%{_libdir}/libtracefs.a
|
|
|
|
|
|
|
|
%files
|
|
|
|
%license LICENSES/LGPL-2.1
|
|
|
|
%license LICENSES/GPL-2.0
|
|
|
|
%{_libdir}/%{name}.so.1
|
2021-04-19 13:32:52 +00:00
|
|
|
%{_libdir}/%{name}.so.1.1.1
|
2021-03-20 07:55:39 +00:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%{_includedir}/tracefs/tracefs.h
|
|
|
|
%{_libdir}/pkgconfig/%{name}.pc
|
|
|
|
%{_libdir}/%{name}.so
|
|
|
|
|
|
|
|
%changelog
|
2022-01-20 17:26:54 +00:00
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2021-07-22 12:34:39 +00:00
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-04-19 13:32:52 +00:00
|
|
|
* Mon Apr 19 2021 Zamir SUN <sztsian@gmail.com> - 1.1.1-1
|
|
|
|
- Update to 1.1.1
|
|
|
|
|
2021-03-24 17:45:10 +00:00
|
|
|
* Wed Mar 24 2021 Jerome Marchand <jmarchan@redhat.com> - 1.0.2-2
|
|
|
|
- Remove conflict for latest trace-cmd
|
|
|
|
|
2021-03-20 07:55:39 +00:00
|
|
|
* Mon Feb 08 2021 Zamir SUN <sztsian@gmail.com> - 1.0.2-1
|
|
|
|
- Update to 1.0.2
|
|
|
|
|
|
|
|
* Mon Nov 23 2020 Zamir SUN <sztsian@gmail.com> - 0-0.1.20201120git4f24f98
|
|
|
|
- Initial libtracefs
|
|
|
|
|