Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-containers/apptainer/
Date: Thu, 30 Jun 2022 09:02:05
Message-Id: 1656579705.d69fc09aca205a14690b49326be2e0d9dfc85971.marecki@gentoo
1 commit: d69fc09aca205a14690b49326be2e0d9dfc85971
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 30 08:11:12 2022 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 30 09:01:45 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d69fc09a
7
8 app-containers/apptainer: drop 1.0.1
9
10 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
11
12 app-containers/apptainer/Manifest | 1 -
13 app-containers/apptainer/apptainer-1.0.1.ebuild | 63 -------------------------
14 2 files changed, 64 deletions(-)
15
16 diff --git a/app-containers/apptainer/Manifest b/app-containers/apptainer/Manifest
17 index 4ee78ec0af5d..8b590bd05691 100644
18 --- a/app-containers/apptainer/Manifest
19 +++ b/app-containers/apptainer/Manifest
20 @@ -1,2 +1 @@
21 -DIST apptainer-1.0.1.tar.gz 11977965 BLAKE2B ba0187c82321583825210f418744add120b682af3f14ee6d8071b927cd884b7e58f67f891ccc53c0d7d98bd786a27abcc26b2bafe79ed723a2f4f38a8e1a344b SHA512 273e94a348be2eaf83cf14b4c72a571670a9fa5cd185a90a0f557ba58ea7eb90d3a0f4bdb749673b0009e2291dd994dc715223c38ce82f9fcd6bf142e7692363
22 DIST apptainer-1.0.2.tar.gz 11984629 BLAKE2B 56ed18bf86fe51e3bb27605f2c87a2c20fd9f3457594f1e0628b00d8616befa275b76bc4aba2a4306c854217e03662aab7eb7022c6ca5db418537df011b2398b SHA512 c29d04eff3a2ee7126c9bbb65664540a446fe695efc9c4662a6da151b2e809d55c1f5a7b5bddb82ba4fdd41a49ceb538c00a72778a4ed1d0306ff5f49d2f4d53
23
24 diff --git a/app-containers/apptainer/apptainer-1.0.1.ebuild b/app-containers/apptainer/apptainer-1.0.1.ebuild
25 deleted file mode 100644
26 index 3dce15725ab8..000000000000
27 --- a/app-containers/apptainer/apptainer-1.0.1.ebuild
28 +++ /dev/null
29 @@ -1,63 +0,0 @@
30 -# Copyright 1999-2022 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="The container system for secure high-performance computing"
38 -HOMEPAGE="https://apptainer.org/"
39 -SRC_URI="https://github.com/apptainer/${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 -DEPEND="app-crypt/gpgme
50 - >=dev-lang/go-1.17.6
51 - dev-libs/openssl
52 - sys-apps/util-linux
53 - sys-fs/cryptsetup
54 - sys-fs/squashfs-tools
55 - sys-libs/libseccomp"
56 -RDEPEND="${DEPEND}
57 - !sys-cluster/singularity"
58 -BDEPEND="virtual/pkgconfig"
59 -
60 -CONFIG_CHECK="~SQUASHFS"
61 -
62 -DOCS=( README.md CONTRIBUTORS.md CONTRIBUTING.md )
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="${EPREFIX}"/usr \
71 - --sysconfdir="${EPREFIX}"/etc \
72 - --runstatedir="${EPREFIX}"/run \
73 - --localstatedir="${EPREFIX}"/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="${D}" -C builddir install
86 - keepdir /var/${PN}/mnt/session
87 -
88 - einstalldocs
89 - if use examples; then
90 - dodoc -r examples
91 - fi
92 -}