summaryrefslogtreecommitdiffstats
path: root/debian/lenny/applications/mplayerthumbs/debian/cdbs/versions.pl
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-07-26 03:09:16 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-07-26 03:09:16 +0200
commitfee752ab2accf52c3a6c77574b7d8271a806257f (patch)
tree61ac978d6d2924546357fa247185e81d23130a46 /debian/lenny/applications/mplayerthumbs/debian/cdbs/versions.pl
parent80f1a1caacd86c3342672723f86cf2ea31e3f255 (diff)
downloadtde-packaging-fee752ab2accf52c3a6c77574b7d8271a806257f.tar.gz
tde-packaging-fee752ab2accf52c3a6c77574b7d8271a806257f.zip
Fix mplayerthumbs packaging files for Debian and Ubuntu
Diffstat (limited to 'debian/lenny/applications/mplayerthumbs/debian/cdbs/versions.pl')
-rw-r--r--debian/lenny/applications/mplayerthumbs/debian/cdbs/versions.pl19
1 files changed, 19 insertions, 0 deletions
diff --git a/debian/lenny/applications/mplayerthumbs/debian/cdbs/versions.pl b/debian/lenny/applications/mplayerthumbs/debian/cdbs/versions.pl
new file mode 100644
index 000000000..75c9add4b
--- /dev/null
+++ b/debian/lenny/applications/mplayerthumbs/debian/cdbs/versions.pl
@@ -0,0 +1,19 @@
+#!/usr/bin/env perl
+
+use strict;
+use warnings;
+
+my $version = `dpkg-parsechangelog | awk '/^Version/ {print \$2}'`;
+my ($version3, $version3_next);
+my ($version2, $version2_next);
+
+($version3 = $version) =~ s/^(([^.]+\.){2}[^.+~-]+)[.+~-]?[^-]*-[^-]+$/$1/;
+($version2 = $version3) =~ s/\.[^.]+$//;
+
+($version3_next = $version3) =~ s/(?<=\.)(\d+)[a-z]?$/($1+1)/e;
+($version2_next = $version2) =~ s/(?<=\.)(\d+)$/($1+1)/e;
+
+print "KDE-Version3=$version3\n";
+print "KDE-Version2=$version2\n";
+print "KDE-Next-Version3=$version3_next\n";
+print "KDE-Next-Version2=$version2_next\n";