Skip to content
This repository has been archived by the owner on Sep 23, 2020. It is now read-only.

Commit

Permalink
packaging some lantorrent deps with cumulus (same virutal env). expan…
Browse files Browse the repository at this point in the history
…ding

the range of acceptable simplejson packages
  • Loading branch information
buzztroll committed Jun 10, 2011
1 parent a4f4240 commit 9877299
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 2 additions & 0 deletions cumulus/reqs.txt
Expand Up @@ -3,3 +3,5 @@ deps/pyOpenSSL-0.10.tar.gz
deps/zope.interface-3.6.1.tar.gz deps/zope.interface-3.6.1.tar.gz
deps/Twisted-10.0.0.tar.bz2 deps/Twisted-10.0.0.tar.bz2
deps/nose-0.11.3.tar.gz deps/nose-0.11.3.tar.gz
deps/simplejson-2.1.6.tar.gz
deps/SQLAlchemy-0.6.8.tar.gz
1 change: 1 addition & 0 deletions install
Expand Up @@ -117,6 +117,7 @@ fi
export NIMBUS_HOME export NIMBUS_HOME
source $pyve_path/bin/activate source $pyve_path/bin/activate
export LANTORRENT_HOME=$NIMBUS_HOME/lantorrent export LANTORRENT_HOME=$NIMBUS_HOME/lantorrent

$NIMBUS_SRC/lantorrent/install.sh $LANTORRENT_HOME | tee -a $NIMBUS_HOME/install.log $NIMBUS_SRC/lantorrent/install.sh $LANTORRENT_HOME | tee -a $NIMBUS_HOME/install.log
rc=$PIPESTATUS rc=$PIPESTATUS
if [ $rc -ne 0 ]; then if [ $rc -ne 0 ]; then
Expand Down
4 changes: 2 additions & 2 deletions lantorrent/setup-vmm.py
Expand Up @@ -31,7 +31,7 @@
Fast multicast of large files (designed for VM images) Fast multicast of large files (designed for VM images)
""", """,
license="Apache2", license="Apache2",
install_requires = ["simplejson == 2.1"], install_requires = ["simplejson <= 2.1, >= 1.9"],


include_package_data = True, include_package_data = True,
# data_files = test_plans, # data_files = test_plans,
Expand Down Expand Up @@ -98,4 +98,4 @@
line = line.replace(old, new) line = line.replace(old, new)
sys.stdout.write(line) sys.stdout.write(line)


print "=============== END WITH THE PREVIOUS LINE =================" print "=============== END WITH THE PREVIOUS LINE ================="
4 changes: 2 additions & 2 deletions lantorrent/setup.py
Expand Up @@ -34,7 +34,7 @@
Fast multicast of large files (designed for VM images) Fast multicast of large files (designed for VM images)
""", """,
license="Apache2", license="Apache2",
install_requires = ["simplejson == 2.1", "sqlalchemy == 0.6"], install_requires = ["simplejson <= 2.1, >= 1.9", "sqlalchemy == 0.6"],


include_package_data = True, include_package_data = True,
# data_files = test_plans, # data_files = test_plans,
Expand Down Expand Up @@ -77,4 +77,4 @@
raise Exception('Failed to copy the config file %s' % (cp_cmd)) raise Exception('Failed to copy the config file %s' % (cp_cmd))




print "Lantorrent is now installed into your python environment. We recommend using the LANTORRENT_HOME environment variable to specify the location of configuration and log files. If this env is not set then ~/.lantorrent is used." print "Lantorrent is now installed into your python environment. We recommend using the LANTORRENT_HOME environment variable to specify the location of configuration and log files. If this env is not set then ~/.lantorrent is used."

0 comments on commit 9877299

Please sign in to comment.