25 Aug
2010
25 Aug
'10
08:42
perl is using a decimalized versioning, where 0.22 > 0.2002, but for rpm it isn't.
That's actually not true:
perl -e 'print "decimal\n" if v0.22 ge v0.2002'
sorry but: perl -e 'print "decimal\n" if 0.22 ge 0.2002' and perl -e 'print "equal\n" if 0.22 == version->new(0.22)->numify' or perl -e 'print "equal\n" if 0.22 == version->new(v0.220.0)->numify'
or
perl -e 'print version->parse("0.22") <=> version->parse("0.2002"), "\n"'
Seems like the Author of Sub-Uplevel doesn't understand versions.
The Author adviced me to read: http://tinyurl.com/versionnumbers Cheers, Chris -- To unsubscribe, e-mail: opensuse-packaging+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-packaging+help@opensuse.org