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 5AE64138306 for ; Thu, 14 Jul 2016 17:32:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C7E821C18E; Thu, 14 Jul 2016 17:32:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CA5B621C18E for ; Thu, 14 Jul 2016 17:32:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5C2AF340CAC for ; Thu, 14 Jul 2016 17:32:04 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7F8EB244F for ; Thu, 14 Jul 2016 17:31:59 +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: <1468516724.8a8468fd5bc39db7d5e0c617161debbb6d795e1f.ottxor@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/votca-tools/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/votca-tools/metadata.xml sci-libs/votca-tools/votca-tools-9999.ebuild X-VCS-Directories: sci-libs/votca-tools/ X-VCS-Committer: ottxor X-VCS-Committer-Name: Christoph Junghans X-VCS-Revision: 8a8468fd5bc39db7d5e0c617161debbb6d795e1f X-VCS-Branch: master Date: Thu, 14 Jul 2016 17:31:59 +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-Archives-Salt: 374ab495-fdcb-422c-b949-75f17f0ed1db X-Archives-Hash: 929ef7cac652ba7d2b90de1035b05d77 commit: 8a8468fd5bc39db7d5e0c617161debbb6d795e1f Author: Christoph Junghans gentoo org> AuthorDate: Thu Jul 14 17:18:44 2016 +0000 Commit: Christoph Junghans gentoo org> CommitDate: Thu Jul 14 17:18:44 2016 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=8a8468fd sci-libs/votca-tools: moved to gx86 sci-libs/votca-tools/metadata.xml | 12 ------ sci-libs/votca-tools/votca-tools-9999.ebuild | 60 ---------------------------- 2 files changed, 72 deletions(-) diff --git a/sci-libs/votca-tools/metadata.xml b/sci-libs/votca-tools/metadata.xml deleted file mode 100644 index 6f0f3dc..0000000 --- a/sci-libs/votca-tools/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - ottxor@gentoo.org - Christoph Junghans - - - sci-chemistry@gentoo.org - Gentoo Chemistry Project - - diff --git a/sci-libs/votca-tools/votca-tools-9999.ebuild b/sci-libs/votca-tools/votca-tools-9999.ebuild deleted file mode 100644 index 6a9b5be..0000000 --- a/sci-libs/votca-tools/votca-tools-9999.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -CMAKE_MAKEFILE_GENERATOR="ninja" - -inherit cmake-utils eutils multilib - -if [ "${PV}" != "9999" ]; then - SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-macos" - S="${WORKDIR}/${P#votca-}" -else - inherit git-r3 - EGIT_REPO_URI="git://github.com/${PN/-//}.git https://github.com/${PN/-//}.git" - KEYWORDS="" -fi - -DESCRIPTION="Votca tools library" -HOMEPAGE="http://www.votca.org" - -LICENSE="Apache-2.0" -SLOT="0" -IUSE="doc +fftw +gsl sqlite" - -RDEPEND=" - dev-libs/boost:= - dev-libs/expat - fftw? ( sci-libs/fftw:3.0 ) - gsl? ( sci-libs/gsl ) - sqlite? ( dev-db/sqlite:3 )" - -DEPEND="${RDEPEND} - doc? ( >=app-doc/doxygen-1.7.6.1[dot] ) - >=app-text/txt2tags-2.5 - virtual/pkgconfig" - -DOCS=( NOTICE ) - -src_configure() { - mycmakeargs=( - $(cmake-utils_use_with gsl GSL) - $(cmake-utils_use_with fftw FFTW) - $(cmake-utils_use_with sqlite SQLITE3) - -DWITH_RC_FILES=OFF - -DLIB=$(get_libdir) - ) - cmake-utils_src_configure -} - -src_install() { - cmake-utils_src_install - if use doc; then - cd "${BUILD_DIR}" - cmake-utils_src_make html - dohtml -r share/doc/html/* - fi -}