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: Tue, 30 Nov 2021 11:37:46
Message-Id: 1638272250.adb5552a56b4290442745071768212c15376dc49.marecki@gentoo
1 commit: adb5552a56b4290442745071768212c15376dc49
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 30 11:37:30 2021 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 30 11:37:30 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adb5552a
7
8 sys-cluster/singularity: drop 3.8.3
9
10 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
11
12 sys-cluster/singularity/Manifest | 1 -
13 sys-cluster/singularity/singularity-3.8.3.ebuild | 71 ------------------------
14 2 files changed, 72 deletions(-)
15
16 diff --git a/sys-cluster/singularity/Manifest b/sys-cluster/singularity/Manifest
17 index 6e7f44d42947..4b0ea9e7a0b2 100644
18 --- a/sys-cluster/singularity/Manifest
19 +++ b/sys-cluster/singularity/Manifest
20 @@ -1,2 +1 @@
21 -DIST singularity-3.8.3.tar.gz 7948604 BLAKE2B 67c8f4e52faf46a25c1bc16d4f05100f92cfb67b111898bebaeed827bb545f9d44fc3aaae99cbea020ec934c7dd3412b119a3f7f3f003f3e09a5e86dd2816957 SHA512 ede69bfa6602d75f67354afc215a1cf51db769df052662b77a8f1ac88cf580f13683190231452611ba618cda0e63af746dcdf59ab41611a9035bd199f8b50ec5
22 DIST singularity-3.8.5.tar.gz 7898598 BLAKE2B 3cf76734d6208340d8562f3d3d67f95c507bad3fad6797d82aed39aa39288385ca02d62854f3dddcfc1a1e3056e7485f27e6081c152b853c682ca8e3a587cf3a SHA512 857761f47528a841a3cf11b49583ab7e8a2d137703e1826ff194011abba3334ed06859219e0c457f352304e7b18f1c493a8b337cc5df67981eb428c567d0ac5f
23
24 diff --git a/sys-cluster/singularity/singularity-3.8.3.ebuild b/sys-cluster/singularity/singularity-3.8.3.ebuild
25 deleted file mode 100644
26 index 8e297e844c82..000000000000
27 --- a/sys-cluster/singularity/singularity-3.8.3.ebuild
28 +++ /dev/null
29 @@ -1,71 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
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 ~riscv 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 -src_configure() {
63 - local myconfargs=(
64 - -c "$(tc-getBUILD_CC)" \
65 - -x "$(tc-getBUILD_CXX)" \
66 - -C "$(tc-getCC)" \
67 - -X "$(tc-getCXX)" \
68 - --prefix=/usr \
69 - --sysconfdir=/etc \
70 - --runstatedir=/run \
71 - --localstatedir=/var \
72 - $(usex network "" "--without-network") \
73 - $(usex suid "" "--without-suid")
74 - )
75 - ./mconfig -v ${myconfargs[@]} || die "Error invoking mconfig"
76 -}
77 -
78 -src_compile() {
79 - emake -C builddir
80 -}
81 -
82 -src_install() {
83 - emake DESTDIR="${ED}" -C builddir install
84 - keepdir /var/singularity/mnt/session
85 -
86 - # As of version 3.5.3 this seems to be very much broken, affecting
87 - # commands which have got nothing to do with singularity (example:
88 - # completion on 'udisks mount -b /dev/' rejects all files from that
89 - # directory other than 'autofs'). Moreover, this should go into
90 - # $(get_bashcompdir) (from bash-completion-r1.eclass) rather than /etc.
91 - # Hopefully temporary, which is why we delete this at install time
92 - # instead of patching build scripts not to generate bash-completion
93 - # data in the first place.
94 - rm -rf "${ED}"/etc/bash_completion.d || die
95 -
96 - dodoc README.md CONTRIBUTORS.md CONTRIBUTING.md
97 - if use examples; then
98 - dodoc -r examples
99 - fi
100 -}