diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-07-08 19:51:03 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-07-08 19:51:03 -0500 |
commit | 2092630a9ad186705d73db0c87db757bd4401b6a (patch) | |
tree | 0cc9a59b9d8db16350835ee2d606a8ee7c371d09 /ubuntu/precise/applications/kpowersave-nohal/debian/cdbs/versions.pl | |
parent | 8feea0de98a45a098e8d7f5cc297deeb2bd9f359 (diff) | |
download | tde-packaging-2092630a9ad186705d73db0c87db757bd4401b6a.tar.gz tde-packaging-2092630a9ad186705d73db0c87db757bd4401b6a.zip |
Rename knetworkmanager9 and kpwoersave-nohal modules in Debian and Ubuntu
Diffstat (limited to 'ubuntu/precise/applications/kpowersave-nohal/debian/cdbs/versions.pl')
-rw-r--r-- | ubuntu/precise/applications/kpowersave-nohal/debian/cdbs/versions.pl | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/ubuntu/precise/applications/kpowersave-nohal/debian/cdbs/versions.pl b/ubuntu/precise/applications/kpowersave-nohal/debian/cdbs/versions.pl deleted file mode 100644 index 75c9add4b..000000000 --- a/ubuntu/precise/applications/kpowersave-nohal/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/^(([^.]+\.){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"; |