diff options
author | Aisha Tammy <gentoo@aisha.cc> | 2020-12-30 21:20:24 +0000 |
---|---|---|
committer | Aisha Tammy <gentoo@aisha.cc> | 2020-12-30 21:20:24 +0000 |
commit | 393d7a2ee37af2cb83606384a3e4c6f5b466a52e (patch) | |
tree | 6edec43d681cc1f2fe047d8962faa9a61290e266 | |
parent | sci-chemistry/smmp: drop dead package (diff) | |
download | sci-393d7a2ee37af2cb83606384a3e4c6f5b466a52e.tar.gz sci-393d7a2ee37af2cb83606384a3e4c6f5b466a52e.tar.bz2 sci-393d7a2ee37af2cb83606384a3e4c6f5b466a52e.zip |
sys-cluster/spack: drop package, breaks too many things
Signed-off-by: Aisha Tammy <gentoo@aisha.cc>
-rw-r--r-- | sys-cluster/spack/files/99spack | 1 | ||||
-rw-r--r-- | sys-cluster/spack/metadata.xml | 12 | ||||
-rw-r--r-- | sys-cluster/spack/spack-0.15.4.ebuild | 54 |
3 files changed, 0 insertions, 67 deletions
diff --git a/sys-cluster/spack/files/99spack b/sys-cluster/spack/files/99spack deleted file mode 100644 index e3b3acdaa..000000000 --- a/sys-cluster/spack/files/99spack +++ /dev/null @@ -1 +0,0 @@ -SPACK_ROOT="/opt/spack" diff --git a/sys-cluster/spack/metadata.xml b/sys-cluster/spack/metadata.xml deleted file mode 100644 index 2f2c0b51c..000000000 --- a/sys-cluster/spack/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>gentoo@aisha.cc</email> - <name>Aisha Tammy</name> - </maintainer> - <maintainer type="project"> - <email>sci@gentoo.org</email> - <name>Gentoo Science Project</name> - </maintainer> -</pkgmetadata> diff --git a/sys-cluster/spack/spack-0.15.4.ebuild b/sys-cluster/spack/spack-0.15.4.ebuild deleted file mode 100644 index 9346d9ec1..000000000 --- a/sys-cluster/spack/spack-0.15.4.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6..9} ) -inherit python-single-r1 git-r3 - -DESCRIPTION="flexible package manager supporting mutiple package version" -HOMEPAGE="https://spack.io/" -# we need the .git folder during runtime for command -# $ spack pkg -EGIT_REPO_URI="https://github.com/spack/spack" -EGIT_COMMIT="v${PV}" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -RDEPEND="${PYTHON_DEPS} - dev-vcs/git -" - -src_prepare() { - sed -e "s:^#!/bin/sh:#!/usr/bin/env ${EPYTHON}:" \ - -i bin/spack || die - - default -} - -src_test() { - local -x SPACK_ROOT="${S}" - local -x PATH="${S}/bin:${PATH}" - ${EPYTHON} bin/spack test -k "not ci and \ - not compiler_bootstrap and \ - not test_prs_update_old_api and \ - not test_first_accessible_path and \ - not test_get_stage_root_in_spack" || \ - die "tests failed for ${EPYTHON}" -} - -src_install() { - dodir /opt/spack - cp -r "${S}"/. "${ED}"/opt/spack || die - - doenvd "${FILESDIR}"/99spack -} - -pkg_postinst() { - elog "Spack has been installed to /opt/spack ." - elog "To load spack into your environment, run" - elog "\t . /opt/spack/share/spack/setup-env.sh" -} |