All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] libmpdclient: new recipe
@ 2018-09-20 19:59 Max Kellermann
  2018-09-20 19:59 ` [PATCH 2/2] mpc: " Max Kellermann
  2018-09-21  0:18 ` [PATCH 1/2] libmpdclient: " Khem Raj
  0 siblings, 2 replies; 11+ messages in thread
From: Max Kellermann @ 2018-09-20 19:59 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Max Kellermann

From: Max Kellermann <max.kellermann@gmail.com>

Signed-off-by: Max Kellermann <max.kellermann@gmail.com>
---
 .../recipes-multimedia/musicpd/libmpdclient_2.15.bb  | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.15.bb

diff --git a/meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.15.bb b/meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.15.bb
new file mode 100644
index 000000000..889231864
--- /dev/null
+++ b/meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.15.bb
@@ -0,0 +1,12 @@
+SUMMARY = "C client library for the Music Player Daemon"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://COPYING;md5=06b9dfd2f197dc514d8ef06549684b77"
+HOMEPAGE = "https://www.musicpd.org/libs/libmpdclient/"
+
+inherit meson
+
+TAG = "v${PV}"
+SRC_URI = " \
+    git://github.com/MusicPlayerDaemon/libmpdclient;tag=${TAG};nobranch=1 \
+"
+S = "${WORKDIR}/git"
-- 
2.18.0



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

* [PATCH 2/2] mpc: new recipe
  2018-09-20 19:59 [PATCH 1/2] libmpdclient: new recipe Max Kellermann
@ 2018-09-20 19:59 ` Max Kellermann
  2018-09-21  0:18   ` Khem Raj
  2018-09-21  0:18 ` [PATCH 1/2] libmpdclient: " Khem Raj
  1 sibling, 1 reply; 11+ messages in thread
From: Max Kellermann @ 2018-09-20 19:59 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Max Kellermann

From: Max Kellermann <max.kellermann@gmail.com>

Signed-off-by: Max Kellermann <max.kellermann@gmail.com>
---
 .../recipes-multimedia/musicpd/mpc_0.30.bb       | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 meta-multimedia/recipes-multimedia/musicpd/mpc_0.30.bb

diff --git a/meta-multimedia/recipes-multimedia/musicpd/mpc_0.30.bb b/meta-multimedia/recipes-multimedia/musicpd/mpc_0.30.bb
new file mode 100644
index 000000000..777a2ab62
--- /dev/null
+++ b/meta-multimedia/recipes-multimedia/musicpd/mpc_0.30.bb
@@ -0,0 +1,16 @@
+SUMMARY = "A minimalist command line interface to the Music Player Daemon"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
+HOMEPAGE = "https://www.musicpd.org/clients/mpc/"
+
+inherit meson
+
+DEPENDS += " \
+    libmpdclient \
+"
+
+TAG = "v${PV}"
+SRC_URI = " \
+    git://github.com/MusicPlayerDaemon/mpc;tag=${TAG};nobranch=1 \
+"
+S = "${WORKDIR}/git"
-- 
2.18.0



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

* Re: [PATCH 2/2] mpc: new recipe
  2018-09-20 19:59 ` [PATCH 2/2] mpc: " Max Kellermann
@ 2018-09-21  0:18   ` Khem Raj
  2018-09-21  8:48     ` [PATCH v2] " Max Kellermann
  2018-09-21  9:28     ` Max Kellermann
  0 siblings, 2 replies; 11+ messages in thread
From: Khem Raj @ 2018-09-21  0:18 UTC (permalink / raw)
  To: max+openembedded; +Cc: max.kellermann, openembeded-devel

On Thu, Sep 20, 2018 at 12:59 PM Max Kellermann
<max+openembedded@blarg.de> wrote:
>
> From: Max Kellermann <max.kellermann@gmail.com>
>
> Signed-off-by: Max Kellermann <max.kellermann@gmail.com>
> ---
>  .../recipes-multimedia/musicpd/mpc_0.30.bb       | 16 ++++++++++++++++
>  1 file changed, 16 insertions(+)
>  create mode 100644 meta-multimedia/recipes-multimedia/musicpd/mpc_0.30.bb
>
> diff --git a/meta-multimedia/recipes-multimedia/musicpd/mpc_0.30.bb b/meta-multimedia/recipes-multimedia/musicpd/mpc_0.30.bb
> new file mode 100644
> index 000000000..777a2ab62
> --- /dev/null
> +++ b/meta-multimedia/recipes-multimedia/musicpd/mpc_0.30.bb
> @@ -0,0 +1,16 @@
> +SUMMARY = "A minimalist command line interface to the Music Player Daemon"
> +LICENSE = "GPLv2"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
> +HOMEPAGE = "https://www.musicpd.org/clients/mpc/"
> +
> +inherit meson
> +
> +DEPENDS += " \
> +    libmpdclient \
> +"
> +
> +TAG = "v${PV}"
> +SRC_URI = " \
> +    git://github.com/MusicPlayerDaemon/mpc;tag=${TAG};nobranch=1 \
> +"

no tags please. use sha id

> +S = "${WORKDIR}/git"
> --
> 2.18.0
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


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

* Re: [PATCH 1/2] libmpdclient: new recipe
  2018-09-20 19:59 [PATCH 1/2] libmpdclient: new recipe Max Kellermann
  2018-09-20 19:59 ` [PATCH 2/2] mpc: " Max Kellermann
