Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gui-libs/libwpe/
Date: Thu, 04 Aug 2022 00:36:20
Message-Id: 1659573371.4c32ae5a18e97a8ec9b0133f1d00b367f50c0dc9.mattst88@gentoo
1 commit: 4c32ae5a18e97a8ec9b0133f1d00b367f50c0dc9
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 4 00:35:04 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 4 00:36:11 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c32ae5a
7
8 gui-libs/libwpe: Version bump to 1.12.2
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 gui-libs/libwpe/Manifest | 1 +
13 gui-libs/libwpe/libwpe-1.12.2.ebuild | 31 +++++++++++++++++++++++++++++++
14 2 files changed, 32 insertions(+)
15
16 diff --git a/gui-libs/libwpe/Manifest b/gui-libs/libwpe/Manifest
17 index 5e77c8345fe1..3abb71cb92e3 100644
18 --- a/gui-libs/libwpe/Manifest
19 +++ b/gui-libs/libwpe/Manifest
20 @@ -1 +1,2 @@
21 DIST libwpe-1.12.0.tar.xz 54548 BLAKE2B d2eb3f410ba0691c6e9ad4638de517be36d5b9729c7b09c44a316d91822071b527c1ea4a4fda5248d623bf61250cc398cffdf19ec47059621323ed726a5d0889 SHA512 d85865fd6f2dd907589a4d2c1b956d9a2093f72f5b7f755ab2bef040f7f26a73ddadd47a607a78578dec6eb6d59f44e18fa8b96a71f7bd19f3d62073f3ca6fee
22 +DIST libwpe-1.12.2.tar.xz 55416 BLAKE2B ac0d1f824b3cb82f1068cf4536b2481be6e1fb243582b3bc48afaa2b15450dbeeb374e52cf607ca3c758f314382a5090d5376be9b7ccf07bb06b654afa99844d SHA512 ff09d80ef896c22091169d62f25cf03213149b592a65029c4e1190c48068f023a81cb8191c7f4e6e27dedf8ba3dd6c28588dac6c6571cf634b3f3093115d6562
23
24 diff --git a/gui-libs/libwpe/libwpe-1.12.2.ebuild b/gui-libs/libwpe/libwpe-1.12.2.ebuild
25 new file mode 100644
26 index 000000000000..c7b2ec058f58
27 --- /dev/null
28 +++ b/gui-libs/libwpe/libwpe-1.12.2.ebuild
29 @@ -0,0 +1,31 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit meson
36 +
37 +DESCRIPTION="Platform-agnostic interfaces for WPE WebKit"
38 +HOMEPAGE="https://wpewebkit.org/"
39 +SRC_URI="https://wpewebkit.org/releases/${P}.tar.xz"
40 +
41 +LICENSE="BSD-2"
42 +SLOT="1.0"
43 +
44 +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
45 +
46 +RDEPEND="
47 + media-libs/mesa[egl(+)]
48 + x11-libs/libxkbcommon
49 +"
50 +DEPEND="${RDEPEND}"
51 +BDEPEND="
52 + virtual/pkgconfig
53 +"
54 +
55 +src_configure() {
56 + local emesonargs=(
57 + -Dbuild-docs=false # hotdoc not packaged
58 + )
59 + meson_src_configure
60 +}