All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] Bug 2134 - bitbake package-index fails for rpm
@ 2012-04-11 14:26 Andrei Gherzan
  2012-04-11 14:26 ` [PATCH 1/3] createrepo: Python scripts should use the python interpreter from env Andrei Gherzan
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Andrei Gherzan @ 2012-04-11 14:26 UTC (permalink / raw)
  To: openembedded-core

The bug is that the native python used to run genpkgmetadata.py is picking up
host's python modules.

More about this. RPM is built without python. And this modules is needed by the
above py file.

So: 
1. rpm-native should be built with python support.
2. native python should only look into STAGING_DIR_NATIVE directory for
modules.
3. createrepo scripts should use native python


The following changes since commit 190f6d791d51aaa4cfb9f1cf932bc205ff674fb5:

  runqemu-internal: Add console=tty for qemuppc and NFS (2012-04-06 01:12:47 +0100)

are available in the git repository at:
  git://git.yoctoproject.org/poky-contrib ag/package-index
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ag/package-index

Andrei Gherzan (3):
  createrepo: Python scripts should use the python interpreter from env
  package-index: Force NATIVE python to use modules from
    STAGING_DIR_NATIVE
  rpm-native: Compile python rpm module (with-python)

 meta/recipes-core/meta/package-index.bb            |    3 +
 meta/recipes-devtools/rpm/rpm_5.4.0.bb             |    2 -
 ...n-scripts-should-use-interpreter-from-env.patch |   47 ++++++++++++++++++++
 .../createrepo/createrepo_0.4.11.bb                |    3 +-
 4 files changed, 52 insertions(+), 3 deletions(-)
 create mode 100644 meta/recipes-support/createrepo/createrepo/python-scripts-should-use-interpreter-from-env.patch

-- 
1.7.5.4




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

* [PATCH 1/3] createrepo: Python scripts should use the python interpreter from env
  2012-04-11 14:26 [PATCH 0/3] Bug 2134 - bitbake package-index fails for rpm Andrei Gherzan
@ 2012-04-11 14:26 ` Andrei Gherzan
  2012-04-11 14:26 ` [PATCH 2/3] package-index: Force NATIVE python to use modules from STAGING_DIR_NATIVE Andrei Gherzan
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Andrei Gherzan @ 2012-04-11 14:26 UTC (permalink / raw)
  To: openembedded-core

Added path to modify the hardcoded path of python interpreter from python
scripts.
The python interpreter should be the one from native sysroot and not the
one from host machine.

[YOCTO #2134]

Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
---
 ...n-scripts-should-use-interpreter-from-env.patch |   47 ++++++++++++++++++++
 .../createrepo/createrepo_0.4.11.bb                |    3 +-
 2 files changed, 49 insertions(+), 1 deletions(-)
 create mode 100644 meta/recipes-support/createrepo/createrepo/python-scripts-should-use-interpreter-from-env.patch

diff --git a/meta/recipes-support/createrepo/createrepo/python-scripts-should-use-interpreter-from-env.patch b/meta/recipes-support/createrepo/createrepo/python-scripts-should-use-interpreter-from-env.patch
new file mode 100644
index 0000000..80205a1
--- /dev/null
+++ b/meta/recipes-support/createrepo/createrepo/python-scripts-should-use-interpreter-from-env.patch
@@ -0,0 +1,47 @@
+Author: Andrei Gherzan <andrei@gherzan.ro>
+
+Python interpreter should be use from PATH - native python - and not the one from
+host.
+
+Upstream-Status: Inappropriate [configuration]
+
+Index: createrepo-0.4.11/genpkgmetadata.py
+===================================================================
+--- createrepo-0.4.11.orig/genpkgmetadata.py	2012-04-10 17:14:05.278649384 +0300
++++ createrepo-0.4.11/genpkgmetadata.py	2012-04-10 17:14:22.290648886 +0300
+@@ -1,4 +1,4 @@
+-#!/usr/bin/python -t
++#! /usr/bin/env python
+ # primary functions and glue for generating the repository metadata
+ #
+ 
+Index: createrepo-0.4.11/modifyrepo.py
+===================================================================
+--- createrepo-0.4.11.orig/modifyrepo.py	2012-04-10 17:14:09.106649272 +0300
++++ createrepo-0.4.11/modifyrepo.py	2012-04-10 17:14:27.818648725 +0300
+@@ -1,4 +1,4 @@
+-#!/usr/bin/env python
++#! /usr/bin/env python
+ # $Id$
+ #
+ # This tools is used to insert arbitrary metadata into an RPM repository.
+Index: createrepo-0.4.11/dumpMetadata.py
+===================================================================
+--- createrepo-0.4.11.orig/dumpMetadata.py	2012-04-10 17:19:23.874640068 +0300
++++ createrepo-0.4.11/dumpMetadata.py	2012-04-10 17:19:34.502639756 +0300
+@@ -1,4 +1,4 @@
+-#!/usr/bin/python -t
++#! /usr/bin/env python
+ # base classes and functions for dumping out package Metadata
+ #
+ # This program is free software; you can redistribute it and/or modify
+Index: createrepo-0.4.11/readMetadata.py
+===================================================================
+--- createrepo-0.4.11.orig/readMetadata.py	2012-04-10 17:19:19.626640193 +0300
++++ createrepo-0.4.11/readMetadata.py	2012-04-10 17:19:40.198639590 +0300
+@@ -1,4 +1,4 @@
+-#!/usr/bin/python -t
++#! /usr/bin/env python
+ 
+ # This program is free software; you can redistribute it and/or modify
+ # it under the terms of the GNU General Public License as published by
diff --git a/meta/recipes-support/createrepo/createrepo_0.4.11.bb b/meta/recipes-support/createrepo/createrepo_0.4.11.bb
index ba1d04b..989a745 100644
--- a/meta/recipes-support/createrepo/createrepo_0.4.11.bb
+++ b/meta/recipes-support/createrepo/createrepo_0.4.11.bb
@@ -4,10 +4,11 @@ HOMEPAGE = "http://createrepo.baseurl.org/"
 LICENSE = "GPLv2+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=18810669f13b87348459e611d31ab760"
 
-PR = "r1"
+PR = "r2"
 
 SRC_URI= "http://createrepo.baseurl.org/download/${BP}.tar.gz \
           file://fix-native-install.patch \
+          file://python-scripts-should-use-interpreter-from-env.patch \
          "
 
 SRC_URI[md5sum] = "3e9ccf4abcffe3f49af078c83611eda2"
-- 
1.7.5.4




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

* [PATCH 2/3] package-index: Force NATIVE python to use modules from STAGING_DIR_NATIVE
  2012-04-11 14:26 [PATCH 0/3] Bug 2134 - bitbake package-index fails for rpm Andrei Gherzan
  2012-04-11 14:26 ` [PATCH 1/3] createrepo: Python scripts should use the python interpreter from env Andrei Gherzan
