Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-fontconfig/
Date: Sat, 02 Apr 2022 03:07:54
Message-Id: 1648868853.0df57c04fcbe5ed1e70b0d4ec342935af9ba4d4a.sam@gentoo
1 commit: 0df57c04fcbe5ed1e70b0d4ec342935af9ba4d4a
2 Author: David Michael <fedora.dm0 <AT> gmail <DOT> com>
3 AuthorDate: Thu Jul 1 19:08:00 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 2 03:07:33 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0df57c04
7
8 app-eselect/eselect-fontconfig: drop fontconfig dependency
9
10 The eselect module doesn't actually use any part of fontconfig, so
11 drop it to behave like other eselect modules and remove a circular
12 dependency.
13
14 Package-Manager: Portage-3.0.20, Repoman-3.0.2
15 Signed-off-by: David Michael <fedora.dm0 <AT> gmail.com>
16 Signed-off-by: Sam James <sam <AT> gentoo.org>
17
18 .../eselect-fontconfig-1.1-r2.ebuild | 21 +++++++++++++++++++++
19 1 file changed, 21 insertions(+)
20
21 diff --git a/app-eselect/eselect-fontconfig/eselect-fontconfig-1.1-r2.ebuild b/app-eselect/eselect-fontconfig/eselect-fontconfig-1.1-r2.ebuild
22 new file mode 100644
23 index 000000000000..b297012ac992
24 --- /dev/null
25 +++ b/app-eselect/eselect-fontconfig/eselect-fontconfig-1.1-r2.ebuild
26 @@ -0,0 +1,21 @@
27 +# Copyright 1999-2022 Gentoo Authors
28 +# Distributed under the terms of the GNU General Public License v2
29 +
30 +EAPI=7
31 +
32 +DESCRIPTION="An eselect module to manage /etc/fonts/conf.d symlinks"
33 +HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
34 +SRC_URI="mirror://gentoo/fontconfig.eselect-${PV}.bz2"
35 +
36 +LICENSE="GPL-2"
37 +SLOT="0"
38 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
39 +
40 +RDEPEND=">=app-admin/eselect-1.2.3"
41 +
42 +S=${WORKDIR}
43 +
44 +src_install() {
45 + insinto /usr/share/eselect/modules
46 + newins fontconfig.eselect-${PV} fontconfig.eselect
47 +}