From e860f791cf57650dfa0ea6b17eb85611053634df Mon Sep 17 00:00:00 2001 From: Marc Garcia Date: Wed, 15 Jan 2020 17:06:19 +0000 Subject: [PATCH] CLN: Remove unused release scripts --- scripts/build_dist.sh | 18 ------------------ scripts/build_dist_for_release.sh | 10 ---------- 2 files changed, 28 deletions(-) delete mode 100755 scripts/build_dist.sh delete mode 100755 scripts/build_dist_for_release.sh diff --git a/scripts/build_dist.sh b/scripts/build_dist.sh deleted file mode 100755 index c3f849ce7a6eb..0000000000000 --- a/scripts/build_dist.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -# build the distribution -LAST=`git tag --sort version:refname | grep -v rc | tail -1` - -echo "Building distribution for: $LAST" -git checkout $LAST - -read -p "Ok to continue (y/n)? " answer -case ${answer:0:1} in - y|Y ) - echo "Building distribution" - ./build_dist_for_release.sh - ;; - * ) - echo "Not building distribution" - ;; -esac diff --git a/scripts/build_dist_for_release.sh b/scripts/build_dist_for_release.sh deleted file mode 100755 index bee0f23a68ec2..0000000000000 --- a/scripts/build_dist_for_release.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash - -# this requires cython to be installed - -# this builds the release cleanly & is building on the current checkout -rm -rf dist -git clean -xfd -python setup.py clean --quiet -python setup.py cython --quiet -python setup.py sdist --formats=gztar --quiet