Hello community,

here is the log from the commit of package post-build-checks for 
openSUSE:Factory checked in at 2011-12-07 14:39:17
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/post-build-checks (Old)
 and      /work/SRC/openSUSE:Factory/.post-build-checks.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "post-build-checks", Maintainer is "r...@suse.com"

Changes:
--------
--- /work/SRC/openSUSE:Factory/post-build-checks/post-build-checks.changes      
2011-12-01 17:39:52.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.post-build-checks.new/post-build-checks.changes 
2011-12-07 14:39:19.000000000 +0100
@@ -1,0 +2,5 @@
+Wed Dec  7 10:00:08 UTC 2011 - co...@suse.com
+
+- ignore debuginfo and debugsource packages for packaged-twice
+
+-------------------------------------------------------------------

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

Other differences:
------------------
++++++ post-build-checks.spec ++++++
--- /var/tmp/diff_new_pack.EDEws3/_old  2011-12-07 14:39:23.000000000 +0100
+++ /var/tmp/diff_new_pack.EDEws3/_new  2011-12-07 14:39:23.000000000 +0100
@@ -15,10 +15,11 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:           post-build-checks
+Summary:        post checks for build after rpms have been created
 License:        GPL-2.0+
 Group:          Development/Tools/Building
-Summary:        post checks for build after rpms have been created
 Version:        1.0
 Release:        0
 PreReq:         aaa_base permissions sed

++++++ new.diff ++++++
--- /var/tmp/diff_new_pack.EDEws3/_old  2011-12-07 14:39:23.000000000 +0100
+++ /var/tmp/diff_new_pack.EDEws3/_new  2011-12-07 14:39:23.000000000 +0100
@@ -1,7 +1,7 @@
 Index: post-build-checks-1.0/checks/09-check-packaged-twice
 ===================================================================
 --- post-build-checks-1.0.orig/checks/09-check-packaged-twice  2011-10-20 
11:57:54.000000000 +0200
-+++ post-build-checks-1.0/checks/09-check-packaged-twice       2011-12-01 
17:36:22.894836849 +0100
++++ post-build-checks-1.0/checks/09-check-packaged-twice       2011-12-07 
10:59:53.350691785 +0100
 @@ -1,61 +1,74 @@
 -#!/usr/bin/perl
 +#!/usr/bin/perl -w
@@ -48,7 +48,6 @@
  
 -if ( $#RPMS < 1 ) {
 -    exit 0;
-+print "chroot $build_root find $TOPDIR/RPMS -name \"*.rpm\"\n";
 +open (ALL_RPMS, "chroot $build_root find $TOPDIR/RPMS/ -name \"*.rpm\" |");
 +my @rpms = <ALL_RPMS>;
 +chomp @rpms;
@@ -60,6 +59,7 @@
 +my %pkg2rpm;
 +
 +for my $rpm (@rpms) {
++    next if ($rpm =~ m/-debuginfo/ || $rpm =~ m/-debugsource/);
 +    open (FILES, "chroot $build_root rpm -qp --qf '[%{FILEMODES:perms} 
F:%{FILEFLAGS:fflags} %{NAME} %{FILENAMES}\n]' $rpm|");
 +    my @files = <FILES>;
 +    chomp @files;

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

Reply via email to