awips2/rpms/python.site-packages/Installer.scientific/component.spec

91 lines
2.6 KiB
RPMSpec
Raw Normal View History

#
# AWIPS II Python scientific Site-Package Spec File
#
Name: awips2-python-scientific
Summary: AWIPS II Python scientific Site-Package
Version: 2.8
Release: 2
Group: AWIPSII
BuildRoot: /tmp
URL: N/A
License: N/A
Distribution: N/A
Vendor: Raytheon
Packager: Bryan Kowal
AutoReq: no
requires: awips2-python
provides: awips2-python-scientific
%define _docdir python.scientific
%description
AWIPS II Python scientific Site-Package - Installs the AWIPS II Python
scientific Site-Package in the Python installation.
# Turn off the brp-python-bytecompile script
%global __os_install_post %(echo '%{__os_install_post}' | sed -e 's!/usr/lib[^[:space:]]*/brp-python-bytecompile[[:space:]].*$!!g')
%prep
# Verify That The User Has Specified A BuildRoot.
if [ "${RPM_BUILD_ROOT}" = "/tmp" ]
then
echo "An Actual BuildRoot Must Be Specified. Use The --buildroot Parameter."
echo "Unable To Continue ... Terminating"
exit 1
fi
mkdir -p ${RPM_BUILD_ROOT}
%build
SITE_PACKAGE_SRC_DIR="pythonPackages/scientific"
cd ${WORKSPACE_DIR}/${SITE_PACKAGE_SRC_DIR}
export NETCDF_PREFIX=/awips2/python
${PYTHON_EXE} setup.py build
SC="$?"
if [ "${SC}" = "1" ]; then
exit 1
fi
%install
SITE_PACKAGE_SRC_DIR="pythonPackages/scientific"
cd ${WORKSPACE_DIR}/${SITE_PACKAGE_SRC_DIR}
${PYTHON_EXE} setup.py install --root=${RPM_BUILD_ROOT} \
--prefix=/awips2/python
SC="$?"
if [ "${SC}" = "1" ]; then
exit 1
fi
%pre
if [ -d /usr/share/doc/awips2/%{_docdir} ]; then
rm -rf /usr/share/doc/awips2/%{_docdir}
fi
PYTHON_INSTALL="/awips2/python"
echo -e "\e[1;34m--------------------------------------------------------------------------------\e[m"
echo -e "\e[1;34m\| Installing the AWIPS II Python scientific Site-Package...\e[m"
echo -e "\e[1;34m--------------------------------------------------------------------------------\e[m"
echo -e "\e[1;34m Python Install Root = ${PYTHON_INSTALL}\e[m"
%post
echo -e "\e[1;32m--------------------------------------------------------------------------------\e[m"
echo -e "\e[1;32m\| AWIPS II Python scientific Site-Package Installation - COMPLETE\e[m"
echo -e "\e[1;32m--------------------------------------------------------------------------------\e[m"
%preun
%postun
echo -e "\e[1;34m--------------------------------------------------------------------------------\e[m"
echo -e "\e[1;34m\| The AWIPS II Python scientific Site-Package Has Been Successfully Removed\e[m"
echo -e "\e[1;34m--------------------------------------------------------------------------------\e[m"
echo ""
%files
%defattr(644,awips,fxalpha,755)
/awips2/python/lib/python2.7/site-packages/*
/awips2/python/include/*
%defattr(755,awips,fxalpha,755)
/awips2/python/bin/*