summaryrefslogtreecommitdiffstats
path: root/ubuntu/raring/applications/kscope/debian/cdbs/versions.pl
diff options
context:
space:
mode:
authorFrançois Andriot <albator78@libertysurf.fr>2013-10-09 21:25:19 +0200
committerFrançois Andriot <albator78@libertysurf.fr>2013-10-09 21:25:19 +0200
commitbd0ff7568ce64694ae7b1a180c1cc3654f4e60a9 (patch)
tree6074483ea9db86f4e118bd3ee987b9f78f63f143 /ubuntu/raring/applications/kscope/debian/cdbs/versions.pl
parent1b75a8a69eb58af5ed985debdf5020df147d1df5 (diff)
parent26882ca86584e3ceecc0104ddfbf4f9d118c8e04 (diff)
downloadtde-packaging-bd0ff7568ce64694ae7b1a180c1cc3654f4e60a9.tar.gz
tde-packaging-bd0ff7568ce64694ae7b1a180c1cc3654f4e60a9.zip
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tde-packaging
Diffstat (limited to 'ubuntu/raring/applications/kscope/debian/cdbs/versions.pl')
-rw-r--r--ubuntu/raring/applications/kscope/debian/cdbs/versions.pl19
1 files changed, 19 insertions, 0 deletions
diff --git a/ubuntu/raring/applications/kscope/debian/cdbs/versions.pl b/ubuntu/raring/applications/kscope/debian/cdbs/versions.pl
new file mode 100644
index 000000000..75c9add4b
--- /dev/null
+++ b/ubuntu/raring/applications/kscope/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";