From: Koen Kooi <k.kooi@student.utwente.nl>
To: openembedded-devel@openembedded.org
Subject: Re: [PATCH] gst-plugins: fixed pattern for meta package dependencies.
Date: Thu, 21 May 2009 16:07:56 +0200 [thread overview]
Message-ID: <gv3n7s$1gg$1@ger.gmane.org> (raw)
In-Reply-To: <1242912094-26435-1-git-send-email-ihar.hrachyshka@gmail.com>
On 21-05-09 15:21, Ihar Hrachyshka wrote:
> This fixes package name matching so that gst-plugins-*-meta
> packages include all the plugin ones. The current matching
> implementation doesn't make meta packages depend on gst-plugins
> with 'locale' and 'dev' in their names (f.e. gstfbdevsink).
This patch looks OK, but you need to bump PR for the affected recipes as
well. (Someone will probably mention INC_PR soon ;))
regards,
Koen
> Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
> ---
> recipes/gstreamer/gst-plugins.inc | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/recipes/gstreamer/gst-plugins.inc b/recipes/gstreamer/gst-plugins.inc
> index bcb3e39..0156cff 100644
> --- a/recipes/gstreamer/gst-plugins.inc
> +++ b/recipes/gstreamer/gst-plugins.inc
> @@ -33,7 +33,7 @@ python populate_packages_prepend () {
> metapkg_rdepends = []
> packages = bb.data.getVar('PACKAGES', d, 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( 'locale' ):
> + if not pkg in blacklist and not pkg in metapkg_rdepends and not pkg.endswith('-dev') and not pkg.endswith('-locale'):
> metapkg_rdepends.append(pkg)
> bb.data.setVar('RDEPENDS_' + metapkg, ' '.join(metapkg_rdepends), d)
> bb.data.setVar('DESCRIPTION_' + metapkg, pn + ' meta package', d)
next prev parent reply other threads:[~2009-05-21 14:16 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-05-21 13:21 [PATCH] gst-plugins: fixed pattern for meta package dependencies Ihar Hrachyshka
2009-05-21 14:07 ` Koen Kooi [this message]
2009-05-21 14:23 ` Otavio Salvador
2009-05-21 14:23 ` Ihar Hrachyshka
2009-05-21 14:50 ` Ihar Hrachyshka
2009-05-21 15:37 ` Ihar Hrachyshka
2009-05-21 15:44 ` Koen Kooi
2009-05-21 16:07 ` Ihar Hrachyshka
2009-05-21 15:44 ` Ihar Hrachyshka
2009-05-21 15:47 ` Phil Blundell
2009-05-21 15:48 ` Phil Blundell
2009-05-24 18:37 ` Ihar Hrachyshka
2009-05-24 19:59 ` Phil Blundell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='gv3n7s$1gg$1@ger.gmane.org' \
--to=k.kooi@student.utwente.nl \
--cc=openembedded-devel@lists.openembedded.org \
--cc=openembedded-devel@openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.