Hello community,

here is the log from the commit of package trousers for openSUSE:Factory 
checked in at 2016-05-10 09:27:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/trousers (Old)
 and      /work/SRC/openSUSE:Factory/.trousers.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "trousers"

Changes:
--------
--- /work/SRC/openSUSE:Factory/trousers/trousers.changes        2015-06-23 
11:58:48.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.trousers.new/trousers.changes   2016-05-10 
09:27:42.000000000 +0200
@@ -1,0 +2,8 @@
+Fri May  6 20:15:13 UTC 2016 - jeng...@inai.de
+
+- Check for user/group existence before attempting to add them,
+  and remove error suppression from these calls.
+- Avoid runtime dependency on systemd, the macros can all deal with
+  its absence.
+
+-------------------------------------------------------------------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ trousers.spec ++++++
--- /var/tmp/diff_new_pack.wxgLGn/_old  2016-05-10 09:27:43.000000000 +0200
+++ /var/tmp/diff_new_pack.wxgLGn/_new  2016-05-10 09:27:43.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package trousers
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# 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
@@ -23,7 +23,7 @@
 License:        BSD-3-Clause
 Group:          Productivity/Security
 Url:            http://trousers.sourceforge.net/
-Source0:        
http://downloads.sourceforge.net/project/trousers/trousers/%{version}/%{name}-%{version}.tar.gz
+Source0:        http://downloads.sf.net/trousers/%{name}-%{version}.tar.gz
 Source1:        tcsd.service
 Source2:        baselibs.conf
 BuildRequires:  gtk2-devel
@@ -31,7 +31,6 @@
 BuildRequires:  openssl-devel
 BuildRequires:  pkg-config
 BuildRequires:  systemd-rpm-macros
-%{?systemd_requires}
 Requires(pre):  pwdutils
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
@@ -101,8 +100,10 @@
 mv -v %{buildroot}/%{_lib}/*.a %{buildroot}%{_libdir}
 
 %pre
-%{_sbindir}/groupadd -g 98 tss 2> /dev/null || :
-%{_sbindir}/useradd -u 98 -o -g tss -s /bin/false -c "TSS daemon" -d 
%{_localstatedir}/lib/tpm tss 2> /dev/null || :
+%_bindir/getent group tss >/dev/null || %{_sbindir}/groupadd -g 98 tss || :
+%_bindir/getent passwd tss >/dev/null || \
+       %{_sbindir}/useradd -u 98 -o -g tss -s /bin/false -c "TSS daemon" \
+       -d %{_localstatedir}/lib/tpm tss || :
 %service_add_pre tcsd.service
 
 %post

++++++ trousers-0.3.13.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trousers-0.3.13/bootstrap.sh 
new/trousers-0.3.13/bootstrap.sh
--- old/trousers-0.3.13/bootstrap.sh    1970-01-01 01:00:00.000000000 +0100
+++ new/trousers-0.3.13/bootstrap.sh    2014-06-10 23:08:32.000000000 +0200
@@ -0,0 +1,5 @@
+set -x
+aclocal || exit 1
+libtoolize --force -c || exit 1
+automake --add-missing -c --foreign || exit 1
+autoconf || exit 1


Reply via email to