Skip to content

Commit

Permalink
sys-cluster/easybuild-easyblocks: add 4.9.0, 9999
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Puck Neuwirth <[email protected]>
  • Loading branch information
APN-Pucky committed Feb 16, 2024
1 parent ffab1c7 commit 6c29cd9
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 0 deletions.
1 change: 1 addition & 0 deletions sys-cluster/easybuild-easyblocks/Manifest
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
DIST easybuild-easyblocks-4.6.2.tar.gz 539757 BLAKE2B e33db4b390cdbe11237c5f5750426f15d264cf081e2846c7b9de9254f7a0fbdc1459795920fcc131ceb5681f0acc905a74f96cd841b73b523e030246b78393e8 SHA512 72cb4c057efdfeb4c45fbf1e036a6f231e7f01ad6e593d1c2352b27f002ed4f45cd625c4125b90b708b15f226fb9519a345217f7882c2155b399894986a4505c
DIST easybuild-easyblocks-4.9.0.tar.gz 574066 BLAKE2B 404ea11287d03edf497c85e9d58eba05d3257aed609eb3f65e3d1543e08e0be27a64fd7459ba30578a3bd2be2051020f711f6598af082d2cdec3fad65116a0ed SHA512 c75695c66f4683128be268471e996abde83fc9cc5f937699b81da5ea94bf02df84bc6b0a88c657a904730afbc4048e3a44cfbc5288a546c1962a51960393d5c7
36 changes: 36 additions & 0 deletions sys-cluster/easybuild-easyblocks/easybuild-easyblocks-4.9.0.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
EAPI=8

PYTHON_COMPAT=( python3_{10..11} )
DISTUTILS_USE_PEP517=setuptools
PYPI_NO_NORMALIZE=1

inherit distutils-r1

SUB_P=$(ver_cut 1)

DESCRIPTION="Provides a collection of easyblocks for EasyBuild."
HOMEPAGE="
https://easybuild.io/
https://github.com/easybuilders/easybuild-easyblocks
"

LICENSE="GPL-2"
SLOT="0"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/easybuilders/easybuild-easyblocks"
else
inherit pypi
KEYWORDS="~amd64"
fi

RDEPEND="
>=sys-cluster/easybuild-framework-${SUB_P}[${PYTHON_USEDEP}]
"
BDEPEND="${RDEPEND}"

src_prepare() {
# already there from easybuild_framework
rm easybuild/__init__.py || die
default
}
37 changes: 37 additions & 0 deletions sys-cluster/easybuild-easyblocks/easybuild-easyblocks-9999.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
EAPI=8

PYTHON_COMPAT=( python3_{10..11} )
DISTUTILS_USE_PEP517=setuptools
PYPI_NO_NORMALIZE=1

inherit distutils-r1

SUB_P=$(ver_cut 1)

DESCRIPTION="Provides a collection of easyblocks for EasyBuild."
HOMEPAGE="
https://easybuild.io/
https://github.com/easybuilders/easybuild-easyblocks
"

LICENSE="GPL-2"
SLOT="0"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/easybuilders/easybuild-easyblocks"
SUB_P=9999
else
inherit pypi
KEYWORDS="~amd64"
fi

RDEPEND="
>=sys-cluster/easybuild-framework-${SUB_P}[${PYTHON_USEDEP}]
"
BDEPEND="${RDEPEND}"

src_prepare() {
# already there from easybuild_framework
rm easybuild/__init__.py || die
default
}

0 comments on commit 6c29cd9

Please sign in to comment.