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 56FE4198005 for ; Sun, 3 Mar 2013 18:39:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DE352E08F2; Sun, 3 Mar 2013 18:39:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 569CDE08F2 for ; Sun, 3 Mar 2013 18:39:53 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6799E33DC30 for ; Sun, 3 Mar 2013 18:39:52 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id B7525E408F for ; Sun, 3 Mar 2013 18:39:50 +0000 (UTC) From: "Sebastien Fabbro" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastien Fabbro" Message-ID: <1362335063.a788f91975adc6af38dd8ddf3481a8e808cb9e4a.bicatali@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/optpp/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/optpp/ChangeLog sci-libs/optpp/metadata.xml sci-libs/optpp/optpp-2.4.ebuild X-VCS-Directories: sci-libs/optpp/ X-VCS-Committer: bicatali X-VCS-Committer-Name: Sebastien Fabbro X-VCS-Revision: a788f91975adc6af38dd8ddf3481a8e808cb9e4a X-VCS-Branch: master Date: Sun, 3 Mar 2013 18:39:50 +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: 97d5e7c7-f7f6-4fa8-aadc-181d55260295 X-Archives-Hash: fe7cc9437d7cb3a414781a222b3075db commit: a788f91975adc6af38dd8ddf3481a8e808cb9e4a Author: Sébastien Fabbro gentoo org> AuthorDate: Sun Mar 3 18:24:23 2013 +0000 Commit: Sebastien Fabbro gentoo org> CommitDate: Sun Mar 3 18:24:23 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=a788f919 sci-libs/optpp: Removed uneeded python eclass, keyword for prefix Package-Manager: portage-2.2.01.21688-prefix --- sci-libs/optpp/ChangeLog | 5 ++++- sci-libs/optpp/metadata.xml | 4 ++-- sci-libs/optpp/optpp-2.4.ebuild | 8 +++----- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/sci-libs/optpp/ChangeLog b/sci-libs/optpp/ChangeLog index 5c107e9..678c459 100644 --- a/sci-libs/optpp/ChangeLog +++ b/sci-libs/optpp/ChangeLog @@ -2,6 +2,10 @@ # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 03 Mar 2013; Sébastien Fabbro metadata.xml, + optpp-2.4.ebuild: + sci-libs/optpp: Removed uneeded python eclass, keyword for prefix + 22 Feb 2013; Justin Lecher optpp-2.4.ebuild, metadata.xml: Use tc-getPKG_CONFIG from toolchain-funcs.eclass instead of plain pkg-config; bump to EAPI=5; move to new python eclasses @@ -11,4 +15,3 @@ 17 May 2012; Sébastien Fabbro +metadata.xml, +optpp-2.4.ebuild: sci-libs/optpp: Initial import - diff --git a/sci-libs/optpp/metadata.xml b/sci-libs/optpp/metadata.xml index 644aab6..adf0a7a 100644 --- a/sci-libs/optpp/metadata.xml +++ b/sci-libs/optpp/metadata.xml @@ -1,8 +1,8 @@ - sci - +sci + OPT++ is a library of nonlinear optimization algorithms written in C++. The motivation for this package is to build an environment for the rapid prototyping and development of new optimization diff --git a/sci-libs/optpp/optpp-2.4.ebuild b/sci-libs/optpp/optpp-2.4.ebuild index 85af83a..e9f4c40 100644 --- a/sci-libs/optpp/optpp-2.4.ebuild +++ b/sci-libs/optpp/optpp-2.4.ebuild @@ -4,16 +4,14 @@ EAPI=5 -PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} ) - -inherit autotools-utils toolchain-funcs python-single-r1 +inherit autotools-utils toolchain-funcs DESCRIPTION="C++ library for non-linear optimization" HOMEPAGE="https://software.sandia.gov/opt++/" SRC_URI="${HOMEPAGE}/downloads/${P}.tar.gz" LICENSE="LGPL-2" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" SLOT="0" IUSE="doc mpi static-libs" @@ -24,7 +22,7 @@ DEPEND="${RDEPEND} virtual/pkgconfig" src_configure() { - myeconfargs+=( + local myeconfargs=( --with-blas="$($(tc-getPKG_CONFIG) --libs blas)" $(use_enable mpi) )