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 8B7F51384B4 for ; Tue, 10 Nov 2015 17:31:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F317421C016; Tue, 10 Nov 2015 17:30:58 +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 1444521C015 for ; Tue, 10 Nov 2015 17:30:58 +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 F08BA340139 for ; Tue, 10 Nov 2015 17:30:55 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D2D5C23F1 for ; Tue, 10 Nov 2015 17:30:53 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1447175961.df34fbdd69a3fe814099019e4ef63624f4ab3abf.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: dev-cpp/eigen/ X-VCS-Repository: proj/kde X-VCS-Files: dev-cpp/eigen/eigen-9999.ebuild dev-cpp/eigen/metadata.xml X-VCS-Directories: dev-cpp/eigen/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: df34fbdd69a3fe814099019e4ef63624f4ab3abf X-VCS-Branch: master Date: Tue, 10 Nov 2015 17:30:53 +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: b1f793ce-a8f8-4441-a1c3-96b2bb53d36d X-Archives-Hash: 5b5b51603fcb1dc28213ff9f350e4281 commit: df34fbdd69a3fe814099019e4ef63624f4ab3abf Author: Michael Palimaka gentoo org> AuthorDate: Tue Nov 10 17:19:21 2015 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Tue Nov 10 17:19:21 2015 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=df34fbdd dev-cpp/eigen: remove unmaintained live ebuild dev-cpp/eigen/eigen-9999.ebuild | 63 ----------------------------------------- dev-cpp/eigen/metadata.xml | 13 --------- 2 files changed, 76 deletions(-) diff --git a/dev-cpp/eigen/eigen-9999.ebuild b/dev-cpp/eigen/eigen-9999.ebuild deleted file mode 100644 index e27773c..0000000 --- a/dev-cpp/eigen/eigen-9999.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit cmake-utils mercurial - -DESCRIPTION="C++ template library for linear algebra: vectors, matrices, and related algorithms" -HOMEPAGE="http://eigen.tuxfamily.org/" -EHG_REPO_URI="https://bitbucket.org/${PN}/${PN}" - -LICENSE="LGPL-2 GPL-3" -KEYWORDS="" -SLOT="3" -IUSE="debug doc" - -DEPEND="doc? ( app-doc/doxygen[dot,latex] )" -RDEPEND="!dev-cpp/eigen:0" - -src_prepare() { - sed -i CMakeLists.txt \ - -e "/add_subdirectory(demos/d" \ - -e "/add_subdirectory(blas/d" \ - -e "/add_subdirectory(lapack/d" \ - || die "sed disable unused bundles failed" -} - -src_configure() { - # benchmarks (BTL) brings up damn load of external deps including fortran - # compiler - CMAKE_BUILD_TYPE="release" - local mycmakeargs=( - -DEIGEN_BUILD_BTL=OFF - ) - cmake-utils_src_configure -} - -src_compile() { - cmake-utils_src_compile - if use doc; then - cmake-utils_src_compile doc - fi -} - -src_test() { - local mycmakeargs=( - -DEIGEN_BUILD_TESTS=ON - -DEIGEN_TEST_NO_FORTRAN=ON - -DEIGEN_TEST_NO_OPENGL=ON - ) - cmake-utils_src_configure - cmake-utils_src_compile buildtests - cmake-utils_src_test -} - -src_install() { - cmake-utils_src_install - if use doc; then - cd "${BUILD_DIR}"/doc - dohtml -r html/* - fi -} diff --git a/dev-cpp/eigen/metadata.xml b/dev-cpp/eigen/metadata.xml deleted file mode 100644 index 82bab86..0000000 --- a/dev-cpp/eigen/metadata.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - sci - kde - - Eigen is a lightweight C++ template library for vector and matrix math, - a.k.a. linear algebra. Unlike most other linear algebra libraries, Eigen - focuses on the simple mathematical needs of applications: games and other - OpenGL apps, spreadsheets and other office apps, etc. Eigen is dedicated to - providing optimal speed with GCC. - -