[oe] fakeroot 1.14.5 source is missing

2011-07-30 Thread Andreas Mueller
Hi guys,

I tried to build an image based on gumstix overo-2011 branch [1] but the 
sources 
for fakeroot 1.14.5 can not be downloaded.

ERROR: fakeroot-native-1.14.5: 
ftp://ftp.debian.org/debian/pool/main/f/fakeroot/fakeroot_1.14.5.orig.tar.bz2 
cannot check archive integrity

In [2] I saw that it is it is not there ( anymore ? ).

As far as I can see we have the same issue in mainline oe 2011.03-maintenance.

[1] http://gitorious.org/gumstix-oe/mainline/commits/overo-2011.03
[2] ftp://ftp.debian.org/debian/pool/main/f/fakeroot/

___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


Re: [oe] fakeroot 1.14.5 source is missing

2011-07-30 Thread Cyril Brulebois
Hi,

Andreas Mueller schnitzelt...@gmx.de (30/07/2011):
 Hi guys,
 
 I tried to build an image based on gumstix overo-2011 branch [1] but the 
 sources 
 for fakeroot 1.14.5 can not be downloaded.
 
 ERROR: fakeroot-native-1.14.5: 
 ftp://ftp.debian.org/debian/pool/main/f/fakeroot/fakeroot_1.14.5.orig.tar.bz2 
 cannot check archive integrity
 
 In [2] I saw that it is it is not there ( anymore ? ).

pointing to packages which are in unstable or testing feels very wrong.
New versions can come up at any time in unstable, and (if some
constraints are satisfied), can move to testing and overwrite what was
there before. (But pointing to packages in stable would buy you several
years.)

If you need to point to such a package anyway, I'd suggest considering
snapshot.debian.org, which should retain all packages. For example:
  http://snapshot.debian.org/package/fakeroot/1.14.5-1/

http://snapshot.debian.org/archive/debian/20101205T211007Z/pool/main/f/fakeroot/fakeroot_1.14.5.orig.tar.bz2

As a consequence, the URL to the original tarball includes a date
(meaning “fakeroot as seen in Debian as of $date), but I guess that
won't cause any issue.

If you have more Debian-related questions, feel free to ask.

Cheers,
-- 
Cyril Brulebois
Support AriadNEXT
0 825 590 003

___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


Re: [oe] fakeroot 1.14.5 source is missing

2011-07-30 Thread Andreas Mueller
On Saturday, July 30, 2011 12:42:40 PM Andreas Mueller wrote:
 Hi guys,
 
 I tried to build an image based on gumstix overo-2011 branch [1] but the
 sources for fakeroot 1.14.5 can not be downloaded.
 
 ERROR: fakeroot-native-1.14.5:
 ftp://ftp.debian.org/debian/pool/main/f/fakeroot/fakeroot_1.14.5.orig.tar.b
 z2 cannot check archive integrity
 
 In [2] I saw that it is it is not there ( anymore ? ).
 
 As far as I can see we have the same issue in mainline oe
 2011.03-maintenance.
 
 [1] http://gitorious.org/gumstix-oe/mainline/commits/overo-2011.03
 [2] ftp://ftp.debian.org/debian/pool/main/f/fakeroot/
 
I don't know how to create the 'official' pull request bur I think we need to 
pull 

commit 085dc5e99abf98772bfb44f3f25320418d500740
Author: Florian Boor florian.b...@kernelconcepts.de
Date:   Thu May 5 11:28:09 2011 +0200

fakeroot: Move from not fetchable 1.14.5 to 1.15.1

Fakeroot 1.14.5 was not fetchable any more. Updating to 1.15.1.

Test environment:
BB_VERSION= 1.10.2
METADATA_BRANCH   = org.openembedded.dev
TARGET_ARCH   = arm
TARGET_OS = linux-gnueabi
MACHINE   = mainstone
DISTRO= minimal
DISTRO_VERSION= dev-snapshot-20110504
TARGET_FPU= soft

Signed-off-by: Florian Boor florian.b...@kernelconcepts.de

into 2011.03-maintenance.

Andreas

___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [RFC] oe style-guide change

2011-07-30 Thread Andreas Mueller
Hi,

working on xfce I face a problem with our style-guide (and I think there are 
other packets affected too e.g gnome recipes?):

