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: Tue, 16 Aug 2022 22:52:48
Message-Id: 1660690310.8271393df311dbe80b2616852a5472323ce11ab1.marecki@gentoo
1 commit: 8271393df311dbe80b2616852a5472323ce11ab1
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 16 22:51:50 2022 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 16 22:51:50 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8271393d
7
8 app-containers/apptainer: drop 1.0.2
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.2.ebuild | 67 -------------------------
14 2 files changed, 68 deletions(-)
15
16 diff --git a/app-containers/apptainer/Manifest b/app-containers/apptainer/Manifest
17 index 0736b04fcb1d..fdf12d711a48 100644
18 --- a/app-containers/apptainer/Manifest
19 +++ b/app-containers/apptainer/Manifest
20 @@ -1,2 +1 @@
21 -DIST apptainer-1.0.2.tar.gz 11984629 BLAKE2B 56ed18bf86fe51e3bb27605f2c87a2c20fd9f3457594f1e0628b00d8616befa275b76bc4aba2a4306c854217e03662aab7eb7022c6ca5db418537df011b2398b SHA512 c29d04eff3a2ee7126c9bbb65664540a446fe695efc9c4662a6da151b2e809d55c1f5a7b5bddb82ba4fdd41a49ceb538c00a72778a4ed1d0306ff5f49d2f4d53
22 DIST apptainer-1.0.3.tar.gz 11972174 BLAKE2B 7fb0602184d9d78ef0de224ec888a01e046d3d44cd79a3233bbb8eab276d9ee360810356a25f4ef05612e337b5a905334f528d5aa5bfa489d9910538719afd2c SHA512 93ebe5abce32f35d56fe7d0f818703961cb7f7115965bad387fc895a275d45b569efeecf57ab5778457732233caa57651cd011a3bcac5ed5aaf2dd665082d959
23
24 diff --git a/app-containers/apptainer/apptainer-1.0.2.ebuild b/app-containers/apptainer/apptainer-1.0.2.ebuild
25 deleted file mode 100644
26 index f8ab29b4d9f4..000000000000
27 --- a/app-containers/apptainer/apptainer-1.0.2.ebuild
28 +++ /dev/null
29 @@ -1,67 +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 -PATCHES=(
63 - "${FILESDIR}"/${PN}-1.0.2-trim_upstream_cflags.patch
64 -)
65 -
66 -DOCS=( README.md CONTRIBUTORS.md CONTRIBUTING.md )
67 -
68 -src_configure() {
69 - local myconfargs=(
70 - -c "$(tc-getBUILD_CC)" \
71 - -x "$(tc-getBUILD_CXX)" \
72 - -C "$(tc-getCC)" \
73 - -X "$(tc-getCXX)" \
74 - --prefix="${EPREFIX}"/usr \
75 - --sysconfdir="${EPREFIX}"/etc \
76 - --runstatedir="${EPREFIX}"/run \
77 - --localstatedir="${EPREFIX}"/var \
78 - $(usex network "" "--without-network") \
79 - $(usex suid "" "--without-suid")
80 - )
81 - ./mconfig -v ${myconfargs[@]} || die "Error invoking mconfig"
82 -}
83 -
84 -src_compile() {
85 - emake -C builddir
86 -}
87 -
88 -src_install() {
89 - emake DESTDIR="${D}" -C builddir install
90 - keepdir /var/${PN}/mnt/session
91 -
92 - einstalldocs
93 - if use examples; then
94 - dodoc -r examples
95 - fi
96 -}