diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2022-03-30 21:41:15 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2022-03-30 21:41:15 +0200 |
commit | 80c5467f059e9ac669a3a9a24e0d113ae891c4c4 (patch) | |
tree | 7bd677e88d89c56ba1faf7539f713cd3ea92f95a /sci-chemistry | |
parent | dev-libs/injeqt: Remove last-rited package (diff) | |
download | gentoo-80c5467f059e9ac669a3a9a24e0d113ae891c4c4.tar.gz gentoo-80c5467f059e9ac669a3a9a24e0d113ae891c4c4.tar.bz2 gentoo-80c5467f059e9ac669a3a9a24e0d113ae891c4c4.zip |
sci-chemistry/votca-ctp: Remove last-rited package
Closes: https://bugs.gentoo.org/773175
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'sci-chemistry')
-rw-r--r-- | sci-chemistry/votca-ctp/Manifest | 2 | ||||
-rw-r--r-- | sci-chemistry/votca-ctp/metadata.xml | 15 | ||||
-rw-r--r-- | sci-chemistry/votca-ctp/votca-ctp-1.5.1-r1.ebuild | 70 |
3 files changed, 0 insertions, 87 deletions
diff --git a/sci-chemistry/votca-ctp/Manifest b/sci-chemistry/votca-ctp/Manifest deleted file mode 100644 index edb307902792..000000000000 --- a/sci-chemistry/votca-ctp/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST votca-ctp-1.5.1.tar.gz 1345994 BLAKE2B 6e927c5d57abfff335412bdac085c9dd81696503310e58a89bf2207b07f9d9900d11d20176a11fbde6d6cdfa97f50faa5e877889e35201ad9ed5dd93dbc158cb SHA512 686d7193cdd6a763197dd4f332554c9c6c2022c539191d0a243e70450aa2a4c7048fff3c06636aee09525516fb3717fe49934d5daf2dfcdcbc08be416cc4b6c0 -DIST votca-ctp-manual-1.5.1.pdf 948647 BLAKE2B 4afec48d0e6bb29dc86d4d22fce74a8d2197d6b7a1ed35a5b09af84c5bbc0fc49b91e045c85e5b5ab79beb5a7de1db78a15e395a1a5faf4c11cc1b58c1ffca97 SHA512 b4ae79b2da0037cc325fdff3b0fd8d142d6bfdad5bc11991cee314f40f105bcdcb1189d17679a84eb37da7a9bb686d0c5ee57c7796a0c6b787b70d53222dbc17 diff --git a/sci-chemistry/votca-ctp/metadata.xml b/sci-chemistry/votca-ctp/metadata.xml deleted file mode 100644 index a77179a479f6..000000000000 --- a/sci-chemistry/votca-ctp/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>junghans@gentoo.org</email> - <name>Christoph Junghans</name> - </maintainer> - <maintainer type="project"> - <email>sci-chemistry@gentoo.org</email> - <name>Gentoo Chemistry Project</name> - </maintainer> - <upstream> - <remote-id type="github">votca/ctp</remote-id> - </upstream> -</pkgmetadata> diff --git a/sci-chemistry/votca-ctp/votca-ctp-1.5.1-r1.ebuild b/sci-chemistry/votca-ctp/votca-ctp-1.5.1-r1.ebuild deleted file mode 100644 index ace4787f199b..000000000000 --- a/sci-chemistry/votca-ctp/votca-ctp-1.5.1-r1.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2021 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" - S="${WORKDIR}/${P#votca-}" -else - inherit git-r3 - EGIT_REPO_URI="https://github.com/${PN/-//}.git" -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 -} |