diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-09-10 16:13:23 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-09-10 16:13:23 -0500 |
commit | 05a59ddb0228494ba27bacbe7d391f06725b0689 (patch) | |
tree | 7c028104ac86c3b1e43ea3584528939bd8802426 /debian/wheezy/applications/abakus/debian/cdbs/versions.pl | |
parent | a3210d42cfc1a2eb722dd85b0ddac0a2177f26ab (diff) | |
download | tde-packaging-05a59ddb0228494ba27bacbe7d391f06725b0689.tar.gz tde-packaging-05a59ddb0228494ba27bacbe7d391f06725b0689.zip |
Split wheezy off of squeeze
Diffstat (limited to 'debian/wheezy/applications/abakus/debian/cdbs/versions.pl')
-rw-r--r-- | debian/wheezy/applications/abakus/debian/cdbs/versions.pl | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/debian/wheezy/applications/abakus/debian/cdbs/versions.pl b/debian/wheezy/applications/abakus/debian/cdbs/versions.pl new file mode 100644 index 000000000..9ce11d8a3 --- /dev/null +++ b/debian/wheezy/applications/abakus/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/-[^-]+$//; +($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"; |