@ 2018-09-21  0:18 ` Khem Raj
  2018-09-21  8:46   ` [PATCH v2] " Max Kellermann
  2018-09-21  9:28   ` Max Kellermann
  1 sibling, 2 replies; 11+ messages in thread
From: Khem Raj @ 2018-09-21  0:18 UTC (permalink / raw)
  To: max+openembedded; +Cc: max.kellermann, openembeded-devel

On Thu, Sep 20, 2018 at 12:59 PM Max Kellermann
<max+openembedded@blarg.de> wrote:
>
> From: Max Kellermann <max.kellermann@gmail.com>
>
> Signed-off-by: Max Kellermann <max.kellermann@gmail.com>
> ---
>  .../recipes-multimedia/musicpd/libmpdclient_2.15.bb  | 12 ++++++++++++
>  1 file changed, 12 insertions(+)
>  create mode 100644 meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.15.bb
>
> diff --git a/meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.15.bb b/meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.15.bb
> new file mode 100644
> index 000000000..889231864
> --- /dev/null
> +++ b/meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.15.bb
> @@ -0,0 +1,12 @@
> +SUMMARY = "C client library for the Music Player Daemon"
> +LICENSE = "BSD"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=06b9dfd2f197dc514d8ef06549684b77"
> +HOMEPAGE = "https://www.musicpd.org/libs/libmpdclient/"
> +
> +inherit meson
> +
> +TAG = "v${PV}"
> +SRC_URI = " \
> +    git://github.com/MusicPlayerDaemon/libmpdclient;tag=${TAG};nobranch=1 \
> +"

no tags as suggested

> +S = "${WORKDIR}/git"
> --
> 2.18.0
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


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

* [PATCH v2] libmpdclient: new recipe
  2018-09-21  0:18 ` [PATCH 1/2] libmpdclient: " Khem Raj
@ 2018-09-21  8:46   ` Max Kellermann
  2018-09-21  9:27     ` Max Kellermann
  2018-09-21  9:28   ` Max Kellermann
  1 sibling, 1 reply; 11+ messages in thread
From: Max Kellermann @ 2018-09-21  8:46 UTC (permalink / raw)
  To: openembedded-core; +Cc: Max Kellermann

From: Max Kellermann <max.kellermann@gmail.com>

Signed-off-by: Max Kellermann <max.kellermann@gmail.com>
---
 .../recipes-multimedia/musicpd/libmpdclient_2.15.bb  | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.15.bb

diff --git a/meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.15.bb b/meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.15.bb
new file mode 100644
index 000000000..dbee66e8d
--- /dev/null
+++ b/meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.15.bb
@@ -0,0 +1,12 @@
+SUMMARY = "C client library for the Music Player Daemon"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://COPYING;md5=06b9dfd2f197dc514d8ef06549684b77"
+HOMEPAGE = "https://www.musicpd.org/libs/libmpdclient/"
+
+inherit meson
+
+SRC_URI = " \
+    git://github.com/MusicPlayerDaemon/libmpdclient \
+"
+SRCREV = "7754ffdfb9371cd398371cb2670a54e9e1e623e2"
+S = "${WORKDIR}/git"
-- 
2.18.0



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

* [PATCH v2] mpc: new recipe
  2018-09-21  0:18   ` Khem Raj
@ 2018-09-21  8:48     ` Max Kellermann
  2018-09-21  9:28     ` Max Kellermann
  1 sibling, 0 replies; 11+ messages in thread
From: Max Kellermann @ 2018-09-21  8:48 UTC (permalink / raw)
  To: openembedded-core; +Cc: Max Kellermann

