Issue #1934 - add groovy to the AWIPS II Baseline as awips2-groovy.

Former-commit-id: f410bd93c4 [formerly 75025909de] [formerly f410bd93c4 [formerly 75025909de] [formerly 47dc8016cb [formerly 2333bcbb65474dc625ee594b750159a32b83a946]]]
Former-commit-id: 47dc8016cb
Former-commit-id: 3a912d2003 [formerly 96475cf4ca]
Former-commit-id: 5a66175950
This commit is contained in:
Bryan Kowal 2013-04-28 19:59:09 -05:00
parent 6c34fe8ec9
commit 41a966403f
7 changed files with 118 additions and 0 deletions

View file

@ -0,0 +1,99 @@
%define _groovy_version 2.1.3
#
# AWIPS II Groovy Spec File
#
Name: awips2-groovy
Summary: AWIPS II Groovy Distribution
Version: %{_groovy_version}
Release: 1
Group: AWIPSII
BuildRoot: %{_build_root}
BuildArch: noarch
URL: N/A
License: N/A
Distribution: N/A
Vendor: Raytheon
Packager: Bryan Kowal
AutoReq: no
provides: awips2-groovy
requires: awips2-java
%description
AWIPS II Groovy Distribution - Contains Groovy %{_groovy_version}.
%prep
# Ensure that a "buildroot" has been specified.
if [ "%{_build_root}" = "" ]; then
echo "ERROR: A BuildRoot has not been specified."
echo "FATAL: Unable to Continue ... Terminating."
exit 1
fi
if [ -d %{_build_root} ]; then
rm -rf %{_build_root}
if [ $? -ne 0 ]; then
exit 1
fi
fi
mkdir -p %{_build_root}/awips2
if [ $? -ne 0 ]; then
exit 1
fi
mkdir -p %{_build_root}/etc/profile.d
if [ $? -ne 0 ]; then
exit 1
fi
%build
%install
RPMS_DIRECTORY="%{_baseline_workspace}/rpms"
INSTALLER_GROOVY="${RPMS_DIRECTORY}/awips2.core/Installer.groovy"
_profile_scripts="${INSTALLER_GROOVY}/scripts/profile.d"
_groovy_dist="${INSTALLER_GROOVY}/src/groovy-binary-%{_groovy_version}.zip"
unzip ${_groovy_dist} -d %{_build_root}/awips2
if [ $? -ne 0 ]; then
exit 1
fi
mv %{_build_root}/awips2/groovy-%{_groovy_version} \
%{_build_root}/awips2/groovy
if [ $? -ne 0 ]; then
exit 1
fi
cp ${_profile_scripts}/* %{_build_root}/etc/profile.d
if [ $? -ne 0 ]; then
exit 1
fi
%clean
rm -rf ${RPM_BUILD_ROOT}
%files
%defattr(644,awips,fxalpha,755)
%attr(755,root,root) /etc/profile.d/awips2Groovy.csh
%attr(755,root,root) /etc/profile.d/awips2Groovy.sh
%dir /awips2/groovy
%dir /awips2/groovy/conf
/awips2/groovy/conf/*
%dir /awips2/groovy/embeddable
/awips2/groovy/embeddable/*
%dir /awips2/groovy/indy
/awips2/groovy/indy/*
%dir /awips2/groovy/lib
/awips2/groovy/lib/*
%dir /awips2/groovy/bin
%doc /awips2/groovy/ANTLR-LICENSE.txt
%doc /awips2/groovy/ASM-LICENSE.txt
%doc /awips2/groovy/CLI-LICENSE.txt
%doc /awips2/groovy/JSR223-LICENSE.txt
%doc /awips2/groovy/LICENSE.txt
%doc /awips2/groovy/NOTICE.txt
%defattr(755,awips,fxalpha,755)
/awips2/groovy/bin/*

View file

@ -0,0 +1,9 @@
#!/bin/csh
setenv GROOVY_HOME="/awips2/groovy"
if $?PATH then
setenv PATH ${GROOVY_HOME}/bin:$PATH
else
setenv PATH ${GROOVY_HOME}/bin
endif

View file

@ -0,0 +1,4 @@
#!/bin/bash
export GROOVY_HOME=/awips2/groovy
export PATH=${GROOVY_HOME}/bin:${PATH}

View file

@ -221,6 +221,10 @@ function lookupRPM()
export RPM_SPECIFICATION="${awips2_core_dir}/Installer.java"
return 0
fi
if [ "${1}" = "awips2-groovy" ]; then
export RPM_SPECIFICATION="${awips2_core_dir}/Installer.groovy"
return 0
fi
if [ "${1}" = "awips2-ldm" ]; then
export RPM_SPECIFICATION="${awips2_core_dir}/Installer.ldm"
return 0

View file

@ -255,6 +255,7 @@ if [ "${1}" = "-full" ]; then
fi
buildRPM "awips2-httpd-pypies"
buildRPM "awips2-java"
buildRPM "awips2-groovy"
#buildRPM "awips2-ldm"
buildRPM "awips2-postgres"
buildRPM "awips2-pgadmin3"

View file

@ -210,6 +210,7 @@ if [ "${1}" = "-full" ]; then
fi
buildRPM "awips2-httpd-pypies"
buildRPM "awips2-java"
buildRPM "awips2-groovy"
buildLocalizationRPMs
if [ $? -ne 0 ]; then
exit 1