more visa to sibira ;)

This commit is contained in:
Hartmut Holzgraefe 2004-03-24 18:43:23 +00:00
parent 8b2a760004
commit cc0894b788
7 changed files with 415 additions and 0 deletions

89
ext/dbx/package.xml Normal file
View File

@ -0,0 +1,89 @@
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE package SYSTEM "../pear/package.dtd">
<package>
<name>dbx</name>
<summary>Database abstraction functions</summary>
<maintainers>
<maintainer>
<user>mboeren</user>
<name>Marc Boeren</name>
<email>marc@guidance.nl</email>
<role>lead</role>
</maintainer>
<maintainer>
<user>hirokawa</user>
<name>Rui Hirokawa</name>
<email>hirokawa@php.net</email>
<role>lead</role>
</maintainer>
<maintainer>
<user>???</user>
<name>Frank M. Kromann</name>
<email>frank@kromann.info</email>
<role>lead</role>
</maintainer>
</maintainers>
<description>
The dbx module is a database abstraction layer (db 'X', where 'X'
is a supported database). The dbx functions allow you to access all
supported databases using a single calling convention. The
dbx-functions themselves do not interface directly to the databases,
but interface to the modules that are used to support these databases.
</description>
<license>PHP</license>
<release>
<state>beta</state>
<version>5.0.0rc1</version>
<date>2004-03-19</date>
<notes>
package.xml added to support intallation using pear installer
</notes>
<filelist>
<file role="doc" name="CREDITS"/>
<file role="doc" name="INSTALL"/>
<file role="doc" name="howto_extend_dbx.html"/>
<file role="src" name="config.m4"/>
<file role="src" name="config.w32"/>
<file role="src" name="dbx.dsp"/>
<file role="src" name="dbx.c"/>
<file role="src" name="dbx.h"/>
<file role="src" name="dbx_fbsql.c"/>
<file role="src" name="dbx_fbsql.h"/>
<file role="src" name="dbx_mssql.c"/>
<file role="src" name="dbx_mssql.h"/>
<file role="src" name="dbx_mysql.c"/>
<file role="src" name="dbx_mysql.h"/>
<file role="src" name="dbx_oci8.c"/>
<file role="src" name="dbx_oci8.h"/>
<file role="src" name="dbx_odbc.c"/>
<file role="src" name="dbx_odbc.h"/>
<file role="src" name="dbx_pgsql.c"/>
<file role="src" name="dbx_pgsql.h"/>
<file role="src" name="dbx_sybasect.c"/>
<file role="src" name="dbx_sybasect.h"/>
<file role="src" name="php_dbx.h"/>
<file role="src" name="dbx_sqlite.c"/>
<file role="src" name="dbx_sqlite.h"/>
<file role="test" name="tests/001.phpt"/>
<file role="test" name="tests/002.phpt"/>
<file role="test" name="tests/003.phpt"/>
<file role="test" name="tests/004.phpt"/>
<file role="test" name="tests/005.phpt"/>
<file role="test" name="tests/006.phpt"/>
<file role="test" name="tests/007.phpt"/>
<file role="test" name="tests/008.phpt"/>
<file role="test" name="tests/009.phpt"/>
<file role="test" name="tests/dbx_test.p"/>
<file role="test" name="tests/dbx_test.pgsql.script"/>
<file role="test" name="tests/dbx_test.script"/>
<file role="test" name="tests/skipif.inc"/>
<file role="test" name="tests/010.phpt"/>
</filelist>
<deps>
<dep type="php" rel="ge" version="5" />
</deps>
</release>
</package>
<!--
vim:et:ts=1:sw=1
-->

40
ext/filepro/package.xml Normal file
View File

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE package SYSTEM "../pear/package.dtd">
<package>
<name>filepro</name>
<summary>filePor database access functions/summary>
<maintainers>
<maintainer>
<user>???</user>
<name> Chad Robinson</name>
<email>chadr@brttech.com</email>
<role>lead</role>
</maintainer>
</maintainers>
<description>
These functions allow read-only access to data stored in filePro databases.
</description>
<license>PHP</license>
<release>
<state>beta</state>
<version>5.0.0rc1</version>
<date>2004-03-19</date>
<notes>
package.xml added to support intallation using pear installer
</notes>
<filelist>
<file role="doc" name="CREDITS"/>
<file role="src" name="config.m4"/>
<file role="src" name="config.w32"/>
<file role="src" name="filepro.dsp"/>
<file role="src" name="filepro.c"/>
<file role="src" name="php_filepro.h"/>
</filelist>
<deps>
<dep type="php" rel="ge" version="5" />
</deps>
</release>
</package>
<!--
vim:et:ts=1:sw=1
-->

