From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E2E8C13877A for ; Thu, 21 Aug 2014 08:06:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AE5A4E07B2; Thu, 21 Aug 2014 08:06:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 620D4E07B2 for ; Thu, 21 Aug 2014 08:06:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 45BF7340083 for ; Thu, 21 Aug 2014 08:06:44 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C275C132A for ; Thu, 21 Aug 2014 08:06:42 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1408608302.aafcce4a71fc3294f9a8e40d007060b464afc679.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-chemistry/mddnmr/ X-VCS-Repository: proj/sci X-VCS-Files: sci-chemistry/mddnmr/ChangeLog sci-chemistry/mddnmr/mddnmr-2.4-r1.ebuild X-VCS-Directories: sci-chemistry/mddnmr/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: aafcce4a71fc3294f9a8e40d007060b464afc679 X-VCS-Branch: master Date: Thu, 21 Aug 2014 08:06:42 +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: 920b477c-88a4-4f2d-8476-7a6132e70607 X-Archives-Hash: 26529961f3b57a27c61edabe4393b21c commit: aafcce4a71fc3294f9a8e40d007060b464afc679 Author: Justin Lecher gentoo org> AuthorDate: Thu Aug 21 08:05:02 2014 +0000 Commit: Justin Lecher gentoo org> CommitDate: Thu Aug 21 08:05:02 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=aafcce4a sci-chemistry/mddnmr: Version Bump Package-Manager: portage-2.2.12 --- sci-chemistry/mddnmr/ChangeLog | 3 +++ sci-chemistry/mddnmr/mddnmr-2.4-r1.ebuild | 11 +++++++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/sci-chemistry/mddnmr/ChangeLog b/sci-chemistry/mddnmr/ChangeLog index 56a9ab6..a47c631 100644 --- a/sci-chemistry/mddnmr/ChangeLog +++ b/sci-chemistry/mddnmr/ChangeLog @@ -2,6 +2,9 @@ # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 21 Aug 2014; Justin Lecher mddnmr-2.4-r1.ebuild: + Version Bump + 14 Aug 2014; Justin Lecher -mddnmr-2.4.ebuild, +mddnmr-2.4-r1.ebuild: Fix quoting of variables diff --git a/sci-chemistry/mddnmr/mddnmr-2.4-r1.ebuild b/sci-chemistry/mddnmr/mddnmr-2.4-r1.ebuild index 74d346d..a8b2328 100644 --- a/sci-chemistry/mddnmr/mddnmr-2.4-r1.ebuild +++ b/sci-chemistry/mddnmr/mddnmr-2.4-r1.ebuild @@ -4,9 +4,10 @@ EAPI=5 -PYTHON_DEPEND="2" +PYTHON_COMPAT=( python2_7 ) + +inherit python-single-r1 -REL="24Sep2012" MY_P="${PN}${PV}" DESCRIPTION="Program for processing of non-uniformly sampled (NUS) multidimensional NMR spectra" @@ -18,7 +19,10 @@ KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" LICENSE="mddnmr" IUSE="" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + RDEPEND=" + ${PYTHON_DEPS} app-shells/tcsh sci-chemistry/nmrpipe" DEPEND="" @@ -46,6 +50,7 @@ src_install() { cat >> "${T}"/qMDD <<- EOF #!${EPREFIX}/bin/csh + setenv LD_LIBRARY_PATH $(grep LDPATH "${EPREFIX}"/etc/env.d/35intelsdp | sed 's:LDAPATH=::g')" setenv MDD_NMR "${EPREFIX}/opt/${PN}" setenv MDD_NMRbin "${EPREFIX}/opt/${PN}/bin/" set path=( . "\$MDD_NMRbin" "\${MDD_NMR}/com" \$path ) @@ -56,4 +61,6 @@ src_install() { dobin "${T}"/qMDD dodoc *pdf + + python_optimize "${ED}" }