All of lore.kernel.org
 help / color / mirror / Atom feed
* [2011.03-maintenance][PATCH 0/1] Pull request 20110723
@ 2012-07-24  4:52 Denys Dmytriyenko
  2012-07-24  4:52 ` [2011.03-maintenance][PATCH 1/1] opkg-utils: bump SRCREV to pick up subprocess.check_output fixes Denys Dmytriyenko
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Denys Dmytriyenko @ 2012-07-24  4:52 UTC (permalink / raw)
  To: openembedded-devel

Tom,

Please pull this commit that fixes opkg-utils when generating pkg index

Pull URL: git://arago-project.org/git/people/denix/openembedded.git
  Branch: 2011.03-maintenance
  Browse: http://arago-project.org/git/people/?p=denix/openembedded.git;a=shortlog;h=refs/heads/2011.03-maintenance

Thanks,
    Denys Dmytriyenko <denys@ti.com>
---

The following changes since commit f9611c025109a3e0d6cebf12f49ae24c97759c09:

  psplash: convert from svn.o-hand.com to git.yoctoproject.org (2012-07-04 22:34:04 +0200)

are available in the git repository at:
  git://arago-project.org/git/people/denix/openembedded 2011.03-maintenance

Denys Dmytriyenko (1):
  opkg-utils: bump SRCREV to pick up subprocess.check_output fixes

 recipes/opkg-utils/opkg-utils_git.bb |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

-- 
1.7.8.6




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

* [2011.03-maintenance][PATCH 1/1] opkg-utils: bump SRCREV to pick up subprocess.check_output fixes
  2012-07-24  4:52 [2011.03-maintenance][PATCH 0/1] Pull request 20110723 Denys Dmytriyenko
@ 2012-07-24  4:52 ` Denys Dmytriyenko
  2012-07-24  8:26 ` [2011.03-maintenance][PATCH 0/1] Pull request 20110723 Apelete Seketeli
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Denys Dmytriyenko @ 2012-07-24  4:52 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Denys Dmytriyenko

From: Denys Dmytriyenko <denys@ti.com>

There were few breakages related to subprocess.check_output() with Python
versions prior to 2.7 (although I had them even with 2.7.3), most notably
in opkg-make-index:

Log data follows:
| + do_package_update_index_ipk
| + set -x
| + ipkgarchs='all any noarch arm  armv4 armv4t armv5te armv6 armv7 armv7a am37x-evm'
| + '[' '!' -z '' ']'
| + mkdir -p /OE/deploy/glibc/ipk
| + touch /OE/deploy/glibc/ipk/Packages
| + opkg-make-index -r /OE/deploy/glibc/ipk/Packages -p /OE/deploy/glibc/ipk/Packages -l /OE/deploy/glibc/ipk/Packages.filelist -m /OE/deploy/glibc/ipk
| Traceback (most recent call last):
|   File "/OE/sysroots/x86_64-linux/usr/bin/opkg-make-index", line 189, in <module>
|     rc = subprocess.check_output(gzip_cmd, shell=True)
| AttributeError: 'module' object has no attribute 'check_output'
NOTE: package my-image-1.0-r0: task do_package_update_index_ipk: Failed

The following fixes are required:
http://git.yoctoproject.org/cgit/cgit.cgi/opkg-utils/commit/?id=423ecd36b4782327c16f516885d1248249c7724a
http://git.yoctoproject.org/cgit/cgit.cgi/opkg-utils/commit/?id=49cc783d8e0415059d126ae22c892988717ffda7

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 recipes/opkg-utils/opkg-utils_git.bb |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/opkg-utils/opkg-utils_git.bb b/recipes/opkg-utils/opkg-utils_git.bb
index 997b292..a9c9803 100644
--- a/recipes/opkg-utils/opkg-utils_git.bb
+++ b/recipes/opkg-utils/opkg-utils_git.bb
@@ -6,9 +6,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
                      file://opkg.py;beginline=1;endline=18;md5=15917491ad6bf7acc666ca5f7cc1e083"
 RDEPENDS_${PN} = "python"
 RDEPENDS_${PN}_virtclass-native = ""
-SRCREV = "44df9dd3dc411ca1255cb4b23bde7eb71aed4778"
+SRCREV = "49cc783d8e0415059d126ae22c892988717ffda7"
 PV = "0.1.8+git${SRCPV}"
-PR = "r1"
+PR = "r2"
 
 SRC_URI = "git://git.yoctoproject.org/opkg-utils;protocol=git \
            "
-- 
1.7.8.6




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

* Re: [2011.03-maintenance][PATCH 0/1] Pull request 20110723
  2012-07-24  4:52 [2011.03-maintenance][PATCH 0/1] Pull request 20110723 Denys Dmytriyenko
  2012-07-24  4:52 ` [2011.03-maintenance][PATCH 1/1] opkg-utils: bump SRCREV to pick up subprocess.check_output fixes Denys Dmytriyenko
