openembedded-core.lists.openembedded.org archive mirror
 help / color / mirror / Atom feed
* [meta-gnome][PATCH 1/2] geary: initial add recipe
@ 2022-01-20 15:18 Markus Volk
  2022-01-20 15:18 ` [meta-gnome][PATCH 2/2] folks: " Markus Volk
  2022-01-20 18:22 ` [OE-core] [meta-gnome][PATCH 1/2] geary: " Khem Raj
  0 siblings, 2 replies; 7+ messages in thread
From: Markus Volk @ 2022-01-20 15:18 UTC (permalink / raw)
  To: openembedded-core; +Cc: Markus Volk

Signed-off-by: Markus Volk <f_l_k@t-online.de>
---
 .../recipes-connectivity/geary/geary_40.0.bb  | 54 +++++++++++++++++++
 1 file changed, 54 insertions(+)
 create mode 100644 meta-gnome/recipes-connectivity/geary/geary_40.0.bb

diff --git a/meta-gnome/recipes-connectivity/geary/geary_40.0.bb b/meta-gnome/recipes-connectivity/geary/geary_40.0.bb
new file mode 100644
index 000000000..e4d07ad29
--- /dev/null
+++ b/meta-gnome/recipes-connectivity/geary/geary_40.0.bb
@@ -0,0 +1,54 @@
+SUMMARY = "Geary is an email application built around conversations, for the GNOME 3 desktop."
+SECTION = "network"
+LICENSE = "LGPL-2.1"
+LIC_FILES_CHKSUM = "file://COPYING;md5=2a2244d5a13871ad950c55877546a6a2"
+
+DEPENDS = " \
+	appstream-glib \
+	cairo \
+	enchant2 \
+	evolution-data-server \
+	folks \
+	gcr \
+	gmime \
+	gnome-online-accounts \
+	gsound \
+	gspell \
+	gtk+3 \
+	icu \
+	iso-codes \
+	json-glib \
+	libhandy \
+	libical \
+	libpeas \
+	libsecret \
+	libstemmer \
+	libxml2 \
+	sqlite3 \
+	webkitgtk \
+"
+
+RDEPENDS:${PN} = "gnome-keyring"
+
+inherit meson pkgconfig mime-xdg gtk-icon-cache gobject-introspection vala
+
+SRC_URI = " \
+	git://github.com/GNOME/geary.git;nobranch=1;protocol=https \
+"
+
+S = "${WORKDIR}/git"
+SRCREV = "gnome-${PV}"
+
+REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
+
+GIR_MESON_OPTION = ""
+EXTRA_OEMESON = "-Dprofile=release"
+
+PACKAGECONFIG[libunwind] = "-Dlibunwind=enabled,-Dlibunwind=disabled,libunwind"
+PACKAGECONFIG[tnef] = "-Dtnef=enabled,-Dtnef=disabled,libytnef"
+PACKAGECONFIG[valadoc] = "-Dvaladoc=enabled,-Dvaladoc=disabled"
+
+PACKAGECONFIG ??= ""
+
+FILES:${PN} += "${datadir}"
+
-- 
2.25.1



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

* [meta-gnome][PATCH 2/2] folks: initial add recipe
  2022-01-20 15:18 [meta-gnome][PATCH 1/2] geary: initial add recipe Markus Volk
@ 2022-01-20 15:18 ` Markus Volk
  2022-01-20 20:11   ` [OE-core] " Khem Raj
  2022-01-20 18:22 ` [OE-core] [meta-gnome][PATCH 1/2] geary: " Khem Raj
  1 sibling, 1 reply; 7+ messages in thread
From: Markus Volk @ 2022-01-20 15:18 UTC (permalink / raw)
  To: openembedded-core; +Cc: Markus Volk

Signed-off-by: Markus Volk <f_l_k@t-online.de>
---
 .../folks/folks_0.15.4.bb                     | 23 +++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 meta-gnome/recipes-connectivity/folks/folks_0.15.4.bb

diff --git a/meta-gnome/recipes-connectivity/folks/folks_0.15.4.bb b/meta-gnome/recipes-connectivity/folks/folks_0.15.4.bb
new file mode 100644
index 000000000..e7160bde9
--- /dev/null
+++ b/meta-gnome/recipes-connectivity/folks/folks_0.15.4.bb
@@ -0,0 +1,23 @@
+SUMMARY = "Folks is a contact aggregation library."
+LICENSE = "LGPLv2.1"
+LIC_FILES_CHKSUM = "file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1"
+
+DEPENDS = " \
+    glib-2.0 \
+    libgee \
+    dbus-glib \
+    telepathy-glib \
+"
+
+GNOMEBASEBUILDCLASS = "meson"
+
+# gobject-introspection is mandatory and cannot be configured
+REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
+GIR_MESON_OPTION = ""
+
+EXTRA_OEMESON = "-Deds_backend=false -Dbluez_backend=false -Dofono_backend=false -Dtelepathy_backend=false"
+
+inherit gnomebase gettext gobject-introspection vala features_check
+
+SRC_URI[archive.sha256sum] = "e71099afc9e88fad4e757ae134bc3fd63e12b901ad62b0ed5536afb79124af5f"
+
-- 
2.25.1



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

* Re: [OE-core] [meta-gnome][PATCH 1/2] geary: initial add recipe
  2022-01-20 15:18 [meta-gnome][PATCH 1/2] geary: initial add recipe Markus Volk
  2022-01-20 15:18 ` [meta-gnome][PATCH 2/2] folks: " Markus Volk
