All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-multimedia][PATCH] libao: add version 1.1.0
@ 2013-09-17 17:47 JC
  2013-09-19 12:05 ` Martin Jansa
  0 siblings, 1 reply; 4+ messages in thread
From: JC @ 2013-09-17 17:47 UTC (permalink / raw)
  To: openembedded-devel

This is basically a 99% import of Peter Tworek's recipe from tworaz666@gmail.com found in https://github.com/tworaz/oe-tworaz/blob/master/meta-jlime/recipes-support/libao/libao_1.1.0.bb

Signed-off-by: JC <jc@vtkloud.com>
---
 .../recipes-multimedia/libao/libao_1.1.0.bb        | 23 ++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 meta-multimedia/recipes-multimedia/libao/libao_1.1.0.bb

diff --git a/meta-multimedia/recipes-multimedia/libao/libao_1.1.0.bb b/meta-multimedia/recipes-multimedia/libao/libao_1.1.0.bb
new file mode 100644
index 0000000..08950b5
--- /dev/null
+++ b/meta-multimedia/recipes-multimedia/libao/libao_1.1.0.bb
@@ -0,0 +1,23 @@
+SECTION = "multimedia"
+SUMMARY = "Libao is a cross-platform audio library that allows programs to output audio using a simple API on a wide variety of platforms"
+HOMEPAGE = "https://www.xiph.org/ao/"
+
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
+
+SRC_URI="http://downloads.xiph.org/releases/ao/${BP}.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='${BPN}-plugin-%s', description='AO %s plugin')
+    do_split_packages(d, rootdir_dbg, '^(.*)\.so$', output_pattern='${BPN}-plugin-%s-dbg', description='AO %s plugin debug data')
+}
-- 
1.8.1.2



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

* Re: [meta-multimedia][PATCH] libao: add version 1.1.0
  2013-09-17 17:47 [meta-multimedia][PATCH] libao: add version 1.1.0 JC
@ 2013-09-19 12:05 ` Martin Jansa
  2013-09-19 12:44   ` JC
  0 siblings, 1 reply; 4+ messages in thread
From: Martin Jansa @ 2013-09-19 12:05 UTC (permalink / raw)
  To: openembedded-devel

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

On Tue, Sep 17, 2013 at 01:47:16PM -0400, JC wrote:
> This is basically a 99% import of Peter Tworek's recipe from tworaz666@gmail.com found in https://github.com/tworaz/oe-tworaz/blob/master/meta-jlime/recipes-support/libao/libao_1.1.0.bb
> 
> Signed-off-by: JC <jc@vtkloud.com>

Please use full name in commits.

> ---
>  .../recipes-multimedia/libao/libao_1.1.0.bb        | 23 ++++++++++++++++++++++
>  1 file changed, 23 insertions(+)
>  create mode 100644 meta-multimedia/recipes-multimedia/libao/libao_1.1.0.bb
> 
> diff --git a/meta-multimedia/recipes-multimedia/libao/libao_1.1.0.bb b/meta-multimedia/recipes-multimedia/libao/libao_1.1.0.bb
> new file mode 100644
> index 0000000..08950b5
> --- /dev/null
> +++ b/meta-multimedia/recipes-multimedia/libao/libao_1.1.0.bb
> @@ -0,0 +1,23 @@
> +SECTION = "multimedia"
> +SUMMARY = "Libao is a cross-platform audio library that allows programs to output audio using a simple API on a wide variety of platforms"
> +HOMEPAGE = "https://www.xiph.org/ao/"
> +
> +LICENSE = "GPLv2"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
> +
> +SRC_URI="http://downloads.xiph.org/releases/ao/${BP}.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='${BPN}-plugin-%s', description='AO %s plugin')
> +    do_split_packages(d, rootdir_dbg, '^(.*)\.so$', output_pattern='${BPN}-plugin-%s-dbg', description='AO %s plugin debug data')
> +}
> -- 
> 1.8.1.2
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

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

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

* Re: [meta-multimedia][PATCH] libao: add version 1.1.0
  2013-09-19 12:05 ` Martin Jansa
@ 2013-09-19 12:44   ` JC
       [not found]     ` <20130919125451.GG18414@jama>
  0 siblings, 1 reply; 4+ messages in thread
From: JC @ 2013-09-19 12:44 UTC (permalink / raw)
  To: openembedded-devel; +Cc: openembedded-devel

Hi Martin



