Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/database
In directory vz-cvs-3.sog:/tmp/cvs-serv12238/database

Added Files:
        pysqlite2-py.info 
Log Message:
move to 10.7 with OK
removed not-on-10.7 python variants

--- NEW FILE: pysqlite2-py.info ---
Info2: <<
Package: pysqlite2-py%type_pkg[python]
Version: 2.6.3
Revision: 1
Type: python(2.6 2.7)
Maintainer: Kurt Schwehr <[email protected]>

Recommends: sqlite3 (>= 3.6.9)

Depends: <<
sqlite3-shlibs (>= 3.6.9),
python%type_pkg[python]-shlibs
<<
BuildDepends: <<
sqlite3-dev (>= 3.6.9),
python%type_pkg[python]
<<
#Source: 
http://oss.itsystementwicklung.de/download/pysqlite/2.5/%v/pysqlite-%v.tar.gz
Source: http://pysqlite.googlecode.com/files/pysqlite-%v.tar.gz
Source-MD5: 711afa1062a1d2c4a67acdf02a33d86e
PatchScript: <<
  perl -pi -e 's,%% LOCALBASE,%% "%p",' setup.py
  perl -pi -e 's,#define HAVE_LOAD_EXTENSION,#undef HAVE_LOAD_EXTENSION,' 
src/connection.c
<<
CompileScript:  <<
  %p/bin/python%type_raw[python] setup.py build
<<
InstallScript: <<
  %p/bin/python%type_raw[python] setup.py install --prefix=%p --root=%d
  mkdir -p %i/share/doc
  mv %i/pysqlite2-doc %i/share/doc/%n
  rm -rf %i/lib/python2.?/site-packages/pysqlite-%v-py2.?.egg-info
<<

# Does not yet work and is testing the installed package.
#InfoTest: <<
#  TestScript: <<
#  PYTHONPATH=%p/lib/python%type_raw[python]/site-packages 
%p/bin/python%type_raw[python] -c 'import pysqlite2.test; 
pysqlite2.test.test()' || exit 2
#  <<
#<<

DocFiles: LICENSE PKG-INFO
Description: Extension module for the SQLite database
DescDetail: <<
pysqlite is a DB-API 2.0-compliant database interface for SQLite.

SQLite is a relational database management system contained in a
relatively small C library. It is a public domain project created by
D. Richard Hipp. Unlike the usual client-server paradigm, the SQLite
engine is not a standalone process with which the program
communicates, but is linked in and thus becomes an integral part of
the program. The library implements most of SQL-92 standard, including
transactions, triggers and most of complex queries.

pysqlite makes this powerful embedded SQL engine available to Python
programmers. It stays compatible with the Python database API
specification 2.0 as much as possible, but also exposes most of
SQLite's native API, so that it is for example possible to create
user-defined SQL functions and aggregates in Python.

If you need a relational database for your applications, or even small
tools or helper scripts, pysqlite is often a good fit. It's easy to
use, easy to deploy, and does not depend on any other Python libraries
or platform libraries, except SQLite. SQLite itself is ported to most
platforms you'd ever care about.
<<

DescUsage: <<
Trac will use pysqlite2 in preference to pysqlite.  If you install 
pysqlite2 after creating a pysqlite trac database, you will need to
update your trac database:

  $ mv trac.db trac2.db
  $ sqlite trac2.db .dump | sqlite3 trac.db

http://projects.edgewall.com/trac/wiki/PySqlite

Consider using sqlite3 from the main python25 package over pysqlite2
or use this just as a fallback:

try:
    import sqlite3
except:
    from pysqlite2 import dbapi2 as sqlite3

<<
DescPort: <<
Until the sqlite3 build can handle the extensions, we must turn off
the HAVE_LOAD_EXTENSIONS.  This might come from disabling tcl.
<<

License: OSI-Approved
#Homepage: http://pysqlite.sourceforge.net/
Homepage: http://pypi.python.org/pypi/pysqlite/
<<


------------------------------------------------------------------------------
Got Input?   Slashdot Needs You.
Take our quick survey online.  Come on, we don't ask for help often.
Plus, you'll get a chance to win $100 to spend on ThinkGeek.
http://p.sf.net/sfu/slashdot-survey
_______________________________________________
Fink-commits mailing list
[email protected]
http://news.gmane.org/gmane.os.apple.fink.cvs

Reply via email to