In the xfce.bbclass there is a SRC_URI created from recipe name. This fits for 
95% of the recipes. Following style-guide [1] I would add patches by writing 
something like

SRC_URI += foo.patch
inherit xfce

Problem is that xfce.bbclass sets SRC_URI with

SRC_URI  = ...

Since I want to give recipes the chance to overwrite the suggestion coming from 
xfce.bbclass ( e.g thunar souce starts with capital letter ) I cannot write 
something like

SRC_URI =+ ..

in xfce.bbclass.

Therfore I suggest to have the style-guide changed so that we have

inherit ... 
SRC_URI
S

What do our gurus think about this?

Andreas

[1] http://wiki.openembedded.org/index.php/Styleguide

___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


Re: [oe] [RFC] oe style-guide change

2011-07-30 Thread Paul Menzel
Dear Andreas,


Am Samstag, den 30.07.2011, 15:10 +0200 schrieb Andreas Mueller:

 working on xfce I face a problem with our style-guide (and I think there are 
 other packets affected too e.g gnome recipes?):
 
 In the xfce.bbclass there is a SRC_URI created from recipe name. This fits 
 for 
 95% of the recipes. Following style-guide [1] I would add patches by writing 
 something like
 
 SRC_URI += foo.patch
 inherit xfce
 
 Problem is that xfce.bbclass sets SRC_URI with
 
 SRC_URI  = ...
 
 Since I want to give recipes the chance to overwrite the suggestion coming 
 from 
 xfce.bbclass ( e.g thunar souce starts with capital letter ) I cannot write 
 something like
 
 SRC_URI =+ ..
 
 in xfce.bbclass.
 
 Therfore I suggest to have the style-guide changed so that we have
 
 inherit ... 
 SRC_URI
 S
 
 What do our gurus think about this?

It would be nice to know why the ordering is this way the first place. I
do not know that and therefore your proposal sounds reasonable.

In a lot of cases `SRC_URI` is set in an include file which is than
included using `require xfce.inc` in the very first line.

I do not know when classes are preferred over include files.


Thanks,

Paul


 [1] http://wiki.openembedded.org/index.php/Styleguide


signature.asc
Description: This is a digitally signed message part
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


Re: [oe] fakeroot 1.14.5 source is missing

2011-07-30 Thread Koen Kooi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Op 30-07-11 13:12, Andreas Mueller schreef:
 On Saturday, July 30, 2011 12:42:40 PM Andreas Mueller wrote:
 Hi guys,
 
 I tried to build an image based on gumstix overo-2011 branch [1] but the 
 sources for fakeroot 1.14.5 can not be downloaded.
 
 ERROR: fakeroot-native-1.14.5: 
 ftp://ftp.debian.org/debian/pool/main/f/fakeroot/fakeroot_1.14.5.orig.tar.b 
 z2 cannot check archive integrity
 
 In [2] I saw that it is it is not there ( anymore ? ).
 
 As far as I can see we have the same issue in mainline oe 
 2011.03-maintenance.
 
 [1] http://gitorious.org/gumstix-oe/mainline/commits/overo-2011.03 [2] 
 ftp://ftp.debian.org/debian/pool/main/f/fakeroot/
 
 I don't know how to create the 'official' pull request bur I think we need to 
 pull
 
 commit 085dc5e99abf98772bfb44f3f25320418d500740 Author: Florian Boor 
 florian.b...@kernelconcepts.de Date:   Thu May 5 11:28:09 2011 +0200
 
 fakeroot: Move from not fetchable 1.14.5 to 1.15.1
 
 Fakeroot 1.14.5 was not fetchable any more. Updating to 1.15.1.
 
 Test environment: BB_VERSION= 1.10.2 METADATA_BRANCH   = 
 org.openembedded.dev TARGET_ARCH   = arm TARGET_OS = 
 linux-gnueabi MACHINE   = mainstone DISTRO= minimal 
 DISTRO_VERSION= dev-snapshot-20110504 TARGET_FPU= soft
 
 Signed-off-by: Florian Boor florian.b...@kernelconcepts.de
 
 into 2011.03-maintenance.

http://lists.linuxtogo.org/pipermail/openembedded-devel/2011-June/033373.html
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (Darwin)

iD8DBQFONCLYMkyGM64RGpERAqsYAJwLnvUe7fKAmA9HeOEti1LxU7cLBgCgi5ag
jsG6WtTJWRZOvVbI2z2g/vk=
=H4or
-END PGP SIGNATURE-


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


