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