Adding airship folder for packaging airship components

Change-Id: Ib1f537294dabd8dcc5757b35f69c9f6c14e2a501
This commit is contained in:
Charu Jain 2019-09-12 18:18:24 +00:00
parent 8af3645023
commit 61ca7d7834
2 changed files with 11 additions and 8 deletions

1
airship/README.rst Normal file
View File

@ -0,0 +1 @@
RPM Packaging for Airship Components

View File

@ -7,7 +7,7 @@ basedir=${1:-$PWD}
# 2nd positional arg is the find -name parameter
FIND_STR=${2:-*}
specdir=${basedir}/openstack/
specdirs="${basedir}/openstack/ ${basedir}/airship/"
WORKSPACE=${WORKSPACE:-$basedir}
OUTPUTDIR=$WORKSPACE/logs/
@ -21,12 +21,14 @@ for specstyle in $specstyles; do
done
count=0
echo "run renderspec over specfiles from ${specdir}"
echo "run renderspec over specfiles from ${specdirs}"
for specstyle in $specstyles; do
find ${specdir} -name "${FIND_STR}.spec.j2" -type f -print0 | \
xargs -n 1 -0 -P 0 -I __SPEC__ bash -c "
set -e
pkg_name=\$(pymod2pkg --dist $specstyle \$(basename __SPEC__ .spec.j2))
renderspec --spec-style $specstyle __SPEC__ \
-o $WORKSPACE/logs/$specstyle/\$pkg_name.spec"
for specdir in $specdirs; do
find ${specdir} -name "${FIND_STR}.spec.j2" -type f -print0 | \
xargs -n 1 -0 -P 0 -I __SPEC__ bash -c "
set -e
pkg_name=\$(pymod2pkg --dist $specstyle \$(basename __SPEC__ .spec.j2))
renderspec --spec-style $specstyle __SPEC__ \
-o $WORKSPACE/logs/$specstyle/\$pkg_name.spec"
done
done