Re: [oe] fakeroot 1.14.5 source is missing

2011-07-30 Thread Tom Rini
On 07/30/2011 04:12 AM, Andreas Mueller wrote:
 On Saturday, July 30, 2011 12:42:40 PM Andreas Mueller wrote:
 Hi guys,

 I tried to build an image based on gumstix overo-2011 branch [1] but the
 sources for fakeroot 1.14.5 can not be downloaded.

 ERROR: fakeroot-native-1.14.5:
 ftp://ftp.debian.org/debian/pool/main/f/fakeroot/fakeroot_1.14.5.orig.tar.b
 z2 cannot check archive integrity

 In [2] I saw that it is it is not there ( anymore ? ).

 As far as I can see we have the same issue in mainline oe
 2011.03-maintenance.

 [1] http://gitorious.org/gumstix-oe/mainline/commits/overo-2011.03
 [2] ftp://ftp.debian.org/debian/pool/main/f/fakeroot/

 I don't know how to create the 'official' pull request bur I think we need to 
 pull 
 
 commit 085dc5e99abf98772bfb44f3f25320418d500740
 Author: Florian Boor florian.b...@kernelconcepts.de
 Date:   Thu May 5 11:28:09 2011 +0200
 
 fakeroot: Move from not fetchable 1.14.5 to 1.15.1
 
 Fakeroot 1.14.5 was not fetchable any more. Updating to 1.15.1.
 
 Test environment:
 BB_VERSION= 1.10.2
 METADATA_BRANCH   = org.openembedded.dev
 TARGET_ARCH   = arm
 TARGET_OS = linux-gnueabi
 MACHINE   = mainstone
 DISTRO= minimal
 DISTRO_VERSION= dev-snapshot-20110504
 TARGET_FPU= soft
 
 Signed-off-by: Florian Boor florian.b...@kernelconcepts.de
 
 into 2011.03-maintenance.

2011.03-maintenance expects you to have a source mirror available as
there are a number of cases like this.  Further, I want to avoid the
tzdata/tzcode tracking.  I am open to getting this mirrored on the oe
mirror site as well, but I don't have access to putting things there :)

-- 
Tom Rini
Mentor Graphics Corporation

___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [�PATCH] mplayer: fix linker error

2011-07-30 Thread Josua Mayer
From: = =

* use already existing patch fix-emu_qtx_api.diff
---
 recipes/mplayer/mplayer_git.bb |1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/recipes/mplayer/mplayer_git.bb b/recipes/mplayer/mplayer_git.bb
index 259ce99..5f15618 100644
--- a/recipes/mplayer/mplayer_git.bb
+++ b/recipes/mplayer/mplayer_git.bb
@@ -8,6 +8,7 @@ DEPENDS = libvpx live555 libdvdread libtheora virtual/libsdl 
ffmpeg xsp zlib li
 RDEPENDS_${PN} = mplayer-common
 LICENSE = GPL
 SRC_URI = git://repo.or.cz/mplayer/glamo.git;protocol=git;branch=mplayer2 \
+   file://fix-emu_qtx_api.diff \

 
 SRC_URI_append_armv7a =  \
-- 
1.7.5.3


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


Re: [oe] understanding overlays

2011-07-30 Thread Khem Raj
On Thursday, July 28, 2011 07:48:43 AM Steffen Sledz wrote:
 On 27.07.2011 18:12, Chris Larson wrote:
  On Wed, Jul 27, 2011 at 7:24 AM, Steffen Sledz sl...@dresearch-fe.de 
wrote:
  I'm not really familiar with the oe/bitbake overlay details. So please
  forgive me if this is a faq. ;-)
  
  Is the overlay package or file based?
  
  Or in other words is the following scenario possible?
  
  base layer:
   recipes/
   
 foo/
 
   foo.inc
   foo_x.y.z.bb
  
  overlay:
   recipes/
   
 foo/
 
   foo.inc
  
  And than build foo-x.y.z with the foo.inc from the overlay.
  
  That depends. If the .bb does 'require foo.inc', then no, it will use
  the local one. If it does 'require recipes/foo/foo.inc', then yes, it
  will use the overlay one, assuming the overlay is before the main
  layer in your BBLAYERS.
 
 Thx. What about files referenced e.g. in SRC_URI? I assume that always the
 ones from the 'highest' layer are used. Right?

