summaryrefslogtreecommitdiffstats
path: root/ubuntu/maverick/applications/kshutdown/debian/cdbs/versions.pl
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-07-28 18:13:29 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-07-28 18:13:29 -0500
commit41edd1235c1100cbe0307af8da309da6f1ca3d87 (patch)
tree70257dced6b425f9abbc193f8038c8a52dca8ffb /ubuntu/maverick/applications/kshutdown/debian/cdbs/versions.pl
parent549070db7c0189e718a63e973f98b53b84e126cb (diff)
parent31853390244b190be4e984e5c97356bf37395233 (diff)
downloadtde-packaging-41edd1235c1100cbe0307af8da309da6f1ca3d87.tar.gz
tde-packaging-41edd1235c1100cbe0307af8da309da6f1ca3d87.zip
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tde-packaging
Diffstat (limited to 'ubuntu/maverick/applications/kshutdown/debian/cdbs/versions.pl')
-rw-r--r--ubuntu/maverick/applications/kshutdown/debian/cdbs/versions.pl19
1 files changed, 19 insertions, 0 deletions
diff --git a/ubuntu/maverick/applications/kshutdown/debian/cdbs/versions.pl b/ubuntu/maverick/applications/kshutdown/debian/cdbs/versions.pl
new file mode 100644
index 000000000..75c9add4b
--- /dev/null
+++ b/ubuntu/maverick/applications/kshutdown/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";