On jeu., sept. 19, 2013 at 2:03 PM, Martin Jansa <martin.jansa@gmail.com="mailto:martin.jansa@gmail.com">> wrote:
On Tue, Sep 17, 2013 at 01:47:16PM -0400, JC wrote:
> This is basically a 99% import of Peter Tworek's recipe from tworaz666@gmail.com found in https://github.com/tworaz/oe-tworaz/blob/master/meta-jlime/recipes-support/libao/libao_1.1.0.bb
> 
> Signed-off-by: JC <jc@vtkloud.com>

Please use full name in commits.



​

There's a genuine email address isn't it enough :)? It's harder than Facebook here ;)

Anyway, I'll update it but I'd like to see more reviews before to avoid doing a new patch just for that







Jay






> ---
>  .../recipes-multimedia/libao/libao_1.1.0.bb        | 23 ++++++++++++++++++++++
>  1 file changed, 23 insertions(+)
>  create mode 100644 meta-multimedia/recipes-multimedia/libao/libao_1.1.0.bb
> 
> diff --git a/meta-multimedia/recipes-multimedia/libao/libao_1.1.0.bb b/meta-multimedia/recipes-multimedia/libao/libao_1.1.0.bb
> new file mode 100644
> index 0000000..08950b5
> --- /dev/null
> +++ b/meta-multimedia/recipes-multimedia/libao/libao_1.1.0.bb
> @@ -0,0 +1,23 @@
> +SECTION = "multimedia"
> +SUMMARY = "Libao is a cross-platform audio library that allows programs to output audio using a simple API on a wide variety of platforms"
> +HOMEPAGE = "https://www.xiph.org/ao/"
> +
> +LICENSE = "GPLv2"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
> +
> +SRC_URI="http://downloads.xiph.org/releases/ao/${BP}.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='${BPN}-plugin-%s', description='AO %s plugin')
> +    do_split_packages(d, rootdir_dbg, '^(.*)\.so$', output_pattern='${BPN}-plugin-%s-dbg', description='AO %s plugin debug data')
> +}
> -- 
> 1.8.1.2
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com
<signature.asc>
From martin.jansa@gmail.com  Thu Sep 19 12:53:13 2013
Return-Path: <martin.jansa@gmail.com>
X-Original-To: openembedded-devel@lists.openembedded.org
Delivered-To: openembedded-devel@lists.openembedded.org
Received: from mail-ee0-f48.google.com (mail-ee0-f48.google.com [74.125.83.48])
	by mail.openembedded.org (Postfix) with ESMTP id D429A6C908
	for <openembedded-devel@lists.openembedded.org>;
	Thu, 19 Sep 2013 12:53:12 +0000 (UTC)
Received: by mail-ee0-f48.google.com with SMTP id l10so4151889eei.35
	for <openembedded-devel@lists.openembedded.org>;
	Thu, 19 Sep 2013 05:53:14 -0700 (PDT)
DKIM-Signature: v

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

* Re: [meta-multimedia][PATCH] libao: add version 1.1.0
       [not found]     ` <20130919125451.GG18414@jama>
@ 2013-09-20 11:58       ` Jean-Charles JC Verdié
  0 siblings, 0 replies; 4+ messages in thread
From: Jean-Charles JC Verdié @ 2013-09-20 11:58 UTC (permalink / raw)
  To: openembedded-devel


On 19Sep 2013, at 2:54 PM, Martin Jansa <martin.jansa@gmail.com> wrote:

> On Thu, Sep 19, 2013 at 05:44:22AM -0700, JC wrote:
>> Hi Martin
>> 
>> There's a genuine email address isn't it enough :)? It's harder than Facebook here ;)
>> 
>> Anyway, I'll update it but I'd like to see more reviews before to avoid doing a new patch just for that
> 
> True, we cannot find you on facebook and linkedin without your full name
> :).
> 
> Unfortunately I've noticed it only after pushing it to master, so you
> don't need to resend, unless we agree to revert and reapply with full
> name.

AFAIC I don't really care, so if that's not a problem for you, let's keep it this way :)

Regards,
Jay



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

end of thread, other threads:[~2013-09-20 11:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-17 17:47 [meta-multimedia][PATCH] libao: add version 1.1.0 JC
2013-09-19 12:05 ` Martin Jansa
2013-09-19 12:44   ` JC
     [not found]     ` <20130919125451.GG18414@jama>
2013-09-20 11:58       ` Jean-Charles JC Verdié

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.