It will consider the BBFILE_PRIORITY for recipe files. but .inc and other 
metadata are searched in order of paths in BBPATH

-- 
Khem Raj

___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


Re: [oe] [beagleboard] [PATCH] gst-plugins-good: v4l2src: Make Leapoard Imaging VGA Camera work out of the box

2011-07-30 Thread Joel A Fernandes
On Sat, Jul 30, 2011 at 2:31 AM, Koen Kooi k...@beagleboard.org wrote:

 Op 30 jul. 2011, om 00:58 heeft Joel A Fernandes het volgende geschreven:

 Format enumeration in Gstreamer expects drivers to implement VIDIOC_ENUM_FMT 
 and if not, it calls
 VIDIOC_TRY_FMT on a set of emulated formats which could be unsupported 
 resulting in failure of
 the format negotiation stage [1]

 We add UYVY to the set of formats making the mt9v113 sensor in this camera 
 board and other sensors
 that don't support the emulated formats work out-of-the box without needing 
 a caps filter element

 [1] 
 http://lists.freedesktop.org/archives/gstreamer-devel/2011-July/032425.html

 Signed-off-by: Joel A Fernandes agnel.j...@gmail.com
 ---
 ...-UYVY-color-format-to-the-list-of-enumera.patch |   43 
 
 recipes/gstreamer/gst-plugins-good_0.10.28.bb      |    4 +-
 2 files changed, 46 insertions(+), 1 deletions(-)
 create mode 100644 
 recipes/gstreamer/gst-plugins-good/0001-v4l2src-Add-UYVY-color-format-to-the-list-of-enumera.patch

 diff --git 
 a/recipes/gstreamer/gst-plugins-good/0001-v4l2src-Add-UYVY-color-format-to-the-list-of-enumera.patch
  
 b/recipes/gstreamer/gst-plugins-good/0001-v4l2src-Add-UYVY-color-format-to-the-list-of-enumera.patch
 new file mode 100644
 index 000..88a0125
 --- /dev/null
 +++ 
 b/recipes/gstreamer/gst-plugins-good/0001-v4l2src-Add-UYVY-color-format-to-the-list-of-enumera.patch
 @@ -0,0 +1,43 @@
 +From d5a1f365bfd4420912735709bcb8004d3ad7226c Mon Sep 17 00:00:00 2001
 +From: Joel A Fernandes agnel.j...@gmail.com
 +Date: Fri, 29 Jul 2011 17:23:43 -0500
 +Subject: [PATCH] v4l2src: Add UYVY color format to the list of enumerations
 +
 +OMAP3 ISP returns -EINVAL for VIDIOC_ENUM_FMT ioctl on video node. Due to 
 this, format negotiation fails. This adds UYVY format to the list of 
 enumerations.

 I must be missing something, but what has negotation failure to do with 
 adding a new format? I would expect adding new formats not to have any effect 
 if negotiation fails.

The way it works is:

Enumerate formats - Negotiate formats between source and sink pads
and set the format

Enumerate formats doesn't return UYVY (The driver is supposed to
return this but ENUM_FMT ioctl is not implemented in ISP like I was
saying). Due to this, the negotiate function is either unable to find
a matching format on the sink pad (if you used a UYVY caps filter
element) or fails to set the format if you used a more general
element.


 Anyway, could you add a 'upstream-status' tag to the patch as described in 
 http://wiki.openembedded.org/index.php/Commit_Patch_Message_Guidelines#Patch_Header_Recommendations
  ?

This patch is more like a harmless hack which works around a
limitation of the driver. It is unlikely that it will be accepted by
upstream or if it should even be submitted as an RFC. Considering
this, would it be ok if I prepended HACK! to the title? I noticed
this in your 1GHz patches

Thanks,
Joel

___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


Re: [oe] fakeroot 1.14.5 source is missing

