[SQL-CVS] r4020 - SQLObject/branches/0.10
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: <sub...@co...> - 2009-09-30 15:35:12
|
Author: phd Date: 2009-09-30 09:35:02 -0600 (Wed, 30 Sep 2009) New Revision: 4020 Removed: SQLObject/branches/0.10/release Log: Removed very old and outdated release script. Deleted: SQLObject/branches/0.10/release =================================================================== --- SQLObject/branches/0.10/release 2009-09-30 15:29:52 UTC (rev 4019) +++ SQLObject/branches/0.10/release 2009-09-30 15:35:02 UTC (rev 4020) @@ -1,26 +0,0 @@ -#!/bin/sh - -#echo 'Installing...' -#sudo python ./setup.py install -#echo 'installation done.' - -#pushd tests > /dev/null -#echo 'Testing...' -#python ./test.py -#echo 'testing done.' -#popd - -echo 'Building...' -python ./setup.py sdist -python ./setup.py bdist_rpm -python ./setup.py bdist_wininst -echo 'building done.' - -echo 'Uploading...' -pushd dist > /dev/null -for F in * ; do - echo -n " uploading $F..." - ncftpput upload.sourceforge.net incoming "$F" - echo "done." -done -echo 'uploading done' |