forked from iovisor/bcc
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
These fixes are manually included in the released 0.1.7 packages, but will help with future builds. Signed-off-by: Brenden Blanco <[email protected]>
- Loading branch information
Brenden Blanco
committed
Oct 12, 2015
1 parent
95e454f
commit 7e00fc1
Showing
4 changed files
with
14 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%define debug_package %{nil} | ||
|
||
Name: bcc | ||
Version: 0.1.6 | ||
Version: 0.1.7 | ||
Release: 1%{?dist} | ||
Summary: BPF Compiler Collection (BCC) | ||
|
||
|
@@ -25,7 +25,7 @@ userspace. | |
|
||
mkdir build | ||
pushd build | ||
cmake .. -DREVISION=%{version} -DCMAKE_INSTALL_PREFIX=/usr | ||
cmake .. -DREVISION_LAST=%{version} -DREVISION=%{version} -DCMAKE_INSTALL_PREFIX=/usr | ||
make -j`grep -c ^process /proc/cpuinfo` | ||
popd | ||
|
||
|
@@ -34,6 +34,9 @@ pushd build | |
make install/strip DESTDIR=%{buildroot} | ||
|
||
%changelog | ||
* Mon Oct 12 2015 Brenden Blanco <[email protected]> - 0.1.2-1 | ||
- Add better version numbering into libbcc.so | ||
|
||
* Fri Jul 03 2015 Brenden Blanco <[email protected]> - 0.1.1-2 | ||
- Initial RPM Release | ||
|
||
|
@@ -55,7 +58,6 @@ Python bindings for BPF Compiler Collection (BCC) | |
|
||
%files -n python-bcc | ||
%{python_sitelib}/bcc* | ||
%exclude %{python_sitelib}/*.egg-info | ||
|
||
%files -n libbcc | ||
/usr/lib64/* | ||
|
@@ -64,3 +66,7 @@ Python bindings for BPF Compiler Collection (BCC) | |
|
||
%files -n libbcc-examples | ||
/usr/share/bcc/examples/* | ||
%exclude /usr/share/bcc/examples/*.pyc | ||
%exclude /usr/share/bcc/examples/*.pyo | ||
%exclude /usr/share/bcc/examples/*/*.pyc | ||
%exclude /usr/share/bcc/examples/*/*.pyo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
usr/lib/python* | ||
usr/bin/bpf-run |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters