diff --git a/ChangeLog b/ChangeLog index 61a2ec1..7bb1d6e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-09-06 Thomas Vander Stichele + + * morituri/rip/cd.py: + Fix warning against rebuilt package. + 2009-09-06 Thomas Vander Stichele * README: 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()