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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id ECD71138350 for ; Mon, 13 Jan 2020 01:46:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 39A0EE0E87; Mon, 13 Jan 2020 01:46:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1D023E0E87 for ; Mon, 13 Jan 2020 01:46:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8AEC434DE2A for ; Mon, 13 Jan 2020 01:45:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 30E6895 for ; Mon, 13 Jan 2020 01:45:57 +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: <1578879950.bfce6ac47f7b46a3d89a73b9a24c196713914d83.junghans@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/votca-ctp/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-chemistry/votca-ctp/votca-ctp-9999.ebuild X-VCS-Directories: sci-chemistry/votca-ctp/ X-VCS-Committer: junghans X-VCS-Committer-Name: Christoph Junghans X-VCS-Revision: bfce6ac47f7b46a3d89a73b9a24c196713914d83 X-VCS-Branch: master Date: Mon, 13 Jan 2020 01:45:57 +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: 933fedeb-83f9-4dc7-b807-d6266f5dfc9f X-Archives-Hash: ebfb4895ad5581ed7210d0631559a72f commit: bfce6ac47f7b46a3d89a73b9a24c196713914d83 Author: Christoph Junghans gentoo org> AuthorDate: Mon Jan 13 01:44:51 2020 +0000 Commit: Christoph Junghans gentoo org> CommitDate: Mon Jan 13 01:45:50 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfce6ac4 sci-chemistry/votca-ctp: live ebuild removal due missing deps Package-Manager: Portage-2.3.79, Repoman-2.3.16 Signed-off-by: Christoph Junghans gentoo.org> sci-chemistry/votca-ctp/votca-ctp-9999.ebuild | 71 --------------------------- 1 file changed, 71 deletions(-) diff --git a/sci-chemistry/votca-ctp/votca-ctp-9999.ebuild b/sci-chemistry/votca-ctp/votca-ctp-9999.ebuild deleted file mode 100644 index 892997f7af3..00000000000 --- a/sci-chemistry/votca-ctp/votca-ctp-9999.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -CMAKE_MAKEFILE_GENERATOR="ninja" - -inherit cmake-utils multilib - -IUSE="doc" -if [ "${PV}" != "9999" ]; then - SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz - doc? ( https://github.com/${PN/-//}/releases/download/v${PV}/${PN}-manual-${PV}.pdf )" - KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-macos" - S="${WORKDIR}/${P#votca-}" -else - inherit git-r3 - EGIT_REPO_URI="https://github.com/${PN/-//}.git" - KEYWORDS="" -fi - -DESCRIPTION="Votca charge transport module" -HOMEPAGE="http://www.votca.org" - -LICENSE="Apache-2.0" -SLOT="0" - -RDEPEND=" - ~sci-libs/votca-tools-${PV}[sqlite] - >=dev-cpp/eigen-3.3 - sci-libs/gsl - ~sci-chemistry/votca-csg-${PV}" - -DEPEND="${RDEPEND} - virtual/pkgconfig" - -if [ "${PV}" != "9999" ]; then - DEPEND="${DEPEND} - doc? ( - app-doc/doxygen[dot] - dev-texlive/texlive-latexextra - virtual/latex-base - dev-tex/pgf - )" -fi - -DOCS=( README.md NOTICE CHANGELOG.md ) - -src_configure() { - [[ ${PV} = *9999* ]] && mycmakeargs=( - -DBUILD_XTP_MANUAL=$(usex doc) - ) - cmake-utils_src_configure -} - -src_install() { - cmake-utils_src_install - if use doc; then - [[ ${PV} != *9999* ]] && dodoc "${DISTDIR}/${PN}-manual-${PV}.pdf" - cmake-utils_src_make -C "${CMAKE_BUILD_DIR}" html - dodoc -r "${CMAKE_BUILD_DIR}"/share/doc/html - fi -} - -pkg_postinst() { - einfo - einfo "Please read and cite:" - einfo "VOTCA-CTP, J. Chem. Theo. Comp. 7, 3335-3345 (2011)" - einfo "https://dx.doi.org/10.1021/ct200388s" - einfo -}