summaryrefslogtreecommitdiffstats
path: root/ubuntu/precise/applications/kkbswitch/debian/cdbs/versions.pl
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-08-18 16:47:11 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-08-18 16:47:47 +0200
commitbca5c6c76a1c094a4a1cea930358ba96b0950cd6 (patch)
treefcadb67a08e5b67d3deac4e0dd6db0d23193b235 /ubuntu/precise/applications/kkbswitch/debian/cdbs/versions.pl
parentd54fc1da9589ff01c456d54f2b88cbf08769050c (diff)
downloadtde-packaging-bca5c6c76a1c094a4a1cea930358ba96b0950cd6.tar.gz
tde-packaging-bca5c6c76a1c094a4a1cea930358ba96b0950cd6.zip
Add packaging files for kkbswitch on Debian and Ubuntu
Diffstat (limited to 'ubuntu/precise/applications/kkbswitch/debian/cdbs/versions.pl')
-rw-r--r--ubuntu/precise/applications/kkbswitch/debian/cdbs/versions.pl19
1 files changed, 19 insertions, 0 deletions
diff --git a/ubuntu/precise/applications/kkbswitch/debian/cdbs/versions.pl b/ubuntu/precise/applications/kkbswitch/debian/cdbs/versions.pl
new file mode 100644
index 000000000..75c9add4b
--- /dev/null
+++ b/ubuntu/precise/applications/kkbswitch/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";