commit brp-check-suse for openSUSE:Factory

2020-09-18 Thread root
Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory 
checked in at 2020-09-18 14:25:11

Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old)
 and  /work/SRC/openSUSE:Factory/.brp-check-suse.new.4249 (New)


Package is "brp-check-suse"

Fri Sep 18 14:25:11 2020 rev:66 rq:833502 version:84.87+git20200910.754804a

Changes:

--- /work/SRC/openSUSE:Factory/brp-check-suse/brp-check-suse.changes
2020-08-25 09:31:52.375969759 +0200
+++ /work/SRC/openSUSE:Factory/.brp-check-suse.new.4249/brp-check-suse.changes  
2020-09-18 14:27:44.683250743 +0200
@@ -1,0 +2,6 @@
+Thu Sep 10 14:50:43 UTC 2020 - co...@suse.com
+
+- Update to version 84.87+git20200910.754804a:
+  * Make prg-brp-symlink compile on SLE15 (#34 and #35)
+
+---

Old:

  brp-check-suse-84.87+git20200817.346e853.tar.xz

New:

  brp-check-suse-84.87+git20200910.754804a.tar.xz



Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.sJqT42/_old  2020-09-18 14:27:46.155252226 +0200
+++ /var/tmp/diff_new_pack.sJqT42/_new  2020-09-18 14:27:46.159252230 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0-or-later
 Group:  Development/Tools/Building
 Requires:   perl
-Version:84.87+git20200817.346e853
+Version:84.87+git20200910.754804a
 Release:0
 URL:https://github.com/openSUSE/brp-check-suse
 BuildRequires:  gcc-c++

++ _servicedata ++
--- /var/tmp/diff_new_pack.sJqT42/_old  2020-09-18 14:27:46.199252270 +0200
+++ /var/tmp/diff_new_pack.sJqT42/_new  2020-09-18 14:27:46.199252270 +0200
@@ -1,5 +1,5 @@
 
   
 git://github.com/openSUSE/brp-check-suse.git
-  346e8534a3952e177d3ceac6abdf44f637b7a85c
+  c49ee24629b5649854d3e5d42d7c826d7bf72299
 
\ No newline at end of file

++ brp-check-suse-84.87+git20200817.346e853.tar.xz -> 
brp-check-suse-84.87+git20200910.754804a.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/brp-check-suse-84.87+git20200817.346e853/prg-brp-symlink/Makefile 
new/brp-check-suse-84.87+git20200910.754804a/prg-brp-symlink/Makefile
--- old/brp-check-suse-84.87+git20200817.346e853/prg-brp-symlink/Makefile   
2020-08-17 16:54:49.0 +0200
+++ new/brp-check-suse-84.87+git20200910.754804a/prg-brp-symlink/Makefile   
2020-09-10 16:50:23.0 +0200
@@ -1,7 +1,7 @@
 all: brp-symlink
 
 brp-symlink: main.cpp
-   g++ -std=c++17 main.cpp -o brp-symlink
+   g++ -I. -std=c++17 main.cpp -o brp-symlink
 
 check: brp-symlink
./brp-symlink < tests.in > tests.new
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/brp-check-suse-84.87+git20200817.346e853/prg-brp-symlink/main.cpp 
new/brp-check-suse-84.87+git20200910.754804a/prg-brp-symlink/main.cpp
--- old/brp-check-suse-84.87+git20200817.346e853/prg-brp-symlink/main.cpp   
2020-08-17 16:54:49.0 +0200
+++ new/brp-check-suse-84.87+git20200910.754804a/prg-brp-symlink/main.cpp   
2020-09-10 16:50:23.0 +0200
@@ -1,8 +1,8 @@
 #include 
+#include 
+#include 
 #include 
-#include 
-
-using namespace std;
+#include 
 
 // synopsis: read from stdin lines per link
 // IFS=| link link_dest
@@ -13,25 +13,106 @@
 // NOTE:
 // the actual file system content is of no concern here
 
-void check_link(const string &link, const string &link_dest) {
-   std::filesystem::path link_path(link);
-   std::filesystem::path link_dest_path = 
link_path.parent_path().append(link_dest);
-   std::filesystem::path 
link_dest_abs(link_dest_path.lexically_normal().string());
-   cout << link << "|"
-<< link_dest << "|"
-<< link_dest_abs.lexically_relative(link_path.parent_path()).string() 
<< "|"
-<< link_dest_abs.string() << endl;
+using namespace std;
+
+string append(const string& p1, const string& p2)
+{
+char sep = '/';
+if (p2[0] == sep)
+return p2;
+
+string tmp = p1;
+
+size_t len = p1.length();
+while (len && p1[len] != sep)
+len--;
+tmp.resize(len + 1);
+
+return (tmp + p2);
+}
+
+vector split_paths(string path)
+{
+size_t pos = 0;
+string token;
+vector paths;
+while ((pos = path.find("/")) != string::npos) {
+token = path.substr(0, pos);
+if (token == "..") {
+paths.pop_back();
+} else {
+paths.push_back(token);
+}
+path.erase(0, pos + 1);
+}
+paths.push_back(path);
+return paths;
+}
+
+string merge_paths(vector paths)
+{
+string path;
+for (const auto& s : paths) {
+if (s.empty())
+continue;
+if (!path.empty())
+path += "/

commit brp-check-suse for openSUSE:Factory

2020-08-25 Thread root
Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory 
checked in at 2020-08-25 09:31:32

Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old)
 and  /work/SRC/openSUSE:Factory/.brp-check-suse.new.3399 (New)


Package is "brp-check-suse"

Tue Aug 25 09:31:32 2020 rev:65 rq:827370 version:84.87+git20200817.346e853

Changes:

--- /work/SRC/openSUSE:Factory/brp-check-suse/brp-check-suse.changes
2020-05-11 13:26:05.183197322 +0200
+++ /work/SRC/openSUSE:Factory/.brp-check-suse.new.3399/brp-check-suse.changes  
2020-08-25 09:31:52.375969759 +0200
@@ -1,0 +2,13 @@
+Mon Aug 17 14:56:06 UTC 2020 - r...@suse.de
+
+- Update to version 84.87+git20200817.346e853:
+  * added NO_BRP_PERMISSIONS and NO_BRP_ROOTFS (bug#968153)
+
+---
+Fri Jul 31 07:15:51 UTC 2020 - co...@suse.com
+
+- Update to version 84.87+git20200731.3af0c0a:
+  * Make links *to* /etc/aternatives absolute links (#33)
+  * Sort input file list (#32)
+
+---

Old:

  brp-check-suse-84.87+git20200510.8ff16cf.tar.xz

New:

  brp-check-suse-84.87+git20200817.346e853.tar.xz



Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.Lx04NJ/_old  2020-08-25 09:31:57.507972753 +0200
+++ /var/tmp/diff_new_pack.Lx04NJ/_new  2020-08-25 09:31:57.507972753 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0-or-later
 Group:  Development/Tools/Building
 Requires:   perl
-Version:84.87+git20200510.8ff16cf
+Version:84.87+git20200817.346e853
 Release:0
 URL:https://github.com/openSUSE/brp-check-suse
 BuildRequires:  gcc-c++
@@ -38,7 +38,7 @@
 
 %description
 This package contains all suse scripts called in the
-build root checking or in parts implemeting SUSE policies.
+build root checking or in parts implementing SUSE policies.
 
 
 %prep

++ _servicedata ++
--- /var/tmp/diff_new_pack.Lx04NJ/_old  2020-08-25 09:31:57.555972782 +0200
+++ /var/tmp/diff_new_pack.Lx04NJ/_new  2020-08-25 09:31:57.555972782 +0200
@@ -1,5 +1,5 @@
 
   
 git://github.com/openSUSE/brp-check-suse.git
-  8ff16cf99f0b18bf0dac683889c9c3c70e0bafd3
+  346e8534a3952e177d3ceac6abdf44f637b7a85c
 
\ No newline at end of file

++ brp-check-suse-84.87+git20200510.8ff16cf.tar.xz -> 
brp-check-suse-84.87+git20200817.346e853.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/brp-check-suse-84.87+git20200510.8ff16cf/brp-05-permissions 
new/brp-check-suse-84.87+git20200817.346e853/brp-05-permissions
--- old/brp-check-suse-84.87+git20200510.8ff16cf/brp-05-permissions 
2020-05-10 20:34:20.0 +0200
+++ new/brp-check-suse-84.87+git20200817.346e853/brp-05-permissions 
2020-08-17 16:54:49.0 +0200
@@ -4,6 +4,11 @@
exit 0
 fi
 
+if [ "$NO_BRP_PERMISSIONS" = "true" ] ; then
+echo "NO_BRP_PERMISSIONS is set: skipping chkstat call"
+exit 0
+fi
+
 # used to also run on / if uid == 0 but that's really broken
 if [ -e /etc/permissions -a -x /usr/bin/chkstat ]; then
/usr/bin/chkstat \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/brp-check-suse-84.87+git20200510.8ff16cf/brp-25-symlink 
new/brp-check-suse-84.87+git20200817.346e853/brp-25-symlink
--- old/brp-check-suse-84.87+git20200510.8ff16cf/brp-25-symlink 2020-05-10 
20:34:20.0 +0200
+++ new/brp-check-suse-84.87+git20200817.346e853/brp-25-symlink 2020-08-17 
16:54:49.0 +0200
@@ -28,7 +28,7 @@
 
 had_errors=0
 
-find . -type l -printf '%P|%l\n' | brp-symlink.prg | while IFS="|" read link 
link_orig link_dest link_absolut
+find . -type l -printf '%P|%l\n' | sort | brp-symlink.prg | while IFS="|" read 
link link_orig link_dest link_absolut
 do
 if test "$link" = "$link_dest"; then
 echo "ERROR: $link points to itself (as $orig_link_dest)"
@@ -36,7 +36,8 @@
 fi
 
 case "$link,$link_absolut" in
-*,/etc/alternatives/*) # white list alternatives
+*,/etc/alternatives/*) # update alternative links are special
+link_dest=$link_absolut
 ;;
 *,*share/automake-*)
 echo "ERROR: link target $link points into automake directory"
@@ -64,7 +65,7 @@
 if [ "$link_orig" != "$link_dest" ]; then
 echo "INFO: relinking $link -> $link_dest (was $link_orig)"
 # we need to remove the link first because it may point to a directory
-# and then symantic changes
+# and then semantic changes
 rm ./"$link" && ln -s "$link_dest" ./"$link"
 fi
 done
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '-

commit brp-check-suse for openSUSE:Factory

2020-05-11 Thread root
Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory 
checked in at 2020-05-11 13:26:01

Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old)
 and  /work/SRC/openSUSE:Factory/.brp-check-suse.new.2738 (New)


Package is "brp-check-suse"

Mon May 11 13:26:01 2020 rev:64 rq:802526 version:84.87+git20200510.8ff16cf

Changes:

--- /work/SRC/openSUSE:Factory/brp-check-suse/brp-check-suse.changes
2020-02-19 12:40:44.699648250 +0100
+++ /work/SRC/openSUSE:Factory/.brp-check-suse.new.2738/brp-check-suse.changes  
2020-05-11 13:26:05.183197322 +0200
@@ -1,0 +2,8 @@
+Sun May 10 18:35:45 UTC 2020 - co...@suse.com
+
+- Update to version 84.87+git20200510.8ff16cf:
+  * Avoid relinking links to mounted kernel filesystems
+  * Make all symlinks relative (bsc#117) (#31)
+  * Get rid of the unmaintained and buggy desktop file check (#14)
+
+---

Old:

  brp-check-suse-84.87+git20200215.db1636b.tar.xz

New:

  brp-check-suse-84.87+git20200510.8ff16cf.tar.xz



Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.qCUKWr/_old  2020-05-11 13:26:06.103199251 +0200
+++ /var/tmp/diff_new_pack.qCUKWr/_new  2020-05-11 13:26:06.107199259 +0200
@@ -23,9 +23,10 @@
 License:GPL-2.0-or-later
 Group:  Development/Tools/Building
 Requires:   perl
-Version:84.87+git20200215.db1636b
+Version:84.87+git20200510.8ff16cf
 Release:0
 URL:https://github.com/openSUSE/brp-check-suse
+BuildRequires:  gcc-c++
 #
 # Note: don't rebuild this manually. Instead submit your patches
 # for inclusion in the git repo at https://github.com/openSUSE/brp-check-suse
@@ -44,16 +45,21 @@
 %setup -q
 
 %build
-# nothing to do
+make -C prg-brp-symlink
 
 %install
+install -D -m 755 prg-brp-symlink/brp-symlink 
$RPM_BUILD_ROOT/%_bindir/brp-symlink.prg
 install -d $RPM_BUILD_ROOT/usr/lib/rpm/brp-suse.d
 mv brp*data $RPM_BUILD_ROOT/usr/lib/rpm/
 cp -a brp-* $RPM_BUILD_ROOT/usr/lib/rpm/brp-suse.d
 
+%check
+make -C prg-brp-symlink check
+
 %files
 %defattr(-, root, root)
 %license COPYING
 /usr/lib/rpm/*
+%_bindir/brp-symlink.prg
 
 %changelog

++ _servicedata ++
--- /var/tmp/diff_new_pack.qCUKWr/_old  2020-05-11 13:26:06.143199335 +0200
+++ /var/tmp/diff_new_pack.qCUKWr/_new  2020-05-11 13:26:06.143199335 +0200
@@ -1,5 +1,5 @@
 
   
 git://github.com/openSUSE/brp-check-suse.git
-  8b3e73f80ee4af4f975eb58b92014ff0c83b1fa5
+  8ff16cf99f0b18bf0dac683889c9c3c70e0bafd3
 
\ No newline at end of file

++ brp-check-suse-84.87+git20200215.db1636b.tar.xz -> 
brp-check-suse-84.87+git20200510.8ff16cf.tar.xz ++
 15359 lines of diff (skipped)




commit brp-check-suse for openSUSE:Factory

2020-02-19 Thread root
Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory 
checked in at 2020-02-19 12:40:34

Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old)
 and  /work/SRC/openSUSE:Factory/.brp-check-suse.new.26092 (New)


Package is "brp-check-suse"

Wed Feb 19 12:40:34 2020 rev:63 rq:774512 version:84.87+git20200215.db1636b

Changes:

--- /work/SRC/openSUSE:Factory/brp-check-suse/brp-check-suse.changes
2019-11-06 15:14:44.533092864 +0100
+++ /work/SRC/openSUSE:Factory/.brp-check-suse.new.26092/brp-check-suse.changes 
2020-02-19 12:40:44.699648250 +0100
@@ -1,0 +2,7 @@
+Sat Feb 15 10:36:49 UTC 2020 - r...@suse.com
+
+- Update to version 84.87+git20200215.db1636b:
+  * refactor brp-15-strip-debug to not use /dev/fd/62
+  * Also strip lto data from .o files (boo#1146634)
+
+---

Old:

  brp-check-suse-84.87+git20191016.914fe67.tar.xz

New:

  brp-check-suse-84.87+git20200215.db1636b.tar.xz



Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.GawTDo/_old  2020-02-19 12:40:45.547649883 +0100
+++ /var/tmp/diff_new_pack.GawTDo/_new  2020-02-19 12:40:45.551649891 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package brp-check-suse
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,9 +23,9 @@
 License:GPL-2.0-or-later
 Group:  Development/Tools/Building
 Requires:   perl
-Version:84.87+git20191016.914fe67
+Version:84.87+git20200215.db1636b
 Release:0
-Url:https://github.com/openSUSE/brp-check-suse
+URL:https://github.com/openSUSE/brp-check-suse
 #
 # Note: don't rebuild this manually. Instead submit your patches
 # for inclusion in the git repo at https://github.com/openSUSE/brp-check-suse

++ _servicedata ++
--- /var/tmp/diff_new_pack.GawTDo/_old  2020-02-19 12:40:45.575649938 +0100
+++ /var/tmp/diff_new_pack.GawTDo/_new  2020-02-19 12:40:45.575649938 +0100
@@ -1,5 +1,5 @@
 
   
 git://github.com/openSUSE/brp-check-suse.git
-  914fe6700a44e7814fb41ce17cf89ebf080f0bdb
+  8b3e73f80ee4af4f975eb58b92014ff0c83b1fa5
 
\ No newline at end of file

++ brp-check-suse-84.87+git20191016.914fe67.tar.xz -> 
brp-check-suse-84.87+git20200215.db1636b.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/brp-check-suse-84.87+git20191016.914fe67/brp-15-strip-debug 
new/brp-check-suse-84.87+git20200215.db1636b/brp-15-strip-debug
--- old/brp-check-suse-84.87+git20191016.914fe67/brp-15-strip-debug 
2019-10-16 14:45:08.0 +0200
+++ new/brp-check-suse-84.87+git20200215.db1636b/brp-15-strip-debug 
2020-02-15 11:36:31.0 +0100
@@ -19,21 +19,19 @@
 )
 
 # Strip debuginfo from ELF binaries, but not static libraries or kernel modules
-while read f; do
+find "$RPM_BUILD_ROOT" "${FIND_IGNORE[@]}" \( -name "*.a" -o -name "*.ko" \) \
+   -prune -o \
+   -type f \( -perm /0111 -o -name "*.so*" \) \
+   -exec file {} + | \
+sed -n -e 's/^\(.*\):[ ]*ELF.*, not stripped.*$/\1/p' |  while read f; do
mode="$(stat -c %a "$f")"
chmod u+w "$f" || :
strip -p --strip-debug --discard-locals -R .comment -R .note "$f" || :
chmod "$mode" "$f"
-done < <(
-find "$RPM_BUILD_ROOT" "${FIND_IGNORE[@]}" \( -name "*.a" -o -name "*.ko" 
\) \
-   -prune -o \
-   -type f \( -perm /0111 -o -name "*.so*" \) \
-   -exec file {} + | \
-sed -n -e 's/^\(.*\):[ ]*ELF.*, not stripped.*$/\1/p'
-)
+done
 
 # Don't strip debuginfo from static libs, but compiler-generated local symbols
-while read f; do
+find "$RPM_BUILD_ROOT" "${FIND_IGNORE[@]}" -type f -name "*.[ao]" -print | 
while read f; do
case $(file "$f") in
*"current ar"*|*ELF*", not stripped"*)
chmod u+w "$f" || :
@@ -44,4 +42,4 @@
continue
;;
esac
-done < <(find "$RPM_BUILD_ROOT" "${FIND_IGNORE[@]}" -type f -name "*.a" -print)
+done




commit brp-check-suse for openSUSE:Factory

2019-11-06 Thread root
Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory 
checked in at 2019-11-06 15:14:44

Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old)
 and  /work/SRC/openSUSE:Factory/.brp-check-suse.new.2990 (New)


Package is "brp-check-suse"

Wed Nov  6 15:14:44 2019 rev:62 rq:744540 version:84.87+git20191016.914fe67

Changes:

--- /work/SRC/openSUSE:Factory/brp-check-suse/brp-check-suse.changes
2019-09-05 12:09:17.295864199 +0200
+++ /work/SRC/openSUSE:Factory/.brp-check-suse.new.2990/brp-check-suse.changes  
2019-11-06 15:14:44.533092864 +0100
@@ -1,0 +2,14 @@
+Thu Oct 31 17:02:57 CET 2019 - r...@suse.de
+
+- fix specfile to account for removed brp-65-lib64-linux
+
+---
+Wed Oct 16 12:48:51 UTC 2019 - r...@suse.com
+
+- Update to version 84.87+git20191016.914fe67:
+  * add Teaching and X-KDE-Teaching to Education (#27)
+  * Remove brp-65-lib64-linux
+  * Remove brp-35-rpath.
+  * Remove brp-55-boot-scripts.
+
+---
@@ -40,0 +55,3 @@
+- merges https://github.com/openSUSE/brp-check-suse/pull/11
+- drop adwaita from the exception list of icon themes,
+  only hicolor is used as generic fallback

Old:

  brp-check-suse-84.87+git20190807.d5563f2.tar.xz

New:

  brp-check-suse-84.87+git20191016.914fe67.tar.xz



Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.ZWrHHE/_old  2019-11-06 15:14:44.981093305 +0100
+++ /var/tmp/diff_new_pack.ZWrHHE/_new  2019-11-06 15:14:44.985093309 +0100
@@ -23,7 +23,7 @@
 License:GPL-2.0-or-later
 Group:  Development/Tools/Building
 Requires:   perl
-Version:84.87+git20190807.d5563f2
+Version:84.87+git20191016.914fe67
 Release:0
 Url:https://github.com/openSUSE/brp-check-suse
 #
@@ -42,9 +42,6 @@
 
 %prep
 %setup -q
-%ifnarch x86_64 s390x ppc64 aarch64
-rm brp-65-lib64-linux
-%endif
 
 %build
 # nothing to do

++ _servicedata ++
--- /var/tmp/diff_new_pack.ZWrHHE/_old  2019-11-06 15:14:45.013093337 +0100
+++ /var/tmp/diff_new_pack.ZWrHHE/_new  2019-11-06 15:14:45.013093337 +0100
@@ -1,5 +1,5 @@
 
   
 git://github.com/openSUSE/brp-check-suse.git
-  9aa67a9a3ea7c68abcf47093fcfe84482b9f8046
+  914fe6700a44e7814fb41ce17cf89ebf080f0bdb
 
\ No newline at end of file

++ brp-check-suse-84.87+git20190807.d5563f2.tar.xz -> 
brp-check-suse-84.87+git20191016.914fe67.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/brp-check-suse-84.87+git20190807.d5563f2/brp-35-rpath 
new/brp-check-suse-84.87+git20191016.914fe67/brp-35-rpath
--- old/brp-check-suse-84.87+git20190807.d5563f2/brp-35-rpath   2019-08-07 
14:37:22.0 +0200
+++ new/brp-check-suse-84.87+git20191016.914fe67/brp-35-rpath   1970-01-01 
01:00:00.0 +0100
@@ -1,51 +0,0 @@
-#!/bin/bash
-# author:  Dirk Mueller 
-# based on script by Thomas Biege 
-
-# last update: 2005-12-16
-
-unset CDPATH
-
-# if using normal root, avoid changing anything.
-if [ -z "$RPM_BUILD_ROOT" -o "$RPM_BUILD_ROOT" = "/" ]; then
-exit 0
-fi
-if [ "$NO_BRP_CHECK_RPATH" = "true" ] ; then
-echo "NO_BRP_CHECK_RPATH is set: skipping check"
-exit 0
-fi
-
-HAD_ERRORS=0
-# check RPATH for bad directories
-for FILE in $(find $RPM_BUILD_ROOT -type f \( -perm -0100 -o -perm -0010 -o 
-perm -0001 \) 2>/dev/null); do
-for RPATH_VAL in $(objdump -p "$FILE" 2>/dev/null | egrep -w 
'(RPATH|RUNPATH)' | awk '{ print $2 ":"}'); do
-   if [ "${RPATH_VAL:0:7}" = "\$ORIGIN" ]; then continue;fi
-
-   while [ -n "$RPATH_VAL" ]; do
-   RPATH_VAL_NXT=${RPATH_VAL%%:*}
-   RPATH_VAL=${RPATH_VAL##$RPATH_VAL_NXT:}
-   test -z "$RPATH_VAL_NXT" && {
-   echo "WARNING: ignoring empty rpath \"\" in $FILE"
-   continue
-   }
-   test -d "$RPATH_VAL_NXT" && RPATH_VAL_NXT=$(cd 
${RPATH_VAL_NXT//#\/\//\/}; pwd -P)
-
-   case ":$RPATH_VAL_NXT" in
-  :/usr/lib*)
-   ;;
-  :/lib*)
-   ;;
-  :/opt/*/lib*)
-   ;;
-  :/usr/X11R6/lib*)
-   ;;
-  *)
-   echo "ERROR: RPATH \"$RPATH_VAL_NXT\" on $FILE is not 
allowed"
-   HAD_ERRORS=1
-   esac
-   done
-done
-done
-
-exit $HAD_ERRORS
-#exit 0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/brp-check-suse-84.87+git20190807.d5563f2/brp-55-boot-scripts 
new/brp-check-suse-84.87+git20191016.914fe67/brp-55-boot-scripts
--- old/brp-check-suse

commit brp-check-suse for openSUSE:Factory

2019-09-05 Thread root
Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory 
checked in at 2019-09-05 12:09:11

Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old)
 and  /work/SRC/openSUSE:Factory/.brp-check-suse.new.7948 (New)


Package is "brp-check-suse"

Thu Sep  5 12:09:11 2019 rev:61 rq:721541 version:84.87+git20190807.d5563f2

Changes:

--- /work/SRC/openSUSE:Factory/brp-check-suse/brp-check-suse.changes
2019-07-29 17:23:42.778361700 +0200
+++ /work/SRC/openSUSE:Factory/.brp-check-suse.new.7948/brp-check-suse.changes  
2019-09-05 12:09:17.295864199 +0200
@@ -1,0 +2,21 @@
+Wed Aug 07 14:06:17 UTC 2019 - mli...@suse.cz
+
+- Update to version 84.87+git20190807.d5563f2:
+  * Strip .gnu.debuglto_* and __gnu_lto_v1 in archives.
+
+---
+Mon Aug  5 13:11:53 UTC 2019 - Benjamin Greiner 
+
+- Update to version 84.87+git20190801.8862c43
+  * remove python 2.5 check (#19)
+  * remove legacy brp-60-hook check (#20)
+- rerequest changes from git20190729.e01ed36
+
+---
+Mon Jul 29 08:09:45 UTC 2019 - co...@suse.com
+
+- Update to version 84.87+git20190729.e01ed36:
+  * make desktop category error message more meaningful (#17)
+  * redefine Science and Education to comply with guidelines (#18)
+
+---

Old:

  brp-check-suse-84.87+git20190702.bac0cab.tar.xz

New:

  brp-check-suse-84.87+git20190807.d5563f2.tar.xz



Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.7mgiVe/_old  2019-09-05 12:09:18.319864008 +0200
+++ /var/tmp/diff_new_pack.7mgiVe/_new  2019-09-05 12:09:18.319864008 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0-or-later
 Group:  Development/Tools/Building
 Requires:   perl
-Version:84.87+git20190702.bac0cab
+Version:84.87+git20190807.d5563f2
 Release:0
 Url:https://github.com/openSUSE/brp-check-suse
 #

++ _servicedata ++
--- /var/tmp/diff_new_pack.7mgiVe/_old  2019-09-05 12:09:18.347864002 +0200
+++ /var/tmp/diff_new_pack.7mgiVe/_new  2019-09-05 12:09:18.347864002 +0200
@@ -1,5 +1,5 @@
 
   
 git://github.com/openSUSE/brp-check-suse.git
-  13ed30b788930d5e274740990e83b48d3df454eb
+  9aa67a9a3ea7c68abcf47093fcfe84482b9f8046
 
\ No newline at end of file

++ brp-check-suse-84.87+git20190702.bac0cab.tar.xz -> 
brp-check-suse-84.87+git20190807.d5563f2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/brp-check-suse-84.87+git20190702.bac0cab/brp-15-strip-debug 
new/brp-check-suse-84.87+git20190807.d5563f2/brp-15-strip-debug
--- old/brp-check-suse-84.87+git20190702.bac0cab/brp-15-strip-debug 
2019-07-02 13:15:39.0 +0200
+++ new/brp-check-suse-84.87+git20190807.d5563f2/brp-15-strip-debug 
2019-08-07 14:37:22.0 +0200
@@ -37,7 +37,7 @@
case $(file "$f") in
*"current ar"*|*ELF*", not stripped"*)
chmod u+w "$f" || :
-   strip -p --discard-locals -R .comment -R .note -R .gnu.lto_* 
"$f" || :
+   strip -p --discard-locals -R .comment -R .note -R .gnu.lto_* -R 
.gnu.debuglto_* -N __gnu_lto_v1 "$f" || :
;;
*)
echo "WARNING: Strange looking archive $(file $f)"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/brp-check-suse-84.87+git20190702.bac0cab/brp-50-check-python 
new/brp-check-suse-84.87+git20190807.d5563f2/brp-50-check-python
--- old/brp-check-suse-84.87+git20190702.bac0cab/brp-50-check-python
2019-07-02 13:15:39.0 +0200
+++ new/brp-check-suse-84.87+git20190807.d5563f2/brp-50-check-python
1970-01-01 01:00:00.0 +0100
@@ -1,27 +0,0 @@
-#!/bin/bash
-
-# If using normal root, avoid changing anything.
-if [ -z "$RPM_BUILD_ROOT" -o "$RPM_BUILD_ROOT" = "/" ]; then
-exit 0
-fi
-
-if [ ! -e /usr/include/python/Python.h ]; then
-   exit 0
-fi
-
-TMPDIR="$(mktemp -d /tmp/ssizecheck-XX)"
-
-find /usr/src/packages/BUILD/ -iname '**.c' -print0 | \
-xargs -r0 python /usr/lib/rpm/brp-check-python.data/ssizecheck.py > 
"$TMPDIR/$$"
-
-test -f /.buildenv && . /.buildenv
-
-cat "$TMPDIR/$$"
-
-if [ "${BUILD_BASENAME:0:4}" = "beta" ]; then
-   test -s "$TMPDIR/$$" && echo "please see 
http://www.python.org/dev/peps/pep-0353/ for hints"
-fi
-
-rm -rf "$TMPDIR"
-
-exit 0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/brp-check-suse-84.87+git20190702.bac0cab/brp-60-hook 
new/brp-check-suse-84.87+git20190807.d5563f2/brp-60-hook
--- old/brp-check-suse-84.

commit brp-check-suse for openSUSE:Factory

2019-07-29 Thread root
Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory 
checked in at 2019-07-29 17:23:41

Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old)
 and  /work/SRC/openSUSE:Factory/.brp-check-suse.new.4126 (New)


Package is "brp-check-suse"

Mon Jul 29 17:23:41 2019 rev:60 rq:714178 version:84.87+git20190702.bac0cab

Changes:

--- /work/SRC/openSUSE:Factory/brp-check-suse/brp-check-suse.changes
2019-07-08 15:09:43.875270605 +0200
+++ /work/SRC/openSUSE:Factory/.brp-check-suse.new.4126/brp-check-suse.changes  
2019-07-29 17:23:42.778361700 +0200
@@ -1,0 +2,7 @@
+Mon Jul 08 13:33:44 UTC 2019 - mli...@suse.cz
+
+- Update to version 84.87+git20190702.bac0cab:
+  * Add NO_BRP_AR as a way how to skip ar. 
+- Remove 0001-Remove-brp-75-ar-for-now.patch.
+
+---

Old:

  0001-Remove-brp-75-ar-for-now.patch
  brp-check-suse-84.87+git20190423.d0bda31.tar.xz

New:

  brp-check-suse-84.87+git20190702.bac0cab.tar.xz



Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.FYnopb/_old  2019-07-29 17:23:43.338361493 +0200
+++ /var/tmp/diff_new_pack.FYnopb/_new  2019-07-29 17:23:43.342361492 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0-or-later
 Group:  Development/Tools/Building
 Requires:   perl
-Version:84.87+git20190423.d0bda31
+Version:84.87+git20190702.bac0cab
 Release:0
 Url:https://github.com/openSUSE/brp-check-suse
 #
@@ -31,7 +31,6 @@
 # for inclusion in the git repo at https://github.com/openSUSE/brp-check-suse
 #
 Source0:%{name}-%{version}.tar.xz
-Patch0: 0001-Remove-brp-75-ar-for-now.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %global provfind sh -c "grep -v 'brp-desktop.data' | %__find_provides"
 %global __find_provides %provfind
@@ -43,7 +42,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
 %ifnarch x86_64 s390x ppc64 aarch64
 rm brp-65-lib64-linux
 %endif

++ _servicedata ++
--- /var/tmp/diff_new_pack.FYnopb/_old  2019-07-29 17:23:43.390361473 +0200
+++ /var/tmp/diff_new_pack.FYnopb/_new  2019-07-29 17:23:43.390361473 +0200
@@ -1,5 +1,5 @@
 
   
 git://github.com/openSUSE/brp-check-suse.git
-  d0bda31734c8721815c6ba99000e98659b78aa66
-
+  13ed30b788930d5e274740990e83b48d3df454eb
+
\ No newline at end of file

++ brp-check-suse-84.87+git20190423.d0bda31.tar.xz -> 
brp-check-suse-84.87+git20190702.bac0cab.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/brp-check-suse-84.87+git20190423.d0bda31/brp-75-ar 
new/brp-check-suse-84.87+git20190702.bac0cab/brp-75-ar
--- old/brp-check-suse-84.87+git20190423.d0bda31/brp-75-ar  2019-04-23 
13:07:58.0 +0200
+++ new/brp-check-suse-84.87+git20190702.bac0cab/brp-75-ar  2019-07-02 
13:15:39.0 +0200
@@ -8,6 +8,10 @@
echo "SOURCE_DATE_EPOCH is not set: skipping ar normalization"
exit 0
 fi
+if [ "$NO_BRP_AR" = "true" ] ; then
+   echo "NO_BRP_AR is set: skipping ar"
+   exit 0
+fi
 
 while read f; do
! file "$f" | grep -q "ar archive" || objcopy -D "$f" || true




commit brp-check-suse for openSUSE:Factory

2019-07-08 Thread root
Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory 
checked in at 2019-07-08 15:09:40

Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old)
 and  /work/SRC/openSUSE:Factory/.brp-check-suse.new.4615 (New)


Package is "brp-check-suse"

Mon Jul  8 15:09:40 2019 rev:59 rq:713085 version:84.87+git20190423.d0bda31

Changes:

--- /work/SRC/openSUSE:Factory/brp-check-suse/brp-check-suse.changes
2018-11-12 09:50:33.556362325 +0100
+++ /work/SRC/openSUSE:Factory/.brp-check-suse.new.4615/brp-check-suse.changes  
2019-07-08 15:09:43.875270605 +0200
@@ -1,0 +2,19 @@
+Tue Jun 18 08:45:56 UTC 2019 - Martin Liška 
+
+- Add 0001-Remove-brp-75-ar-for-now.patch in order to temporarily
+  disable the check.
+
+---
+Tue Apr 23 11:23:58 UTC 2019 - Martin Liška 
+
+- Update to version 84.87+git20190423.d0bda31:
+  * Strip LTO bytecode from static libraries.
+  * Don't treat Adwaita specially
+
+---
+Wed Feb 13 14:25:09 UTC 2019 - opensuse-packag...@opensuse.org
+
+- Update to version 84.87+git20190213.9c6487b:
+  * Add brp-75-ar to normalize ar archives
+
+---

Old:

  brp-check-suse-84.87+git20181106.224b37d.tar.xz

New:

  0001-Remove-brp-75-ar-for-now.patch
  brp-check-suse-84.87+git20190423.d0bda31.tar.xz



Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.eHoxhy/_old  2019-07-08 15:09:44.863271553 +0200
+++ /var/tmp/diff_new_pack.eHoxhy/_new  2019-07-08 15:09:44.867271557 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package brp-check-suse
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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:GPL-2.0-or-later
 Group:  Development/Tools/Building
 Requires:   perl
-Version:84.87+git20181106.224b37d
+Version:84.87+git20190423.d0bda31
 Release:0
 Url:https://github.com/openSUSE/brp-check-suse
 #
@@ -31,6 +31,7 @@
 # for inclusion in the git repo at https://github.com/openSUSE/brp-check-suse
 #
 Source0:%{name}-%{version}.tar.xz
+Patch0: 0001-Remove-brp-75-ar-for-now.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %global provfind sh -c "grep -v 'brp-desktop.data' | %__find_provides"
 %global __find_provides %provfind
@@ -42,6 +43,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 %ifnarch x86_64 s390x ppc64 aarch64
 rm brp-65-lib64-linux
 %endif

++ 0001-Remove-brp-75-ar-for-now.patch ++
>From c40244e7026bfdf1a9379542db03b12f2850f061 Mon Sep 17 00:00:00 2001
From: Martin Liska 
Date: Tue, 18 Jun 2019 10:45:09 +0200
Subject: [PATCH] Remove brp-75-ar for now.

---
 brp-75-ar | 14 --
 1 file changed, 14 deletions(-)
 delete mode 100755 brp-75-ar

diff --git a/brp-75-ar b/brp-75-ar
deleted file mode 100755
index 3b852ac..000
--- a/brp-75-ar
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash
-# If using normal root, avoid changing anything.
-if [ -z "$RPM_BUILD_ROOT" -o "$RPM_BUILD_ROOT" = "/" ]; then
-   echo "RPM_BUILD_ROOT is not set or set to / : skipping ar normalization"
-   exit 0
-fi
-if [ -z "$SOURCE_DATE_EPOCH" ] ; then
-   echo "SOURCE_DATE_EPOCH is not set: skipping ar normalization"
-   exit 0
-fi
-
-while read f; do
-   ! file "$f" | grep -q "ar archive" || objcopy -D "$f" || true
-done < <(find "$RPM_BUILD_ROOT" -type f -name "*.a" -print)
-- 
2.21.0

++ _servicedata ++
--- /var/tmp/diff_new_pack.eHoxhy/_old  2019-07-08 15:09:44.915271603 +0200
+++ /var/tmp/diff_new_pack.eHoxhy/_new  2019-07-08 15:09:44.915271603 +0200
@@ -1,5 +1,5 @@
 
   
 git://github.com/openSUSE/brp-check-suse.git
-  224b37ddbcb79dc12b0932cd7341b801d38cb0f0
-
\ No newline at end of file
+  d0bda31734c8721815c6ba99000e98659b78aa66
+

++ brp-check-suse-84.87+git20181106.224b37d.tar.xz -> 
brp-check-suse-84.87+git20190423.d0bda31.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/brp-check-suse-84.87+git20181106.224b37d/brp-15-strip-debug 
new/brp-check-suse-84.87+git20190423.d0bda31/brp-15-strip-debug
--- old/brp-check-suse-84.87+git20181106.224b37d/brp-15-strip-debug 
2018-11-06 15:30:54.0 +0100
+++ new/brp-check-suse-84.87+git20190423.d0bda31/brp-15-strip-debug 
2019-04-23 13:07:58.0 +0200
@@ -37,7 +37,7 @@
case $(file "$f") in
*"current ar"*|*ELF*", not stripp

commit brp-check-suse for openSUSE:Factory

2018-11-12 Thread root
Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory 
checked in at 2018-11-12 09:50:31

Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old)
 and  /work/SRC/openSUSE:Factory/.brp-check-suse.new (New)


Package is "brp-check-suse"

Mon Nov 12 09:50:31 2018 rev:58 rq:646678 version:84.87+git20181106.224b37d

Changes:

--- /work/SRC/openSUSE:Factory/brp-check-suse/brp-check-suse.changes
2018-09-17 14:25:33.635828364 +0200
+++ /work/SRC/openSUSE:Factory/.brp-check-suse.new/brp-check-suse.changes   
2018-11-12 09:50:33.556362325 +0100
@@ -1,0 +2,7 @@
+Tue Nov 06 14:35:26 UTC 2018 - r...@suse.de
+
+- Update to version 84.87+git20181106.224b37d:
+  * brp-15-strip-debug: deal with libs where file outputs
+more text after "not stripped" (bsc#1114695)
+
+---

Old:

  brp-check-suse-84.87+git20180809.3335364.tar.xz

New:

  brp-check-suse-84.87+git20181106.224b37d.tar.xz



Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.EVVxn5/_old  2018-11-12 09:50:34.196361365 +0100
+++ /var/tmp/diff_new_pack.EVVxn5/_new  2018-11-12 09:50:34.200361358 +0100
@@ -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/
 #
 
 
@@ -23,7 +23,7 @@
 License:GPL-2.0-or-later
 Group:  Development/Tools/Building
 Requires:   perl
-Version:84.87+git20180809.3335364
+Version:84.87+git20181106.224b37d
 Release:0
 Url:https://github.com/openSUSE/brp-check-suse
 #

++ _servicedata ++
--- /var/tmp/diff_new_pack.EVVxn5/_old  2018-11-12 09:50:34.232361310 +0100
+++ /var/tmp/diff_new_pack.EVVxn5/_new  2018-11-12 09:50:34.232361310 +0100
@@ -1,5 +1,5 @@
 
   
 git://github.com/openSUSE/brp-check-suse.git
-  526ea6b923552de04b99050a97de2d80ea65a5c0
+  224b37ddbcb79dc12b0932cd7341b801d38cb0f0
 
\ No newline at end of file

++ brp-check-suse-84.87+git20180809.3335364.tar.xz -> 
brp-check-suse-84.87+git20181106.224b37d.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/brp-check-suse-84.87+git20180809.3335364/brp-15-strip-debug 
new/brp-check-suse-84.87+git20181106.224b37d/brp-15-strip-debug
--- old/brp-check-suse-84.87+git20180809.3335364/brp-15-strip-debug 
2018-08-09 20:36:13.0 +0200
+++ new/brp-check-suse-84.87+git20181106.224b37d/brp-15-strip-debug 
2018-11-06 15:30:54.0 +0100
@@ -29,7 +29,7 @@
-prune -o \
-type f \( -perm /0111 -o -name "*.so*" \) \
-exec file {} + | \
-sed -n -e 's/^\(.*\):[ ]*ELF.*, not stripped/\1/p'
+sed -n -e 's/^\(.*\):[ ]*ELF.*, not stripped.*$/\1/p'
 )
 
 # Don't strip debuginfo from static libs, but compiler-generated local symbols




commit brp-check-suse for openSUSE:Factory

2018-09-17 Thread root
Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory 
checked in at 2018-09-17 14:25:30

Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old)
 and  /work/SRC/openSUSE:Factory/.brp-check-suse.new (New)


