Update to version 1.1.0

This commit is contained in:
Andreas Schneider 2015-01-21 13:52:25 +01:00
parent 58ff6dd9f2
commit d87926c922
4 changed files with 7 additions and 20 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
/uid_wrapper-1.0.1.tar.gz
/uid_wrapper-1.0.2.tar.gz
/uid_wrapper-1.1.0.tar.gz

View File

@ -1,15 +0,0 @@
Index: uid_wrapper-1.0.2/tests/testsuite.c
===================================================================
--- uid_wrapper-1.0.2.orig/tests/testsuite.c
+++ uid_wrapper-1.0.2/tests/testsuite.c
@@ -198,8 +198,10 @@ static void test_uwrap_syscall(void **st
rc = access(".", R_OK);
assert_int_equal(rc, 0);
+#ifdef SYS_access
rc = syscall(SYS_access, ".", R_OK);
assert_int_equal(rc, 0);
+#endif
ZERO_STRUCT(tv1);
ZERO_STRUCT(tv2);

View File

@ -1 +1 @@
8fb6b12fa2f0dd918f2d5ad90e60014f uid_wrapper-1.0.2.tar.gz
097385bb018d4f3e521a176e9e6d3f07 uid_wrapper-1.1.0.tar.gz

View File

@ -1,13 +1,12 @@
Name: uid_wrapper
Version: 1.0.2
Release: 5%{?dist}
Version: 1.1.0
Release: 1%{?dist}
Summary: A wrapper for privilege separation
License: GPLv3+
Url: http://cwrap.org/
Source0: https://ftp.samba.org/pub/cwrap/%{name}-%{version}.tar.gz
Patch0: aarch64-has-no-sys-access.patch
BuildRequires: cmake
BuildRequires: libcmocka-devel
@ -31,7 +30,6 @@ development/testing.
%prep
%setup -q
%patch0 -p1
%build
if test ! -e "obj"; then
@ -69,6 +67,9 @@ popd
%{_mandir}/man1/uid_wrapper.1*
%changelog
* Wed Jan 21 2015 Andreas Schneider <asn@redhat.com> - 1.1.0-1
- Update to version 1.1.0
* Mon Dec 15 2014 Michael Adam <madam@redhat.com> - 1.0.2-5
- Fix format errors in changelog.
- Require cmake.