From d7ed2b01311f15ba54fe8ea872aab7d59ab2b193 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 29 Jan 2021 18:03:51 +0000 Subject: gentoo resync : 29.01.2021 --- sci-chemistry/Manifest.gz | Bin 11347 -> 11350 bytes sci-chemistry/gmxapi/Manifest | 2 +- sci-chemistry/gmxapi/gmxapi-0.0.7.1-r1.ebuild | 59 +++++++++++++++++++++++++ sci-chemistry/gmxapi/gmxapi-0.0.7.1.ebuild | 60 -------------------------- 4 files changed, 60 insertions(+), 61 deletions(-) create mode 100644 sci-chemistry/gmxapi/gmxapi-0.0.7.1-r1.ebuild delete mode 100644 sci-chemistry/gmxapi/gmxapi-0.0.7.1.ebuild (limited to 'sci-chemistry') diff --git a/sci-chemistry/Manifest.gz b/sci-chemistry/Manifest.gz index 45996a4e83e1..21e5d8c5ad01 100644 Binary files a/sci-chemistry/Manifest.gz and b/sci-chemistry/Manifest.gz differ diff --git a/sci-chemistry/gmxapi/Manifest b/sci-chemistry/gmxapi/Manifest index 70f42f526c0f..5568bc1b5537 100644 --- a/sci-chemistry/gmxapi/Manifest +++ b/sci-chemistry/gmxapi/Manifest @@ -1,3 +1,3 @@ DIST gmxapi-0.0.7.1.tar.gz 671400 BLAKE2B 5db024bceaed262fc1bd2ef35c0c24a31eff12abde7766ba0eea9d5aabe04c435cdf3c79c04d7932f2110de837a0d06e1f66239f22ba6f313410ed8c9d899788 SHA512 4103d67be3c869907613ec74fc46f14b15242ad93a973fc984dbb25e79bb0bb697d9d2ad9b67a8da2500e5a89b8f78ea1ef1632455af29830e11c2bf1f11bc44 -EBUILD gmxapi-0.0.7.1.ebuild 1230 BLAKE2B 411e89543b4ad4c0c55664c77d0e538e3031339869cc043d30570f2fde2eab168c6fe73e9f37e864328c6d64dbb3cce5f6b3c5d05823c3b0745b637688685bb1 SHA512 e35365d42f3f81f7bf404dfbb64130d5b2b30346b2b80a05e2ba35850d98932b3ce2f942160d0d28319a149f6a6a38e98230504bd8c13676b1f5e8095387897f +EBUILD gmxapi-0.0.7.1-r1.ebuild 1194 BLAKE2B 2ba677c81fb8b28a50a10d5e7473439cf757e7f9f7acd28985d4145e7eb609377da3b908e6707e3d07c90933a941b23c94f2b6a93de3d00e147b78b02cf88b4d SHA512 0011183e5b1d885b714bc817c7892349fb032ab0971cd8a1044b1543d3c79ceeb641b0ecca6cff98dfa72d1f5d83d4355d649a2bc58e1910b2aacf9ba5e76b97 MISC metadata.xml 374 BLAKE2B d93e2ad2f09971909382ad65fc5f5033487979b0694f9dc656439573973f55ce1865e5a30584e55e1c48fdd93898601ac2b11e269fb2b1c5adc3ff8dde66f35d SHA512 1c61c58e1cfbbb42342f7a87625e0044e51523f7a2f7270ecfea537c622965e64195fc88eb8f70fac648a0154a19f4a852b88383de1dcd6e17ff0ac0dc6e22d8 diff --git a/sci-chemistry/gmxapi/gmxapi-0.0.7.1-r1.ebuild b/sci-chemistry/gmxapi/gmxapi-0.0.7.1-r1.ebuild new file mode 100644 index 000000000000..0527b71da6e6 --- /dev/null +++ b/sci-chemistry/gmxapi/gmxapi-0.0.7.1-r1.ebuild @@ -0,0 +1,59 @@ +# Copyright 2019-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MAKE_MAKEFILE_GENERATOR="ninja" + +PYTHON_COMPAT=( python3_{6,7} ) + +inherit cmake-utils python-r1 + +DESCRIPTION="Gromacs API bindings" +HOMEPAGE="https://github.com/kassonlab/gmxapi" +SRC_URI="https://github.com/kassonlab/gmxapi/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +DEPEND=" + ${PYTHON_DEPS} + >=sci-chemistry/gromacs-2019:=" +RDEPEND=" + ${DEPEND} + dev-python/networkx[${PYTHON_USEDEP}] +" +BDEPEND="" + +src_configure() { + my_impl_src_configure() { + local mycmakeargs=( + -DCMAKE_STRIP="${EPREFIX}/bin/true" + -DCMAKE_INSTALL_PREFIX="${ED}/usr" + -DPYTHON_EXECUTABLE="${EPREFIX}/usr/bin/${EPYTHON}" + -DGMXAPI_INSTALL_PATH="${EPREFIX}/usr/$(get_libdir)/${EPYTHON}/site-packages/gmx" + ) + + cmake-utils_src_configure + } + + python_foreach_impl my_impl_src_configure +} + +src_compile() { + python_foreach_impl cmake-utils_src_make +} + +src_install() { + my_impl_src_install() { + cd "${BUILD_DIR}" || die + cmake-utils_src_install + python_optimize + } + + python_foreach_impl my_impl_src_install +} diff --git a/sci-chemistry/gmxapi/gmxapi-0.0.7.1.ebuild b/sci-chemistry/gmxapi/gmxapi-0.0.7.1.ebuild deleted file mode 100644 index d7ad455c4f27..000000000000 --- a/sci-chemistry/gmxapi/gmxapi-0.0.7.1.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 2019-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -MAKE_MAKEFILE_GENERATOR="ninja" - -PYTHON_COMPAT=( python3_{6,7} ) - -inherit cmake-utils python-r1 - -DESCRIPTION="Gromacs API bindings" -HOMEPAGE="https://github.com/kassonlab/gmxapi" -SRC_URI="https://github.com/kassonlab/gmxapi/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -DEPEND=" - ${PYTHON_DEPS} - >=sci-chemistry/gromacs-2019:=" -RDEPEND=" - ${DEPEND} - sci-libs/scikits[${PYTHON_USEDEP}] - dev-python/networkx[${PYTHON_USEDEP}] -" -BDEPEND="" - -src_configure() { - my_impl_src_configure() { - local mycmakeargs=( - -DCMAKE_STRIP="${EPREFIX}/bin/true" - -DCMAKE_INSTALL_PREFIX="${ED}/usr" - -DPYTHON_EXECUTABLE="${EPREFIX}/usr/bin/${EPYTHON}" - -DGMXAPI_INSTALL_PATH="${EPREFIX}/usr/$(get_libdir)/${EPYTHON}/site-packages/gmx" - ) - - cmake-utils_src_configure - } - - python_foreach_impl my_impl_src_configure -} - -src_compile() { - python_foreach_impl cmake-utils_src_make -} - -src_install() { - my_impl_src_install() { - cd "${BUILD_DIR}" || die - cmake-utils_src_install - python_optimize - } - - python_foreach_impl my_impl_src_install -} -- cgit v1.2.3