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 8A827158020 for ; Mon, 28 Nov 2022 07:05:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B1D78E091D; Mon, 28 Nov 2022 07:05:39 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4B21EE091D for ; Mon, 28 Nov 2022 07:05:39 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 64B8D33D4A6 for ; Mon, 28 Nov 2022 07:05:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 01DE0763 for ; Mon, 28 Nov 2022 07:05:37 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1669619129.7e15c6e5eb84eb90dad4d00020e29c387b2838ab.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/icaclient/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/icaclient/icaclient-22.5.0.16-r1.ebuild net-misc/icaclient/icaclient-22.9.0.21-r2.ebuild X-VCS-Directories: net-misc/icaclient/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 7e15c6e5eb84eb90dad4d00020e29c387b2838ab X-VCS-Branch: master Date: Mon, 28 Nov 2022 07:05:37 +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: faf8350c-82d3-4d32-828a-bd4147d3183b X-Archives-Hash: b11fe7f8449715bc86003181a3339fd4 commit: 7e15c6e5eb84eb90dad4d00020e29c387b2838ab Author: Henning Schild hennsch de> AuthorDate: Fri Nov 25 18:08:40 2022 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Mon Nov 28 07:05:29 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e15c6e5 net-misc/icaclient: do not try to wildcard install empty list We used to try to install config/.* for unknown reason. All versions we have in the tree would not want to install anything with that wildcard. And it seems to cause problems with python 3.11 or maybe an up-to-date portage version. Signed-off-by: Henning Schild hennsch.de> Signed-off-by: Joonas Niilola gentoo.org> net-misc/icaclient/icaclient-22.5.0.16-r1.ebuild | 2 +- net-misc/icaclient/icaclient-22.9.0.21-r2.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/net-misc/icaclient/icaclient-22.5.0.16-r1.ebuild b/net-misc/icaclient/icaclient-22.5.0.16-r1.ebuild index 922d1db82318..6c251c96ef19 100644 --- a/net-misc/icaclient/icaclient-22.5.0.16-r1.ebuild +++ b/net-misc/icaclient/icaclient-22.5.0.16-r1.ebuild @@ -124,7 +124,7 @@ src_install() { insinto "${ICAROOT}"/config # nls/en/*.ini is being handled by pkg_postinst() - doins config/* config/.* + doins config/* for tmpl in {appsrv,wfclient}.template ; do newins nls/en/${tmpl} ${tmpl/template/ini} done diff --git a/net-misc/icaclient/icaclient-22.9.0.21-r2.ebuild b/net-misc/icaclient/icaclient-22.9.0.21-r2.ebuild index 1a81b36755a0..70ee47276545 100644 --- a/net-misc/icaclient/icaclient-22.9.0.21-r2.ebuild +++ b/net-misc/icaclient/icaclient-22.9.0.21-r2.ebuild @@ -141,7 +141,7 @@ src_install() { insinto "${ICAROOT}"/config # nls/en/*.ini is being handled by pkg_postinst() - doins config/* config/.* + doins config/* for tmpl in {appsrv,wfclient}.template ; do newins nls/en/${tmpl} ${tmpl/template/ini} done