From 72eecb73e30b9ef2e6ead11d41efe256d7246567 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Fri, 14 May 2021 13:01:32 +0200 Subject: DEB cmake: Add a standalone package for TDE CMake modules. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- .../_base/common/cmake/debian/cdbs/cmake-versions.pl | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 ubuntu/_base/common/cmake/debian/cdbs/cmake-versions.pl (limited to 'ubuntu/_base/common/cmake/debian/cdbs/cmake-versions.pl') diff --git a/ubuntu/_base/common/cmake/debian/cdbs/cmake-versions.pl b/ubuntu/_base/common/cmake/debian/cdbs/cmake-versions.pl new file mode 100644 index 000000000..6bbbec325 --- /dev/null +++ b/ubuntu/_base/common/cmake/debian/cdbs/cmake-versions.pl @@ -0,0 +1,19 @@ +#!/usr/bin/env perl + +use strict; +use warnings; + +my $version = `cmake --version | awk '/^cmake version/ {print \$3}' | tr -d '\n'`; +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 "CMake-Version3=$version3\n"; +print "CMake-Version2=$version2\n"; +print "CMake-Next-Version3=$version3_next\n"; +print "CMake-Next-Version2=$version2_next\n"; -- cgit v1.2.3