All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] python3-pip & python3-setuptools: extend to nativesdk
@ 2017-09-06  4:54 Chen Qi
  2017-09-06  4:54 ` [PATCH 1/2] python3-pip: " Chen Qi
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Chen Qi @ 2017-09-06  4:54 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit 8b4f16a9cbbaf521461f699b7264fac2ac872581:

  mesa-gl: Fix build after recent mesa PACKAGECONFIG changes (2017-09-05 15:01:02 +0100)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib ChenQi/python3-nativesdk
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=ChenQi/python3-nativesdk

Chen Qi (2):
  python3-pip: extend to nativesdk
  python3-setuptools: extend to nativesdk

 meta/recipes-devtools/python/python3-pip_9.0.1.bb         | 2 +-
 meta/recipes-devtools/python/python3-setuptools_36.2.7.bb | 7 ++++---
 2 files changed, 5 insertions(+), 4 deletions(-)

-- 
1.9.1



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

* [PATCH 1/2] python3-pip: extend to nativesdk
  2017-09-06  4:54 [PATCH 0/2] python3-pip & python3-setuptools: extend to nativesdk Chen Qi
@ 2017-09-06  4:54 ` Chen Qi
  2017-09-06  4:54 ` [PATCH 2/2] python3-setuptools: " Chen Qi
  2017-09-11  1:44 ` [PATCH 0/2] python3-pip & " ChenQi
  2 siblings, 0 replies; 6+ messages in thread
From: Chen Qi @ 2017-09-06  4:54 UTC (permalink / raw)
  To: openembedded-core

Extend python3-pip to nativesdk because some nativesdk python3 packages
need it, e.g. nativesdk-python3-django from meta-python layer.

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
---
 meta/recipes-devtools/python/python3-pip_9.0.1.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/python/python3-pip_9.0.1.bb b/meta/recipes-devtools/python/python3-pip_9.0.1.bb
index 4456b9b..9b907a2 100644
--- a/meta/recipes-devtools/python/python3-pip_9.0.1.bb
+++ b/meta/recipes-devtools/python/python3-pip_9.0.1.bb
@@ -53,4 +53,4 @@ RDEPENDS_${PN} = "\
   python3-xmlrpc \
 "
 
-BBCLASSEXTEND = "native"
+BBCLASSEXTEND = "native nativesdk"
-- 
1.9.1



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

* [PATCH 2/2] python3-setuptools: extend to nativesdk
  2017-09-06  4:54 [PATCH 0/2] python3-pip & python3-setuptools: extend to nativesdk Chen Qi
  2017-09-06  4:54 ` [PATCH 1/2] python3-pip: " Chen Qi
@ 2017-09-06  4:54 ` Chen Qi
  2017-09-11  1:44 ` [PATCH 0/2] python3-pip & " ChenQi
  2 siblings, 0 replies; 6+ messages in thread
From: Chen Qi @ 2017-09-06  4:54 UTC (permalink / raw)
  To: openembedded-core

Extend python3-setuptools to nativesdk because nativesdk-python3-pip needs
it.

Also, adjust RDEPENDS variable setting to keep the runtime dependencies
for nativesdk package the same with the target one. The native package and
the target package's dependencies remain the same as before.

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
---
 meta/recipes-devtools/python/python3-setuptools_36.2.7.bb | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-devtools/python/python3-setuptools_36.2.7.bb b/meta/recipes-devtools/python/python3-setuptools_36.2.7.bb
index 65af6f0..63f2418 100644
--- a/meta/recipes-devtools/python/python3-setuptools_36.2.7.bb
+++ b/meta/recipes-devtools/python/python3-setuptools_36.2.7.bb
@@ -2,6 +2,7 @@ require python-setuptools.inc
 
 DEPENDS += "python3"
 DEPENDS_class-native += "python3-native"
+DEPENDS_class-nativesdk += "nativesdk-python3"
 
 inherit distutils3
 
@@ -14,11 +15,11 @@ do_install_append() {
     echo "./${SRCNAME}-${PV}-py${PYTHON_BASEVERSION}.egg" > ${D}${PYTHON_SITEPACKAGES_DIR}/setuptools.pth
 }
 
-RDEPENDS_${PN} = "\
+RDEPENDS_${PN}_class-native = "\
   python3-distutils \
   python3-compression \
 "
-RDEPENDS_${PN}_class-target = "\
+RDEPENDS_${PN} = "\
   python3-ctypes \
   python3-distutils \
   python3-email \
@@ -34,4 +35,4 @@ RDEPENDS_${PN}_class-target = "\
   python3-unittest \
   python3-xml \
 "
-BBCLASSEXTEND = "native"
+BBCLASSEXTEND = "native nativesdk"
-- 
1.9.1



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

* Re: [PATCH 0/2] python3-pip & python3-setuptools: extend to nativesdk
  2017-09-06  4:54 [PATCH 0/2] python3-pip & python3-setuptools: extend to nativesdk Chen Qi
  2017-09-06  4:54 ` [PATCH 1/2] python3-pip: " Chen Qi
  2017-09-06  4:54 ` [PATCH 2/2] python3-setuptools: " Chen Qi
@ 2017-09-11  1:44 ` ChenQi
  2017-09-11 15:07   ` Burton, Ross
  2 siblings, 1 reply; 6+ messages in thread
From: ChenQi @ 2017-09-11  1:44 UTC (permalink / raw)
  To: openembedded-core

ping

On 09/06/2017 12:54 PM, Chen Qi wrote:
> The following changes since commit 8b4f16a9cbbaf521461f699b7264fac2ac872581:
>
>    mesa-gl: Fix build after recent mesa PACKAGECONFIG changes (2017-09-05 15:01:02 +0100)
>
> are available in the git repository at:
>
>    git://git.pokylinux.org/poky-contrib ChenQi/python3-nativesdk
>    http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=ChenQi/python3-nativesdk
>
> Chen Qi (2):
>    python3-pip: extend to nativesdk
>    python3-setuptools: extend to nativesdk
>
>   meta/recipes-devtools/python/python3-pip_9.0.1.bb         | 2 +-
>   meta/recipes-devtools/python/python3-setuptools_36.2.7.bb | 7 ++++---
>   2 files changed, 5 insertions(+), 4 deletions(-)
>



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

* Re: [PATCH 0/2] python3-pip & python3-setuptools: extend to nativesdk
  2017-09-11  1:44 ` [PATCH 0/2] python3-pip & " ChenQi
