commit permissions for openSUSE:Factory
Hello community, here is the log from the commit of package permissions for openSUSE:Factory checked in at 2014-08-29 17:42:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/permissions (Old) and /work/SRC/openSUSE:Factory/.permissions.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "permissions" Changes: -------- --- /work/SRC/openSUSE:Factory/permissions/permissions.changes 2014-08-03 15:35:36.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.permissions.new/permissions.changes 2014-08-29 17:42:28.000000000 +0200 @@ -1,0 +2,6 @@ +Tue Aug 26 13:00:07 UTC 2014 - meissner@suse.com + +- Do not applies permissions from backup files (~ / .rpmsave / .rpmnew) (bnc#893370) +- do not mention SuSEconfig anymore, long dead (bnc#843083) + +------------------------------------------------------------------- Old: ---- permissions-2014.08.01.1324.tar.bz2 New: ---- permissions-2014.08.26.1452.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ permissions.spec ++++++ --- /var/tmp/diff_new_pack.keKqUa/_old 2014-08-29 17:42:30.000000000 +0200 +++ /var/tmp/diff_new_pack.keKqUa/_new 2014-08-29 17:42:30.000000000 +0200 @@ -20,7 +20,7 @@ BuildRequires: libcap-devel Name: permissions -Version: 2014.08.01.1324 +Version: 2014.08.26.1452 Release: 0 Provides: aaa_base:/etc/permissions PreReq: %fillup_prereq ++++++ permissions-2014.08.01.1324.tar.bz2 -> permissions-2014.08.26.1452.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/permissions-2014.08.01.1324/chkstat.c new/permissions-2014.08.26.1452/chkstat.c --- old/permissions-2014.08.01.1324/chkstat.c 2014-08-01 13:24:53.000000000 +0200 +++ new/permissions-2014.08.26.1452/chkstat.c 2014-08-26 14:52:59.000000000 +0200 @@ -351,6 +351,13 @@ char* p; if (!strcmp("..", d->d_name) || !strcmp(".", d->d_name)) continue; + + /* filter out backup files */ + if ((strlen(d->d_name)>2) && (d->d_name[strlen(d->d_name)-1] == '~')) + continue; + if (strstr(d->d_name,".rpmnew") || strstr(d->d_name,".rpmsave")) + continue; + ensure_array((void**)&files, &nfiles); if ((p = strchr(d->d_name, '.'))) { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/permissions-2014.08.01.1324/permissions new/permissions-2014.08.26.1452/permissions --- old/permissions-2014.08.01.1324/permissions 2014-08-01 13:24:53.000000000 +0200 +++ new/permissions-2014.08.26.1452/permissions 2014-08-26 14:52:59.000000000 +0200 @@ -5,8 +5,8 @@ # # Author: Roman Drahtmueller <draht@suse.de>, 2001 # -# This file is used by SuSEconfig and chkstat to check or set the modes -# and ownerships of files and directories in the installation. +# This file is used by chkstat (and indirectly by various RPM scripts) +# to check or set the modes and ownerships of files and directories in the installation. # # There is a set of files with similar meaning in a SuSE installation: # /etc/permissions (This file) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/permissions-2014.08.01.1324/permissions.local new/permissions-2014.08.26.1452/permissions.local --- old/permissions-2014.08.01.1324/permissions.local 2014-08-01 13:24:53.000000000 +0200 +++ new/permissions-2014.08.26.1452/permissions.local 2014-08-26 14:52:59.000000000 +0200 @@ -1,8 +1,9 @@ # # /etc/permissions.local # -# This file is used by SuSEconfig and chkstat to check or set the modes -# and ownerships of files and directories in the installation. +# This file is used by chkstat (and indirectly by various RPM package scripts) +# to check or set the modes and ownerships of files and directories in +# the installation. # # In particular, this file will not be touched during an upgrade of the # installation. It is designed to be a placeholder for local -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de