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 BA9A713877A for ; Mon, 7 Jul 2014 02:29:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7F360E0849; Mon, 7 Jul 2014 02:29:28 +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 F25F6E0849 for ; Mon, 7 Jul 2014 02:29:27 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CB68833FD41 for ; Mon, 7 Jul 2014 02:29:26 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2345) id 83EA72004F; Mon, 7 Jul 2014 02:29:25 +0000 (UTC) From: "Manuel Rueger (mrueg)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, mrueg@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/igraph: igraph-0.7.1-r1.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: igraph-0.7.1-r1.ebuild ChangeLog X-VCS-Directories: dev-libs/igraph X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rueger Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20140707022925.83EA72004F@flycatcher.gentoo.org> Date: Mon, 7 Jul 2014 02:29:25 +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: 034aa219-1ebb-42f1-bf83-1286e2e5f7e6 X-Archives-Hash: 5a3ca44460c01d7fdc78e6491a04dced mrueg 14/07/07 02:29:25 Modified: ChangeLog Added: igraph-0.7.1-r1.ebuild Log: Add subslot. (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key ) Revision Changes Path 1.11 dev-libs/igraph/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/igraph/ChangeLog?rev=1.11&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/igraph/ChangeLog?rev=1.11&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/igraph/ChangeLog?r1=1.10&r2=1.11 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/igraph/ChangeLog,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- ChangeLog 26 Jun 2014 14:04:57 -0000 1.10 +++ ChangeLog 7 Jul 2014 02:29:25 -0000 1.11 @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/igraph # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/igraph/ChangeLog,v 1.10 2014/06/26 14:04:57 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/igraph/ChangeLog,v 1.11 2014/07/07 02:29:25 mrueg Exp $ + +*igraph-0.7.1-r1 (07 Jul 2014) + + 07 Jul 2014; Manuel RĂ¼ger +igraph-0.7.1-r1.ebuild: + Add subslot. *igraph-0.7.1 (26 Jun 2014) 1.1 dev-libs/igraph/igraph-0.7.1-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/igraph/igraph-0.7.1-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/igraph/igraph-0.7.1-r1.ebuild?rev=1.1&content-type=text/plain Index: igraph-0.7.1-r1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/igraph/igraph-0.7.1-r1.ebuild,v 1.1 2014/07/07 02:29:25 mrueg Exp $ EAPI=5 AUTOTOOLS_AUTORECONF=true inherit autotools-utils toolchain-funcs DESCRIPTION="Creating and manipulating undirected and directed graphs" HOMEPAGE="http://igraph.sourceforge.net/index.html" SRC_URI="mirror://sourceforge/project/${PN}/C%20library/${PV}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0/0" KEYWORDS="~amd64" IUSE="debug gmp static-libs" RDEPEND=" dev-libs/libxml2 >=sci-libs/arpack-3 virtual/blas virtual/lapack >=sci-libs/cxsparse-3 sci-mathematics/glpk gmp? ( dev-libs/gmp )" DEPEND="${RDEPEND} virtual/pkgconfig" PATCHES=( "${FILESDIR}"/${P}-unbundle.patch ) src_prepare() { # rm -rf src/{cs,f2c,lapack,f2c.h} optional/glpk || die # rm -rf src/cs optional/glpk || die autotools-utils_src_prepare } src_configure() { tc-export PKG_CONFIG local myeconfargs=( $(use_enable gmp) $(use_enable debug) --disable-tls --with-external-arpack --with-external-blas --with-external-lapack --with-external-f2c --with-external-glpk ) autotools-utils_src_configure }