2011-07-30 Thread Khem Raj
On Saturday, July 30, 2011 08:14:37 AM Tom Rini wrote:
 On 07/30/2011 04:12 AM, Andreas Mueller wrote:
  On Saturday, July 30, 2011 12:42:40 PM Andreas Mueller wrote:
  Hi guys,
  
  I tried to build an image based on gumstix overo-2011 branch [1] but
  the
  sources for fakeroot 1.14.5 can not be downloaded.
  
  ERROR: fakeroot-native-1.14.5:
  ftp://ftp.debian.org/debian/pool/main/f/fakeroot/fakeroot_1.14.5.orig.
  tar.b z2 cannot check archive integrity
  
  In [2] I saw that it is it is not there ( anymore ? ).
  
  As far as I can see we have the same issue in mainline oe
  2011.03-maintenance.
  
  [1] http://gitorious.org/gumstix-oe/mainline/commits/overo-2011.03
  [2] ftp://ftp.debian.org/debian/pool/main/f/fakeroot/
  
  I don't know how to create the 'official' pull request bur I think we
  need to pull
  
  commit 085dc5e99abf98772bfb44f3f25320418d500740
  Author: Florian Boor florian.b...@kernelconcepts.de
  Date:   Thu May 5 11:28:09 2011 +0200
  
  fakeroot: Move from not fetchable 1.14.5 to 1.15.1
  
  Fakeroot 1.14.5 was not fetchable any more. Updating to 1.15.1.
  
  Test environment:
  BB_VERSION= 1.10.2
  METADATA_BRANCH   = org.openembedded.dev
  TARGET_ARCH   = arm
  TARGET_OS = linux-gnueabi
  MACHINE   = mainstone
  DISTRO= minimal
  DISTRO_VERSION= dev-snapshot-20110504
  TARGET_FPU= soft
  
  Signed-off-by: Florian Boor florian.b...@kernelconcepts.de
  
  into 2011.03-maintenance.
 
 2011.03-maintenance expects you to have a source mirror available as
 there are a number of cases like this.  

this is stashed on source.openembedded.org now


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


Re: [oe] [?PATCH] mplayer: fix linker error

2011-07-30 Thread Paul Menzel
Dear Josua,


thank you for your patch. A couple of remarks.

Am Samstag, den 30.07.2011, 18:14 +0200 schrieb Josua Mayer:
 From: = =

1. Please fix this line above.
2. If there are several recipe versions, also note in the commit summary
which version you changed.

mplayer_git: fix linker error

 * use already existing patch fix-emu_qtx_api.diff

3. Your Signed-off-by line is missing. Please read our commit policy
[1]. Please also read the other policies and howtos [3][4].
4. Somehow a question mark slipped into the patch tag in the
subject/commit summary: `[?PATCH]`. Please resend your patch with a
correct line, so that our patch queue can pick your patch up [2].
5. One question regarding your patch. What build configuration do you
use? With `angstrom-2010.x` for `MACHINE = beagleboard` it works fine.
For `minimal` with the same machine it fails with the following error.

| Checking for LIVE555 Streaming Media libraries ... yes
| Checking for FFmpeg (libavutil libavcodec libavformat libswscale libpostproc) 
...
| Error: Unable to find development files for some of the FFmpeg libraries 
above. Aborting. If you really mean to compile without FFmpeg support use 
--disable-ffmpeg.
|
| Check config.log if you do not understand why it failed.

So I am wondering why you experience this error.

 ---
  recipes/mplayer/mplayer_git.bb |1 +
  1 files changed, 1 insertions(+), 0 deletions(-)
 
 diff --git a/recipes/mplayer/mplayer_git.bb b/recipes/mplayer/mplayer_git.bb
 index 259ce99..5f15618 100644
 --- a/recipes/mplayer/mplayer_git.bb
 +++ b/recipes/mplayer/mplayer_git.bb
 @@ -8,6 +8,7 @@ DEPENDS = libvpx live555 libdvdread libtheora virtual/libsdl 
 ffmpeg xsp zlib li
  RDEPENDS_${PN} = mplayer-common
  LICENSE = GPL
  SRC_URI = git://repo.or.cz/mplayer/glamo.git;protocol=git;branch=mplayer2 \
 + file://fix-emu_qtx_api.diff \
 
  
  SRC_URI_append_armv7a =  \


Thanks,

Paul


[1] http://openembedded.org/index.php/Commit_Policy
[2] http://patches.openembedded.org/project/oe/list/
[3] http://openembedded.org/index.php/How_to_submit_a_patch_to_OpenEmbedded
[4] http://openembedded.org/index.php/Commit_Patch_Message_Guidelines


signature.asc
Description: This is a digitally signed message part
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel