On Monday 06 November 2006 07:34, sean finney wrote: > i haven't uploaded php5 yet, but i believe it's in good shape to do > so. as an added benefit of our new configuration system i've > collapsed the mysqli/mysqli extensions into the same package, and > added the PDO extensions (pdo.so goes in php5-common, the rest go > in their respective extension packages).
Hi Sean, it would be great, if you could also add tidy and pspell support (which closes #355976 and #39727). A patch against 5.1.6-5 is included. Thanks and with kind regards, Jan. -- -----BEGIN GEEK CODE BLOCK----- Version: 3.1 GIT d-- s+: a- C+++ UL++++ P+ L+++ E- W+++ N+++ o++ K++ w--- O M V- PS PE Y++ PGP++ t-- 5 X R tv- b+ DI- D++ G++ e++ h-- r+++ y+++ ------END GEEK CODE BLOCK------
--- php5-5.1.6.orig/debian/control 2006-11-06 09:41:24.000000000 +0100
+++ php5-5.1.6/debian/control 2006-11-06 09:47:04.261706034 +0100
@@ -3,7 +3,7 @@
Priority: optional
Maintainer: Debian PHP Maintainers <[EMAIL PROTECTED]>
Uploaders: Adam Conrad <[EMAIL PROTECTED]>, Steve Langasek <[EMAIL PROTECTED]>, Jeroen van Wolffelaar <[EMAIL PROTECTED]>, Ondإej Surأ� <[EMAIL PROTECTED]>, sean finney <[EMAIL PROTECTED]>
-Build-Depends: apache-dev (>= 1.3.23), apache2-prefork-dev (>= 2.0.53-3), autoconf, automake1.4, bison, chrpath, debhelper (>= 3), flex (>= 2.5.4), freetds-dev, libbz2-dev (>= 1.0.0), libcurl3-openssl-dev | libcurl3-dev, libdb4.4-dev, libexpat1-dev (>= 1.95.2-2.1), libfreetype6-dev, libgcrypt11-dev, libgd2-xpm-dev (>= 2.0.28-3), libjpeg62-dev, libkrb5-dev, libldap2-dev, libmhash-dev (>= 0.8.8), libmysqlclient15-dev | libmysqlclient12-dev, libncurses5-dev, libpam0g-dev, libpcre3-dev (>= 4.3-1), libpng12-dev, libpq-dev | postgresql-dev, librecode-dev, libsnmp9-dev | libsnmp-dev, libsqlite0-dev, libssl-dev (>= 0.9.6), libt1-dev, libtool (>= 1.4.2-4), libwrap0-dev, libxmltok1-dev, libxml2-dev (>= 2.4.14), libxslt1-dev (>= 1.0.18), re2c, unixodbc-dev, zlib1g-dev (>= 1.0.9)
+Build-Depends: apache-dev (>= 1.3.23), apache2-prefork-dev (>= 2.0.53-3), autoconf, automake1.4, bison, chrpath, debhelper (>= 3), flex (>= 2.5.4), freetds-dev, libbz2-dev (>= 1.0.0), libcurl3-openssl-dev | libcurl3-dev, libdb4.4-dev, libexpat1-dev (>= 1.95.2-2.1), libfreetype6-dev, libgcrypt11-dev, libgd2-xpm-dev (>= 2.0.28-3), libjpeg62-dev, libkrb5-dev, libldap2-dev, libmhash-dev (>= 0.8.8), libmysqlclient15-dev | libmysqlclient12-dev, libncurses5-dev, libpam0g-dev, libpcre3-dev (>= 4.3-1), libpng12-dev, libpq-dev | postgresql-dev, libpspell-dev, librecode-dev, libsnmp9-dev | libsnmp-dev, libsqlite0-dev, libssl-dev (>= 0.9.6), libt1-dev, libtidy-dev, libtool (>= 1.4.2-4), libwrap0-dev, libxmltok1-dev, libxml2-dev (>= 2.4.14), libxslt1-dev (>= 1.0.18), re2c, unixodbc-dev, zlib1g-dev (>= 1.0.9)
Build-Conflicts: bind-dev
Standards-Version: 3.7.2
@@ -268,6 +268,17 @@
in. The goal of the language is to allow web developers to write
dynamically generated pages quickly.
+Package: php5-pspell
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${php:Depends}, php5-common (= ${Source-Version})
+Description: pspell module for php5
+ This package provides a module for pspell functions in PHP scripts.
+ .
+ PHP5 is an HTML-embedded scripting language. Much of its syntax is borrowed
+ from C, Java and Perl with a couple of unique PHP-specific features thrown
+ in. The goal of the language is to allow web developers to write
+ dynamically generated pages quickly.
+
Package: php5-sqlite
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}, ${php:Depends}, php5-common (= ${Source-Version})
@@ -293,6 +304,18 @@
in. The goal of the language is to allow web developers to write
dynamically generated pages quickly.
+Package: php5-tidy
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${php:Depends}, php5-common (= ${Source-Version})
+Description: Tidy module for php5
+ This package provides a module for handling and validating (X)HTML
+ documents directly from PHP scripts.
+ .
+ PHP5 is an HTML-embedded scripting language. Much of its syntax is borrowed
+ from C, Java and Perl with a couple of unique PHP-specific features thrown
+ in. The goal of the language is to allow web developers to write
+ dynamically generated pages quickly.
+
Package: php5-xmlrpc
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}, ${php:Depends}, php5-common (= ${Source-Version})
--- php5-5.1.6.orig/debian/modulelist 2006-11-06 09:41:24.000000000 +0100
+++ php5-5.1.6/debian/modulelist 2006-11-06 09:41:38.000000000 +0100
@@ -5,10 +5,17 @@
mysql MySQL
mysqli MySQLi
odbc ODBC
+pdo PDO pdo
+pdo PDO pdo_mysql
+pdo PDO pdo_odbc
+pdo PDO pdo_pgsql
+pdo PDO pdo_sqlite
pgsql PostgreSQL
+pspell pspell
recode recode
snmp SNMP
sqlite SQLite
sybase Sybase sybase_ct
+tidy Tidy
xmlrpc XML-RPC
xsl XSL
--- php5-5.1.6.orig/debian/rules 2006-11-06 09:41:24.000000000 +0100
+++ php5-5.1.6/debian/rules 2006-11-06 09:56:09.964200440 +0100
@@ -215,6 +215,8 @@
--with-mhash=shared,/usr \
--with-mysql=shared,/usr \
--with-mysqli=shared,/usr/bin/mysql_config \
+ --with-pspell=shared,/usr \
+ --with-tidy=shared,/usr \
--with-unixODBC=shared,/usr \
--with-recode=shared,/usr \
--with-xsl=shared,/usr \
pgp17Gwa33zU3.pgp
Description: PGP signature

