(file) Return to RPMMakefile CVS log (file) (dir) Up to [Pegasus] / pegasus / rpm

Diff for /pegasus/rpm/RPMMakefile between version 1.11 and 1.19

version 1.11, 2008/11/25 22:03:45 version 1.19, 2013/07/18 13:26:53
Line 1 
Line 1 
 #//%2006////////////////////////////////////////////////////////////////////////  #//%LICENSE////////////////////////////////////////////////////////////////
 #// #//
 #// Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development  #// Licensed to The Open Group (TOG) under one or more contributor license
 #// Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.  #// agreements.  Refer to the OpenPegasusNOTICE.txt file distributed with
 #// Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;  #// this work for additional information regarding copyright ownership.
 #// IBM Corp.; EMC Corporation, The Open Group.  #// Each contributor licenses this file to you under the OpenPegasus Open
 #// Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;  #// Source License; you may not use this file except in compliance with the
 #// IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.  #// License.
 #// Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;  
 #// EMC Corporation; VERITAS Software Corporation; The Open Group.  
 #// Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;  
 #// EMC Corporation; Symantec Corporation; The Open Group.  
 #// #//
 #// Permission is hereby granted, free of charge, to any person obtaining a copy  #// Permission is hereby granted, free of charge, to any person obtaining a
 #// of this software and associated documentation files (the "Software"), to  #// copy of this software and associated documentation files (the "Software"),
 #// deal in the Software without restriction, including without limitation the  #// to deal in the Software without restriction, including without limitation
 #// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or  #// the rights to use, copy, modify, merge, publish, distribute, sublicense,
 #// sell copies of the Software, and to permit persons to whom the Software is  #// and/or sell copies of the Software, and to permit persons to whom the
 #// furnished to do so, subject to the following conditions:  #// Software is furnished to do so, subject to the following conditions:
 #// #//
 #// THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN  #// The above copyright notice and this permission notice shall be included
 #// ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED  #// in all copies or substantial portions of the Software.
 #// "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT  
 #// LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR  
 #// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT  
 #// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN  
 #// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION  
 #// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  
 #// #//
 #//==============================================================================  #// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
   #// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
   #// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
   #// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
   #// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
   #// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
   #// SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
   #//
   #//////////////////////////////////////////////////////////////////////////
 ############################################################################### ###############################################################################
 ## ##
 ## RPM Makefile for building tog-pegasus rpms ## RPM Makefile for building tog-pegasus rpms
Line 55 
Line 53 
 CP:=cp CP:=cp
 GREP:=grep GREP:=grep
 ECHO:=echo ECHO:=echo
 TOG_INSTALLED_RPMS:=$(shell $(RPM) -qa|grep tog-pegasus)  ECHO-E:=echo -e
   TOG_INSTALLED_RPMS:=$(shell $(RPM) -qa|grep $(PEGASUS_FLAVOR)-pegasus)
  
 ifdef PEGASUS_BUILD_BRANCH ifdef PEGASUS_BUILD_BRANCH
     ifeq ($(PEGASUS_BUILD_BRANCH),MAIN)     ifeq ($(PEGASUS_BUILD_BRANCH),MAIN)
