Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/wayland-protocols/
Date: Tue, 20 Jun 2017 11:04:50
Message-Id: 1497956660.f0e79843644293aa00ac3124990ad8d37ac5b18c.mrueg@gentoo
1 commit: f0e79843644293aa00ac3124990ad8d37ac5b18c
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 20 10:53:25 2017 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 20 11:04:20 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0e79843
7
8 dev-libs/wayland-protocols: Version bump to 1.8
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 dev-libs/wayland-protocols/Manifest | 1 +
13 .../wayland-protocols/wayland-protocols-1.8.ebuild | 39 ++++++++++++++++++++++
14 2 files changed, 40 insertions(+)
15
16 diff --git a/dev-libs/wayland-protocols/Manifest b/dev-libs/wayland-protocols/Manifest
17 index 7a6bf167c41..36e30c1484e 100644
18 --- a/dev-libs/wayland-protocols/Manifest
19 +++ b/dev-libs/wayland-protocols/Manifest
20 @@ -1 +1,2 @@
21 DIST wayland-protocols-1.7.tar.xz 113220 SHA256 635f2a937d318f1fecb97b54074ca211486e38af943868dd0fa82ea38d091c1f SHA512 291a3226cc538de3b81bdffa5de513b305a946bfc3481e21c254fcc6a023e0cf2ff1869509c7ae193da02460f1d4a3c5cd5f1ca13b2550886acffcc636fb30d2 WHIRLPOOL 6528e73461455278f2086fc953d251042f870360ab854f388658eb353f3d0affcc6aa369d912a3edc9040a026468a3a0f63b42cbc2a27a0902e9ab94ae2a7bfc
22 +DIST wayland-protocols-1.8.tar.xz 112124 SHA256 e3fa5f2812cfec3c1c2573bd34adfe37d4d8950dba572d9ec6c52adcc5fe4b9a SHA512 8d9bbd4eb52c0b727c75f0379e53e29a197ce21f5a0a10a6351c053e26a635b53dcb418fa44f0fa5e0484d1457681a7f69afd3c98f2095be16ae1b0d0aeb0c50 WHIRLPOOL 4974b1c88ab32a3ec334c15c00e3f3dcf09ffeba9d909140d980d037e4edb21cd906699afd83577cc7505f399b2b10e75ca6df157a97e313b1d182cf5a673c5c
23
24 diff --git a/dev-libs/wayland-protocols/wayland-protocols-1.8.ebuild b/dev-libs/wayland-protocols/wayland-protocols-1.8.ebuild
25 new file mode 100644
26 index 00000000000..3c94786ff4b
27 --- /dev/null
28 +++ b/dev-libs/wayland-protocols/wayland-protocols-1.8.ebuild
29 @@ -0,0 +1,39 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=5
34 +
35 +if [[ ${PV} = 9999* ]]; then
36 + EGIT_REPO_URI="git://anongit.freedesktop.org/git/wayland/${PN}"
37 + GIT_ECLASS="git-r3"
38 + EXPERIMENTAL="true"
39 + AUTOTOOLS_AUTORECONF=1
40 +fi
41 +
42 +inherit autotools-utils ${GIT_ECLASS}
43 +
44 +DESCRIPTION="Wayland protocol files"
45 +HOMEPAGE="https://wayland.freedesktop.org/"
46 +
47 +if [[ $PV = 9999* ]]; then
48 + SRC_URI="${SRC_PATCHES}"
49 +else
50 + SRC_URI="https://wayland.freedesktop.org/releases/${P}.tar.xz"
51 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
52 +fi
53 +
54 +LICENSE="MIT"
55 +SLOT="0"
56 +IUSE=""
57 +
58 +RDEPEND="dev-libs/wayland"
59 +DEPEND="${RDEPEND}
60 + virtual/pkgconfig"
61 +
62 +src_test() {
63 + export XDG_RUNTIME_DIR="${T}/runtime-dir"
64 + mkdir "${XDG_RUNTIME_DIR}" || die
65 + chmod 0700 "${XDG_RUNTIME_DIR}" || die
66 +
67 + autotools-utils_src_test
68 +}