Blame SPECS/bpftrace.spec

295890
%bcond_without llvm_static
295890
295890
Name:           bpftrace
295890
Version:        0.9
295890
Release:        2%{?dist}
295890
Summary:        High-level tracing language for Linux eBPF
295890
License:        ASL 2.0
295890
295890
URL:            https://github.com/iovisor/bpftrace
295890
Source0:        %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
295890
Patch0:         %{name}-%{version}-clang_parser-pass-BPFtrace-as-arg-instead-of-StructM.patch
295890
Patch1:         %{name}-%{version}-clang_parser-fix-clang_parser-for-LLVM-8.patch
295890
Patch2:         %{name}-%{version}-fix-struct-definition-from-headers.patch
295890
Patch3:         %{name}-%{version}-RHEL-8-fixes.patch
295890
295890
# Arches will be included as upstream support is added and dependencies are
295890
# satisfied in the respective arches
295890
ExclusiveArch:  x86_64 %{power64} aarch64 s390x
295890
295890
BuildRequires:  gcc-c++
295890
BuildRequires:  bison
295890
BuildRequires:  flex
295890
BuildRequires:  cmake
295890
BuildRequires:  elfutils-libelf-devel
295890
BuildRequires:  zlib-devel
295890
BuildRequires:  llvm-devel
295890
BuildRequires:  clang-devel
295890
BuildRequires:  bcc-devel
295890
295890
%if %{with llvm_static}
295890
BuildRequires:  llvm-static
295890
%endif
295890
295890
%description
295890
BPFtrace is a high-level tracing language for Linux enhanced Berkeley Packet
295890
Filter (eBPF) available in recent Linux kernels (4.x). BPFtrace uses LLVM as a
295890
backend to compile scripts to BPF-bytecode and makes use of BCC for
295890
interacting with the Linux BPF system, as well as existing Linux tracing
295890
capabilities: kernel dynamic tracing (kprobes), user-level dynamic tracing
295890
(uprobes), and tracepoints. The BPFtrace language is inspired by awk and C,
295890
and predecessor tracers such as DTrace and SystemTap
295890
295890
295890
%prep
295890
%autosetup -p1
295890
295890
295890
%build
295890
%cmake . \
295890
        -DCMAKE_BUILD_TYPE=RelWithDebInfo \
295890
        -DBUILD_TESTING:BOOL=OFF \
295890
        -DBUILD_SHARED_LIBS:BOOL=OFF \
295890
        -DLLVM_DIR=/usr/lib64/llvm7.0/lib/cmake/llvm/
295890
%make_build
295890
295890
295890
%install
295890
%make_install
295890
295890
# Fix shebangs (https://fedoraproject.org/wiki/Packaging:Guidelines#Shebang_lines)
295890
find %{buildroot}%{_datadir}/%{name}/tools -type f -exec \
295890
  sed -i -e '1s=^#!/usr/bin/env %{name}\([0-9.]\+\)\?$=#!%{_bindir}/%{name}=' {} \;
295890
295890
# Move man pages to the right location
295890
mkdir -p %{buildroot}%{_mandir}
295890
mv %{buildroot}%{_prefix}/man/* %{buildroot}%{_mandir}/
295890
295890
295890
%files
295890
%doc README.md CONTRIBUTING-TOOLS.md
295890
%doc docs/reference_guide.md docs/tutorial_one_liners.md
295890
%license LICENSE
295890
%dir %{_datadir}/%{name}
295890
%dir %{_datadir}/%{name}/tools
295890
%dir %{_datadir}/%{name}/tools/doc
295890
%{_bindir}/%{name}
295890
%{_mandir}/man8/*
295890
%attr(0755,-,-) %{_datadir}/%{name}/tools/*.bt
295890
%{_datadir}/%{name}/tools/doc/*.txt
295890
295890
295890
%changelog
295890
* Wed Jun 12 2019 Jerome Marchand <jmarchan@redhat.com> - 0.9.2
295890
- Fixes gethostlatency
295890
- Fixes a struct definition issue that made several tools fail
295890
- Add CI gating
295890
295890
* Wed May 15 2019 Jerome Marchand <jmarchan@redhat.com> - 0.9.1
295890
- Original build on RHEL 8
295890
295890
* Thu Apr 25 2019 Augusto Caringi <acaringi@redhat.com> - 0.9-3
295890
- Rebuilt for bcc 0.9.0
295890
295890
* Mon Apr 22 2019 Neal Gompa <ngompa@datto.com> - 0.9-2
295890
- Fix Source0 reference
295890
- Use make_build macro for calling make
295890
295890
* Mon Apr  1 2019 Peter Robinson <pbrobinson@fedoraproject.org> 0.9-1
295890
- Build on aarch64 and s390x
295890
295890
* Mon Mar 25 2019 Augusto Caringi <acaringi@redhat.com> - 0.9-0
295890
- Updated to version 0.9
295890
295890
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.0-2.20181210gitc49b333
295890
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
295890
295890
* Mon Dec 10 2018 Augusto Caringi <acaringi@redhat.com> - 0.0-1.20181210gitc49b333
295890
- Updated to latest upstream (c49b333c034a6d29a7ce90f565e27da1061af971)
295890
295890
* Wed Nov 07 2018 Augusto Caringi <acaringi@redhat.com> - 0.0-1.20181107git029717b
295890
- Initial import