@ 2022-01-20 18:22 ` Khem Raj
  1 sibling, 0 replies; 7+ messages in thread
From: Khem Raj @ 2022-01-20 18:22 UTC (permalink / raw)
  To: Markus Volk, openembedded-core

thanks for the patches, they should be sent to oe-devel mailing list.

On 1/20/22 7:18 AM, Markus Volk wrote:
> Signed-off-by: Markus Volk <f_l_k@t-online.de>
> ---
>   .../recipes-connectivity/geary/geary_40.0.bb  | 54 +++++++++++++++++++
>   1 file changed, 54 insertions(+)
>   create mode 100644 meta-gnome/recipes-connectivity/geary/geary_40.0.bb
> 
> diff --git a/meta-gnome/recipes-connectivity/geary/geary_40.0.bb b/meta-gnome/recipes-connectivity/geary/geary_40.0.bb
> new file mode 100644
> index 000000000..e4d07ad29
> --- /dev/null
> +++ b/meta-gnome/recipes-connectivity/geary/geary_40.0.bb
> @@ -0,0 +1,54 @@
> +SUMMARY = "Geary is an email application built around conversations, for the GNOME 3 desktop."
> +SECTION = "network"
> +LICENSE = "LGPL-2.1"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=2a2244d5a13871ad950c55877546a6a2"
> +
> +DEPENDS = " \
> +	appstream-glib \
> +	cairo \
> +	enchant2 \
> +	evolution-data-server \
> +	folks \
> +	gcr \
> +	gmime \
> +	gnome-online-accounts \
> +	gsound \
> +	gspell \
> +	gtk+3 \
> +	icu \
> +	iso-codes \
> +	json-glib \
> +	libhandy \
> +	libical \
> +	libpeas \
> +	libsecret \
> +	libstemmer \
> +	libxml2 \
> +	sqlite3 \
> +	webkitgtk \
> +"
> +
> +RDEPENDS:${PN} = "gnome-keyring"
> +
> +inherit meson pkgconfig mime-xdg gtk-icon-cache gobject-introspection vala
> +
> +SRC_URI = " \
> +	git://github.com/GNOME/geary.git;nobranch=1;protocol=https \
> +"
> +
> +S = "${WORKDIR}/git"
> +SRCREV = "gnome-${PV}"
> +
> +REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
> +
> +GIR_MESON_OPTION = ""
> +EXTRA_OEMESON = "-Dprofile=release"
> +
> +PACKAGECONFIG[libunwind] = "-Dlibunwind=enabled,-Dlibunwind=disabled,libunwind"
> +PACKAGECONFIG[tnef] = "-Dtnef=enabled,-Dtnef=disabled,libytnef"
> +PACKAGECONFIG[valadoc] = "-Dvaladoc=enabled,-Dvaladoc=disabled"
> +
> +PACKAGECONFIG ??= ""
> +
> +FILES:${PN} += "${datadir}"
> +
> 
> 
> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#160767): https://lists.openembedded.org/g/openembedded-core/message/160767
> Mute This Topic: https://lists.openembedded.org/mt/88560747/1997914
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
> 


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

* Re: [OE-core] [meta-gnome][PATCH 2/2] folks: initial add recipe
  2022-01-20 15:18 ` [meta-gnome][PATCH 2/2] folks: " Markus Volk
@ 2022-01-20 20:11   ` Khem Raj
  2022-01-20 20:22     ` Markus Volk
  0 siblings, 1 reply; 7+ messages in thread