Line 66 
Line 65 
 else else
         PEGASUS_RPM_CVS_TAG:=HEAD         PEGASUS_RPM_CVS_TAG:=HEAD
 endif endif
   ###############################################################################
   ##
   ## 32 bit RedHat yield x.x like 5.5 for lsb_release -r -s whereas
   ## 32 bit SUSE yield x like 11
   ## so, need to used findstring for comparing
   ##
   ##
   ###############################################################################
 ifeq ($(IDISTRO),RedHatEnterpriseServer) ifeq ($(IDISTRO),RedHatEnterpriseServer)
     DISTRO:=REDHAT     DISTRO:=REDHAT
     export PEGASUS_DISTRO_SUFFIX:= \     export PEGASUS_DISTRO_SUFFIX:= \
         $(if $(filter $(RELEASE),4.92 4.93 5),el5,xxx)          $(if $(filter $(RELEASE),4.92 4.93 5 5.1 5.2 5.3),el5,$(if $(filter $(RELEASE),6 6.0),el6,$(if $(filter $(RELEASE),7 7.0),el7,xxx))
 else else
     ifeq ($(findstring RedHat,$(IDISTRO)),RedHat)     ifeq ($(findstring RedHat,$(IDISTRO)),RedHat)
         DISTRO:=REDHAT         DISTRO:=REDHAT
         ifeq ($(RELEASE),4)          ifeq ($(findstring 7, $(RELEASE)),7)
              export PEGASUS_DISTRO_SUFFIX=rhel7
           else
              ifeq ($(findstring 6, $(RELEASE)),6)
              export PEGASUS_DISTRO_SUFFIX=rhel6
           else
               ifeq ($(findstring 5, $(RELEASE)),5)
                   export PEGASUS_DISTRO_SUFFIX=rhel5
               else
                   ifeq ($(findstring 4, $(RELEASE)),4)
            export PEGASUS_DISTRO_SUFFIX=rhel4            export PEGASUS_DISTRO_SUFFIX=rhel4
         else         else
             ifeq ($(RELEASE),3)                     ifeq ($(findstring 3, $(RELEASE)),3)
                 export PEGASUS_DISTRO_SUFFIX=rhel3                 export PEGASUS_DISTRO_SUFFIX=rhel3
             else             else
                 export PEGASUS_DISTRO_SUFFIX=xxx                 export PEGASUS_DISTRO_SUFFIX=xxx
             endif             endif
         endif         endif
               endif
           endif
           endif
     else     else
         ifeq ($(findstring SUSE,$(IDISTRO)),SUSE)         ifeq ($(findstring SUSE,$(IDISTRO)),SUSE)
             DISTRO:=SUSE             DISTRO:=SUSE
Line 92 
Line 110 
                 ifeq ($(RELEASE),10)                 ifeq ($(RELEASE),10)
                     export PEGASUS_DISTRO_SUFFIX=sles10                     export PEGASUS_DISTRO_SUFFIX=sles10
                 else                 else
                      ifeq ($(RELEASE),11)
                          export PEGASUS_DISTRO_SUFFIX=sles11
                      else
                     export PEGASUS_DISTRO_SUFFIX=xxx                     export PEGASUS_DISTRO_SUFFIX=xxx
                 endif                 endif
             endif             endif
         endif         endif
     endif     endif
 endif endif
   endif
  
 ############################################################################### ###############################################################################
 # #
Line 118 
Line 140 
   endif   endif
   TOG_PEGASUS_DIR:=""   TOG_PEGASUS_DIR:=""
 else else
   TOG_PEGASUS_DIR:=tog-pegasus    TOG_PEGASUS_DIR:=$(PEGASUS_FLAVOR)-pegasus
 endif endif
  
 VERSION:=$(PEGASUS_PRODUCT_VERSION)-$(PEGASUS_PACKAGE_VERSION) VERSION:=$(PEGASUS_PRODUCT_VERSION)-$(PEGASUS_PACKAGE_VERSION)
 CORE_RPM:=tog-pegasus-$(VERSION).$(PEGASUS_DISTRO_SUFFIX).$(PLATFORM).rpm  CORE_RPM:=$(PEGASUS_FLAVOR)-pegasus-$(VERSION).$(PEGASUS_DISTRO_SUFFIX).$(PLATFORM).rpm
 SDK_RPM:=tog-pegasus-devel-$(VERSION).$(PEGASUS_DISTRO_SUFFIX).$(PLATFORM).rpm  SDK_RPM:=$(PEGASUS_FLAVOR)-pegasus-devel-$(VERSION).$(PEGASUS_DISTRO_SUFFIX).$(PLATFORM).rpm
 TEST_RPM:=tog-pegasus-test-$(VERSION).$(PEGASUS_DISTRO_SUFFIX).$(PLATFORM).rpm  TEST_RPM:=$(PEGASUS_FLAVOR)-pegasus-test-$(VERSION).$(PEGASUS_DISTRO_SUFFIX).$(PLATFORM).rpm
 SRC_RPM:=tog-pegasus-$(VERSION).src.rpm  SRC_RPM:=$(PEGASUS_FLAVOR)-pegasus-$(VERSION).src.rpm
 RPM_SRC_DIR:=$(shell echo tog-pegasus-$(PEGASUS_PRODUCT_VERSION))  RPM_SRC_DIR:=$(shell echo $(PEGASUS_FLAVOR)-pegasus-$(PEGASUS_PRODUCT_VERSION))
  
 USAGE = @$(ECHO) $(1) USAGE = @$(ECHO) $(1)
  
Line 170 
Line 192 
 endef endef
  
 define startCIMServer define startCIMServer
         @/etc/init.d/tog-pegasus status > /dev/null 2>&1; \          @/etc/init.d/$(PEGASUS_FLAVOR)-pegasus status > /dev/null 2>&1; \
         if [ $$? != 0 ]; then \         if [ $$? != 0 ]; then \
             /etc/init.d/tog-pegasus start; \              /etc/init.d/$(PEGASUS_FLAVOR)-pegasus start; \
         fi         fi
 endef endef
  
 define stopCIMServer define stopCIMServer
         @/etc/init.d/tog-pegasus status > /dev/null 2>&1; \          @/etc/init.d/$(PEGASUS_FLAVOR)-pegasus status > /dev/null 2>&1; \
         if [ $$? == 0 ]; then \         if [ $$? == 0 ]; then \
             /etc/init.d/tog-pegasus stop; \              /etc/init.d/$(PEGASUS_FLAVOR)-pegasus stop; \
         fi         fi
 endef endef
  
Line 187 
Line 209 
 exportSRC: exportSRC:
         @cvs -d:pserver:anon@cvs.opengroup.org:/cvs/MSB export -r $(PEGASUS_RPM_CVS_TAG) pegasus         @cvs -d:pserver:anon@cvs.opengroup.org:/cvs/MSB export -r $(PEGASUS_RPM_CVS_TAG) pegasus
  
   enableSQLiteRepository:
           $(ECHO-E) "" \
               >> pegasus/env_var_Linux.status
           $(ECHO-E) "PEGASUS_USE_SQLITE_REPOSITORY = true" \
               >> pegasus/env_var_Linux.status
   ifdef SQLITE_HOME
           $(ECHO-E) "SQLITE_HOME = $(SQLITE_HOME)" \
               >> pegasus/env_var_Linux.status
   endif
   
 createSRCRPM: createSRCRPM:
  
 ifndef PEGASUS_PRODUCT_VERSION ifndef PEGASUS_PRODUCT_VERSION
Line 196 
Line 228 
         @$(MV) pegasus $(RPM_SRC_DIR)         @$(MV) pegasus $(RPM_SRC_DIR)
         @$(CP) $(RPM_SRC_DIR)/rpm/tog-pegasus.spec \         @$(CP) $(RPM_SRC_DIR)/rpm/tog-pegasus.spec \
             $(PEGASUS_RPM_DIRECTORY)/SPECS             $(PEGASUS_RPM_DIRECTORY)/SPECS
         @tar czf tog-pegasus-$(VERSION).tar.gz $(RPM_SRC_DIR)          @tar czf $(PEGASUS_FLAVOR)-pegasus-$(VERSION).tar.gz $(RPM_SRC_DIR)
         @$(CP) tog-pegasus-$(VERSION).tar.gz $(PEGASUS_RPM_DIRECTORY)/SOURCES/$(TOG_PEGASUS_DIR)          @$(CP) $(PEGASUS_FLAVOR)-pegasus-$(VERSION).tar.gz $(PEGASUS_RPM_DIRECTORY)/SOURCES/$(TOG_PEGASUS_DIR)
         @$(RPMBUILD) -bs $(PEGASUS_RPM_DIRECTORY)/SPECS/tog-pegasus.spec         @$(RPMBUILD) -bs $(PEGASUS_RPM_DIRECTORY)/SPECS/tog-pegasus.spec
  
 createBINRPM: createBINRPM:
Line 205 
Line 237 
         @$(RPMBUILD) -bb --define 'LINUX_VERSION $(PEGASUS_DISTRO_SUFFIX)' --define 'PEGASUS_BUILD_TEST_RPM 1' $(PEGASUS_RPM_DIRECTORY)/SPECS/tog-pegasus.spec         @$(RPMBUILD) -bb --define 'LINUX_VERSION $(PEGASUS_DISTRO_SUFFIX)' --define 'PEGASUS_BUILD_TEST_RPM 1' $(PEGASUS_RPM_DIRECTORY)/SPECS/tog-pegasus.spec
  
 list: list:
         @$(RPM) -qa|$(GREP) tog-pegasus          @$(RPM) -qa|$(GREP) $(PEGASUS_FLAVOR)-pegasus
  
 tests: tests:
         # Start cimserver         # Start cimserver
Line 264 
Line 296 
         $(PEGASUS_SCRIPT_DIR)/genOpenPegasusSSLCerts         $(PEGASUS_SCRIPT_DIR)/genOpenPegasusSSLCerts
  
 cleanRPM: cleanRPM:
         $(call removeRPM,tog-pegasus-test);          $(call removeRPM,$(PEGASUS_FLAVOR)-pegasus-test);
         -$(call startCIMServer)         -$(call startCIMServer)
         $(call removeRPM,tog-pegasus-devel);          $(call removeRPM,$(PEGASUS_FLAVOR)-pegasus-devel);
         $(call removeRPM,tog-pegasus);          $(call removeRPM,$(PEGASUS_FLAVOR)-pegasus);
         -$(RM) -Rf $(RPM_SRC_DIR).old         -$(RM) -Rf $(RPM_SRC_DIR).old
 ifneq ($(wildcard $(RPM_SRC_DIR)), ) ifneq ($(wildcard $(RPM_SRC_DIR)), )
         $(MV) $(RPM_SRC_DIR) $(RPM_SRC_DIR).old         $(MV) $(RPM_SRC_DIR) $(RPM_SRC_DIR).old


Legend:
Removed from v.1.11  
changed lines
  Added in v.1.19

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2