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-misc/compose-tables/
Date: Sat, 30 Apr 2022 00:08:58
Message-Id: 1651277323.60690ccf61dcbcb8b3052b2cc2dfcd1d94efa5a9.mattst88@gentoo
1 commit: 60690ccf61dcbcb8b3052b2cc2dfcd1d94efa5a9
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 30 00:05:25 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 30 00:08:43 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60690ccf
7
8 x11-misc/compose-tables: Version bump to 1.8
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 x11-misc/compose-tables/Manifest | 1 +
13 x11-misc/compose-tables/compose-tables-1.8.ebuild | 42 +++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/x11-misc/compose-tables/Manifest b/x11-misc/compose-tables/Manifest
17 index 756a6a40d66d..c311c057cffb 100644
18 --- a/x11-misc/compose-tables/Manifest
19 +++ b/x11-misc/compose-tables/Manifest
20 @@ -1,3 +1,4 @@
21 DIST libX11-1.7.3.tar.xz 1861304 BLAKE2B e0f647ef55567b1d7eff74bc053b8e73f8c696be6f233c2ff6f64dee65c1b40b746683ea7a6fafb4304eba4dec43301b4b3506e2ec6fac1d4c89d664b516bbdd SHA512 abc70837d19f7e104a5db1e6d2cfa1256625332c0b53fec44a0a39916a60a430bb53fd436207892aabe4199ac7a0f9287a06588fcd27e0eed54d45d67bbe1294
22 DIST libX11-1.7.4.tar.xz 1872992 BLAKE2B 6a25e5008ead53be5af7411f51711789eb410473f9aefc49fb4d0bf7227b89c5fd71f0f61fef9bc3f83e585e4815644f42884d5e5cf0bdcdd120abe6fe8a741b SHA512 8bfaaf9fc3081c47152d533d30cdc0b2521bfeb088ff813b041c08ffd518c80ba3725bb68cac7c21b521a4bace546f99424700fe21955b498015d14c2f7f9a57
23 DIST libX11-1.7.5.tar.xz 1853152 BLAKE2B 95ceccbfd37d8a749a533bdc03feba94236a47185a2cd7ad6592c534c17636906b735aa5800d810d13d3e342e3dbe281bb1f1f3ecab9d07e6a6a50f33beef8af SHA512 ef33e2f631226cab27657f46e1fd4cfc928f62f928d8297474e7b993017c8f92b60272eed6515990cdf3a9d34581837b7a3896e584f3546dd26f3790034df347
24 +DIST libX11-1.8.tar.xz 1782508 BLAKE2B 15a41cbcdb54d68cd54b6fa4147d55d277a6c091af7d38341ec261b42c547acf981270ceebec5abb3fcc15da5c1e05b7908114e157555f8184234922e3c05fde SHA512 64899ba9efbda00211daf08534a2a98eba86bb377980d21ce319106075cd36b511b17245d02e8ebd1045e7c2147f2c005004bcf579121138be7a7b879eeca83b
25
26 diff --git a/x11-misc/compose-tables/compose-tables-1.8.ebuild b/x11-misc/compose-tables/compose-tables-1.8.ebuild
27 new file mode 100644
28 index 000000000000..4cdfc490b634
29 --- /dev/null
30 +++ b/x11-misc/compose-tables/compose-tables-1.8.ebuild
31 @@ -0,0 +1,42 @@
32 +# Copyright 2020-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +XORG_MULTILIB=no
38 +XORG_TARBALL_SUFFIX=xz
39 +inherit xorg-3
40 +
41 +# Note: please bump this with x11-libs/libX11
42 +DESCRIPTION="X.Org Compose Key tables from libX11"
43 +# xorg-3.eclass would attempt to fetch a tarball with a matching name to this package
44 +SRC_URI="${XORG_BASE_INDIVIDUAL_URI}/lib/libX11-${PV}.tar.${XORG_TARBALL_SUFFIX}"
45 +S="${WORKDIR}/libX11-${PV}/"
46 +
47 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
48 +
49 +# Only needed by configure
50 +DEPEND="
51 + x11-base/xorg-proto
52 + >=x11-libs/libxcb-1.11.1
53 + x11-libs/xtrans"
54 +RDEPEND="!<x11-libs/libX11-1.7.0"
55 +
56 +XORG_CONFIGURE_OPTIONS=(
57 + --without-xmlto
58 + --without-fop
59 + --disable-specs
60 + --disable-xkb
61 +)
62 +
63 +src_compile() {
64 + emake -C nls
65 +}
66 +
67 +src_test() {
68 + :;
69 +}
70 +
71 +src_install() {
72 + emake DESTDIR="${D}" -C nls install
73 +}