diff options
author | François Andriot <albator78@libertysurf.fr> | 2013-08-27 21:17:52 +0200 |
---|---|---|
committer | François Andriot <albator78@libertysurf.fr> | 2013-08-27 21:17:52 +0200 |
commit | 1af57210e2e55d40eb39a274fcf48779c6b9e7d5 (patch) | |
tree | 55c22bbd35462f1c940b24614af05ea07bcd7f35 /ubuntu/precise/applications/klcddimmer/debian/cdbs/versions.pl | |
parent | af8c5ead9ac4c1ece3408b74224e5e273b6994ce (diff) | |
parent | 2d0d0ba99b507cab093962cb910ddc7dd4755c94 (diff) | |
download | tde-packaging-1af57210e2e55d40eb39a274fcf48779c6b9e7d5.tar.gz tde-packaging-1af57210e2e55d40eb39a274fcf48779c6b9e7d5.zip |
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tde-packaging
Diffstat (limited to 'ubuntu/precise/applications/klcddimmer/debian/cdbs/versions.pl')
-rw-r--r-- | ubuntu/precise/applications/klcddimmer/debian/cdbs/versions.pl | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ubuntu/precise/applications/klcddimmer/debian/cdbs/versions.pl b/ubuntu/precise/applications/klcddimmer/debian/cdbs/versions.pl new file mode 100644 index 000000000..75c9add4b --- /dev/null +++ b/ubuntu/precise/applications/klcddimmer/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/^(([^.]+\.){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"; |