Skip to content

Commit

Permalink
2.10.0 rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
geo committed Aug 23, 2018
1 parent ca87059 commit 699c8e1
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion geonode/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

import os

__version__ = (2, 10, 0, 'rc', 1)
__version__ = (2, 10, 0, 'rc', 2)


default_app_config = "geonode.apps.AppConfig"
Expand Down
7 changes: 6 additions & 1 deletion package/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ function reorganize_configuration() {
cp -rp $INSTALL_DIR/support/geonode.wsgi $GEONODE_WWW/wsgi/
cp -rp $INSTALL_DIR/support/geonode.robots $GEONODE_WWW/robots.txt
cp -rp $INSTALL_DIR/support/geonode.binary $GEONODE_BIN/geonode
cp -rp $INSTALL_DIR/support/packages/*.* $GEONODE_SHARE
cp -rp $INSTALL_DIR/GeoNode*.zip $GEONODE_SHARE
cp -rp $INSTALL_DIR/support/geonode.updateip $GEONODE_BIN/geonode-updateip
cp -rp $INSTALL_DIR/support/geonode.admin $GEONODE_SHARE/admin.json
Expand Down Expand Up @@ -70,6 +71,7 @@ psql -d geonode_data -c 'CREATE EXTENSION postgis'
EOF
su - postgres -c "psql" <<EOF
CREATE ROLE geonode WITH LOGIN PASSWORD '$psqlpass' SUPERUSER INHERIT;
ALTER USER geonode WITH PASSWORD '$psqlpass';
EOF
}

Expand All @@ -83,8 +85,11 @@ function setup_django_once() {
}

function setup_django_every_time() {
pip install pip==9.0.3 --quiet
pip install pip --upgrade --quiet
pip install $GEONODE_SHARE/GeoNode-*.zip --no-dependencies --quiet
pip install $GEONODE_SHARE/jwcrypto-0.5.0-py2.py3-none-any.whl --no-dependencies --no-cache-dir --quiet
pip install $GEONODE_SHARE/xmltodict-0.10.2.tar.gz --no-dependencies --no-cache-dir --quiet
pip install $GEONODE_SHARE/lxml-3.6.2.tar.gz --no-dependencies --no-cache-dir --quiet

geonodedir=`python -c "import geonode;import os;print os.path.dirname(geonode.__file__)"`

Expand Down
Binary file not shown.
Binary file added package/support/packages/lxml-3.6.2.tar.gz
Binary file not shown.
Binary file added package/support/packages/xmltodict-0.10.2.tar.gz
Binary file not shown.

0 comments on commit 699c8e1

Please sign in to comment.