Package is "brp-check-suse"

Mon Sep 17 14:25:30 2018 rev:57 rq:634754 version:84.87+git20180809.3335364

Changes:

--- /work/SRC/openSUSE:Factory/brp-check-suse/brp-check-suse.changes
2017-06-12 15:10:06.897283903 +0200
+++ /work/SRC/openSUSE:Factory/.brp-check-suse.new/brp-check-suse.changes   
2018-09-17 14:25:33.635828364 +0200
@@ -1,0 +2,8 @@
+Sat Sep  8 01:21:35 UTC 2018 - Stefan Brüns 
+
+- Update to version 84.87+git20180809.3335364:
+  * Handle whitespace in symlinks correctly
+- Use %license
+- Keep brp-65-lib64-linux also on aarch64
+
+---

Old:

  brp-check-suse-84.87+git20170602.cec5415.tar.xz

New:

  brp-check-suse-84.87+git20180809.3335364.tar.xz



Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.WQl8hn/_old  2018-09-17 14:25:34.331827760 +0200
+++ /var/tmp/diff_new_pack.WQl8hn/_new  2018-09-17 14:25:34.331827760 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package brp-check-suse
 #
-# 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
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,10 +20,10 @@
 AutoReqProv:off
 Summary:Build root policy check scripts
 # we need the full perl because of XML Parsing and utf-8 
