Gentoo Archives: gentoo-commits

From: "Chí-Thanh Christopher Nguyễn" <chithanh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/wayland-protocols/
Date: Sun, 29 May 2016 18:49:04
Message-Id: 1464547745.b54982265bb4168a158d41c77e4ea3b349052983.chithanh@gentoo
1 commit: b54982265bb4168a158d41c77e4ea3b349052983
2 Author: Chí-Thanh Christopher Nguyễn <chithanh <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 29 18:49:05 2016 +0000
4 Commit: Chí-Thanh Christopher Nguyễn <chithanh <AT> gentoo <DOT> org>
5 CommitDate: Sun May 29 18:49:05 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5498226
7
8 dev-libs/wayland-protocols: Version bump
9
10 Package-Manager: portage-2.2.28
11
12 dev-libs/wayland-protocols/Manifest | 1 +
13 .../wayland-protocols/wayland-protocols-1.4.ebuild | 41 ++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/dev-libs/wayland-protocols/Manifest b/dev-libs/wayland-protocols/Manifest
17 index 03232ad..c733b30 100644
18 --- a/dev-libs/wayland-protocols/Manifest
19 +++ b/dev-libs/wayland-protocols/Manifest
20 @@ -1 +1,2 @@
21 DIST wayland-protocols-1.3.tar.xz 101684 SHA256 6bcd0633fdf9225ef1c7d2831f542e947f7d79811c79fc37f57b2e5375ded82f SHA512 8e407bce93e595ebb7c6a8c7542d4db81d352821c63f41ac75d27f6d52e81e18e0a9a7d4b18460e446c4201931e42a98c0cd214015f154363099eda5747cd738 WHIRLPOOL 73d5c04cb987d0632fe0cc950cd8bf132f9427bd70a65777027148ada2ede0347b336f7faf6e6455171c1a5b2829835edceca15cbbbaf95b99223976279757a9
22 +DIST wayland-protocols-1.4.tar.xz 102624 SHA256 014a9a23c21ed14f49b1005b3e8efa66d6337d4ceafc97f7b0d6707e7e3df572 SHA512 ffbac79b3be03f7b1c1033923702aadd0bdd2f90dafee946a4a2384eaa9e7f2ab90de6a6497fce374fd3343b133f8dd02683503973a65f947e65b76c47186123 WHIRLPOOL 410923d92e4a962e439f02c5964eb0e61202434bbbf52d68b61549897dcf57040c7b928bad883484802aa3414f63198bba784d644d6c2e8260a78c9247575ac4
23
24 diff --git a/dev-libs/wayland-protocols/wayland-protocols-1.4.ebuild b/dev-libs/wayland-protocols/wayland-protocols-1.4.ebuild
25 new file mode 100644
26 index 0000000..9beb33b
27 --- /dev/null
28 +++ b/dev-libs/wayland-protocols/wayland-protocols-1.4.ebuild
29 @@ -0,0 +1,41 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +
36 +if [[ ${PV} = 9999* ]]; then
37 + EGIT_REPO_URI="git://anongit.freedesktop.org/git/wayland/${PN}"
38 + GIT_ECLASS="git-r3"
39 + EXPERIMENTAL="true"
40 + AUTOTOOLS_AUTORECONF=1
41 +fi
42 +
43 +inherit autotools-multilib $GIT_ECLASS
44 +
45 +DESCRIPTION="Wayland protocol files"
46 +HOMEPAGE="https://wayland.freedesktop.org/"
47 +
48 +if [[ $PV = 9999* ]]; then
49 + SRC_URI="${SRC_PATCHES}"
50 + KEYWORDS=""
51 +else
52 + SRC_URI="https://wayland.freedesktop.org/releases/${P}.tar.xz"
53 + KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
54 +fi
55 +
56 +LICENSE="MIT"
57 +SLOT="0"
58 +IUSE=""
59 +
60 +RDEPEND="dev-libs/wayland"
61 +DEPEND="${RDEPEND}
62 + virtual/pkgconfig"
63 +
64 +src_test() {
65 + export XDG_RUNTIME_DIR="${T}/runtime-dir"
66 + mkdir "${XDG_RUNTIME_DIR}" || die
67 + chmod 0700 "${XDG_RUNTIME_DIR}" || die
68 +
69 + autotools-multilib_src_test
70 +}