82
ext/session/package.xml Normal file
View File

@ -0,0 +1,82 @@
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE package SYSTEM "../pear/package.dtd">
<package>
<name>session</name>
<summary>Session handling functions</summary>
<maintainers>
<maintainer>
<user>sascha</user>
<name>Sascha Schumann</name>
<email>sas@php.net</email>
<role>lead</role>
</maintainer>
<maintainer>
<user>andrei</user>
<name>Andrei Zmievski</name>
<email>andrei@php.net</email>
<role>lead</role>
</maintainer>
</maintainers>
<description>
Session support in PHP consists of a way to preserve certain data
across subsequent accesses. This enables you to build more customized
applications and increase the appeal of your web site.
</description>
<license>PHP</license>
<release>
<state>beta</state>
<version>5.0.0rc1</version>
<date>2004-03-19</date>
<notes>
package.xml added to support intallation using pear installer
</notes>
<filelist>
<file role="doc" name="CREDITS"/>
<file role="src" name="config.m4"/>
<file role="src" name="config.w32"/>
<file role="src" name="mod_files.c"/>
<file role="src" name="mod_files.h"/>
<file role="src" name="mod_files.sh"/>
<file role="src" name="mod_mm.c"/>
<file role="src" name="mod_mm.h"/>
<file role="src" name="mod_user.c"/>
<file role="src" name="mod_user.h"/>
<file role="src" name="php_session.h"/>
<file role="src" name="session.c"/>
<file role="test" name="tests/001.phpt"/>
<file role="test" name="tests/002.phpt"/>
<file role="test" name="tests/bug25745.phpt"/>
<file role="test" name="tests/001.phpt"/>
<file role="test" name="tests/002.phpt"/>
<file role="test" name="tests/003.phpt"/>
<file role="test" name="tests/004.phpt"/>
<file role="test" name="tests/005.phpt"/>
<file role="test" name="tests/006.phpt"/>
<file role="test" name="tests/007.phpt"/>
<file role="test" name="tests/008-php4.2.3.phpt"/>
<file role="test" name="tests/008.phpt"/>
<file role="test" name="tests/009.phpt"/>
<file role="test" name="tests/010.phpt"/>
<file role="test" name="tests/011.phpt"/>
<file role="test" name="tests/012.phpt"/>
<file role="test" name="tests/013.phpt"/>
<file role="test" name="tests/014.phpt"/>
<file role="test" name="tests/015.phpt"/>
<file role="test" name="tests/016.phpt"/>
<file role="test" name="tests/017.phpt"/>
<file role="test" name="tests/018.phpt"/>
<file role="test" name="tests/019.phpt"/>
<file role="test" name="tests/020.phpt"/>
<file role="test" name="tests/021.phpt"/>
<file role="test" name="tests/skipif.inc"/>
<file role="test" name="tests/bug26862.phpt"/>
<file role="test" name="tests/bug24592.phpt"/>
</filelist>
<deps>
<dep type="php" rel="ge" version="5" />
</deps>
</release>
</package>
<!--
vim:et:ts=1:sw=1
-->

67
ext/sockets/package.xml Normal file
View File

@ -0,0 +1,67 @@
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE package SYSTEM "../pear/package.dtd">
<package>
<name>sockets</name>
<summary>Socket functions</summary>
<maintainers>
<maintainer>
<user>???</user>
<name>Chris Vandomelen</name>
<email>chrisv@b0rked.dhs.org</email>
<role>lead</role>
</maintainer>
<maintainer>
<user>sterling</user>
<name>Sterling Hughes</name>
<email>sterling@php.net</email>
<role>lead</role>
</maintainer>
<maintainer>
<user>jason</user>
<name>Jason Greene</name>
<email>jason@php.net</email>
<role>lead</role>
</maintainer>
<maintainer>
<user>???</user>
<name>Daniel Beulshausen</name>
<email>daniel@php4win.de</email>
<role>lead</role>
</maintainer>
</maintainers>
<description>
The socket extension implements a low-level interface to the socket
communication functions based on the popular BSD sockets, providing
the possibility to act as a socket server as well as a client.
</description>
<license>PHP</license>
<release>
<state>beta</state>
<version>5.0.0rc1</version>
<date>2004-03-19</date>
<notes>
package.xml added to support intallation using pear installer
</notes>
<filelist>
<file role="doc" name="CREDITS"/>
<file role="doc" name="sockets.php"/>
<file role="src" name="config.m4"/>
<file role="src" name="config.w32"/>
<file role="src" name="php_sockets.h"/>
<file role="src" name="php_sockets_win.c"/>
<file role="src" name="php_sockets_win.h"/>
<file role="src" name="sockets.c"/>
<file role="src" name="sockets.dsp"/>
<file role="src" name="unix_socket_constants.h"/>
<file role="src" name="win32_socket_constants.h"/>
<file role="test" name="tests/ipv4loop.phpt"/>
<file role="test" name="tests/ipv6loop.phpt"/>
</filelist>
<deps>
<dep type="php" rel="ge" version="5" />
</deps>
</release>
</package>
<!--
vim:et:ts=1:sw=1
-->

