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 55C1113832E for ; Mon, 18 Jul 2016 21:56:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6DC5D21C06B; Mon, 18 Jul 2016 21:56:28 +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 ED59A21C06B for ; Mon, 18 Jul 2016 21:56:27 +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 2B06C340997 for ; Mon, 18 Jul 2016 21:56:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2ADD1E6B for ; Mon, 18 Jul 2016 21:56:24 +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: <1468878975.ae54a4cb451ff5a4567093bb4ea313b4b8c016d1.ottxor@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-physics/espresso/ X-VCS-Repository: proj/sci X-VCS-Files: sci-physics/espresso/espresso-9999.ebuild sci-physics/espresso/metadata.xml X-VCS-Directories: sci-physics/espresso/ X-VCS-Committer: ottxor X-VCS-Committer-Name: Christoph Junghans X-VCS-Revision: ae54a4cb451ff5a4567093bb4ea313b4b8c016d1 X-VCS-Branch: master Date: Mon, 18 Jul 2016 21:56:24 +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: 92f9b891-f1d5-4349-8c1b-6d1550cf7226 X-Archives-Hash: d02f673fef520bcecba439ec669a0458 commit: ae54a4cb451ff5a4567093bb4ea313b4b8c016d1 Author: Christoph Junghans gentoo org> AuthorDate: Mon Jul 18 21:56:15 2016 +0000 Commit: Christoph Junghans gentoo org> CommitDate: Mon Jul 18 21:56:15 2016 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=ae54a4cb sci-physics/espresso: brocken, moved to gx86 sci-physics/espresso/espresso-9999.ebuild | 135 ------------------------------ sci-physics/espresso/metadata.xml | 13 --- 2 files changed, 148 deletions(-) diff --git a/sci-physics/espresso/espresso-9999.ebuild b/sci-physics/espresso/espresso-9999.ebuild deleted file mode 100644 index d407b09..0000000 --- a/sci-physics/espresso/espresso-9999.ebuild +++ /dev/null @@ -1,135 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -PYTHON_COMPAT=( python2_7 ) - -inherit autotools-utils python-single-r1 savedconfig - -DESCRIPTION="Extensible Simulation Package for Research on Soft matter" -HOMEPAGE="http://espressomd.org" - -if [[ ${PV} = 9999 ]]; then - EGIT_REPO_URI="git://github.com/espressomd/espresso.git https://github.com/espressomd/espresso.git" - EGIT_BRANCH="master" - AUTOTOOLS_AUTORECONF=1 - inherit git-r3 - KEYWORDS="" -else - SRC_URI="mirror://nongnu/${PN}md/${P}.tar.gz" - KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-macos" -fi - -LICENSE="GPL-3" -SLOT="0" -IUSE="X cuda doc examples +fftw mpi packages python test -tk" - -REQUIRED_USE=" - python? ( ${PYTHON_REQUIRED_USE} ) - tk? ( X )" - -RESTRICT="tk? ( test )" - -RDEPEND=" - python? ( - ${PYTHON_DEPS} - dev-python/cython[${PYTHON_USEDEP}] - dev-python/numpy[${PYTHON_USEDEP}] - ) - dev-lang/tcl:0= - cuda? ( >=dev-util/nvidia-cuda-toolkit-4.2.9-r1 ) - fftw? ( sci-libs/fftw:3.0 ) - mpi? ( virtual/mpi ) - packages? ( dev-tcltk/tcllib ) - tk? ( >=dev-lang/tk-8.4.18-r1:0= ) - X? ( x11-libs/libX11 )" - -DEPEND="${RDEPEND} - doc? ( - app-doc/doxygen[dot] - dev-texlive/texlive-latexextra - virtual/latex-base )" - -DOCS=( AUTHORS NEWS README ChangeLog ) - -pkg_setup() { - use python && python-single-r1_pkg_setup -} - -src_prepare() { - use cuda && cuda_src_prepare - autotools-utils_src_prepare -} - -src_configure() { - myeconfargs=( - $(use_with fftw) \ - $(use_with cuda) \ - $(use_with python python-interface) \ - $(use_with mpi) \ - $(use_with tk) \ - $(use_with X x) - ) - CXX=$(usex mpi "mpic++" "$(tc-getCXX)") autotools-utils_src_configure - restore_config myconfig.hpp -} - -src_compile() { - autotools-utils_src_compile - use doc && autotools-utils_src_compile doxygen - [[ ${PV} = 9999 ]] && use doc && autotools-utils_src_compile ug dg tutorials -} - -src_install() { - local i - - autotools-utils_src_install - - insinto /usr/share/${PN} - doins ${AUTOTOOLS_BUILD_DIR}/myconfig-sample.hpp - - save_config ${AUTOTOOLS_BUILD_DIR}/src/core/myconfig-final.hpp - - if use doc; then - if [[ ${PV} = 9999 ]] ; then - newdoc "${AUTOTOOLS_BUILD_DIR}"/doc/dg/dg.pdf developer_guide.pdf - newdoc "${AUTOTOOLS_BUILD_DIR}"/doc/ug/ug.pdf user_guide.pdf - for i in "${AUTOTOOLS_BUILD_DIR}"/doc/tutorials/*/[0-9]*.pdf; do - newdoc "${i}" "tutorial_${i##*/}" - done - else - newdoc "${S}"/doc/ug/ug.pdf user_guide.pdf - for i in "${S}"/doc/tutorials/*/[0-9]*.pdf; do - newdoc "${i}" "tutorial_${i##*/}" - done - fi - dohtml -r "${AUTOTOOLS_BUILD_DIR}"/doc/doxygen/html/* - fi - - if use examples; then - insinto /usr/share/${PN}/examples - doins -r samples/* - fi - - if use packages; then - insinto /usr/share/${PN}/packages - doins -r packages/* - fi -} - -pkg_postinst() { - echo - elog "Please read and cite:" - elog "ESPResSo, Comput. Phys. Commun. 174(9) ,704, 2006." - elog "http://dx.doi.org/10.1016/j.cpc.2005.10.005" - echo - elog "If you need more features, change" - elog "/etc/portage/savedconfig/${CATEGORY}/${PF}" - elog "and reemerge with USE=savedconfig" - echo - elog "For a full feature list see:" - elog "/usr/share/${PN}/myconfig-sample.h" - echo -} diff --git a/sci-physics/espresso/metadata.xml b/sci-physics/espresso/metadata.xml deleted file mode 100644 index f4ead9e..0000000 --- a/sci-physics/espresso/metadata.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - sci-physics@gentoo.org - Gentoo Physics Project - - - Enable cuda support - Installs the examples - Installs extra subpackages - -