All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH v3] php: fix zip package config
@ 2020-05-02 13:38 Konrad Weihmann
  2020-05-02 14:02 ` ✗ patchtest: failure for php: fix zip package config (rev2) Patchwork
  2020-05-04 15:47 ` [OE-core] [meta-oe][PATCH v3] php: fix zip package config Randy MacLeod
  0 siblings, 2 replies; 3+ messages in thread
From: Konrad Weihmann @ 2020-05-02 13:38 UTC (permalink / raw)
  To: openembedded-core; +Cc: Konrad Weihmann

--enable-zip and --with-libzip were removed in PHP 7.x.
These are replaced by --with-zip --with-zlib-dir.

Signed-off-by: Konrad Weihmann <kweihmann@outlook.com>
---
 meta-oe/recipes-devtools/php/php_7.4.4.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-devtools/php/php_7.4.4.bb b/meta-oe/recipes-devtools/php/php_7.4.4.bb
index ff4c28e13..c1784a78d 100644
--- a/meta-oe/recipes-devtools/php/php_7.4.4.bb
+++ b/meta-oe/recipes-devtools/php/php_7.4.4.bb
@@ -81,7 +81,7 @@ PACKAGECONFIG ??= "mysql sqlite3 imap opcache openssl \
 "
 PACKAGECONFIG_class-native = ""
 
-PACKAGECONFIG[zip] = "--enable-zip --with-libzip=${STAGING_EXECPREFIXDIR},,libzip"
+PACKAGECONFIG[zip] = "--with-zip --with-zlib-dir=${STAGING_EXECPREFIXDIR},,libzip"
 
 PACKAGECONFIG[mysql] = "--with-mysqli=mysqlnd \
                         --with-pdo-mysql=mysqlnd \
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* ✗ patchtest: failure for php: fix zip package config (rev2)
  2020-05-02 13:38 [meta-oe][PATCH v3] php: fix zip package config Konrad Weihmann
@ 2020-05-02 14:02 ` Patchwork
  2020-05-04 15:47 ` [OE-core] [meta-oe][PATCH v3] php: fix zip package config Randy MacLeod
  1 sibling, 0 replies; 3+ messages in thread
From: Patchwork @ 2020-05-02 14:02 UTC (permalink / raw)
  To: Konrad Weihmann; +Cc: openembedded-core

== Series Details ==

Series: php: fix zip package config (rev2)
Revision: 2
URL   : https://patchwork.openembedded.org/series/23910/
State : failure

== Summary ==


Thank you for submitting this patch series to OpenEmbedded Core. This is
an automated response. Several tests have been executed on the proposed
series by patchtest resulting in the following failures:



* Patch            [meta-oe,v3] php: fix zip package config
 Issue             Series sent to the wrong mailing list [test_target_mailing_list] 
  Suggested fix    Check the project's README (meta-oe,v3) and send the patch to the indicated list

* Issue             Series does not apply on top of target branch [test_series_merge_on_head] 
  Suggested fix    Rebase your series on top of targeted branch
  Targeted branch  master (currently at e44ca998c2)



If you believe any of these test results are incorrect, please reply to the
mailing list (openembedded-core@lists.openembedded.org) raising your concerns.
Otherwise we would appreciate you correcting the issues and submitting a new
version of the patchset if applicable. Please ensure you add/increment the
version number when sending the new version (i.e. [PATCH] -> [PATCH v2] ->
[PATCH v3] -> ...).

---
Guidelines:     https://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines
Test framework: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest
Test suite:     http://git.yoctoproject.org/cgit/cgit.cgi/patchtest-oe


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [OE-core] [meta-oe][PATCH v3] php: fix zip package config
  2020-05-02 13:38 [meta-oe][PATCH v3] php: fix zip package config Konrad Weihmann
  2020-05-02 14:02 ` ✗ patchtest: failure for php: fix zip package config (rev2) Patchwork
@ 2020-05-04 15:47 ` Randy MacLeod
  1 sibling, 0 replies; 3+ messages in thread
From: Randy MacLeod @ 2020-05-04 15:47 UTC (permalink / raw)
  To: openembedded-core; +Cc: Konrad Weihmann


Hi Konrad,

Please send this patch to:
    openembedded-devel@lists.openembedded.org

Thanks,
../Randy

On 2020-05-02 9:38 a.m., Konrad Weihmann wrote:
> --enable-zip and --with-libzip were removed in PHP 7.x.
> These are replaced by --with-zip --with-zlib-dir.
> 
> Signed-off-by: Konrad Weihmann <kweihmann@outlook.com>
> ---
>   meta-oe/recipes-devtools/php/php_7.4.4.bb | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/meta-oe/recipes-devtools/php/php_7.4.4.bb b/meta-oe/recipes-devtools/php/php_7.4.4.bb
> index ff4c28e13..c1784a78d 100644
> --- a/meta-oe/recipes-devtools/php/php_7.4.4.bb
> +++ b/meta-oe/recipes-devtools/php/php_7.4.4.bb
> @@ -81,7 +81,7 @@ PACKAGECONFIG ??= "mysql sqlite3 imap opcache openssl \
>   "
>   PACKAGECONFIG_class-native = ""
>   
> -PACKAGECONFIG[zip] = "--enable-zip --with-libzip=${STAGING_EXECPREFIXDIR},,libzip"
> +PACKAGECONFIG[zip] = "--with-zip --with-zlib-dir=${STAGING_EXECPREFIXDIR},,libzip"
>   
>   PACKAGECONFIG[mysql] = "--with-mysqli=mysqlnd \
>                           --with-pdo-mysql=mysqlnd \
> 
> 
> 
> 


-- 
# Randy MacLeod
# Wind River Linux

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-05-04 15:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-02 13:38 [meta-oe][PATCH v3] php: fix zip package config Konrad Weihmann
2020-05-02 14:02 ` ✗ patchtest: failure for php: fix zip package config (rev2) Patchwork
2020-05-04 15:47 ` [OE-core] [meta-oe][PATCH v3] php: fix zip package config Randy MacLeod

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.