Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/wayland/
Date: Mon, 07 Feb 2022 19:03:36
Message-Id: 1644260599.b6532789c4a58a9688241da758f85e7ba46d839b.mattst88@gentoo
1 commit: b6532789c4a58a9688241da758f85e7ba46d839b
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 7 18:58:48 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 7 19:03:19 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6532789
7
8 dev-libs/wayland: Drop old versions
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 dev-libs/wayland/Manifest | 1 -
13 dev-libs/wayland/wayland-1.19.0.ebuild | 57 ----------------------------------
14 2 files changed, 58 deletions(-)
15
16 diff --git a/dev-libs/wayland/Manifest b/dev-libs/wayland/Manifest
17 index c2d608e43ffd..680b0b621abe 100644
18 --- a/dev-libs/wayland/Manifest
19 +++ b/dev-libs/wayland/Manifest
20 @@ -1,2 +1 @@
21 -DIST wayland-1.19.0.tar.xz 456380 BLAKE2B 0f70bb02e890898c4763001884527067adb686abe9a2b9325badf1730d411d269c437037afc298eec8075eb1e3845f5b81b8ed3d702908388a54e7063cbea91a SHA512 d8a86f5e23e4a88e7c84b82fdb51eb350419086afe462ecb2f4d5c3ba9290ede310cbbcffd60215219ddccf5bad4adec21a5ebfbef6577200f66ac7a1b64a5ef
22 DIST wayland-1.20.0.tar.xz 225188 BLAKE2B d607610ad8b30b6b3bbfc3945679f698030f271766cfb72425f98f170a96469fb085fb9a746a866b8562d7f452c844e61ad57f634dcf365474c7d050b76022e9 SHA512 e8a1f410994b947f850799bdd0d95a2429d8467f853e62a0ab3915a4e9fe130f8aa977e03715114ab740c6ec546edea63d275ce7f927d4f3029ea126e6a7d215
23
24 diff --git a/dev-libs/wayland/wayland-1.19.0.ebuild b/dev-libs/wayland/wayland-1.19.0.ebuild
25 deleted file mode 100644
26 index 1e94dde694a5..000000000000
27 --- a/dev-libs/wayland/wayland-1.19.0.ebuild
28 +++ /dev/null
29 @@ -1,57 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -if [[ ${PV} = *9999* ]]; then
36 - EGIT_REPO_URI="https://gitlab.freedesktop.org/wayland/wayland.git"
37 - inherit git-r3
38 -else
39 - SRC_URI="https://wayland.freedesktop.org/releases/${P}.tar.xz"
40 - KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
41 -fi
42 -inherit meson-multilib
43 -
44 -DESCRIPTION="Wayland protocol libraries"
45 -HOMEPAGE="https://wayland.freedesktop.org/ https://gitlab.freedesktop.org/wayland/wayland"
46 -
47 -LICENSE="MIT"
48 -SLOT="0"
49 -IUSE="doc"
50 -
51 -BDEPEND="
52 - ~dev-util/wayland-scanner-${PV}[$MULTILIB_USEDEP]
53 - virtual/pkgconfig
54 - doc? (
55 - >=app-doc/doxygen-1.6[dot]
56 - app-text/xmlto
57 - >=media-gfx/graphviz-2.26.0
58 - )
59 -"
60 -DEPEND="
61 - >=dev-libs/expat-2.1.0-r3:=[${MULTILIB_USEDEP}]
62 - dev-libs/libxml2:=
63 - >=dev-libs/libffi-3.0.13-r1:=[${MULTILIB_USEDEP}]
64 -"
65 -RDEPEND="${DEPEND}"
66 -
67 -multilib_src_configure() {
68 - local emesonargs=(
69 - $(meson_native_use_bool doc documentation)
70 - $(meson_native_true dtd_validation)
71 - -Dlibraries=true
72 - -Dscanner=false
73 - )
74 - meson_src_configure
75 -}
76 -
77 -src_test() {
78 - # We set it on purpose to only a short subdir name, as socket paths are
79 - # created in there, which are 108 byte limited. With this it hopefully
80 - # barely fits to the limit with /var/tmp/portage/${CATEGORY}/${PF}/temp/x
81 - export XDG_RUNTIME_DIR="${T}"/x
82 - mkdir "${XDG_RUNTIME_DIR}" || die
83 - chmod 0700 "${XDG_RUNTIME_DIR}" || die
84 -
85 - multilib-minimal_src_test
86 -}