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: Sat, 29 Sep 2018 17:19:33
Message-Id: 1538241539.24bc765fbe3f321f70fee979115ff9beffae9d7b.mattst88@gentoo
1 commit: 24bc765fbe3f321f70fee979115ff9beffae9d7b
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 29 17:02:10 2018 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 29 17:18:59 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24bc765f
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.14.0.ebuild | 72 ----------------------------------
14 2 files changed, 73 deletions(-)
15
16 diff --git a/dev-libs/wayland/Manifest b/dev-libs/wayland/Manifest
17 index 529e1adbd85..9e0aa19b30e 100644
18 --- a/dev-libs/wayland/Manifest
19 +++ b/dev-libs/wayland/Manifest
20 @@ -1,2 +1 @@
21 -DIST wayland-1.14.0.tar.xz 413960 BLAKE2B b6d6bb35d3b664ef4cb91cbb9fc9687475730466306d9d2722991ce912be26fd4b3440fd0b94aba2b707911fe43a7c91e053b379261a17197c414ebc08818f83 SHA512 bd38b2b8963d4d98d42c270e5d7dbff6323789a173b19b67a18258424fd8adee5021b282c9d7f6dad0bd25aa0160e76aecd8ed803d4eb25d911ef0a81cd713a5
22 DIST wayland-1.15.0.tar.xz 432932 BLAKE2B d86e5ba52c16664926e4688317db3fad4f9629c3903239dde46ee238ef7874f28e39daa6bbda96519dfda4ff83a1f540522f21fbabe9b71aa263523481d4eb5b SHA512 f908917f1b575d2dc4d9770d3303e2637e8744fcb5c81feb2af2fe82cc51f54e22beaddfbe775fcf9623584169b7a062c75076132abeb888717180bfab53b3a8
23
24 diff --git a/dev-libs/wayland/wayland-1.14.0.ebuild b/dev-libs/wayland/wayland-1.14.0.ebuild
25 deleted file mode 100644
26 index 3ea948e26b8..00000000000
27 --- a/dev-libs/wayland/wayland-1.14.0.ebuild
28 +++ /dev/null
29 @@ -1,72 +0,0 @@
30 -# Copyright 1999-2018 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -EGIT_REPO_URI="https://anongit.freedesktop.org/git/wayland/wayland.git"
36 -
37 -if [[ ${PV} = 9999* ]]; then
38 - GIT_ECLASS="git-r3"
39 -fi
40 -
41 -inherit autotools libtool ltprune multilib-minimal toolchain-funcs $GIT_ECLASS
42 -
43 -DESCRIPTION="Wayland protocol libraries"
44 -HOMEPAGE="https://wayland.freedesktop.org/"
45 -
46 -if [[ $PV = 9999* ]]; then
47 - SRC_URI=""
48 -else
49 - SRC_URI="https://wayland.freedesktop.org/releases/${P}.tar.xz"
50 - KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86"
51 -fi
52 -
53 -LICENSE="MIT"
54 -SLOT="0"
55 -IUSE="doc static-libs"
56 -
57 -RDEPEND=">=dev-libs/expat-2.1.0-r3:=[${MULTILIB_USEDEP}]
58 - >=virtual/libffi-3.0.13-r1:=[${MULTILIB_USEDEP}]
59 - dev-libs/libxml2:="
60 -DEPEND="${RDEPEND}
61 - doc? (
62 - >=app-doc/doxygen-1.6[dot]
63 - app-text/xmlto
64 - >=media-gfx/graphviz-2.26.0
65 - sys-apps/grep[pcre]
66 - )
67 - virtual/pkgconfig"
68 -
69 -src_prepare() {
70 - default
71 - [[ $PV = 9999* ]] && eautoreconf || elibtoolize
72 -}
73 -
74 -multilib_src_configure() {
75 - local myconf
76 - if tc-is-cross-compiler ; then
77 - myconf+=' --with-host-scanner '
78 - fi
79 -
80 - ECONF_SOURCE="${S}" econf \
81 - --disable-static \
82 - $(multilib_native_use_enable doc documentation) \
83 - $(multilib_native_enable dtd-validation) \
84 - ${myconf}
85 -}
86 -
87 -multilib_src_install_all() {
88 - prune_libtool_files
89 - einstalldocs
90 -}
91 -
92 -src_test() {
93 - # We set it on purpose to only a short subdir name, as socket paths are
94 - # created in there, which are 108 byte limited. With this it hopefully
95 - # barely fits to the limit with /var/tmp/portage/$CAT/$PF/temp/xdr
96 - export XDG_RUNTIME_DIR="${T}"/xdr
97 - mkdir "${XDG_RUNTIME_DIR}" || die
98 - chmod 0700 "${XDG_RUNTIME_DIR}" || die
99 -
100 - multilib-minimal_src_test
101 -}