2ab55fb249
Here we are making sure our tarballs that we produce are named puppet-foo.tar.gz. Additionally, we don't need to rename tagged tarballs, since puppet build module does the right thing. Change-Id: Ib16327fe436e5dd84c773be19892f3eca4a09f55 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
55 lines
1.8 KiB
Bash
Executable File
55 lines
1.8 KiB
Bash
Executable File
#!/bin/bash -xe
|
|
|
|
# Copyright 2013 OpenStack Foundation
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
# this is a puppet module
|
|
if [ -r metadata.json ]; then
|
|
# try to find the modulename, ex: puppet-aodh
|
|
# we have to use sed because workspace is puppet-aodh-branch-tarball
|
|
# or puppet-aodh-tarball and not puppet-aodh.
|
|
MODULE_NAME=$(basename `git rev-parse --show-toplevel` | sed "s/\(-branch\)\?-tarball$//")
|
|
puppet module build .
|
|
# NOTE(pabelanger): Here we are converting openstack-neutron-8.0.0.tar.gz to
|
|
# puppet-neutron-8.0.0.tar.gz.
|
|
find . -name openstack-*.tar.gz | sed -e "p;s/openstack-/puppet-/" | xargs -n2 mv
|
|
mkdir -p dist
|
|
if echo $ZUUL_REFNAME | grep refs/tags/ >/dev/null ; then
|
|
# NOTE(pabelanger) We don't need to rename tagged tarballs as `puppet
|
|
# module build` does the right thing.
|
|
mv pkg/*.tar.gz dist/
|
|
else
|
|
mv pkg/*.tar.gz dist/$MODULE_NAME.tar.gz
|
|
fi
|
|
else
|
|
# this a python project
|
|
venv=${1:-venv}
|
|
|
|
export UPPER_CONSTRAINTS_FILE=$(pwd)/upper-constraints.txt
|
|
|
|
rm -f dist/*.tar.gz
|
|
tox -e$venv python setup.py sdist
|
|
fi
|
|
|
|
FILES=dist/*.tar.gz
|
|
for f in $FILES; do
|
|
echo "SHA1sum for $f:"
|
|
sha1sum $f | awk '{print $1}' > $f.sha1
|
|
cat $f.sha1
|
|
|
|
echo "MD5sum for $f:"
|
|
md5sum $f | awk '{print $1}' > $f.md5
|
|
cat $f.md5
|
|
done
|