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 64DFB139731 for ; Tue, 11 Aug 2015 11:21:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D8E6141A8; Tue, 11 Aug 2015 11:21:41 +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 AB03F141A2 for ; Tue, 11 Aug 2015 11:21:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7E355340A61 for ; Tue, 11 Aug 2015 11:21:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 216DD127 for ; Tue, 11 Aug 2015 11:21:36 +0000 (UTC) From: "Andrew Savchenko" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Savchenko" Message-ID: <1439291912.d5ec68cac4f13b111b1c579e50272455e638efea.bircoph@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/asl/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/asl/ChangeLog sci-libs/asl/asl-0.1.4.ebuild X-VCS-Directories: sci-libs/asl/ X-VCS-Committer: bircoph X-VCS-Committer-Name: Andrew Savchenko X-VCS-Revision: d5ec68cac4f13b111b1c579e50272455e638efea X-VCS-Branch: master Date: Tue, 11 Aug 2015 11:21:36 +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: 8b235568-bad6-4786-b026-763cca902dd8 X-Archives-Hash: 75ec57be8fc4c477236eb31eabc4f31d commit: d5ec68cac4f13b111b1c579e50272455e638efea Author: Andrew Savchenko gmail com> AuthorDate: Tue Aug 11 11:18:32 2015 +0000 Commit: Andrew Savchenko gentoo org> CommitDate: Tue Aug 11 11:18:32 2015 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=d5ec68ca sci-libs/asl: remove old version sci-libs/asl/ChangeLog | 3 ++ sci-libs/asl/asl-0.1.4.ebuild | 65 ------------------------------------------- 2 files changed, 3 insertions(+), 65 deletions(-) diff --git a/sci-libs/asl/ChangeLog b/sci-libs/asl/ChangeLog index 1f46c0e..2aa925a 100644 --- a/sci-libs/asl/ChangeLog +++ b/sci-libs/asl/ChangeLog @@ -2,6 +2,9 @@ # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 11 Aug 2015; Andrew Savchenko -asl-0.1.4.ebuild: + Remove old. + *asl-0.1.5 (10 Aug 2015) 10 Aug 2015; Andrew Savchenko +asl-0.1.5.ebuild: diff --git a/sci-libs/asl/asl-0.1.4.ebuild b/sci-libs/asl/asl-0.1.4.ebuild deleted file mode 100644 index 15be510..0000000 --- a/sci-libs/asl/asl-0.1.4.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=5 - -CMAKE_MIN_VERSION=3.0.2 -CMAKE_MAKEFILE_GENERATOR="${CMAKE_MAKEFILE_GENERATOR:-ninja}" - -inherit cmake-utils - -MY_PN=ASL - -DESCRIPTION="Advanced Simulation Library - multiphysics simulation software package" -HOMEPAGE="http://asl.org.il/" -SRC_URI="https://github.com/AvtechScientific/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" -LICENSE="AGPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc examples matio" - -RDEPEND=" - >=dev-libs/boost-1.55:= - >=sci-libs/vtk-6.1 - >=virtual/opencl-0-r2 -" -DEPEND="${RDEPEND} - doc? ( app-doc/doxygen[dot] ) - matio? ( >=sci-libs/matio-1.5.2 ) -" - -S="${WORKDIR}/${MY_PN}-${PV}" - -src_configure() { - local mycmakeargs=( - -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/${PF} - -DCMAKE_SKIP_RPATH=yes - $(cmake-utils_use_with doc API_DOC) - $(cmake-utils_use_with examples) - $(cmake-utils_use_with matio) - ) - cmake-utils_src_configure -} - -src_install() { - cmake-utils_src_install - - # examples are not installed by cmake :/ - if use examples; then - local f - cd "${CMAKE_USE_DIR}/examples" || die - for f in $(find -O3 -type f -name "*.cc" -printf "%P\n" || die); do - cp "${f}" "${BUILD_DIR}/examples/${f%%.cc}" || die - done - cp -a input_data "${BUILD_DIR}/examples" || die - - cd "${BUILD_DIR}/examples" || die - chmod a-x input_data/multicomponent_flow.pvsm || die - find -O3 -type f -name cmake_install.cmake -delete || die - find -O3 -type d -name CMakeFiles -exec rm -rf '{}' \+ || die - - mkdir -p "${ED}/usr/share/${PN}/examples" || die - cp -a . "${ED}/usr/share/${PN}/examples" || die - fi -}