2021-02-18 17:19:44 +00:00
|
|
|
# We don't want to bring luajit in RHEL
|
|
|
|
%if 0%{?rhel} > 0
|
|
|
|
%bcond_with lua
|
|
|
|
%else
|
2017-10-24 19:35:31 +00:00
|
|
|
# luajit is not available for some architectures
|
2019-03-19 11:15:46 +00:00
|
|
|
%ifarch ppc64 ppc64le s390x
|
2017-11-01 09:32:53 +00:00
|
|
|
%bcond_with lua
|
2017-10-24 19:35:31 +00:00
|
|
|
%else
|
2017-11-01 09:32:53 +00:00
|
|
|
%bcond_without lua
|
2017-10-24 19:35:31 +00:00
|
|
|
%endif
|
2021-02-18 17:19:44 +00:00
|
|
|
%endif
|
2017-10-24 19:35:31 +00:00
|
|
|
|
2021-03-21 23:03:22 +00:00
|
|
|
%ifarch x86_64 ppc64 ppc64le aarch64
|
|
|
|
%bcond_without libbpf_tools
|
|
|
|
%else
|
|
|
|
%bcond_with libbpf_tools
|
|
|
|
%endif
|
|
|
|
|
2020-07-09 18:24:30 +00:00
|
|
|
%bcond_with llvm_static
|
|
|
|
|
|
|
|
%if %{without llvm_static}
|
|
|
|
%global with_llvm_shared 1
|
|
|
|
%endif
|
2018-08-16 11:54:29 +00:00
|
|
|
|
2020-08-04 08:51:20 +00:00
|
|
|
# Force out of source build
|
|
|
|
%undefine __cmake_in_source_build
|
|
|
|
|
2017-11-01 06:49:45 +00:00
|
|
|
Name: bcc
|
2021-05-18 08:47:49 +00:00
|
|
|
Version: 0.20.0
|
2021-06-04 18:00:13 +00:00
|
|
|
Release: 4%{?dist}
|
2017-11-01 06:49:45 +00:00
|
|
|
Summary: BPF Compiler Collection (BCC)
|
|
|
|
License: ASL 2.0
|
|
|
|
URL: https://github.com/iovisor/bcc
|
2021-05-18 10:02:20 +00:00
|
|
|
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
|
2020-01-02 22:14:19 +00:00
|
|
|
|
2017-01-10 15:38:08 +00:00
|
|
|
# Arches will be included as upstream support is added and dependencies are
|
|
|
|
# satisfied in the respective arches
|
2020-08-28 15:15:38 +00:00
|
|
|
ExclusiveArch: x86_64 %{power64} aarch64 s390x armv7hl
|
2017-01-10 15:38:08 +00:00
|
|
|
|
2019-04-22 18:53:55 +00:00
|
|
|
BuildRequires: bison
|
|
|
|
BuildRequires: cmake >= 2.8.7
|
|
|
|
BuildRequires: flex
|
|
|
|
BuildRequires: libxml2-devel
|
2017-11-01 06:49:45 +00:00
|
|
|
BuildRequires: python3-devel
|
2017-10-24 19:35:31 +00:00
|
|
|
BuildRequires: elfutils-libelf-devel
|
2019-04-22 18:53:55 +00:00
|
|
|
BuildRequires: llvm-devel
|
|
|
|
BuildRequires: clang-devel
|
2018-08-16 11:54:29 +00:00
|
|
|
%if %{with llvm_static}
|
2019-04-22 18:53:55 +00:00
|
|
|
BuildRequires: llvm-static
|
2018-08-16 11:54:29 +00:00
|
|
|
%endif
|
2017-11-01 06:49:45 +00:00
|
|
|
BuildRequires: ncurses-devel
|
2017-11-01 09:32:53 +00:00
|
|
|
%if %{with lua}
|
2019-04-22 18:53:55 +00:00
|
|
|
BuildRequires: pkgconfig(luajit)
|
2017-10-24 19:35:31 +00:00
|
|
|
%endif
|
2019-12-04 09:15:35 +00:00
|
|
|
BuildRequires: libbpf-devel >= 0.0.5-3, libbpf-static >= 0.0.5-3
|
2017-01-10 15:38:08 +00:00
|
|
|
|
2019-12-04 09:15:35 +00:00
|
|
|
Requires: libbpf >= 0.0.5-3
|
2021-04-30 09:11:31 +00:00
|
|
|
Requires: tar
|
2021-05-04 14:20:57 +00:00
|
|
|
Recommends: kernel-devel
|
2017-01-10 15:38:08 +00:00
|
|
|
|
2021-06-02 12:17:32 +00:00
|
|
|
Recommends: %{name}-tools = %{version}-%{release}
|
|
|
|
|
2017-01-10 15:38:08 +00:00
|
|
|
%description
|
|
|
|
BCC is a toolkit for creating efficient kernel tracing and manipulation
|
|
|
|
programs, and includes several useful tools and examples. It makes use of
|
|
|
|
extended BPF (Berkeley Packet Filters), formally known as eBPF, a new feature
|
|
|
|
that was first added to Linux 3.15. BCC makes BPF programs easier to write,
|
|
|
|
with kernel instrumentation in C (and includes a C wrapper around LLVM), and
|
|
|
|
front-ends in Python and lua. It is suited for many tasks, including
|
|
|
|
performance analysis and network traffic control.
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
2017-11-01 06:49:45 +00:00
|
|
|
Summary: Shared library for BPF Compiler Collection (BCC)
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2017-01-10 15:38:08 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
The %{name}-devel package contains libraries and header files for developing
|
|
|
|
application that use BPF Compiler Collection (BCC).
|
|
|
|
|
|
|
|
|
|
|
|
%package doc
|
2017-11-01 06:49:45 +00:00
|
|
|
Summary: Examples for BPF Compiler Collection (BCC)
|
2017-11-03 09:53:03 +00:00
|
|
|
Recommends: python3-%{name} = %{version}-%{release}
|
|
|
|
Recommends: %{name}-lua = %{version}-%{release}
|
2017-11-01 06:49:45 +00:00
|
|
|
BuildArch: noarch
|
2017-01-10 15:38:08 +00:00
|
|
|
|
|
|
|
%description doc
|
|
|
|
Examples for BPF Compiler Collection (BCC)
|
|
|
|
|
|
|
|
|
|
|
|
%package -n python3-%{name}
|
2017-11-01 06:49:45 +00:00
|
|
|
Summary: Python3 bindings for BPF Compiler Collection (BCC)
|
2019-04-22 18:53:55 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
BuildArch: noarch
|
2017-01-10 15:38:08 +00:00
|
|
|
%{?python_provide:%python_provide python3-%{srcname}}
|
|
|
|
|
|
|
|
%description -n python3-%{name}
|
|
|
|
Python3 bindings for BPF Compiler Collection (BCC)
|
|
|
|
|
|
|
|
|
2017-11-01 09:32:53 +00:00
|
|
|
%if %{with lua}
|
2017-01-10 15:38:08 +00:00
|
|
|
%package lua
|
2017-11-01 06:49:45 +00:00
|
|
|
Summary: Standalone tool to run BCC tracers written in Lua
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2017-01-10 15:38:08 +00:00
|
|
|
|
|
|
|
%description lua
|
|
|
|
Standalone tool to run BCC tracers written in Lua
|
2017-10-24 19:35:31 +00:00
|
|
|
%endif
|
2017-01-10 15:38:08 +00:00
|
|
|
|
2017-03-08 14:45:18 +00:00
|
|
|
|
2017-01-10 15:38:08 +00:00
|
|
|
%package tools
|
2017-11-01 06:49:45 +00:00
|
|
|
Summary: Command line tools for BPF Compiler Collection (BCC)
|
|
|
|
Requires: python3-%{name} = %{version}-%{release}
|
|
|
|
Requires: python3-netaddr
|
2017-01-10 15:38:08 +00:00
|
|
|
|
|
|
|
%description tools
|
|
|
|
Command line tools for BPF Compiler Collection (BCC)
|
|
|
|
|
2021-03-21 23:03:22 +00:00
|
|
|
%if %{with libbpf_tools}
|
|
|
|
%package -n libbpf-tools
|
|
|
|
Summary: Command line libbpf tools for BPF Compiler Collection (BCC)
|
|
|
|
BuildRequires: libbpf-devel >= 0.0.5-3, libbpf-static >= 0.0.5-3
|
|
|
|
BuildRequires: bpftool
|
|
|
|
|
|
|
|
%description -n libbpf-tools
|
|
|
|
Command line libbpf tools for BPF Compiler Collection (BCC)
|
|
|
|
%endif
|
2017-03-08 14:45:18 +00:00
|
|
|
|
2017-01-10 15:38:08 +00:00
|
|
|
%prep
|
2021-05-18 10:02:20 +00:00
|
|
|
%autosetup -p1
|
2017-01-10 15:38:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
%build
|
2017-10-24 19:35:31 +00:00
|
|
|
%cmake . \
|
2017-11-01 09:33:14 +00:00
|
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
2018-08-16 11:54:29 +00:00
|
|
|
-DREVISION_LAST=%{version} -DREVISION=%{version} -DPYTHON_CMD=python3 \
|
2019-12-04 09:15:35 +00:00
|
|
|
-DCMAKE_USE_LIBBPF_PACKAGE:BOOL=TRUE \
|
2018-08-16 11:54:29 +00:00
|
|
|
%{?with_llvm_shared:-DENABLE_LLVM_SHARED=1}
|
2020-08-04 08:51:20 +00:00
|
|
|
%cmake_build
|
2017-01-10 15:38:08 +00:00
|
|
|
|
2021-03-21 23:03:22 +00:00
|
|
|
# It was discussed and agreed to package libbpf-tools with
|
|
|
|
# 'bpf-' prefix (https://github.com/iovisor/bcc/pull/3263)
|
|
|
|
# Installing libbpf-tools binaries in temp directory and
|
|
|
|
# renaming them in there and the install code will just
|
|
|
|
# take them.
|
|
|
|
%if %{with libbpf_tools}
|
|
|
|
pushd libbpf-tools;
|
2021-05-18 10:02:20 +00:00
|
|
|
make BPFTOOL=bpftool LIBBPF_OBJ=%{_libdir}/libbpf.a
|
2021-03-21 23:03:22 +00:00
|
|
|
make DESTDIR=./tmp-install prefix= install
|
|
|
|
(cd tmp-install/bin; for file in *; do mv $file bpf-$file; done;)
|
|
|
|
popd
|
|
|
|
%endif
|
2017-01-10 15:38:08 +00:00
|
|
|
|
|
|
|
%install
|
2020-08-04 08:51:20 +00:00
|
|
|
%cmake_install
|
2017-01-10 15:38:08 +00:00
|
|
|
|
|
|
|
# Fix python shebangs
|
2018-08-16 11:54:29 +00:00
|
|
|
find %{buildroot}%{_datadir}/%{name}/{tools,examples} -type f -exec \
|
|
|
|
sed -i -e '1s=^#!/usr/bin/python\([0-9.]\+\)\?$=#!%{__python3}=' \
|
2018-08-22 11:33:31 +00:00
|
|
|
-e '1s=^#!/usr/bin/env python\([0-9.]\+\)\?$=#!%{__python3}=' \
|
2018-08-16 11:54:29 +00:00
|
|
|
-e '1s=^#!/usr/bin/env bcc-lua$=#!/usr/bin/bcc-lua=' {} \;
|
2017-01-10 15:38:08 +00:00
|
|
|
|
2017-10-24 19:35:31 +00:00
|
|
|
# Move man pages to the right location
|
2017-11-01 09:33:25 +00:00
|
|
|
mkdir -p %{buildroot}%{_mandir}
|
2017-11-01 09:39:42 +00:00
|
|
|
mv %{buildroot}%{_datadir}/%{name}/man/* %{buildroot}%{_mandir}/
|
2017-11-27 13:15:47 +00:00
|
|
|
# Avoid conflict with other manpages
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1517408
|
2018-08-16 11:54:29 +00:00
|
|
|
for i in `find %{buildroot}%{_mandir} -name "*.gz"`; do
|
2017-11-27 13:15:47 +00:00
|
|
|
tname=$(basename $i)
|
|
|
|
rename $tname %{name}-$tname $i
|
|
|
|
done
|
2017-11-01 09:33:25 +00:00
|
|
|
mkdir -p %{buildroot}%{_docdir}/%{name}
|
|
|
|
mv %{buildroot}%{_datadir}/%{name}/examples %{buildroot}%{_docdir}/%{name}/
|
2017-01-10 15:38:08 +00:00
|
|
|
|
2019-04-22 18:53:55 +00:00
|
|
|
# Delete old tools we don't want to ship
|
|
|
|
rm -rf %{buildroot}%{_datadir}/%{name}/tools/old/
|
|
|
|
|
2017-01-10 15:38:08 +00:00
|
|
|
# We cannot run the test suit since it requires root and it makes changes to
|
|
|
|
# the machine (e.g, IP address)
|
|
|
|
#%check
|
|
|
|
|
2021-03-21 23:03:22 +00:00
|
|
|
%if %{with libbpf_tools}
|
|
|
|
mkdir -p %{buildroot}/%{_sbindir}
|
|
|
|
install libbpf-tools/tmp-install/bin/* %{buildroot}/%{_sbindir}
|
|
|
|
%endif
|
|
|
|
|
2018-02-02 09:47:17 +00:00
|
|
|
%ldconfig_scriptlets
|
2017-01-10 15:38:08 +00:00
|
|
|
|
|
|
|
%files
|
|
|
|
%doc README.md
|
2018-08-16 11:54:29 +00:00
|
|
|
%license LICENSE.txt
|
2017-01-10 15:38:08 +00:00
|
|
|
%{_libdir}/lib%{name}.so.*
|
2019-04-25 10:31:36 +00:00
|
|
|
%{_libdir}/libbcc_bpf.so.*
|
2017-01-10 15:38:08 +00:00
|
|
|
|
|
|
|
%files devel
|
2020-02-26 21:46:32 +00:00
|
|
|
%exclude %{_libdir}/lib%{name}*.a
|
|
|
|
%exclude %{_libdir}/lib%{name}*.la
|
2017-01-10 15:38:08 +00:00
|
|
|
%{_libdir}/lib%{name}.so
|
2019-04-25 10:31:36 +00:00
|
|
|
%{_libdir}/libbcc_bpf.so
|
2017-01-10 15:38:08 +00:00
|
|
|
%{_libdir}/pkgconfig/lib%{name}.pc
|
2017-03-30 14:43:56 +00:00
|
|
|
%{_includedir}/%{name}/
|
2017-01-10 15:38:08 +00:00
|
|
|
|
|
|
|
%files -n python3-%{name}
|
|
|
|
%{python3_sitelib}/%{name}*
|
|
|
|
|
|
|
|
%files doc
|
2017-10-24 19:35:31 +00:00
|
|
|
%dir %{_docdir}/%{name}
|
|
|
|
%doc %{_docdir}/%{name}/examples/
|
2017-01-10 15:38:08 +00:00
|
|
|
|
|
|
|
%files tools
|
|
|
|
%dir %{_datadir}/%{name}
|
2019-04-22 18:53:55 +00:00
|
|
|
%{_datadir}/%{name}/tools/
|
|
|
|
%{_datadir}/%{name}/introspection/
|
2017-10-24 19:35:31 +00:00
|
|
|
%{_mandir}/man8/*
|
2017-01-10 15:38:08 +00:00
|
|
|
|
2017-11-01 09:32:53 +00:00
|
|
|
%if %{with lua}
|
2017-01-10 15:38:08 +00:00
|
|
|
%files lua
|
|
|
|
%{_bindir}/bcc-lua
|
2017-10-24 19:35:31 +00:00
|
|
|
%endif
|
2017-01-10 15:38:08 +00:00
|
|
|
|
2021-03-21 23:03:22 +00:00
|
|
|
%if %{with libbpf_tools}
|
|
|
|
%files -n libbpf-tools
|
|
|
|
%{_sbindir}/bpf-*
|
|
|
|
%endif
|
2017-01-10 15:38:08 +00:00
|
|
|
|
|
|
|
%changelog
|
2021-06-04 18:00:13 +00:00
|
|
|
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 0.20.0-4
|
|
|
|
- Rebuilt for Python 3.10
|
|
|
|
|
2021-06-02 12:17:32 +00:00
|
|
|
* Wed Jun 02 2021 Rafael dos Santos <rdossant@redhat.com> - 0.20.0-3
|
|
|
|
- Don't require bcc-tools by default (#1966953)
|
|
|
|
|
2021-05-18 10:02:20 +00:00
|
|
|
* Tue May 18 2021 Jerome Marchand <jmarchan@redhat.com> - 0.20.0-2
|
|
|
|
- Build bcc from standard sources
|
|
|
|
|
2021-05-18 08:47:49 +00:00
|
|
|
* Mon May 17 2021 Rafael dos Santos <rdossant@redhat.com> - 0.20.0-1
|
|
|
|
- Rebase to latest upstream (#1957727)
|
|
|
|
|
2021-05-11 15:30:34 +00:00
|
|
|
* Tue May 11 2021 Jeff Law <jlaw@tachyum.com> - 0.19.0-6
|
|
|
|
- Re-enable LTO
|
|
|
|
|
2021-05-04 14:20:57 +00:00
|
|
|
* Tue May 04 2021 Jiri Olsa <jolsa@redhat.com> - 0.19.0-5
|
|
|
|
- Keeping kernel-devel as weak dependency, resolves #1955154
|
|
|
|
|
2021-04-30 09:11:31 +00:00
|
|
|
* Fri Apr 30 2021 Jiri Olsa <jolsa@redhat.com> - 0.19.0-4
|
|
|
|
- Removing kernel-devel dependency, resolves #1955154
|
|
|
|
|
2021-04-27 16:53:34 +00:00
|
|
|
* Tue Apr 27 2021 Rafael dos Santos <rdossant@redhat.com> - 0.19.0-3
|
|
|
|
- Resolves #1869006
|
|
|
|
|
2021-03-21 23:03:22 +00:00
|
|
|
* Wed Mar 29 2021 Jiri Olsa <jolsa@redhat.com> - 0.19.0-2
|
|
|
|
- add libbpf-tools package
|
|
|
|
|
2021-03-22 14:03:56 +00:00
|
|
|
* Mon Mar 29 2021 Jiri Olsa <jolsa@redhat.com> - 0.19.0-1
|
|
|
|
- Rebase to latest upstream
|
|
|
|
|
2021-02-18 17:19:44 +00:00
|
|
|
* Thu Feb 18 2021 Jerome Marchand <jmarchan@redhat.com> - 0.18.0-4
|
|
|
|
- Disable lua for RHEL
|
|
|
|
|
2021-01-26 01:00:24 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.18.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2021-01-22 21:42:00 +00:00
|
|
|
* Fri Jan 22 2021 Tom Stellard <tstellar@redhat.com> - 0.18.0-2
|
|
|
|
- Rebuild for clang-11.1.0
|
|
|
|
|
2021-01-05 20:42:22 +00:00
|
|
|
* Tue Jan 5 15:08:26 CET 2021 Rafael dos Santos <rdossant@redhat.com> - 0.18.0-1
|
|
|
|
- Rebase to latest upstream (#1912875)
|
|
|
|
|
2020-10-30 10:35:05 +00:00
|
|
|
* Fri Oct 30 11:25:46 CET 2020 Rafael dos Santos <rdossant@redhat.com> - 0.17.0-1
|
|
|
|
- Rebase to latest upstream (#1871417)
|
|
|
|
|
2020-10-12 15:11:26 +00:00
|
|
|
* Mon Oct 12 2020 Jerome Marchand <jmarchan@redhat.com> - 0.16.0.3
|
|
|
|
- Rebuild for LLVM 11.0.0-rc6
|
|
|
|
|
2020-08-28 15:15:38 +00:00
|
|
|
* Fri Aug 28 2020 Rafael dos Santos <rdossant@redhat.com> - 0.16.0-2
|
|
|
|
- Enable build for armv7hl
|
|
|
|
|
2020-08-23 09:29:06 +00:00
|
|
|
* Sun Aug 23 2020 Rafael dos Santos <rdossant@redhat.com> - 0.16.0-1
|
|
|
|
- Rebase to latest upstream (#1871417)
|
|
|
|
|
2020-08-04 08:51:20 +00:00
|
|
|
* Tue Aug 04 2020 Rafael dos Santos <rdossant@redhat.com> - 0.15.0-6
|
|
|
|
- Fix build with cmake (#1863243)
|
|
|
|
|
2020-08-01 00:05:51 +00:00
|
|
|
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.15.0-5
|
|
|
|
- Second attempt - Rebuilt for
|
|
|
|
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-07-27 12:58:53 +00:00
|
|
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.15.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-07-09 18:24:30 +00:00
|
|
|
* Thu Jul 09 2020 Tom Stellard <tstellar@redhat.com> - 0.15.0-3
|
|
|
|
- Drop llvm-static dependency
|
|
|
|
- https://docs.fedoraproject.org/en-US/packaging-guidelines/#_statically_linking_executables
|
|
|
|
|
2020-07-02 08:56:00 +00:00
|
|
|
* Thu Jul 02 2020 Rafael dos Santos <rdossant@redhat.com> - 0.15.0-2
|
|
|
|
- Reinstate a function needed by bpftrace
|
|
|
|
|
2020-06-23 09:19:09 +00:00
|
|
|
* Tue Jun 23 2020 Rafael dos Santos <rdossant@redhat.com> - 0.15.0-1
|
|
|
|
- Rebase to latest upstream version (#1849239)
|
|
|
|
|
2020-05-26 00:41:26 +00:00
|
|
|
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 0.14.0-2
|
|
|
|
- Rebuilt for Python 3.9
|
|
|
|
|
2020-05-07 09:31:52 +00:00
|
|
|
* Tue Apr 21 2020 Rafael dos Santos <rdossant@redhat.com> - 0.14.0-1
|
|
|
|
- Rebase to latest upstream version (#1826281)
|
|
|
|
|
2020-02-26 21:46:32 +00:00
|
|
|
* Wed Feb 26 2020 Rafael dos Santos <rdossant@redhat.com> - 0.13.0-1
|
|
|
|
- Rebase to latest upstream version (#1805072)
|
|
|
|
|
2020-01-28 12:47:02 +00:00
|
|
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.12.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-12-12 23:00:54 +00:00
|
|
|
* Mon Jan 06 2020 Tom Stellard <tstellar@redhat.com> - 0.12.0-2
|
|
|
|
- Link against libclang-cpp.so
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Stop-Shipping-Individual-Component-Libraries-In-clang-lib-Package
|
|
|
|
|
2020-01-02 22:14:19 +00:00
|
|
|
* Tue Dec 17 2019 Rafael dos Santos <rdossant@redhat.com> - 0.12.0-1
|
|
|
|
- Rebase to latest upstream version (#1758417)
|
|
|
|
|
2019-12-04 09:15:35 +00:00
|
|
|
* Thu Dec 05 2019 Jiri Olsa <jolsa@redhat.com> - 0.11.0-2
|
|
|
|
- Add libbpf support
|
|
|
|
|
2019-10-07 07:06:22 +00:00
|
|
|
* Fri Oct 04 2019 Rafael dos Santos <rdossant@redhat.com> - 0.11.0-1
|
|
|
|
- Rebase to latest upstream version (#1758417)
|
|
|
|
|
2019-10-03 11:51:00 +00:00
|
|
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.10.0-4
|
|
|
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
|
|
|
|
2019-08-19 08:10:38 +00:00
|
|
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.10.0-3
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
2019-07-24 19:06:40 +00:00
|
|
|
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.10.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-05-30 10:28:39 +00:00
|
|
|
* Wed May 29 2019 Rafael dos Santos <rdossant@redhat.com> - 0.10.0-1
|
|
|
|
- Rebase to latest upstream version (#1714902)
|
|
|
|
|
2019-04-25 10:31:36 +00:00
|
|
|
* Thu Apr 25 2019 Rafael dos Santos <rdossant@redhat.com> - 0.9.0-1
|
|
|
|
- Rebase to latest upstream version (#1686626)
|
|
|
|
- Rename libbpf header to libbcc_bpf
|
|
|
|
|
2019-04-22 18:53:55 +00:00
|
|
|
* Mon Apr 22 2019 Neal Gompa <ngompa@datto.com> - 0.8.0-5
|
|
|
|
- Make the Python 3 bindings package noarch
|
|
|
|
- Small cleanups to the spec
|
|
|
|
|
2019-03-19 11:15:46 +00:00
|
|
|
* Tue Mar 19 2019 Rafael dos Santos <rdossant@redhat.com> - 0.8.0-4
|
|
|
|
- Add s390x support (#1679310)
|
|
|
|
|
2019-03-01 16:36:29 +00:00
|
|
|
* Wed Feb 20 2019 Rafael dos Santos <rdossant@redhat.com> - 0.8.0-3
|
|
|
|
- Add aarch64 support (#1679310)
|
|
|
|
|
2019-01-31 14:28:12 +00:00
|
|
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2019-01-17 12:58:53 +00:00
|
|
|
* Thu Jan 17 2019 Rafael dos Santos <rdossant@redhat.com> - 0.8.0-1
|
|
|
|
- Rebase to new released version
|
|
|
|
|
2018-11-01 10:27:23 +00:00
|
|
|
* Thu Nov 01 2018 Rafael dos Santos <rdossant@redhat.com> - 0.7.0-4
|
|
|
|
- Fix attaching to usdt probes (#1634684)
|
|
|
|
|
2018-10-22 10:33:14 +00:00
|
|
|
* Mon Oct 22 2018 Rafael dos Santos <rdossant@redhat.com> - 0.7.0-3
|
|
|
|
- Fix encoding of non-utf8 characters (#1516678)
|
|
|
|
- Fix str-bytes conversion in killsnoop (#1637515)
|
|
|
|
|
2018-10-06 07:05:15 +00:00
|
|
|
* Sat Oct 06 2018 Rafael dos Santos <rdossant@redhat.com> - 0.7.0-2
|
|
|
|
- Fix str/bytes conversion in uflow (#1636293)
|
|
|
|
|
2018-09-25 13:00:34 +00:00
|
|
|
* Tue Sep 25 2018 Rafael Fonseca <r4f4rfs@gmail.com> - 0.7.0-1
|
|
|
|
- Rebase to new released version
|
|
|
|
|
2018-08-22 11:33:31 +00:00
|
|
|
* Wed Aug 22 2018 Rafael Fonseca <r4f4rfs@gmail.com> - 0.6.1-2
|
|
|
|
- Fix typo when mangling shebangs.
|
|
|
|
|
2018-08-16 11:54:29 +00:00
|
|
|
* Thu Aug 16 2018 Rafael Fonseca <r4f4rfs@gmail.com> - 0.6.1-1
|
|
|
|
- Rebase to new released version (#1609485)
|
|
|
|
|
2018-07-12 20:58:59 +00:00
|
|
|
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-06-19 08:40:16 +00:00
|
|
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.6.0-2
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
2018-06-18 12:22:34 +00:00
|
|
|
* Mon Jun 18 2018 Rafael dos Santos <rdossant@redhat.com> - 0.6.0-1
|
|
|
|
- Rebase to new released version (#1591989)
|
|
|
|
|
2018-04-05 14:22:55 +00:00
|
|
|
* Thu Apr 05 2018 Rafael Santos <rdossant@redhat.com> - 0.5.0-4
|
|
|
|
- Resolves #1555627 - fix compilation error with latest llvm/clang
|
|
|
|
|
2018-02-07 03:39:55 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-02-02 09:47:17 +00:00
|
|
|
* Fri Feb 02 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.5.0-2
|
|
|
|
- Switch to %%ldconfig_scriptlets
|
|
|
|
|
2018-01-03 14:44:56 +00:00
|
|
|
* Wed Jan 03 2018 Rafael Santos <rdossant@redhat.com> - 0.5.0-1
|
|
|
|
- Rebase to new released version
|
|
|
|
|
2017-11-27 13:15:47 +00:00
|
|
|
* Thu Nov 16 2017 Rafael Santos <rdossant@redhat.com> - 0.4.0-4
|
|
|
|
- Resolves #1517408 - avoid conflict with other manpages
|
|
|
|
|
2017-11-03 09:53:03 +00:00
|
|
|
* Thu Nov 02 2017 Rafael Santos <rdossant@redhat.com> - 0.4.0-3
|
|
|
|
- Use weak deps to not require lua subpkg on ppc64(le)
|
|
|
|
|
2017-11-01 09:34:06 +00:00
|
|
|
* Wed Nov 01 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.4.0-2
|
|
|
|
- Rebuild for LLVM5
|
|
|
|
|
2017-10-24 19:35:31 +00:00
|
|
|
* Wed Nov 01 2017 Rafael Fonseca <rdossant@redhat.com> - 0.4.0-1
|
|
|
|
- Resolves #1460482 - rebase to new release
|
|
|
|
- Resolves #1505506 - add support for LLVM 5.0
|
|
|
|
- Resolves #1460482 - BPF module compilation issue
|
|
|
|
- Partially address #1479990 - location of man pages
|
|
|
|
- Enable ppc64(le) support without lua
|
|
|
|
- Soname versioning for libbpf by ignatenkobrain
|
|
|
|
|
2017-08-02 18:09:24 +00:00
|
|
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 03:50:07 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-03-30 14:43:56 +00:00
|
|
|
* Thu Mar 30 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.3.0-2
|
|
|
|
- Rebuild for LLVM4
|
|
|
|
- Trivial fixes in spec
|
|
|
|
|
2017-03-08 14:45:18 +00:00
|
|
|
* Fri Mar 10 2017 Rafael Fonseca <rdossant@redhat.com> - 0.3.0-1
|
|
|
|
- Rebase to new release.
|
|
|
|
|
2017-02-10 06:46:27 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2017-01-10 15:43:11 +00:00
|
|
|
* Tue Jan 10 2017 Rafael Fonseca <rdossant@redhat.com> - 0.2.0-2
|
|
|
|
- Fix typo
|
|
|
|
|
2017-01-10 15:38:08 +00:00
|
|
|
* Tue Nov 29 2016 Rafael Fonseca <rdossant@redhat.com> - 0.2.0-1
|
|
|
|
- Initial import
|