@ 2012-07-24  8:26 ` Apelete Seketeli
  2012-07-30 17:19 ` Denys Dmytriyenko
  2012-07-30 21:09 ` Tom Rini
  3 siblings, 0 replies; 5+ messages in thread
From: Apelete Seketeli @ 2012-07-24  8:26 UTC (permalink / raw)
  To: openembedded-devel

Le 24-Jul-12 à 00:52:28 -0400, Denys Dmytriyenko a écrit:
> Tom,
> 
> Please pull this commit that fixes opkg-utils when generating pkg index
> 
> Pull URL: git://arago-project.org/git/people/denix/openembedded.git
>   Branch: 2011.03-maintenance
>   Browse: http://arago-project.org/git/people/?p=denix/openembedded.git;a=shortlog;h=refs/heads/2011.03-maintenance
> 
> Thanks,
>     Denys Dmytriyenko <denys@ti.com>
> ---
> 
> The following changes since commit f9611c025109a3e0d6cebf12f49ae24c97759c09:
> 
>   psplash: convert from svn.o-hand.com to git.yoctoproject.org (2012-07-04 22:34:04 +0200)
> 
> are available in the git repository at:
>   git://arago-project.org/git/people/denix/openembedded 2011.03-maintenance
> 
> Denys Dmytriyenko (1):
>   opkg-utils: bump SRCREV to pick up subprocess.check_output fixes
> 
>  recipes/opkg-utils/opkg-utils_git.bb |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> -- 
> 1.7.8.6

Thanks for fixing this. I wasn't aware of that last commit, 49cc78, on
the yocto tree when I did my pull request.

Cheers.
-- 
        Apelete



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

* Re: [2011.03-maintenance][PATCH 0/1] Pull request 20110723
  2012-07-24  4:52 [2011.03-maintenance][PATCH 0/1] Pull request 20110723 Denys Dmytriyenko
  2012-07-24  4:52 ` [2011.03-maintenance][PATCH 1/1] opkg-utils: bump SRCREV to pick up subprocess.check_output fixes Denys Dmytriyenko
  2012-07-24  8:26 ` [2011.03-maintenance][PATCH 0/1] Pull request 20110723 Apelete Seketeli
@ 2012-07-30 17:19 ` Denys Dmytriyenko
  2012-07-30 21:09 ` Tom Rini
  3 siblings, 0 replies; 5+ messages in thread
From: Denys Dmytriyenko @ 2012-07-30 17:19 UTC (permalink / raw)
  To: openembedded-devel

Ping.

On Tue, Jul 24, 2012 at 12:52:28AM -0400, Denys Dmytriyenko wrote:
> Tom,
> 
> Please pull this commit that fixes opkg-utils when generating pkg index
> 
> Pull URL: git://arago-project.org/git/people/denix/openembedded.git
>   Branch: 2011.03-maintenance
>   Browse: http://arago-project.org/git/people/?p=denix/openembedded.git;a=shortlog;h=refs/heads/2011.03-maintenance
> 
> Thanks,
>     Denys Dmytriyenko <denys@ti.com>
> ---
> 
> The following changes since commit f9611c025109a3e0d6cebf12f49ae24c97759c09:
> 
>   psplash: convert from svn.o-hand.com to git.yoctoproject.org (2012-07-04 22:34:04 +0200)
> 
> are available in the git repository at:
>   git://arago-project.org/git/people/denix/openembedded 2011.03-maintenance
> 
> Denys Dmytriyenko (1):
>   opkg-utils: bump SRCREV to pick up subprocess.check_output fixes
> 
>  recipes/opkg-utils/opkg-utils_git.bb |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> -- 
> 1.7.8.6
> 



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

* Re: [2011.03-maintenance][PATCH 0/1] Pull request 20110723
  2012-07-24  4:52 [2011.03-maintenance][PATCH 0/1] Pull request 20110723 Denys Dmytriyenko
                   ` (2 preceding siblings ...)
  2012-07-30 17:19 ` Denys Dmytriyenko
@ 2012-07-30 21:09 ` Tom Rini
  3 siblings, 0 replies; 5+ messages in thread
From: Tom Rini @ 2012-07-30 21:09 UTC (permalink / raw)
  To: openembedded-devel

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

On Tue, Jul 24, 2012 at 12:52:28AM -0400, Denys Dmytriyenko wrote:
> Tom,
> 
> Please pull this commit that fixes opkg-utils when generating pkg index
> 
> Pull URL: git://arago-project.org/git/people/denix/openembedded.git
>   Branch: 2011.03-maintenance
>   Browse: http://arago-project.org/git/people/?p=denix/openembedded.git;a=shortlog;h=refs/heads/2011.03-maintenance
> 
> Thanks,
>     Denys Dmytriyenko <denys@ti.com>
> ---
> 
> The following changes since commit f9611c025109a3e0d6cebf12f49ae24c97759c09:
> 
>   psplash: convert from svn.o-hand.com to git.yoctoproject.org (2012-07-04 22:34:04 +0200)
> 
> are available in the git repository at:
>   git://arago-project.org/git/people/denix/openembedded 2011.03-maintenance
> 
> Denys Dmytriyenko (1):
>   opkg-utils: bump SRCREV to pick up subprocess.check_output fixes
> 
>  recipes/opkg-utils/opkg-utils_git.bb |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)

Applied, thanks.

-- 
Tom

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

end of thread, other threads:[~2012-07-30 21:20 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-24  4:52 [2011.03-maintenance][PATCH 0/1] Pull request 20110723 Denys Dmytriyenko
2012-07-24  4:52 ` [2011.03-maintenance][PATCH 1/1] opkg-utils: bump SRCREV to pick up subprocess.check_output fixes Denys Dmytriyenko
2012-07-24  8:26 ` [2011.03-maintenance][PATCH 0/1] Pull request 20110723 Apelete Seketeli
2012-07-30 17:19 ` Denys Dmytriyenko
2012-07-30 21:09 ` Tom Rini

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.