46
ext/tokenizer/package.xml Normal file
View File

@ -0,0 +1,46 @@
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE package SYSTEM "../pear/package.dtd">
<package>
<name>tokenizer</name>
<summary>PHP Source code tokenizer</summary>
<maintainers>
<maintainer>
<user>andrei</user>
<name>Andrei Zmievski</name>
<email>andrei@php.net</email>
<role>lead</role>
</maintainer>
</maintainers>
<description>
The tokenizer functions provide an interface to the PHP tokenizer
embedded in the Zend Engine. Using these functions you may write
your own PHP source analyzing or modification tools without having
to deal with the language specification at the lexical level.
</description>
<license>PHP</license>
<release>
<state>beta</state>
<version>5.0.0rc1</version>
<date>2004-03-19</date>
<notes>
package.xml added to support intallation using pear installer
</notes>
<filelist>
<file role="doc" name="CREDITS"/>
<file role="src" name="config.m4"/>
<file role="src" name="Makefile.frag"/>
<file role="src" name="config.w32"/>
<file role="src" name="tokenizer.dsp"/>
<file role="src" name="tokenizer.c"/>
<file role="src" name="php_tokenizer.h"/>
<file role="doc" name="tokenizer.php"/>
<file role="test" name="tests/bug26463.phpt"/>
</filelist>
<deps>
<dep type="php" rel="ge" version="5" />
</deps>
</release>
</package>
<!--
vim:et:ts=1:sw=1
-->

43
ext/wddx/package.xml Normal file
View File

@ -0,0 +1,43 @@
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE package SYSTEM "../pear/package.dtd">
<package>
<name>wddx</name>
<summary>WDDX serialization functions</summary>
<maintainers>
<maintainer>
<user>andrei</user>
<name>Andrei Zmievski</name>
<email>andrei@php.net</email>
<role>lead</role>
</maintainer>
</maintainers>
<description>
These functions are intended for work with WDDX (http://www.openwddx.org/)
</description>
<license>PHP</license>
<release>
<state>beta</state>
<version>5.0.0rc1</version>
<date>2004-03-19</date>
<notes>
package.xml added to support intallation using pear installer
</notes>
<filelist>
<file role="doc" name="CREDITS"/>
<file role="src" name="config.m4"/>
<file role="src" name="config.w32"/>
<file role="src" name="wddx.c"/>
<file role="src" name="php_wddx.h"/>
<file role="src" name="php_wddx_api.h"/>
<file role="test" name="tests/001.phpt"/>
<file role="test" name="tests/wddx.xml"/>
<file role="test" name="tests/bug27287.phpt"/>
</filelist>
<deps>
<dep type="php" rel="ge" version="5" />
</deps>
</release>
</package>
<!--
vim:et:ts=1:sw=1
-->

48
ext/yaz/package.xml Normal file
View File

@ -0,0 +1,48 @@
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE package SYSTEM "../pear/package.dtd">
<package>
<name>yaz</name>
<summary>a Z39.50 client for PHP</summary>
<maintainers>
<maintainer>
<user>dickmeiss</user>
<name>Adam Dickmeiss</name>
<email>adam@indexdata.dk</email>
<role>lead</role>
</maintainer>
</maintainers>
<description>
This extension implements a Z39.50 client for PHP using the YAZ toolkit.
Find more information at:
http://www.indexdata.dk/phpyaz/
http://www.indexdata.dk/yaz/
</description>
<license>PHP</license>
<release>
<state>beta</state>
<version>5.0rc1</version>
<date>2004-03-19</date>
<notes>
package.xml added to support intallation using pear installer
</notes>
<configureoptions>
<configureoption name="with-pdf" default="autodetect" prompt="path to pdflib installation?"/>
</configureoptions>
<filelist>
<file role="doc" name="CREDITS"/>
<file role="doc" name="README"/>
<file role="src" name="config.m4"/>
<file role="src" name="config.mw32"/>
<file role="src" name="yaz.dsp"/>
<file role="src" name="php_yaz.c"/>
<file role="src" name="php_yaz.h"/>
</filelist>
<deps>
<dep type="php" rel="ge" version="5" />
</deps>
</release>
</package>
<!--
vim:et:ts=1:sw=1
-->