Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-proto/xorgproto/
Date: Mon, 12 Feb 2018 19:22:51
Message-Id: 1518463292.def1411468163c48fd7b98d954ede5d4fbcacfc1.mattst88@gentoo
1 commit: def1411468163c48fd7b98d954ede5d4fbcacfc1
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 12 19:20:46 2018 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 12 19:21:32 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=def14114
7
8 x11-proto/xorgproto: Version bump to 2018.2
9
10 x11-proto/xorgproto/Manifest | 1 +
11 x11-proto/xorgproto/xorgproto-2018.2.ebuild | 65 +++++++++++++++++++++++++++++
12 2 files changed, 66 insertions(+)
13
14 diff --git a/x11-proto/xorgproto/Manifest b/x11-proto/xorgproto/Manifest
15 new file mode 100644
16 index 00000000000..9f57b4d023c
17 --- /dev/null
18 +++ b/x11-proto/xorgproto/Manifest
19 @@ -0,0 +1 @@
20 +DIST xorgproto-2018.2.tar.gz 461877 BLAKE2B f7a802b9dec3c51981a3244cf62ffe0abd89f88cb28d3a3799e8a174ea11e48a0faf85febfcb5e96e12c3a843cdb09077a6aa4101852c748a15bc847ba29c883 SHA512 31bff77c54e4832dbd55534b90606e49b2face0356245edd7d6028f26b06fa9e95dab63aed23d55f8552291fa384f65dde2f223b96cc705e98c425a1d0dd3d4b
21
22 diff --git a/x11-proto/xorgproto/xorgproto-2018.2.ebuild b/x11-proto/xorgproto/xorgproto-2018.2.ebuild
23 new file mode 100644
24 index 00000000000..9b4dce089d5
25 --- /dev/null
26 +++ b/x11-proto/xorgproto/xorgproto-2018.2.ebuild
27 @@ -0,0 +1,65 @@
28 +# Copyright 1999-2018 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +
31 +EAPI=6
32 +
33 +EGIT_REPO_URI="https://anongit.freedesktop.org/git/xorg/proto/${PN}"
34 +
35 +if [[ ${PV} = 9999* ]]; then
36 + GIT_ECLASS="git-r3"
37 +fi
38 +
39 +inherit ${GIT_ECLASS} meson
40 +
41 +DESCRIPTION="X.Org combined protocol headers"
42 +HOMEPAGE="https://cgit.freedesktop.org/xorg/proto/xorgproto/"
43 +if [[ ${PV} = 9999* ]]; then
44 + SRC_URI=""
45 +else
46 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
47 + SRC_URI="https://xorg.freedesktop.org/archive/individual/proto/${P}.tar.gz"
48 +fi
49 +
50 +LICENSE="MIT"
51 +SLOT="0"
52 +IUSE=""
53 +
54 +DEPEND="
55 + !<x11-proto/bigreqsproto-1.1.2-r1
56 + !<x11-proto/compositeproto-0.4.2-r2
57 + !<x11-proto/damageproto-1.2.1-r2
58 + !<x11-proto/dmxproto-2.3.1-r2
59 + !<x11-proto/dri2proto-2.8-r2
60 + !<x11-proto/dri3proto-1.0-r1
61 + !<x11-proto/fixesproto-5.0-r2
62 + !<x11-proto/fontsproto-2.1.3-r1
63 + !<x11-proto/glproto-1.4.17-r2
64 + !<x11-proto/inputproto-2.3.2-r1
65 + !<x11-proto/kbproto-1.0.7-r1
66 + !<x11-proto/presentproto-1.1-r1
67 + !<x11-proto/randrproto-1.5.0-r1
68 + !<x11-proto/recordproto-1.14.2-r2
69 + !<x11-proto/renderproto-0.11.1-r2
70 + !<x11-proto/resourceproto-1.2.0-r1
71 + !<x11-proto/scrnsaverproto-1.2.2-r2
72 + !<x11-proto/trapproto-3.4.3-r1
73 + !<x11-proto/videoproto-2.3.3-r1
74 + !<x11-proto/xcmiscproto-1.2.2-r1
75 + !<x11-proto/xextproto-7.3.0-r1
76 + !<x11-proto/xf86bigfontproto-1.2.0-r2
77 + !<x11-proto/xf86dgaproto-2.1-r3
78 + !<x11-proto/xf86driproto-2.1.1-r2
79 + !<x11-proto/xf86miscproto-0.9.3-r1
80 + !<x11-proto/xf86vidmodeproto-2.3.1-r2
81 + !<x11-proto/xineramaproto-1.2.1-r2
82 + !<x11-proto/xproto-7.0.31-r1
83 +
84 + !x11-proto/fontcacheproto
85 + !x11-proto/printproto
86 + !x11-proto/xf86rushproto"
87 +RDEPEND=""
88 +
89 +src_unpack() {
90 + default
91 + [[ $PV = 9999* ]] && git-r3_src_unpack
92 +}