From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 16CE8158041 for ; Sun, 24 Mar 2024 21:03:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4B594E2A0F; Sun, 24 Mar 2024 21:03:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 35DF9E2A0F for ; Sun, 24 Mar 2024 21:03:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7B76D3406C2 for ; Sun, 24 Mar 2024 21:03:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B64E215DC for ; Sun, 24 Mar 2024 21:03:17 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1711314163.3dfa73898c0b4e81b84db78485c8a58b6edd2469.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/votca/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-chemistry/votca/Manifest sci-chemistry/votca/votca-2022.ebuild X-VCS-Directories: sci-chemistry/votca/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 3dfa73898c0b4e81b84db78485c8a58b6edd2469 X-VCS-Branch: master Date: Sun, 24 Mar 2024 21:03:17 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b572675e-053c-43f7-91c3-7b0f1f6f7263 X-Archives-Hash: bf3d92c5dc989258cea2356c01df96cc commit: 3dfa73898c0b4e81b84db78485c8a58b6edd2469 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Mar 7 13:53:40 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Mar 24 21:02:43 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dfa7389 sci-chemistry/votca: drop 2022 Signed-off-by: Andreas Sturmlechner gentoo.org> sci-chemistry/votca/Manifest | 1 - sci-chemistry/votca/votca-2022.ebuild | 80 ----------------------------------- 2 files changed, 81 deletions(-) diff --git a/sci-chemistry/votca/Manifest b/sci-chemistry/votca/Manifest index a1f13dfe694f..9b95b56c1e77 100644 --- a/sci-chemistry/votca/Manifest +++ b/sci-chemistry/votca/Manifest @@ -1,2 +1 @@ DIST votca-2022.1.tar.gz 61692029 BLAKE2B c58023098f596d7c6f301e94883df3e442761b8c1009823ef5a07e788fabb2a0fa572326e0d614f8102104ef5dcec89505da1c911bb703126c123d2a25a2031e SHA512 dda5cbf1835440abd1b0b511275e10e5facfa9f133062ae082cca4f5654e4af0be0b574b87c70004c0d07920519927bac5620b89ce073de9985bdf792f0dd21a -DIST votca-2022.tar.gz 61688862 BLAKE2B a6a8d1c34e2cd992d032730b2669c9ac5489b988fc334f730eaf1a40b275cc2fad8b24f03419510fe9fee7b0ad0bedf43f9b22b44ca1ae0178b16c9b255da53c SHA512 ea5b7405872a2c0c8d6b4b86148a605b5e83207f1953f0b7393dabbb106ac785c50b45462f6271fbfad04c0246704a92199943acc65eb30d7f1a0a6d6ee4ab83 diff --git a/sci-chemistry/votca/votca-2022.ebuild b/sci-chemistry/votca/votca-2022.ebuild deleted file mode 100644 index 89d10678c31f..000000000000 --- a/sci-chemistry/votca/votca-2022.ebuild +++ /dev/null @@ -1,80 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{9..10} ) - -inherit bash-completion-r1 cmake python-single-r1 - -if [[ ${PV} == *9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/votca/votca.git" -else - if [[ ${PV} = *_rc[1-9] ]]; then - MY_PV="${PV%%_rc*}-rc.${PV##*_rc}" - else - MY_PV="${PV}" - fi - SRC_URI="https://github.com/votca/votca/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 ~x86 ~amd64-linux" - S="${WORKDIR}/votca-${MY_PV}" -fi - -DESCRIPTION="Versatile Object-oriented Toolkit for Coarse-graining Applications" -HOMEPAGE="https://www.votca.org/" - -LICENSE="Apache-2.0" -SLOT="0" -IUSE="+gromacs test" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" -RESTRICT="!test? ( test )" - -RDEPEND=" - !sci-libs/votca-tools - !sci-chemistry/votca-csg - !sci-chemistry/votca-xtp - ${PYTHON_DEPS} - app-shells/bash:* - >=dev-cpp/eigen-3.3 - dev-libs/boost:= - dev-libs/expat - sci-libs/fftw:3.0= - dev-lang/perl - gromacs? ( sci-chemistry/gromacs:=[gmxapi-legacy(+)] ) - sci-libs/hdf5[cxx] - sci-libs/libxc - sci-libs/libint:2 -" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -DOCS=( README.rst NOTICE.rst CHANGELOG.rst ) - -src_prepare() { - # espressopp was removed from gentoo - rm -r ./csg-tutorials/spce/ibi_espressopp || die - python_fix_shebang . - cmake_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DENABLE_TESTING=$(usex test) - -DCMAKE_DISABLE_FIND_PACKAGE_GROMACS=$(usex !gromacs) - -DBUILD_CSGAPPS=ON - -DINSTALL_RC_FILES=OFF - -DCMAKE_DISABLE_FIND_PACKAGE_MKL=ON - ) - cmake_src_configure -} - -pkg_postinst() { - einfo - einfo "Please read and cite:" - einfo "VOTCA-XTP, J. Chem. Theo. Comp. 14, 6353 (2018)" - einfo "https://doi.org/10.1021/acs.jctc.8b00617" - einfo - einfo "VOTCA, J. Chem. Theory Comput. 5, 3211 (2009). " - einfo "https://dx.doi.org/10.1021/ct900369w" - einfo -}