summaryrefslogtreecommitdiffstats
path: root/ubuntu/maverick/applications/rosegarden/debian/cdbs/versions.pl
diff options
context:
space:
mode:
authorFrancois Andriot <francois.andriot@free.fr>2011-11-26 22:40:45 +0100
committerFrancois Andriot <francois.andriot@free.fr>2011-11-26 22:40:45 +0100
commite3e089f270bf52f03b63c663b9c9f39976f3b2e8 (patch)
tree6118492ce529bfaf1af982845d7ee29c986e7764 /ubuntu/maverick/applications/rosegarden/debian/cdbs/versions.pl
parent3135d23944c42bd3c5478f5a7f4add85d8c8bbaa (diff)
parenta454a01a5e058a708ea567b546463e37892cc651 (diff)
downloadtde-packaging-e3e089f270bf52f03b63c663b9c9f39976f3b2e8.tar.gz
tde-packaging-e3e089f270bf52f03b63c663b9c9f39976f3b2e8.zip
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tde-packaging
Diffstat (limited to 'ubuntu/maverick/applications/rosegarden/debian/cdbs/versions.pl')
-rw-r--r--ubuntu/maverick/applications/rosegarden/debian/cdbs/versions.pl19
1 files changed, 19 insertions, 0 deletions
diff --git a/ubuntu/maverick/applications/rosegarden/debian/cdbs/versions.pl b/ubuntu/maverick/applications/rosegarden/debian/cdbs/versions.pl
new file mode 100644
index 000000000..9ce11d8a3
--- /dev/null
+++ b/ubuntu/maverick/applications/rosegarden/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/-[^-]+$//;
+($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";