From: Max Kellermann <max.kellermann@gmail.com>

Signed-off-by: Max Kellermann <max.kellermann@gmail.com>
---
 .../recipes-multimedia/musicpd/mpc_0.30.bb       | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 meta-multimedia/recipes-multimedia/musicpd/mpc_0.30.bb

diff --git a/meta-multimedia/recipes-multimedia/musicpd/mpc_0.30.bb b/meta-multimedia/recipes-multimedia/musicpd/mpc_0.30.bb
new file mode 100644
index 000000000..6fac5b2e7
--- /dev/null
+++ b/meta-multimedia/recipes-multimedia/musicpd/mpc_0.30.bb
@@ -0,0 +1,16 @@
+SUMMARY = "A minimalist command line interface to the Music Player Daemon"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
+HOMEPAGE = "https://www.musicpd.org/clients/mpc/"
+
+inherit meson
+
+DEPENDS += " \
+    libmpdclient \
+"
+
+SRC_URI = " \
+    git://github.com/MusicPlayerDaemon/mpc \
+"
+SRCREV = "6fc4e639152daeebb19e0fdfb277252acc734fc5"
+S = "${WORKDIR}/git"
-- 
2.18.0



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

* Re: [PATCH v2] libmpdclient: new recipe
  2018-09-21  8:46   ` [PATCH v2] " Max Kellermann
@ 2018-09-21  9:27     ` Max Kellermann
  0 siblings, 0 replies; 11+ messages in thread
From: Max Kellermann @ 2018-09-21  9:27 UTC (permalink / raw)
  To: openembedded-core

Sorry, those 3 resubmissions were on the wrong list.  I'll resend to
oe-devel.

How I wish it were easier to submit code to OE.  I feel that this
archaic way of juggling with patch emails wastes everyone's time.


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

* [PATCH v2] libmpdclient: new recipe
  2018-09-21  0:18 ` [PATCH 1/2] libmpdclient: " Khem Raj
  2018-09-21  8:46   ` [PATCH v2] " Max Kellermann
@ 2018-09-21  9:28   ` Max Kellermann
  2018-09-21 15:33     ` Khem Raj
  1 sibling, 1 reply; 11+ messages in thread
From: Max Kellermann @ 2018-09-21  9:28 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Max Kellermann

From: Max Kellermann <max.kellermann@gmail.com>

Signed-off-by: Max Kellermann <max.kellermann@gmail.com>
---
 .../recipes-multimedia/musicpd/libmpdclient_2.15.bb  | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.15.bb

diff --git a/meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.15.bb b/meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.15.bb
new file mode 100644
index 000000000..dbee66e8d
--- /dev/null
+++ b/meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.15.bb
@@ -0,0 +1,12 @@
+SUMMARY = "C client library for the Music Player Daemon"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://COPYING;md5=06b9dfd2f197dc514d8ef06549684b77"
+HOMEPAGE = "https://www.musicpd.org/libs/libmpdclient/"
+
+inherit meson
+
+SRC_URI = " \
+    git://github.com/MusicPlayerDaemon/libmpdclient \
+"
+SRCREV = "7754ffdfb9371cd398371cb2670a54e9e1e623e2"
+S = "${WORKDIR}/git"
-- 
2.18.0


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

* [PATCH v2] mpc: new recipe
  2018-09-21  0:18   ` Khem Raj
  2018-09-21  8:48     ` [PATCH v2] " Max Kellermann
@ 2018-09-21  9:28     ` Max Kellermann
  1 sibling, 0 replies; 11+ messages in thread
From: Max Kellermann @ 2018-09-21  9:28 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Max Kellermann

From: Max Kellermann <max.kellermann@gmail.com>

Signed-off-by: Max Kellermann <max.kellermann@gmail.com>
---
 .../recipes-multimedia/musicpd/mpc_0.30.bb       | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 meta-multimedia/recipes-multimedia/musicpd/mpc_0.30.bb

diff --git a/meta-multimedia/recipes-multimedia/musicpd/mpc_0.30.bb b/meta-multimedia/recipes-multimedia/musicpd/mpc_0.30.bb
new file mode 100644
index 000000000..6fac5b2e7
--- /dev/null
+++ b/meta-multimedia/recipes-multimedia/musicpd/mpc_0.30.bb
@@ -0,0 +1,16 @@
+SUMMARY = "A minimalist command line interface to the Music Player Daemon"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
+HOMEPAGE = "https://www.musicpd.org/clients/mpc/"
+
+inherit meson
+
+DEPENDS += " \
+    libmpdclient \
+"
+
+SRC_URI = " \
+    git://github.com/MusicPlayerDaemon/mpc \
+"
+SRCREV = "6fc4e639152daeebb19e0fdfb277252acc734fc5"
+S = "${WORKDIR}/git"
-- 
2.18.0


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

* Re: [PATCH v2] libmpdclient: new recipe
  2018-09-21  9:28   ` Max Kellermann
