* [PATCH] Integration of former (deprecated?) libao recipe from https://github.com/tworaz/oe-tworaz/blob/master/meta-jlime/recipes-support/libao/libao_1.1.0.bb
@ 2013-09-17 11:22 JC
2013-09-17 13:07 ` Paul Barker
0 siblings, 1 reply; 6+ messages in thread
From: JC @ 2013-09-17 11:22 UTC (permalink / raw)
To: openembedded-core; +Cc: JC Verdie
From: JC Verdie <jc.verdie@innotis.org>
Signed-off-by: JC Verdie <jc.verdie@innotis.org>
---
meta/recipes-multimedia/libao/libao_1.1.0.bb | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
create mode 100644 meta/recipes-multimedia/libao/libao_1.1.0.bb
diff --git a/meta/recipes-multimedia/libao/libao_1.1.0.bb b/meta/recipes-multimedia/libao/libao_1.1.0.bb
new file mode 100644
index 0000000..687e773
--- /dev/null
+++ b/meta/recipes-multimedia/libao/libao_1.1.0.bb
@@ -0,0 +1,21 @@
+SECTION = "multimedia"
+
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
+
+SRC_URI="http://downloads.xiph.org/releases/ao/${P}.tar.gz"
+SRC_URI[md5sum] = "2b2508c29bc97e4dc218fa162cf883c8"
+SRC_URI[sha256sum] = "29de5bb9b1726ba890455ef7e562d877df87811febb0d99ee69164b88c171bd4"
+
+inherit autotools
+
+do_install_append () {
+ find "${D}" -name '*.la' -exec rm -f {} +
+}
+
+python populate_packages_prepend () {
+ rootdir = bb.data.expand('${libdir}/ao/plugins-4', d)
+ rootdir_dbg = bb.data.expand('${libdir}/ao/plugins-4/.debug', d)
+ do_split_packages(d, rootdir, '^(.*)\.so$', output_pattern='${PN}-plugin-%s', description='AO %s plugin')
+ do_split_packages(d, rootdir_dbg, '^(.*)\.so$', output_pattern='${PN}-plugin-%s-dbg', description='AO %s plugin debug data')
+}
--
1.8.1.2
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH] Integration of former (deprecated?) libao recipe from https://github.com/tworaz/oe-tworaz/blob/master/meta-jlime/recipes-support/libao/libao_1.1.0.bb
2013-09-17 11:22 [PATCH] Integration of former (deprecated?) libao recipe from https://github.com/tworaz/oe-tworaz/blob/master/meta-jlime/recipes-support/libao/libao_1.1.0.bb JC
@ 2013-09-17 13:07 ` Paul Barker
2013-09-17 13:18 ` Paul Eggleton
0 siblings, 1 reply; 6+ messages in thread
From: Paul Barker @ 2013-09-17 13:07 UTC (permalink / raw)
To: JC; +Cc: JC Verdie, openembedded-core
On 17 September 2013 12:22, JC <jc@vtkloud.com> wrote:
> From: JC Verdie <jc.verdie@innotis.org>
>
> Signed-off-by: JC Verdie <jc.verdie@innotis.org>
Couple of tips on the commit message:
First line of the commit message should be "libao: add version 1.1.0"
or similar and should be and fairly short, put the link to the source
within the body of the commit message and possibly reference the
author of the recipe you're copying this from if you can.
--
Paul Barker
Email: paul@paulbarker.me.uk
http://www.paulbarker.me.uk
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] Integration of former (deprecated?) libao recipe from https://github.com/tworaz/oe-tworaz/blob/master/meta-jlime/recipes-support/libao/libao_1.1.0.bb
2013-09-17 13:07 ` Paul Barker
@ 2013-09-17 13:18 ` Paul Eggleton
2013-09-17 14:52 ` JC
0 siblings, 1 reply; 6+ messages in thread
From: Paul Eggleton @ 2013-09-17 13:18 UTC (permalink / raw)
To: JC; +Cc: JC Verdie, openembedded-core
On Tuesday 17 September 2013 14:07:01 Paul Barker wrote:
> On 17 September 2013 12:22, JC <jc@vtkloud.com> wrote:
> > From: JC Verdie <jc.verdie@innotis.org>
> >
> > Signed-off-by: JC Verdie <jc.verdie@innotis.org>
>
> Couple of tips on the commit message:
>
> First line of the commit message should be "libao: add version 1.1.0"
> or similar and should be and fairly short, put the link to the source
> within the body of the commit message and possibly reference the
> author of the recipe you're copying this from if you can.
Right. A few other things:
1) Since nothing in OE-Core needs this at the moment, this should really be
added to meta-multimedia (within the meta-openembedded repository) and sent to
the openembedded-devel mailing list marked with [meta-multimedia] in the
subject.
2) Please use ${BP} in SRC_URI rather than ${P} so that multilib builds can
work
3) It would be nice to have SUMMARY and HOMEPAGE set in the recipe (and
possibly also DESCRIPTION if you have a longer description).
Cheers,
Paul
--
Paul Eggleton
Intel Open Source Technology Centre
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH] Integration of former (deprecated?) libao recipe from https://github.com/tworaz/oe-tworaz/blob/master/meta-jlime/recipes-support/libao/libao_1.1.0.bb
2013-09-17 13:18 ` Paul Eggleton
@ 2013-09-17 14:52 ` JC
2013-09-17 17:39 ` Paul Eggleton
0 siblings, 1 reply; 6+ messages in thread
From: JC @ 2013-09-17 14:52 UTC (permalink / raw)
To: Paul Eggleton; +Cc: JC Verdie, openembedded-core
On 17/09/2013 09:18, Paul Eggleton wrote:
>
> Right. A few other things:
>
> 1) Since nothing in OE-Core needs this at the moment, this should really be
> added to meta-multimedia (within the meta-openembedded repository) and sent to
> the openembedded-devel mailing list marked with [meta-multimedia] in the
> subject.
>
> 2) Please use ${BP} in SRC_URI rather than ${P} so that multilib builds can
> work
>
> 3) It would be nice to have SUMMARY and HOMEPAGE set in the recipe (and
> possibly also DESCRIPTION if you have a longer description).
>
> Cheers,
> Paul
>
I sent a new one trying to comply with your reco. But I could not work
on head anymore, since it's broken (at least for me). I'm afraid the
patch appears to belong to "dylan" but I'm not a git guru enough to
check how to commit it at the right place (I mean, I could simply use my
non working git clone of HEAD and commit it untested but I'm not sure
that's the way to go).
I'm not sure how to add the [meta-multimedia] tag to the git send-mail,
also. Sorry for being dumb :(
Jay
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH] Integration of former (deprecated?) libao recipe from https://github.com/tworaz/oe-tworaz/blob/master/meta-jlime/recipes-support/libao/libao_1.1.0.bb
2013-09-17 14:52 ` JC
@ 2013-09-17 17:39 ` Paul Eggleton
2013-09-17 17:45 ` JC
0 siblings, 1 reply; 6+ messages in thread
From: Paul Eggleton @ 2013-09-17 17:39 UTC (permalink / raw)
To: JC; +Cc: JC Verdie, openembedded-core
On Tuesday 17 September 2013 10:52:22 JC wrote:
> On 17/09/2013 09:18, Paul Eggleton wrote:
> > Right. A few other things:
> >
> > 1) Since nothing in OE-Core needs this at the moment, this should really
> > be added to meta-multimedia (within the meta-openembedded repository) and
> > sent to the openembedded-devel mailing list marked with [meta-multimedia]
> > in the subject.
> >
> > 2) Please use ${BP} in SRC_URI rather than ${P} so that multilib builds
> > can work
> >
> > 3) It would be nice to have SUMMARY and HOMEPAGE set in the recipe (and
> > possibly also DESCRIPTION if you have a longer description).
>
> I sent a new one trying to comply with your reco. But I could not work
> on head anymore, since it's broken (at least for me). I'm afraid the
> patch appears to belong to "dylan" but I'm not a git guru enough to
> check how to commit it at the right place (I mean, I could simply use my
> non working git clone of HEAD and commit it untested but I'm not sure
> that's the way to go).
>
> I'm not sure how to add the [meta-multimedia] tag to the git send-mail,
> also. Sorry for being dumb :(
It's not being dumb, we all had to go through this at some point :)
You just need to re-send your latest version using git-send-email with the
--subject-prefix="meta-multimedia][PATCH" option to the openembedded-
devel@lists.openembedded.org mailing list rather than this one.
FWIW I did a quick build-test on top of master and it built successfully at
least.
Cheers,
Paul
--
Paul Eggleton
Intel Open Source Technology Centre
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH] Integration of former (deprecated?) libao recipe from https://github.com/tworaz/oe-tworaz/blob/master/meta-jlime/recipes-support/libao/libao_1.1.0.bb
2013-09-17 17:39 ` Paul Eggleton
@ 2013-09-17 17:45 ` JC
0 siblings, 0 replies; 6+ messages in thread
From: JC @ 2013-09-17 17:45 UTC (permalink / raw)
To: Paul Eggleton; +Cc: openembedded-core
On 17/09/2013 13:39, Paul Eggleton wrote:
> On Tuesday 17 September 2013 10:52:22 JC wrote:
>> On 17/09/2013 09:18, Paul Eggleton wrote:
>>> Right. A few other things:
>>>
>>> 1) Since nothing in OE-Core needs this at the moment, this should really
>>> be added to meta-multimedia (within the meta-openembedded repository) and
>>> sent to the openembedded-devel mailing list marked with [meta-multimedia]
>>> in the subject.
>>>
>>> 2) Please use ${BP} in SRC_URI rather than ${P} so that multilib builds
>>> can work
>>>
>>> 3) It would be nice to have SUMMARY and HOMEPAGE set in the recipe (and
>>> possibly also DESCRIPTION if you have a longer description).
>> I sent a new one trying to comply with your reco. But I could not work
>> on head anymore, since it's broken (at least for me). I'm afraid the
>> patch appears to belong to "dylan" but I'm not a git guru enough to
>> check how to commit it at the right place (I mean, I could simply use my
>> non working git clone of HEAD and commit it untested but I'm not sure
>> that's the way to go).
>>
>> I'm not sure how to add the [meta-multimedia] tag to the git send-mail,
>> also. Sorry for being dumb :(
> It's not being dumb, we all had to go through this at some point :)
>
> You just need to re-send your latest version using git-send-email with the
> --subject-prefix="meta-multimedia][PATCH" option to the openembedded-
> devel@lists.openembedded.org mailing list rather than this one.
>
> FWIW I did a quick build-test on top of master and it built successfully at
> least.
Thanks a lot Paul, I just did as instructed...
Jay
> Cheers,
> Paul
>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2013-09-17 17:45 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-17 11:22 [PATCH] Integration of former (deprecated?) libao recipe from https://github.com/tworaz/oe-tworaz/blob/master/meta-jlime/recipes-support/libao/libao_1.1.0.bb JC
2013-09-17 13:07 ` Paul Barker
2013-09-17 13:18 ` Paul Eggleton
2013-09-17 14:52 ` JC
2013-09-17 17:39 ` Paul Eggleton
2013-09-17 17:45 ` JC
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox