[SCM] morituri/master: * morituri/rip/cd.py: Fix warning against rebuilt package.

js at users.alioth.debian.org js at users.alioth.debian.org
Sun Oct 19 20:09:10 UTC 2014


The following commit has been merged in the master branch:
commit 2efcb21a63ebbdcdffbec3d31aa5e68b1791858e
Author: Thomas Vander Stichele <thomas (at) apestaart (dot) org>
Date:   Sun Sep 6 18:04:21 2009 +0000

    	* morituri/rip/cd.py:
    	  Fix warning against rebuilt package.

diff --git a/ChangeLog b/ChangeLog
index 61a2ec1..7bb1d6e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2009-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
 
+	* morituri/rip/cd.py:
+	  Fix warning against rebuilt package.
+
+2009-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
+
 	* README:
 	  Fix up dependencies.
 	* morituri.spec.in:
diff --git a/morituri/rip/cd.py b/morituri/rip/cd.py
index c84ab20..238ad5e 100644
--- a/morituri/rip/cd.py
+++ b/morituri/rip/cd.py
@@ -90,8 +90,12 @@ class Rip(logcommand.LogCommand):
             function(runner, t)
             version = t.tasks[1].parser.version
             from pkg_resources import parse_version as V
-            if V(version) <= V('1.2.3'):
-                print 'Warning: cdrdao 1.2.3 and older have a pre-gap length bug.'
+            # we've built a cdrdao 1.2.3rc2 modified package with the patch
+            if V(version) < V('1.2.3rc2p1'):
+                print '''
+Warning: cdrdao older than 1.2.3 has a pre-gap length bug.
+See  http://sourceforge.net/tracker/?func=detail&aid=604751&group_id=2171&atid=102171
+'''
             ptoc.persist(t.table)
         ittoc = ptoc.object
         assert ittoc.hasTOC()

-- 
morituri packaging



More information about the pkg-multimedia-commits mailing list