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-libs/libXi/
Date: Wed, 15 Sep 2021 20:27:19
Message-Id: 1631737629.626bd55b65435616fb8dbcb007f9d79652e7381f.mattst88@gentoo
1 commit: 626bd55b65435616fb8dbcb007f9d79652e7381f
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 15 20:01:06 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 15 20:27:09 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=626bd55b
7
8 x11-libs/libXi: Version bump to 1.8
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 x11-libs/libXi/Manifest | 1 +
13 x11-libs/libXi/libXi-1.8.ebuild | 28 ++++++++++++++++++++++++++++
14 2 files changed, 29 insertions(+)
15
16 diff --git a/x11-libs/libXi/Manifest b/x11-libs/libXi/Manifest
17 index 3883c2f0f88..af452b5991a 100644
18 --- a/x11-libs/libXi/Manifest
19 +++ b/x11-libs/libXi/Manifest
20 @@ -1,2 +1,3 @@
21 DIST libXi-1.7.10.tar.bz2 484519 BLAKE2B b4a3a090045d65c351d21a65fdf2f3d252e11546a5eaba9bf5f22c837b84ee758fe325eff39b32df55f65ab3d6cdc0d2c7ac7e134fec0983baeb0103d109c810 SHA512 591f0860bf5904897587c4990d6c852f3729a212d1ef390362d41242440e078221877c31db2232d5cc81727fe97f4e194b077f7de917e251e60641bbd06ee218
22 DIST libXi-1.7.99.2.tar.bz2 494804 BLAKE2B 103fe7d559f6e60417795d6f7278dc90375fa6889f8532a398986d163fd3f478396f8c71f81cba5bc2c37304d2dc5a229e1361a7e5237a04728f8c39466df0b6 SHA512 9e66315528152baabcf6333f5d0c9b829ca4f2055a90523de45f3022b726fdfbcb99e6459f8b18147b8305144cd7f7e0d4b2e9ebdd81f65efa29da08ffac1b39
23 +DIST libXi-1.8.tar.bz2 494579 BLAKE2B 6804aa5c666ff489180c7d468e666fd3c986c7e24396f80f69164cc351c4aff5ab3c8e22ded61f03b96e37bceb5fd86d707220479100c5ec44a2a05fe5345d60 SHA512 4b2c667a8466eb389f253d77285c3f506c4a2b6c75054c722974a864565d565cc0c5701f8ea773eb929ceb94adfeb737ecd7a0bfc2c240157416a5f343c07aba
24
25 diff --git a/x11-libs/libXi/libXi-1.8.ebuild b/x11-libs/libXi/libXi-1.8.ebuild
26 new file mode 100644
27 index 00000000000..b3f6f57be0a
28 --- /dev/null
29 +++ b/x11-libs/libXi/libXi-1.8.ebuild
30 @@ -0,0 +1,28 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +XORG_DOC=doc
37 +XORG_MULTILIB=yes
38 +inherit xorg-3
39 +
40 +DESCRIPTION="X.Org Xi library"
41 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
42 +
43 +RDEPEND="
44 + >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
45 + >=x11-libs/libXext-1.3.2[${MULTILIB_USEDEP}]
46 + >=x11-libs/libXfixes-5.0.1[${MULTILIB_USEDEP}]"
47 +DEPEND="${RDEPEND}
48 + >=x11-base/xorg-proto-2021.4.99.2"
49 +
50 +src_configure() {
51 + local XORG_CONFIGURE_OPTIONS=(
52 + $(use_enable doc specs)
53 + $(use_with doc xmlto)
54 + $(use_with doc asciidoc)
55 + --without-fop
56 + )
57 + xorg-3_src_configure
58 +}