It was a bad idea.
This commit is contained in:
@@ -1 +0,0 @@
|
||||
pip install -e .
|
||||
@@ -1,13 +0,0 @@
|
||||
django-dav-admin setup djangoenv
|
||||
python djangoenv/manage.py enable_module dav_auth
|
||||
python djangoenv/manage.py enable_module dav_events
|
||||
python djangoenv/manage.py enable_module dav_registration
|
||||
python djangoenv/manage.py enable_module dav_event_office
|
||||
|
||||
if test -n "$ROOT_URI" ; then
|
||||
cat <<E-O-H >> djangoenv/main/settings.py
|
||||
|
||||
STATIC_URL = '${ROOT_URI}/static/'
|
||||
|
||||
E-O-H
|
||||
fi
|
||||
@@ -1 +0,0 @@
|
||||
echo "ALLOWED_HOSTS = ['*']" >> djangoenv/main/settings.py
|
||||
@@ -1 +0,0 @@
|
||||
python djangoenv/manage.py collectstatic --no-input
|
||||
@@ -1 +0,0 @@
|
||||
touch djangoenv/main/wsgi.py
|
||||
22
.buildbot/dist/01-sdist.sh
vendored
22
.buildbot/dist/01-sdist.sh
vendored
@@ -1,22 +0,0 @@
|
||||
if test -z "$DIST_FORMAT" ; then
|
||||
DIST_FORMAT="gztar"
|
||||
fi
|
||||
|
||||
python setup.py sdist --dist-dir . --formats "$DIST_FORMAT"
|
||||
|
||||
if test -n "$DIST_FILE" ; then
|
||||
dist_name=`python setup.py --name`
|
||||
dist_version=`python setup.py --version`
|
||||
case "$DIST_FORMAT" in
|
||||
gztar)
|
||||
dist_suffix=".tar.gz"
|
||||
;;
|
||||
*)
|
||||
dist_suffix=".${DIST_FORMAT}"
|
||||
;;
|
||||
esac
|
||||
produced_file="${dist_name}-${dist_version}${dist_suffix}"
|
||||
if test "$produced_file" != "$DIST_FILE" ; then
|
||||
mv "$produced_file" "$DIST_FILE"
|
||||
fi
|
||||
fi
|
||||
@@ -1,23 +0,0 @@
|
||||
if test -z "$DIST_FORMAT" ; then
|
||||
DIST_FORMAT="gztar"
|
||||
fi
|
||||
|
||||
if test -z "$DIST_FILE" ; then
|
||||
echo "Environment variable DIST_FILE must not be empty" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if test -n "$INSTALL_DIR" ; then
|
||||
mkdir -p "$INSTALL_DIR"
|
||||
set -- --strip-components=1 -C "$INSTALL_DIR"
|
||||
fi
|
||||
|
||||
case "$DIST_FORMAT" in
|
||||
gztar)
|
||||
tar -xzf "$DIST_FILE" $*
|
||||
;;
|
||||
*)
|
||||
echo "Unsupported DIST_FORMAT ($DIST_FORMAT)" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
Reference in New Issue
Block a user