diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-27 18:46:45 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-27 18:46:45 -0600 |
commit | c6497e1fdbc5afdbb9bd2ce7ebc247206608629d (patch) | |
tree | 1b2d83e9415f048a054f818d3ab22d149d4e4686 /ubuntu/maverick/applications/wlassistant/debian/cdbs/versions.pl | |
parent | 6c0f03d8e7af4bd7f05db9f4c875944944f9ea2d (diff) | |
download | tde-packaging-c6497e1fdbc5afdbb9bd2ce7ebc247206608629d.tar.gz tde-packaging-c6497e1fdbc5afdbb9bd2ce7ebc247206608629d.zip |
Use cmake for wlassistant on Debian and Ubuntu
Diffstat (limited to 'ubuntu/maverick/applications/wlassistant/debian/cdbs/versions.pl')
-rw-r--r-- | ubuntu/maverick/applications/wlassistant/debian/cdbs/versions.pl | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ubuntu/maverick/applications/wlassistant/debian/cdbs/versions.pl b/ubuntu/maverick/applications/wlassistant/debian/cdbs/versions.pl new file mode 100644 index 000000000..9ce11d8a3 --- /dev/null +++ b/ubuntu/maverick/applications/wlassistant/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"; |