From: Khem Raj @ 2022-01-20 20:11 UTC (permalink / raw)
  To: Markus Volk; +Cc: Patches and discussions about the oe-core layer

fails to configure

https://errors.yoctoproject.org/Errors/Details/622929/

On Thu, Jan 20, 2022 at 7:18 AM Markus Volk <f_l_k@t-online.de> wrote:
>
> Signed-off-by: Markus Volk <f_l_k@t-online.de>
> ---
>  .../folks/folks_0.15.4.bb                     | 23 +++++++++++++++++++
>  1 file changed, 23 insertions(+)
>  create mode 100644 meta-gnome/recipes-connectivity/folks/folks_0.15.4.bb
>
> diff --git a/meta-gnome/recipes-connectivity/folks/folks_0.15.4.bb b/meta-gnome/recipes-connectivity/folks/folks_0.15.4.bb
> new file mode 100644
> index 000000000..e7160bde9
> --- /dev/null
> +++ b/meta-gnome/recipes-connectivity/folks/folks_0.15.4.bb
> @@ -0,0 +1,23 @@
> +SUMMARY = "Folks is a contact aggregation library."
> +LICENSE = "LGPLv2.1"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1"
> +
> +DEPENDS = " \
> +    glib-2.0 \
> +    libgee \
> +    dbus-glib \
> +    telepathy-glib \
> +"
> +
> +GNOMEBASEBUILDCLASS = "meson"
> +
> +# gobject-introspection is mandatory and cannot be configured
> +REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
> +GIR_MESON_OPTION = ""
> +
> +EXTRA_OEMESON = "-Deds_backend=false -Dbluez_backend=false -Dofono_backend=false -Dtelepathy_backend=false"
> +
> +inherit gnomebase gettext gobject-introspection vala features_check
> +
> +SRC_URI[archive.sha256sum] = "e71099afc9e88fad4e757ae134bc3fd63e12b901ad62b0ed5536afb79124af5f"
> +
> --
> 2.25.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#160768): https://lists.openembedded.org/g/openembedded-core/message/160768
> Mute This Topic: https://lists.openembedded.org/mt/88560749/1997914
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


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

* Re: [OE-core] [meta-gnome][PATCH 2/2] folks: initial add recipe
  2022-01-20 20:11   ` [OE-core] " Khem Raj
@ 2022-01-20 20:22     ` Markus Volk
  2022-01-20 20:28       ` Khem Raj
  0 siblings, 1 reply; 7+ messages in thread
From: Markus Volk @ 2022-01-20 20:22 UTC (permalink / raw)
  To: openembedded-core

mmmh. Whats the error message ?

I can build folks like this for aarch64 and x86-64

Am 20.01.22 um 21:11 schrieb Khem Raj:
> +SUMMARY = "Folks is a contact aggregation library."
> +LICENSE = "LGPLv2.1"
> +LIC_FILES_CHKSUM ="file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1"
> +
> +DEPENDS = " \
> +    glib-2.0 \
> +    libgee \
> +    dbus-glib \
> +    telepathy-glib \
> +"
> +
> +GNOMEBASEBUILDCLASS = "meson"
> +
> +# gobject-introspection is mandatory and cannot be configured
> +REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
> +GIR_MESON_OPTION = ""
> +
> +EXTRA_OEMESON = "-Deds_backend=false -Dbluez_backend=false -Dofono_backend=false -Dtelepathy_backend=false"
> +
> +inherit gnomebase gettext gobject-introspection vala features_check
> +
> +SRC_URI[archive.sha256sum] = "e71099afc9e88fad4e757ae134bc3fd63e12b901ad62b0ed5536afb79124af5f"
> +


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

* Re: [OE-core] [meta-gnome][PATCH 2/2] folks: initial add recipe
  2022-01-20 20:22     ` Markus Volk
@ 2022-01-20 20:28       ` Khem Raj
  2022-01-20 20:32         ` Markus Volk
  0 siblings, 1 reply; 7+ messages in thread
From: Khem Raj @ 2022-01-20 20:28 UTC (permalink / raw)
  To: Markus Volk; +Cc: Patches and discussions about the oe-core layer

I posted the link with error message the specific error is

Run-time dependency libxml-2.0 found: NO (tried pkgconfig)

../folks-0.15.4/meson.build:126:2: ERROR: Dependency "libxml-2.0" not
found, tried pkgconfig

