All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-gnome][PATCH 1/2] gnome-vfs 2.24.4: drop useless print
@ 2016-06-07  8:38 Koen Kooi
  2016-06-07  8:38 ` [meta-gnome][PATCH 2/2] abiword 3.0.1: fix python code to work with python3 Koen Kooi
  2016-06-07 11:40 ` [meta-gnome][PATCH 1/2] gnome-vfs 2.24.4: drop useless print Gary Thomas
  0 siblings, 2 replies; 5+ messages in thread
From: Koen Kooi @ 2016-06-07  8:38 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Koen Kooi

This fixes the python3 traceback.

Signed-off-by: Koen Kooi <koen.kooi@linaro.org>
---
 meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs_2.24.4.bb | 2 --
 1 file changed, 2 deletions(-)

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 f9b02b1..1c78474 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
@@ -53,8 +53,6 @@ FILES_${PN}-doc += "${datadir}/gtk-doc"
 PACKAGES_DYNAMIC += "^gnome-vfs-plugin-.*"
 
 python populate_packages_prepend () {
-    print d.getVar('FILES_gnome-vfs', 1)
-
     plugindir = d.expand('${libdir}/gnome-vfs-2.0/modules/')
     do_split_packages(d, plugindir, '^lib(.*)\.so$', 'gnome-vfs-plugin-%s', 'GNOME VFS plugin for %s')
 }
-- 
2.4.3



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

* [meta-gnome][PATCH 2/2] abiword 3.0.1: fix python code to work with python3
  2016-06-07  8:38 [meta-gnome][PATCH 1/2] gnome-vfs 2.24.4: drop useless print Koen Kooi
@ 2016-06-07  8:38 ` Koen Kooi
  2016-06-07 11:40 ` [meta-gnome][PATCH 1/2] gnome-vfs 2.24.4: drop useless print Gary Thomas
  1 sibling, 0 replies; 5+ messages in thread
From: Koen Kooi @ 2016-06-07  8:38 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Koen Kooi

Signed-off-by: Koen Kooi <koen.kooi@linaro.org>
---
 meta-gnome/recipes-gnome/abiword/abiword_3.0.1.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-gnome/recipes-gnome/abiword/abiword_3.0.1.bb b/meta-gnome/recipes-gnome/abiword/abiword_3.0.1.bb
