forked from pool/cmake
Accepting request 294525 from KDE:Unstable:Frameworks
- Let CMake produces automatic RPM provides (added cmake.attr and cmake.prov as sources) OBS-URL: https://build.opensuse.org/request/show/294525 OBS-URL: https://build.opensuse.org/package/show/devel:tools:building/cmake?expand=0&rev=205
This commit is contained in:
parent
3b8afb52bc
commit
031d998d3d
2
cmake.attr
Normal file
2
cmake.attr
Normal file
@ -0,0 +1,2 @@
|
||||
%__cmake_provides %{_rpmconfigdir}/cmake.prov
|
||||
%__cmake_path ^/usr/lib(64)/cmake/.*/.*(Config\.cmake|-config\.cmake)$
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 4 19:35:33 UTC 2015 - hrvoje.senjan@gmail.com
|
||||
|
||||
- Let CMake produces automatic RPM provides (added cmake.attr and
|
||||
cmake.prov as sources)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Mar 15 11:59:13 UTC 2015 - foss@grueninger.de
|
||||
|
||||
|
82
cmake.prov
Normal file
82
cmake.prov
Normal file
@ -0,0 +1,82 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding:utf-8 -*-
|
||||
#
|
||||
# Copyright (C) 2015 Daniel Vrátil <dvratil@redhat.com>
|
||||
#
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Library General Public License as
|
||||
# published by the Free Software Foundation; either version 2 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Library General Public
|
||||
# License along with this program; if not, write to the
|
||||
# Free Software Foundation, Inc.,
|
||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
#
|
||||
|
||||
import sys
|
||||
import re
|
||||
import glob
|
||||
|
||||
class CMakeParser:
|
||||
def __init__(self, filelist = None):
|
||||
if filelist == None:
|
||||
filelist = sys.stdin
|
||||
|
||||
paths = map(lambda x: x.rstrip(), filelist.readlines())
|
||||
for path in paths:
|
||||
modulePath, cmakeModule, lowercase = self.parseCmakeModuleConfig(path)
|
||||
if modulePath and cmakeModule:
|
||||
version = self.resolveCMakeModuleVersion(modulePath, cmakeModule, lowercase)
|
||||
|
||||
if version:
|
||||
print("cmake(%s) = %s" % (cmakeModule, version))
|
||||
else:
|
||||
print("cmake(%s)" % cmakeModule)
|
||||
|
||||
|
||||
def parseCmakeModuleConfig(self, configFile):
|
||||
paths = configFile.rsplit("/", 3)
|
||||
|
||||
modulePath = "%s/cmake/%s" % (paths[0], paths[2])
|
||||
|
||||
lowercase = False
|
||||
configFile = glob.glob("%s/*Config.cmake" % modulePath)
|
||||
if not configFile:
|
||||
configFile = glob.glob("%s/*-config.cmake" % modulePath)
|
||||
lowercase = True
|
||||
if not configFile:
|
||||
return (None, None)
|
||||
|
||||
if lowercase:
|
||||
moduleName = configFile[0][len(modulePath) + 1:-len("-config.cmake")]
|
||||
else:
|
||||
moduleName = configFile[0][len(modulePath) + 1:-len("Config.cmake")]
|
||||
|
||||
return (modulePath, moduleName, lowercase)
|
||||
|
||||
def resolveCMakeModuleVersion(self, modulePath, cmakeModule, lowercase):
|
||||
versionFile = ("%s/%s-config-version.cmake" if lowercase else "%s/%sConfigVersion.cmake") % (modulePath, cmakeModule)
|
||||
try:
|
||||
f = open(versionFile, 'r')
|
||||
except:
|
||||
return None
|
||||
|
||||
for line in f:
|
||||
line = line.strip()
|
||||
|
||||
# set(PACKAGE_VERSION <version>)
|
||||
version = re.match(r"^set[\ ]*\([\ ]*PACKAGE_VERSION[\ ]+[\"]*([0-9\.]+)[\"]*[\ ]*[.]*\)", line)
|
||||
if version:
|
||||
return version.groups(1)[0]
|
||||
|
||||
return None
|
||||
|
||||
if __name__ == "__main__":
|
||||
parser = CMakeParser()
|
@ -26,6 +26,8 @@ Url: http://www.cmake.org/
|
||||
Source0: http://www.cmake.org/files/v3.2/%{name}-%{version}.tar.gz
|
||||
Source1: cmake.macros
|
||||
Source2: opensuse_rules.cmake
|
||||
Source3: cmake.attr
|
||||
Source4: cmake.prov
|
||||
Patch2: cmake-fix-ruby-test.patch
|
||||
# PATCH-FIX-UPSTREAM form.patch -- set the correct include path for the ncurses includes
|
||||
Patch4: form.patch
|
||||
@ -93,6 +95,10 @@ sed -i \
|
||||
-e 's:OPTFLAGS:%{optflags}:g' \
|
||||
%{buildroot}%{_datadir}/cmake/Modules/opensuse_rules.cmake
|
||||
|
||||
# RPM auto provides
|
||||
install -p -m0644 -D %{SOURCE3} %{buildroot}%{_prefix}/lib/rpm/fileattrs/cmake.attr
|
||||
install -p -m0755 -D %{SOURCE4} %{buildroot}%{_prefix}/lib/rpm/cmake.prov
|
||||
|
||||
%fdupes %{buildroot}%{_datadir}/cmake
|
||||
|
||||
%check
|
||||
@ -130,6 +136,8 @@ export PATH=$NPATH
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%config %{_sysconfdir}/rpm/macros.cmake
|
||||
%{_prefix}/lib/rpm/fileattrs/cmake.attr
|
||||
%{_prefix}/lib/rpm/cmake.prov
|
||||
%{_bindir}/cpack
|
||||
%{_bindir}/cmake
|
||||
%{_bindir}/ctest
|
||||
|
Loading…
Reference in New Issue
Block a user