On Thu, Jan 20, 2022 at 12:22 PM Markus Volk <f_l_k@t-online.de> wrote:
>
> mmmh. Whats the error message ?
>
> I can build folks like this for aarch64 and x86-64
>
> Am 20.01.22 um 21:11 schrieb Khem Raj:
> > +SUMMARY = "Folks is a contact aggregation library."
> > +LICENSE = "LGPLv2.1"
> > +LIC_FILES_CHKSUM ="file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1"
> > +
> > +DEPENDS = " \
> > +    glib-2.0 \
> > +    libgee \
> > +    dbus-glib \
> > +    telepathy-glib \
> > +"
> > +
> > +GNOMEBASEBUILDCLASS = "meson"
> > +
> > +# gobject-introspection is mandatory and cannot be configured
> > +REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
> > +GIR_MESON_OPTION = ""
> > +
> > +EXTRA_OEMESON = "-Deds_backend=false -Dbluez_backend=false -Dofono_backend=false -Dtelepathy_backend=false"
> > +
> > +inherit gnomebase gettext gobject-introspection vala features_check
> > +
> > +SRC_URI[archive.sha256sum] = "e71099afc9e88fad4e757ae134bc3fd63e12b901ad62b0ed5536afb79124af5f"
> > +
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#160781): https://lists.openembedded.org/g/openembedded-core/message/160781
> Mute This Topic: https://lists.openembedded.org/mt/88560749/1997914
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


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

* Re: [OE-core] [meta-gnome][PATCH 2/2] folks: initial add recipe
  2022-01-20 20:28       ` Khem Raj
@ 2022-01-20 20:32         ` Markus Volk
  0 siblings, 0 replies; 7+ messages in thread
From: Markus Volk @ 2022-01-20 20:32 UTC (permalink / raw)
  To: openembedded-core

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

sorry, missed that. I'll send a v2 patch for it

Am 20.01.22 um 21:28 schrieb Khem Raj:
> I posted the link with error message the specific error is
>
> Run-time dependency libxml-2.0 found: NO (tried pkgconfig)
>
> ../folks-0.15.4/meson.build:126:2: ERROR: Dependency "libxml-2.0" not
> found, tried pkgconfig
>
> On Thu, Jan 20, 2022 at 12:22 PM Markus Volk <f_l_k@t-online.de> wrote:
>> mmmh. Whats the error message ?
>>
>> I can build folks like this for aarch64 and x86-64
>>
>> Am 20.01.22 um 21:11 schrieb Khem Raj:
>>> +SUMMARY = "Folks is a contact aggregation library."
>>> +LICENSE = "LGPLv2.1"
>>> +LIC_FILES_CHKSUM ="file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1"
>>> +
>>> +DEPENDS = " \
>>> +    glib-2.0 \
>>> +    libgee \
>>> +    dbus-glib \
>>> +    telepathy-glib \
>>> +"
>>> +
>>> +GNOMEBASEBUILDCLASS = "meson"
>>> +
>>> +# gobject-introspection is mandatory and cannot be configured
>>> +REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
>>> +GIR_MESON_OPTION = ""
>>> +
>>> +EXTRA_OEMESON = "-Deds_backend=false -Dbluez_backend=false -Dofono_backend=false -Dtelepathy_backend=false"
>>> +
>>> +inherit gnomebase gettext gobject-introspection vala features_check
>>> +
>>> +SRC_URI[archive.sha256sum] = "e71099afc9e88fad4e757ae134bc3fd63e12b901ad62b0ed5536afb79124af5f"
>>> +
>>
>>
>>
>> -=-=-=-=-=-=-=-=-=-=-=-
>> Links: You receive all messages sent to this group.
>> View/Reply Online (#160783): https://lists.openembedded.org/g/openembedded-core/message/160783
>> Mute This Topic: https://lists.openembedded.org/mt/88560749/3618223
>> Group Owner: openembedded-core+owner@lists.openembedded.org
>> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [f_l_k@t-online.de]
>> -=-=-=-=-=-=-=-=-=-=-=-
>>

[-- Attachment #2: Type: text/html, Size: 3010 bytes --]

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

end of thread, other threads:[~2022-01-20 20:32 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-20 15:18 [meta-gnome][PATCH 1/2] geary: initial add recipe Markus Volk
2022-01-20 15:18 ` [meta-gnome][PATCH 2/2] folks: " Markus Volk
2022-01-20 20:11   ` [OE-core] " Khem Raj
2022-01-20 20:22     ` Markus Volk
2022-01-20 20:28       ` Khem Raj
2022-01-20 20:32         ` Markus Volk
2022-01-20 18:22 ` [OE-core] [meta-gnome][PATCH 1/2] geary: " Khem Raj

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).