summaryrefslogtreecommitdiffstats
path: root/ubuntu/raring/applications/krecipes/debian/cdbs/versions.pl
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-07-31 17:28:23 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-07-31 17:28:46 +0200
commitfa914385d05f450d34fe8b561529c17c43432b81 (patch)
tree41e9d1c16bf47c8d53b4d92b8fc050be737088a4 /ubuntu/raring/applications/krecipes/debian/cdbs/versions.pl
parenta3b862075dfb95d407dba59baf28212a7faac0e2 (diff)
downloadtde-packaging-fa914385d05f450d34fe8b561529c17c43432b81.tar.gz
tde-packaging-fa914385d05f450d34fe8b561529c17c43432b81.zip
Add krecipes packaging files for Debian and Ubuntu
Diffstat (limited to 'ubuntu/raring/applications/krecipes/debian/cdbs/versions.pl')
-rw-r--r--ubuntu/raring/applications/krecipes/debian/cdbs/versions.pl19
1 files changed, 19 insertions, 0 deletions
diff --git a/ubuntu/raring/applications/krecipes/debian/cdbs/versions.pl b/ubuntu/raring/applications/krecipes/debian/cdbs/versions.pl
new file mode 100644
index 000000000..75c9add4b
--- /dev/null
+++ b/ubuntu/raring/applications/krecipes/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";