Addendum: add SQLite support:
1) 1st try to install pysqlite on target host
easy_install -U pysqlite
fails, because the download link in Cheesehop is missing (see mailing list
thread before this one)
2) 2nd try to install pysqlite on target host
easy_install -Uf \
http://initd.org/pub/software/pysqlite/releases/2.3/2.3.2/ pysqlite
fails because of missing gcc
3) build egg on other machine
easy_install -Uzmf \
http://initd.org/pub/software/pysqlite/releases/2.3/2.3.2/ pysqlite
and copy it to target host and install with
easy_install -Z pysqlite-2.3.2-py2.4-linux-i686.egg
4) test a quickstart app with identity:
tg-admin quickstart -i -p mytest MyTest
cd MyTest
tg-admin sql create
tg-admin shell
>>> User(user_name='test', display_name='Test User',
... email_address='[EMAIL PROTECTED]', password='test)
>>> ^D
./start-mytest.py &>mytest.log &
lynx http://localhost:8080/login
Fill in username 'test', password 'test and hit 'Login' --> Sucess
(There is an exception when using the 'links' browser, which I'll have to
figure out later. FF works fine too.)
Conclusion:
-----------
For proper out-of-the-box-installation support on Ubuntu 6.06 x86, TG would
need to provide the following binary eggs (or make sure they are provided
elsewhere):
cElementTree-1.0.5_20051216-py2.4-linux-i386.egg
Cheetah-2.0rc7-py2.4-linux-i386.egg
PyProtocols-1.0a0-py2.4-linux-i386.egg
pysqlite-2.3.2-py2.4-linux-i386.egg
RuleDispatch-0.5a0.dev_r2115-py2.4-linux-i386.egg
I could do the same test on a amd64 installation. Somebody willing to do the
same tests for Ubuntu 6.10?
Chris
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TurboGears" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/turbogears?hl=en
-~----------~----~----~----~------~----~------~--~---