Re: [oe] [meta-oe, meta-xfce 1/3] glade3: initial add 3.8.2

2012-10-12 Thread Andreas Müller
On Thu, Oct 4, 2012 at 9:36 AM, Andreas Müller
 wrote:
> On Fri, Sep 28, 2012 at 9:49 AM, Andreas Müller
>  wrote:
>> Patchwork does not like the third of this series. So this series can be 
>> found at
>>
>> git://gitorious.org/schnitzeltony-oe-meta/meta-openembedded.git
>> branch patches
>>
>> Andreas
> ping
Sorry to bug here again but is there something wrong with this series?
I have 1+2 in daily use since I am writing an xfce-panel-plugin and
the libxfce4ui-glade stuff is not available in my build machine's
distro.

If there are objections on these patches I will put 1+2 in my
meta-devel. So please let me know so I can close this.

Andreas

___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [meta-oe][PATCH] PACKAGES_DYNAMIC: use regexp not glob

2012-10-12 Thread Martin Jansa
* bitbake uses PACKAGES_DYNAMIC as regexp
  ^ could make matching faster (and it will be more clear that we're expecting 
regexp not glob)
  * made all those last '-' optional, use .* (or nothing)
* use += instead of = in most cases to keep ${PN}-locale from
  bitbake.conf:PACKAGES_DYNAMIC = "^${PN}-locale-.*"

Signed-off-by: Martin Jansa 
---
 meta-efl/recipes-efl/efl/evas-generic-loaders.inc | 2 +-
 meta-efl/recipes-efl/efl/evas.inc | 2 +-
 meta-gnome/recipes-gnome/abiword/abiword_2.8.6.bb | 2 +-
 meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs_2.24.4.bb| 2 +-
 meta-gnome/recipes-gnome/gtk+/gtk+3_3.2.3.bb  | 2 +-
 meta-gnome/recipes-support/goffice/goffice_0.8.17.bb  | 2 +-
 meta-initramfs/recipes-devtools/klibc/klibc-utils.inc | 2 +-
 meta-oe/recipes-devtools/libcanberra/libcanberra_0.26.bb  | 2 +-
 meta-oe/recipes-extended/lcdproc/lcdproc5.inc | 2 +-
 meta-oe/recipes-graphics/openbox/openbox_3.5.0.bb | 2 +-
 meta-oe/recipes-multimedia/libav/libav.inc| 2 +-
 meta-oe/recipes-support/freerdp/freerdp.inc   | 2 +-
 meta-oe/recipes-support/openldap/openldap_2.4.23.bb   | 2 +-
 meta-oe/recipes-support/pidgin/pidgin.inc | 2 +-
 meta-xfce/recipes-art/xfwm4-themes/xfwm4-themes_4.10.0.bb | 2 +-
 meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.10.0.bb  | 2 +-
 meta-xfce/recipes-xfce/xfwm4/xfwm4_4.10.0.bb  | 2 +-
 17 files changed, 17 insertions(+), 17 deletions(-)

