All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH] consolation: Add recipe
@ 2020-09-13  2:11 Robert Joslyn
  2020-09-13  2:20 ` [oe] " Khem Raj
  0 siblings, 1 reply; 3+ messages in thread
From: Robert Joslyn @ 2020-09-13  2:11 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Robert Joslyn

Consolation is a daemon that provide copy-paste and scrolling support to
the Linux console.

It is based on the libinput library and supports all pointer devices and
settings provided by this library,

Similar software include gpm and jamd.

Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org>
---
 .../consolation/consolation_0.0.8.bb          | 29 +++++++++++++++++++
 1 file changed, 29 insertions(+)
 create mode 100644 meta-oe/recipes-support/consolation/consolation_0.0.8.bb

diff --git a/meta-oe/recipes-support/consolation/consolation_0.0.8.bb b/meta-oe/recipes-support/consolation/consolation_0.0.8.bb
new file mode 100644
index 000000000..90bd560c4
--- /dev/null
+++ b/meta-oe/recipes-support/consolation/consolation_0.0.8.bb
@@ -0,0 +1,29 @@
+SUMMARY = "copy-paste for the Linux console"
+DESCRIPTION = "Consolation is a daemon that provides copy-paste and scrolling \
+support to the Linux console. It is based on the libinput library and \
+supports all pointer devices and settings provided by this library. Similar \
+software include gpm and jamd."
+HOMEPAGE = "https://salsa.debian.org/consolation-team/consolation"
+SECTION = "console/utils"
+LICENSE = "GPL-2.0+"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=73ca626e1d9048abfc7d599370650827"
+
+DEPENDS = " \
+    libevdev \
+    libinput \
+    udev \
+"
+
+SRC_URI = "git://salsa.debian.org/consolation-team/consolation.git"
+SRCREV = "4581eaece6e49fa2b687efbdbe23b2de452e7902"
+
+S = "${WORKDIR}/git"
+
+inherit autotools pkgconfig systemd
+
+do_install_append() {
+    install -d ${D}${systemd_system_unitdir}
+    install -m 644 ${B}/consolation.service ${D}${systemd_system_unitdir}
+}
+
+SYSTEMD_SERVICE_${PN} = "consolation.service"
-- 
2.26.2


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

* Re: [oe] [meta-oe][PATCH] consolation: Add recipe
  2020-09-13  2:11 [meta-oe][PATCH] consolation: Add recipe Robert Joslyn
@ 2020-09-13  2:20 ` Khem Raj
  2020-09-13 11:21   ` Robert Joslyn
  0 siblings, 1 reply; 3+ messages in thread
From: Khem Raj @ 2020-09-13  2:20 UTC (permalink / raw)
  To: Robert Joslyn; +Cc: openembeded-devel

On Sat, Sep 12, 2020 at 7:12 PM Robert Joslyn
<robert.joslyn@redrectangle.org> wrote:
>
> Consolation is a daemon that provide copy-paste and scrolling support to
> the Linux console.
>
> It is based on the libinput library and supports all pointer devices and
> settings provided by this library,
>
> Similar software include gpm and jamd.
>

Can you also add to to appropriate packagegroup in /packagegroup-meta-oe.bb

> Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org>
> ---
>  .../consolation/consolation_0.0.8.bb          | 29 +++++++++++++++++++
>  1 file changed, 29 insertions(+)
>  create mode 100644 meta-oe/recipes-support/consolation/consolation_0.0.8.bb
>
> diff --git a/meta-oe/recipes-support/consolation/consolation_0.0.8.bb b/meta-oe/recipes-support/consolation/consolation_0.0.8.bb
> new file mode 100644
> index 000000000..90bd560c4
> --- /dev/null
> +++ b/meta-oe/recipes-support/consolation/consolation_0.0.8.bb
> @@ -0,0 +1,29 @@
> +SUMMARY = "copy-paste for the Linux console"
> +DESCRIPTION = "Consolation is a daemon that provides copy-paste and scrolling \
> +support to the Linux console. It is based on the libinput library and \
> +supports all pointer devices and settings provided by this library. Similar \
> +software include gpm and jamd."
> +HOMEPAGE = "https://salsa.debian.org/consolation-team/consolation"
> +SECTION = "console/utils"
> +LICENSE = "GPL-2.0+"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=73ca626e1d9048abfc7d599370650827"
> +
> +DEPENDS = " \
> +    libevdev \
> +    libinput \
> +    udev \
> +"
> +
> +SRC_URI = "git://salsa.debian.org/consolation-team/consolation.git"
> +SRCREV = "4581eaece6e49fa2b687efbdbe23b2de452e7902"
> +
> +S = "${WORKDIR}/git"
> +
> +inherit autotools pkgconfig systemd
> +
> +do_install_append() {
> +    install -d ${D}${systemd_system_unitdir}
> +    install -m 644 ${B}/consolation.service ${D}${systemd_system_unitdir}
> +}
> +
> +SYSTEMD_SERVICE_${PN} = "consolation.service"
> --
> 2.26.2
>
> 

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

* Re: [oe] [meta-oe][PATCH] consolation: Add recipe
  2020-09-13  2:20 ` [oe] " Khem Raj
@ 2020-09-13 11:21   ` Robert Joslyn
  0 siblings, 0 replies; 3+ messages in thread
From: Robert Joslyn @ 2020-09-13 11:21 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembeded-devel

On Sat, 2020-09-12 at 19:20 -0700, Khem Raj wrote:
> On Sat, Sep 12, 2020 at 7:12 PM Robert Joslyn
> <robert.joslyn@redrectangle.org> wrote:
> > Consolation is a daemon that provide copy-paste and scrolling support
> > to
> > the Linux console.
> > 
> > It is based on the libinput library and supports all pointer devices
> > and
> > settings provided by this library,
> > 
> > Similar software include gpm and jamd.
> > 
> 
> Can you also add to to appropriate packagegroup in /packagegroup-meta-
> oe.bb

Sure, I'll send a v2.

Thanks,
Robert


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

end of thread, other threads:[~2020-09-13 11:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-13  2:11 [meta-oe][PATCH] consolation: Add recipe Robert Joslyn
2020-09-13  2:20 ` [oe] " Khem Raj
2020-09-13 11:21   ` Robert Joslyn

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.