Bug#243906: ITP: php-db -- PEAR DB modules for PHP

2004-04-15 Thread Chris Anderson
Package: wnpp
Version: N/A; reported 2004-04-15
Severity: wishlist

* Package name: php-db
  Version : 1.6.2
  Upstream Author : Stig Bakken, Thomas Cox, Chuck Hagenbuch, Daniel Convissor
* URL : http://pear.php.net/
* License : PHP
  Description : PEAR DB modules for PHP

DB is a database abstraction layer providing:
* an OO-style query API
* portability features that make programs written
   for one DBMS work with other DBMS's
* a DSN (data source name) format for specifying
   database servers
* prepare/execute (bind) emulation for databases
   that don't support it natively
* a result object for each query response
* portable error codes
* sequence emulation
* sequential and non-sequential row fetching as
   well as bulk fetching
* formats fetched rows as associative arrays,
   ordered arrays or objects
* row limit support
* transactions support
* table information interface
* DocBook and PHPDoc API documentation

DB layers itself on top of PHP's existing
database extensions. The currently supported
extensions are:
dbase, fbsql, interbase, informix,
msql, mssql, mysql, mysqli,
oci8, odbc, pgsql, sqlite and sybase.


-- System Information
Debian Release: 3.0
Architecture: i386
Kernel: Linux nullcode.org 2.6.4-linode1-1um #3 Sat Mar 20 18:20:58 EST 2004 
i686
Locale: LANG=C, LC_CTYPE=C




Bug#243906: ITP: php-db -- PEAR DB modules for PHP

2004-04-15 Thread Andreas Barth
* Chris Anderson ([EMAIL PROTECTED]) [040415 16:40]:
 * Package name: php-db
   Version : 1.6.2
   Upstream Author : Stig Bakken, Thomas Cox, Chuck Hagenbuch, Daniel Convissor
 * URL : http://pear.php.net/
 * License : PHP
   Description : PEAR DB modules for PHP

What's the difference to the existing php4-pear package (that is part
of php4 source package)?


Cheers,
Andi
-- 
   http://home.arcor.de/andreas-barth/
   PGP 1024/89FB5CE5  DC F1 85 6D A6 45 9C 0F  3B BE F1 D0 C5 D1 D9 0C



Bug#243906: ITP: php-db -- PEAR DB modules for PHP

2004-04-15 Thread Chris Anderson
On Thu, 2004-04-15 at 10:47, Andreas Barth wrote:
 * Chris Anderson ([EMAIL PROTECTED]) [040415 16:40]:
  * Package name: php-db
Version : 1.6.2
Upstream Author : Stig Bakken, Thomas Cox, Chuck Hagenbuch, Daniel 
  Convissor
  * URL : http://pear.php.net/
  * License : PHP
Description : PEAR DB modules for PHP
 
 What's the difference to the existing php4-pear package (that is part
 of php4 source package)?

Upstream removed many of the modules contained within the Pear package
and they were subsequently removed from the debian package (most notably
the DB and HTML modules). This package contains the DB module that used
to be contained in php4-pear.
 
 
 Cheers,
 Andi
-- 
Chris Anderson [EMAIL PROTECTED]


signature.asc
Description: This is a digitally signed message part


Bug#243906: ITP: php-db -- PEAR DB modules for PHP

2004-04-15 Thread sean finney
hi chris,

On Thu, Apr 15, 2004 at 10:02:40AM -0400, Chris Anderson wrote:
 * Package name: php-db
   Version : 1.6.2
   Upstream Author : Stig Bakken, Thomas Cox, Chuck Hagenbuch, Daniel Convissor
 * URL : http://pear.php.net/
 * License : PHP
   Description : PEAR DB modules for PHP

how is this different from the DB modules already included by the
php4-pear package?

sean


signature.asc
Description: Digital signature


Bug#243906: ITP: php-db -- PEAR DB modules for PHP

2004-04-15 Thread Chris Anderson
Actually I just noticed, this module stayed in upstream (I was thinking
of something else). I'll update the bug tonight and close it.

On Thu, 2004-04-15 at 11:40, sean finney wrote:
 hi chris,
 
 On Thu, Apr 15, 2004 at 10:02:40AM -0400, Chris Anderson wrote:
  * Package name: php-db
Version : 1.6.2
Upstream Author : Stig Bakken, Thomas Cox, Chuck Hagenbuch, Daniel 
  Convissor
  * URL : http://pear.php.net/
  * License : PHP
Description : PEAR DB modules for PHP
 
 how is this different from the DB modules already included by the
 php4-pear package?
 
   sean
-- 
Chris Anderson [EMAIL PROTECTED]
Nullcode.org


signature.asc
Description: This is a digitally signed message part


Bug#243906: ITP: php-db -- PEAR DB modules for PHP

2004-04-15 Thread Matthew Palmer
On Thu, Apr 15, 2004 at 10:02:40AM -0400, Chris Anderson wrote:
 * Package name: php-db

Any chance of changing that package name slightly?  Most PHP libraries have
taken the libphp-foo path, rather than just php-foo.  I think this is a
good naming convention to follow, personally.

 * URL : http://pear.php.net/

You can get a little more explicit than that:
http://pear.php.net/package/DB.

 * License : PHP
   Description : PEAR DB modules for PHP

Perhaps Database abstraction module for PHP?  Then put the stuff about it
being the PEAR standard as the beginning of the long description?

And I've got a SQLRelay abstractor for you, as well, which upstream rejected
because SQLRelay is an abstraction layer of it's own, if you want it.

Thanks for packaging this, BTW.  Now I can make dependencies on this package
instead of hacking 'pear install' commands (blech!)...

- Matt



Bug#243906: ITP: php-db -- PEAR DB modules for PHP

2004-04-15 Thread Chris Anderson
On Thu, 2004-04-15 at 18:44, Matthew Palmer wrote:
 On Thu, Apr 15, 2004 at 10:02:40AM -0400, Chris Anderson wrote:
  * Package name: php-db
 
 Any chance of changing that package name slightly?  Most PHP libraries have
 taken the libphp-foo path, rather than just php-foo.  I think this is a
 good naming convention to follow, personally.

Actually, the naming convention was decided after speaking with Steve
Langasek and Adam Conrad (among other people) in #debian-devel for some
time. It was decided php{3,4,5}-foo would be for compiled php
extensions and php-foo would be for PEAR modules that were not part of
the main upstream PEAR package. I have logs available if you wish to see
them :)

 
  * URL : http://pear.php.net/
 
 You can get a little more explicit than that:
 http://pear.php.net/package/DB.

Noted, I'll be more specific with any future PEAR ITPs.

 
  * License : PHP
Description : PEAR DB modules for PHP
 
 Perhaps Database abstraction module for PHP?  Then put the stuff about it
 being the PEAR standard as the beginning of the long description?
 
 And I've got a SQLRelay abstractor for you, as well, which upstream rejected
 because SQLRelay is an abstraction layer of it's own, if you want it.
 
 Thanks for packaging this, BTW.  Now I can make dependencies on this package
 instead of hacking 'pear install' commands (blech!)...
 
 - Matt
-- 
Chris Anderson [EMAIL PROTECTED]
Nullcode.org


signature.asc
Description: This is a digitally signed message part