Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/database
In directory sc8-pr-cvs17.sourceforge.net:/tmp/cvs-serv12357

Added Files:
        pysqlite2-py.info 
Log Message:
move to stable to satisfy dependencies


--- NEW FILE: pysqlite2-py.info ---
Info2: <<
Package: pysqlite2-py%type_pkg[python]
Version: 2.4.1
Revision: 1
Distribution: (%type_pkg[python] = 23) 10.3, (%type_pkg[python] = 23) 10.4
Type: python(2.3 2.4 2.5)
Maintainer: Kurt Schwehr <[EMAIL PROTECTED]>
Depends: <<
sqlite3-shlibs,
sqlite3,
python%type_pkg[python]-shlibs
<<
BuildDepends: <<
sqlite3-dev,
python%type_pkg[python]
<<
Source: 
http://initd.org/pub/software/pysqlite/releases/2.4/%v/pysqlite-%v.tar.gz
Source-MD5: 7d9a4875a7107b94eb4aa2dc861a2537
PatchScript: perl -pi -e 's,%% LOCALBASE,%% "%p",' setup.py
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
<<
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

<<
License: OSI-Approved
Homepage: http://pysqlite.sourceforge.net/
<<


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs

Reply via email to