@ 2012-04-11 14:26 ` Andrei Gherzan
  2012-04-11 14:26 ` [PATCH 3/3] rpm-native: Compile python rpm module (with-python) Andrei Gherzan
  2012-04-13 22:17 ` [PATCH 0/3] Bug 2134 - bitbake package-index fails for rpm Saul Wold
  3 siblings, 0 replies; 5+ messages in thread
From: Andrei Gherzan @ 2012-04-11 14:26 UTC (permalink / raw)
  To: openembedded-core

Export PYTHONHOME to ${STAGING_DIR_NATIVE}/usr. In this way python will search
for modules in native sysroot.

[YOCTO #2134]

Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
---
 meta/recipes-core/meta/package-index.bb |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/meta/recipes-core/meta/package-index.bb b/meta/recipes-core/meta/package-index.bb
index bf3922f..96d54e3 100644
--- a/meta/recipes-core/meta/package-index.bb
+++ b/meta/recipes-core/meta/package-index.bb
@@ -21,6 +21,9 @@ do_populate_sysroot[noexec] = "1"
 do_package_index[nostamp] = "1"
 do_package_index[depends] += "${PACKAGEINDEXDEPS}"
 
+# Force NATIVE python to use modules from STAGING_DIR_NATIVE
+export PYTHONHOME = "${STAGING_DIR_NATIVE}/usr"
+
 do_package_index() {
 	set -ex
 	${PACKAGEINDEXES}
-- 
1.7.5.4




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

* [PATCH 3/3] rpm-native: Compile python rpm module (with-python)
  2012-04-11 14:26 [PATCH 0/3] Bug 2134 - bitbake package-index fails for rpm Andrei Gherzan
  2012-04-11 14:26 ` [PATCH 1/3] createrepo: Python scripts should use the python interpreter from env Andrei Gherzan
  2012-04-11 14:26 ` [PATCH 2/3] package-index: Force NATIVE python to use modules from STAGING_DIR_NATIVE Andrei Gherzan
@ 2012-04-11 14:26 ` Andrei Gherzan
  2012-04-13 22:17 ` [PATCH 0/3] Bug 2134 - bitbake package-index fails for rpm Saul Wold
  3 siblings, 0 replies; 5+ messages in thread
From: Andrei Gherzan @ 2012-04-11 14:26 UTC (permalink / raw)
  To: openembedded-core

This module is needed by python scripts from createrepo native package.

[YOCTO #2134]

Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
---
 meta/recipes-devtools/rpm/rpm_5.4.0.bb |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-devtools/rpm/rpm_5.4.0.bb b/meta/recipes-devtools/rpm/rpm_5.4.0.bb
index 4576f67..d44ff99 100644
--- a/meta/recipes-devtools/rpm/rpm_5.4.0.bb
+++ b/meta/recipes-devtools/rpm/rpm_5.4.0.bb
@@ -99,8 +99,6 @@ WITH_PYTHON = "	--with-python=${PYTHON_BASEVERSION} \
 		--without-pythonembed \
 	      "
 
-WITH_PYTHON_virtclass-native = " --without-python"
-
 # Perl modules are not built, but they could be enabled fairly easily
 # the perl module creation and installation would need to be patched.
 # (currently has host perl contamination issues)
-- 
1.7.5.4




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

* Re: [PATCH 0/3] Bug 2134 - bitbake package-index fails for rpm
  2012-04-11 14:26 [PATCH 0/3] Bug 2134 - bitbake package-index fails for rpm Andrei Gherzan
                   ` (2 preceding siblings ...)
  2012-04-11 14:26 ` [PATCH 3/3] rpm-native: Compile python rpm module (with-python) Andrei Gherzan
@ 2012-04-13 22:17 ` Saul Wold
  3 siblings, 0 replies; 5+ messages in thread