-License:GPL-2.0+
+License:GPL-2.0-or-later
 Group:  Development/Tools/Building
 Requires:   perl
-Version:84.87+git20170602.cec5415
+Version:84.87+git20180809.3335364
 Release:0
 Url:https://github.com/openSUSE/brp-check-suse
 #
@@ -42,7 +42,7 @@
 
 %prep
 %setup -q
-%ifnarch x86_64 s390x ppc64
+%ifnarch x86_64 s390x ppc64 aarch64
 rm brp-65-lib64-linux
 %endif
 
@@ -56,7 +56,7 @@
 
 %files
 %defattr(-, root, root)
-%doc COPYING
+%license COPYING
 /usr/lib/rpm/*
 
 %changelog

++ _servicedata ++
--- /var/tmp/diff_new_pack.WQl8hn/_old  2018-09-17 14:25:34.367827728 +0200
+++ /var/tmp/diff_new_pack.WQl8hn/_new  2018-09-17 14:25:34.367827728 +0200
@@ -1,5 +1,5 @@
 
   
 git://github.com/openSUSE/brp-check-suse.git
-  27a4b3664084d5edfef57ad905e8fea34e3a62bc
+  526ea6b923552de04b99050a97de2d80ea65a5c0
 
\ No newline at end of file

++ brp-check-suse-84.87+git20170602.cec5415.tar.xz -> 
brp-check-suse-84.87+git20180809.3335364.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/brp-check-suse-84.87+git20170602.cec5415/brp-25-symlink 
new/brp-check-suse-84.87+git20180809.3335364/brp-25-symlink
--- old/brp-check-suse-84.87+git20170602.cec5415/brp-25-symlink 2017-06-02 
00:12:31.0 +0200
+++ new/brp-check-suse-84.87+git20180809.3335364/brp-25-symlink 2018-08-09 
20:36:13.0 +0200
@@ -84,7 +84,7 @@
 orig_link_dest="$link_dest"
 
 new_link_dest=NONE
-link_dir="$(dirname_int $link)"
+link_dir=$(dirname_int "$link")
 
 case $link_dest in
.|..|../..) # link to current dir
@@ -160,7 +160,7 @@
*,/proc/*) # links pointing into /proc file system
 ;;
*)
- if test ! -L ./$link_dest && test ! -e $link_dest && test ! -e 
./$link_dest; then
+ if test ! -L ./"$link_dest" && test ! -e "$link_dest" && test ! -e 
./"$link_dest"; then
echo "ERROR: link target doesn't exist (neither in build root nor 
in installed system):"
echo "  $link -> $link_dest"
echo "Add the package providing the target to BuildRequires and 
Requires"
@@ -179,11 +179,11 @@
   fi
 done
 
-dest_dir="$(dirname_int $link_dest)"
+dest_dir=$(dirname_int "$link_dest")
 
 # figuring out (currently) correct destination
 if [ "$link_dir" = "$dest_dir" -o  "$dest_dir" = "." ]; then
-   new_link_dest="$(basename_int $link_dest)"
+   new_link_dest=$(basename_int "$link_dest")
 else
# figuring out top level directory
 top_dir "$link" top_link
@@ -210,7 +210,7 @@
done
 
# now we add a .. for every directory component
-   link_tmp="$(dirname_int $link_tmp)"
+   link_tmp=$(dirname_int "$link_tmp")
 
if [ "$link_tmp" = "$link_dest" ]; then
new_link_dest=.
@@ -237,7 +237,7 @@
 
 if [ "$new_link_dest" != NONE -a "$new_link_dest" != "$orig_link_dest" ]; 
then
echo "INFO: relinking $link -> $ne

commit brp-check-suse for openSUSE:Factory

2017-06-12 Thread root
Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory 
checked in at 2017-06-12 15:10:04

Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old)
 and  /work/SRC/openSUSE:Factory/.brp-check-suse.new (New)


Package is "brp-check-suse"

Mon Jun 12 15:10:04 2017 rev:56 rq:501311 version:84.87+git20170602.cec5415

Changes:

--- /work/SRC/openSUSE:Factory/brp-check-suse/brp-check-suse.changes
2016-09-12 13:21:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.brp-check-suse.new/brp-check-suse.changes   
2017-06-12 15:10:06.897283903 +0200
@@ -1,0 +2,7 @@
+Fri Jun 02 08:28:43 UTC 2017 - dims...@opensuse.org
+
+- Update to version 84.87+git20170602.cec5415:
+  * Add missing newline to Category error message
+  * brp-25-symlink: do not relink /etc/os-release
+
+---

Old:

  brp-check-suse-84.87+git20160906.bb0a7d0.tar.xz

New:

  brp-check-suse-84.87+git20170602.cec5415.tar.xz



Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.tXyCKo/_old  2017-06-12 15:10:08.549050839 +0200
+++ /var/tmp/diff_new_pack.tXyCKo/_new  2017-06-12 15:10:08.553050275 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package brp-check-suse
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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
@@ -19,11 +19,11 @@
 Name:   brp-check-suse
 AutoReqProv:off
 Summary:Build root policy check scripts
+# we need the full perl because of XML Parsing and utf-8 
 License:GPL-2.0+
 Group:  Development/Tools/Building
-# we need the full perl because of XML Parsing and utf-8 
 Requires:   perl
-Version:84.87+git20160906.bb0a7d0
+Version:84.87+git20170602.cec5415
 Release:0
 Url:https://github.com/openSUSE/brp-check-suse
 #

++ _servicedata ++
--- /var/tmp/diff_new_pack.tXyCKo/_old  2017-06-12 15:10:08.609042375 +0200
+++ /var/tmp/diff_new_pack.tXyCKo/_new  2017-06-12 15:10:08.609042375 +0200
@@ -1,5 +1,5 @@
 
   
 git://github.com/openSUSE/brp-check-suse.git
-  bb0a7d019919ab4ed17a8d38fb9dddc86d455b67
+  27a4b3664084d5edfef57ad905e8fea34e3a62bc
 
\ No newline at end of file

++ brp-check-suse-84.87+git20160906.bb0a7d0.tar.xz -> 
brp-check-suse-84.87+git20170602.cec5415.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/brp-check-suse-84.87+git20160906.bb0a7d0/brp-25-symlink 
new/brp-check-suse-84.87+git20170602.cec5415/brp-25-symlink
--- old/brp-check-suse-84.87+git20160906.bb0a7d0/brp-25-symlink 2016-09-06 
10:01:17.0 +0200
+++ new/brp-check-suse-84.87+git20170602.cec5415/brp-25-symlink 2017-06-02 
00:12:31.0 +0200
@@ -143,6 +143,8 @@
 continue;;
/sbin/init,*) # don't create absolute symlink for /sbin/init
 continue;;
+   /etc/os-release,*) # don't create absolute symlink for /etc/os-release 
(boo#1028408).
+continue;;
 *,/etc/alternatives/*) # white list alternatives
  ;;
*share/automake-*)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/brp-check-suse-84.87+git20160906.bb0a7d0/brp-desktop.data/xdg_menu 
new/brp-check-suse-84.87+git20170602.cec5415/brp-desktop.data/xdg_menu
--- old/brp-check-suse-84.87+git20160906.bb0a7d0/brp-desktop.data/xdg_menu  
2016-09-06 10:01:17.0 +0200
+++ new/brp-check-suse-84.87+git20170602.cec5415/brp-desktop.data/xdg_menu  
2017-06-02 00:12:31.0 +0200
@@ -1852,7 +1852,7 @@
}
if ( $menu->{Name} eq 'Applications' or $menu->{Name} 
eq 'More Programs' ) {
$output .= "ERROR: No sufficient Category 
definition: $desktop->{file} \n";
-   $output .= "Please refer to 
https://en.opensuse.org/openSUSE:Packaging_desktop_menu_categories";;
+   $output .= "Please refer to 
https://en.opensuse.org/openSUSE:Packaging_desktop_menu_categories\n";;
$validate_error = 1;
}
 




commit brp-check-suse for openSUSE:Factory

2016-09-12 Thread h_root
Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory 
checked in at 2016-09-12 13:21:11

Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old)
 and  /work/SRC/openSUSE:Factory/.brp-check-suse.new (New)


Package is "brp-check-suse"

Changes:

--- /work/SRC/openSUSE:Factory/brp-check-suse/brp-check-suse.changes
2016-01-26 10:14:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.brp-check-suse.new/brp-check-suse.changes   
2016-09-12 13:21:13.0 +0200
@@ -1,0 +2,10 @@
+Tue Sep 06 14:14:15 UTC 2016 - lnus...@suse.de
+
+- Update to version 84.87+git20160906.bb0a7d0:
+  * brp-25-symlink: handle properly symlinks to root directory
+  * - do not fail over new DefaultLayout element
+  * neededforbuild -> BuildRequires
+  * properly create tarball
+  * Hint to the desktop category rules. (#6)
+
+---

Old:

  brp-check-suse-13.2+git20150521.971ea2f.tar.xz

New:

  brp-check-suse-84.87+git20160906.bb0a7d0.tar.xz



Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.HjBvja/_old  2016-09-12 13:21:15.0 +0200
+++ /var/tmp/diff_new_pack.HjBvja/_new  2016-09-12 13:21:15.0 +0200
@@ -23,7 +23,7 @@
 Group:  Development/Tools/Building
 # we need the full perl because of XML Parsing and utf-8 
 Requires:   perl
-Version:13.2+git20150521.971ea2f
+Version:84.87+git20160906.bb0a7d0
 Release:0
 Url:https://github.com/openSUSE/brp-check-suse
 #

++ _service ++
--- /var/tmp/diff_new_pack.HjBvja/_old  2016-09-12 13:21:15.0 +0200
+++ /var/tmp/diff_new_pack.HjBvja/_new  2016-09-12 13:21:15.0 +0200
@@ -1,7 +1,7 @@
 
   
-13.2
-13.2+git%cd.%h
+84.87
+84.87+git%cd.%h
 git://github.com/openSUSE/brp-check-suse.git
 git
 .git

++ _servicedata ++
--- /var/tmp/diff_new_pack.HjBvja/_old  2016-09-12 13:21:15.0 +0200
+++ /var/tmp/diff_new_pack.HjBvja/_new  2016-09-12 13:21:15.0 +0200
@@ -1,5 +1,5 @@
 
   
 git://github.com/openSUSE/brp-check-suse.git
-  031533d7bb03c467fa8c8c8ec32b62b5bc9f405b
+  bb0a7d019919ab4ed17a8d38fb9dddc86d455b67
 
\ No newline at end of file

++ brp-check-suse-13.2+git20150521.971ea2f.tar.xz -> 
brp-check-suse-84.87+git20160906.bb0a7d0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/brp-check-suse-13.2+git20150521.971ea2f/Makefile 
new/brp-check-suse-84.87+git20160906.bb0a7d0/Makefile
--- old/brp-check-suse-13.2+git20150521.971ea2f/Makefile2015-05-21 
15:09:12.0 +0200
+++ new/brp-check-suse-84.87+git20160906.bb0a7d0/Makefile   2016-09-06 
10:01:17.0 +0200
@@ -8,8 +8,8 @@
@./mkchanges | tee $(PKG)/.changes
@test ! -s $(PKG)/.changes || git push
@test -z "`git rev-list remotes/origin/master..master`" || { echo 
"unpushed changes"; exit 1; }
-   @f=(*bz2); test -z "$f" || /bin/rm -vi *.bz2
+   @f=(*xz); test -z "$f" || /bin/rm -vi *.xz
@./mktar
-   @mv *bz2 $(PKG)
+   @mv *xz $(PKG)
 
 .PHONY: all package
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/brp-check-suse-13.2+git20150521.971ea2f/brp-desktop.data/xdg_menu 
new/brp-check-suse-84.87+git20160906.bb0a7d0/brp-desktop.data/xdg_menu
--- old/brp-check-suse-13.2+git20150521.971ea2f/brp-desktop.data/xdg_menu   
2015-05-21 15:09:12.0 +0200
+++ new/brp-check-suse-84.87+git20160906.bb0a7d0/brp-desktop.data/xdg_menu  
2016-09-06 10:01:17.0 +0200
@@ -1852,6 +1852,7 @@
}
if ( $menu->{Name} eq 'Applications' or $menu->{Name} 
eq 'More Programs' ) {
$output .= "ERROR: No sufficient Category 
definition: $desktop->{file} \n";
+   $output .= "Please refer to 
https://en.opensuse.org/openSUSE:Packaging_desktop_menu_categories";;
$validate_error = 1;
}
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/brp-check-suse-13.2+git20150521.971ea2f/mktar 
new/brp-check-suse-84.87+git20160906.bb0a7d0/mktar
--- old/brp-check-suse-13.2+git20150521.971ea2f/mktar   2015-05-21 
15:09:12.0 +0200
+++ new/brp-check-suse-84.87+git20160906.bb0a7d0/mktar  2016-09-06 
10:01:17.0 +0200
@@ -1,13 +1,10 @@
 #!/bin/sh
 set -e
 NAME=brp-check-suse
-VERSION=1.0
-datefmt="%Y.%m.%d.%H%M"
-LAST_COMMIT=(`git rev-list --timestamp HEAD^..HEAD`)
-DATE=`date +$datefmt -d "1970-01-01 00:00 UTC $LAST_COMMIT seconds"`
-#scmver="$DATE"
-fullver="$VERSI

commit brp-check-suse for openSUSE:Factory

2016-01-26 Thread h_root
Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory 
checked in at 2016-01-26 10:14:21

Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old)
 and  /work/SRC/openSUSE:Factory/.brp-check-suse.new (New)


Package is "brp-check-suse"

Changes:

--- /work/SRC/openSUSE:Factory/brp-check-suse/brp-check-suse.changes
2015-04-23 07:55:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.brp-check-suse.new/brp-check-suse.changes   
2016-01-26 10:14:22.0 +0100
@@ -1,0 +2,10 @@
+Wed Jan 13 18:33:25 CET 2016 - r...@suse.de
+
+- update tarball to actually include last fixes, new version
+  is 13.2+git20150521.971ea2f (bnc#781101)
+- change neededforbuild to BuildRequires in output text in
+  brp-25-symlink
+- do not fail over new DefaultLayout element 
+- brp-25-symlink: handle properly symlinks to root directory
+
+---

Old:

  brp-check-suse-13.2+git20150217.031533d.tar.xz

New:

  brp-check-suse-13.2+git20150521.971ea2f.tar.xz



Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.gqSeiO/_old  2016-01-26 10:14:23.0 +0100
+++ /var/tmp/diff_new_pack.gqSeiO/_new  2016-01-26 10:14:23.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package brp-check-suse
 #
-# 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 @@
 Group:  Development/Tools/Building
 # we need the full perl because of XML Parsing and utf-8 
 Requires:   perl
-Version:13.2+git20150217.031533d
+Version:13.2+git20150521.971ea2f
 Release:0
 Url:https://github.com/openSUSE/brp-check-suse
 #

++ brp-check-suse-13.2+git20150217.031533d.tar.xz -> 
brp-check-suse-13.2+git20150521.971ea2f.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/brp-check-suse-13.2+git20150217.031533d/brp-25-symlink 
new/brp-check-suse-13.2+git20150521.971ea2f/brp-25-symlink
--- old/brp-check-suse-13.2+git20150217.031533d/brp-25-symlink  2015-02-17 
00:51:57.0 +0100
+++ new/brp-check-suse-13.2+git20150521.971ea2f/brp-25-symlink  2015-05-21 
15:09:12.0 +0200
@@ -104,7 +104,9 @@
 # cleaning out double slash
 strip_slashes link_dest
 link_dest="${link_dest%.}"
-link_dest="${link_dest%/}"
+if [ "$link_dest" != '/' ]; then
+   link_dest="${link_dest%/}"
+fi
 
 # eliminating /./ components
 link_dest="${link_dest//\/.\///}"
@@ -159,7 +161,7 @@
  if test ! -L ./$link_dest && test ! -e $link_dest && test ! -e 
./$link_dest; then
echo "ERROR: link target doesn't exist (neither in build root nor 
in installed system):"
echo "  $link -> $link_dest"
-   echo "Add the package providing the target to neededforbuild and 
Requires"
+   echo "Add the package providing the target to BuildRequires and 
Requires"
test "$NO_BRP_STALE_LINK_ERROR" != "yes" && had_errors=1
  fi
  ;;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/brp-check-suse-13.2+git20150217.031533d/brp-desktop.data/xdg_menu 
new/brp-check-suse-13.2+git20150521.971ea2f/brp-desktop.data/xdg_menu
--- old/brp-check-suse-13.2+git20150217.031533d/brp-desktop.data/xdg_menu   
2015-02-17 00:51:57.0 +0100
+++ new/brp-check-suse-13.2+git20150521.971ea2f/brp-desktop.data/xdg_menu   
2015-05-21 15:09:12.0 +0200
@@ -945,6 +945,11 @@
interpret_Exclude($tree->[$i], $menu{'entries'}, $pool);
$i++;
}
+elsif ($tree->[$i] eq 'DefaultLayout') {
+$i++;
+   # just ignore, not important for this test
+$i++;
+}
elsif ($tree->[$i] eq '0') {
$i++;
if ($tree->[$i] !~ /^\s*$/) {




commit brp-check-suse for openSUSE:Factory

2015-04-22 Thread h_root
Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory 
checked in at 2015-04-23 07:55:28

Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old)
 and  /work/SRC/openSUSE:Factory/.brp-check-suse.new (New)


Package is "brp-check-suse"

Changes:

--- /work/SRC/openSUSE:Factory/brp-check-suse/brp-check-suse.changes
2015-02-27 10:55:47.0 +0100
+++ /work/SRC/openSUSE:Factory/.brp-check-suse.new/brp-check-suse.changes   
2015-04-23 07:55:29.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 10 13:40:21 CEST 2015 - r...@suse.de
+
+- do not fail over new DefaultLayout element (from adrian)
+- brp-25-symlink: handle properly symlinks to root directory
+  (fix bnc#781101) (from sleep_walker)
+
+---



Other differences:
--



commit brp-check-suse for openSUSE:Factory

2015-02-27 Thread h_root
Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory 
checked in at 2015-02-27 10:55:45

Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old)
 and  /work/SRC/openSUSE:Factory/.brp-check-suse.new (New)


Package is "brp-check-suse"

Changes:

--- /work/SRC/openSUSE:Factory/brp-check-suse/brp-check-suse.changes
2014-11-04 17:27:26.0 +0100
+++ /work/SRC/openSUSE:Factory/.brp-check-suse.new/brp-check-suse.changes   
2015-02-27 10:55:47.0 +0100
@@ -1,0 +2,8 @@
+Mon Feb 16 23:51:57 UTC 2015 - opensuse-packag...@opensuse.org
+
+- Update to version 13.2+git20150217.031533d:
+  + - Update applications.menu from desktop-data to accept new
+  Categories (bnc#443364), remove PuzzleGame (now LogicGame)
+  (thanks sbrabec)
+
+---

Old:

  brp-check-suse-13.2+git20140829.9539e1d.tar.xz

New:

  brp-check-suse-13.2+git20150217.031533d.tar.xz



Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.XiwB2J/_old  2015-02-27 10:55:48.0 +0100
+++ /var/tmp/diff_new_pack.XiwB2J/_new  2015-02-27 10:55:48.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package brp-check-suse
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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 @@
 Group:  Development/Tools/Building
 # we need the full perl because of XML Parsing and utf-8 
 Requires:   perl
-Version:13.2+git20140829.9539e1d
+Version:13.2+git20150217.031533d
 Release:0
 Url:https://github.com/openSUSE/brp-check-suse
 #

++ _servicedata ++
--- /var/tmp/diff_new_pack.XiwB2J/_old  2015-02-27 10:55:48.0 +0100
+++ /var/tmp/diff_new_pack.XiwB2J/_new  2015-02-27 10:55:48.0 +0100
@@ -1,5 +1,5 @@
 
   
 git://github.com/openSUSE/brp-check-suse.git
-  9539e1dbb0
+  031533d7bb03c467fa8c8c8ec32b62b5bc9f405b
 
\ No newline at end of file

++ brp-check-suse-13.2+git20140829.9539e1d.tar.xz -> 
brp-check-suse-13.2+git20150217.031533d.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/brp-check-suse-13.2+git20140829.9539e1d/brp-desktop.data/applications.menu 
new/brp-check-suse-13.2+git20150217.031533d/brp-desktop.data/applications.menu
--- 
old/brp-check-suse-13.2+git20140829.9539e1d/brp-desktop.data/applications.menu  
2014-10-20 16:35:35.0 +0200
+++ 
new/brp-check-suse-13.2+git20150217.031533d/brp-desktop.data/applications.menu  
2015-02-17 00:51:57.0 +0100
@@ -8,6 +8,10 @@



+   
+   
+   
+   
 

X-SuSE-core
@@ -151,120 +155,271 @@



-   Edutainment
-   suse-edutainment.directory
+   Science
+   suse-science.directory

-   X-SuSE-Core-Edutainment
+   X-SuSE-Core-Science


-   Science
-   
suse-edutainment-science.directory
+   More Programs
+   suse-more.directory


-   Education
-   
-   Science
-   ComputerScience
-   Biology
-   Economy
-   Geography
-   Geology
-   Geoscience
-   History
-   ImageProcessing
-   Literature
-   MedicalSoftware
-   Physics
-   Robotics
-   Sports
-   Electronics
-   
-   
-   X-SuSE-Core-Edutainment
-   Astronomy
-   Chemistry
-   Construction
-   DataVisualization
-   Engineering
-   Electricity
-   Art
-   Math
-   NumericalAnalysis
-

commit brp-check-suse for openSUSE:Factory

2014-11-04 Thread h_root
Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory 
checked in at 2014-11-04 17:27:22

Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old)
 and  /work/SRC/openSUSE:Factory/.brp-check-suse.new (New)


Package is "brp-check-suse"

Changes:

--- /work/SRC/openSUSE:Factory/brp-check-suse/brp-check-suse.changes
2014-08-08 10:13:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.brp-check-suse.new/brp-check-suse.changes   
2014-11-04 17:27:26.0 +0100
@@ -1,0 +2,13 @@
+Mon Oct 20 14:35:36 UTC 2014 - dmuel...@suse.com
+
+- Update to version 13.2+git20140829.9539e1d:
+  + xdg_menu: use File::Find instead of calling out to find
+  + brp-25-symlink: fix missing alternatives
+  + brp-25-symlink: fix eating /./ in path
+  + brp-25-symlink: massive rewrite to reduce number of calls
+  + brp-40-rootfs: reduce number of calls
+  + brp-60-hook: add some double quotes
+  + brp-50-check-python: add some double quotes, remove commented code
+  + Adwaita is a defined icon theme mandatory installed as dependency to GTK3.
+
+---

Old:

  brp-check-suse-13.2+git20140727.d76b99d.tar.xz

New:

  _servicedata
  brp-check-suse-13.2+git20140829.9539e1d.tar.xz



Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.3yDG0H/_old  2014-11-04 17:27:27.0 +0100
+++ /var/tmp/diff_new_pack.3yDG0H/_new  2014-11-04 17:27:27.0 +0100
@@ -23,7 +23,7 @@
 Group:  Development/Tools/Building
 # we need the full perl because of XML Parsing and utf-8 
 Requires:   perl
-Version:13.2+git20140727.d76b99d
+Version:13.2+git20140829.9539e1d
 Release:0
 Url:https://github.com/openSUSE/brp-check-suse
 #

++ _service ++
--- /var/tmp/diff_new_pack.3yDG0H/_old  2014-11-04 17:27:27.0 +0100
+++ /var/tmp/diff_new_pack.3yDG0H/_new  2014-11-04 17:27:27.0 +0100
@@ -4,6 +4,9 @@
 13.2+git%cd.%h
 git://github.com/openSUSE/brp-check-suse.git
 git
+.git
+master
+enable
   
   
 xz

++ _servicedata ++

  
git://github.com/openSUSE/brp-check-suse.git
  9539e1dbb0
++ brp-check-suse-13.2+git20140727.d76b99d.tar.xz -> 
brp-check-suse-13.2+git20140829.9539e1d.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/brp-check-suse-13.2+git20140727.d76b99d/brp-desktop.data/xdg_menu 
new/brp-check-suse-13.2+git20140829.9539e1d/brp-desktop.data/xdg_menu
--- old/brp-check-suse-13.2+git20140727.d76b99d/brp-desktop.data/xdg_menu   
2014-07-27 09:40:17.0 +0200
+++ new/brp-check-suse-13.2+git20140829.9539e1d/brp-desktop.data/xdg_menu   
2014-10-20 16:35:35.0 +0200
@@ -11,6 +11,7 @@
 use Encode;
 use I18N::Langinfo qw(langinfo CODESET);
 use POSIX qw(locale_h);
+use File::Find;
 
 my $Version = "0.2";
 
@@ -1791,6 +1792,46 @@
return $output;
 }
 
+sub find_icon ($@)
+{
+   my $icon = shift;
+   my @icon_dirs = ();
+   my @themes = ('pixmaps','icons/hicolor','icons/Adwaita');
+   push @themes, @_;
+   my @sizes = ('16x16','22x22','24x24','32x32','36x36','48x48',
+'64x64','72x72','96x96','128x128','192x192','scalable');
+   my @types = ('actions','animations','apps','categories','devices',
+'emblems','emotes','filesystems','intl','mimetypes',
+'places','status','stock');
+
+   for my $d1 ('/usr','/opt/kde3', '/opt/gnome') {
+   for my $d2 (@themes) {
+   push @icon_dirs, "$d1/share/$d2";
+   for my $d3 (@sizes) {
+   push @icon_dirs, map { "$d1/share/$d2/$d3/$_" } 
@types;
+   }
+   }
+   }
+   my $found = 0;
+   find(sub { $found = 1 if
+  $_ eq "$icon" ||
+  $_ eq "$icon.png" ||
+  $_ eq "$icon.jpg" ||
+  $_ eq "$icon.xpm" ||
+  $_ eq "$icon.svg" ||
+  $_ eq "$icon.svgz"; },
+map { "$ENV{RPM_BUILD_ROOT}$_" } @icon_dirs);
+   find(sub { $found = 1 if
+  $_ eq "$icon" ||
+  $_ eq "$icon.png" ||
+  $_ eq "$icon.jpg" ||
+  $_ eq "$icon.xpm" ||
+  $_ eq "$icon.svg" ||
+  $_ eq "$icon.svgz"; }, @icon_dirs)
+   unless $found;
+   return $found;
+}
+
 sub output_validate ($;$)
 {
my ($menu, $indent) = @_;
@@ -1824,16 +1865,12 @@
 # standard name, accept it withou

commit brp-check-suse for openSUSE:Factory

2014-08-08 Thread h_root
Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory 
checked in at 2014-08-08 10:10:23

Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old)
 and  /work/SRC/openSUSE:Factory/.brp-check-suse.new (New)


Package is "brp-check-suse"

Changes:

--- /work/SRC/openSUSE:Factory/brp-check-suse/brp-check-suse.changes
2014-07-30 07:34:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.brp-check-suse.new/brp-check-suse.changes   
2014-08-08 10:13:36.0 +0200
@@ -1,0 +2,5 @@
+Wed Jul 30 12:41:49 UTC 2014 - sleep_wal...@suse.cz
+
+- correct URL to github repo
+
+---



Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.QOOjTC/_old  2014-08-08 10:13:37.0 +0200
+++ /var/tmp/diff_new_pack.QOOjTC/_new  2014-08-08 10:13:37.0 +0200
@@ -25,7 +25,7 @@
 Requires:   perl
 Version:13.2+git20140727.d76b99d
 Release:0
-Url:http://gitorious.org/opensuse/brp-check-suse/
+Url:https://github.com/openSUSE/brp-check-suse
 #
 # Note: don't rebuild this manually. Instead submit your patches
 # for inclusion in the git repo at https://github.com/openSUSE/brp-check-suse

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit brp-check-suse for openSUSE:Factory

2014-07-29 Thread h_root
Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory 
checked in at 2014-07-30 07:34:15

Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old)
 and  /work/SRC/openSUSE:Factory/.brp-check-suse.new (New)


Package is "brp-check-suse"

Changes:

--- /work/SRC/openSUSE:Factory/brp-check-suse/brp-check-suse.changes
2014-07-10 09:32:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.brp-check-suse.new/brp-check-suse.changes   
2014-07-30 07:34:16.0 +0200
@@ -1,0 +2,37 @@
+Sun Jul 27 07:40:38 UTC 2014 - sleep_wal...@suse.cz
+
+- brp-25-symlink: add mising '/etc/alternatives' back to whitelist
+
+---
+Sat Jul 26 12:27:00 UTC 2014 - sleep_wal...@suse.cz
+
+- brp-25-symlink: fix eating /./ in path
+
+---
+Fri Jul 25 17:47:24 UTC 2014 - sleep_wal...@suse.cz
+
+- massive rewrite of brp-25-symlink to reduce number of calls our
+  tests shown speedup from 8,5 mins to 1 min for kernel-default
+  (year ago)
+
+---
+Wed Jul 23 22:54:50 UTC 2014 - sleep_wal...@suse.cz
+
+- All GTK apps are allowed to assume the presence of the
+  Adwaita-icon-theme package; As a result of this, we now accept icons
+  in icons/Adwaita on the whitelist (just as hicolor).
+  patch by DimStar
+
+---
+Wed Jul 23 22:15:02 UTC 2014 - sleep_wal...@suse.cz
+
+- remove brp-20-check-la, it is broken and la files are mostly
+  deleted anyway
+- reduction of number of calls used by using more bashism, passing
+  more regexp at once, use more double quotes
+   brp-15-strip-debug
+   brp-45-tcl
+   brp-50-check-python
+   brp-60-hook
+
+---

Old:

  brp-check-suse-13.2+git20140702.039494f.tar.xz

New:

  brp-check-suse-13.2+git20140727.d76b99d.tar.xz



Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.wpPqhK/_old  2014-07-30 07:34:17.0 +0200
+++ /var/tmp/diff_new_pack.wpPqhK/_new  2014-07-30 07:34:17.0 +0200
@@ -23,7 +23,7 @@
 Group:  Development/Tools/Building
 # we need the full perl because of XML Parsing and utf-8 
 Requires:   perl
-Version:13.2+git20140702.039494f
+Version:13.2+git20140727.d76b99d
 Release:0
 Url:http://gitorious.org/opensuse/brp-check-suse/
 #

++ brp-check-suse-13.2+git20140702.039494f.tar.xz -> 
brp-check-suse-13.2+git20140727.d76b99d.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/brp-check-suse-13.2+git20140702.039494f/brp-15-strip-debug 
new/brp-check-suse-13.2+git20140727.d76b99d/brp-15-strip-debug
--- old/brp-check-suse-13.2+git20140702.039494f/brp-15-strip-debug  
2014-07-02 15:12:51.0 +0200
+++ new/brp-check-suse-13.2+git20140727.d76b99d/brp-15-strip-debug  
2014-07-27 09:40:17.0 +0200
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 # If using normal root, avoid changing anything.
 if [ -z "$RPM_BUILD_ROOT" -o "$RPM_BUILD_ROOT" = "/" ]; then
echo "RPM_BUILD_ROOT is not set or set to / : skipping strip"
@@ -9,30 +9,39 @@
exit 0
 fi
 
-FIND_IGNORE='\( -path $RPM_BUILD_ROOT/usr/lib/debug -o -path 
$RPM_BUILD_ROOT/lib/modules -o -path $RPM_BUILD_ROOT/opt/cross -o -path 
$RPM_BUILD_ROOT/proc \) -prune -o'
+FIND_IGNORE=(
+'('
+-path "$RPM_BUILD_ROOT/usr/lib/debug" -o -path
+"$RPM_BUILD_ROOT/lib/modules" -o -path "$RPM_BUILD_ROOT/opt/cross" -o
+-path "$RPM_BUILD_ROOT/proc"
+')'
+-prune -o
+)
 
 # Strip debuginfo from ELF binaries, but not static libraries or kernel modules
-for f in $(find $RPM_BUILD_ROOT $(echo "$(eval "echo $FIND_IGNORE")") \
-\( -name "*.a" -o -name "*.ko" \) -prune -o \
--type f \( -perm /0111 -o -name "*.so*" \) -exec file {} \; | \
-sed -n -e 's/^\(.*\):[ ]*ELF.*, not stripped/\1/p'); do
-   mode=$(stat -c %a $f)
-   chmod u+w $f || :
-   strip -p --strip-debug --discard-locals -R .comment -R .note $f || :
-   chmod $mode $f
-done
+while read f; do
+   mode="$(stat -c %a "$f")"
+   chmod u+w "$f" || :
+   strip -p --strip-debug --discard-locals -R .comment -R .note "$f" || :
+   chmod "$mode" "$f"
+done < <(
+find "$RPM_BUILD_ROOT" "${FIND_IGNORE[@]}" \( -name "*.a" -o -name "*.ko" 
\) \
+   -prune -o \
+   -type f \( -perm /0111 -o -name "*.so*" \) \
+   -exec file {} + | \
+sed -n -e 's/^\(.*\):[ ]*ELF.*, not stripped/\1/p'
+)
 
 # Don't strip debuginfo from static libs, but compiler-generated local sym

commit brp-check-suse for openSUSE:Factory

2014-07-10 Thread h_root
Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory 
checked in at 2014-07-10 08:24:42

Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old)
 and  /work/SRC/openSUSE:Factory/.brp-check-suse.new (New)


Package is "brp-check-suse"

Changes:

--- /work/SRC/openSUSE:Factory/brp-check-suse/brp-check-suse.changes
2014-02-25 16:41:12.0 +0100
+++ /work/SRC/openSUSE:Factory/.brp-check-suse.new/brp-check-suse.changes   
2014-07-10 09:32:07.0 +0200
@@ -1,0 +2,7 @@
+Wed Jul  2 15:14:07 CEST 2014 - r...@suse.de
+
+- do not ignore errors just because package has no init script
+- allow .local scripts for aaa_base so we can ghost them there
+- remove outdated echo line
+
+---

Old:

  brp-check-suse-13.2+git20140224.a3fcc48.tar.xz

New:

  brp-check-suse-13.2+git20140702.039494f.tar.xz



Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.8bJHkc/_old  2014-07-10 09:32:07.0 +0200
+++ /var/tmp/diff_new_pack.8bJHkc/_new  2014-07-10 09:32:07.0 +0200
@@ -23,7 +23,7 @@
 Group:  Development/Tools/Building
 # we need the full perl because of XML Parsing and utf-8 
 Requires:   perl
-Version:13.2+git20140224.a3fcc48
+Version:13.2+git20140702.039494f
 Release:0
 Url:http://gitorious.org/opensuse/brp-check-suse/
 #

++ brp-check-suse-13.2+git20140224.a3fcc48.tar.xz -> 
brp-check-suse-13.2+git20140702.039494f.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/brp-check-suse-13.2+git20140224.a3fcc48/brp-55-boot-scripts 
new/brp-check-suse-13.2+git20140702.039494f/brp-55-boot-scripts
--- old/brp-check-suse-13.2+git20140224.a3fcc48/brp-55-boot-scripts 
2014-02-24 10:13:04.0 +0100
+++ new/brp-check-suse-13.2+git20140702.039494f/brp-55-boot-scripts 
2014-07-02 15:12:51.0 +0200
@@ -50,6 +50,7 @@
 *.local)
case "${s%.*}" in
halt|boot|after|before)
+   test "$RPM_PACKAGE_NAME" = "aaa_base" && continue
echo "E: Reserved file \`$s' found in ${INTIDIR}!"
;;
*)
@@ -75,7 +76,7 @@
 scripts="${scripts:+${scripts} }$s"
 done
 
-test -n "$scripts" || exit 0
+test -n "$scripts" -o "$ret" -gt 0 || exit 0
 
 #
 # Uses global variables $head for the LSB header
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/brp-check-suse-13.2+git20140224.a3fcc48/brp-65-lib64-linux 
new/brp-check-suse-13.2+git20140702.039494f/brp-65-lib64-linux
--- old/brp-check-suse-13.2+git20140224.a3fcc48/brp-65-lib64-linux  
2014-02-24 10:13:04.0 +0100
+++ new/brp-check-suse-13.2+git20140702.039494f/brp-65-lib64-linux  
2014-07-02 15:12:51.0 +0200
@@ -1,7 +1,6 @@
 #!/bin/bash
 # script checks wether package is 64-bit clean
 # and also for a linker bug. (linker allows 64bit libs to link 32bit libs)
-echo "s...@suse.de: if you find problems with this script, drop me a note"
 # If using normal root, avoid changing anything:
 if [ -z "$RPM_BUILD_ROOT" -o "$RPM_BUILD_ROOT" = "/" ]; then
exit 0

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit brp-check-suse for openSUSE:Factory

2014-02-25 Thread h_root
Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory 
checked in at 2014-02-25 16:41:10

Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old)
 and  /work/SRC/openSUSE:Factory/.brp-check-suse.new (New)


Package is "brp-check-suse"

Changes:

--- /work/SRC/openSUSE:Factory/brp-check-suse/brp-check-suse.changes
2012-11-13 09:38:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.brp-check-suse.new/brp-check-suse.changes   
2014-02-25 16:41:12.0 +0100
@@ -1,0 +2,7 @@
+Mon Feb 24 09:14:36 UTC 2014 - co...@suse.com
+
+- switch to _service fetching from github
+- fix brp-symlinks to avoid errors on links to alternatives and
+  remove check-broken-symlinks.diff
+
+---

Old:

  brp-check-suse-1.0.tar.bz2
  check-broken-symlinks.diff

New:

  _service
  brp-check-suse-13.2+git20140224.a3fcc48.tar.xz



Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.inNwB6/_old  2014-02-25 16:41:13.0 +0100
+++ /var/tmp/diff_new_pack.inNwB6/_new  2014-02-25 16:41:13.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package brp-check-suse
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products 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,19 +23,14 @@
 Group:  Development/Tools/Building
 # we need the full perl because of XML Parsing and utf-8 
 Requires:   perl
-Version:1.0
+Version:13.2+git20140224.a3fcc48
 Release:0
 Url:http://gitorious.org/opensuse/brp-check-suse/
 #
 # Note: don't rebuild this manually. Instead submit your patches
-# for inclusion in the git repo!
+# for inclusion in the git repo at https://github.com/openSUSE/brp-check-suse
 #
-# git clone git://gitorious.org/opensuse/brp-check-suse.git
-# cd post-build-checks
-# make package
-#
-Source0:%{name}-%{version}.tar.bz2
-Patch0: check-broken-symlinks.diff
+Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %global provfind sh -c "grep -v 'brp-desktop.data' | %__find_provides"
 %global __find_provides %provfind
@@ -50,7 +45,6 @@
 %ifnarch x86_64 s390x ppc64
 rm brp-65-lib64-linux
 %endif
-%patch0 -p1
 
 %build
 # nothing to do

++ _service ++

  
13.2
13.2+git%cd.%h
git://github.com/openSUSE/brp-check-suse.git
git
  
  
xz
*.tar
  
  

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit brp-check-suse for openSUSE:Factory

2012-11-13 Thread h_root
Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory 
checked in at 2012-11-13 09:37:53

Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old)
 and  /work/SRC/openSUSE:Factory/.brp-check-suse.new (New)


Package is "brp-check-suse", Maintainer is "r...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/brp-check-suse/brp-check-suse.changes
2012-07-02 10:15:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.brp-check-suse.new/brp-check-suse.changes   
2012-11-13 09:38:30.0 +0100
@@ -1,0 +2,5 @@
+Mon Nov 12 12:33:25 UTC 2012 - co...@suse.com
+
+- document the need for full perl
+
+---



Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.nc2so8/_old  2012-11-13 09:38:32.0 +0100
+++ /var/tmp/diff_new_pack.nc2so8/_new  2012-11-13 09:38:32.0 +0100
@@ -21,6 +21,8 @@
 Summary:Build root policy check scripts
 License:GPL-2.0+
 Group:  Development/Tools/Building
+# we need the full perl because of XML Parsing and utf-8 
+Requires:   perl
 Version:1.0
 Release:0
 Url:http://gitorious.org/opensuse/brp-check-suse/

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit brp-check-suse for openSUSE:Factory

2012-07-02 Thread h_root
Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory 
checked in at 2012-07-02 09:35:07

Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old)
 and  /work/SRC/openSUSE:Factory/.brp-check-suse.new (New)


Package is "brp-check-suse", Maintainer is "r...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/brp-check-suse/brp-check-suse.changes
2012-03-16 13:09:58.0 +0100
+++ /work/SRC/openSUSE:Factory/.brp-check-suse.new/brp-check-suse.changes   
2012-07-02 10:15:32.0 +0200
@@ -1,0 +2,5 @@
+Sun Jul  1 19:37:50 UTC 2012 - co...@suse.com
+
+- do not allow symlinks to point to itself (not existant as result)
+
+---

New:

  check-broken-symlinks.diff



Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.Bqcn7I/_old  2012-07-02 10:15:37.0 +0200
+++ /var/tmp/diff_new_pack.Bqcn7I/_new  2012-07-02 10:15:37.0 +0200
@@ -33,6 +33,7 @@
 # make package
 #
 Source0:%{name}-%{version}.tar.bz2
+Patch0: check-broken-symlinks.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %global provfind sh -c "grep -v 'brp-desktop.data' | %__find_provides"
 %global __find_provides %provfind
@@ -47,6 +48,7 @@
 %ifnarch x86_64 s390x ppc64
 rm brp-65-lib64-linux
 %endif
+%patch0 -p1
 
 %build
 # nothing to do

++ check-broken-symlinks.diff ++
Index: brp-check-suse-1.0/brp-25-symlink
===
--- brp-check-suse-1.0.orig/brp-25-symlink  2012-03-13 13:52:11.0 
+0100
+++ brp-check-suse-1.0/brp-25-symlink   2012-07-01 21:37:11.698384089 +0200
@@ -79,6 +79,11 @@ do
fi
 done
 
+if test "$link" = "$link_dest"; then
+  echo "ERROR: $link points to itself (as $orig_link_dest)"
+  exit 1
+fi
+
 # black list
 case "$link,$link_dest" in
*,/var/lib/named*)
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit brp-check-suse for openSUSE:Factory

2012-03-16 Thread h_root
Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory 
checked in at 2012-03-16 13:09:57

Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old)
 and  /work/SRC/openSUSE:Factory/.brp-check-suse.new (New)


Package is "brp-check-suse", Maintainer is "r...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/brp-check-suse/brp-check-suse.changes
2012-03-12 20:11:51.0 +0100
+++ /work/SRC/openSUSE:Factory/.brp-check-suse.new/brp-check-suse.changes   
2012-03-16 13:09:58.0 +0100
@@ -1,0 +2,6 @@
+Tue Mar 13 13:53:13 CET 2012 - r...@suse.de
+
+- integrate brp-check-xdg-menus.patch (and add to git)
+- ignore empty elements in rpath
+
+---

Old:

  brp-check-xdg-menus.patch



Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.AhC9LG/_old  2012-03-16 13:09:59.0 +0100
+++ /var/tmp/diff_new_pack.AhC9LG/_new  2012-03-16 13:09:59.0 +0100
@@ -33,7 +33,6 @@
 # make package
 #
 Source0:%{name}-%{version}.tar.bz2
-Patch0: brp-check-xdg-menus.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %global provfind sh -c "grep -v 'brp-desktop.data' | %__find_provides"
 %global __find_provides %provfind
@@ -45,7 +44,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
 %ifnarch x86_64 s390x ppc64
 rm brp-65-lib64-linux
 %endif

++ brp-check-suse-1.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/brp-check-suse-1.0/brp-35-rpath 
new/brp-check-suse-1.0/brp-35-rpath
--- old/brp-check-suse-1.0/brp-35-rpath 2011-12-11 09:48:56.0 +0100
+++ new/brp-check-suse-1.0/brp-35-rpath 2012-03-13 13:52:11.0 +0100
@@ -24,6 +24,10 @@
while [ -n "$RPATH_VAL" ]; do
RPATH_VAL_NXT=${RPATH_VAL%%:*}
RPATH_VAL=${RPATH_VAL##$RPATH_VAL_NXT:}
+   test -z "$RPATH_VAL_NXT" && {
+   echo "WARNING: ignoring empty rpath \"\" in $FILE"
+   continue
+   }
test -d "$RPATH_VAL_NXT" && RPATH_VAL_NXT=$(cd 
${RPATH_VAL_NXT//#\/\//\/}; pwd -P)
 
case ":$RPATH_VAL_NXT" in
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/brp-check-suse-1.0/brp-desktop.data/xdg_menu 
new/brp-check-suse-1.0/brp-desktop.data/xdg_menu
--- old/brp-check-suse-1.0/brp-desktop.data/xdg_menu2011-12-11 
09:48:56.0 +0100
+++ new/brp-check-suse-1.0/brp-desktop.data/xdg_menu2012-03-13 
13:52:11.0 +0100
@@ -38,44 +38,310 @@
 my %Directory_entries;
 
 # These icons get accepted by default. Newer icon themes should provide them
-# in any case
+# in any case. List fetched from icon naming spec (last change from 2009),
+# without animation and international icons.
 my %standardIconNames = (
+# Standard Action Icons
+   "address-book-new" => undef,
+   "application-exit" => undef,
+   "appointment-new" => undef,
+   "call-start" => undef,
+   "call-stop" => undef,
+   "contact-new" => undef,
+   "document-new" => undef,
+   "document-open" => undef,
+   "document-open-recent" => undef,
+   "document-page-setup" => undef,
+   "document-print" => undef,
+   "document-print-preview" => undef,
+   "document-properties" => undef,
+   "document-revert" => undef,
+   "document-save" => undef,
+   "document-save-as" => undef,
+   "document-send" => undef,
+   "edit-clear" => undef,
+   "edit-copy" => undef,
+   "edit-cut" => undef,
+   "edit-delete" => undef,
+   "edit-find" => undef,
+   "edit-find-replace" => undef,
+   "edit-paste" => undef,
+   "edit-redo" => undef,
+   "edit-select-all" => undef,
+   "edit-undo" => undef,
+   "folder-new" => undef,
+   "format-indent-less" => undef,
+   "format-indent-more" => undef,
+   "format-justify-center" => undef,
+   "format-justify-fill" => undef,
+   "format-justify-left" => undef,
+   "format-justify-right" => undef,
+   "format-text-direction-ltr" => undef,
+   "format-text-direction-rtl" => undef,
+   "format-text-bold" => undef,
+   "format-text-italic" => undef,
+   "format-text-underline" => undef,
+   "format-text-strikethrough" => undef,
+   "go-bottom" => undef,
+   "go-down" => undef,
+   "go-first" => undef,
+   "go-home" => undef,
+   "go-jump" => undef,
+   "go-last" => undef,
+   "go-next" => undef,
+   "go-previous" => undef,
+   "go-top" => undef,
+   "go-up" => undef,
+   "help-about" => undef,
+   "help-contents" => undef,
+   "help-faq" => undef,
+   "insert-image"

commit brp-check-suse for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory 
checked in at 2012-03-12 20:11:50

Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old)
 and  /work/SRC/openSUSE:Factory/.brp-check-suse.new (New)


Package is "brp-check-suse", Maintainer is "r...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/brp-check-suse/brp-check-suse.changes
2011-12-12 16:57:04.0 +0100
+++ /work/SRC/openSUSE:Factory/.brp-check-suse.new/brp-check-suse.changes   
2012-03-12 20:11:51.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  9 21:56:04 UTC 2012 - dims...@opensuse.org
+
+- Add brp-check-xdg-menus.patch: Accept all icons specified in icon
+  naming spec.
+
+---

New:

  brp-check-xdg-menus.patch



Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.b8ztO5/_old  2012-03-12 20:11:54.0 +0100
+++ /var/tmp/diff_new_pack.b8ztO5/_new  2012-03-12 20:11:54.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package brp-check-suse
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   brp-check-suse
 AutoReqProv:off
 Summary:Build root policy check scripts
@@ -32,6 +33,7 @@
 # make package
 #
 Source0:%{name}-%{version}.tar.bz2
+Patch0: brp-check-xdg-menus.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %global provfind sh -c "grep -v 'brp-desktop.data' | %__find_provides"
 %global __find_provides %provfind
@@ -43,6 +45,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 %ifnarch x86_64 s390x ppc64
 rm brp-65-lib64-linux
 %endif

++ brp-check-xdg-menus.patch ++
Index: brp-check-suse-1.0/brp-desktop.data/xdg_menu
===
--- brp-check-suse-1.0.orig/brp-desktop.data/xdg_menu
+++ brp-check-suse-1.0/brp-desktop.data/xdg_menu
@@ -38,44 +38,310 @@ my %Desktop_entries;
 my %Directory_entries;
 
 # These icons get accepted by default. Newer icon themes should provide them
-# in any case
+# in any case. List fetched from icon naming spec (last change from 2009),
+# without animation and international icons.
 my %standardIconNames = (
+# Standard Action Icons
+   "address-book-new" => undef,
+   "application-exit" => undef,
+   "appointment-new" => undef,
+   "call-start" => undef,
+   "call-stop" => undef,
+   "contact-new" => undef,
+   "document-new" => undef,
+   "document-open" => undef,
+   "document-open-recent" => undef,
+   "document-page-setup" => undef,
+   "document-print" => undef,
+   "document-print-preview" => undef,
+   "document-properties" => undef,
+   "document-revert" => undef,
+   "document-save" => undef,
+   "document-save-as" => undef,
+   "document-send" => undef,
+   "edit-clear" => undef,
+   "edit-copy" => undef,
+   "edit-cut" => undef,
+   "edit-delete" => undef,
+   "edit-find" => undef,
+   "edit-find-replace" => undef,
+   "edit-paste" => undef,
+   "edit-redo" => undef,
+   "edit-select-all" => undef,
+   "edit-undo" => undef,
+   "folder-new" => undef,
+   "format-indent-less" => undef,
+   "format-indent-more" => undef,
+   "format-justify-center" => undef,
+   "format-justify-fill" => undef,
+   "format-justify-left" => undef,
+   "format-justify-right" => undef,
+   "format-text-direction-ltr" => undef,
+   "format-text-direction-rtl" => undef,
+   "format-text-bold" => undef,
+   "format-text-italic" => undef,
+   "format-text-underline" => undef,
+   "format-text-strikethrough" => undef,
+   "go-bottom" => undef,
+   "go-down" => undef,
+   "go-first" => undef,
+   "go-home" => undef,
+   "go-jump" => undef,
+   "go-last" => undef,
+   "go-next" => undef,
+   "go-previous" => undef,
+   "go-top" => undef,
+   "go-up" => undef,
+   "help-about" => undef,
+   "help-contents" => undef,
+   "help-faq" => undef,
+   "insert-image" => undef,
+   "insert-link" => undef,
+   "insert-object" => undef,
+   "insert-text" => undef,
+   "list-add" => undef,
+   "list-remove" => undef,
+   "mail-forward" => undef,
+   "mail-mark-important" => undef,
+   "mail-mark-junk" => undef,
+   "mail-mark-notjunk" => undef,
+   "mail-mark

commit brp-check-suse for openSUSE:Factory

2011-12-12 Thread h_root
Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory 
checked in at 2011-12-12 16:56:05

Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old)
 and  /work/SRC/openSUSE:Factory/.brp-check-suse.new (New)


Package is "brp-check-suse", Maintainer is "r...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/brp-check-suse/brp-check-suse.changes
2011-09-23 01:52:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.brp-check-suse.new/brp-check-suse.changes   
2011-12-12 16:57:04.0 +0100
@@ -1,0 +2,6 @@
+Fri Dec  9 14:18:30 UTC 2011 - co...@suse.com
+
+- let rpm call everything below /usr/lib/rpm/brp-suse.d and do no
+  longer define a hard coded list of brp scripts
+
+---



Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.M8SpXC/_old  2011-12-12 16:58:17.0 +0100
+++ /var/tmp/diff_new_pack.M8SpXC/_new  2011-12-12 16:58:17.0 +0100
@@ -15,15 +15,13 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:   brp-check-suse
+AutoReqProv:off
+Summary:Build root policy check scripts
 License:GPL-2.0+
 Group:  Development/Tools/Building
-AutoReqProv:off
-Summary:build root policy check scripts
 Version:1.0
-Release:44
+Release:0
 Url:http://gitorious.org/opensuse/brp-check-suse/
 #
 # Note: don't rebuild this manually. Instead submit your patches
@@ -34,32 +32,32 @@
 # make package
 #
 Source0:%{name}-%{version}.tar.bz2
-BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %global provfind sh -c "grep -v 'brp-desktop.data' | %__find_provides"
 %global __find_provides %provfind
 
 %description
-build root policy check scripts
-
+This package contains all suse scripts called in the 
+build root checking or in parts implemeting SUSE policies.
 
 
 %prep
 %setup -q
+%ifnarch x86_64 s390x ppc64
+rm brp-65-lib64-linux
+%endif
 
 %build
 # nothing to do
 
 %install
-install -d $RPM_BUILD_ROOT/usr/lib/rpm
-install -d $RPM_BUILD_ROOT/etc/rpm
-cp -a brp-* $RPM_BUILD_ROOT/usr/lib/rpm
-cp -a macros.* $RPM_BUILD_ROOT/etc/rpm
+install -d $RPM_BUILD_ROOT/usr/lib/rpm/brp-suse.d
+mv brp*data $RPM_BUILD_ROOT/usr/lib/rpm/
+cp -a brp-* $RPM_BUILD_ROOT/usr/lib/rpm/brp-suse.d
 
 %files
 %defattr(-, root, root)
 %doc COPYING
-/etc/rpm/*
 /usr/lib/rpm/*
 
 %changelog

++ brp-check-suse-1.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/brp-check-suse-1.0/brp-05-permissions 
new/brp-check-suse-1.0/brp-05-permissions
--- old/brp-check-suse-1.0/brp-05-permissions   1970-01-01 01:00:00.0 
+0100
+++ new/brp-check-suse-1.0/brp-05-permissions   2011-12-11 09:48:56.0 
+0100
@@ -0,0 +1,16 @@
+#!/bin/sh
+# If using normal root, avoid changing anything.
+if [ -z "$RPM_BUILD_ROOT" -o "$RPM_BUILD_ROOT" = "/" ]; then
+   exit 0
+fi
+
+# used to also run on / if uid == 0 but that's really broken
+if [ -e /etc/permissions -a -x /usr/bin/chkstat ]; then
+   /usr/bin/chkstat \
+   --root "$RPM_BUILD_ROOT" \
+   --noheader \
+   --set \
+   --system \
+   --no-fscaps \
+   --level secure
+fi
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/brp-check-suse-1.0/brp-15-strip-debug 
new/brp-check-suse-1.0/brp-15-strip-debug
--- old/brp-check-suse-1.0/brp-15-strip-debug   1970-01-01 01:00:00.0 
+0100
+++ new/brp-check-suse-1.0/brp-15-strip-debug   2011-12-11 09:48:56.0 
+0100
@@ -0,0 +1,38 @@
+#!/bin/sh
+# If using normal root, avoid changing anything.
+if [ -z "$RPM_BUILD_ROOT" -o "$RPM_BUILD_ROOT" = "/" ]; then
+   echo "RPM_BUILD_ROOT is not set or set to / : skipping strip"
+   exit 0
+fi
+if [ "$NO_BRP_STRIP_DEBUG" = "true" ] ; then
+   echo "NO_BRP_STRIP_DEBUG is set: skipping strip"
+   exit 0
+fi
+
+FIND_IGNORE='\( -path $RPM_BUILD_ROOT/usr/lib/debug -o -path 
$RPM_BUILD_ROOT/lib/modules -o -path $RPM_BUILD_ROOT/opt/cross -o -path 
$RPM_BUILD_ROOT/proc \) -prune -o'
+
+# Strip debuginfo from ELF binaries, but not static libraries or kernel modules
+for f in $(find $RPM_BUILD_ROOT $(echo "$(eval "echo $FIND_IGNORE")") \
+\( -name "*.a" -o -name "*.ko" \) -prune -o \
+-type f \( -perm /0111 -o -name "*.so*" \) -exec file {} \; | \
+sed -n -e 's/^\(.*\):[ ]*ELF.*, not stripped/\1/p'); do
+   mode=$(stat -c %a $f)
+   chmod u+w $f || :
+   strip -p --strip-debug --discard-locals -R .comment -R .note $f || :
+   chmod $mode $f
+done
+
+# Don't str

commit brp-check-suse for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory 
checked in at 2011-12-06 18:01:46

Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old)
 and  /work/SRC/openSUSE:Factory/.brp-check-suse.new (New)


Package is "brp-check-suse", Maintainer is "r...@suse.com"

Changes:




Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.MDCpDs/_old  2011-12-06 18:03:49.0 +0100
+++ /var/tmp/diff_new_pack.MDCpDs/_new  2011-12-06 18:03:49.0 +0100
@@ -18,7 +18,7 @@
 
 
 Name:   brp-check-suse
-License:GPLv2+
+License:GPL-2.0+
 Group:  Development/Tools/Building
 AutoReqProv:off
 Summary:build root policy check scripts

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit brp-check-suse for openSUSE:Factory

2011-09-21 Thread h_root

Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory
checked in at Wed Sep 21 16:56:11 CEST 2011.




--- brp-check-suse/brp-check-suse.changes   2011-07-11 16:59:28.0 
+0200
+++ /mounts/work_src_done/STABLE/brp-check-suse/brp-check-suse.changes  
2011-09-17 22:51:41.0 +0200
@@ -1,0 +2,5 @@
+Sat Sep 17 20:51:34 UTC 2011 - jeng...@medozas.de
+
+- Remove redundant tags/sections from specfile
+
+---

calling whatdependson for head-i586




Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.InWVUn/_old  2011-09-21 16:56:07.0 +0200
+++ /var/tmp/diff_new_pack.InWVUn/_new  2011-09-21 16:56:07.0 +0200
@@ -15,7 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   brp-check-suse
@@ -25,6 +24,15 @@
 Summary:build root policy check scripts
 Version:1.0
 Release:44
+Url:http://gitorious.org/opensuse/brp-check-suse/
+#
+# Note: don't rebuild this manually. Instead submit your patches
+# for inclusion in the git repo!
+#
+# git clone git://gitorious.org/opensuse/brp-check-suse.git
+# cd post-build-checks
+# make package
+#
 Source0:%{name}-%{version}.tar.bz2
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -48,9 +56,6 @@
 cp -a brp-* $RPM_BUILD_ROOT/usr/lib/rpm
 cp -a macros.* $RPM_BUILD_ROOT/etc/rpm
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files
 %defattr(-, root, root)
 %doc COPYING






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit brp-check-suse for openSUSE:Factory

2011-07-12 Thread h_root

Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory
checked in at Tue Jul 12 13:49:29 CEST 2011.




--- brp-check-suse/brp-check-suse.changes   2011-05-13 15:02:04.0 
+0200
+++ brp-check-suse/brp-check-suse.changes   2011-07-11 16:59:28.0 
+0200
@@ -1,0 +2,5 @@
+Mon Jul 11 14:53:59 UTC 2011 - co...@novell.com
+
+- do no longer check for libraries in /usr (bnc#696004)
+
+---

calling whatdependson for head-i586




Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.ZN5igO/_old  2011-07-12 13:48:16.0 +0200
+++ /var/tmp/diff_new_pack.ZN5igO/_new  2011-07-12 13:48:16.0 +0200
@@ -24,7 +24,7 @@
 AutoReqProv:off
 Summary:build root policy check scripts
 Version:1.0
-Release:42
+Release:44
 Source0:%{name}-%{version}.tar.bz2
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ brp-check-suse-1.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/brp-check-suse-1.0/brp-rootfs 
new/brp-check-suse-1.0/brp-rootfs
--- old/brp-check-suse-1.0/brp-rootfs   2011-05-10 13:55:29.0 +0200
+++ new/brp-check-suse-1.0/brp-rootfs   2011-07-11 16:53:26.0 +0200
@@ -15,9 +15,9 @@
;;
 esac

-ldd $f | grep -qE '/(usr|opt)' && {
-   echo "binary ${f##$RPM_BUILD_ROOT} is linked against libraries in /usr 
or /opt"
-   ldd $f | grep -E '/(usr|opt)'
+ldd $f | grep -qE '/opt' && {
+   echo "binary ${f##$RPM_BUILD_ROOT} is linked against libraries in /opt"
+   ldd $f | grep -E '/opt'
OUT_OF_FS=1
 }
 done
@@ -29,9 +29,9 @@
  grep -v "/evms/" |
  grep -v "/libnss_" |
  sed -n -e 's/^\(.*\):[[:space:]]*ELF.*/\1/p'` ; do
