Debian Bug report logs -
#709314
Zend opcache module is included in libapache2-mod-php5 only
Reported by: Yaacov Akiba Slama <yaslama@gmail.com>
Date: Wed, 22 May 2013 14:15:01 UTC
Severity: normal
Found in version php5/5.5.0~rc1+dfsg-1
Fixed in version 5.5.0~rc1+dfsg-2
Done: Lior Kaplan <kaplan@debian.org>
Bug is archived. No further changes may be made.
Toggle useless messages
Report forwarded
to debian-bugs-dist@lists.debian.org, yaslama@gmail.com, Debian PHP Maintainers <pkg-php-maint@lists.alioth.debian.org>:
Bug#709314; Package php5.
(Wed, 22 May 2013 14:15:05 GMT) (full text, mbox, link).
Acknowledgement sent
to Yaacov Akiba Slama <yaslama@gmail.com>:
New Bug report received and forwarded. Copy sent to yaslama@gmail.com, Debian PHP Maintainers <pkg-php-maint@lists.alioth.debian.org>.
(Wed, 22 May 2013 14:15:06 GMT) (full text, mbox, link).
Message #5 received at submit@bugs.debian.org (full text, mbox, reply):
Package: php5
Version: 5.5.0~rc1+dfsg-1
Severity: normal
Here is a patch to create a separate package for opcache so it can be used by other sapi even if libapache2-mod-php5 is not installed.
Thanks a lot.
diff --git a/debian/control b/debian/control
index ecb13a7..11ced12 100644
--- a/debian/control
+++ b/debian/control
@@ -241,7 +241,7 @@ Description: Files for PHP5 module development
for web development and can be embedded into HTML.
Package: php5-dbg
-Depends: ${misc:Depends}, php5-common (= ${binary:Version}), libapache2-mod-php5 (= ${binary:Version}) | libapache2-mod-php5filter (= ${binary:Version}) | php5-cgi (= ${binary:Version}) | php5-cli (= ${binary:Version}) | php5-fpm (= ${binary:Version}) | php5-curl (= ${binary:Version}) | php5-enchant (= ${binary:Version}) | php5-gd (= ${binary:Version}) | php5-gmp (= ${binary:Version}) | php5-imap (= ${binary:Version}) | php5-interbase (= ${binary:Version}) | php5-intl (= ${binary:Version}) | php5-ldap (= ${binary:Version}) | php5-mcrypt (= ${binary:Version}) | php5-mysql (= ${binary:Version}) | php5-odbc (= ${binary:Version}) | php5-pgsql (= ${binary:Version}) | php5-pspell (= ${binary:Version}) | php5-readline (= ${binary:Version}) | php5-recode (= ${binary:Version}) | php5-snmp (= ${binary:Version}) | php5-sqlite (= ${binary:Version}) | php5-sybase (= ${binary:Version}) | php5-tidy (= ${binary:Version}) | php5-xmlrpc (= ${binary:Version}) | php5-xsl (= ${binary:Version})
+Depends: ${misc:Depends}, php5-common (= ${binary:Version}), libapache2-mod-php5 (= ${binary:Version}) | libapache2-mod-php5filter (= ${binary:Version}) | php5-cgi (= ${binary:Version}) | php5-cli (= ${binary:Version}) | php5-fpm (= ${binary:Version}) | php5-curl (= ${binary:Version}) | php5-enchant (= ${binary:Version}) | php5-gd (= ${binary:Version}) | php5-gmp (= ${binary:Version}) | php5-imap (= ${binary:Version}) | php5-interbase (= ${binary:Version}) | php5-intl (= ${binary:Version}) | php5-ldap (= ${binary:Version}) | php5-mcrypt (= ${binary:Version}) | php5-mysql (= ${binary:Version}) | php5-odbc (= ${binary:Version}) | php5-opcache (= ${binary:Version}) | php5-pgsql (= ${binary:Version}) | php5-pspell (= ${binary:Version}) | php5-readline (= ${binary:Version}) | php5-recode (= ${binary:Version}) | php5-snmp (= ${binary:Version}) | php5-sqlite (= ${binary:Version}) | php5-sybase (= ${binary:Version}) | php5-tidy (= ${binary:Version}) | php5-xmlrpc (= ${binary:Version}) | php5-xsl (= ${binary:Version})
Recommends: gdb
Section: debug
Priority: extra
@@ -440,6 +440,22 @@ Description: ODBC module for php5
open source general-purpose scripting language that is especially suited
for web development and can be embedded into HTML.
+Package: php5-opcache
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${php:Depends}, php5-common (= ${binary:Version}), ucf
+Pre-Depends: dpkg (>= 1.15.7.2~)
+Description: PHP opcode caching and optimization extension
+ This package provides faster PHP execution through opcode
+ caching and optimization. It improves PHP performance by storing
+ precompiled script bytecode in the shared memory. This eliminates the
+ stages of reading code from the disk and compiling it on future
+ access. In addition, it applies a few bytecode optimization patterns
+ that make code execution faster.
+ .
+ PHP (recursive acronym for PHP: Hypertext Preprocessor) is a widely-used
+ open source general-purpose scripting language that is especially suited
+ for web development and can be embedded into HTML.
+
Package: php5-pgsql
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}, ${php:Depends}, php5-common (= ${binary:Version}), ucf
diff --git a/debian/modulelist b/debian/modulelist
index 72f706e..6f17462 100644
--- a/debian/modulelist
+++ b/debian/modulelist
@@ -21,3 +21,4 @@ sybase Sybase mssql
tidy tidy
xmlrpc XML-RPC
xsl XSL
+opcache OPcache
diff --git a/debian/php5-module.ini b/debian/php5-module.ini
index 7427e63..085c296 100644
--- a/debian/php5-module.ini
+++ b/debian/php5-module.ini
@@ -1,3 +1,3 @@
; configuration for php @extname@ module
; priority=@priority@
-extension=@dsoname@.so
+@extension@=@dsoname@.so
diff --git a/debian/rules b/debian/rules
index 8479e43..d93e149 100755
--- a/debian/rules
+++ b/debian/rules
@@ -667,10 +667,13 @@ binary-arch: build install
cat debian/modulelist debian/extramodulelist | while read package extname dsoname priority; do \
if [ -z "$${dsoname}" ]; then dsoname=$$package; fi; \
if [ -z "$${priority}" ]; then priority=20; fi; \
+ extension_type=extension; \
+ if [ "$$package" = "opcache" ]; then extension_type=zend_extension ; fi; \
mkdir -p debian/php5-$$package/usr/share/php5/$$package; \
sed -e"s|@extname@|$${extname}|g; \
s/@dsoname@/$${dsoname}/g; \
- s/@priority@/$${priority}/g" \
+ s/@priority@/$${priority}/g; \
+ s/@extension@/$${extension_type}/g" \
< debian/php5-module.ini \
> debian/php5-$$package/usr/share/php5/$$package/$${dsoname}.ini; \
echo -n "$$dsoname " >> debian/php5-$$package.modules; \
-- System Information:
Debian Release: jessie/sid
APT prefers oldstable-updates
APT policy: (500, 'oldstable-updates'), (500, 'oldstable'), (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Kernel: Linux 3.2.0-3-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Information forwarded
to debian-bugs-dist@lists.debian.org, Debian PHP Maintainers <pkg-php-maint@lists.alioth.debian.org>:
Bug#709314; Package php5.
(Wed, 22 May 2013 14:27:11 GMT) (full text, mbox, link).
Acknowledgement sent
to Ondřej Surý <ondrej@sury.org>:
Extra info received and forwarded to list. Copy sent to Debian PHP Maintainers <pkg-php-maint@lists.alioth.debian.org>.
(Wed, 22 May 2013 14:27:11 GMT) (full text, mbox, link).
Message #10 received at 709314@bugs.debian.org (full text, mbox, reply):
Hi,
I will include it into php5-common instead of separate package.
But thanks for the notice.
Ondřej Surý
On 22. 5. 2013, at 16:11, Yaacov Akiba Slama <yaslama@gmail.com> wrote:
> Package: php5
> Version: 5.5.0~rc1+dfsg-1
> Severity: normal
>
> Here is a patch to create a separate package for opcache so it can be used by other sapi even if libapache2-mod-php5 is not installed.
>
> Thanks a lot.
>
> diff --git a/debian/control b/debian/control
> index ecb13a7..11ced12 100644
> --- a/debian/control
> +++ b/debian/control
> @@ -241,7 +241,7 @@ Description: Files for PHP5 module development
> for web development and can be embedded into HTML.
>
> Package: php5-dbg
> -Depends: ${misc:Depends}, php5-common (= ${binary:Version}), libapache2-mod-php5 (= ${binary:Version}) | libapache2-mod-php5filter (= ${binary:Version}) | php5-cgi (= ${binary:Version}) | php5-cli (= ${binary:Version}) | php5-fpm (= ${binary:Version}) | php5-curl (= ${binary:Version}) | php5-enchant (= ${binary:Version}) | php5-gd (= ${binary:Version}) | php5-gmp (= ${binary:Version}) | php5-imap (= ${binary:Version}) | php5-interbase (= ${binary:Version}) | php5-intl (= ${binary:Version}) | php5-ldap (= ${binary:Version}) | php5-mcrypt (= ${binary:Version}) | php5-mysql (= ${binary:Version}) | php5-odbc (= ${binary:Version}) | php5-pgsql (= ${binary:Version}) | php5-pspell (= ${binary:Version}) | php5-readline (= ${binary:Version}) | php5-recode (= ${binary:Version}) | php5-snmp (= ${binary:Version}) | php5-sqlite (= ${binary:Version}) | php5-sybase (= ${binary:Version}) | php5-tidy (= ${binary:Version}) | php5-xmlrpc (= ${binary:Version}) | php5-xsl (= ${binary:Version})
> +Depends: ${misc:Depends}, php5-common (= ${binary:Version}), libapache2-mod-php5 (= ${binary:Version}) | libapache2-mod-php5filter (= ${binary:Version}) | php5-cgi (= ${binary:Version}) | php5-cli (= ${binary:Version}) | php5-fpm (= ${binary:Version}) | php5-curl (= ${binary:Version}) | php5-enchant (= ${binary:Version}) | php5-gd (= ${binary:Version}) | php5-gmp (= ${binary:Version}) | php5-imap (= ${binary:Version}) | php5-interbase (= ${binary:Version}) | php5-intl (= ${binary:Version}) | php5-ldap (= ${binary:Version}) | php5-mcrypt (= ${binary:Version}) | php5-mysql (= ${binary:Version}) | php5-odbc (= ${binary:Version}) | php5-opcache (= ${binary:Version}) | php5-pgsql (= ${binary:Version}) | php5-pspell (= ${binary:Version}) | php5-readline (= ${binary:Version}) | php5-recode (= ${binary:Version}) | php5-snmp (= ${binary:Version}) | php5-sqlite (= ${binary:Version}) | php5-sybase (= ${binary:Version}) | php5-tidy (= ${binary:Version}) | php5-xmlrpc (= ${binary:Version}) | php5-xsl (= ${binary:Version})
> Recommends: gdb
> Section: debug
> Priority: extra
> @@ -440,6 +440,22 @@ Description: ODBC module for php5
> open source general-purpose scripting language that is especially suited
> for web development and can be embedded into HTML.
>
> +Package: php5-opcache
> +Architecture: any
> +Depends: ${shlibs:Depends}, ${misc:Depends}, ${php:Depends}, php5-common (= ${binary:Version}), ucf
> +Pre-Depends: dpkg (>= 1.15.7.2~)
> +Description: PHP opcode caching and optimization extension
> + This package provides faster PHP execution through opcode
> + caching and optimization. It improves PHP performance by storing
> + precompiled script bytecode in the shared memory. This eliminates the
> + stages of reading code from the disk and compiling it on future
> + access. In addition, it applies a few bytecode optimization patterns
> + that make code execution faster.
> + .
> + PHP (recursive acronym for PHP: Hypertext Preprocessor) is a widely-used
> + open source general-purpose scripting language that is especially suited
> + for web development and can be embedded into HTML.
> +
> Package: php5-pgsql
> Architecture: any
> Depends: ${shlibs:Depends}, ${misc:Depends}, ${php:Depends}, php5-common (= ${binary:Version}), ucf
> diff --git a/debian/modulelist b/debian/modulelist
> index 72f706e..6f17462 100644
> --- a/debian/modulelist
> +++ b/debian/modulelist
> @@ -21,3 +21,4 @@ sybase Sybase mssql
> tidy tidy
> xmlrpc XML-RPC
> xsl XSL
> +opcache OPcache
> diff --git a/debian/php5-module.ini b/debian/php5-module.ini
> index 7427e63..085c296 100644
> --- a/debian/php5-module.ini
> +++ b/debian/php5-module.ini
> @@ -1,3 +1,3 @@
> ; configuration for php @extname@ module
> ; priority=@priority@
> -extension=@dsoname@.so
> +@extension@=@dsoname@.so
> diff --git a/debian/rules b/debian/rules
> index 8479e43..d93e149 100755
> --- a/debian/rules
> +++ b/debian/rules
> @@ -667,10 +667,13 @@ binary-arch: build install
> cat debian/modulelist debian/extramodulelist | while read package extname dsoname priority; do \
> if [ -z "$${dsoname}" ]; then dsoname=$$package; fi; \
> if [ -z "$${priority}" ]; then priority=20; fi; \
> + extension_type=extension; \
> + if [ "$$package" = "opcache" ]; then extension_type=zend_extension ; fi; \
> mkdir -p debian/php5-$$package/usr/share/php5/$$package; \
> sed -e"s|@extname@|$${extname}|g; \
> s/@dsoname@/$${dsoname}/g; \
> - s/@priority@/$${priority}/g" \
> + s/@priority@/$${priority}/g; \
> + s/@extension@/$${extension_type}/g" \
> < debian/php5-module.ini \
> > debian/php5-$$package/usr/share/php5/$$package/$${dsoname}.ini; \
> echo -n "$$dsoname " >> debian/php5-$$package.modules; \
>
>
> -- System Information:
> Debian Release: jessie/sid
> APT prefers oldstable-updates
> APT policy: (500, 'oldstable-updates'), (500, 'oldstable'), (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 'experimental')
> Architecture: amd64 (x86_64)
>
> Kernel: Linux 3.2.0-3-amd64 (SMP w/4 CPU cores)
> Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
> Shell: /bin/sh linked to /bin/dash
>
> _______________________________________________
> pkg-php-maint mailing list
> pkg-php-maint@lists.alioth.debian.org
> http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-php-maint
Reply sent
to Lior Kaplan <kaplan@debian.org>:
You have taken responsibility.
(Tue, 14 Jan 2014 00:39:05 GMT) (full text, mbox, link).
Notification sent
to Yaacov Akiba Slama <yaslama@gmail.com>:
Bug acknowledged by developer.
(Tue, 14 Jan 2014 00:39:05 GMT) (full text, mbox, link).
Message #15 received at 709314-done@bugs.debian.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Version: 5.5.0~rc1+dfsg-2
This issue was fixed 8 months ago, but does appear as closed. Closing.
Kaplan
[Message part 2 (text/html, inline)]
Bug archived.
Request was from Debbugs Internal Request <owner@bugs.debian.org>
to internal_control@bugs.debian.org.
(Tue, 11 Feb 2014 07:26:10 GMT) (full text, mbox, link).
Send a report that this bug log contains spam.
Debian bug tracking system administrator <owner@bugs.debian.org>.
Last modified:
Sun Jul 2 02:46:36 2023;
Machine Name:
buxtehude
Debian Bug tracking system
Debbugs is free software and licensed under the terms of the GNU
Public License version 2. The current version can be obtained
from https://bugs.debian.org/debbugs-source/.
Copyright © 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson,
2005-2017 Don Armstrong, and many other contributors.