From: Saul Wold @ 2012-04-13 22:17 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On 04/11/2012 07:26 AM, Andrei Gherzan wrote:
> The bug is that the native python used to run genpkgmetadata.py is picking up
> host's python modules.
>
> More about this. RPM is built without python. And this modules is needed by the
> above py file.
>
> So:
> 1. rpm-native should be built with python support.
> 2. native python should only look into STAGING_DIR_NATIVE directory for
> modules.
> 3. createrepo scripts should use native python
>
>
> The following changes since commit 190f6d791d51aaa4cfb9f1cf932bc205ff674fb5:
>
>    runqemu-internal: Add console=tty for qemuppc and NFS (2012-04-06 01:12:47 +0100)
>
> are available in the git repository at:
>    git://git.yoctoproject.org/poky-contrib ag/package-index
>    http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ag/package-index
>
> Andrei Gherzan (3):
>    createrepo: Python scripts should use the python interpreter from env
>    package-index: Force NATIVE python to use modules from
>      STAGING_DIR_NATIVE
>    rpm-native: Compile python rpm module (with-python)
>
>   meta/recipes-core/meta/package-index.bb            |    3 +
>   meta/recipes-devtools/rpm/rpm_5.4.0.bb             |    2 -
>   ...n-scripts-should-use-interpreter-from-env.patch |   47 ++++++++++++++++++++
>   .../createrepo/createrepo_0.4.11.bb                |    3 +-
>   4 files changed, 52 insertions(+), 3 deletions(-)
>   create mode 100644 meta/recipes-support/createrepo/createrepo/python-scripts-should-use-interpreter-from-env.patch
>

Merged into OE-Core

Thanks
	Sau!



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

end of thread, other threads:[~2012-04-13 22:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-11 14:26 [PATCH 0/3] Bug 2134 - bitbake package-index fails for rpm Andrei Gherzan
2012-04-11 14:26 ` [PATCH 1/3] createrepo: Python scripts should use the python interpreter from env Andrei Gherzan
2012-04-11 14:26 ` [PATCH 2/3] package-index: Force NATIVE python to use modules from STAGING_DIR_NATIVE Andrei Gherzan
2012-04-11 14:26 ` [PATCH 3/3] rpm-native: Compile python rpm module (with-python) Andrei Gherzan
2012-04-13 22:17 ` [PATCH 0/3] Bug 2134 - bitbake package-index fails for rpm Saul Wold

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.