summaryrefslogtreecommitdiffstats
path: root/ubuntu/raring/applications/amarok/debian/cdbs/versions.pl
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2014-04-17 13:53:27 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2014-04-17 13:53:27 +0900
commit7ceb46211ddfdbfd07b79e9cd2077ed0605ef47e (patch)
tree6a309da61ff8fad680a38dd405e7066646262cfa /ubuntu/raring/applications/amarok/debian/cdbs/versions.pl
parente43a1170040313d3384f0eefdf7a071059b9c2a9 (diff)
downloadtde-packaging-7ceb46211ddfdbfd07b79e9cd2077ed0605ef47e.tar.gz
tde-packaging-7ceb46211ddfdbfd07b79e9cd2077ed0605ef47e.zip
Removed Ubuntu/raring folder
Diffstat (limited to 'ubuntu/raring/applications/amarok/debian/cdbs/versions.pl')
-rw-r--r--ubuntu/raring/applications/amarok/debian/cdbs/versions.pl19
1 files changed, 0 insertions, 19 deletions
diff --git a/ubuntu/raring/applications/amarok/debian/cdbs/versions.pl b/ubuntu/raring/applications/amarok/debian/cdbs/versions.pl
deleted file mode 100644
index 75c9add4b..000000000
--- a/ubuntu/raring/applications/amarok/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";