Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/singularity/
Date: Fri, 16 Apr 2021 18:25:11
Message-Id: 1618597479.8f16ce52d8f6136f260a08a3c1294990014e779a.marecki@gentoo
1 commit: 8f16ce52d8f6136f260a08a3c1294990014e779a
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 16 16:05:56 2021 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 16 18:24:39 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f16ce52
7
8 sys-cluster/singularity: remove old
9
10 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
11
12 sys-cluster/singularity/Manifest | 1 -
13 sys-cluster/singularity/singularity-3.7.1.ebuild | 73 ------------------------
14 2 files changed, 74 deletions(-)
15
16 diff --git a/sys-cluster/singularity/Manifest b/sys-cluster/singularity/Manifest
17 index 9da8ead5740..b06871e9fce 100644
18 --- a/sys-cluster/singularity/Manifest
19 +++ b/sys-cluster/singularity/Manifest
20 @@ -1,2 +1 @@
21 -DIST singularity-3.7.1.tar.gz 6121297 BLAKE2B 10399692559dbaf1a855229f4d3ff845af5b923d9a5b959638481ba58fd5bd04035fb751e5000aa44f816947d88ead85fbdceb8ad5cdb94aa54b0986cb922044 SHA512 ed87bd13bb4bbdcb49981cc02bf37e1db9a5d8fab3ef4314a15cfa391cb2210b55b2e54500fb03811eda8f31499ea7cead9a368a486da0cea0ac71037908c7cc
22 DIST singularity-3.7.2.tar.gz 6268044 BLAKE2B d5a316046037dcb9c386f2d3b45204b77394cae273d0daa561282a354a463823c4be3c56e0935ff0a8dc9671cb841ad8cb75364b7652dce93ce099ede3e12ee3 SHA512 f31e383e645d394cc29e5b38da84ca805545e3226b069c696e667e7dde1569fa2373613f624c739482459a938e76e4e513062c19474685ccbfa5bd6162244466
23
24 diff --git a/sys-cluster/singularity/singularity-3.7.1.ebuild b/sys-cluster/singularity/singularity-3.7.1.ebuild
25 deleted file mode 100644
26 index 437a7301250..00000000000
27 --- a/sys-cluster/singularity/singularity-3.7.1.ebuild
28 +++ /dev/null
29 @@ -1,73 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -inherit linux-info toolchain-funcs
36 -
37 -DESCRIPTION="Application containers for Linux"
38 -HOMEPAGE="https://sylabs.io"
39 -SRC_URI="https://github.com/hpcng/${PN}/releases/download/v${PV}/${P}.tar.gz"
40 -
41 -SLOT="0"
42 -LICENSE="BSD"
43 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
44 -IUSE="examples +network +suid"
45 -
46 -# Do not complain about CFLAGS etc since go projects do not use them.
47 -QA_FLAGS_IGNORED='.*'
48 -
49 -COMMON="sys-libs/libseccomp"
50 -BDEPEND="virtual/pkgconfig"
51 -DEPEND="${COMMON}
52 - >=dev-lang/go-1.13.0
53 - app-crypt/gpgme
54 - dev-libs/openssl
55 - sys-apps/util-linux
56 - sys-fs/cryptsetup"
57 -RDEPEND="${COMMON}
58 - sys-fs/squashfs-tools"
59 -
60 -CONFIG_CHECK="~SQUASHFS"
61 -
62 -S=${WORKDIR}/${PN}
63 -
64 -src_configure() {
65 - local myconfargs=(
66 - -c "$(tc-getBUILD_CC)" \
67 - -x "$(tc-getBUILD_CXX)" \
68 - -C "$(tc-getCC)" \
69 - -X "$(tc-getCXX)" \
70 - --prefix=/usr \
71 - --sysconfdir=/etc \
72 - --runstatedir=/run \
73 - --localstatedir=/var \
74 - $(usex network "" "--without-network") \
75 - $(usex suid "" "--without-suid")
76 - )
77 - ./mconfig -v ${myconfargs[@]} || die "Error invoking mconfig"
78 -}
79 -
80 -src_compile() {
81 - emake -C builddir
82 -}
83 -
84 -src_install() {
85 - emake DESTDIR="${ED}" -C builddir install
86 - keepdir /var/singularity/mnt/session
87 -
88 - # As of version 3.5.3 this seems to be very much broken, affecting
89 - # commands which have got nothing to do with singularity (example:
90 - # completion on 'udisks mount -b /dev/' rejects all files from that
91 - # directory other than 'autofs'). Moreover, this should go into
92 - # $(get_bashcompdir) (from bash-completion-r1.eclass) rather than /etc.
93 - # Hopefully temporary, which is why we delete this at install time
94 - # instead of patching build scripts not to generate bash-completion
95 - # data in the first place.
96 - rm -rf "${ED}"/etc/bash_completion.d || die
97 -
98 - dodoc README.md CONTRIBUTORS.md CONTRIBUTING.md
99 - if use examples; then
100 - dodoc -r examples
101 - fi
102 -}