From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7EEC515808B for ; Sat, 2 Apr 2022 03:07:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0D80CE0843; Sat, 2 Apr 2022 03:07:53 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 28B49E0843 for ; Sat, 2 Apr 2022 03:07:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A8A0234169C for ; Sat, 2 Apr 2022 03:07:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1E10B35A for ; Sat, 2 Apr 2022 03:07:49 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1648868853.0df57c04fcbe5ed1e70b0d4ec342935af9ba4d4a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-fontconfig/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-eselect/eselect-fontconfig/eselect-fontconfig-1.1-r2.ebuild X-VCS-Directories: app-eselect/eselect-fontconfig/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0df57c04fcbe5ed1e70b0d4ec342935af9ba4d4a X-VCS-Branch: master Date: Sat, 2 Apr 2022 03:07:49 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d2ada56f-9f63-4b7f-8009-fe7461f5e698 X-Archives-Hash: 9e91eae659aee77e99de16d4ee36db20 commit: 0df57c04fcbe5ed1e70b0d4ec342935af9ba4d4a Author: David Michael gmail com> AuthorDate: Thu Jul 1 19:08:00 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Apr 2 03:07:33 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0df57c04 app-eselect/eselect-fontconfig: drop fontconfig dependency The eselect module doesn't actually use any part of fontconfig, so drop it to behave like other eselect modules and remove a circular dependency. Package-Manager: Portage-3.0.20, Repoman-3.0.2 Signed-off-by: David Michael gmail.com> Signed-off-by: Sam James gentoo.org> .../eselect-fontconfig-1.1-r2.ebuild | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/app-eselect/eselect-fontconfig/eselect-fontconfig-1.1-r2.ebuild b/app-eselect/eselect-fontconfig/eselect-fontconfig-1.1-r2.ebuild new file mode 100644 index 000000000000..b297012ac992 --- /dev/null +++ b/app-eselect/eselect-fontconfig/eselect-fontconfig-1.1-r2.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="An eselect module to manage /etc/fonts/conf.d symlinks" +HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" +SRC_URI="mirror://gentoo/fontconfig.eselect-${PV}.bz2" + +LICENSE="GPL-2" +SLOT="0" +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" + +RDEPEND=">=app-admin/eselect-1.2.3" + +S=${WORKDIR} + +src_install() { + insinto /usr/share/eselect/modules + newins fontconfig.eselect-${PV} fontconfig.eselect +}