index 962a56c..0d0ba11 100644
--- a/meta-gnome/recipes-gnome/abiword/abiword_3.0.1.bb
+++ b/meta-gnome/recipes-gnome/abiword/abiword_3.0.1.bb
@@ -102,7 +102,7 @@ FILES_${PN}-templates      += "${datadir}/${PN}-${SHRT_VER}/templates"
 PACKAGES_DYNAMIC += "^${PN}-meta.* ^${PN}-plugin-.*"
 
 python populate_packages_prepend () {
-    abiword_libdir    = d.expand('${libdir}/${PN}-${SHRT_VER}/plugins')
+    abiword_libdir = d.expand('${libdir}/${PN}-${SHRT_VER}/plugins')
     do_split_packages(d, abiword_libdir, '(.*)\.so$', 'abiword-plugin-%s', 'Abiword plugin for %s', extra_depends='')
 
     metapkg = "abiword-meta"
@@ -113,7 +113,7 @@ python populate_packages_prepend () {
     packages = d.getVar('PACKAGES', 1).split()
     for pkg in packages[1:]:
         if not pkg in blacklist and not pkg in metapkg_rdepends and not pkg.count("-dev") and not pkg.count("-dbg") and not pkg.count("static") and not pkg.count("locale") and not pkg.count("abiword-doc"):
-            print "Modifying ", pkg
+            print ("Modifying %s" % pkg)
             metapkg_rdepends.append(pkg)
     d.setVar('RDEPENDS_' + metapkg, ' '.join(metapkg_rdepends))
     d.setVar('DESCRIPTION_' + metapkg, 'abiword-plugin meta package')
-- 
2.4.3



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

* Re: [meta-gnome][PATCH 1/2] gnome-vfs 2.24.4: drop useless print
  2016-06-07  8:38 [meta-gnome][PATCH 1/2] gnome-vfs 2.24.4: drop useless print Koen Kooi
  2016-06-07  8:38 ` [meta-gnome][PATCH 2/2] abiword 3.0.1: fix python code to work with python3 Koen Kooi
@ 2016-06-07 11:40 ` Gary Thomas
  2016-06-08 20:09   ` Koen Kooi
  1 sibling, 1 reply; 5+ messages in thread
From: Gary Thomas @ 2016-06-07 11:40 UTC (permalink / raw)
  To: openembedded-devel

On 2016-06-07 10:38, Koen Kooi wrote:
> This fixes the python3 traceback.

RP already sent patches for this and the other python3 related issue.

>
> Signed-off-by: Koen Kooi <koen.kooi@linaro.org>
> ---
>   meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs_2.24.4.bb | 2 --
>   1 file changed, 2 deletions(-)
>
> 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 f9b02b1..1c78474 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
> @@ -53,8 +53,6 @@ FILES_${PN}-doc += "${datadir}/gtk-doc"
>   PACKAGES_DYNAMIC += "^gnome-vfs-plugin-.*"
>
>   python populate_packages_prepend () {
> -    print d.getVar('FILES_gnome-vfs', 1)
> -
>       plugindir = d.expand('${libdir}/gnome-vfs-2.0/modules/')
>       do_split_packages(d, plugindir, '^lib(.*)\.so$', 'gnome-vfs-plugin-%s', 'GNOME VFS plugin for %s')
>   }
>


-- 
------------------------------------------------------------
Gary Thomas                 |  Consulting for the
MLB Associates              |    Embedded world
------------------------------------------------------------


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

* Re: [meta-gnome][PATCH 1/2] gnome-vfs 2.24.4: drop useless print
  2016-06-07 11:40 ` [meta-gnome][PATCH 1/2] gnome-vfs 2.24.4: drop useless print Gary Thomas
@ 2016-06-08 20:09   ` Koen Kooi
  2016-06-08 20:56     ` Martin Jansa
  0 siblings, 1 reply; 5+ messages in thread
From: Koen Kooi @ 2016-06-08 20:09 UTC (permalink / raw)
  To: openembedded-devel

Op 07-06-16 om 13:40 schreef Gary Thomas:
> On 2016-06-07 10:38, Koen Kooi wrote:
>> This fixes the python3 traceback.
> 
> RP already sent patches for this and the other python3 related issue.

They didn't show up in patchwork nor in thunderbird search :/




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

* Re: [meta-gnome][PATCH 1/2] gnome-vfs 2.24.4: drop useless print
  2016-06-08 20:09   ` Koen Kooi
@ 2016-06-08 20:56     ` Martin Jansa
  0 siblings, 0 replies; 5+ messages in thread
From: Martin Jansa @ 2016-06-08 20:56 UTC (permalink / raw)
  To: openembedded-devel

You need to search for gnone-vfs, but I've fixed that typo when
cherry-picking to master-next :).

On Wed, Jun 8, 2016 at 10:09 PM, Koen Kooi <koen@dominion.thruhere.net>
wrote:

> Op 07-06-16 om 13:40 schreef Gary Thomas:
> > On 2016-06-07 10:38, Koen Kooi wrote:
> >> This fixes the python3 traceback.
> >
> > RP already sent patches for this and the other python3 related issue.
>
> They didn't show up in patchwork nor in thunderbird search :/
>
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>


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

end of thread, other threads:[~2016-06-08 20:56 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-07  8:38 [meta-gnome][PATCH 1/2] gnome-vfs 2.24.4: drop useless print Koen Kooi
2016-06-07  8:38 ` [meta-gnome][PATCH 2/2] abiword 3.0.1: fix python code to work with python3 Koen Kooi
2016-06-07 11:40 ` [meta-gnome][PATCH 1/2] gnome-vfs 2.24.4: drop useless print Gary Thomas
2016-06-08 20:09   ` Koen Kooi
2016-06-08 20:56     ` Martin Jansa

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.