diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-01-05 12:55:16 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-01-05 12:55:16 +0900 |
commit | 2406c9c43c141a2d961f37861e6f96651ca9425f (patch) | |
tree | 6315253955f9f7fa725a798082a51c4fa01ab9e2 /debian/cdbs/versions.pl | |
parent | 7a0c2ce49743153e398ce50618c8d2e7b73c6e6d (diff) | |
download | polkit-tqt-2406c9c43c141a2d961f37861e6f96651ca9425f.tar.gz polkit-tqt-2406c9c43c141a2d961f37861e6f96651ca9425f.zip |
Removed DEB files which will be moved to tde-packaging repo.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'debian/cdbs/versions.pl')
-rw-r--r-- | debian/cdbs/versions.pl | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/debian/cdbs/versions.pl b/debian/cdbs/versions.pl deleted file mode 100644 index 1b110f7af..000000000 --- a/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"; |