@ 2018-09-21 15:33     ` Khem Raj
  2018-09-21 15:54       ` [PATCH v3] " Max Kellermann
  0 siblings, 1 reply; 11+ messages in thread
From: Khem Raj @ 2018-09-21 15:33 UTC (permalink / raw)
  To: openembeded-devel; +Cc: Max Kellermann

There are packaging errors on aarch64 see
http://errors.yoctoproject.org/Errors/Details/193773/

On Fri, Sep 21, 2018 at 2:28 AM Max Kellermann
<max+openembedded@blarg.de> wrote:
>
> From: Max Kellermann <max.kellermann@gmail.com>
>
> Signed-off-by: Max Kellermann <max.kellermann@gmail.com>
> ---
>  .../recipes-multimedia/musicpd/libmpdclient_2.15.bb  | 12 ++++++++++++
>  1 file changed, 12 insertions(+)
>  create mode 100644 meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.15.bb
>
> diff --git a/meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.15.bb b/meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.15.bb
> new file mode 100644
> index 000000000..dbee66e8d
> --- /dev/null
> +++ b/meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.15.bb
> @@ -0,0 +1,12 @@
> +SUMMARY = "C client library for the Music Player Daemon"
> +LICENSE = "BSD"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=06b9dfd2f197dc514d8ef06549684b77"
> +HOMEPAGE = "https://www.musicpd.org/libs/libmpdclient/"
> +
> +inherit meson
> +
> +SRC_URI = " \
> +    git://github.com/MusicPlayerDaemon/libmpdclient \
> +"
> +SRCREV = "7754ffdfb9371cd398371cb2670a54e9e1e623e2"
> +S = "${WORKDIR}/git"
> --
> 2.18.0


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

* [PATCH v3] libmpdclient: new recipe
  2018-09-21 15:33     ` Khem Raj
@ 2018-09-21 15:54       ` Max Kellermann
  0 siblings, 0 replies; 11+ messages in thread
From: Max Kellermann @ 2018-09-21 15:54 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Max Kellermann

From: Max Kellermann <max.kellermann@gmail.com>

Signed-off-by: Max Kellermann <max.kellermann@gmail.com>
---
 .../musicpd/libmpdclient_2.15.bb              | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.15.bb

diff --git a/meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.15.bb b/meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.15.bb
new file mode 100644
index 000000000..c78344c66
--- /dev/null
+++ b/meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.15.bb
@@ -0,0 +1,19 @@
+SUMMARY = "C client library for the Music Player Daemon"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://COPYING;md5=06b9dfd2f197dc514d8ef06549684b77"
+HOMEPAGE = "https://www.musicpd.org/libs/libmpdclient/"
+
+inherit meson
+
+SRC_URI = " \
+    git://github.com/MusicPlayerDaemon/libmpdclient \
+"
+SRCREV = "7754ffdfb9371cd398371cb2670a54e9e1e623e2"
+S = "${WORKDIR}/git"
+
+do_install_append() {
+    # libmpdclient's Vala bindings are outdated and unmaintained; it
+    # is likely that nobody will ever use them, so let's not install
+    # them
+    rm -rf ${D}${datadir}/vala
+}
-- 
2.19.0



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

end of thread, other threads:[~2018-09-21 15:54 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-20 19:59 [PATCH 1/2] libmpdclient: new recipe Max Kellermann
2018-09-20 19:59 ` [PATCH 2/2] mpc: " Max Kellermann
2018-09-21  0:18   ` Khem Raj
2018-09-21  8:48     ` [PATCH v2] " Max Kellermann
2018-09-21  9:28     ` Max Kellermann
2018-09-21  0:18 ` [PATCH 1/2] libmpdclient: " Khem Raj
2018-09-21  8:46   ` [PATCH v2] " Max Kellermann
2018-09-21  9:27     ` Max Kellermann
2018-09-21  9:28   ` Max Kellermann
2018-09-21 15:33     ` Khem Raj
2018-09-21 15:54       ` [PATCH v3] " Max Kellermann

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.