CPack: Fix RPM/Deb package names to not include "ALL_COMPONENTS_IN_ONE"
This commit is contained in:
parent
f551fa6245
commit
e7e2694823
@ -385,15 +385,13 @@ endif()
|
|||||||
# Are we packaging components ?
|
# Are we packaging components ?
|
||||||
if(CPACK_DEB_PACKAGE_COMPONENT)
|
if(CPACK_DEB_PACKAGE_COMPONENT)
|
||||||
set(CPACK_DEB_PACKAGE_COMPONENT_PART_NAME "-${CPACK_DEB_PACKAGE_COMPONENT}")
|
set(CPACK_DEB_PACKAGE_COMPONENT_PART_NAME "-${CPACK_DEB_PACKAGE_COMPONENT}")
|
||||||
set(CPACK_DEB_PACKAGE_COMPONENT_PART_PATH "/${CPACK_DEB_PACKAGE_COMPONENT}")
|
|
||||||
set(WDIR "${CPACK_TOPLEVEL_DIRECTORY}/${CPACK_PACKAGE_FILE_NAME}/${CPACK_DEB_PACKAGE_COMPONENT}")
|
|
||||||
string(TOLOWER "${CPACK_PACKAGE_NAME}${CPACK_DEB_PACKAGE_COMPONENT_PART_NAME}" CPACK_DEBIAN_PACKAGE_NAME)
|
string(TOLOWER "${CPACK_PACKAGE_NAME}${CPACK_DEB_PACKAGE_COMPONENT_PART_NAME}" CPACK_DEBIAN_PACKAGE_NAME)
|
||||||
else()
|
else()
|
||||||
set(CPACK_DEB_PACKAGE_COMPONENT_PART_NAME "")
|
set(CPACK_DEB_PACKAGE_COMPONENT_PART_NAME "")
|
||||||
set(CPACK_DEB_PACKAGE_COMPONENT_PART_PATH "")
|
|
||||||
set(WDIR "${CPACK_TOPLEVEL_DIRECTORY}/${CPACK_PACKAGE_FILE_NAME}")
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
set(WDIR "${CPACK_TOPLEVEL_DIRECTORY}/${CPACK_PACKAGE_FILE_NAME}${CPACK_DEB_PACKAGE_COMPONENT_PART_PATH}")
|
||||||
|
|
||||||
# Print out some debug information if we were asked for that
|
# Print out some debug information if we were asked for that
|
||||||
if(CPACK_DEBIAN_PACKAGE_DEBUG)
|
if(CPACK_DEBIAN_PACKAGE_DEBUG)
|
||||||
message("CPackDeb:Debug: CPACK_TOPLEVEL_DIRECTORY = ${CPACK_TOPLEVEL_DIRECTORY}")
|
message("CPackDeb:Debug: CPACK_TOPLEVEL_DIRECTORY = ${CPACK_TOPLEVEL_DIRECTORY}")
|
||||||
|
@ -311,14 +311,12 @@ endif()
|
|||||||
# Are we packaging components ?
|
# Are we packaging components ?
|
||||||
if(CPACK_RPM_PACKAGE_COMPONENT)
|
if(CPACK_RPM_PACKAGE_COMPONENT)
|
||||||
set(CPACK_RPM_PACKAGE_COMPONENT_PART_NAME "-${CPACK_RPM_PACKAGE_COMPONENT}")
|
set(CPACK_RPM_PACKAGE_COMPONENT_PART_NAME "-${CPACK_RPM_PACKAGE_COMPONENT}")
|
||||||
set(CPACK_RPM_PACKAGE_COMPONENT_PART_PATH "/${CPACK_RPM_PACKAGE_COMPONENT}")
|
|
||||||
set(WDIR "${CPACK_TOPLEVEL_DIRECTORY}/${CPACK_PACKAGE_FILE_NAME}/${CPACK_RPM_PACKAGE_COMPONENT}")
|
|
||||||
else()
|
else()
|
||||||
set(CPACK_RPM_PACKAGE_COMPONENT_PART_NAME "")
|
set(CPACK_RPM_PACKAGE_COMPONENT_PART_NAME "")
|
||||||
set(CPACK_RPM_PACKAGE_COMPONENT_PART_PATH "")
|
|
||||||
set(WDIR "${CPACK_TOPLEVEL_DIRECTORY}/${CPACK_PACKAGE_FILE_NAME}")
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
set(WDIR "${CPACK_TOPLEVEL_DIRECTORY}/${CPACK_PACKAGE_FILE_NAME}${CPACK_RPM_PACKAGE_COMPONENT_PART_PATH}")
|
||||||
|
|
||||||
#
|
#
|
||||||
# Use user-defined RPM specific variables value
|
# Use user-defined RPM specific variables value
|
||||||
# or generate reasonable default value from
|
# or generate reasonable default value from
|
||||||
|
@ -76,6 +76,11 @@ int cmCPackDebGenerator::PackageOnePack(std::string initialTopLevel,
|
|||||||
packageFileName.c_str());
|
packageFileName.c_str());
|
||||||
// Tell CPackDeb.cmake the name of the component GROUP.
|
// Tell CPackDeb.cmake the name of the component GROUP.
|
||||||
this->SetOption("CPACK_DEB_PACKAGE_COMPONENT",packageName.c_str());
|
this->SetOption("CPACK_DEB_PACKAGE_COMPONENT",packageName.c_str());
|
||||||
|
// Tell CPackDeb.cmake the path where the component is.
|
||||||
|
std::string component_path = "/";
|
||||||
|
component_path += packageName;
|
||||||
|
this->SetOption("CPACK_DEB_PACKAGE_COMPONENT_PART_PATH",
|
||||||
|
component_path.c_str());
|
||||||
if (!this->ReadListFile("CPackDeb.cmake"))
|
if (!this->ReadListFile("CPackDeb.cmake"))
|
||||||
{
|
{
|
||||||
cmCPackLogger(cmCPackLog::LOG_ERROR,
|
cmCPackLogger(cmCPackLog::LOG_ERROR,
|
||||||
@ -198,8 +203,11 @@ int cmCPackDebGenerator::PackageComponentsAllInOne()
|
|||||||
/* replace the TEMPORARY package file name */
|
/* replace the TEMPORARY package file name */
|
||||||
this->SetOption("CPACK_TEMPORARY_PACKAGE_FILE_NAME",
|
this->SetOption("CPACK_TEMPORARY_PACKAGE_FILE_NAME",
|
||||||
packageFileName.c_str());
|
packageFileName.c_str());
|
||||||
// Tell CPackDeb.cmake the name of the component GROUP.
|
// Tell CPackDeb.cmake the path where the component is.
|
||||||
this->SetOption("CPACK_DEB_PACKAGE_COMPONENT",compInstDirName.c_str());
|
std::string component_path = "/";
|
||||||
|
component_path += compInstDirName;
|
||||||
|
this->SetOption("CPACK_DEB_PACKAGE_COMPONENT_PART_PATH",
|
||||||
|
component_path.c_str());
|
||||||
if (!this->ReadListFile("CPackDeb.cmake"))
|
if (!this->ReadListFile("CPackDeb.cmake"))
|
||||||
{
|
{
|
||||||
cmCPackLogger(cmCPackLog::LOG_ERROR,
|
cmCPackLogger(cmCPackLog::LOG_ERROR,
|
||||||
|
@ -77,6 +77,11 @@ int cmCPackRPMGenerator::PackageOnePack(std::string initialToplevel,
|
|||||||
packageFileName.c_str());
|
packageFileName.c_str());
|
||||||
// Tell CPackRPM.cmake the name of the component NAME.
|
// Tell CPackRPM.cmake the name of the component NAME.
|
||||||
this->SetOption("CPACK_RPM_PACKAGE_COMPONENT",packageName.c_str());
|
this->SetOption("CPACK_RPM_PACKAGE_COMPONENT",packageName.c_str());
|
||||||
|
// Tell CPackRPM.cmake the path where the component is.
|
||||||
|
std::string component_path = "/";
|
||||||
|
component_path += packageName;
|
||||||
|
this->SetOption("CPACK_RPM_PACKAGE_COMPONENT_PART_PATH",
|
||||||
|
component_path.c_str());
|
||||||
if (!this->ReadListFile("CPackRPM.cmake"))
|
if (!this->ReadListFile("CPackRPM.cmake"))
|
||||||
{
|
{
|
||||||
cmCPackLogger(cmCPackLog::LOG_ERROR,
|
cmCPackLogger(cmCPackLog::LOG_ERROR,
|
||||||
@ -178,8 +183,11 @@ int cmCPackRPMGenerator::PackageComponentsAllInOne()
|
|||||||
/* replace the TEMPORARY package file name */
|
/* replace the TEMPORARY package file name */
|
||||||
this->SetOption("CPACK_TEMPORARY_PACKAGE_FILE_NAME",
|
this->SetOption("CPACK_TEMPORARY_PACKAGE_FILE_NAME",
|
||||||
packageFileName.c_str());
|
packageFileName.c_str());
|
||||||
// Tell CPackRPM.cmake the name of the component GROUP.
|
// Tell CPackRPM.cmake the path where the component is.
|
||||||
this->SetOption("CPACK_RPM_PACKAGE_COMPONENT",compInstDirName.c_str());
|
std::string component_path = "/";
|
||||||
|
component_path += compInstDirName;
|
||||||
|
this->SetOption("CPACK_RPM_PACKAGE_COMPONENT_PART_PATH",
|
||||||
|
component_path.c_str());
|
||||||
if (!this->ReadListFile("CPackRPM.cmake"))
|
if (!this->ReadListFile("CPackRPM.cmake"))
|
||||||
{
|
{
|
||||||
cmCPackLogger(cmCPackLog::LOG_ERROR,
|
cmCPackLogger(cmCPackLog::LOG_ERROR,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user