diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-03-06 14:38:41 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-03-06 14:38:41 -0600 |
commit | e473251d6d5a894f939a57e580e38e9e96b9cd69 (patch) | |
tree | d28b7cf287c6fcd65ebdb01573389885e2133ebc /ubuntu/maverick/applications/kio-locate/debian/cdbs/versions.pl | |
parent | 309f28e865c2733f3752110254ba8c227b980876 (diff) | |
download | tde-packaging-e473251d6d5a894f939a57e580e38e9e96b9cd69.tar.gz tde-packaging-e473251d6d5a894f939a57e580e38e9e96b9cd69.zip |
Update Debian and Ubuntu packaging to match new module names
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, 0 insertions, 19 deletions
diff --git a/ubuntu/maverick/applications/kio-locate/debian/cdbs/versions.pl b/ubuntu/maverick/applications/kio-locate/debian/cdbs/versions.pl deleted file mode 100644 index 9ce11d8a3..000000000 --- a/ubuntu/maverick/applications/kio-locate/debian/cdbs/versions.pl +++ /dev/null @@ -1,19 +0,0 @@ -#!/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"; |