summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenning Schild <henning@hennsch.de>2022-11-25 19:08:40 +0100
committerJoonas Niilola <juippis@gentoo.org>2022-11-28 09:05:29 +0200
commit7e15c6e5eb84eb90dad4d00020e29c387b2838ab (patch)
tree788f88aa577f72cb81ea47cc8053264da7edc941 /net-misc
parentmedia-gfx/librecad: several improvements (diff)
downloadgentoo-7e15c6e5eb84eb90dad4d00020e29c387b2838ab.tar.gz
gentoo-7e15c6e5eb84eb90dad4d00020e29c387b2838ab.tar.bz2
gentoo-7e15c6e5eb84eb90dad4d00020e29c387b2838ab.zip
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 <henning@hennsch.de> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'net-misc')
-rw-r--r--net-misc/icaclient/icaclient-22.5.0.16-r1.ebuild2
-rw-r--r--net-misc/icaclient/icaclient-22.9.0.21-r2.ebuild2
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