diff --git a/meta-efl/recipes-efl/efl/evas-generic-loaders.inc 
b/meta-efl/recipes-efl/efl/evas-generic-loaders.inc
index 7556eb2..cb11334 100644
--- a/meta-efl/recipes-efl/efl/evas-generic-loaders.inc
+++ b/meta-efl/recipes-efl/efl/evas-generic-loaders.inc
@@ -30,4 +30,4 @@ python populate_packages_prepend () {
 FILES_evas-generic-loader-xcf += "${libdir}/evas/utils/*.xcf.gz"
 FILES_${PN}-dbg += "${libdir}/evas/utils/.debug"
 
-PACKAGES_DYNAMIC = "evas-generic-loader-*"
+PACKAGES_DYNAMIC += "^evas-generic-loader-.*"
diff --git a/meta-efl/recipes-efl/efl/evas.inc 
b/meta-efl/recipes-efl/efl/evas.inc
index b0ec0cf..e3e5d39 100644
--- a/meta-efl/recipes-efl/efl/evas.inc
+++ b/meta-efl/recipes-efl/efl/evas.inc
@@ -40,7 +40,7 @@ FILES_${PN}-dbg += "${libdir}/evas/modules/*/*/*/.debug/ 
${libdir}/evas/cserve2/
 FILES_${PN}-cserve2 += "${libexecdir}/evas_cserve2* ${libexecdir}/dummy_slave"
 
 PACKAGES += "${PN}-cserve2"
-PACKAGES_DYNAMIC = "evas-engine-* evas-loader-* evas-saver-* evas-cserve2-*"
+PACKAGES_DYNAMIC += "^evas-engine-.* ^evas-loader-.* ^evas-saver-.* 
^evas-cserve2-.*"
 
 # evas-loader-svg is gone as we don't have esvg and probably won't have 
anytime soon
 # http://www.intesis.hr/news/16-esvg-source
diff --git a/meta-gnome/recipes-gnome/abiword/abiword_2.8.6.bb 
b/meta-gnome/recipes-gnome/abiword/abiword_2.8.6.bb
index 8c3aab4..60b970b 100644
--- a/meta-gnome/recipes-gnome/abiword/abiword_2.8.6.bb
+++ b/meta-gnome/recipes-gnome/abiword/abiword_2.8.6.bb
@@ -99,7 +99,7 @@ FILES_${PN}-strings+= 
"${datadir}/${PN}-${SHRT_VER}/AbiWord/strings"
 FILES_${PN}-systemprofiles += 
"${datadir}/${PN}-${SHRT_VER}/AbiWord/system.profile*"
 FILES_${PN}-templates  += "${datadir}/${PN}-${SHRT_VER}/templates"
 
-PACKAGES_DYNAMIC = "${PN}-meta ${PN}-plugin-*"
+PACKAGES_DYNAMIC += "^${PN}-meta.* ^${PN}-plugin-.*"
 
 python populate_packages_prepend () {
 abiword_libdir= bb.data.expand('${libdir}/abiword-2.8/plugins', d)
diff --git a/meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs_2.24.4.bb 
b/meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs_2.24.4.bb
index 586eed8..46be86f 100644
--- a/meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs_2.24.4.bb
+++ b/meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs_2.24.4.bb
@@ -40,7 +40,7 @@ FILES_${PN}-dbg += " ${libdir}/gnome-vfs-2.0/modules/.debug"
 FILES_${PN}-dev += " ${libdir}/gnome-vfs-2.0/include"
 FILES_${PN}-doc += " ${datadir}/gtk-doc"
 
-PACKAGES_DYNAMIC = "gnome-vfs-plugin-*"
+PACKAGES_DYNAMIC += "^gnome-vfs-plugin-.*"
 
 python populate_packages_prepend () {
 print bb.data.getVar('FILES_gnome-vfs', d, 1)
diff --git a/meta-gnome/recipes-gnome/gtk+/gtk+3_3.2.3.bb 
b/meta-gnome/recipes-gnome/gtk+/gtk+3_3.2.3.bb
index c1f535b..32b54ef 100644
--- a/meta-gnome/recipes-gnome/gtk+/gtk+3_3.2.3.bb
+++ b/meta-gnome/recipes-gnome/gtk+/gtk+3_3.2.3.bb
@@ -72,7 +72,7 @@ FILES_${PN}-dbg += " \
 ${libdir}/gtk-3.0/modules/.debug"
 
 
-PACKAGES_DYNAMIC += "gtk3-immodule-* gtk3-printbackend-*"
+PACKAGES_DYNAMIC += "^gtk3-immodule-.* ^gtk3-printbackend-.*"
 
 python populate_packages_prepend () {
 import os.path
diff --git a/meta-gnome/recipes-support/goffice/goffice_0.8.17.bb 
b/meta-gnome/recipes-support/goffice/goffice_0.8.17.bb
index c55a8ac..4b64731 100644
--- a/meta-gnome/recipes-support/goffice/goffice_0.8.17.bb
+++ b/meta-gnome/recipes-support/goffice/goffice_0.8.17.bb
@@ -36,7 +36,7 @@ FILES_${PN} = "${bindir}/* ${sbindir}/* ${libexecdir}/* 
${libdir}/lib*${

[oe] [meta-java][PATCH] classpath: avoid picking up gmp.h from the host

2012-10-12 Thread Jan Luebbe
Signed-off-by: Jan Luebbe 
---
 recipes-core/classpath/classpath.inc |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/recipes-core/classpath/classpath.inc 
b/recipes-core/classpath/classpath.inc
index 4c3174b..1a8093e 100644
--- a/recipes-core/classpath/classpath.inc
+++ b/recipes-core/classpath/classpath.inc
@@ -21,7 +21,7 @@ RPROVIDES_${PN} = "${PBN}"
 RPROVIDES_${PN}-common = "${PBN}-common"
 RPROVIDES_${PN}-gtk = "${PBN}-awt"
 
-PR = "r0"
+PR = "r1"
 
 SRC_URI = "${GNU_MIRROR}/classpath/classpath-${PV}.tar.gz"
 
@@ -37,6 +37,7 @@ EXTRA_OECONF = "\
   --with-vm=java \
   --disable-Werror \
   --with-antlr-jar=${STAGING_DATADIR_JAVA_NATIVE}/antlr.jar \
+  --with-gmp=${STAGING_LIBDIR}/.. \
   --disable-alsa \
   --disable-dssi \
   --disable-qt4-peer \
-- 
1.7.10.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] MINUTES: OE TSC 9 October 2012

2012-10-12 Thread Jeff Osier-Mixon
OpenEmbedded TSC Meeting
09 October 2012

Attendees: Koen, Paul, Mark, Khem, Richard
Notes: Jefro


Agenda & Results

1. pick a chair
fray
___
2. lingering issues

 a. raise awareness of "janitor" list, QA "bugs"

 b. pre/post install scripting (fray)
 holding for 1.4

 c. document whitespace changes to the shell
RP edited OE style guide with new info, linked to YP
=> fray to update patch guidelines

 d. documentation
need someone to work on OE wiki pages
RP, bluelightning, fray to hopefully work on it together
___
3. new issues

 a. Meetup at ELCE
   OE general assembly Weds eve 5pm, Yocto Project Developer day Thurs
-> wing it

 b. RFC for the secondary toolchain (fray)
how to document as best practice?
possibly sample secondary toolchain layer as template
no changes to oe-core, possibly add an include file

 c. RPM and package feeds
packages_rpm, rootfs_rpm doesn't use Zypper
fray proposes replacing with SMART after 1.3 release
smaller footprint, python based
-> fray will write proposal after 1.3

___
4. status

 a. oe-core release
at -rc3 now, -rc4 tomorrow, hi-priority issues identified
release branches exist
issues with 3.4.10 on ARM, bumped to 3.4.11 (uniprocessor)
new bugzilla category for image deployment issues

 b. infrastructure
disks failed last week
Tom & Martin working on setting up jenkins

 c. 1.4 planning
   PR issues
   pre/post install scripting
   SMART


Raw Transcript

(8:56:58 AM) mode (+v Jefro) by ChanServ
(8:58:19 AM) fray: hey
(8:58:37 AM) Jefro: good morning
(8:58:51 AM) fray: I have an agenda item, hopefully quick -- the RFC
for the secondary toolchain..
(8:59:00 AM) Jefro: hi koen - question, do we need to keep the PR bump
issue on the agenda, or bring it back for 1.4?
(8:59:07 AM) Jefro: fray ok, added
(8:59:16 AM) koen: Jefro: 1.4 is fine by me
(8:59:29 AM) RP__ [~rich...@dan.rpsys.net] entered the room.
(8:59:32 AM) koen: I have a conflict right now, so I can't say how
present I will be :(
(8:59:43 AM) RP__: ok :/
(8:59:59 AM) ***RP__ is here although its been a long day :/
(9:00:26 AM) Jefro: ok, thanks (RP - that was for whether to keep PR
bumps on the agenda for now, or revive them in 1.4)
(9:00:41 AM) bluelightning
[~paul@pdpc/supporter/professional/bluelightning] entered the room.
(9:00:47 AM) bluelightning: hi all
(9:01:08 AM) Jefro: hi bluelightning
(9:01:21 AM) Jefro: khem says he is stuck in traffic and will be here
hopefully in 5 minutes
(9:01:52 AM) bluelightning: Jefro: what, he's not on IRC from the car?
where's the commitment?
(9:01:57 AM) bluelightning: ;)
(9:02:01 AM) fray: ;)
(9:02:07 AM) ***fray will not pay his ticket.. ;)
(9:03:13 AM) RP__: Jefro: I don't quite understand the PR bumps question
(9:03:15 AM) Jefro: I'm talking to him over google chat - in his case
literally! he says there is voice to text
(9:03:18 AM) Jefro: but no IRC interface
(9:03:20 AM) Jefro: yet...
(9:03:54 AM) Jefro: RP__ right now we have PR bumps listed as a
lingering issue to discuss, but the last thing we talked about was to
push it out to 1.4, so I was wondering whether to keep it on the
agenda for this meeting
(9:04:15 AM) RP__: Jefro: no, we don't need it
(9:04:21 AM) fray: One of my former co-workers using a Samsung Note
and uses text-to-speech and speech-to-text to IRC while driving.. :P
(9:04:23 AM) Jefro: ok, thanks
(9:04:29 AM) Jefro: agenda in about 1 minute
(9:04:56 AM) Jefro: how about koen's new branching strategy?
(9:05:50 AM) RP__: I think that was to be taken to the mailing list?
(9:05:55 AM) RP__ is now known as RP
(9:06:03 AM) mode (+v RP) by ChanServ
(9:06:53 AM) Jefro: still a lingering issue for discussion? I'm paring
the agenda down quite well
(9:06:59 AM) Jefro: Any new issues anyone?
(9:07:32 AM) fray: status on the upcoming rlease is the only other
thing that comes to mind
(9:08:15 AM) khem
[~k...@99-57-140-209.lightspeed.sntcca.sbcglobal.net] entered the
room.
(9:08:15 AM) mode (+v khem) by ChanServ
(9:08:23 AM) khem: Hi All
(9:08:37 AM) Jefro: thanks fray
(9:08:40 AM) Jefro: hi khem - any new issues?
(9:09:37 AM) Jefro: Agenda at http://pastebin.com/j8HFUy19
(9:10:04 AM) fray: BTW I can chair unless someone else wants to
(9:10:11 AM) fray: (give RP a break)
(9:10:13 AM) koen: RP: I dropped the ball on that, havne't had much
time for OE stuff the past month :(
(9:10:51 AM) RP: koen: I'm trying to speed things up regardless...
(9:11:07 AM) khem: Nothing from me
(9:11:30 AM) fray: re the PR thing, I know we'd really like it in the
1.4 release time frame.. :/
(9:11:45 AM) fray: (speaking for my employer as well as myself there)
(9:12:01 AM) khem: one thing that I wish is done with 1.3 release is
that meta-oe i

[oe] [meta-webserver][PATCH 1/2] modphp: fix rpath QA issue

2012-10-12 Thread Paul Eggleton
Fixes the following QA issue:

ERROR: QA Issue: package modphp contains bad RPATH 
${STAGING_DIR_TARGET}/usr/lib in file 
${WORKDIR}/packages-split/modphp/usr/lib/apache2/modules/libphp5.so

Signed-off-by: Paul Eggleton 
---
 meta-webserver/recipes-php/modphp/modphp5.inc  |4 
 meta-webserver/recipes-php/modphp/modphp_5.3.14.bb |2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/meta-webserver/recipes-php/modphp/modphp5.inc 
b/meta-webserver/recipes-php/modphp/modphp5.inc
index 344eb31..2a73e90 100644
--- a/meta-webserver/recipes-php/modphp/modphp5.inc
+++ b/meta-webserver/recipes-php/modphp/modphp5.inc
@@ -52,6 +52,10 @@ do_configure() {
find . -name config.m4 -o -name configure | xargs -n1 sed -i 
's!APXS_HTTPD=.*!APXS_HTTPD=${STAGING_BINDIR_NATIVE}/httpd!'
export PHP_LIBXML_DIR=${STAGING_DIR_NATIVE}${layout_exec_prefix} 
oe_runconf
+
+   # No libtool, we really don't want rpath set...
+   sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' 
libtool
+   sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
 }
 
 do_install  () {
diff --git a/meta-webserver/recipes-php/modphp/modphp_5.3.14.bb 
b/meta-webserver/recipes-php/modphp/modphp_5.3.14.bb
index 707f5f9..a4011b6 100644
--- a/meta-webserver/recipes-php/modphp/modphp_5.3.14.bb
+++ b/meta-webserver/recipes-php/modphp/modphp_5.3.14.bb
@@ -1,5 +1,5 @@
 include modphp5.inc
-PR = "r1"
+PR = "r2"
 
 SRC_URI[md5sum] = "7caac4f71e2f21426c11ac153e538392"
 SRC_URI[sha256sum] = 
"c8075b6e83c5db0d26cc8426a7456856421089a76c963813b1fcac3ced041cb3"
-- 
1.7.9.5


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [meta-webserver][PATCH 2/2] modphp: make LICENSE more accurate

2012-10-12 Thread Paul Eggleton
PHP 5 is distributed under the PHP 3.01 license (which we identify as
PHP-3.0 as far as common license files go).

Fixes the following warning:

WARNING: modphp: No generic license file exists for: PHP in any provider

Signed-off-by: Paul Eggleton 
---
 meta-webserver/recipes-php/modphp/modphp5.inc |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-webserver/recipes-php/modphp/modphp5.inc 
b/meta-webserver/recipes-php/modphp/modphp5.inc
index 2a73e90..55e7c92 100644
--- a/meta-webserver/recipes-php/modphp/modphp5.inc
+++ b/meta-webserver/recipes-php/modphp/modphp5.inc
@@ -1,6 +1,6 @@
 SECTION = "console/network"
 DESCRIPTION = "A server-side, HTML-embedded scripting language. This package 
provides the apache php module."
-LICENSE = "PHP"
+LICENSE = "PHP-3.0"
 DEPENDS = "apache2-native apache2 zlib"
 
 SRC_URI = "http://www.php.net/distributions/php-${PV}.tar.bz2 \
-- 
1.7.9.5


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [meta-webserver][PATCH 0/2] modphp fixes

2012-10-12 Thread Paul Eggleton
The following changes since commit 9e701bb060325bc47509d4874bd695f039191ea8:

  libconfig: port from classic and update (2012-10-10 12:35:07 +0200)

are available in the git repository at:

  git://git.openembedded.org/meta-openembedded-contrib paule/modphp-fixes
  
http://cgit.openembedded.org/cgit.cgi/meta-openembedded-contrib/log/?h=paule/modphp-fixes

Paul Eggleton (2):
  modphp: fix rpath QA issue
  modphp: make LICENSE more accurate

 meta-webserver/recipes-php/modphp/modphp5.inc  |6 +-
 meta-webserver/recipes-php/modphp/modphp_5.3.14.bb |2 +-
 2 files changed, 6 insertions(+), 2 deletions(-)

-- 
1.7.9.5


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


Re: [oe] [meta-webserver][PATCH 0/2] modphp fixes

2012-10-12 Thread Marcin Juszkiewicz
Speaking of modphp:

18:05 hrw@puchatek:build$ bitbake apache2 modphp
Parsing of 1253 .bb files complete (1244 cached, 9 parsed). 1609 targets, 60 
skipped, 0 masked, 0 errors.

Build Configuration:
BB_VERSION= "1.16.0"
TARGET_ARCH   = "aarch64"
TARGET_OS = "linux"
MACHINE   = "genericarmv8"
DISTRO_VERSION= "oe-core.0"
TUNE_FEATURES = "aarch64"
meta-aarch64  = "public:afe73a6c8cb3d8724f66408e707845a0821cfc0d"
meta  = "master:7414cc6fd43249e33483684bc40c2f58d6a94c02"
meta-oe   
meta-webserver= "master:9e701bb060325bc47509d4874bd695f039191ea8"
meta-linaro   = "master:318cd177663d23e598013f39024bf526d6473125"
toolchain-layer   = "master:9e701bb060325bc47509d4874bd695f039191ea8"

NOTE: Resolving any missing task queue dependencies
NOTE: Preparing runqueue
NOTE: Executing SetScene Tasks
NOTE: Executing RunQueue Tasks
WARNING: modphp: No generic license file exists for: PHP in any provider
ERROR: Function failed: do_install (see 
/home/hrw/HDD/devel/canonical/aarch64/build/tmp-eglibc/work/aarch64-oe-linux/modphp-5.3.14-r1/temp/log.do_install.12308
 for further information)
ERROR: Logfile of failure stored in: 
/home/hrw/HDD/devel/canonical/aarch64/build/tmp-eglibc/work/aarch64-oe-linux/modphp-5.3.14-r1/temp/log.do_install.12308
Log data follows:
| DEBUG: SITE files ['endian-little', 'bit-64', 'arm-common', 'common-linux', 
'common-glibc', 'aarch64-linux', 'common']
| DEBUG: Executing shell function do_install
| install: cannot stat `libs/libphp5.so': No such file or directory
| ERROR: Function failed: do_install (see 
/home/hrw/HDD/devel/canonical/aarch64/build/tmp-eglibc/work/aarch64-oe-linux/modphp-5.3.14-r1/temp/log.do_install.12308
 for further information)
ERROR: Task 14 
(/home/hrw/HDD/devel/canonical/aarch64/meta-openembedded/meta-webserver/recipes-php/modphp/modphp_5.3.14.bb,
 do_install) failed with exit code '1'
NOTE: Tasks Summary: Attempted 1075 tasks of which 1068 didn't need to be rerun 
and 1 failed.
No currently running tasks (1075 of 1080)

Summary: 1 task failed:
  
/home/hrw/HDD/devel/canonical/aarch64/meta-openembedded/meta-webserver/recipes-php/modphp/modphp_5.3.14.bb,
 do_install
Summary: There was 1 WARNING message shown.
Summary: There was 1 ERROR message shown, returning a non-zero exit code.
18:13 hrw@puchatek:build$ find 
tmp-eglibc/work/aarch64-oe-linux/modphp-5.3.14-r1/ -name libphp*
tmp-eglibc/work/aarch64-oe-linux/modphp-5.3.14-r1/php-5.3.14/libphp5.la
tmp-eglibc/work/aarch64-oe-linux/modphp-5.3.14-r1/php-5.3.14/.libs/libphp5.a
tmp-eglibc/work/aarch64-oe-linux/modphp-5.3.14-r1/php-5.3.14/.libs/libphp5.la
tmp-eglibc/work/aarch64-oe-linux/modphp-5.3.14-r1/php-5.3.14/.libs/libphp5.lai
tmp-eglibc/work/aarch64-oe-linux/modphp-5.3.14-r1/php-5.3.14/sapi/apache/libphp5.module.in
tmp-eglibc/work/aarch64-oe-linux/modphp-5.3.14-r1/php-5.3.14/sapi/apache_hooks/libphp5.module.in
tmp-eglibc/work/aarch64-oe-linux/modphp-5.3.14-r1/php-5.3.14/libs/libphp5.a
tmp-eglibc/work/aarch64-oe-linux/modphp-5.3.14-r1/php-5.3.14/libs/libphp5.la

Will have to take a look at it on Monday.

___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


Re: [oe] [meta-webserver][PATCH 0/2] modphp fixes

2012-10-12 Thread Paul Eggleton
On Friday 12 October 2012 19:39:35 Marcin Juszkiewicz wrote:
> Speaking of modphp:
> 
> 18:05 hrw@puchatek:build$ bitbake apache2 modphp
> Parsing of 1253 .bb files complete (1244 cached, 9 parsed). 1609 targets, 60
> skipped, 0 masked, 0 errors.
> 
> Build Configuration:
> BB_VERSION= "1.16.0"
> TARGET_ARCH   = "aarch64"
> TARGET_OS = "linux"
> MACHINE   = "genericarmv8"
> DISTRO_VERSION= "oe-core.0"
> TUNE_FEATURES = "aarch64"
> meta-aarch64  = "public:afe73a6c8cb3d8724f66408e707845a0821cfc0d"
> meta  = "master:7414cc6fd43249e33483684bc40c2f58d6a94c02"
> meta-oe
> meta-webserver= "master:9e701bb060325bc47509d4874bd695f039191ea8"
> meta-linaro   = "master:318cd177663d23e598013f39024bf526d6473125"
> toolchain-layer   = "master:9e701bb060325bc47509d4874bd695f039191ea8"
> 
> NOTE: Resolving any missing task queue dependencies
> NOTE: Preparing runqueue
> NOTE: Executing SetScene Tasks
> NOTE: Executing RunQueue Tasks
> WARNING: modphp: No generic license file exists for: PHP in any provider
> ERROR: Function failed: do_install (see
> /home/hrw/HDD/devel/canonical/aarch64/build/tmp-eglibc/work/aarch64-oe-linu
> x/modphp-5.3.14-r1/temp/log.do_install.12308 for further information) ERROR:
> Logfile of failure stored in:
> /home/hrw/HDD/devel/canonical/aarch64/build/tmp-eglibc/work/aarch64-oe-linu
> x/modphp-5.3.14-r1/temp/log.do_install.12308
> Log data follows:
> | DEBUG: SITE files ['endian-little', 'bit-64', 'arm-common',
> | 'common-linux', 'common-glibc', 'aarch64-linux', 'common'] DEBUG:
> | Executing shell function do_install
> | install: cannot stat `libs/libphp5.so': No such file or directory
> | ERROR: Function failed: do_install (see
> | /home/hrw/HDD/devel/canonical/aarch64/build/tmp-eglibc/work/aarch64-oe-li
> | nux/modphp-5.3.14-r1/temp/log.do_install.12308 for further information)
> ERROR: Task 14
> (/home/hrw/HDD/devel/canonical/aarch64/meta-openembedded/meta-webserver/rec
> ipes-php/modphp/modphp_5.3.14.bb, do_install) failed with exit code '1'
> NOTE: Tasks Summary: Attempted 1075 tasks of which 1068 didn't need to be
> rerun and 1 failed. No currently running tasks (1075 of 1080)
> 
> Summary: 1 task failed:
>  
> /home/hrw/HDD/devel/canonical/aarch64/meta-openembedded/meta-webserver/reci
> pes-php/modphp/modphp_5.3.14.bb, do_install Summary: There was 1 WARNING
> message shown.
> Summary: There was 1 ERROR message shown, returning a non-zero exit code.
> 18:13 hrw@puchatek:build$ find
> tmp-eglibc/work/aarch64-oe-linux/modphp-5.3.14-r1/ -name libphp*
> tmp-eglibc/work/aarch64-oe-linux/modphp-5.3.14-r1/php-5.3.14/libphp5.la
> tmp-eglibc/work/aarch64-oe-linux/modphp-5.3.14-r1/php-5.3.14/.libs/libphp5.
> a
> tmp-eglibc/work/aarch64-oe-linux/modphp-5.3.14-r1/php-5.3.14/.libs/libphp5.
> la
> tmp-eglibc/work/aarch64-oe-linux/modphp-5.3.14-r1/php-5.3.14/.libs/libphp5.
> lai
> tmp-eglibc/work/aarch64-oe-linux/modphp-5.3.14-r1/php-5.3.14/sapi/apache/li
> bphp5.module.in
> tmp-eglibc/work/aarch64-oe-linux/modphp-5.3.14-r1/php-5.3.14/sapi/apache_ho
> oks/libphp5.module.in
> tmp-eglibc/work/aarch64-oe-linux/modphp-5.3.14-r1/php-5.3.14/libs/libphp5.a
> tmp-eglibc/work/aarch64-oe-linux/modphp-5.3.14-r1/php-5.3.14/libs/libphp5.l
> a
> 
> Will have to take a look at it on Monday.

Looks like it thinks it's supposed to be producing static libraries for some 
reason - when I build here (for qemuarm at the moment) I have these files:

[paul@morpheus php-5.3.14]$ find . -name 'libphp*'
./libs/libphp5.so
./libs/libphp5.la
./sapi/apache_hooks/libphp5.module.in
./sapi/apache/libphp5.module.in
./.libs/libphp5.lai
./.libs/libphp5.so
./.libs/libphp5.la
./libphp5.la

Not sure what would cause that specifically, but it's a clue at least.

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre

___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel