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