Accepting request 577712 from home:avindra
- Update to version 0.7.9: * Fix byte compiling python3 bindings * Rework spec file to show new python2/3 separation - cleanup with spec-cleaner - use https urls - Update to version 0.7.9: * Detect and output a couple errors in filecap * Use pthread_atfork to optionally reset the pid and related info on fork - cleanup with spec-cleaner - use https urls OBS-URL: https://build.opensuse.org/request/show/577712 OBS-URL: https://build.opensuse.org/package/show/security/libcap-ng?expand=0&rev=31
This commit is contained in:
parent
e55042b3eb
commit
5be9e32e9a
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:c21af997445cd4107a55d386f955c5ea6f6e96ead693e9151277c0ab5f97d05f
|
|
||||||
size 447946
|
|
3
libcap-ng-0.7.9.tar.gz
Normal file
3
libcap-ng-0.7.9.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:4a1532bcf3731aade40936f6d6a586ed5a66ca4c7455e1338d1f6c3e09221328
|
||||||
|
size 449038
|
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Feb 18 09:22:44 UTC 2018 - avindra@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 0.7.9:
|
||||||
|
* Fix byte compiling python3 bindings
|
||||||
|
* Rework spec file to show new python2/3 separation
|
||||||
|
- cleanup with spec-cleaner
|
||||||
|
- use https urls
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu May 17 16:46:07 UTC 2017 - alexander_naumov@opensuse.org
|
Thu May 17 16:46:07 UTC 2017 - alexander_naumov@opensuse.org
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package libcap-ng-python
|
# spec file for package libcap-ng-python
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -18,19 +18,18 @@
|
|||||||
|
|
||||||
%define soname 0
|
%define soname 0
|
||||||
Name: libcap-ng-python
|
Name: libcap-ng-python
|
||||||
Version: 0.7.8
|
Version: 0.7.9
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: An alternate POSIX capabilities library
|
Summary: An alternate POSIX capabilities library
|
||||||
License: LGPL-2.1+
|
License: LGPL-2.1+
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
Url: http://people.redhat.com/sgrubb/libcap-ng
|
Url: https://people.redhat.com/sgrubb/libcap-ng
|
||||||
Source0: http://people.redhat.com/sgrubb/libcap-ng/libcap-ng-%{version}.tar.gz
|
Source0: https://people.redhat.com/sgrubb/libcap-ng/libcap-ng-%{version}.tar.gz
|
||||||
Source1: baselibs.conf
|
Source1: baselibs.conf
|
||||||
Source99: libcap-ng.rpmlintrc
|
Source99: libcap-ng.rpmlintrc
|
||||||
BuildRequires: kernel-headers >= 2.6.11
|
BuildRequires: kernel-headers >= 2.6.11
|
||||||
BuildRequires: pkg-config
|
BuildRequires: pkgconfig
|
||||||
BuildRequires: python-base
|
BuildRequires: python-base
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Libcap-ng is a library that makes using posix capabilities easier
|
Libcap-ng is a library that makes using posix capabilities easier
|
||||||
@ -42,7 +41,6 @@ BuildRequires: libcap-ng-devel = %{version}
|
|||||||
BuildRequires: python-devel
|
BuildRequires: python-devel
|
||||||
BuildRequires: swig
|
BuildRequires: swig
|
||||||
Requires: libcap-ng%{soname} = %{version}
|
Requires: libcap-ng%{soname} = %{version}
|
||||||
%{py_requires}
|
|
||||||
|
|
||||||
%description -n python-capng
|
%description -n python-capng
|
||||||
The libcap-ng-python package contains the bindings so that libcap-ng
|
The libcap-ng-python package contains the bindings so that libcap-ng
|
||||||
@ -60,11 +58,10 @@ and can be used by python applications.
|
|||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make DESTDIR=%{buildroot} install %{?_smp_mflags} -C bindings/python
|
%make_install -C bindings/python
|
||||||
find %{buildroot} -type f -name "*.la" -delete -print
|
find %{buildroot} -type f -name "*.la" -delete -print
|
||||||
|
|
||||||
%files -n python-capng
|
%files -n python-capng
|
||||||
%defattr(-,root,root,-)
|
|
||||||
%{python_sitearch}/_capng.so
|
%{python_sitearch}/_capng.so
|
||||||
%{python_sitearch}/capng.py*
|
%{python_sitearch}/capng.py*
|
||||||
|
|
||||||
|
@ -1,3 +1,13 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Feb 18 09:23:18 UTC 2018 - avindra@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 0.7.9:
|
||||||
|
* Detect and output a couple errors in filecap
|
||||||
|
* Use pthread_atfork to optionally reset the pid and related info
|
||||||
|
on fork
|
||||||
|
- cleanup with spec-cleaner
|
||||||
|
- use https urls
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu May 17 16:46:07 UTC 2017 - alexander_naumov@opensuse.org
|
Thu May 17 16:46:07 UTC 2017 - alexander_naumov@opensuse.org
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package libcap-ng
|
# spec file for package libcap-ng
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -18,18 +18,17 @@
|
|||||||
|
|
||||||
%define soname 0
|
%define soname 0
|
||||||
Name: libcap-ng
|
Name: libcap-ng
|
||||||
Version: 0.7.8
|
Version: 0.7.9
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: An alternate POSIX capabilities library
|
Summary: An alternate POSIX capabilities library
|
||||||
License: LGPL-2.1+
|
License: LGPL-2.1+
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
Url: http://people.redhat.com/sgrubb/libcap-ng
|
Url: https://people.redhat.com/sgrubb/libcap-ng
|
||||||
Source0: http://people.redhat.com/sgrubb/libcap-ng/libcap-ng-%{version}.tar.gz
|
Source0: https://people.redhat.com/sgrubb/%{name}/%{name}-%{version}.tar.gz
|
||||||
Source1: baselibs.conf
|
Source1: baselibs.conf
|
||||||
Source99: libcap-ng.rpmlintrc
|
Source99: libcap-ng.rpmlintrc
|
||||||
BuildRequires: kernel-headers >= 2.6.11
|
BuildRequires: kernel-headers >= 2.6.11
|
||||||
BuildRequires: pkg-config
|
BuildRequires: pkgconfig
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Libcap-ng is a library that makes using posix capabilities easier
|
Libcap-ng is a library that makes using posix capabilities easier
|
||||||
@ -75,21 +74,18 @@ lets you set the file system based capabilities.
|
|||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make DESTDIR=%{buildroot} install %{?_smp_mflags}
|
%make_install
|
||||||
find %{buildroot} -type f -name "*.la" -delete -print
|
find %{buildroot} -type f -name "*.la" -delete -print
|
||||||
|
|
||||||
%post -n %{name}%{soname} -p /sbin/ldconfig
|
%post -n %{name}%{soname} -p /sbin/ldconfig
|
||||||
|
|
||||||
%postun -n %{name}%{soname} -p /sbin/ldconfig
|
%postun -n %{name}%{soname} -p /sbin/ldconfig
|
||||||
|
|
||||||
%files -n %{name}%{soname}
|
%files -n %{name}%{soname}
|
||||||
%defattr(-,root,root,-)
|
|
||||||
%doc COPYING.LIB
|
%doc COPYING.LIB
|
||||||
%{_libdir}/%{name}.so.%{soname}
|
%{_libdir}/%{name}.so.%{soname}
|
||||||
%{_libdir}/%{name}.so.%{soname}.*
|
%{_libdir}/%{name}.so.%{soname}.*
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root,-)
|
|
||||||
%{_mandir}/man3/*.3%{ext_man}
|
%{_mandir}/man3/*.3%{ext_man}
|
||||||
%{_includedir}/cap-ng.h
|
%{_includedir}/cap-ng.h
|
||||||
%{_libdir}/%{name}.so
|
%{_libdir}/%{name}.so
|
||||||
@ -97,7 +93,6 @@ find %{buildroot} -type f -name "*.la" -delete -print
|
|||||||
%{_libdir}/pkgconfig/%{name}.pc
|
%{_libdir}/pkgconfig/%{name}.pc
|
||||||
|
|
||||||
%files utils
|
%files utils
|
||||||
%defattr(-,root,root,-)
|
|
||||||
%doc COPYING
|
%doc COPYING
|
||||||
%{_bindir}/captest
|
%{_bindir}/captest
|
||||||
%{_bindir}/filecap
|
%{_bindir}/filecap
|
||||||
|
Loading…
Reference in New Issue
Block a user