]> SALOME platform Git repositories - modules/paravis.git/commitdiff
Salome HOME
bos #26458 Versioning of sources via git commit id (sha1)
authorvsr <vsr@opencascade.com>
Mon, 4 Oct 2021 09:34:33 +0000 (12:34 +0300)
committervsr <vsr@opencascade.com>
Mon, 4 Oct 2021 17:50:53 +0000 (20:50 +0300)
CMakeLists.txt
bin/VERSION.in
src/PV_SWIG/CMakeLists.txt
src/PV_SWIG/__init__.py [new file with mode: 0644]

index 6c95b3921e2ac7a1d80984287eeb58bad48ec9c4..6e39cbacd50c59960848636096785585b0df8753 100644 (file)
 #
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8 FATAL_ERROR)
 INCLUDE(CMakeDependentOption)
+
+# Project name
+# ============
+# original
 PROJECT(SalomePARAVIS C CXX)
+# upper case
+STRING(TOUPPER ${PROJECT_NAME} PROJECT_NAME_UC)
 
 IF(WIN32)
   STRING( REPLACE "INCREMENTAL:YES" "INCREMENTAL:NO" replacementFlags ${CMAKE_SHARED_LINKER_FLAGS_DEBUG} )
   SET( CMAKE_SHARED_LINKER_FLAGS_DEBUG "${replacementFlags}" )
 ENDIF(WIN32)
 
-# Versioning
-# ===========
-# Project name, upper case
-STRING(TOUPPER ${PROJECT_NAME} PROJECT_NAME_UC)
-
-SET(${PROJECT_NAME_UC}_MAJOR_VERSION 9)
-SET(${PROJECT_NAME_UC}_MINOR_VERSION 7)
-SET(${PROJECT_NAME_UC}_PATCH_VERSION 0)
-SET(${PROJECT_NAME_UC}_VERSION
-  ${${PROJECT_NAME_UC}_MAJOR_VERSION}.${${PROJECT_NAME_UC}_MINOR_VERSION}.${${PROJECT_NAME_UC}_PATCH_VERSION})
-SET(${PROJECT_NAME_UC}_VERSION_DEV 1)
-
 # Common CMake macros
 # ===================
 SET(CONFIGURATION_ROOT_DIR $ENV{CONFIGURATION_ROOT_DIR} CACHE PATH "Path to the Salome CMake configuration files")
@@ -47,6 +41,11 @@ ELSE()
   MESSAGE(FATAL_ERROR "We absolutely need the Salome CMake configuration files, please define CONFIGURATION_ROOT_DIR !")
 ENDIF()
 
+# Versioning
+# ===========
+SALOME_SETUP_VERSION(9.7.0 DEVELOPMENT)
+MESSAGE(STATUS "Building ${PROJECT_NAME_UC} ${${PROJECT_NAME_UC}_VERSION} from \"${${PROJECT_NAME_UC}_GIT_SHA1}\"")
+
 # Find KERNEL
 # ===========
 SET(KERNEL_ROOT_DIR $ENV{KERNEL_ROOT_DIR} CACHE PATH "Path to the Salome KERNEL")
@@ -270,7 +269,6 @@ ADD_SUBDIRECTORY(idl)
 
 # Header configuration
 # ====================
-SALOME_XVERSION(${PROJECT_NAME})
 SALOME_CONFIGURE_FILE(PARAVIS_version.h.in PARAVIS_version.h INSTALL ${SALOME_INSTALL_HEADERS})
 
 # Configuration export
index 4ae7cd6b4bed4f7736747cd2b1bfd4b9ea1f3f6a..d00e7eb2ddba37c4c793fa63aca23ece1bd6b1e9 100644 (file)
@@ -1,3 +1,4 @@
 [SALOME PARAVIS] : @SALOMEPARAVIS_VERSION@
 [DEVELOPMENT]    : @SALOMEPARAVIS_VERSION_DEV@
 [DESCRIPTION]    : SALOME ParaVis (Paraview-based post-processing) module
+[SHA1]           : @SALOMEPARAVIS_GIT_SHA1@
index 0751c59b0e9b0dd8a955488328d3d9730d3373d6..507910fa4e459fece9eb6fda93369e4e72c7683f 100644 (file)
@@ -34,3 +34,4 @@ ELSE(SALOME_LIGHT_ONLY)
 ENDIF(SALOME_LIGHT_ONLY)
 
 SALOME_INSTALL_SCRIPTS("${_PYFILES_TO_INSTALL}" ${SALOME_INSTALL_PYTHON})
+SALOME_CONFIGURE_FILE(__init__.py __init__.py INSTALL ${SALOME_INSTALL_PYTHON}/salome/paravis)
diff --git a/src/PV_SWIG/__init__.py b/src/PV_SWIG/__init__.py
new file mode 100644 (file)
index 0000000..9551c19
--- /dev/null
@@ -0,0 +1,21 @@
+# -*- coding: iso-8859-1 -*-
+# Copyright (C) 2010-2021  CEA/DEN, EDF R&D
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+#
+# This library 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
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+#
+# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+#
+
+__version__ = "@SALOMEPARAVIS_GIT_SHA1@"