-ldd $f 2>/dev/null | grep -qE '/(usr|opt)' && {
-   echo "library ${f##$RPM_BUILD_ROOT} is linked against libraries in /usr 
or /opt"
-   ldd $f | grep -E '/(usr|opt)'
+ldd $f 2>/dev/null | grep -q '/opt' && {
+   echo "library ${f##$RPM_BUILD_ROOT} is linked against libraries in /opt"
+   ldd $f | grep -E '/opt'
OUT_OF_FS=1
 }
 done






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit brp-check-suse for openSUSE:Factory

2011-05-16 Thread h_root

Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory
checked in at Mon May 16 15:32:52 CEST 2011.




--- brp-check-suse/brp-check-suse.changes   2011-04-29 01:48:29.0 
+0200
+++ /mounts/work_src_done/STABLE/brp-check-suse/brp-check-suse.changes  
2011-05-13 15:02:04.0 +0200
@@ -1,0 +2,5 @@
+Fri May 13 13:01:01 UTC 2011 - lnus...@suse.de
+
+ - remove brp-pie, replaced with rpmlint check
+
+---

calling whatdependson for head-i586




Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.scVsIn/_old  2011-05-16 15:32:18.0 +0200
+++ /var/tmp/diff_new_pack.scVsIn/_new  2011-05-16 15:32:18.0 +0200
@@ -24,7 +24,7 @@
 AutoReqProv:off
 Summary:build root policy check scripts
 Version:1.0
-Release:40
+Release:42
 Source0:%{name}-%{version}.tar.bz2
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ brp-check-suse-1.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/brp-check-suse-1.0/brp-pie 
new/brp-check-suse-1.0/brp-pie
--- old/brp-check-suse-1.0/brp-pie  2011-04-29 01:47:19.0 +0200
+++ new/brp-check-suse-1.0/brp-pie  1970-01-01 01:00:00.0 +0100
@@ -1,53 +0,0 @@
-#!/bin/sh
-
-# If using normal root, avoid check. Will give too much false positive
-if [ -z "$RPM_BUILD_ROOT" ]; then
-exit 0
-fi
-
-# hppa does not have pie
-test "`uname -m`" = parisc && exit 0
-
-PIE_USED=1
-
-check_path() {
-  if [ -e $1 ]; then
-#
-# brp-pie runs after brp-symlink, so we should have relative symlinks
-# only and so should be able to resolve them:
-#
-
-file -<$1 | grep "shared object" > /dev/null
-if [ $? -eq 1 ]; then
-  test $PIE_USED == 1 && echo ""
-  echo $1 is not compiled with -fpie/linked with -pie!
-  PIE_USED=0
-fi
-  fi
-}
-
-#
-# Listed binaries should be linked with -pie to allow the kernel
-# to dynamically randomize the address space of the program:
-#
-
-for i in `cat /usr/lib/rpm/brp-pie.data/filelist` ; do
-  check_path $RPM_BUILD_ROOT/$i 
-done
-
-#for dir in $RPM_BUILD_ROOT{/usr,}/bin; do
-#  if [ -e $dir ]; then
-# for file in `grep -lr libgcrypt.so $dir`; do
-#   check_path $file
-# done
-#  fi
-#done
-
-if [ $PIE_USED -eq 0 ]; then
-  echo ""
-  echo "Please adjust your package and compile the above programs with 
-fpie/-pie"
-  echo
-  exit 1
-fi
-
-exit 0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/brp-check-suse-1.0/brp-pie.data/filelist 
new/brp-check-suse-1.0/brp-pie.data/filelist
--- old/brp-check-suse-1.0/brp-pie.data/filelist2011-04-29 
01:47:19.0 +0200
+++ new/brp-check-suse-1.0/brp-pie.data/filelist1970-01-01 
01:00:00.0 +0100
@@ -1,236 +0,0 @@
-/bin/ping
-/bin/ping6
-/bin/su
-/opt/gnome/bin/gaim
-/opt/gnome/bin/gaim-remote
-/sbin/arping
-/sbin/clockdiff
-/sbin/dhclient
-/sbin/dhcpcd
-/sbin/klogd
-/sbin/portmap
-/sbin/rpc.lockd
-/sbin/syslogd
-/sbin/tracepath
-/sbin/tracepath6
-/usr/bin/uniconv
-/usr/bin/achfile
-/usr/bin/adv1tov2
-/usr/bin/aecho
-/usr/bin/afile
-/usr/bin/afppasswd
-/usr/bin/at
-/usr/bin/cadaver
-/usr/bin/chage
-/usr/bin/chfn
-/usr/bin/chsh
-/usr/bin/ciptool
-/usr/bin/cnid_index
-/usr/bin/dig
-/usr/bin/dund
-/usr/bin/expiry
-/usr/bin/finger
-/usr/bin/getzones
-/usr/bin/gpasswd
-/usr/bin/gpg
-/usr/bin/gpgsplit
-/usr/bin/gpgv
-/usr/bin/hcitool
-/usr/bin/hidd
-/usr/bin/host
-/usr/bin/htpasswd
-/usr/bin/l2ping
-/usr/bin/lppasswd
-/usr/bin/megatron
-/usr/bin/nbplkup
-/usr/bin/nbprgstr
-/usr/bin/nbpunrgstr
-/usr/bin/ncplogin
-/usr/bin/ncpmap
-/usr/bin/net
-/usr/bin/newgrp
-/usr/bin/nmblookup
-/usr/bin/nslookup
-/usr/bin/nsupdate
-/usr/bin/nwsfind
-/usr/bin/omshell
-/usr/bin/pand
-/usr/bin/pap
-/usr/bin/papstatus
-/usr/bin/passwd
-/usr/bin/pdbedit
-/usr/bin/profiles
-/usr/bin/psorder
-/usr/bin/rcp
-/usr/bin/rexec
-/usr/bin/rfcomm
-/usr/bin/rlogin
-/usr/bin/rpcclient
-/usr/bin/rsh
-/usr/bin/scp
-/usr/bin/sdptool
-/usr/bin/sftp
-/usr/bin/showppd
-/usr/bin/smbcacls
-/usr/bin/smbclient
-/usr/bin/smbcontrol
-/usr/bin/smbcquotas
-/usr/bin/smbmnt
-/usr/bin/smbmount
-/usr/bin/smbpasswd
-/usr/bin/smbspool
-/usr/bin/smbstatus
-/usr/bin/smbtree
-/usr/bin/smbumount
-/usr/bin/ssh
-/usr/bin/ssh-add
-/usr/bin/ssh-agent
-/usr/bin/ssh-keygen
-/usr/bin/ssh-keyscan
-/usr/bin/svn
-/usr/bin/svnadmin
-/usr/bin/svndumpfilter
-/usr/bin/svnlook
-/usr/bin/svnserve
-/usr/bin/svnversion
-/usr/bin/talk
-/usr/bin/tdbbackup
-/usr/bin/tdbdump
-/usr/bin/tdbtool
-/usr/bin/telnet
-/usr/bin/testparm
-/usr/bin/testprns
-/usr/bin/timeout
-/usr/bin/wbinfo
-/usr/lib/mit/bin/ftp
-/usr/lib/mit/bin/gss-client
-/usr/lib/mit/bin/kdestroy
-/usr/lib/mit/bin/kinit
-/usr/l

commit brp-check-suse for openSUSE:Factory

2011-05-02 Thread h_root

Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory
checked in at Mon May 2 14:39:21 CEST 2011.




--- brp-check-suse/brp-check-suse.changes   2011-03-04 19:41:26.0 
+0100
+++ /mounts/work_src_done/STABLE/brp-check-suse/brp-check-suse.changes  
2011-04-29 01:48:29.0 +0200
@@ -1,0 +2,5 @@
+Fri Apr 29 01:48:13 CEST 2011 - r...@suse.de
+
+- try to make sure it really is a libtool file before taking any action
+
+---

calling whatdependson for head-i586




Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.azqoRt/_old  2011-05-02 14:38:20.0 +0200
+++ /var/tmp/diff_new_pack.azqoRt/_new  2011-05-02 14:38:20.0 +0200
@@ -24,7 +24,7 @@
 AutoReqProv:off
 Summary:build root policy check scripts
 Version:1.0
-Release:39
+Release:40
 Source0:%{name}-%{version}.tar.bz2
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ brp-check-suse-1.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/brp-check-suse-1.0/brp-check-la 
new/brp-check-suse-1.0/brp-check-la
--- old/brp-check-suse-1.0/brp-check-la 2011-01-13 14:25:30.0 +0100
+++ new/brp-check-suse-1.0/brp-check-la 2011-04-29 01:47:19.0 +0200
@@ -6,6 +6,9 @@
 
 MASTER_ERROR_CODE=0
 for f in `find $RPM_BUILD_ROOT -type f -name "*.la" ` ; do
+   # first try to see if this really looks like a libtool file
+   grep -q "libdir=" $f || continue
+   grep -q "library_names=" $f || continue
ERROR_CODE=0
grep -q  "libdir=.*$RPM_BUILD_ROOT" $f && ERROR_CODE=1
grep -q "libdir=.*/usr/src/packages/BUILD/" $f && ERROR_CODE=2






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit brp-check-suse for openSUSE:Factory

2011-03-07 Thread h_root

Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory
checked in at Mon Mar 7 15:43:23 CET 2011.




--- brp-check-suse/brp-check-suse.changes   2011-01-13 14:28:18.0 
+0100
+++ /mounts/work_src_done/STABLE/brp-check-suse/brp-check-suse.changes  
2011-03-04 19:41:26.0 +0100
@@ -1,0 +2,5 @@
+Fri Mar  4 18:32:27 UTC 2011 - cdenic...@novell.com
+
+- Artistic no longer found. 
+
+---

calling whatdependson for head-i586




Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.jHa1T5/_old  2011-03-07 15:43:15.0 +0100
+++ /var/tmp/diff_new_pack.jHa1T5/_new  2011-03-07 15:43:15.0 +0100
@@ -1,5 +1,5 @@
 #
-# spec file for package brp-check-suse (Version 1.0)
+# spec file for package brp-check-suse
 #
 # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
@@ -19,12 +19,12 @@
 
 
 Name:   brp-check-suse
-License:Artistic License .. ; GPLv2+
+License:GPLv2+
 Group:  Development/Tools/Building
 AutoReqProv:off
 Summary:build root policy check scripts
 Version:1.0
-Release:33
+Release:39
 Source0:%{name}-%{version}.tar.bz2
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org