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 3B00E15808B for ; Sun, 20 Feb 2022 14:58:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7678EE0855; Sun, 20 Feb 2022 14:58:30 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5BFB9E0855 for ; Sun, 20 Feb 2022 14:58:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 46E6B3437D2 for ; Sun, 20 Feb 2022 14:58:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9E5002EB for ; Sun, 20 Feb 2022 14:58:27 +0000 (UTC) From: "Christoph Junghans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Christoph Junghans" Message-ID: <1645368841.4ec4269fd8666e1059f8c6c86ae1a76d89a311e5.junghans@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/votca-xtp/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-chemistry/votca-xtp/votca-xtp-9999.ebuild X-VCS-Directories: sci-chemistry/votca-xtp/ X-VCS-Committer: junghans X-VCS-Committer-Name: Christoph Junghans X-VCS-Revision: 4ec4269fd8666e1059f8c6c86ae1a76d89a311e5 X-VCS-Branch: master Date: Sun, 20 Feb 2022 14:58:27 +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: 711112ce-49fb-4050-840c-620e39b67ee7 X-Archives-Hash: 1c6d9e8e3845413af3c3d9d80ce1cfb6 commit: 4ec4269fd8666e1059f8c6c86ae1a76d89a311e5 Author: Christoph Junghans gentoo org> AuthorDate: Sun Feb 20 14:54:01 2022 +0000 Commit: Christoph Junghans gentoo org> CommitDate: Sun Feb 20 14:54:01 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ec4269f sci-chemistry/votca-xtp: git version moved to sci-chemistry/votca Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Christoph Junghans gentoo.org> sci-chemistry/votca-xtp/votca-xtp-9999.ebuild | 52 --------------------------- 1 file changed, 52 deletions(-) diff --git a/sci-chemistry/votca-xtp/votca-xtp-9999.ebuild b/sci-chemistry/votca-xtp/votca-xtp-9999.ebuild deleted file mode 100644 index ff2782e4b99a..000000000000 --- a/sci-chemistry/votca-xtp/votca-xtp-9999.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit bash-completion-r1 cmake - -if [[ ${PV} == *9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/${PN/-//}.git" -else - SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86 ~amd64-linux" - S="${WORKDIR}/${P#votca-}" -fi - -DESCRIPTION="Votca excitation and charge properties module" -HOMEPAGE="https://www.votca.org/" - -LICENSE="Apache-2.0" -SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-cpp/eigen-3.3 - ~sci-chemistry/votca-csg-${PV} - sci-libs/hdf5[cxx] - sci-libs/libecpint - sci-libs/libxc - sci-libs/libint:2 - ~sci-libs/votca-tools-${PV} -" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -DOCS=( README.rst NOTICE.rst CHANGELOG.rst ) - -src_configure() { - local mycmakeargs=( - -DENABLE_TESTING=$(usex test) - ) - 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 -}