diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-24 14:32:28 -0600 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2012-07-23 23:19:50 +0200 |
commit | 34371cbe162713314b097c956d268863bbe98aa6 (patch) | |
tree | 21220b0abde16666b90466248b64eb6b0f7a2f1f /ubuntu/maverick/applications/kio-locate/debian/cdbs/versions.pl | |
parent | 8f45d301ff20ba484a354985f83c200c80c06611 (diff) | |
download | tde-packaging-34371cbe162713314b097c956d268863bbe98aa6.tar.gz tde-packaging-34371cbe162713314b097c956d268863bbe98aa6.zip |
Build kio-locate with CMake
(cherry picked from commit c7d982080a499d2dad14754de8781024a816c9f0)
Diffstat (limited to 'ubuntu/maverick/applications/kio-locate/debian/cdbs/versions.pl')
-rw-r--r-- | ubuntu/maverick/applications/kio-locate/debian/cdbs/versions.pl | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ubuntu/maverick/applications/kio-locate/debian/cdbs/versions.pl b/ubuntu/maverick/applications/kio-locate/debian/cdbs/versions.pl new file mode 100644 index 000000000..9ce11d8a3 --- /dev/null +++ b/ubuntu/maverick/applications/kio-locate/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"; |