From: Adrian Perez de Castro <aperez@igalia.com>
To: buildroot@busybox.net
Subject: [Buildroot] [RFC 1/3] libwpe: new package
Date: Fri, 28 Dec 2018 01:47:45 +0100 [thread overview]
Message-ID: <20181228014745.GD19602@momiji> (raw)
In-Reply-To: <20181223154845.23556-2-francois.perrad@gadz.org>
Hello,
On Sun, 23 Dec 2018 16:48:43 +0100, Francois Perrad <fperrad@gmail.com> wrote:
> Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
> ---
> DEVELOPERS | 1 +
> package/Config.in | 1 +
> package/libwpe/Config.in | 12 ++++++++++++
> package/libwpe/libwpe.hash | 7 +++++++
> package/libwpe/libwpe.mk | 15 +++++++++++++++
> 5 files changed, 36 insertions(+)
> create mode 100644 package/libwpe/Config.in
> create mode 100644 package/libwpe/libwpe.hash
> create mode 100644 package/libwpe/libwpe.mk
>
> diff --git a/DEVELOPERS b/DEVELOPERS
> index 6f687d748..705842310 100644
> --- a/DEVELOPERS
> +++ b/DEVELOPERS
> @@ -810,6 +810,7 @@ F: package/gdbm/
> F: package/libtomcrypt/
> F: package/libtommath/
> F: package/libump/
> +F: package/libwpe/
> F: package/linenoise/
> F: package/ljlinenoise/
> F: package/lpeg/
> diff --git a/package/Config.in b/package/Config.in
> index 038ddf6b2..7615c5853 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -1283,6 +1283,7 @@ menu "Graphics"
> source "package/libva-intel-driver/Config.in"
> source "package/libvdpau/Config.in"
> source "package/libvips/Config.in"
> + source "package/libwpe/Config.in"
> source "package/menu-cache/Config.in"
> source "package/opencv/Config.in"
> source "package/opencv3/Config.in"
> diff --git a/package/libwpe/Config.in b/package/libwpe/Config.in
> new file mode 100644
> index 000000000..8cf99fe0c
> --- /dev/null
> +++ b/package/libwpe/Config.in
> @@ -0,0 +1,12 @@
> +comment "libwpe needs an OpenEGL-capable backend"
> + depends on !BR2_PACKAGE_HAS_LIBEGL
> +
The dependency line for the comment should be:
depends on !BR2_PACKAGE_HAS_LIBEGL || !BR2_INSTALL_LIBSTDCPP || !BR2_STATIC_LIBS
(See the related comment below, too.)
> +config BR2_PACKAGE_LIBWPE
> + bool "libwpe"
> + depends on BR2_PACKAGE_HAS_LIBEGL
> + select BR2_PACKAGE_LIBXKBCOMMON
You are missing a couple of dependencies here:
depends on BR2_INSTALL_LIBSTDCPP # uses C++
depends on !BR2_STATIC_LIBS # uses dlopen()
> + help
> + General-purpose library specifically developed for the
> + WPE-flavored port of WebKit.
> +
> + https://wpewebkit.org/
I am aware that this is the description we have in the GitHub project page,
but IMO this description is pretty badly written (this is our fault as WPE
developes, BTW). I would go with something simple and more descriptive like
?Base library for the WPE WebKit port? O:-)
> diff --git a/package/libwpe/libwpe.hash b/package/libwpe/libwpe.hash
> new file mode 100644
> index 000000000..bda380988
> --- /dev/null
> +++ b/package/libwpe/libwpe.hash
> @@ -0,0 +1,7 @@
> +# From https://wpewebkit.org/releases/libwpe-1.1.0.tar.xz.sums
> +md5 b34c3920cb749ebc74fe45a793cf57af libwpe-1.1.0.tar.xz
> +sha1 69f0bc7f422c6a196c49439a454f7734ecac1126 libwpe-1.1.0.tar.xz
> +sha256 72e34ad754be11abd1a438cfe195d8d644c52105ab2b1c3b39dec6228bc776ce libwpe-1.1.0.tar.xz
> +
> +# Hashes for license files:
> +sha256 6efc9991641b47b1f4e727db7f090d0ade00117dcbbc74be622f2baceddb1f22 COPYING
> diff --git a/package/libwpe/libwpe.mk b/package/libwpe/libwpe.mk
> new file mode 100644
> index 000000000..2b9309843
> --- /dev/null
> +++ b/package/libwpe/libwpe.mk
> @@ -0,0 +1,15 @@
> +################################################################################
> +#
> +# libwpe
> +#
> +################################################################################
> +
> +LIBWPE_VERSION = 1.1.0
You really want to use 1.0.0 here.
The versioning scheme follows the same rule as for WebKitGTK+, WPE WebKit, and
most other GLib-based components: for a version number X.Y.Z, an even Y number
means that a release is stable, and odd Y number is used for development
releases (with Y>=90 for release candidates).
(The versioning scheme should clearly described somewhere in the project
GitHub page, of course. My apologies for that being missing.)
> +LIBWPE_SITE = http://wpewebkit.org/releases
> +LIBWPE_SOURCE = libwpe-$(LIBWPE_VERSION).tar.xz
> +LIBWPE_INSTALL_STAGING = YES
> +LIBWPE_LICENSE = BSD-2-Clause
> +LIBWPE_LICENSE_FILES = COPYING
> +LIBWPE_DEPENDENCIES = libegl libxkbcommon
> +
> +$(eval $(cmake-package))
> --
> 2.17.1
-Adri?n
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 195 bytes
Desc: not available
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20181228/7f7a065f/attachment.asc>
next prev parent reply other threads:[~2018-12-28 0:47 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-12-23 15:48 [Buildroot] [RFC 0/3] WPE WebKit Francois Perrad
2018-12-23 15:48 ` [Buildroot] [RFC 1/3] libwpe: new package Francois Perrad
2018-12-28 0:47 ` Adrian Perez de Castro [this message]
2018-12-23 15:48 ` [Buildroot] [RFC 2/3] wpebackend-fdo: " Francois Perrad
2018-12-28 0:58 ` Adrian Perez de Castro
2018-12-29 9:15 ` François Perrad
2018-12-31 14:02 ` Thomas Petazzoni
2018-12-23 15:48 ` [Buildroot] [RFC 3/3] wpewebkit: " Francois Perrad
2018-12-28 1:18 ` Adrian Perez de Castro
2018-12-29 9:28 ` François Perrad
2018-12-31 14:08 ` Thomas Petazzoni
2018-12-27 9:30 ` [Buildroot] [RFC 0/3] WPE WebKit Thomas Petazzoni
2018-12-28 0:34 ` Adrian Perez de Castro
2018-12-30 18:01 ` François Perrad
2018-12-31 14:13 ` Thomas Petazzoni
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20181228014745.GD19602@momiji \
--to=aperez@igalia.com \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.