diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2013-04-21 19:42:09 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-04-21 19:54:57 +0200 |
commit | 6e70fa33ca99b1020f68a09481317b854e31de66 (patch) | |
tree | 13810e0cd96c7ea9dbbc14e43fefb1500e272728 /debian/squeeze/applications/kopete-otr | |
parent | 731c5feadab8d86e307b00e3b408b5d5b80b4422 (diff) | |
download | tde-packaging-6e70fa33ca99b1020f68a09481317b854e31de66.tar.gz tde-packaging-6e70fa33ca99b1020f68a09481317b854e31de66.zip |
Cutting off the fourth number, or preliminary version number
in counting versions for dependencies on Debian and Ubuntu
Diffstat (limited to 'debian/squeeze/applications/kopete-otr')
-rw-r--r-- | debian/squeeze/applications/kopete-otr/debian/cdbs/versions.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/squeeze/applications/kopete-otr/debian/cdbs/versions.pl b/debian/squeeze/applications/kopete-otr/debian/cdbs/versions.pl index 9ce11d8a3..75c9add4b 100644 --- a/debian/squeeze/applications/kopete-otr/debian/cdbs/versions.pl +++ b/debian/squeeze/applications/kopete-otr/debian/cdbs/versions.pl @@ -7,7 +7,7 @@ my $version = `dpkg-parsechangelog | awk '/^Version/ {print \$2}'`; my ($version3, $version3_next); my ($version2, $version2_next); -($version3 = $version) =~ s/-[^-]+$//; +($version3 = $version) =~ s/^(([^.]+\.){2}[^.+~-]+)[.+~-]?[^-]*-[^-]+$/$1/; ($version2 = $version3) =~ s/\.[^.]+$//; ($version3_next = $version3) =~ s/(?<=\.)(\d+)[a-z]?$/($1+1)/e; |