forked from irods/irods_rule_engine_plugin_audit_amqp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[irods#28] Add IRODS_PLUGIN_REVISION
Aligns with IRODS_VERSION and adds a 4th digit to plugin version. Also removes unixfilesystem resource test from test hook.
- Loading branch information
Showing
2 changed files
with
3 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
cmake_minimum_required(VERSION 3.5.0 FATAL_ERROR) #CPACK_DEBIAN_<COMPONENT>_PACKAGE_NAME | ||
|
||
find_package(IRODS 4.2.7 EXACT REQUIRED) | ||
set(IRODS_PLUGIN_REVISION "1") | ||
|
||
set(CMAKE_C_COMPILER ${IRODS_EXTERNALS_FULLPATH_CLANG}/bin/clang) | ||
set(CMAKE_CXX_COMPILER ${IRODS_EXTERNALS_FULLPATH_CLANG}/bin/clang++) | ||
|
@@ -160,14 +161,11 @@ install( | |
) | ||
|
||
|
||
set(CPACK_PACKAGE_FILE_NAME "irods-rule-engine-plugin-audit-amqp-${IRODS_VERSION}-${IRODS_LINUX_DISTRIBUTION_NAME}${IRODS_LINUX_DISTRIBUTION_VERSION_MAJOR}-${CMAKE_SYSTEM_PROCESSOR}") | ||
set(CPACK_INCLUDE_TOPLEVEL_DIRECTORY OFF) | ||
set(CPACK_COMPONENT_INCLUDE_TOPLEVEL_DIRECTORY OFF) | ||
set(CPACK_COMPONENTS_GROUPING IGNORE) | ||
set(CPACK_PACKAGE_VERSION ${IRODS_VERSION}) | ||
set(CPACK_PACKAGE_VERSION_MAJOR ${IRODS_VERSION_MAJOR}) | ||
set(CPACK_PACKAGE_VERSION_MINOR ${IRODS_VERSION_MINOR}) | ||
set(CPACK_PACKAGE_VERSION_PATCH ${IRODS_VERSION_PATCH}) | ||
set(CPACK_PACKAGE_VERSION ${IRODS_VERSION}.${IRODS_PLUGIN_REVISION}) | ||
set(CPACK_PACKAGE_FILE_NAME "irods-rule-engine-plugin-audit-amqp-${CPACK_PACKAGE_VERSION}-${IRODS_LINUX_DISTRIBUTION_NAME}${IRODS_LINUX_DISTRIBUTION_VERSION_MAJOR}-${CMAKE_SYSTEM_PROCESSOR}") | ||
set(CPACK_PACKAGE_CONTACT "Renaissance Computing Institute <[email protected]>") | ||
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "The integrated Rule-Oriented Data System") | ||
set(CPACK_PACKAGE_VENDOR "Renaissance Computing Institute <[email protected]>") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters