diff --git a/.buildbot/deploy/01-install.sh b/.buildbot/deploy/01-install.sh deleted file mode 100644 index 8cbd569..0000000 --- a/.buildbot/deploy/01-install.sh +++ /dev/null @@ -1 +0,0 @@ -pip install -e . diff --git a/.buildbot/deploy/02-setup.sh b/.buildbot/deploy/02-setup.sh deleted file mode 100644 index 596681d..0000000 --- a/.buildbot/deploy/02-setup.sh +++ /dev/null @@ -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 <> djangoenv/main/settings.py - -STATIC_URL = '${ROOT_URI}/static/' - -E-O-H -fi diff --git a/.buildbot/deploy/03-allowed_hosts.sh b/.buildbot/deploy/03-allowed_hosts.sh deleted file mode 100644 index b2d4dda..0000000 --- a/.buildbot/deploy/03-allowed_hosts.sh +++ /dev/null @@ -1 +0,0 @@ -echo "ALLOWED_HOSTS = ['*']" >> djangoenv/main/settings.py diff --git a/.buildbot/deploy/10-collectstatic.sh b/.buildbot/deploy/10-collectstatic.sh deleted file mode 100644 index b8a1cfe..0000000 --- a/.buildbot/deploy/10-collectstatic.sh +++ /dev/null @@ -1 +0,0 @@ -python djangoenv/manage.py collectstatic --no-input diff --git a/.buildbot/deploy/99-trigger_wsgi_reload.sh b/.buildbot/deploy/99-trigger_wsgi_reload.sh deleted file mode 100644 index 55dd0e3..0000000 --- a/.buildbot/deploy/99-trigger_wsgi_reload.sh +++ /dev/null @@ -1 +0,0 @@ -touch djangoenv/main/wsgi.py diff --git a/.buildbot/dist/01-sdist.sh b/.buildbot/dist/01-sdist.sh deleted file mode 100644 index 267c9eb..0000000 --- a/.buildbot/dist/01-sdist.sh +++ /dev/null @@ -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 diff --git a/.buildbot/undist/01-unpack.sh b/.buildbot/undist/01-unpack.sh deleted file mode 100644 index 7dd4099..0000000 --- a/.buildbot/undist/01-unpack.sh +++ /dev/null @@ -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