2013-10-15 19:17:36 +04:00
#.rst:
# CPackRPM
# --------
#
# The builtin (binary) CPack RPM generator (Unix only)
#
2013-10-15 21:23:23 +04:00
# Variables specific to CPack RPM generator
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#
2013-10-15 19:17:36 +04:00
# CPackRPM may be used to create RPM package using CPack. CPackRPM is a
# CPack generator thus it uses the CPACK_XXX variables used by CPack :
# http://www.cmake.org/Wiki/CMake:CPackConfiguration
#
# However CPackRPM has specific features which are controlled by the
# specifics CPACK_RPM_XXX variables. CPackRPM is a component aware
2011-10-30 23:13:20 +04:00
# generator so when CPACK_RPM_COMPONENT_INSTALL is ON some more
2013-10-15 19:17:36 +04:00
# CPACK_RPM_<ComponentName>_XXXX variables may be used in order to have
# component specific values. Note however that <componentName> refers
# to the **grouping name**. This may be either a component name or a
# component GROUP name. Usually those vars correspond to RPM spec file
# entities, one may find information about spec files here
# http://www.rpm.org/wiki/Docs. You'll find a detailed usage of
# CPackRPM on the wiki:
#
# ::
#
# http://www.cmake.org/Wiki/CMake:CPackPackageGenerators#RPM_.28Unix_Only.29
#
2009-05-14 23:31:18 +04:00
# However as a handy reminder here comes the list of specific variables:
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_RPM_PACKAGE_SUMMARY
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# The RPM package summary.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# * Mandatory : YES
# * Default : CPACK_PACKAGE_DESCRIPTION_SUMMARY
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_RPM_PACKAGE_NAME
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# The RPM package name.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# * Mandatory : YES
# * Default : CPACK_PACKAGE_NAME
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_RPM_PACKAGE_VERSION
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# The RPM package version.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# * Mandatory : YES
# * Default : CPACK_PACKAGE_VERSION
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_RPM_PACKAGE_ARCHITECTURE
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# The RPM package architecture.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# * Mandatory : NO
# * Default : -
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# This may be set to "noarch" if you know you are building a noarch package.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_RPM_PACKAGE_RELEASE
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# The RPM package release.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# * Mandatory : YES
# * Default : 1
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# This is the numbering of the RPM package itself, i.e. the version of the
# packaging and not the version of the content (see
# CPACK_RPM_PACKAGE_VERSION). One may change the default value if the
# previous packaging was buggy and/or you want to put here a fancy Linux
# distro specific numbering.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_RPM_PACKAGE_LICENSE
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# The RPM package license policy.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# * Mandatory : YES
# * Default : "unknown"
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_RPM_PACKAGE_GROUP
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# The RPM package group.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# * Mandatory : YES
# * Default : "unknown"
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_RPM_PACKAGE_VENDOR
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# The RPM package vendor.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# * Mandatory : YES
# * Default : CPACK_PACKAGE_VENDOR if set or "unknown"
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_RPM_PACKAGE_URL
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# The projects URL.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# * Mandatory : NO
# * Default : -
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_RPM_PACKAGE_DESCRIPTION
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# RPM package description.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# * Mandatory : YES
# * Default : CPACK_PACKAGE_DESCRIPTION_FILE if set or "no package
# description available"
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_RPM_COMPRESSION_TYPE
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# RPM compression type.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# * Mandatory : NO
# * Default : -
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# May be used to override RPM compression type to be used to build the
# RPM. For example some Linux distribution now default to lzma or xz
# compression whereas older cannot use such RPM. Using this one can enforce
# compression type to be used. Possible value are: lzma, xz, bzip2 and gzip.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_RPM_PACKAGE_REQUIRES
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# RPM spec requires field.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# * Mandatory : NO
# * Default : -
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# May be used to set RPM dependencies (requires). Note that you must enclose
# the complete requires string between quotes, for example::
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# set(CPACK_RPM_PACKAGE_REQUIRES "python >= 2.5.0, cmake >= 2.8")
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# The required package list of an RPM file could be printed with::
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# rpm -qp --requires file.rpm
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_RPM_PACKAGE_SUGGESTS
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# RPM spec suggest field.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# * Mandatory : NO
# * Default : -
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# May be used to set weak RPM dependencies (suggests). Note that you must
# enclose the complete requires string between quotes.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_RPM_PACKAGE_PROVIDES
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# RPM spec provides field.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# * Mandatory : NO
# * Default : -
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# May be used to set RPM dependencies (provides). The provided package list
# of an RPM file could be printed with::
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# rpm -qp --provides file.rpm
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_RPM_PACKAGE_OBSOLETES
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# RPM spec obsoletes field.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# * Mandatory : NO
# * Default : -
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# May be used to set RPM packages that are obsoleted by this one.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_RPM_PACKAGE_RELOCATABLE
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# build a relocatable RPM.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# * Mandatory : NO
# * Default : CPACK_PACKAGE_RELOCATABLE
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# If this variable is set to TRUE or ON CPackRPM will try
# to build a relocatable RPM package. A relocatable RPM may
# be installed using::
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# rpm --prefix or --relocate
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# in order to install it at an alternate place see rpm(8). Note that
# currently this may fail if CPACK_SET_DESTDIR is set to ON. If
# CPACK_SET_DESTDIR is set then you will get a warning message but if there
# is file installed with absolute path you'll get unexpected behavior.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_RPM_SPEC_INSTALL_POST
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# * Mandatory : NO
# * Default : -
# * Deprecated: YES
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# This way of specifying post-install script is deprecated, use
# CPACK_RPM_POST_INSTALL_SCRIPT_FILE.
# May be used to set an RPM post-install command inside the spec file.
# For example setting it to "/bin/true" may be used to prevent
# rpmbuild to strip binaries.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_RPM_SPEC_MORE_DEFINE
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# RPM extended spec definitions lines.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# * Mandatory : NO
# * Default : -
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# May be used to add any %define lines to the generated spec file.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_RPM_PACKAGE_DEBUG
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# Toggle CPackRPM debug output.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# * Mandatory : NO
# * Default : -
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# May be set when invoking cpack in order to trace debug information
# during CPack RPM run. For example you may launch CPack like this::
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# cpack -D CPACK_RPM_PACKAGE_DEBUG=1 -G RPM
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_RPM_USER_BINARY_SPECFILE
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# A user provided spec file.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# * Mandatory : NO
# * Default : -
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# May be set by the user in order to specify a USER binary spec file
# to be used by CPackRPM instead of generating the file.
# The specified file will be processed by configure_file( @ONLY).
# One can provide a component specific file by setting
# CPACK_RPM_<componentName>_USER_BINARY_SPECFILE.
#
# .. variable:: CPACK_RPM_GENERATE_USER_BINARY_SPECFILE_TEMPLATE
#
# Spec file template.
#
# * Mandatory : NO
# * Default : -
#
# If set CPack will generate a template for USER specified binary
# spec file and stop with an error. For example launch CPack like this::
#
# cpack -D CPACK_RPM_GENERATE_USER_BINARY_SPECFILE_TEMPLATE=1 -G RPM
#
# The user may then use this file in order to hand-craft is own
# binary spec file which may be used with CPACK_RPM_USER_BINARY_SPECFILE.
#
# .. variable:: CPACK_RPM_PRE_INSTALL_SCRIPT_FILE
# CPACK_RPM_PRE_UNINSTALL_SCRIPT_FILE
#
# * Mandatory : NO
# * Default : -
#
# May be used to embed a pre (un)installation script in the spec file.
# The refered script file(s) will be read and directly
# put after the %pre or %preun section
# If CPACK_RPM_COMPONENT_INSTALL is set to ON the (un)install script for
# each component can be overridden with
# CPACK_RPM_<COMPONENT>_PRE_INSTALL_SCRIPT_FILE and
# CPACK_RPM_<COMPONENT>_PRE_UNINSTALL_SCRIPT_FILE.
# One may verify which scriptlet has been included with::
#
# rpm -qp --scripts package.rpm
#
# .. variable:: CPACK_RPM_POST_INSTALL_SCRIPT_FILE
# CPACK_RPM_POST_UNINSTALL_SCRIPT_FILE
#
# * Mandatory : NO
# * Default : -
#
# May be used to embed a post (un)installation script in the spec file.
# The refered script file(s) will be read and directly
# put after the %post or %postun section.
# If CPACK_RPM_COMPONENT_INSTALL is set to ON the (un)install script for
# each component can be overridden with
# CPACK_RPM_<COMPONENT>_POST_INSTALL_SCRIPT_FILE and
# CPACK_RPM_<COMPONENT>_POST_UNINSTALL_SCRIPT_FILE.
# One may verify which scriptlet has been included with::
#
# rpm -qp --scripts package.rpm
#
# .. variable:: CPACK_RPM_USER_FILELIST
# CPACK_RPM_<COMPONENT>_USER_FILELIST
#
# * Mandatory : NO
# * Default : -
#
# May be used to explicitly specify %(<directive>) file line
# in the spec file. Like %config(noreplace) or any other directive
# that be found in the %files section. Since CPackRPM is generating
# the list of files (and directories) the user specified files of
# the CPACK_RPM_<COMPONENT>_USER_FILELIST list will be removed from
# the generated list.
#
# .. variable:: CPACK_RPM_CHANGELOG_FILE
#
# RPM changelog file.
#
# * Mandatory : NO
# * Default : -
#
# May be used to embed a changelog in the spec file.
# The refered file will be read and directly put after the %changelog
# section.
#
# .. variable:: CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST
#
# list of path to be excluded.
#
# * Mandatory : NO
# * Default : /etc /etc/init.d /usr /usr/share /usr/share/doc /usr/bin /usr/lib /usr/lib64 /usr/include
#
# May be used to exclude path (directories or files) from the auto-generated
# list of paths discovered by CPack RPM. The defaut value contains a
# reasonable set of values if the variable is not defined by the user. If the
# variable is defined by the user then CPackRPM will NOT any of the default
# path. If you want to add some path to the default list then you can use
# CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST_ADDITION variable.
#
# .. variable:: CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST_ADDITION
#
# additional list of path to be excluded.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# * Mandatory : NO
# * Default : -
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# May be used to add more exclude path (directories or files) from the initial
# default list of excluded paths. See CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST.
2009-05-14 23:31:18 +04:00
2009-09-28 19:46:51 +04:00
#=============================================================================
# Copyright 2007-2009 Kitware, Inc.
#
# Distributed under the OSI-approved BSD License (the "License");
# see accompanying file Copyright.txt for details.
#
# This software is distributed WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the License for more information.
#=============================================================================
2010-08-07 04:48:47 +04:00
# (To distribute this file outside of CMake, substitute the full
2009-09-28 19:46:51 +04:00
# License text for the above reference.)
2009-05-14 23:31:18 +04:00
# Author: Eric Noulard with the help of Alexander Neundorf.
2007-08-17 17:13:15 +04:00
2012-08-13 21:47:32 +04:00
if ( CMAKE_BINARY_DIR )
message ( FATAL_ERROR "CPackRPM.cmake may only be used by CPack internally." )
2012-08-13 21:50:14 +04:00
endif ( )
2007-08-08 19:33:42 +04:00
2012-08-13 21:47:32 +04:00
if ( NOT UNIX )
message ( FATAL_ERROR "CPackRPM.cmake may only be used under UNIX." )
2012-08-13 21:50:14 +04:00
endif ( )
2007-08-08 19:33:42 +04:00
2007-08-17 17:13:15 +04:00
# rpmbuild is the basic command for building RPM package
2010-05-20 17:09:46 +04:00
# it may be a simple (symbolic) link to rpm command.
2012-08-13 21:47:32 +04:00
find_program ( RPMBUILD_EXECUTABLE rpmbuild )
2007-08-08 19:33:42 +04:00
2010-05-20 17:09:46 +04:00
# Check version of the rpmbuild tool this would be easier to
2009-05-12 23:13:10 +04:00
# track bugs with users and CPackRPM debug mode.
2010-05-20 17:09:46 +04:00
# We may use RPM version in order to check for available version dependent features
2012-08-13 21:47:32 +04:00
if ( RPMBUILD_EXECUTABLE )
2009-05-12 23:13:10 +04:00
execute_process ( COMMAND ${ RPMBUILD_EXECUTABLE } --version
O U T P U T _ V A R I A B L E _ T M P _ V E R S I O N
E R R O R _ Q U I E T
O U T P U T _ S T R I P _ T R A I L I N G _ W H I T E S P A C E )
2012-08-19 13:49:56 +04:00
string ( REGEX REPLACE "^.* " ""
2009-05-12 23:13:10 +04:00
R P M B U I L D _ E X E C U T A B L E _ V E R S I O N
2010-05-20 17:09:46 +04:00
$ { _ T M P _ V E R S I O N } )
2012-08-13 21:47:32 +04:00
if ( CPACK_RPM_PACKAGE_DEBUG )
message ( "CPackRPM:Debug: rpmbuild version is <${RPMBUILD_EXECUTABLE_VERSION}>" )
2012-08-13 21:50:14 +04:00
endif ( )
endif ( )
2009-05-12 23:13:10 +04:00
2012-08-13 21:47:32 +04:00
if ( NOT RPMBUILD_EXECUTABLE )
message ( FATAL_ERROR "RPM package requires rpmbuild executable" )
2012-08-13 21:50:14 +04:00
endif ( )
2007-08-08 19:33:42 +04:00
2011-03-10 11:48:46 +03:00
# Display lsb_release output if DEBUG mode enable
# This will help to diagnose problem with CPackRPM
# because we will know on which kind of Linux we are
2012-08-13 21:47:32 +04:00
if ( CPACK_RPM_PACKAGE_DEBUG )
2011-03-10 11:48:46 +03:00
find_program ( LSB_RELEASE_EXECUTABLE lsb_release )
if ( LSB_RELEASE_EXECUTABLE )
execute_process ( COMMAND ${ LSB_RELEASE_EXECUTABLE } -a
O U T P U T _ V A R I A B L E _ T M P _ L S B _ R E L E A S E _ O U T P U T
E R R O R _ Q U I E T
O U T P U T _ S T R I P _ T R A I L I N G _ W H I T E S P A C E )
string ( REGEX REPLACE "\n" ", "
L S B _ R E L E A S E _ O U T P U T
$ { _ T M P _ L S B _ R E L E A S E _ O U T P U T } )
2012-08-13 21:50:14 +04:00
else ( )
2011-03-10 11:48:46 +03:00
set ( LSB_RELEASE_OUTPUT "lsb_release not installed/found!" )
2012-08-13 21:50:14 +04:00
endif ( )
2012-08-13 21:47:32 +04:00
message ( "CPackRPM:Debug: LSB_RELEASE = ${LSB_RELEASE_OUTPUT}" )
2012-08-13 21:50:14 +04:00
endif ( )
2011-03-10 11:48:46 +03:00
2009-05-12 23:13:10 +04:00
# We may use RPM version in the future in order
2010-05-20 17:09:46 +04:00
# to shut down warning about space in buildtree
2009-05-12 23:13:10 +04:00
# some recent RPM version should support space in different places.
# not checked [yet].
2012-08-13 21:47:32 +04:00
if ( CPACK_TOPLEVEL_DIRECTORY MATCHES ".* .*" )
message ( FATAL_ERROR "${RPMBUILD_EXECUTABLE} can't handle paths with spaces, use a build directory without spaces for building RPMs." )
2012-08-13 21:50:14 +04:00
endif ( )
2007-08-30 00:31:46 +04:00
2010-05-20 17:09:46 +04:00
# If rpmbuild is found
2007-08-17 17:13:15 +04:00
# we try to discover alien since we may be on non RPM distro like Debian.
# In this case we may try to to use more advanced features
# like generating RPM directly from DEB using alien.
# FIXME feature not finished (yet)
2012-08-13 21:47:32 +04:00
find_program ( ALIEN_EXECUTABLE alien )
if ( ALIEN_EXECUTABLE )
message ( STATUS "alien found, we may be on a Debian based distro." )
2012-08-13 21:50:14 +04:00
endif ( )
2007-08-17 17:13:15 +04:00
2011-09-20 22:21:01 +04:00
# Are we packaging components ?
2012-08-13 21:47:32 +04:00
if ( CPACK_RPM_PACKAGE_COMPONENT )
set ( CPACK_RPM_PACKAGE_COMPONENT_PART_NAME "-${CPACK_RPM_PACKAGE_COMPONENT}" )
2012-08-13 21:50:14 +04:00
else ( )
2012-08-13 21:47:32 +04:00
set ( CPACK_RPM_PACKAGE_COMPONENT_PART_NAME "" )
2012-08-13 21:50:14 +04:00
endif ( )
2011-09-20 22:21:01 +04:00
2012-10-24 23:37:18 +04:00
set ( WDIR "${CPACK_TOPLEVEL_DIRECTORY}/${CPACK_PACKAGE_FILE_NAME}${CPACK_RPM_PACKAGE_COMPONENT_PART_PATH}" )
2010-05-20 17:09:46 +04:00
#
2007-08-17 17:13:15 +04:00
# Use user-defined RPM specific variables value
# or generate reasonable default value from
# CPACK_xxx generic values.
# The variables comes from the needed (mandatory or not)
# values found in the RPM specification file aka ".spec" file.
# The variables which may/should be defined are:
#
2007-10-13 03:33:41 +04:00
# CPACK_RPM_PACKAGE_SUMMARY (mandatory)
2012-08-13 21:47:32 +04:00
if ( NOT CPACK_RPM_PACKAGE_SUMMARY )
2007-08-17 17:13:15 +04:00
# if neither var is defined lets use the name as summary
2012-08-13 21:47:32 +04:00
if ( NOT CPACK_PACKAGE_DESCRIPTION_SUMMARY )
string ( TOLOWER "${CPACK_PACKAGE_NAME}" CPACK_RPM_PACKAGE_SUMMARY )
2012-08-13 21:50:14 +04:00
else ( )
2012-08-13 21:47:32 +04:00
set ( CPACK_RPM_PACKAGE_SUMMARY ${ CPACK_PACKAGE_DESCRIPTION_SUMMARY } )
2012-08-13 21:50:14 +04:00
endif ( )
endif ( )
2010-05-20 17:09:46 +04:00
2007-10-13 03:33:41 +04:00
# CPACK_RPM_PACKAGE_NAME (mandatory)
2012-08-13 21:47:32 +04:00
if ( NOT CPACK_RPM_PACKAGE_NAME )
string ( TOLOWER "${CPACK_PACKAGE_NAME}" CPACK_RPM_PACKAGE_NAME )
2012-08-13 21:50:14 +04:00
endif ( )
2007-08-17 17:13:15 +04:00
2007-10-13 03:33:41 +04:00
# CPACK_RPM_PACKAGE_VERSION (mandatory)
2012-08-13 21:47:32 +04:00
if ( NOT CPACK_RPM_PACKAGE_VERSION )
if ( NOT CPACK_PACKAGE_VERSION )
message ( FATAL_ERROR "RPM package requires a package version" )
2012-08-13 21:50:14 +04:00
endif ( )
2012-08-13 21:47:32 +04:00
set ( CPACK_RPM_PACKAGE_VERSION ${ CPACK_PACKAGE_VERSION } )
2012-08-13 21:50:14 +04:00
endif ( )
2010-07-04 13:43:33 +04:00
# Replace '-' in version with '_'
# '-' character is an Illegal RPM version character
# it is illegal because it is used to separate
# RPM "Version" from RPM "Release"
2012-08-13 21:47:32 +04:00
string ( REPLACE "-" "_" CPACK_RPM_PACKAGE_VERSION ${ CPACK_RPM_PACKAGE_VERSION } )
2007-08-17 17:13:15 +04:00
2007-10-13 03:33:41 +04:00
# CPACK_RPM_PACKAGE_ARCHITECTURE (optional)
2012-08-13 21:47:32 +04:00
if ( CPACK_RPM_PACKAGE_ARCHITECTURE )
set ( TMP_RPM_BUILDARCH "Buildarch: ${CPACK_RPM_PACKAGE_ARCHITECTURE}" )
if ( CPACK_RPM_PACKAGE_DEBUG )
message ( "CPackRPM:Debug: using user-specified build arch = ${CPACK_RPM_PACKAGE_ARCHITECTURE}" )
2012-08-13 21:50:14 +04:00
endif ( )
else ( )
2012-08-13 21:47:32 +04:00
set ( TMP_RPM_BUILDARCH "" )
2012-08-13 21:50:14 +04:00
endif ( )
2007-08-17 17:13:15 +04:00
2007-10-13 03:33:41 +04:00
# CPACK_RPM_PACKAGE_RELEASE
2007-08-17 17:13:15 +04:00
# The RPM release is the numbering of the RPM package ITSELF
# this is the version of the PACKAGING and NOT the version
# of the CONTENT of the package.
# You may well need to generate a new RPM package release
# without changing the version of the packaged software.
# This is the case when the packaging is buggy (not) the software :=)
# If not set, 1 is a good candidate
2012-08-13 21:47:32 +04:00
if ( NOT CPACK_RPM_PACKAGE_RELEASE )
set ( CPACK_RPM_PACKAGE_RELEASE 1 )
2012-08-13 21:50:14 +04:00
endif ( )
2007-10-13 03:33:41 +04:00
# CPACK_RPM_PACKAGE_LICENSE
2012-08-13 21:47:32 +04:00
if ( NOT CPACK_RPM_PACKAGE_LICENSE )
set ( CPACK_RPM_PACKAGE_LICENSE "unknown" )
2012-08-13 21:50:14 +04:00
endif ( )
2007-10-13 03:33:41 +04:00
# CPACK_RPM_PACKAGE_GROUP
2012-08-13 21:47:32 +04:00
if ( NOT CPACK_RPM_PACKAGE_GROUP )
set ( CPACK_RPM_PACKAGE_GROUP "unknown" )
2012-08-13 21:50:14 +04:00
endif ( )
2007-10-13 03:33:41 +04:00
# CPACK_RPM_PACKAGE_VENDOR
2012-08-13 21:47:32 +04:00
if ( NOT CPACK_RPM_PACKAGE_VENDOR )
if ( CPACK_PACKAGE_VENDOR )
set ( CPACK_RPM_PACKAGE_VENDOR "${CPACK_PACKAGE_VENDOR}" )
2012-08-13 21:50:14 +04:00
else ( )
2012-08-13 21:47:32 +04:00
set ( CPACK_RPM_PACKAGE_VENDOR "unknown" )
2012-08-13 21:50:14 +04:00
endif ( )
endif ( )
2007-10-13 03:33:41 +04:00
# CPACK_RPM_PACKAGE_SOURCE
2008-09-20 01:45:37 +04:00
# The name of the source tarball in case we generate a source RPM
2007-08-17 17:13:15 +04:00
2007-10-13 03:33:41 +04:00
# CPACK_RPM_PACKAGE_DESCRIPTION
2007-11-01 16:52:09 +03:00
# The variable content may be either
2010-07-02 18:58:00 +04:00
# - explicitly given by the user or
2007-11-01 16:52:09 +03:00
# - filled with the content of CPACK_PACKAGE_DESCRIPTION_FILE
# if it is defined
# - set to a default value
#
2012-08-13 21:47:32 +04:00
if ( NOT CPACK_RPM_PACKAGE_DESCRIPTION )
if ( CPACK_PACKAGE_DESCRIPTION_FILE )
file ( READ ${ CPACK_PACKAGE_DESCRIPTION_FILE } CPACK_RPM_PACKAGE_DESCRIPTION )
2012-08-13 21:50:14 +04:00
else ( )
2012-08-13 21:47:32 +04:00
set ( CPACK_RPM_PACKAGE_DESCRIPTION "no package description available" )
2012-08-13 21:50:14 +04:00
endif ( )
endif ( )
2007-08-17 17:13:15 +04:00
2010-04-10 13:23:01 +04:00
# CPACK_RPM_COMPRESSION_TYPE
#
2012-08-13 21:47:32 +04:00
if ( CPACK_RPM_COMPRESSION_TYPE )
if ( CPACK_RPM_PACKAGE_DEBUG )
message ( "CPackRPM:Debug: User Specified RPM compression type: ${CPACK_RPM_COMPRESSION_TYPE}" )
2012-08-13 21:50:14 +04:00
endif ( )
2012-08-13 21:47:32 +04:00
if ( CPACK_RPM_COMPRESSION_TYPE STREQUAL "lzma" )
set ( CPACK_RPM_COMPRESSION_TYPE_TMP "%define _binary_payload w9.lzdio" )
2012-08-13 21:50:14 +04:00
endif ( )
2012-08-13 21:47:32 +04:00
if ( CPACK_RPM_COMPRESSION_TYPE STREQUAL "xz" )
set ( CPACK_RPM_COMPRESSION_TYPE_TMP "%define _binary_payload w7.xzdio" )
2012-08-13 21:50:14 +04:00
endif ( )
2012-08-13 21:47:32 +04:00
if ( CPACK_RPM_COMPRESSION_TYPE STREQUAL "bzip2" )
set ( CPACK_RPM_COMPRESSION_TYPE_TMP "%define _binary_payload w9.bzdio" )
2012-08-13 21:50:14 +04:00
endif ( )
2012-08-13 21:47:32 +04:00
if ( CPACK_RPM_COMPRESSION_TYPE STREQUAL "gzip" )
set ( CPACK_RPM_COMPRESSION_TYPE_TMP "%define _binary_payload w9.gzdio" )
2012-08-13 21:50:14 +04:00
endif ( )
else ( )
2012-08-13 21:47:32 +04:00
set ( CPACK_RPM_COMPRESSION_TYPE_TMP "" )
2012-08-13 21:50:14 +04:00
endif ( )
2008-12-03 22:37:13 +03:00
2010-08-23 19:38:33 +04:00
if ( CPACK_PACKAGE_RELOCATABLE )
2010-11-13 19:56:36 +03:00
set ( CPACK_RPM_PACKAGE_RELOCATABLE TRUE )
2012-08-13 21:50:14 +04:00
endif ( )
2010-07-09 22:01:57 +04:00
if ( CPACK_RPM_PACKAGE_RELOCATABLE )
if ( CPACK_RPM_PACKAGE_DEBUG )
2010-08-23 19:38:33 +04:00
message ( "CPackRPM:Debug: Trying to build a relocatable package" )
2012-08-13 21:50:14 +04:00
endif ( )
2010-08-23 19:38:33 +04:00
if ( CPACK_SET_DESTDIR AND ( NOT CPACK_SET_DESTDIR STREQUAL "I_ON" ) )
message ( "CPackRPM:Warning: CPACK_SET_DESTDIR is set (=${CPACK_SET_DESTDIR}) while requesting a relocatable package (CPACK_RPM_PACKAGE_RELOCATABLE is set): this is not supported, the package won't be relocatable." )
2012-08-13 21:50:14 +04:00
else ( )
2010-07-09 22:01:57 +04:00
set ( CPACK_RPM_PACKAGE_PREFIX ${ CPACK_PACKAGING_INSTALL_PREFIX } )
2012-08-13 21:50:14 +04:00
endif ( )
endif ( )
2010-07-09 22:01:57 +04:00
2011-10-30 23:13:20 +04:00
# Check if additional fields for RPM spec header are given
# There may be some COMPONENT specific variables as well
2013-02-09 16:42:05 +04:00
# If component specific var is not provided we use the global one
# for each component
2012-08-13 21:47:32 +04:00
foreach ( _RPM_SPEC_HEADER URL REQUIRES SUGGESTS PROVIDES OBSOLETES PREFIX CONFLICTS AUTOPROV AUTOREQ AUTOREQPROV )
if ( CPACK_RPM_PACKAGE_DEBUG )
2011-10-30 23:13:20 +04:00
message ( "CPackRPM:Debug: processing ${_RPM_SPEC_HEADER}" )
2012-08-13 21:50:14 +04:00
endif ( )
2011-10-30 23:13:20 +04:00
if ( CPACK_RPM_PACKAGE_COMPONENT )
2013-02-09 16:42:05 +04:00
if ( DEFINED CPACK_RPM_ ${ CPACK_RPM_PACKAGE_COMPONENT } _PACKAGE_ ${ _RPM_SPEC_HEADER } )
2012-08-13 21:47:32 +04:00
if ( CPACK_RPM_PACKAGE_DEBUG )
2011-10-30 23:13:20 +04:00
message ( "CPackRPM:Debug: using CPACK_RPM_${CPACK_RPM_PACKAGE_COMPONENT}_PACKAGE_${_RPM_SPEC_HEADER}" )
2012-08-13 21:50:14 +04:00
endif ( )
2011-10-30 23:13:20 +04:00
set ( CPACK_RPM_PACKAGE_ ${ _RPM_SPEC_HEADER } _TMP ${ CPACK_RPM_${CPACK_RPM_PACKAGE_COMPONENT } _PACKAGE_ ${ _RPM_SPEC_HEADER } } )
else ( )
2013-02-09 16:42:05 +04:00
if ( DEFINED CPACK_RPM_PACKAGE_ ${ _RPM_SPEC_HEADER } )
if ( CPACK_RPM_PACKAGE_DEBUG )
message ( "CPackRPM:Debug: CPACK_RPM_${CPACK_RPM_PACKAGE_COMPONENT}_PACKAGE_${_RPM_SPEC_HEADER} not defined" )
message ( "CPackRPM:Debug: using CPACK_RPM_PACKAGE_${_RPM_SPEC_HEADER}" )
endif ( )
set ( CPACK_RPM_PACKAGE_ ${ _RPM_SPEC_HEADER } _TMP ${ CPACK_RPM_PACKAGE_${_RPM_SPEC_HEADER } } )
2012-08-13 21:50:14 +04:00
endif ( )
2011-10-30 23:13:20 +04:00
endif ( )
else ( )
2013-02-09 16:42:05 +04:00
if ( DEFINED CPACK_RPM_PACKAGE_ ${ _RPM_SPEC_HEADER } )
if ( CPACK_RPM_PACKAGE_DEBUG )
message ( "CPackRPM:Debug: using CPACK_RPM_PACKAGE_${_RPM_SPEC_HEADER}" )
endif ( )
set ( CPACK_RPM_PACKAGE_ ${ _RPM_SPEC_HEADER } _TMP ${ CPACK_RPM_PACKAGE_${_RPM_SPEC_HEADER } } )
2012-08-13 21:50:14 +04:00
endif ( )
2011-10-30 23:13:20 +04:00
endif ( )
2013-02-09 16:42:05 +04:00
# Treat the RPM Spec keyword iff it has been properly defined
if ( DEFINED CPACK_RPM_PACKAGE_ ${ _RPM_SPEC_HEADER } _TMP )
# Transform NAME --> Name e.g. PROVIDES --> Provides
# The Upper-case first letter and lowercase tail is the
# appropriate value required in the final RPM spec file.
2012-08-13 21:47:32 +04:00
string ( LENGTH ${ _RPM_SPEC_HEADER } _PACKAGE_HEADER_STRLENGTH )
math ( EXPR _PACKAGE_HEADER_STRLENGTH "${_PACKAGE_HEADER_STRLENGTH} - 1" )
string ( SUBSTRING ${ _RPM_SPEC_HEADER } 1 ${ _PACKAGE_HEADER_STRLENGTH } _PACKAGE_HEADER_TAIL )
string ( TOLOWER "${_PACKAGE_HEADER_TAIL}" _PACKAGE_HEADER_TAIL )
string ( SUBSTRING ${ _RPM_SPEC_HEADER } 0 1 _PACKAGE_HEADER_NAME )
set ( _PACKAGE_HEADER_NAME "${_PACKAGE_HEADER_NAME}${_PACKAGE_HEADER_TAIL}" )
if ( CPACK_RPM_PACKAGE_DEBUG )
message ( "CPackRPM:Debug: User defined ${_PACKAGE_HEADER_NAME}:\n ${CPACK_RPM_PACKAGE_${_RPM_SPEC_HEADER}_TMP}" )
2012-08-13 21:50:14 +04:00
endif ( )
2012-08-13 21:47:32 +04:00
set ( TMP_RPM_ ${ _RPM_SPEC_HEADER } "${_PACKAGE_HEADER_NAME}: ${CPACK_RPM_PACKAGE_${_RPM_SPEC_HEADER}_TMP}" )
2012-08-13 21:50:14 +04:00
else ( )
2012-06-05 12:20:43 +04:00
# Do not forget to unset previously set header (from previous component)
2012-08-13 21:47:32 +04:00
unset ( TMP_RPM_ ${ _RPM_SPEC_HEADER } )
2012-08-13 21:50:14 +04:00
endif ( )
endforeach ( )
2009-11-11 23:27:44 +03:00
2008-09-20 01:45:37 +04:00
# CPACK_RPM_SPEC_INSTALL_POST
# May be used to define a RPM post intallation script
# for example setting it to "/bin/true" may prevent
# rpmbuild from stripping binaries.
2012-08-13 21:47:32 +04:00
if ( CPACK_RPM_SPEC_INSTALL_POST )
if ( CPACK_RPM_PACKAGE_DEBUG )
message ( "CPackRPM:Debug: User defined CPACK_RPM_SPEC_INSTALL_POST = ${CPACK_RPM_SPEC_INSTALL_POST}" )
2012-08-13 21:50:14 +04:00
endif ( )
2012-08-13 21:47:32 +04:00
set ( TMP_RPM_SPEC_INSTALL_POST "%define __spec_install_post ${CPACK_RPM_SPEC_INSTALL_POST}" )
2012-08-13 21:50:14 +04:00
endif ( )
2008-09-20 01:45:37 +04:00
2011-09-20 22:21:01 +04:00
# CPACK_RPM_POST_INSTALL_SCRIPT_FILE (or CPACK_RPM_<COMPONENT>_POST_INSTALL_SCRIPT_FILE)
# CPACK_RPM_POST_UNINSTALL_SCRIPT_FILE (or CPACK_RPM_<COMPONENT>_POST_UNINSTALL_SCRIPT_FILE)
# May be used to embed a post (un)installation script in the spec file.
2009-11-11 23:55:44 +03:00
# The refered script file(s) will be read and directly
# put after the %post or %postun section
2011-09-20 22:21:01 +04:00
if ( CPACK_RPM_PACKAGE_COMPONENT )
if ( CPACK_RPM_ ${ CPACK_RPM_PACKAGE_COMPONENT } _POST_INSTALL_SCRIPT_FILE )
set ( CPACK_RPM_POST_INSTALL_READ_FILE ${ CPACK_RPM_${CPACK_RPM_PACKAGE_COMPONENT } _POST_INSTALL_SCRIPT_FILE} )
else ( )
set ( CPACK_RPM_POST_INSTALL_READ_FILE ${ CPACK_RPM_POST_INSTALL_SCRIPT_FILE } )
endif ( )
if ( CPACK_RPM_ ${ CPACK_RPM_PACKAGE_COMPONENT } _POST_UNINSTALL_SCRIPT_FILE )
set ( CPACK_RPM_POST_UNINSTALL_READ_FILE ${ CPACK_RPM_${CPACK_RPM_PACKAGE_COMPONENT } _POST_UNINSTALL_SCRIPT_FILE} )
2012-08-13 21:50:14 +04:00
else ( )
2011-09-20 22:21:01 +04:00
set ( CPACK_RPM_POST_UNINSTALL_READ_FILE ${ CPACK_RPM_POST_UNINSTALL_SCRIPT_FILE } )
2012-08-13 21:50:14 +04:00
endif ( )
else ( )
2011-09-20 22:21:01 +04:00
set ( CPACK_RPM_POST_INSTALL_READ_FILE ${ CPACK_RPM_POST_INSTALL_SCRIPT_FILE } )
set ( CPACK_RPM_POST_UNINSTALL_READ_FILE ${ CPACK_RPM_POST_UNINSTALL_SCRIPT_FILE } )
2012-08-13 21:50:14 +04:00
endif ( )
2011-11-05 14:40:47 +04:00
# Handle post-install file if it has been specified
2011-09-20 22:21:01 +04:00
if ( CPACK_RPM_POST_INSTALL_READ_FILE )
if ( EXISTS ${ CPACK_RPM_POST_INSTALL_READ_FILE } )
file ( READ ${ CPACK_RPM_POST_INSTALL_READ_FILE } CPACK_RPM_SPEC_POSTINSTALL )
2012-08-13 21:50:14 +04:00
else ( )
2011-09-20 22:21:01 +04:00
message ( "CPackRPM:Warning: CPACK_RPM_POST_INSTALL_SCRIPT_FILE <${CPACK_RPM_POST_INSTALL_READ_FILE}> does not exists - ignoring" )
2012-08-13 21:50:14 +04:00
endif ( )
else ( )
2011-11-05 14:40:47 +04:00
# reset SPEC var value if no post install file has been specified
# (either globally or component-wise)
set ( CPACK_RPM_SPEC_POSTINSTALL "" )
2012-08-13 21:50:14 +04:00
endif ( )
2011-09-20 22:21:01 +04:00
2011-11-05 14:40:47 +04:00
# Handle post-uninstall file if it has been specified
2011-09-20 22:21:01 +04:00
if ( CPACK_RPM_POST_UNINSTALL_READ_FILE )
if ( EXISTS ${ CPACK_RPM_POST_UNINSTALL_READ_FILE } )
file ( READ ${ CPACK_RPM_POST_UNINSTALL_READ_FILE } CPACK_RPM_SPEC_POSTUNINSTALL )
2012-08-13 21:50:14 +04:00
else ( )
2011-09-20 22:21:01 +04:00
message ( "CPackRPM:Warning: CPACK_RPM_POST_UNINSTALL_SCRIPT_FILE <${CPACK_RPM_POST_UNINSTALL_READ_FILE}> does not exists - ignoring" )
2012-08-13 21:50:14 +04:00
endif ( )
else ( )
2011-11-05 14:40:47 +04:00
# reset SPEC var value if no post uninstall file has been specified
# (either globally or component-wise)
set ( CPACK_RPM_SPEC_POSTUNINSTALL "" )
2012-08-13 21:50:14 +04:00
endif ( )
2011-09-20 22:21:01 +04:00
# CPACK_RPM_PRE_INSTALL_SCRIPT_FILE (or CPACK_RPM_<COMPONENT>_PRE_INSTALL_SCRIPT_FILE)
# CPACK_RPM_PRE_UNINSTALL_SCRIPT_FILE (or CPACK_RPM_<COMPONENT>_PRE_UNINSTALL_SCRIPT_FILE)
2010-05-20 17:09:46 +04:00
# May be used to embed a pre (un)installation script in the spec file.
2009-11-11 23:55:44 +03:00
# The refered script file(s) will be read and directly
# put after the %pre or %preun section
2011-09-20 22:21:01 +04:00
if ( CPACK_RPM_PACKAGE_COMPONENT )
if ( CPACK_RPM_ ${ CPACK_RPM_PACKAGE_COMPONENT } _PRE_INSTALL_SCRIPT_FILE )
set ( CPACK_RPM_PRE_INSTALL_READ_FILE ${ CPACK_RPM_${CPACK_RPM_PACKAGE_COMPONENT } _PRE_INSTALL_SCRIPT_FILE} )
2012-08-13 21:50:14 +04:00
else ( )
2011-09-20 22:21:01 +04:00
set ( CPACK_RPM_PRE_INSTALL_READ_FILE ${ CPACK_RPM_PRE_INSTALL_SCRIPT_FILE } )
2012-08-13 21:50:14 +04:00
endif ( )
2011-09-20 22:21:01 +04:00
if ( CPACK_RPM_ ${ CPACK_RPM_PACKAGE_COMPONENT } _PRE_UNINSTALL_SCRIPT_FILE )
set ( CPACK_RPM_PRE_UNINSTALL_READ_FILE ${ CPACK_RPM_${CPACK_RPM_PACKAGE_COMPONENT } _PRE_UNINSTALL_SCRIPT_FILE} )
2012-08-13 21:50:14 +04:00
else ( )
2011-09-20 22:21:01 +04:00
set ( CPACK_RPM_PRE_UNINSTALL_READ_FILE ${ CPACK_RPM_PRE_UNINSTALL_SCRIPT_FILE } )
2012-08-13 21:50:14 +04:00
endif ( )
else ( )
2011-09-20 22:21:01 +04:00
set ( CPACK_RPM_PRE_INSTALL_READ_FILE ${ CPACK_RPM_PRE_INSTALL_SCRIPT_FILE } )
set ( CPACK_RPM_PRE_UNINSTALL_READ_FILE ${ CPACK_RPM_PRE_UNINSTALL_SCRIPT_FILE } )
2012-08-13 21:50:14 +04:00
endif ( )
2011-11-05 14:40:47 +04:00
# Handle pre-install file if it has been specified
2011-09-20 22:21:01 +04:00
if ( CPACK_RPM_PRE_INSTALL_READ_FILE )
if ( EXISTS ${ CPACK_RPM_PRE_INSTALL_READ_FILE } )
file ( READ ${ CPACK_RPM_PRE_INSTALL_READ_FILE } CPACK_RPM_SPEC_PREINSTALL )
2012-08-13 21:50:14 +04:00
else ( )
2011-09-20 22:21:01 +04:00
message ( "CPackRPM:Warning: CPACK_RPM_PRE_INSTALL_SCRIPT_FILE <${CPACK_RPM_PRE_INSTALL_READ_FILE}> does not exists - ignoring" )
2012-08-13 21:50:14 +04:00
endif ( )
else ( )
2011-11-05 14:40:47 +04:00
# reset SPEC var value if no pre-install file has been specified
# (either globally or component-wise)
set ( CPACK_RPM_SPEC_PREINSTALL "" )
2012-08-13 21:50:14 +04:00
endif ( )
2011-09-20 22:21:01 +04:00
2011-11-05 14:40:47 +04:00
# Handle pre-uninstall file if it has been specified
2011-09-20 22:21:01 +04:00
if ( CPACK_RPM_PRE_UNINSTALL_READ_FILE )
if ( EXISTS ${ CPACK_RPM_PRE_UNINSTALL_READ_FILE } )
file ( READ ${ CPACK_RPM_PRE_UNINSTALL_READ_FILE } CPACK_RPM_SPEC_PREUNINSTALL )
2012-08-13 21:50:14 +04:00
else ( )
2011-09-20 22:21:01 +04:00
message ( "CPackRPM:Warning: CPACK_RPM_PRE_UNINSTALL_SCRIPT_FILE <${CPACK_RPM_PRE_UNINSTALL_READ_FILE}> does not exists - ignoring" )
2012-08-13 21:50:14 +04:00
endif ( )
else ( )
2011-11-05 14:40:47 +04:00
# reset SPEC var value if no pre-uninstall file has been specified
# (either globally or component-wise)
set ( CPACK_RPM_SPEC_PREUNINSTALL "" )
2012-08-13 21:50:14 +04:00
endif ( )
2009-11-11 23:55:44 +03:00
2010-05-20 17:09:46 +04:00
# CPACK_RPM_CHANGELOG_FILE
# May be used to embed a changelog in the spec file.
# The refered file will be read and directly put after the %changelog section
if ( CPACK_RPM_CHANGELOG_FILE )
if ( EXISTS ${ CPACK_RPM_CHANGELOG_FILE } )
file ( READ ${ CPACK_RPM_CHANGELOG_FILE } CPACK_RPM_SPEC_CHANGELOG )
2012-08-13 21:50:14 +04:00
else ( )
2010-05-20 17:09:46 +04:00
message ( SEND_ERROR "CPackRPM:Warning: CPACK_RPM_CHANGELOG_FILE <${CPACK_RPM_CHANGELOG_FILE}> does not exists - ignoring" )
2012-08-13 21:50:14 +04:00
endif ( )
else ( )
2013-07-08 12:32:53 +04:00
set ( CPACK_RPM_SPEC_CHANGELOG "* Sun Jul 4 2010 Eric Noulard <eric.noulard@gmail.com> - ${CPACK_RPM_PACKAGE_VERSION}-${CPACK_RPM_PACKAGE_RELEASE}\n Generated by CPack RPM (no Changelog file were provided)" )
2012-08-13 21:50:14 +04:00
endif ( )
2010-05-20 17:09:46 +04:00
2008-09-20 01:45:37 +04:00
# CPACK_RPM_SPEC_MORE_DEFINE
# This is a generated spec rpm file spaceholder
2012-08-13 21:47:32 +04:00
if ( CPACK_RPM_SPEC_MORE_DEFINE )
if ( CPACK_RPM_PACKAGE_DEBUG )
message ( "CPackRPM:Debug: User defined more define spec line specified:\n ${CPACK_RPM_SPEC_MORE_DEFINE}" )
2012-08-13 21:50:14 +04:00
endif ( )
endif ( )
2008-09-20 01:45:37 +04:00
2007-08-17 17:13:15 +04:00
# Now we may create the RPM build tree structure
2012-08-13 21:47:32 +04:00
set ( CPACK_RPM_ROOTDIR "${CPACK_TOPLEVEL_DIRECTORY}" )
message ( STATUS "CPackRPM:Debug: Using CPACK_RPM_ROOTDIR=${CPACK_RPM_ROOTDIR}" )
2007-08-17 17:13:15 +04:00
# Prepare RPM build tree
2012-08-13 21:47:32 +04:00
file ( MAKE_DIRECTORY ${ CPACK_RPM_ROOTDIR } )
file ( MAKE_DIRECTORY ${ CPACK_RPM_ROOTDIR } /tmp )
file ( MAKE_DIRECTORY ${ CPACK_RPM_ROOTDIR } /BUILD )
file ( MAKE_DIRECTORY ${ CPACK_RPM_ROOTDIR } /RPMS )
file ( MAKE_DIRECTORY ${ CPACK_RPM_ROOTDIR } /SOURCES )
file ( MAKE_DIRECTORY ${ CPACK_RPM_ROOTDIR } /SPECS )
file ( MAKE_DIRECTORY ${ CPACK_RPM_ROOTDIR } /SRPMS )
#set(CPACK_RPM_FILE_NAME "${CPACK_RPM_PACKAGE_NAME}-${CPACK_RPM_PACKAGE_VERSION}-${CPACK_RPM_PACKAGE_RELEASE}-${CPACK_RPM_PACKAGE_ARCHITECTURE}.rpm")
set ( CPACK_RPM_FILE_NAME "${CPACK_OUTPUT_FILE_NAME}" )
2007-08-17 17:13:15 +04:00
# it seems rpmbuild can't handle spaces in the path
# neither escaping (as below) nor putting quotes around the path seem to help
2012-08-13 21:47:32 +04:00
#string(REGEX REPLACE " " "\\\\ " CPACK_RPM_DIRECTORY "${CPACK_TOPLEVEL_DIRECTORY}")
set ( CPACK_RPM_DIRECTORY "${CPACK_TOPLEVEL_DIRECTORY}" )
2007-08-17 17:13:15 +04:00
2012-08-07 21:15:19 +04:00
# if we are creating a relocatable package, omit parent directories of
# CPACK_RPM_PACKAGE_PREFIX. This is achieved by building a "filter list"
# which is passed to the find command that generates the content-list
if ( CPACK_RPM_PACKAGE_RELOCATABLE )
# get a list of the elements in CPACK_RPM_PACKAGE_PREFIX and remove
# the final element (so the install-prefix dir itself is not omitted
# from the RPM's content-list)
string ( REPLACE "/" ";" _CPACK_RPM_PACKAGE_PREFIX_ELEMS ".${CPACK_RPM_PACKAGE_PREFIX}" )
list ( REMOVE_AT _CPACK_RPM_PACKAGE_PREFIX_ELEMS -1 )
# Now generate all of the parent dirs of CPACK_RPM_PACKAGE_PREFIX
foreach ( _ELEM ${ _CPACK_RPM_PACKAGE_PREFIX_ELEMS } )
list ( APPEND _TMP_LIST "${_ELEM}" )
string ( REPLACE ";" "/" _OMIT_DIR "${_TMP_LIST}" )
set ( _OMIT_DIR "-o -path ${_OMIT_DIR}" )
separate_arguments ( _OMIT_DIR )
list ( APPEND _RPM_DIRS_TO_OMIT ${ _OMIT_DIR } )
endforeach ( )
endif ( )
2013-04-05 14:43:50 +04:00
if ( CPACK_RPM_PACKAGE_DEBUG )
message ( "CPackRPM:Debug: Initial list of path to OMIT in RPM: ${_RPM_DIRS_TO_OMIT}" )
endif ( )
if ( NOT DEFINED CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST )
2013-04-05 14:53:47 +04:00
set ( CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST /etc /etc/init.d /usr /usr/share /usr/share/doc /usr/bin /usr/lib /usr/lib64 /usr/include )
2013-04-05 14:43:50 +04:00
if ( CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST_ADDITION )
message ( "CPackRPM:Debug: Adding ${CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST_ADDITION} to builtin omit list." )
list ( APPEND CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST "${CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST_ADDITION}" )
endif ( )
endif ( )
if ( CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST )
if ( CPACK_RPM_PACKAGE_DEBUG )
message ( "CPackRPM:Debug: CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST= ${CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST}" )
endif ( )
foreach ( _DIR ${ CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST } )
list ( APPEND _RPM_DIRS_TO_OMIT "-o;-path;.${_DIR}" )
endforeach ( )
endif ( )
if ( CPACK_RPM_PACKAGE_DEBUG )
message ( "CPackRPM:Debug: Final list of path to OMIT in RPM: ${_RPM_DIRS_TO_OMIT}" )
endif ( )
2009-11-09 22:06:36 +03:00
# Use files tree to construct files command (spec file)
2009-11-22 20:52:47 +03:00
# We should not forget to include symlinks (thus -o -type l)
2011-09-06 00:15:31 +04:00
# We should include directory as well (thus -type d)
# but not the main local dir "." (thus -a -not -name ".")
2010-07-04 16:05:25 +04:00
# We must remove the './' due to the local search and escape the
# file name by enclosing it between double quotes (thus the sed)
2009-11-28 17:57:59 +03:00
# Then we must authorize any man pages extension (adding * at the end)
# because rpmbuild may automatically compress those files
2012-08-13 21:47:32 +04:00
execute_process ( COMMAND find . -type f -o -type l -o ( -type d -a -not ( -name "." ${ _RPM_DIRS_TO_OMIT } ) )
2011-05-21 14:34:37 +04:00
C O M M A N D s e d s : . * / m a n . * / . * : & * :
C O M M A N D s e d s / \ \ . \ \ \ ( . * \ \ \ ) / \ " \ \ 1 \ " /
2010-11-13 19:56:36 +03:00
W O R K I N G _ D I R E C T O R Y " $ { W D I R } "
O U T P U T _ V A R I A B L E C P A C K _ R P M _ I N S T A L L _ F I L E S )
2009-11-28 17:57:59 +03:00
2011-12-13 02:11:02 +04:00
# In component case, put CPACK_ABSOLUTE_DESTINATION_FILES_<COMPONENT>
# into CPACK_ABSOLUTE_DESTINATION_FILES_INTERNAL
# otherwise, put CPACK_ABSOLUTE_DESTINATION_FILES
# This must be done BEFORE the CPACK_ABSOLUTE_DESTINATION_FILES_INTERNAL handling
2011-04-17 19:12:38 +04:00
if ( CPACK_RPM_PACKAGE_COMPONENT )
if ( CPACK_ABSOLUTE_DESTINATION_FILES )
set ( COMPONENT_FILES_TAG "CPACK_ABSOLUTE_DESTINATION_FILES_${CPACK_RPM_PACKAGE_COMPONENT}" )
2011-12-13 02:11:02 +04:00
set ( CPACK_ABSOLUTE_DESTINATION_FILES_INTERNAL "${${COMPONENT_FILES_TAG}}" )
2011-04-17 19:12:38 +04:00
if ( CPACK_RPM_PACKAGE_DEBUG )
2011-12-13 02:11:02 +04:00
message ( "CPackRPM:Debug: Handling Absolute Destination Files: <${CPACK_ABSOLUTE_DESTINATION_FILES_INTERNAL}>" )
2011-04-17 19:12:38 +04:00
message ( "CPackRPM:Debug: in component = ${CPACK_RPM_PACKAGE_COMPONENT}" )
2012-08-13 21:50:14 +04:00
endif ( )
2011-04-17 19:12:38 +04:00
endif ( )
2011-12-13 02:11:02 +04:00
else ( )
if ( CPACK_ABSOLUTE_DESTINATION_FILES )
set ( CPACK_ABSOLUTE_DESTINATION_FILES_INTERNAL "${CPACK_ABSOLUTE_DESTINATION_FILES}" )
endif ( )
endif ( )
# In component case, set CPACK_RPM_USER_FILELIST_INTERNAL with CPACK_RPM_<COMPONENT>_USER_FILELIST.
if ( CPACK_RPM_PACKAGE_COMPONENT )
if ( CPACK_RPM_ ${ CPACK_RPM_PACKAGE_COMPONENT } _USER_FILELIST )
set ( CPACK_RPM_USER_FILELIST_INTERNAL ${ CPACK_RPM_${CPACK_RPM_PACKAGE_COMPONENT } _USER_FILELIST} )
if ( CPACK_RPM_PACKAGE_DEBUG )
message ( "CPackRPM:Debug: Handling User Filelist: <${CPACK_RPM_USER_FILELIST_INTERNAL}>" )
message ( "CPackRPM:Debug: in component = ${CPACK_RPM_PACKAGE_COMPONENT}" )
2012-08-13 21:50:14 +04:00
endif ( )
2011-12-13 02:11:02 +04:00
else ( )
set ( CPACK_RPM_USER_FILELIST_INTERNAL "" )
endif ( )
else ( )
if ( CPACK_RPM_USER_FILELIST )
set ( CPACK_RPM_USER_FILELIST_INTERNAL "${CPACK_RPM_USER_FILELIST}" )
else ( )
set ( CPACK_RPM_USER_FILELIST_INTERNAL "" )
endif ( )
endif ( )
# Handle user specified file line list in CPACK_RPM_USER_FILELIST_INTERNAL
# Remove those files from CPACK_ABSOLUTE_DESTINATION_FILES_INTERNAL
# or CPACK_RPM_INSTALL_FILES,
# hence it must be done before these auto-generated lists are processed.
if ( CPACK_RPM_USER_FILELIST_INTERNAL )
2012-08-13 21:47:32 +04:00
if ( CPACK_RPM_PACKAGE_DEBUG )
2011-12-13 02:11:02 +04:00
message ( "CPackRPM:Debug: Handling User Filelist: <${CPACK_RPM_USER_FILELIST_INTERNAL}>" )
2012-08-13 21:50:14 +04:00
endif ( )
2011-12-13 02:11:02 +04:00
# Create CMake list from CPACK_RPM_INSTALL_FILES
string ( STRIP "${CPACK_RPM_INSTALL_FILES}" CPACK_RPM_INSTALL_FILES_LIST )
string ( REPLACE "\n" ";" CPACK_RPM_INSTALL_FILES_LIST
" $ { C P A C K _ R P M _ I N S T A L L _ F I L E S _ L I S T } " )
string ( REPLACE "\" " " " CPACK_RPM_INSTALL_FILES_LIST
" $ { C P A C K _ R P M _ I N S T A L L _ F I L E S _ L I S T } " )
set ( CPACK_RPM_USER_INSTALL_FILES "" )
foreach ( F IN LISTS CPACK_RPM_USER_FILELIST_INTERNAL )
2012-08-14 21:39:49 +04:00
string ( REGEX REPLACE "%[A-Za-z0-9\(\),-]* " "" F_PATH ${ F } )
string ( REGEX MATCH "%[A-Za-z0-9\(\),-]*" F_PREFIX ${ F } )
2011-12-13 02:11:02 +04:00
2012-08-14 21:39:49 +04:00
if ( CPACK_RPM_PACKAGE_DEBUG )
message ( "CPackRPM:Debug: F_PREFIX=<${F_PREFIX}>, F_PATH=<${F_PATH}>" )
endif ( )
2011-12-13 02:11:02 +04:00
if ( F_PREFIX )
2012-08-14 21:39:49 +04:00
set ( F_PREFIX "${F_PREFIX} " )
2011-12-13 02:11:02 +04:00
endif ( )
# Rebuild the user list file
set ( CPACK_RPM_USER_INSTALL_FILES "${CPACK_RPM_USER_INSTALL_FILES}${F_PREFIX}\" ${ F_PATH } \"\n")
# Remove from CPACK_RPM_INSTALL_FILES and CPACK_ABSOLUTE_DESTINATION_FILES_INTERNAL
list ( REMOVE_ITEM CPACK_RPM_INSTALL_FILES_LIST ${ F_PATH } )
2012-08-14 21:39:49 +04:00
# ABSOLUTE destination files list may not exists at all
if ( CPACK_ABSOLUTE_DESTINATION_FILES_INTERNAL )
list ( REMOVE_ITEM CPACK_ABSOLUTE_DESTINATION_FILES_INTERNAL ${ F_PATH } )
endif ( )
2011-12-13 02:11:02 +04:00
endforeach ( )
# Rebuild CPACK_RPM_INSTALL_FILES
set ( CPACK_RPM_INSTALL_FILES "" )
foreach ( F IN LISTS CPACK_RPM_INSTALL_FILES_LIST )
set ( CPACK_RPM_INSTALL_FILES "${CPACK_RPM_INSTALL_FILES}\" ${ F } \"\n")
2012-08-13 21:50:14 +04:00
endforeach ( )
2011-12-13 02:11:02 +04:00
else ( )
set ( CPACK_RPM_USER_INSTALL_FILES "" )
2011-04-17 19:12:38 +04:00
endif ( )
2011-12-13 02:11:02 +04:00
if ( CPACK_ABSOLUTE_DESTINATION_FILES_INTERNAL )
2012-08-13 21:47:32 +04:00
if ( CPACK_RPM_PACKAGE_DEBUG )
2011-12-13 02:11:02 +04:00
message ( "CPackRPM:Debug: Handling Absolute Destination Files: ${CPACK_ABSOLUTE_DESTINATION_FILES_INTERNAL}" )
2012-08-13 21:50:14 +04:00
endif ( )
2010-08-23 19:38:33 +04:00
# Remove trailing space
string ( STRIP "${CPACK_RPM_INSTALL_FILES}" CPACK_RPM_INSTALL_FILES_LIST )
# Transform endline separated - string into CMake List
string ( REPLACE "\n" ";" CPACK_RPM_INSTALL_FILES_LIST "${CPACK_RPM_INSTALL_FILES_LIST}" )
# Remove unecessary quotes
string ( REPLACE "\" " " " CPACK_RPM_INSTALL_FILES_LIST " ${ CPACK_RPM_INSTALL_FILES_LIST } " )
# Remove ABSOLUTE install file from INSTALL FILE LIST
2011-12-13 02:11:02 +04:00
list ( REMOVE_ITEM CPACK_RPM_INSTALL_FILES_LIST ${ CPACK_ABSOLUTE_DESTINATION_FILES_INTERNAL } )
2010-08-23 19:38:33 +04:00
# Rebuild INSTALL_FILES
set ( CPACK_RPM_INSTALL_FILES "" )
foreach ( F IN LISTS CPACK_RPM_INSTALL_FILES_LIST )
set ( CPACK_RPM_INSTALL_FILES "${CPACK_RPM_INSTALL_FILES}\" ${ F } \"\n")
2012-08-13 21:50:14 +04:00
endforeach ( )
2010-08-23 19:38:33 +04:00
# Build ABSOLUTE_INSTALL_FILES
set ( CPACK_RPM_ABSOLUTE_INSTALL_FILES "" )
2011-12-13 02:11:02 +04:00
foreach ( F IN LISTS CPACK_ABSOLUTE_DESTINATION_FILES_INTERNAL )
2010-08-23 19:38:33 +04:00
set ( CPACK_RPM_ABSOLUTE_INSTALL_FILES "${CPACK_RPM_ABSOLUTE_INSTALL_FILES}%config \" ${ F } \"\n")
2012-08-13 21:50:14 +04:00
endforeach ( )
2012-08-13 21:47:32 +04:00
if ( CPACK_RPM_PACKAGE_DEBUG )
2010-08-23 19:38:33 +04:00
message ( "CPackRPM:Debug: CPACK_RPM_ABSOLUTE_INSTALL_FILES=${CPACK_RPM_ABSOLUTE_INSTALL_FILES}" )
message ( "CPackRPM:Debug: CPACK_RPM_INSTALL_FILES=${CPACK_RPM_INSTALL_FILES}" )
2012-08-13 21:50:14 +04:00
endif ( )
2011-12-13 02:11:02 +04:00
else ( )
# reset vars in order to avoid leakage of value(s) from one component to another
set ( CPACK_RPM_ABSOLUTE_INSTALL_FILES "" )
2012-08-13 21:50:14 +04:00
endif ( )
2010-08-23 19:38:33 +04:00
2012-01-14 00:35:41 +04:00
# Prepend directories in ${CPACK_RPM_INSTALL_FILES} with %dir
# This is necessary to avoid duplicate files since rpmbuild do
# recursion on its own when encountering a pathname which is a directory
# which is not flagged as %dir
string ( STRIP "${CPACK_RPM_INSTALL_FILES}" CPACK_RPM_INSTALL_FILES_LIST )
string ( REPLACE "\n" ";" CPACK_RPM_INSTALL_FILES_LIST
" $ { C P A C K _ R P M _ I N S T A L L _ F I L E S _ L I S T } " )
string ( REPLACE "\" " " " CPACK_RPM_INSTALL_FILES_LIST
" $ { C P A C K _ R P M _ I N S T A L L _ F I L E S _ L I S T } " )
set ( CPACK_RPM_INSTALL_FILES "" )
foreach ( F IN LISTS CPACK_RPM_INSTALL_FILES_LIST )
if ( IS_DIRECTORY "${WDIR}/${F}" )
set ( CPACK_RPM_INSTALL_FILES "${CPACK_RPM_INSTALL_FILES}%dir \" ${ F } \"\n")
else ( )
set ( CPACK_RPM_INSTALL_FILES "${CPACK_RPM_INSTALL_FILES}\" ${ F } \"\n")
endif ( )
2012-08-13 21:50:14 +04:00
endforeach ( )
2012-01-14 00:35:41 +04:00
set ( CPACK_RPM_INSTALL_FILES_LIST "" )
2009-11-10 00:17:22 +03:00
# The name of the final spec file to be used by rpmbuild
2012-08-13 21:47:32 +04:00
set ( CPACK_RPM_BINARY_SPECFILE "${CPACK_RPM_ROOTDIR}/SPECS/${CPACK_RPM_PACKAGE_NAME}${CPACK_RPM_PACKAGE_COMPONENT_PART_NAME}.spec" )
2010-05-20 17:09:46 +04:00
2009-11-10 00:17:22 +03:00
# Print out some debug information if we were asked for that
2012-08-13 21:47:32 +04:00
if ( CPACK_RPM_PACKAGE_DEBUG )
message ( "CPackRPM:Debug: CPACK_TOPLEVEL_DIRECTORY = ${CPACK_TOPLEVEL_DIRECTORY}" )
message ( "CPackRPM:Debug: CPACK_TOPLEVEL_TAG = ${CPACK_TOPLEVEL_TAG}" )
message ( "CPackRPM:Debug: CPACK_TEMPORARY_DIRECTORY = ${CPACK_TEMPORARY_DIRECTORY}" )
message ( "CPackRPM:Debug: CPACK_OUTPUT_FILE_NAME = ${CPACK_OUTPUT_FILE_NAME}" )
message ( "CPackRPM:Debug: CPACK_OUTPUT_FILE_PATH = ${CPACK_OUTPUT_FILE_PATH}" )
message ( "CPackRPM:Debug: CPACK_PACKAGE_FILE_NAME = ${CPACK_PACKAGE_FILE_NAME}" )
message ( "CPackRPM:Debug: CPACK_RPM_BINARY_SPECFILE = ${CPACK_RPM_BINARY_SPECFILE}" )
message ( "CPackRPM:Debug: CPACK_PACKAGE_INSTALL_DIRECTORY = ${CPACK_PACKAGE_INSTALL_DIRECTORY}" )
message ( "CPackRPM:Debug: CPACK_TEMPORARY_PACKAGE_FILE_NAME = ${CPACK_TEMPORARY_PACKAGE_FILE_NAME}" )
2012-08-13 21:50:14 +04:00
endif ( )
2010-05-20 17:09:46 +04:00
2013-07-05 20:52:36 +04:00
# protect @ in pathname in order to avoid their
# interpretation during the configure_file step
set ( CPACK_RPM_INSTALL_FILES_LIST "${CPACK_RPM_INSTALL_FILES}" )
set ( PROTECTED_AT "@" )
string ( REPLACE "@" "\@PROTECTED_AT\@" CPACK_RPM_INSTALL_FILES "${CPACK_RPM_INSTALL_FILES_LIST}" )
set ( CPACK_RPM_INSTALL_FILES_LIST "" )
2013-04-01 18:06:22 +04:00
#
# USER generated/provided spec file handling.
#
# We can have a component specific spec file.
if ( CPACK_RPM_PACKAGE_COMPONENT AND CPACK_RPM_ ${ CPACK_RPM_PACKAGE_COMPONENT } _USER_BINARY_SPECFILE )
set ( CPACK_RPM_USER_BINARY_SPECFILE ${ CPACK_RPM_${CPACK_RPM_PACKAGE_COMPONENT } _USER_BINARY_SPECFILE} )
endif ( )
# We should generate a USER spec file template:
2009-11-10 00:17:22 +03:00
# - either because the user asked for it : CPACK_RPM_GENERATE_USER_BINARY_SPECFILE_TEMPLATE
# - or the user did not provide one : NOT CPACK_RPM_USER_BINARY_SPECFILE
2012-08-13 21:47:32 +04:00
if ( CPACK_RPM_GENERATE_USER_BINARY_SPECFILE_TEMPLATE OR NOT CPACK_RPM_USER_BINARY_SPECFILE )
file ( WRITE ${ CPACK_RPM_BINARY_SPECFILE } .in
2009-11-10 00:17:22 +03:00
" # -*- rpm-spec -*-
2010-11-13 19:56:36 +03:00
B u i l d R o o t : \ @ C P A C K _ R P M _ D I R E C T O R Y \ @ / \ @ C P A C K _ P A C K A G E _ F I L E _ N A M E \ @ \ @ C P A C K _ R P M _ P A C K A G E _ C O M P O N E N T _ P A R T _ P A T H \ @
2009-11-10 00:17:22 +03:00
S u m m a r y : \ @ C P A C K _ R P M _ P A C K A G E _ S U M M A R Y \ @
2011-09-05 22:22:00 +04:00
N a m e : \ @ C P A C K _ R P M _ P A C K A G E _ N A M E \ @ \ @ C P A C K _ R P M _ P A C K A G E _ C O M P O N E N T _ P A R T _ N A M E \ @
2009-11-10 00:17:22 +03:00
V e r s i o n : \ @ C P A C K _ R P M _ P A C K A G E _ V E R S I O N \ @
R e l e a s e : \ @ C P A C K _ R P M _ P A C K A G E _ R E L E A S E \ @
L i c e n s e : \ @ C P A C K _ R P M _ P A C K A G E _ L I C E N S E \ @
G r o u p : \ @ C P A C K _ R P M _ P A C K A G E _ G R O U P \ @
V e n d o r : \ @ C P A C K _ R P M _ P A C K A G E _ V E N D O R \ @
2010-05-20 17:09:46 +04:00
\ @ T M P _ R P M _ U R L \ @
2009-11-10 00:17:22 +03:00
\ @ T M P _ R P M _ R E Q U I R E S \ @
2009-11-11 23:27:44 +03:00
\ @ T M P _ R P M _ P R O V I D E S \ @
2010-05-20 17:09:46 +04:00
\ @ T M P _ R P M _ O B S O L E T E S \ @
2011-06-12 14:49:44 +04:00
\ @ T M P _ R P M _ C O N F L I C T S \ @
\ @ T M P _ R P M _ A U T O P R O V \ @
\ @ T M P _ R P M _ A U T O R E Q \ @
\ @ T M P _ R P M _ A U T O R E Q P R O V \ @
2009-11-10 00:17:22 +03:00
\ @ T M P _ R P M _ B U I L D A R C H \ @
2010-07-09 22:01:57 +04:00
\ @ T M P _ R P M _ P R E F I X \ @
2010-05-20 17:09:46 +04:00
2009-11-10 00:17:22 +03:00
% d e f i n e _ r p m d i r \ @ C P A C K _ R P M _ D I R E C T O R Y \ @
% d e f i n e _ r p m f i l e n a m e \ @ C P A C K _ R P M _ F I L E _ N A M E \ @
2007-08-17 17:13:15 +04:00
% d e f i n e _ u n p a c k a g e d _ f i l e s _ t e r m i n a t e _ b u i l d 0
2009-11-10 00:17:22 +03:00
% d e f i n e _ t o p d i r \ @ C P A C K _ R P M _ D I R E C T O R Y \ @
\ @ T M P _ R P M _ S P E C _ I N S T A L L _ P O S T \ @
\ @ C P A C K _ R P M _ S P E C _ M O R E _ D E F I N E \ @
2010-04-10 13:23:01 +04:00
\ @ C P A C K _ R P M _ C O M P R E S S I O N _ T Y P E _ T M P \ @
2010-05-20 17:09:46 +04:00
2007-08-17 17:13:15 +04:00
% d e s c r i p t i o n
2009-11-10 00:17:22 +03:00
\ @ C P A C K _ R P M _ P A C K A G E _ D E S C R I P T I O N \ @
2007-08-17 17:13:15 +04:00
2009-11-15 21:55:42 +03:00
# This is a shortcutted spec file generated by CMake RPM generator
# we skip _install step because CPack does that for us.
# We do only save CPack installed tree in _prepr
# and then restore it in build.
% p r e p
2010-10-04 01:29:34 +04:00
m v $ R P M _ B U I L D _ R O O T \ " \ @ C P A C K _ T O P L E V E L _ D I R E C T O R Y \ @ / t m p B B r o o t \ "
2009-11-15 21:55:42 +03:00
2009-11-28 17:57:59 +03:00
#p build
2010-05-20 17:09:46 +04:00
2009-11-28 17:57:59 +03:00
% i n s t a l l
i f [ - e $ R P M _ B U I L D _ R O O T ] ;
t h e n
2010-12-13 22:11:06 +03:00
r m - r f $ R P M _ B U I L D _ R O O T
2010-05-20 17:09:46 +04:00
f i
2010-12-13 22:11:06 +03:00
m v \ " \ @ C P A C K _ T O P L E V E L _ D I R E C T O R Y \ @ / t m p B B r o o t \ " $ R P M _ B U I L D _ R O O T
2007-08-17 17:13:15 +04:00
% c l e a n
2009-11-11 23:55:44 +03:00
% p o s t
\ @ C P A C K _ R P M _ S P E C _ P O S T I N S T A L L \ @
% p o s t u n
\ @ C P A C K _ R P M _ S P E C _ P O S T U N I N S T A L L \ @
% p r e
\ @ C P A C K _ R P M _ S P E C _ P R E I N S T A L L \ @
% p r e u n
\ @ C P A C K _ R P M _ S P E C _ P R E U N I N S T A L L \ @
2007-08-17 17:13:15 +04:00
% f i l e s
% defattr ( -,root,root,- )
2013-04-01 18:06:22 +04:00
\ @ C P A C K _ R P M _ I N S T A L L _ F I L E S \ @
\ @ C P A C K _ R P M _ A B S O L U T E _ I N S T A L L _ F I L E S \ @
\ @ C P A C K _ R P M _ U S E R _ I N S T A L L _ F I L E S \ @
2007-08-17 17:13:15 +04:00
% c h a n g e l o g
2010-05-20 17:09:46 +04:00
\ @ C P A C K _ R P M _ S P E C _ C H A N G E L O G \ @
2007-08-17 17:13:15 +04:00
" )
2009-11-10 00:17:22 +03:00
# Stop here if we were asked to only generate a template USER spec file
# The generated file may then be used as a template by user who wants
2010-05-20 17:09:46 +04:00
# to customize their own spec file.
2012-08-13 21:47:32 +04:00
if ( CPACK_RPM_GENERATE_USER_BINARY_SPECFILE_TEMPLATE )
message ( FATAL_ERROR "CPackRPM: STOP here Generated USER binary spec file templare is: ${CPACK_RPM_BINARY_SPECFILE}.in" )
2012-08-13 21:50:14 +04:00
endif ( )
endif ( )
2009-11-10 00:17:22 +03:00
# After that we may either use a user provided spec file
2010-05-20 17:09:46 +04:00
# or generate one using appropriate variables value.
2012-08-13 21:47:32 +04:00
if ( CPACK_RPM_USER_BINARY_SPECFILE )
2009-11-10 00:17:22 +03:00
# User may have specified SPECFILE just use it
2012-08-13 21:47:32 +04:00
message ( "CPackRPM: Will use USER specified spec file: ${CPACK_RPM_USER_BINARY_SPECFILE}" )
2009-11-10 00:17:22 +03:00
# The user provided file is processed for @var replacement
2012-08-13 21:47:32 +04:00
configure_file ( ${ CPACK_RPM_USER_BINARY_SPECFILE } ${ CPACK_RPM_BINARY_SPECFILE } @ONLY )
2012-08-13 21:50:14 +04:00
else ( )
2010-05-20 17:09:46 +04:00
# No User specified spec file, will use the generated spec file
2012-08-13 21:47:32 +04:00
message ( "CPackRPM: Will use GENERATED spec file: ${CPACK_RPM_BINARY_SPECFILE}" )
2010-05-20 17:09:46 +04:00
# Note the just created file is processed for @var replacement
2012-08-13 21:47:32 +04:00
configure_file ( ${ CPACK_RPM_BINARY_SPECFILE } .in ${ CPACK_RPM_BINARY_SPECFILE } @ONLY )
2012-08-13 21:50:14 +04:00
endif ( )
2007-08-17 17:13:15 +04:00
2013-07-05 20:52:36 +04:00
# remove AT protection
unset ( PROTECTED_AT )
2012-08-13 21:47:32 +04:00
if ( RPMBUILD_EXECUTABLE )
2007-08-17 17:13:15 +04:00
# Now call rpmbuild using the SPECFILE
2012-08-13 21:47:32 +04:00
execute_process (
2010-05-20 17:09:46 +04:00
C O M M A N D " $ { R P M B U I L D _ E X E C U T A B L E } " - b b
2012-03-27 23:43:35 +04:00
- - d e f i n e " _ t o p d i r $ { C P A C K _ R P M _ D I R E C T O R Y } "
2010-11-13 19:56:36 +03:00
- - b u i l d r o o t " $ { C P A C K _ R P M _ D I R E C T O R Y } / $ { C P A C K _ P A C K A G E _ F I L E _ N A M E } $ { C P A C K _ R P M _ P A C K A G E _ C O M P O N E N T _ P A R T _ P A T H } "
2009-05-12 23:13:10 +04:00
" $ { C P A C K _ R P M _ B I N A R Y _ S P E C F I L E } "
2010-11-13 19:56:36 +03:00
W O R K I N G _ D I R E C T O R Y " $ { C P A C K _ T O P L E V E L _ D I R E C T O R Y } / $ { C P A C K _ P A C K A G E _ F I L E _ N A M E } $ { C P A C K _ R P M _ P A C K A G E _ C O M P O N E N T _ P A R T _ P A T H } "
2011-03-10 20:20:16 +03:00
R E S U L T _ V A R I A B L E C P A C K _ R P M B U I L D _ E X E C _ R E S U L T
2010-11-13 19:56:36 +03:00
E R R O R _ F I L E " $ { C P A C K _ T O P L E V E L _ D I R E C T O R Y } / r p m b u i l d $ { C P A C K _ R P M _ P A C K A G E _ C O M P O N E N T _ P A R T _ N A M E } . e r r "
O U T P U T _ F I L E " $ { C P A C K _ T O P L E V E L _ D I R E C T O R Y } / r p m b u i l d $ { C P A C K _ R P M _ P A C K A G E _ C O M P O N E N T _ P A R T _ N A M E } . o u t " )
2012-08-13 21:47:32 +04:00
if ( CPACK_RPM_PACKAGE_DEBUG OR CPACK_RPMBUILD_EXEC_RESULT )
file ( READ ${ CPACK_TOPLEVEL_DIRECTORY } /rpmbuild ${ CPACK_RPM_PACKAGE_COMPONENT_PART_NAME } .err RPMBUILDERR )
file ( READ ${ CPACK_TOPLEVEL_DIRECTORY } /rpmbuild ${ CPACK_RPM_PACKAGE_COMPONENT_PART_NAME } .out RPMBUILDOUT )
message ( "CPackRPM:Debug: You may consult rpmbuild logs in: " )
message ( "CPackRPM:Debug: - ${CPACK_TOPLEVEL_DIRECTORY}/rpmbuild${CPACK_RPM_PACKAGE_COMPONENT_PART_NAME}.err" )
message ( "CPackRPM:Debug: *** ${RPMBUILDERR} ***" )
message ( "CPackRPM:Debug: - ${CPACK_TOPLEVEL_DIRECTORY}/rpmbuild${CPACK_RPM_PACKAGE_COMPONENT_PART_NAME}.out" )
message ( "CPackRPM:Debug: *** ${RPMBUILDERR} ***" )
2012-08-13 21:50:14 +04:00
endif ( )
else ( )
2012-08-13 21:47:32 +04:00
if ( ALIEN_EXECUTABLE )
message ( FATAL_ERROR "RPM packaging through alien not done (yet)" )
2012-08-13 21:50:14 +04:00
endif ( )
endif ( )