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: Sat, 17 Jul 2021 21:20:02
Message-Id: 1626556793.01b85257c07aa573774f25de910e9c36d1c099d5.marecki@gentoo
1 commit: 01b85257c07aa573774f25de910e9c36d1c099d5
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 17 21:18:29 2021 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 17 21:19:53 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01b85257
7
8 sys-cluster/singularity: drop 3.7.4
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.4.ebuild | 73 ------------------------
14 2 files changed, 74 deletions(-)
15
16 diff --git a/sys-cluster/singularity/Manifest b/sys-cluster/singularity/Manifest
17 index 63856210d8c..e9cea8f5ad0 100644
18 --- a/sys-cluster/singularity/Manifest
19 +++ b/sys-cluster/singularity/Manifest
20 @@ -1,2 +1 @@
21 -DIST singularity-3.7.4.tar.gz 6446703 BLAKE2B f9263a18c138cffa116ab06d59533948e48500fad69917598adc36b47fb0b8bf81e868ea924d1cd0e39ca6345a2fdc38a1c9788944729a43c4c8b63bbe82a184 SHA512 a02d8e5c3c229e454c7736173cbe3709ccaafb0ffedcf537501eb091cd3ee54899542e0c6e1221f35dcffbaf48d27be7e91a9bd510bdaacfd8a2285ea41e6f3d
22 DIST singularity-3.8.0.tar.gz 7892955 BLAKE2B a75c9a5646cf5bfcc906bdda0e72e062787f6694322ca62ff329c63dfad051edc6c751e4e58cf01476a133947d87ad6230ba60e2d7b7da75ba654486a6c8d48c SHA512 b1e3dc673fbf58d8fa13bea4c67114d1abf0f17e86f1958f585795374107f6b18dd854899b4a574dc3e4d8d4abf4177c26e63c7c3436ae1d35c66331f1630272
23
24 diff --git a/sys-cluster/singularity/singularity-3.7.4.ebuild b/sys-cluster/singularity/singularity-3.7.4.ebuild
25 deleted file mode 100644
26 index c018b5042e0..00000000000
27 --- a/sys-cluster/singularity/singularity-3.7.4.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 -}