diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-11-21 22:10:38 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-11-21 22:10:38 -0600 |
commit | 95ac67b92aa2b1297d4f820db77181f4b7319198 (patch) | |
tree | 682ab4df2032dc09b4e9e00d8bf4d8f9479a1b71 /ubuntu/maverick/applications/filelight-l10n/debian/cdbs/versions.pl | |
parent | 4418a8abf51c9c605381ca374ba6cb6c17be7974 (diff) | |
download | tde-packaging-95ac67b92aa2b1297d4f820db77181f4b7319198.tar.gz tde-packaging-95ac67b92aa2b1297d4f820db77181f4b7319198.zip |
Remove obsolete filelight-l10n package from Debian and Ubuntu packaging files
Diffstat (limited to 'ubuntu/maverick/applications/filelight-l10n/debian/cdbs/versions.pl')
-rw-r--r-- | ubuntu/maverick/applications/filelight-l10n/debian/cdbs/versions.pl | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/ubuntu/maverick/applications/filelight-l10n/debian/cdbs/versions.pl b/ubuntu/maverick/applications/filelight-l10n/debian/cdbs/versions.pl deleted file mode 100644 index 1b110f7af..000000000 --- a/ubuntu/maverick/applications/filelight-l10n/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 "TDE-Version3=$version3\n"; -print "TDE-Version2=$version2\n"; -print "TDE-Next-Version3=$version3_next\n"; -print "TDE-Next-Version2=$version2_next\n"; |