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-apps/xauth/
Date: Sun, 29 Jan 2017 21:26:38
Message-Id: 1485725179.b3c3e010f395cecefcc8cd5bb7ef05a227f18336.mattst88@gentoo
1 commit: b3c3e010f395cecefcc8cd5bb7ef05a227f18336
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 29 21:24:58 2017 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 29 21:26:19 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3c3e010
7
8 x11-apps/xauth: Version bump to 1.0.10.
9
10 x11-apps/xauth/Manifest | 1 +
11 x11-apps/xauth/xauth-1.0.10.ebuild | 33 +++++++++++++++++++++++++++++++++
12 2 files changed, 34 insertions(+)
13
14 diff --git a/x11-apps/xauth/Manifest b/x11-apps/xauth/Manifest
15 index c620eb9..f70a485 100644
16 --- a/x11-apps/xauth/Manifest
17 +++ b/x11-apps/xauth/Manifest
18 @@ -1 +1,2 @@
19 +DIST xauth-1.0.10.tar.bz2 162176 SHA256 5afe42ce3cdf4f60520d1658d2b17face45c74050f39af45dccdc95e73fafc4d SHA512 1ddcd80848c4efffc6d0a576177f92a3ce47eb871a6c7e2097d96491aec027404d437e0bd792714ef423989153a9644f5ff179bde4dfeb4b340636d642d5849f WHIRLPOOL 9ed291e2699fa34b49cb05c9ea2934cbe6b4361b0eec138734cadd741551b299f266ee50827b86f558beba47ff5c5c2f695279000f00fc720125e915f7e8e26b
20 DIST xauth-1.0.9.tar.bz2 154976 SHA256 56ce1523eb48b1f8a4f4244fe1c3d8e6af1a3b7d4b0e6063582421b0b68dc28f SHA512 e7b8e950a3e9e36131041692a22b2390c75df94fa8b5f4ea2ef2d79778e000865b1b0ec5930612dedb782d451022ee52c7c9a404d249809adb4b905b66f44d0b WHIRLPOOL 16f2686a181281610df55d405738d0a39fd7fa891a58606b13abed3754179802e1b22a938ef43d6d4205dfa8ff7f764f5e1c5323e58bed080ccd33ca4f4f0134
21
22 diff --git a/x11-apps/xauth/xauth-1.0.10.ebuild b/x11-apps/xauth/xauth-1.0.10.ebuild
23 new file mode 100644
24 index 00000000..102fdf1
25 --- /dev/null
26 +++ b/x11-apps/xauth/xauth-1.0.10.ebuild
27 @@ -0,0 +1,33 @@
28 +# Copyright 1999-2017 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +# $Id$
31 +
32 +EAPI=5
33 +
34 +inherit autotools-utils xorg-2
35 +
36 +DESCRIPTION="X authority file utility"
37 +
38 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
39 +
40 +IUSE="ipv6 test"
41 +
42 +RDEPEND="x11-libs/libX11
43 + x11-libs/libXau
44 + x11-libs/libXext
45 + x11-libs/libXmu"
46 +DEPEND="${RDEPEND}
47 + test? ( dev-util/cmdtest )"
48 +
49 +src_configure() {
50 + XORG_CONFIGURE_OPTIONS=(
51 + $(use_enable ipv6)
52 + )
53 + xorg-2_src_configure
54 +}
55 +
56 +src_test() {
57 + # Address sandbox failure, bug #527574
58 + addwrite /proc/self/comm
59 + autotools-utils_src_test
60 +}