Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gui-libs/wlroots/
Date: Sat, 11 Jan 2020 20:02:21
Message-Id: 1578772933.9c0fa1e13dd3f8022db237c7c3281e971f766726.prometheanfire@gentoo
1 commit: 9c0fa1e13dd3f8022db237c7c3281e971f766726
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 11 19:48:30 2020 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 11 20:02:13 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c0fa1e1
7
8 gui-libs/wlroots: 0.9.1 bump
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 gui-libs/wlroots/Manifest | 1 +
14 gui-libs/wlroots/wlroots-0.9.1.ebuild | 75 +++++++++++++++++++++++++++++++++++
15 2 files changed, 76 insertions(+)
16
17 diff --git a/gui-libs/wlroots/Manifest b/gui-libs/wlroots/Manifest
18 index e40d474d3b6..970127e8b7e 100644
19 --- a/gui-libs/wlroots/Manifest
20 +++ b/gui-libs/wlroots/Manifest
21 @@ -1,2 +1,3 @@
22 DIST wlroots-0.6.0.tar.gz 497934 BLAKE2B a0b631831752e533f83ed62e402ef69b0994df050fd643cf2ef89556face4a822b3936bc758b70ab160eedda8ced16c0992dc209600914095784bba97bd26ee2 SHA512 c205d4303a381e11ef2f4db2faac1ddf9ad85c675824aae9cfe62d9f8bd313f1568d4810db1d006416783b50c8364198648a46d1ba453a0d8f659d6920618286
23 DIST wlroots-0.8.1.tar.gz 451814 BLAKE2B 85f221ba9068839f326e09df616f6182f518b9a129730dda794103305e3c0786d609a7cc6cb60a90c9d51cb77e3dbbc5993901271dcf1bd656c7744260561b06 SHA512 da41513de48e00303b31fde620463389103215011c6cc49b9a2420a1529889722aa54f26a211179c528709edb6b90ba2efdae5e4bcef18147d9516f3a94e365a
24 +DIST wlroots-0.9.1.tar.gz 464941 BLAKE2B 89598d14d401965d52ee7a6e717f0d574c0b8922bf9441843137baacfaae1928c987543d3c5123fe6612b45e5047a88ec2b099b22e92e747e6431f8375348bd1 SHA512 d43a1ad0441579a7a7ffe28a17546ba851f06aed66b1f8324e69934b4f0f8cc08ae0038a609a51cdcf283e3b0628ec6a29d3f903265f9f3a5cd3d66981cb04c8
25
26 diff --git a/gui-libs/wlroots/wlroots-0.9.1.ebuild b/gui-libs/wlroots/wlroots-0.9.1.ebuild
27 new file mode 100644
28 index 00000000000..1be8cf9b8d9
29 --- /dev/null
30 +++ b/gui-libs/wlroots/wlroots-0.9.1.ebuild
31 @@ -0,0 +1,75 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit fcaps meson
38 +
39 +DESCRIPTION="Pluggable, composable, unopinionated modules for building a Wayland compositor"
40 +HOMEPAGE="https://github.com/swaywm/wlroots"
41 +
42 +if [[ ${PV} == 9999 ]]; then
43 + EGIT_REPO_URI="https://github.com/swaywm/${PN}.git"
44 + inherit git-r3
45 +else
46 + SRC_URI="https://github.com/swaywm/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
47 + KEYWORDS="~amd64 ~arm64 ~x86"
48 +fi
49 +
50 +LICENSE="MIT"
51 +SLOT="0/9"
52 +IUSE="elogind icccm systemd x11-backend X"
53 +REQUIRED_USE="?? ( elogind systemd )"
54 +
55 +DEPEND="
56 + >=dev-libs/libinput-1.9.0:0=
57 + >=dev-libs/wayland-1.17.0
58 + media-libs/mesa[egl,gles2,gbm]
59 + virtual/libudev
60 + x11-libs/libdrm
61 + x11-libs/libxkbcommon
62 + x11-libs/pixman
63 + elogind? ( >=sys-auth/elogind-237 )
64 + icccm? ( x11-libs/xcb-util-wm )
65 + systemd? ( >=sys-apps/systemd-237 )
66 + x11-backend? ( x11-libs/libxcb:0= )
67 + X? (
68 + x11-base/xorg-server[wayland]
69 + x11-libs/libxcb:0=
70 + x11-libs/xcb-util-image
71 + )
72 +"
73 +RDEPEND="
74 + ${DEPEND}
75 +"
76 +BDEPEND="
77 + >=dev-libs/wayland-protocols-1.17
78 + virtual/pkgconfig
79 +"
80 +
81 +src_configure() {
82 + # xcb-util-errors is not on Gentoo Repository (and upstream seems inactive?)
83 + local emesonargs=(
84 + "-Dxcb-errors=disabled"
85 + -Dlibcap=$(usex filecaps enabled disabled)
86 + -Dxcb-icccm=$(usex icccm enabled disabled)
87 + -Dxwayland=$(usex X enabled disabled)
88 + -Dx11-backend=$(usex x11-backend enabled disabled)
89 + "-Dexamples=false"
90 + "-Dwerror=false"
91 + )
92 + if use systemd; then
93 + emesonargs+=("-Dlogind=enabled" "-Dlogind-provider=systemd")
94 + elif use elogind; then
95 + emesonargs+=("-Dlogind=enabled" "-Dlogind-provider=elogind")
96 + else
97 + emesonargs+=("-Dlogind=disabled")
98 + fi
99 +
100 + meson_src_configure
101 +}
102 +
103 +pkg_postinst() {
104 + elog "You must be in the input group to allow your compositor"
105 + elog "to access input devices via libinput."
106 +}