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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D5A8C138350 for ; Fri, 24 Apr 2020 14:25:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2510EE0AFA; Fri, 24 Apr 2020 14:25:58 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 10593E0AFA for ; Fri, 24 Apr 2020 14:25:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 471D034F0C1 for ; Fri, 24 Apr 2020 14:25:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 42D001E3 for ; Fri, 24 Apr 2020 14:25:54 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1587738342.2c94ad560187ec2a882d9d5805a396e0919e93de.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/singularity/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/singularity/singularity-3.5.3-r1.ebuild sys-cluster/singularity/singularity-3.5.3.ebuild X-VCS-Directories: sys-cluster/singularity/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 2c94ad560187ec2a882d9d5805a396e0919e93de X-VCS-Branch: master Date: Fri, 24 Apr 2020 14:25:54 +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: 11b341c0-9f2e-4cae-9ac6-1c1b77f1fddb X-Archives-Hash: 95d6389625ccf20e0dcd4afd9c925941 commit: 2c94ad560187ec2a882d9d5805a396e0919e93de Author: Marek Szuba gentoo org> AuthorDate: Fri Apr 24 14:22:56 2020 +0000 Commit: Marek Szuba gentoo org> CommitDate: Fri Apr 24 14:25:42 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c94ad56 sys-cluster/singularity: do not install bash-completion rules Singularity installs them into the compatibility directory (/etc/bash_completions.d), moreover they might be automatically generated but they are still badly broken (confirmed to affect quite a few commands which have got nothing to do with singularity). With apologies to everyone who will end up emerge a revbump just to get rid of a single shell file. Signed-off-by: Marek Szuba gentoo.org> .../{singularity-3.5.3.ebuild => singularity-3.5.3-r1.ebuild} | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/sys-cluster/singularity/singularity-3.5.3.ebuild b/sys-cluster/singularity/singularity-3.5.3-r1.ebuild similarity index 69% rename from sys-cluster/singularity/singularity-3.5.3.ebuild rename to sys-cluster/singularity/singularity-3.5.3-r1.ebuild index 2a51a4074fc..16834ae083a 100644 --- a/sys-cluster/singularity/singularity-3.5.3.ebuild +++ b/sys-cluster/singularity/singularity-3.5.3-r1.ebuild @@ -52,6 +52,16 @@ src_install() { emake DESTDIR="${ED}" -C builddir install keepdir /var/singularity/mnt/session + # As of version 3.5.3 this seems to be very much broken, affecting + # commands which have got nothing to do with singularity (example: + # completion on 'udisks mount -b /dev/' rejects all files from that + # directory other than 'autofs'). Moreover, this should go into + # $(get_bashcompdir) (from bash-completion-r1.eclass) rather than /etc. + # Hopefully temporary, which is why we delete this at install time + # instead of patching build scripts not to generate bash-completion + # data in the first place. + rm -rf "${ED}"/etc/bash_completion.d || die + dodoc README.md CONTRIBUTORS.md CONTRIBUTING.md if use examples; then dodoc -r examples