forked from pool/libseccomp
Marcus Meissner
058b1adc94
OBS-URL: https://build.opensuse.org/package/show/security/libseccomp?expand=0&rev=42
145 lines
4.7 KiB
RPMSpec
145 lines
4.7 KiB
RPMSpec
#
|
|
# spec file for package libseccomp
|
|
#
|
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: libseccomp
|
|
%define lname libseccomp2
|
|
Version: 2.3.0
|
|
Release: 0
|
|
Summary: An enhanced Seccomp (mode 2) helper library
|
|
License: LGPL-2.1
|
|
Group: Development/Libraries/C and C++
|
|
Url: http://github.com/seccomp
|
|
|
|
#Git-Clone: git://github.com/seccomp/libseccomp
|
|
Source: https://github.com/seccomp/libseccomp/releases/download/v%version/%name-%version.tar.gz
|
|
Source2: https://github.com/seccomp/libseccomp/releases/download/v%version/%name-%version.tar.gz.SHA256SUM.asc
|
|
Source99: baselibs.conf
|
|
Patch1: no-static.diff
|
|
Patch2: builderror-k316.diff
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: autoconf
|
|
BuildRequires: automake >= 1.11
|
|
BuildRequires: fdupes
|
|
BuildRequires: libtool >= 2
|
|
BuildRequires: pkgconfig
|
|
|
|
%description
|
|
The libseccomp library provides and easy to use, platform
|
|
independent, interface to the Linux Kernel's syscall filtering
|
|
mechanism: seccomp. The libseccomp API is designed to abstract away
|
|
the underlying BPF based syscall filter language and present a more
|
|
conventional function-call based filtering interface that should be
|
|
familiar to, and easily adopted by application developers.
|
|
|
|
%package -n %lname
|
|
Summary: An enhanced Seccomp (mode 2) helper library
|
|
Group: System/Libraries
|
|
|
|
%description -n %lname
|
|
The libseccomp library provides and easy to use, platform
|
|
independent, interface to the Linux Kernel's syscall filtering
|
|
mechanism: seccomp. The libseccomp API is designed to abstract away
|
|
the underlying BPF based syscall filter language and present a more
|
|
conventional function-call based filtering interface that should be
|
|
familiar to, and easily adopted by application developers.
|
|
|
|
%package -n python-%name
|
|
Summary: Python bindings for Seccomp (mode 2)
|
|
Group: Development/Languages/Python
|
|
|
|
%description -n python-%name
|
|
The libseccomp library provides and easy to use, platform
|
|
independent, interface to the Linux Kernel's syscall filtering
|
|
mechanism: seccomp. The libseccomp API is designed to abstract away
|
|
the underlying BPF based syscall filter language and present a more
|
|
conventional function-call based filtering interface that should be
|
|
familiar to, and easily adopted by application developers.
|
|
|
|
%package devel
|
|
Summary: Development files for libseccomp, an enhanced Seccomp (mode 2) helper library
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %lname = %version
|
|
|
|
%description devel
|
|
The libseccomp library provides and easy to use, platform
|
|
independent, interface to the Linux Kernel's syscall filtering
|
|
mechanism: seccomp. The libseccomp API is designed to abstract away
|
|
the underlying BPF based syscall filter language and present a more
|
|
conventional function-call based filtering interface that should be
|
|
familiar to, and easily adopted by application developers.
|
|
|
|
This package contains the development files for libseccomp.
|
|
|
|
%package tools
|
|
Summary: Utilities for the seccomp API
|
|
Group: Development/Tools/Debuggers
|
|
|
|
%description tools
|
|
The libseccomp library provides and easy to use, platform
|
|
independent, interface to the Linux Kernel's syscall filtering
|
|
mechanism: seccomp.
|
|
|
|
This subpackage contains debug utilities for the seccomp interface.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch -P 1 -P 2 -p1
|
|
|
|
%build
|
|
perl -i -pe 's{AC_INIT\(\[libseccomp\], \[0\.0\.0\]\)}{AC_INIT([libseccomp], [2.2.90])}' configure.ac
|
|
autoreconf -fi
|
|
%configure --includedir="%_includedir/%name" --disable-static
|
|
make %{?_smp_mflags};
|
|
|
|
%install
|
|
%make_install
|
|
find "%buildroot/%_libdir" -type f -name "*.la" -delete
|
|
%fdupes %buildroot/%_prefix
|
|
|
|
%check
|
|
%ifarch ppc s390 s390x
|
|
make check || true
|
|
#pushd tests/
|
|
#./regression -v
|
|
#popd
|
|
%else
|
|
make check
|
|
%endif
|
|
|
|
%post -n %lname -p /sbin/ldconfig
|
|
%postun -n %lname -p /sbin/ldconfig
|
|
|
|
%files -n %lname
|
|
%defattr(-,root,root)
|
|
%_libdir/%name.so.2*
|
|
%doc LICENSE
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%_mandir/man3/seccomp_*.3*
|
|
%_includedir/%name/
|
|
%_libdir/%name.so
|
|
%_libdir/pkgconfig/%name.pc
|
|
|
|
%files tools
|
|
%defattr(-,root,root)
|
|
%_bindir/scmp_sys_resolver
|
|
%_mandir/man1/scmp_sys_resolver.1*
|
|
|
|
%changelog
|