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, 29 Nov 2018 05:17:43
Message-Id: 1543468637.f7dac77311dc0fdd5b8baf13b808ea389b2e3a3a.mattst88@gentoo
1 commit: f7dac77311dc0fdd5b8baf13b808ea389b2e3a3a
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 29 05:06:50 2018 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 29 05:17:17 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7dac773
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.15.0.ebuild | 73 ----------------------------------
14 2 files changed, 74 deletions(-)
15
16 diff --git a/dev-libs/wayland/Manifest b/dev-libs/wayland/Manifest
17 index 90b92d2812c..796b113aaa5 100644
18 --- a/dev-libs/wayland/Manifest
19 +++ b/dev-libs/wayland/Manifest
20 @@ -1,2 +1 @@
21 -DIST wayland-1.15.0.tar.xz 432932 BLAKE2B d86e5ba52c16664926e4688317db3fad4f9629c3903239dde46ee238ef7874f28e39daa6bbda96519dfda4ff83a1f540522f21fbabe9b71aa263523481d4eb5b SHA512 f908917f1b575d2dc4d9770d3303e2637e8744fcb5c81feb2af2fe82cc51f54e22beaddfbe775fcf9623584169b7a062c75076132abeb888717180bfab53b3a8
22 DIST wayland-1.16.0.tar.xz 435216 BLAKE2B 862cc8ca9da060f9b8345aa0a62a4af76a31562246b75d2679bcf30cc894cc94ec28f97951f766b6e5297b2e113cd8b08e5682dacbfc79544c0085995693ec55 SHA512 64eca2b1c0bc7913508a5499dae87e2723c712d8024acbb4c77c3c4a6c20de78c10704ae9827fd034116ca540a547aeec28c5a1e3bd382b23f85231424b0f49c
23
24 diff --git a/dev-libs/wayland/wayland-1.15.0.ebuild b/dev-libs/wayland/wayland-1.15.0.ebuild
25 deleted file mode 100644
26 index e13f0b8db1a..00000000000
27 --- a/dev-libs/wayland/wayland-1.15.0.ebuild
28 +++ /dev/null
29 @@ -1,73 +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 - !<media-libs/mesa-18.1.1-r1"
61 -DEPEND="${RDEPEND}
62 - doc? (
63 - >=app-doc/doxygen-1.6[dot]
64 - app-text/xmlto
65 - >=media-gfx/graphviz-2.26.0
66 - sys-apps/grep[pcre]
67 - )
68 - virtual/pkgconfig"
69 -
70 -src_prepare() {
71 - default
72 - [[ $PV = 9999* ]] && eautoreconf || elibtoolize
73 -}
74 -
75 -multilib_src_configure() {
76 - local myconf
77 - if tc-is-cross-compiler ; then
78 - myconf+=' --with-host-scanner '
79 - fi
80 -
81 - ECONF_SOURCE="${S}" econf \
82 - --disable-static \
83 - $(multilib_native_use_enable doc documentation) \
84 - $(multilib_native_enable dtd-validation) \
85 - ${myconf}
86 -}
87 -
88 -multilib_src_install_all() {
89 - prune_libtool_files
90 - einstalldocs
91 -}
92 -
93 -src_test() {
94 - # We set it on purpose to only a short subdir name, as socket paths are
95 - # created in there, which are 108 byte limited. With this it hopefully
96 - # barely fits to the limit with /var/tmp/portage/$CAT/$PF/temp/xdr
97 - export XDG_RUNTIME_DIR="${T}"/xdr
98 - mkdir "${XDG_RUNTIME_DIR}" || die
99 - chmod 0700 "${XDG_RUNTIME_DIR}" || die
100 -
101 - multilib-minimal_src_test
102 -}