REV: removed the CI/CD chain scripts
All checks were successful
buildbot/tox Build done.

It was a bad idea.
This commit is contained in:
2020-04-27 22:45:34 +02:00
parent 3b7b90405e
commit 74ab8af520
7 changed files with 0 additions and 62 deletions

View File

@@ -1 +0,0 @@
pip install -e .

View File

@@ -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

View File

@@ -1 +0,0 @@
echo "ALLOWED_HOSTS = ['*']" >> djangoenv/main/settings.py

View File

@@ -1 +0,0 @@
python djangoenv/manage.py collectstatic --no-input

View File

@@ -1 +0,0 @@
touch djangoenv/main/wsgi.py

View File

@@ -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

View File

@@ -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