* icon-themes fixes
@ 2012-10-23 7:04 Andreas Müller
2012-10-23 7:04 ` [PATCH 1/3] gnome-icon-theme: fix icon mapping Andreas Müller
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Andreas Müller @ 2012-10-23 7:04 UTC (permalink / raw)
To: openembedded-core
The following changes since commit 06d27cf0fbcc4004e6f456880eca49893c9290bf:
xorg: remove XF86 BigFont extension (2012-10-22 14:57:26 +0100)
are available in the git repository at:
git://gitorious.org/schnitzeltony-oe-meta/oe-core.git icon-themes
Andreas Müller (3):
gnome-icon-theme: fix icon mapping
gnome-icon-theme: remove unused configure variable
sato-icon-theme: fix build
.../recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb | 8 +++-----
.../sato-icon-theme/sato-icon-theme.inc | 2 +-
.../sato-icon-theme/sato-icon-theme_0.4.1.bb | 2 +-
3 files changed, 5 insertions(+), 7 deletions(-)
--
1.7.6.5
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH 1/3] gnome-icon-theme: fix icon mapping
2012-10-23 7:04 icon-themes fixes Andreas Müller
@ 2012-10-23 7:04 ` Andreas Müller
2012-10-23 11:22 ` Richard Purdie
2012-10-23 7:04 ` [PATCH 2/3] gnome-icon-theme: remove unused configure variable Andreas Müller
` (2 subsequent siblings)
3 siblings, 1 reply; 8+ messages in thread
From: Andreas Müller @ 2012-10-23 7:04 UTC (permalink / raw)
To: openembedded-core
Multiple errors in log.do_install as:
Can't locate XML/Simple.pm in @INC (@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5 .) at /home/andreas/tmp/oe-core-eglibc/sysroots/x86_64-linux/usr/lib/../libexec/icon-name-mapping line 12.
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
.../recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb b/meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb
index 8e7995b..f017b56 100644
--- a/meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb
+++ b/meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb
@@ -9,7 +9,7 @@ SECTION = "x11/gnome"
DEPENDS = "icon-naming-utils-native glib-2.0 intltool-native"
RDEPENDS_${PN} = "hicolor-icon-theme"
RRECOMMENDS_${PN} = "librsvg-gtk"
-PR = "r3"
+PR = "r4"
FILES_${PN} += "${datadir}/*"
@@ -22,5 +22,4 @@ SRC_URI[sha256sum] = "ea7e05b77ead159379392b3b275ca0c9cbacd7d936014e447cc7c5e27a
EXTRA_OECONF = "--disable-hicolor-check"
EXTRA_OECONF += "--with-iconmap=${@d.getVar('STAGING_LIBEXECDIR_NATIVE', True).replace('gnome-icon-theme', 'icon-naming-utils')}/icon-name-mapping"
-
-inherit autotools
+inherit autotools perlnative
--
1.7.6.5
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 2/3] gnome-icon-theme: remove unused configure variable
2012-10-23 7:04 icon-themes fixes Andreas Müller
2012-10-23 7:04 ` [PATCH 1/3] gnome-icon-theme: fix icon mapping Andreas Müller
@ 2012-10-23 7:04 ` Andreas Müller
2012-10-23 7:04 ` [PATCH 3/3] sato-icon-theme: fix build Andreas Müller
2012-10-23 9:12 ` icon-themes fixes Burton, Ross
3 siblings, 0 replies; 8+ messages in thread
From: Andreas Müller @ 2012-10-23 7:04 UTC (permalink / raw)
To: openembedded-core
configure: WARNING: unrecognized options: --disable-silent-rules, --with-libtool-sysroot, --disable-hicolor-check
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
.../recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb b/meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb
index f017b56..afdf4cb 100644
--- a/meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb
+++ b/meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb
@@ -19,7 +19,6 @@ SRC_URI = "${GNOME_MIRROR}/${BPN}/2.31/${BPN}-${PV}.tar.bz2 \
SRC_URI[md5sum] = "8e727703343d4c18c73c79dd2009f8ed"
SRC_URI[sha256sum] = "ea7e05b77ead159379392b3b275ca0c9cbacd7d936014e447cc7c5e27a767982"
-EXTRA_OECONF = "--disable-hicolor-check"
-EXTRA_OECONF += "--with-iconmap=${@d.getVar('STAGING_LIBEXECDIR_NATIVE', True).replace('gnome-icon-theme', 'icon-naming-utils')}/icon-name-mapping"
+EXTRA_OECONF = "--with-iconmap=${@d.getVar('STAGING_LIBEXECDIR_NATIVE', True).replace('gnome-icon-theme', 'icon-naming-utils')}/icon-name-mapping"
inherit autotools perlnative
--
1.7.6.5
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 3/3] sato-icon-theme: fix build
2012-10-23 7:04 icon-themes fixes Andreas Müller
2012-10-23 7:04 ` [PATCH 1/3] gnome-icon-theme: fix icon mapping Andreas Müller
2012-10-23 7:04 ` [PATCH 2/3] gnome-icon-theme: remove unused configure variable Andreas Müller
@ 2012-10-23 7:04 ` Andreas Müller
2012-10-23 9:12 ` icon-themes fixes Burton, Ross
3 siblings, 0 replies; 8+ messages in thread
From: Andreas Müller @ 2012-10-23 7:04 UTC (permalink / raw)
To: openembedded-core
| Can't locate XML/Simple.pm in @INC (@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5 .) at /home/andreas/tmp/oe-core-eglibc/sysroots/x86_64-linux/usr/lib/icon-naming-utils/icon-name-mapping line 12.
| BEGIN failed--compilation aborted at /home/andreas/tmp/oe-core-eglibc/sysroots/x86_64-linux/usr/lib/icon-naming-utils/icon-name-mapping line 12.
| make[3]: *** [install-data-local] Error 2
| make[3]: Leaving directory `/home/andreas/tmp/oe-core-eglibc/work/all-angstrom-linux/sato-icon-theme-0.4.1-r5/sato-icon-theme-0.4.1/16x16/actions'
| make[2]: *** [install-am] Error 2
| make[2]: Leaving directory `/home/andreas/tmp/oe-core-eglibc/work/all-angstrom-linux/sato-icon-theme-0.4.1-r5/sato-icon-theme-0.4.1/16x16/actions'
| make[1]: *** [install-recursive] Error 1
| make[1]: Leaving directory `/home/andreas/tmp/oe-core-eglibc/work/all-angstrom-linux/sato-icon-theme-0.4.1-r5/sato-icon-theme-0.4.1/16x16'
| make: *** [install-recursive] Error 1
| ERROR: oe_runmake failed
| ERROR: Function failed: do_install (see /home/andreas/tmp/oe-core-eglibc/work/all-angstrom-linux/sato-icon-theme-0.4.1-r5/temp/log.do_install.21502 for further information)
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
.../sato-icon-theme/sato-icon-theme.inc | 2 +-
.../sato-icon-theme/sato-icon-theme_0.4.1.bb | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-sato/sato-icon-theme/sato-icon-theme.inc b/meta/recipes-sato/sato-icon-theme/sato-icon-theme.inc
index 476e925..e014a7d 100644
--- a/meta/recipes-sato/sato-icon-theme/sato-icon-theme.inc
+++ b/meta/recipes-sato/sato-icon-theme/sato-icon-theme.inc
@@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=56a830bbe6e4697fe6cbbae01bb7c2b2"
SECTION = "x11"
DEPENDS = ""
-inherit autotools pkgconfig allarch gtk-icon-cache
+inherit autotools pkgconfig allarch gtk-icon-cache perlnative
FILES_${PN} += "${datadir}"
diff --git a/meta/recipes-sato/sato-icon-theme/sato-icon-theme_0.4.1.bb b/meta/recipes-sato/sato-icon-theme/sato-icon-theme_0.4.1.bb
index cd34cac..96d8301 100644
--- a/meta/recipes-sato/sato-icon-theme/sato-icon-theme_0.4.1.bb
+++ b/meta/recipes-sato/sato-icon-theme/sato-icon-theme_0.4.1.bb
@@ -2,7 +2,7 @@ require sato-icon-theme.inc
DEPENDS += "icon-naming-utils-native"
-PR = "r5"
+PR = "r6"
SRC_URI = "http://pokylinux.org/releases/sato/${BPN}-${PV}.tar.gz \
file://iconpath-option.patch \
--
1.7.6.5
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: icon-themes fixes
2012-10-23 7:04 icon-themes fixes Andreas Müller
` (2 preceding siblings ...)
2012-10-23 7:04 ` [PATCH 3/3] sato-icon-theme: fix build Andreas Müller
@ 2012-10-23 9:12 ` Burton, Ross
3 siblings, 0 replies; 8+ messages in thread
From: Burton, Ross @ 2012-10-23 9:12 UTC (permalink / raw)
To: Andreas Müller; +Cc: openembedded-core
On 23 October 2012 08:04, Andreas Müller <schnitzeltony@googlemail.com> wrote:
> The following changes since commit 06d27cf0fbcc4004e6f456880eca49893c9290bf:
>
> xorg: remove XF86 BigFont extension (2012-10-22 14:57:26 +0100)
>
> are available in the git repository at:
> git://gitorious.org/schnitzeltony-oe-meta/oe-core.git icon-themes
>
> Andreas Müller (3):
> gnome-icon-theme: fix icon mapping
> gnome-icon-theme: remove unused configure variable
> sato-icon-theme: fix build
Looks good.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Ross
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/3] gnome-icon-theme: fix icon mapping
2012-10-23 7:04 ` [PATCH 1/3] gnome-icon-theme: fix icon mapping Andreas Müller
@ 2012-10-23 11:22 ` Richard Purdie
2012-10-23 12:38 ` Andreas Müller
0 siblings, 1 reply; 8+ messages in thread
From: Richard Purdie @ 2012-10-23 11:22 UTC (permalink / raw)
To: Andreas Müller; +Cc: openembedded-core
On Tue, 2012-10-23 at 09:04 +0200, Andreas Müller wrote:
> Multiple errors in log.do_install as:
> Can't locate XML/Simple.pm in @INC (@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5 .) at /home/andreas/tmp/oe-core-eglibc/sysroots/x86_64-linux/usr/lib/../libexec/icon-name-mapping line 12.
>
> Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
> ---
> .../recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb | 5 ++---
> 1 files changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb b/meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb
> index 8e7995b..f017b56 100644
> --- a/meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb
> +++ b/meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb
> @@ -9,7 +9,7 @@ SECTION = "x11/gnome"
> DEPENDS = "icon-naming-utils-native glib-2.0 intltool-native"
> RDEPENDS_${PN} = "hicolor-icon-theme"
> RRECOMMENDS_${PN} = "librsvg-gtk"
> -PR = "r3"
> +PR = "r4"
>
> FILES_${PN} += "${datadir}/*"
>
> @@ -22,5 +22,4 @@ SRC_URI[sha256sum] = "ea7e05b77ead159379392b3b275ca0c9cbacd7d936014e447cc7c5e27a
> EXTRA_OECONF = "--disable-hicolor-check"
> EXTRA_OECONF += "--with-iconmap=${@d.getVar('STAGING_LIBEXECDIR_NATIVE', True).replace('gnome-icon-theme', 'icon-naming-utils')}/icon-name-mapping"
>
> -
> -inherit autotools
> +inherit autotools perlnative
Doesn't this need a DEPENDS += "libxml-simple-perl-native" or whatever
the correct name for the module is?
Cheers,
Richard
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/3] gnome-icon-theme: fix icon mapping
2012-10-23 11:22 ` Richard Purdie
@ 2012-10-23 12:38 ` Andreas Müller
2012-10-23 13:09 ` Richard Purdie
0 siblings, 1 reply; 8+ messages in thread
From: Andreas Müller @ 2012-10-23 12:38 UTC (permalink / raw)
To: Richard Purdie; +Cc: openembedded-core
On Tue, Oct 23, 2012 at 1:22 PM, Richard Purdie
<richard.purdie@linuxfoundation.org> wrote:
> Doesn't this need a DEPENDS += "libxml-simple-perl-native" or whatever
> the correct name for the module is?
Sounds reasonable. Subsequent patch or V3?
Andreas
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/3] gnome-icon-theme: fix icon mapping
2012-10-23 12:38 ` Andreas Müller
@ 2012-10-23 13:09 ` Richard Purdie
0 siblings, 0 replies; 8+ messages in thread
From: Richard Purdie @ 2012-10-23 13:09 UTC (permalink / raw)
To: Andreas Müller; +Cc: openembedded-core
On Tue, 2012-10-23 at 14:38 +0200, Andreas Müller wrote:
> On Tue, Oct 23, 2012 at 1:22 PM, Richard Purdie
> <richard.purdie@linuxfoundation.org> wrote:
> > Doesn't this need a DEPENDS += "libxml-simple-perl-native" or whatever
> > the correct name for the module is?
>
> Sounds reasonable. Subsequent patch or V3?
V3 please, might as well get this right and sorry I didn't realise this
before.
Cheers,
Richard
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2012-10-23 13:22 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-23 7:04 icon-themes fixes Andreas Müller
2012-10-23 7:04 ` [PATCH 1/3] gnome-icon-theme: fix icon mapping Andreas Müller
2012-10-23 11:22 ` Richard Purdie
2012-10-23 12:38 ` Andreas Müller
2012-10-23 13:09 ` Richard Purdie
2012-10-23 7:04 ` [PATCH 2/3] gnome-icon-theme: remove unused configure variable Andreas Müller
2012-10-23 7:04 ` [PATCH 3/3] sato-icon-theme: fix build Andreas Müller
2012-10-23 9:12 ` icon-themes fixes Burton, Ross
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.