summaryrefslogtreecommitdiffstats
path: root/debian/wheezy/applications/tdeio-ftps/debian/cdbs/versions.pl
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-07-27 12:53:59 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-07-27 12:53:59 +0200
commit4091eb1d72ab057aba851b60e266b9a443c34b35 (patch)
tree8a9497f59b773863dc773747496e0eb3a8b31123 /debian/wheezy/applications/tdeio-ftps/debian/cdbs/versions.pl
parente2546c5b64bbae2a17a3802ac5c691c6370f54d5 (diff)
downloadtde-packaging-4091eb1d72ab057aba851b60e266b9a443c34b35.tar.gz
tde-packaging-4091eb1d72ab057aba851b60e266b9a443c34b35.zip
Fix tdeio-ftps packaging files for Debian and Ubuntu
Diffstat (limited to 'debian/wheezy/applications/tdeio-ftps/debian/cdbs/versions.pl')
-rw-r--r--debian/wheezy/applications/tdeio-ftps/debian/cdbs/versions.pl19
1 files changed, 19 insertions, 0 deletions
diff --git a/debian/wheezy/applications/tdeio-ftps/debian/cdbs/versions.pl b/debian/wheezy/applications/tdeio-ftps/debian/cdbs/versions.pl
new file mode 100644
index 000000000..75c9add4b
--- /dev/null
+++ b/debian/wheezy/applications/tdeio-ftps/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";