Update to version 1.1.4
OBS-URL: https://build.opensuse.org/package/show/devel:tools/nss_wrapper?expand=0&rev=17
This commit is contained in:
parent
ee59ac3f9b
commit
f90a8ef7a3
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c9b84c14c5bc6948cdad4cbdeefaaf8b471a11ef876535002896779411573aa3
|
||||
size 53543
|
3
nss_wrapper-1.1.4.tar.gz
Normal file
3
nss_wrapper-1.1.4.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9490dd440d67b23e35d8840296c22c4cd38e82132165cdae0318334f223f850e
|
||||
size 55520
|
16
nss_wrapper-1.1.4.tar.gz.asc
Normal file
16
nss_wrapper-1.1.4.tar.gz.asc
Normal file
@ -0,0 +1,16 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQIzBAABCAAdFiEEjf9T4Y8qvI2PPJIjfuD8TcwBTj0FAlvZWNAACgkQfuD8TcwB
|
||||
Tj0vKQ//UGneQIbf3hovdNqOetYb4loUNp/dpyH8DiRcdtS5ngeD7Mv3j5FB/vas
|
||||
3H6kdhbbozS2gFqOzdahjYy34BSr4W0w4vYpHmu4do5MezTAbcHzpFMhYszu5cDq
|
||||
bJAfyuiJDl1VlAZzfoHcylILQj9HBsmmr+k5vbJgh8khqe0Os+xs1pLgxuM4nAzu
|
||||
KcFNdb1V6jOla4vN3z9bJ8dLfNHl2IOtZ9GQwRTDEbfmcJKPmgQWmv10mGW4ESdm
|
||||
6SABmfti9MTlcLnxA1mDZhezYu0VHuSyrWxjaHJ9h5BoZPwT51ROXzoWUOeu6hq3
|
||||
I/JFJl18pagI+CaviN+DhkbHPMgw0971k4oiQT5m4rD/6qPEgxNzh7hAKYO4B2GK
|
||||
9c23+EoLNMp5U4DnNIHrdeJaZ7hkCn5er+HD+ojt9N6Ogch8g+HMkyqJR/qSsxGV
|
||||
XwEUYDxDjVqWCTbGiCFtNo5+4SxxE1MAZlLrFLXD03j2nuCsqVe0Ep1oEiRUjJdB
|
||||
mIwr1/zM8qmuepxXs8xKg8Y8N709i2kXoymGwIPrua3DyNFix05y9/GdIDEazlXE
|
||||
Dstna1V/duj6GpMj23VKEFf/3MeUmudyQSYwmtx5JliuikqcF/vYW57BwDLEP/5g
|
||||
itS5HwADqRNlBejl78D7vhxuIhs4AZ0njYHFLWn6eo3Qau4ETxE=
|
||||
=Vdca
|
||||
-----END PGP SIGNATURE-----
|
@ -1,3 +1,11 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 31 07:30:25 UTC 2018 - Andreas Schneider <asn@cryptomilk.org>
|
||||
|
||||
- Update to version 1.1.4
|
||||
* Fixed module getpw* functions
|
||||
* Fixed nss_wrapper.pl to use correct perl binary
|
||||
* Fixed compatibility with musl-libc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 21 18:19:18 UTC 2016 - asn@cryptomilk.org
|
||||
|
||||
|
BIN
nss_wrapper.keyring
Normal file
BIN
nss_wrapper.keyring
Normal file
Binary file not shown.
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package nss_wrapper
|
||||
#
|
||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2018 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
|
||||
@ -12,7 +12,7 @@
|
||||
# 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/
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
@ -24,7 +24,7 @@
|
||||
############################# NOTE ##################################
|
||||
|
||||
Name: nss_wrapper
|
||||
Version: 1.1.3
|
||||
Version: 1.1.4
|
||||
Release: 0
|
||||
|
||||
Summary: A wrapper for the user, group and hosts NSS API
|
||||
@ -33,7 +33,9 @@ Group: Development/Libraries/C and C++
|
||||
Url: http://cwrap.org/
|
||||
|
||||
Source0: https://ftp.samba.org/pub/cwrap/%{name}-%{version}.tar.gz
|
||||
Source1: %{name}-rpmlintrc
|
||||
Source1: https://ftp.samba.org/pub/cwrap/%{name}-%{version}.tar.gz.asc
|
||||
Source2: https://cryptomilk.org/gpgkey-8DFF53E18F2ABC8D8F3C92237EE0FC4DCC014E3D.gpg#/%{name}.keyring
|
||||
Source3: %{name}-rpmlintrc
|
||||
|
||||
BuildRequires: cmake
|
||||
BuildRequires: libcmocka-devel
|
||||
@ -77,6 +79,9 @@ make %{?_smp_mflags} VERBOSE=1
|
||||
%install
|
||||
%cmake_install
|
||||
|
||||
find %{buildroot}%{_bindir} -name "*.pl" \
|
||||
| xargs sed -i '1 s|/usr/bin/env\ perl|/usr/bin/perl|'
|
||||
|
||||
%check
|
||||
pushd build
|
||||
make %{?_smp_mflags} test || cat $(find Testing -name "*.log")
|
||||
@ -88,7 +93,8 @@ popd
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc AUTHORS README ChangeLog COPYING
|
||||
%doc AUTHORS README ChangeLog
|
||||
%license LICENSE
|
||||
%{_bindir}/nss_wrapper.pl
|
||||
%{_libdir}/libnss_wrapper.so*
|
||||
%dir %{_libdir}/cmake/nss_wrapper
|
||||
|
Loading…
Reference in New Issue
Block a user