Hello community,

here is the log from the commit of package build-compare for openSUSE:Factory 
checked in at 2012-05-07 22:43:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/build-compare (Old)
 and      /work/SRC/openSUSE:Factory/.build-compare.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "build-compare", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:Factory/build-compare/build-compare.changes      
2012-04-12 09:19:57.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.build-compare.new/build-compare.changes 
2012-05-07 22:45:05.000000000 +0200
@@ -1,0 +2,10 @@
+Mon May  7 14:50:43 UTC 2012 - [email protected]
+
+- Further handling of pdf files (bnc#760867).
+
+-------------------------------------------------------------------
+Mon May  7 11:30:28 UTC 2012 - [email protected]
+
+- Handle /ID in pdf files (bnc#760867).
+
+-------------------------------------------------------------------

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

Other differences:
------------------
++++++ rpm-check.sh ++++++
--- /var/tmp/diff_new_pack.HOG1l1/_old  2012-05-07 22:45:06.000000000 +0200
+++ /var/tmp/diff_new_pack.HOG1l1/_new  2012-05-07 22:45:06.000000000 +0200
@@ -1,6 +1,6 @@
 #! /bin/bash
 #
-# Copyright (c) 2009, 2010, 2011 SUSE Linux Product GmbH, Germany.
+# Copyright (c) 2009, 2010, 2011, 2012 SUSE Linux Product GmbH, Germany.
 # Licensed under GPL v2, see COPYING file for details.
 #
 # Written by Michael Matz and Stephan Coolo
@@ -402,6 +402,19 @@
       echo "Ignore $file"
       return 0
       ;;
+    *pdf)
+      # PDF files contain a unique ID, remove it
+      # Format of the ID is:
+      # /ID [<9ACE247A70CF9BEAFEE15E116259BD6D> 
<9ACE247A70CF9BEAFEE15E116259BD6D>]
+      # pdftex creates also:
+      # /CreationDate (D:20120103083206Z)
+      # /ModDate (D:20120103083206Z)
+      for f in old/$file new/$file; do
+        sed -i -e 's%/ID \?\[ \?<[^>]\+> <[^>]\+> \?\]%/IDrandom%g' $f
+       sed -i -e 's%/CreationDate (D:.*)%/CreationDate (D: XXX)%g' $f
+       sed -i -e 's%/ModDate (D:.*)%/ModDate (D: XXX)%g' $f
+      done
+      ;;
   esac
 
   ftype=`/usr/bin/file old/$file | cut -d: -f2-`

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to