Remove old wrapper script around Solaris "pkgmk" command
This commit was SVN r21606.
Этот коммит содержится в:
родитель
03f94ae066
Коммит
f21b6c76d1
261
contrib/dist/solaris/bld_solaris_pkgs
поставляемый
261
contrib/dist/solaris/bld_solaris_pkgs
поставляемый
@ -1,261 +0,0 @@
|
||||
#!/bin/ksh
|
||||
|
||||
# Copyright (c) 2007 Sun Microsystems, Inc. All rights reserved.
|
||||
|
||||
#
|
||||
# This script takes as input to the prototype space of files that are to be
|
||||
# encapsulated in Solaris packages. The installation must include both 32 and
|
||||
# 64 bit libraries and prefixes in the correct manner.
|
||||
#
|
||||
# The steps to build are as follows using vpaths:
|
||||
# % cd ompi-trunk
|
||||
# % ./autogen.sh
|
||||
# % mkdir -p vpath/64 vpath/32/ vpath/proto
|
||||
#
|
||||
# (sparc build)
|
||||
# % cd vpath/64
|
||||
# % ../../configure --enable-shared --enable-mpi-f90 \
|
||||
# --with-tm=/path/to/OpenPBS --with-threads=solaris --enable-mpi-threads \
|
||||
# CFLAGS="-xarch=v9" CXXFLAGS="-xarch=v9" FFLAGS="-stackvar -mt -dalign \
|
||||
# -fpp -xarch=v9" FCFLAGS="-xarch=v9 -KPIC" --disable-binaries \
|
||||
# --prefix=/opt/SUNWhpc/HPC7.0 --libdir=/opt/SUNWhpc/HPC7.0/lib/sparcv9 \
|
||||
# --includedir=/opt/SUNWhpc/HPC7.0/include/v9
|
||||
# % make DESTDIR=/path/to/ompi-trunk/vpath/proto install
|
||||
# % cd ../32
|
||||
# % ../../configure --enable-shared --enable-mpi-f90 \
|
||||
# --with-tm=/path/to/OpenPBS --with-threads=solaris --enable-mpi-threads \
|
||||
# CFLAGS="" CXXFLAGS="" FFLAGS="-stackvar -mt -dalign -fpp" \
|
||||
# FCFLAGS="-KPIC" --prefix=/opt/SUNWhpc/HPC7.0 \
|
||||
# --libdir=/opt/SUNWhpc/HPC7.0/lib --includedir=/opt/SUNWhpc/HPC7.0/include
|
||||
# % make DESTDIR=/path/to/ompi-trunk/vpath/proto install
|
||||
# % cd ../../contrib/dist/solaris
|
||||
# % ./bld_solaris_pkgs -p /path/to/vpath/proto/opt/SUNWhpc/HPC7.0
|
||||
#
|
||||
# (amd/i386 build)
|
||||
# % cd vpath/64
|
||||
# % ../../configure --enable-shared --enable-mpi-f90 \
|
||||
# --with-tm=/path/to/OpenPBS --with-threads=solaris --enable-mpi-threads \
|
||||
# CFLAGS="" CXXFLAGS="" FFLAGS="-stackvar -mt -dalign \
|
||||
# -fpp" FCFLAGS="-KPIC" \
|
||||
# --prefix=/opt/SUNWhpc/HPC7.0 --libdir=/opt/SUNWhpc/HPC7.0/lib/amd64 \
|
||||
# --includedir=/opt/SUNWhpc/HPC7.0/include/amd64
|
||||
# % make DESTDIR=/path/to/ompi-trunk/vpath/proto install
|
||||
# % cd ../32
|
||||
# % ../../configure --enable-shared --enable-mpi-f90 \
|
||||
# --with-tm=/path/to/OpenPBS --with-threads=solaris --enable-mpi-threads \
|
||||
# CFLAGS="" CXXFLAGS="" FFLAGS="-stackvar -mt -dalign -fpp" \
|
||||
# FCFLAGS="-KPIC" --prefix=/opt/SUNWhpc/HPC7.0 \
|
||||
# --libdir=/opt/SUNWhpc/HPC7.0/lib --includedir=/opt/SUNWhpc/HPC7.0/include
|
||||
# % make DESTDIR=/path/to/ompi-trunk/vpath/proto install
|
||||
# % cd ../../contrib/dist/solaris
|
||||
# % ./bld_solaris_pkgs -p /path/to/vpath/proto/opt/SUNWhpc/HPC7.0
|
||||
#
|
||||
# The packages will be built into
|
||||
# .../ompi-trunk/contrib/dist/solaris/$PLATFORM/$ARCH/$DATE unless otherwise
|
||||
# specified by the -b option to bld_solaris_pkgs
|
||||
#
|
||||
|
||||
PATH=/usr/bin:/usr/sbin:${PATH}
|
||||
|
||||
#
|
||||
# global variables
|
||||
#
|
||||
ARCH=`uname -p`
|
||||
DATE=`date +'%Y.%m.%d'`
|
||||
PKGNAMES="OMPIompi OMPIompimn OMPIomsc"
|
||||
PLATFORM=`uname -s`
|
||||
PROTO=
|
||||
SED_PKGINFO_PROTO=sed_pkginfo_proto
|
||||
SPOOLDEV=`pwd`"/${PLATFORM}/${ARCH}/${DATE}"
|
||||
MY_IDNAME=`id | awk -F"(" '{print $2}' | awk -F")" '{print $1}'`
|
||||
MY_IDGRP=`id | awk -F"(" '{print $3}' | awk -F")" '{print $1}'`
|
||||
|
||||
#
|
||||
# build_package: This function takes as input the name of the package to build
|
||||
# and constructs the package into ${SPOOLDEV}/${PLATFORM}/${ARCH}/${DATE}
|
||||
#
|
||||
function build_package
|
||||
{
|
||||
f_pkg_name=$1
|
||||
|
||||
if [ ${BASE} ] ; then
|
||||
SPOOLDEV=${BASE}
|
||||
fi
|
||||
|
||||
if [ ! -d ${SPOOLDEV} ] ; then
|
||||
mkdir -p ${SPOOLDEV}
|
||||
fi
|
||||
pkgmk -b ${PROTO} -d ${SPOOLDEV} -f prototype.${f_pkg_name}
|
||||
|
||||
if [ $? != 0 ] ; then
|
||||
print "Error in packaging ${f_pkg_name}"
|
||||
|
||||
cleanup_pkginfo ${f_pkg_name}
|
||||
cleanup_prototype ${f_pkg_name}
|
||||
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
#
|
||||
# build_prototype: This function will create and update dynamic prototype files
|
||||
# for open mpi
|
||||
#
|
||||
function build_prototype
|
||||
{
|
||||
f_proto_name=prototype.$1
|
||||
|
||||
if [ -f ${f_proto_name} ] ; then
|
||||
rm -f ${f_proto_name}
|
||||
fi
|
||||
|
||||
if [ -f ${f_proto_name}.tmp ] ; then
|
||||
rm -f ${f_proto_name}.tmp
|
||||
fi
|
||||
|
||||
# need to prepend copyright and some basic information
|
||||
cat copyright > ${f_proto_name}.tmp 2>&1
|
||||
cat << _EOF >> ${f_proto_name}.tmp
|
||||
|
||||
i pkginfo=pkginfo.${1}
|
||||
i copyright
|
||||
|
||||
_EOF
|
||||
|
||||
if [ "$1" = "OMPIompimn" ] ; then
|
||||
echo "d none \$SUNW_PRODVERS 0755 root bin" >> ${f_proto_name}.tmp 2>&1
|
||||
pkgproto ${PROTO}/man=\$SUNW_PRODVERS/man >> ${f_proto_name}.tmp 2>&1
|
||||
fi
|
||||
|
||||
if [ "$1" = "OMPIomsc" ] ; then
|
||||
echo "d none \$SUNW_PRODVERS 0755 root bin" >> ${f_proto_name}.tmp 2>&1
|
||||
pkgproto ${PROTO}/examples=\$SUNW_PRODVERS/examples >> ${f_proto_name}.tmp 2>&1
|
||||
fi
|
||||
|
||||
if [ "$1" = "OMPIompi" ] ; then
|
||||
pkgproto ${PROTO}=\$SUNW_PRODVERS | egrep -v "man|examples|\.la" >> ${f_proto_name}.tmp 2>&1
|
||||
fi
|
||||
|
||||
sed -f ${SED_PKGINFO_PROTO} ${f_proto_name}.tmp > ${f_proto_name}
|
||||
|
||||
if [ -f ${f_proto_name}.tmp ] ; then
|
||||
rm -f ${f_proto_name}.tmp
|
||||
fi
|
||||
}
|
||||
|
||||
#
|
||||
# build_sed_script: This function creates the temporary sed script that is used
|
||||
# to process the pkginfo and prototype template files.
|
||||
#
|
||||
function build_sed_script
|
||||
{
|
||||
if [ -f ${SED_PKGINFO_PROTO} ] ; then
|
||||
rm -f ${SED_PKGINFO_PROTO}
|
||||
fi
|
||||
|
||||
cat << _EOF > ${SED_PKGINFO_PROTO}
|
||||
s/\=\"ISA\"/\=\"${ARCH}\"/g
|
||||
s/ ${MY_IDNAME} / root /g
|
||||
s/ ${MY_IDGRP}/ bin/g
|
||||
_EOF
|
||||
|
||||
}
|
||||
|
||||
#
|
||||
# cleanup_pkginfo: This function takes a single input of a package name and
|
||||
# removes the non-templete version of the pkginfo file after the package
|
||||
# has been created.
|
||||
#
|
||||
function cleanup_pkginfo
|
||||
{
|
||||
f_pkginfo_name=pkginfo.$1
|
||||
|
||||
if [ -f ${f_pkginfo_name} ] ; then
|
||||
rm -f ${f_pkginfo_name}
|
||||
fi
|
||||
}
|
||||
|
||||
#
|
||||
# cleanup_prototype: This function takes a single input of a package name and
|
||||
# removes the non-templete version of the prototype file after the package
|
||||
# has been created.
|
||||
#
|
||||
function cleanup_prototype
|
||||
{
|
||||
f_proto_name=prototype.$1
|
||||
|
||||
if [ -f ${f_proto_name} ] ; then
|
||||
rm -f ${f_proto_name}
|
||||
fi
|
||||
}
|
||||
|
||||
#
|
||||
# update_pkginfo: This function takes a single input of a package name and
|
||||
# creates the needed pkginfo file from the template and processing it
|
||||
# with the sed_pkginfo_proto script.
|
||||
#
|
||||
function update_pkginfo
|
||||
{
|
||||
f_pkginfo_name=pkginfo.$1
|
||||
|
||||
if [ -f ${f_pkginfo_name} ] ; then
|
||||
rm -f ${f_pkginfo_name}
|
||||
fi
|
||||
|
||||
sed -f ${SED_PKGINFO_PROTO} ${f_pkginfo_name}.tmpl > ${f_pkginfo_name}
|
||||
}
|
||||
|
||||
#
|
||||
#
|
||||
#
|
||||
function usage
|
||||
{
|
||||
prog=`basename $0`
|
||||
print "Usage: ${prog} [-b build-base] -p proto-dir"
|
||||
print " -b path to place built packages"
|
||||
print " -p path to the prototype space of files to be packaged"
|
||||
}
|
||||
|
||||
#
|
||||
# main
|
||||
#
|
||||
if (( $# < 1 )) ; then
|
||||
usage
|
||||
exit 1
|
||||
fi
|
||||
|
||||
while getopts b:p: a
|
||||
do
|
||||
case "$a" in
|
||||
b) BASE=$OPTARG;;
|
||||
p) PROTO=$OPTARG;;
|
||||
esac
|
||||
done
|
||||
|
||||
if [ ! ${PROTO} ] ; then
|
||||
usage
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ ! -d ${PROTO} ]; then
|
||||
print "Error: the proto space ${PROTO} does not exist."
|
||||
usage
|
||||
exit 1
|
||||
fi
|
||||
|
||||
build_sed_script
|
||||
|
||||
for pkg in ${PKGNAMES}
|
||||
do
|
||||
update_pkginfo ${pkg}
|
||||
build_prototype ${pkg}
|
||||
|
||||
build_package ${pkg}
|
||||
|
||||
cleanup_pkginfo ${pkg}
|
||||
cleanup_prototype ${pkg}
|
||||
done
|
||||
|
||||
rm ${SED_PKGINFO_PROTO}
|
||||
|
||||
exit 0
|
1
contrib/dist/solaris/copyright
поставляемый
1
contrib/dist/solaris/copyright
поставляемый
@ -1 +0,0 @@
|
||||
# Copyright (c) 2007 Sun Microsystems, Inc. All rights reserved.
|
21
contrib/dist/solaris/pkginfo.OMPIompi.tmpl
поставляемый
21
contrib/dist/solaris/pkginfo.OMPIompi.tmpl
поставляемый
@ -1,21 +0,0 @@
|
||||
# Copyright (c) 2007 Sun Microsystems, Inc. All rights reserved.
|
||||
# Use is subject to license terms.
|
||||
# $COPYRIGHT$
|
||||
#
|
||||
# Additional copyrights may follow
|
||||
|
||||
PKG="OMPIompi"
|
||||
NAME="Open MPI Message Passing Interface"
|
||||
VERSION="1.0"
|
||||
BASEDIR="/opt"
|
||||
ARCH="ISA"
|
||||
SUNW_PRODVERS="ompi"
|
||||
SUNW_PRODNAME="Open MPI"
|
||||
SUNW_PKGVERS="1.0"
|
||||
DESC="Open MPI Message Passing Interface"
|
||||
VENDOR="Open MPI"
|
||||
CATEGORY="system"
|
||||
CLASSES="none"
|
||||
MAXINST="1000"
|
||||
HOTLINE="Please contact your local service provider."
|
||||
EMAIL=""
|
21
contrib/dist/solaris/pkginfo.OMPIompimn.tmpl
поставляемый
21
contrib/dist/solaris/pkginfo.OMPIompimn.tmpl
поставляемый
@ -1,21 +0,0 @@
|
||||
# Copyright (c) 2007 Sun Microsystems, Inc. All rights reserved.
|
||||
# Use is subject to license terms.
|
||||
# $COPYRIGHT$
|
||||
#
|
||||
# Additional copyrights may follow
|
||||
|
||||
PKG="OMPIompimn"
|
||||
NAME="Open MPI Message Passing Interface Man Page"
|
||||
VERSION="1.0"
|
||||
BASEDIR="/opt"
|
||||
ARCH="ISA"
|
||||
SUNW_PRODVERS="ompi"
|
||||
SUNW_PRODNAME="Open MPI"
|
||||
SUNW_PKGVERS="1.0"
|
||||
DESC="Open MPI Message Passing Interface Man Page"
|
||||
VENDOR="Open MPI"
|
||||
CATEGORY="system"
|
||||
CLASSES="none"
|
||||
MAXINST="1000"
|
||||
HOTLINE="Please contact your local service provider."
|
||||
EMAIL=""
|
21
contrib/dist/solaris/pkginfo.OMPIomsc.tmpl
поставляемый
21
contrib/dist/solaris/pkginfo.OMPIomsc.tmpl
поставляемый
@ -1,21 +0,0 @@
|
||||
# Copyright (c) 2007 Sun Microsystems, Inc. All rights reserved.
|
||||
# Use is subject to license terms.
|
||||
# $COPYRIGHT$
|
||||
#
|
||||
# Additional copyrights may follow
|
||||
|
||||
PKG="OMPIomsc"
|
||||
NAME="Open MPI Miscellaneous Files"
|
||||
VERSION="1.0"
|
||||
BASEDIR="/opt"
|
||||
ARCH="ISA"
|
||||
SUNW_PRODVERS="ompi"
|
||||
SUNW_PRODNAME="Open MPI"
|
||||
SUNW_PKGVERS="1.0"
|
||||
DESC="Open MPI Miscellaneous Files"
|
||||
VENDOR="Open MPI"
|
||||
CATEGORY="system"
|
||||
CLASSES="none"
|
||||
MAXINST="1000"
|
||||
HOTLINE="Please contact your local service provider."
|
||||
EMAIL=""
|
Загрузка…
x
Ссылка в новой задаче
Block a user