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: Thu, 01 Apr 2021 00:55:55
Message-Id: 1617238508.8a1107a3aa3a6e8a5acdaec38e7dd7163691e936.mattst88@gentoo
1 commit: 8a1107a3aa3a6e8a5acdaec38e7dd7163691e936
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 1 00:50:48 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 1 00:55:08 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a1107a3
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.18.0.ebuild | 70 ----------------------------------
14 2 files changed, 71 deletions(-)
15
16 diff --git a/dev-libs/wayland/Manifest b/dev-libs/wayland/Manifest
17 index 80f239ca94c..c5622c6bf62 100644
18 --- a/dev-libs/wayland/Manifest
19 +++ b/dev-libs/wayland/Manifest
20 @@ -1,2 +1 @@
21 -DIST wayland-1.18.0.tar.xz 453968 BLAKE2B ee5b3f9dff07fda85b4d64bc753aff28c4a012184eb3a4bae8e3be0fb74324f12e9ea4e3dc049e06a11c7302e3c6b1e53e49109c814381641568d92b5572eed9 SHA512 e30199e30c2bbd361ee695b4f3f7a4e264f10ed8f46f2c90762b5739fc578ae757dc39aa0258d8fbf0ed418553470bccd4b2730ed9705481cfccdab5de96a8fc
22 DIST wayland-1.19.0.tar.xz 456380 BLAKE2B 0f70bb02e890898c4763001884527067adb686abe9a2b9325badf1730d411d269c437037afc298eec8075eb1e3845f5b81b8ed3d702908388a54e7063cbea91a SHA512 d8a86f5e23e4a88e7c84b82fdb51eb350419086afe462ecb2f4d5c3ba9290ede310cbbcffd60215219ddccf5bad4adec21a5ebfbef6577200f66ac7a1b64a5ef
23
24 diff --git a/dev-libs/wayland/wayland-1.18.0.ebuild b/dev-libs/wayland/wayland-1.18.0.ebuild
25 deleted file mode 100644
26 index e1e30132277..00000000000
27 --- a/dev-libs/wayland/wayland-1.18.0.ebuild
28 +++ /dev/null
29 @@ -1,70 +0,0 @@
30 -# Copyright 1999-2020 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 autotools libtool multilib-minimal toolchain-funcs
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 - virtual/pkgconfig
53 - doc? (
54 - >=app-doc/doxygen-1.6[dot]
55 - app-text/xmlto
56 - >=media-gfx/graphviz-2.26.0
57 - sys-apps/grep[pcre]
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 - !<media-libs/mesa-18.1.1-r1
67 -"
68 -
69 -src_prepare() {
70 - default
71 - [[ $PV = 9999* ]] && eautoreconf || elibtoolize
72 -}
73 -
74 -multilib_src_configure() {
75 - local myeconfargs=(
76 - --disable-static
77 - $(multilib_native_use_enable doc documentation)
78 - $(multilib_native_enable dtd-validation)
79 - )
80 - tc-is-cross-compiler && myeconfargs+=( --with-host-scanner )
81 -
82 - ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
83 -}
84 -
85 -multilib_src_install_all() {
86 - find "${D}" -name '*.la' -delete || die
87 - einstalldocs
88 -}
89 -
90 -src_test() {
91 - # We set it on purpose to only a short subdir name, as socket paths are
92 - # created in there, which are 108 byte limited. With this it hopefully
93 - # barely fits to the limit with /var/tmp/portage/$CAT/$PF/temp/xdr
94 - export XDG_RUNTIME_DIR="${T}"/xdr
95 - mkdir "${XDG_RUNTIME_DIR}" || die
96 - chmod 0700 "${XDG_RUNTIME_DIR}" || die
97 -
98 - multilib-minimal_src_test
99 -}