blob: 776f48cbd5edfc7f00a2f5a5d81cab7d118c2adf [file] [log] [blame]
#!/usr/bin/env bash
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you 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.
#
TMP_DIR=$(mktemp -d -t pulsarfunction.XXXXX)
PF_DIR=$TMP_DIR/pulsarfunction
OUTPUT_DIR=$2
VERSION=$3
echo $VERSION
mkdir -p $TMP_DIR $PF_DIR $PF_DIR/pulsarfunction
cp $1/*.py $PF_DIR/pulsarfunction
echo "__import__(\'pkg_resources\').declare_namespace(__name__)" > $PF_DIR/pulsarfunction/__init__.py
sed "s/VERSION/$VERSION/" setup.py.template > $PF_DIR/setup.py
cp requirements.txt $PF_DIR
cd $PF_DIR
/usr/bin/env python2.7 setup.py sdist
/usr/bin/env python2.7 setup.py bdist_wheel
mkdir -p $OUTPUT_DIR
cp $PF_DIR/dist/pulsarfunction-*-py2-*.whl $OUTPUT_DIR
cp $PF_DIR/dist/pulsarfunction-*.tar.gz $OUTPUT_DIR
touch $OUTPUT_DIR/pulsarfunction.whl
rm -rf $TMP_DIR