@ 2017-09-11 15:07   ` Burton, Ross
  2017-09-12  1:34     ` ChenQi
  0 siblings, 1 reply; 6+ messages in thread
From: Burton, Ross @ 2017-09-11 15:07 UTC (permalink / raw)
  To: ChenQi; +Cc: OE-core

[-- Attachment #1: Type: text/plain, Size: 1093 bytes --]

These are in master-next.

Ross

On 11 September 2017 at 02:44, ChenQi <Qi.Chen@windriver.com> wrote:

> ping
>
> On 09/06/2017 12:54 PM, Chen Qi wrote:
>
>> The following changes since commit 8b4f16a9cbbaf521461f699b7264fa
>> c2ac872581:
>>
>>    mesa-gl: Fix build after recent mesa PACKAGECONFIG changes (2017-09-05
>> 15:01:02 +0100)
>>
>> are available in the git repository at:
>>
>>    git://git.pokylinux.org/poky-contrib ChenQi/python3-nativesdk
>>    http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=C
>> henQi/python3-nativesdk
>>
>> Chen Qi (2):
>>    python3-pip: extend to nativesdk
>>    python3-setuptools: extend to nativesdk
>>
>>   meta/recipes-devtools/python/python3-pip_9.0.1.bb         | 2 +-
>>   meta/recipes-devtools/python/python3-setuptools_36.2.7.bb | 7 ++++---
>>   2 files changed, 5 insertions(+), 4 deletions(-)
>>
>>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>

[-- Attachment #2: Type: text/html, Size: 2266 bytes --]

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

* Re: [PATCH 0/2] python3-pip & python3-setuptools: extend to nativesdk
  2017-09-11 15:07   ` Burton, Ross
@ 2017-09-12  1:34     ` ChenQi
  0 siblings, 0 replies; 6+ messages in thread
From: ChenQi @ 2017-09-12  1:34 UTC (permalink / raw)
  To: Burton, Ross; +Cc: OE-core

[-- Attachment #1: Type: text/plain, Size: 2122 bytes --]

On 09/11/2017 11:07 PM, Burton, Ross wrote:
> These are in master-next.
>
> Ross
>

Thanks Ross.

There are three other patch series on the mailing list.
Is it possible for these patches to get into this release? Or we need to 
wait for the development cycle for the next release?
Their titles are:
[OE-core] [PATCH 0/2] systemd: fix dependency issue related to serial getty
[OE-core] [PATCH 0/2] disallow multiple syslog daemons to be installed
[OE-core] [PATCH 0/1] iputils: backport patch to fix arping hang problem

Best Regards,
Chen Qi

> On 11 September 2017 at 02:44, ChenQi <Qi.Chen@windriver.com 
> <mailto:Qi.Chen@windriver.com>> wrote:
>
>     ping
>
>     On 09/06/2017 12:54 PM, Chen Qi wrote:
>
>         The following changes since commit
>         8b4f16a9cbbaf521461f699b7264fac2ac872581:
>
>            mesa-gl: Fix build after recent mesa PACKAGECONFIG changes
>         (2017-09-05 15:01:02 +0100)
>
>         are available in the git repository at:
>
>            git://git.pokylinux.org/poky-contrib
>         <http://git.pokylinux.org/poky-contrib> ChenQi/python3-nativesdk
>         http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=ChenQi/python3-nativesdk
>         <http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=ChenQi/python3-nativesdk>
>
>         Chen Qi (2):
>            python3-pip: extend to nativesdk
>            python3-setuptools: extend to nativesdk
>
>           meta/recipes-devtools/python/python3-pip_9.0.1.bb
>         <http://python3-pip_9.0.1.bb>  | 2 +-
>           meta/recipes-devtools/python/python3-setuptools_36.2.7.bb
>         <http://python3-setuptools_36.2.7.bb> | 7 ++++---
>           2 files changed, 5 insertions(+), 4 deletions(-)
>
>
>     -- 
>     _______________________________________________
>     Openembedded-core mailing list
>     Openembedded-core@lists.openembedded.org
>     <mailto:Openembedded-core@lists.openembedded.org>
>     http://lists.openembedded.org/mailman/listinfo/openembedded-core
>     <http://lists.openembedded.org/mailman/listinfo/openembedded-core>
>
>


[-- Attachment #2: Type: text/html, Size: 4715 bytes --]

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

end of thread, other threads:[~2017-09-12  1:29 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-06  4:54 [PATCH 0/2] python3-pip & python3-setuptools: extend to nativesdk Chen Qi
2017-09-06  4:54 ` [PATCH 1/2] python3-pip: " Chen Qi
2017-09-06  4:54 ` [PATCH 2/2] python3-setuptools: " Chen Qi
2017-09-11  1:44 ` [PATCH 0/2] python3-pip & " ChenQi
2017-09-11 15:07   ` Burton, Ross
2017-09-12  1:34     ` ChenQi

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.