public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: sci-libs/asl/
@ 2015-07-25 23:38 Andrew Savchenko
  0 siblings, 0 replies; 7+ messages in thread
From: Andrew Savchenko @ 2015-07-25 23:38 UTC (permalink / raw
  To: gentoo-commits

commit:     863e92cd5587dd30bf322a1a36be885f1a8da8f5
Author:     Andrew Savchenko <bircoph <AT> gmail <DOT> com>
AuthorDate: Sat Jul 25 23:37:09 2015 +0000
Commit:     Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
CommitDate: Sat Jul 25 23:37:09 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=863e92cd

Fix issue #452

Add sci-libs/asl package.

 sci-libs/asl/ChangeLog        |  9 ++++++
 sci-libs/asl/asl-0.1.4.ebuild | 65 +++++++++++++++++++++++++++++++++++++++++++
 sci-libs/asl/metadata.xml     | 31 +++++++++++++++++++++
 3 files changed, 105 insertions(+)

diff --git a/sci-libs/asl/ChangeLog b/sci-libs/asl/ChangeLog
new file mode 100644
index 0000000..84477a0
--- /dev/null
+++ b/sci-libs/asl/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for sci-libs/asl
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*asl-0.1.4 (25 Jul 2015)
+
+  25 Jul 2015; Andrew Savchenko <bircoph@gentoo.org> +asl-0.1.4.ebuild,
+  +metadata.xml:
+  Initial commit.

diff --git a/sci-libs/asl/asl-0.1.4.ebuild b/sci-libs/asl/asl-0.1.4.ebuild
new file mode 100644
index 0000000..15be510
--- /dev/null
+++ b/sci-libs/asl/asl-0.1.4.ebuild
@@ -0,0 +1,65 @@
+# 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
+}

diff --git a/sci-libs/asl/metadata.xml b/sci-libs/asl/metadata.xml
new file mode 100644
index 0000000..ab3f78d
--- /dev/null
+++ b/sci-libs/asl/metadata.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>sci-physics</herd>
+<maintainer>
+  <email>bircoph@gentoo.org</email>
+  <name>Andrew Savchenko</name>
+</maintainer>
+<longdescription lang="en">
+  Advanced Simulation Library (ASL) is a free and open source
+  multiphysics simulation software package. Its computational
+  engine is based, among others, on the Lattice Boltzmann Methods
+  and is written in OpenCL which enable extraordinarily efficient
+  deployment on a variety of massively parallel architectures,
+  ranging from inexpensive FPGAs, DSPs and GPUs up to heterogeneous
+  clusters and supercomputers. The engine is hidden entirely behind
+  C++ classes, so that no OpenCL knowledge is required from
+  application programmers. ASL can be utilized to model various
+  coupled physical and chemical phenomena and employed in a
+  multitude of fields: computational fluid dynamics, virtual
+  sensing, industrial process data validation and reconciliation,
+  image-guided surgery, computer-aided engineering,
+  high-performance scientific computing, etc.
+</longdescription>
+<use>
+  <flag name="matio">Matlab support with <pkg>sci-libs/matio</pkg></flag>
+</use>
+<upstream>
+  <remote-id type="github">AvtechScientific/ASL</remote-id>
+</upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-libs/asl/
@ 2015-08-10 16:50 Andrew Savchenko
  0 siblings, 0 replies; 7+ messages in thread
From: Andrew Savchenko @ 2015-08-10 16:50 UTC (permalink / raw
  To: gentoo-commits

commit:     0d0a03ac8462a2f01c4e94468ebd248415ccc6e1
Author:     Andrew Savchenko <bircoph <AT> gmail <DOT> com>
AuthorDate: Mon Aug 10 16:49:27 2015 +0000
Commit:     Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
CommitDate: Mon Aug 10 16:49:27 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=0d0a03ac

sci-libs/asl: version bump

Signed-off-by: Andrew Savchenko <bircoph <AT> gmail.com>

 sci-libs/asl/ChangeLog        |  5 +++++
 sci-libs/asl/asl-0.1.5.ebuild | 43 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 48 insertions(+)

diff --git a/sci-libs/asl/ChangeLog b/sci-libs/asl/ChangeLog
index 84477a0..1f46c0e 100644
--- a/sci-libs/asl/ChangeLog
+++ b/sci-libs/asl/ChangeLog
@@ -2,6 +2,11 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*asl-0.1.5 (10 Aug 2015)
+
+  10 Aug 2015; Andrew Savchenko <bircoph@gentoo.org> +asl-0.1.5.ebuild:
+  Version bump, examples are now installed natively.
+
 *asl-0.1.4 (25 Jul 2015)
 
   25 Jul 2015; Andrew Savchenko <bircoph@gentoo.org> +asl-0.1.4.ebuild,

diff --git a/sci-libs/asl/asl-0.1.5.ebuild b/sci-libs/asl/asl-0.1.5.ebuild
new file mode 100644
index 0000000..3090871
--- /dev/null
+++ b/sci-libs/asl/asl-0.1.5.ebuild
@@ -0,0 +1,43 @@
+# 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
+}


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-libs/asl/
@ 2015-08-11 11:21 Andrew Savchenko
  0 siblings, 0 replies; 7+ messages in thread
From: Andrew Savchenko @ 2015-08-11 11:21 UTC (permalink / raw
  To: gentoo-commits

commit:     d5ec68cac4f13b111b1c579e50272455e638efea
Author:     Andrew Savchenko <bircoph <AT> gmail <DOT> com>
AuthorDate: Tue Aug 11 11:18:32 2015 +0000
Commit:     Andrew Savchenko <bircoph <AT> gentoo <DOT> 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 <bircoph@gentoo.org> -asl-0.1.4.ebuild:
+  Remove old.
+
 *asl-0.1.5 (10 Aug 2015)
 
   10 Aug 2015; Andrew Savchenko <bircoph@gentoo.org> +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
-}


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-libs/asl/
@ 2015-08-11 11:21 Andrew Savchenko
  0 siblings, 0 replies; 7+ messages in thread
From: Andrew Savchenko @ 2015-08-11 11:21 UTC (permalink / raw
  To: gentoo-commits

commit:     444c8b620b34fde350c00bef8086f7183bd259f2
Author:     Andrew Savchenko <bircoph <AT> gmail <DOT> com>
AuthorDate: Tue Aug 11 11:21:04 2015 +0000
Commit:     Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
CommitDate: Tue Aug 11 11:21:04 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=444c8b62

sci-libs/asl: add live ebuild, unify life and release ebuilds.

 sci-libs/asl/ChangeLog                             |  5 +++
 sci-libs/asl/asl-0.1.5.ebuild                      | 44 +---------------------
 sci-libs/asl/{asl-0.1.5.ebuild => asl-9999.ebuild} | 17 ++++++---
 3 files changed, 17 insertions(+), 49 deletions(-)

diff --git a/sci-libs/asl/ChangeLog b/sci-libs/asl/ChangeLog
index 2aa925a..4470063 100644
--- a/sci-libs/asl/ChangeLog
+++ b/sci-libs/asl/ChangeLog
@@ -2,6 +2,11 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*asl-9999 (11 Aug 2015)
+
+  11 Aug 2015; Andrew Savchenko <bircoph@gentoo.org> +asl-9999.ebuild:
+  Add live ebuild. Unify life and release ebuilds.
+
   11 Aug 2015; Andrew Savchenko <bircoph@gentoo.org> -asl-0.1.4.ebuild:
   Remove old.
 

diff --git a/sci-libs/asl/asl-0.1.5.ebuild b/sci-libs/asl/asl-0.1.5.ebuild
deleted file mode 100644
index 3090871..0000000
--- a/sci-libs/asl/asl-0.1.5.ebuild
+++ /dev/null
@@ -1,43 +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
-}

diff --git a/sci-libs/asl/asl-0.1.5.ebuild b/sci-libs/asl/asl-0.1.5.ebuild
new file mode 120000
index 0000000..2176c62
--- /dev/null
+++ b/sci-libs/asl/asl-0.1.5.ebuild
@@ -0,0 +1 @@
+asl-9999.ebuild
\ No newline at end of file

diff --git a/sci-libs/asl/asl-0.1.5.ebuild b/sci-libs/asl/asl-9999.ebuild
similarity index 75%
copy from sci-libs/asl/asl-0.1.5.ebuild
copy to sci-libs/asl/asl-9999.ebuild
index 3090871..0b7f2fd 100644
--- a/sci-libs/asl/asl-0.1.5.ebuild
+++ b/sci-libs/asl/asl-9999.ebuild
@@ -4,19 +4,26 @@
 
 EAPI=5
 
+MY_PN=ASL
+
+if [[ ${PV} == "9999" ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="git://github.com/AvtechScientific/${MY_PN}.git"
+else
+	SRC_URI="https://github.com/AvtechScientific/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+	S="${WORKDIR}/${MY_PN}-${PV}"
+fi
+
 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="
@@ -29,8 +36,6 @@ DEPEND="${RDEPEND}
 	matio? ( >=sci-libs/matio-1.5.2 )
 "
 
-S="${WORKDIR}/${MY_PN}-${PV}"
-
 src_configure() {
 	local mycmakeargs=(
 		-DCMAKE_INSTALL_DOCDIR=/usr/share/doc/${PF}


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-libs/asl/
@ 2016-11-12  9:16 Justin Lecher
  0 siblings, 0 replies; 7+ messages in thread
From: Justin Lecher @ 2016-11-12  9:16 UTC (permalink / raw
  To: gentoo-commits

commit:     6bc52c68ce5d8764b9fdf708a97a3ede92771133
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 12 09:16:32 2016 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sat Nov 12 09:16:32 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=6bc52c68

sci-libs/asl: Version Bump

Change USE=matio to matlab
drop old

Package-Manager: portage-2.3.2
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 sci-libs/asl/asl-0.1.5.ebuild | 48 ----------------------------------
 sci-libs/asl/asl-0.1.6.ebuild |  8 +++---
 sci-libs/asl/asl-0.1.7.ebuild | 43 ++++++++++++++++++++++++++++++
 sci-libs/asl/asl-9999.ebuild  | 34 ++++++++++--------------
 sci-libs/asl/metadata.xml     | 61 +++++++++++++++++++++++--------------------
 5 files changed, 93 insertions(+), 101 deletions(-)

diff --git a/sci-libs/asl/asl-0.1.5.ebuild b/sci-libs/asl/asl-0.1.5.ebuild
deleted file mode 100644
index 3163a5d..0000000
--- a/sci-libs/asl/asl-0.1.5.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MY_PN=ASL
-
-if [[ ${PV} == "9999" ]] ; then
-	inherit git-r3
-	EGIT_REPO_URI="git://github.com/AvtechScientific/${MY_PN}.git"
-else
-	SRC_URI="https://github.com/AvtechScientific/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-	S="${WORKDIR}/${MY_PN}-${PV}"
-fi
-
-CMAKE_MIN_VERSION=3.0.2
-CMAKE_MAKEFILE_GENERATOR="${CMAKE_MAKEFILE_GENERATOR:-ninja}"
-
-inherit cmake-utils
-
-DESCRIPTION="Advanced Simulation Library - multiphysics simulation software package"
-HOMEPAGE="http://asl.org.il/"
-LICENSE="AGPL-3"
-SLOT="0"
-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 )
-"
-
-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
-}

diff --git a/sci-libs/asl/asl-0.1.6.ebuild b/sci-libs/asl/asl-0.1.6.ebuild
index 3163a5d..830d58d 100644
--- a/sci-libs/asl/asl-0.1.6.ebuild
+++ b/sci-libs/asl/asl-0.1.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -24,7 +24,7 @@ DESCRIPTION="Advanced Simulation Library - multiphysics simulation software pack
 HOMEPAGE="http://asl.org.il/"
 LICENSE="AGPL-3"
 SLOT="0"
-IUSE="doc examples matio"
+IUSE="doc examples matlab"
 
 RDEPEND="
 	>=dev-libs/boost-1.55:=
@@ -33,7 +33,7 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}
 	doc? ( app-doc/doxygen[dot] )
-	matio? ( >=sci-libs/matio-1.5.2 )
+	matlab? ( >=sci-libs/matio-1.5.2 )
 "
 
 src_configure() {
@@ -42,7 +42,7 @@ src_configure() {
 		-DCMAKE_SKIP_RPATH=yes
 		$(cmake-utils_use_with doc API_DOC)
 		$(cmake-utils_use_with examples)
-		$(cmake-utils_use_with matio)
+		$(cmake-utils_use_with matlab)
 	)
 	cmake-utils_src_configure
 }

diff --git a/sci-libs/asl/asl-0.1.7.ebuild b/sci-libs/asl/asl-0.1.7.ebuild
new file mode 100644
index 0000000..cdec05f
--- /dev/null
+++ b/sci-libs/asl/asl-0.1.7.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+MY_PN=ASL
+CMAKE_MIN_VERSION=3.0.2
+CMAKE_MAKEFILE_GENERATOR="${CMAKE_MAKEFILE_GENERATOR:-ninja}"
+
+inherit cmake-utils
+
+DESCRIPTION="Advanced Simulation Library - hardware accelerated multiphysics simulation platform"
+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"
+IUSE="doc examples matlab"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	>=dev-libs/boost-1.53:=
+	>=sci-libs/vtk-6.1
+	>=virtual/opencl-0-r2
+"
+DEPEND="${RDEPEND}
+	doc? ( app-doc/doxygen[dot] )
+	matlab? ( >=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
+		-DWITH_API_DOC="$(usex doc)"
+		-DWITH_EXAMPLES="$(usex examples)"
+		-DWITH_MATIO="$(usex matlab)"
+	)
+	cmake-utils_src_configure
+}

diff --git a/sci-libs/asl/asl-9999.ebuild b/sci-libs/asl/asl-9999.ebuild
index 3163a5d..81ecd1d 100644
--- a/sci-libs/asl/asl-9999.ebuild
+++ b/sci-libs/asl/asl-9999.ebuild
@@ -1,48 +1,42 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
 MY_PN=ASL
-
-if [[ ${PV} == "9999" ]] ; then
-	inherit git-r3
-	EGIT_REPO_URI="git://github.com/AvtechScientific/${MY_PN}.git"
-else
-	SRC_URI="https://github.com/AvtechScientific/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-	S="${WORKDIR}/${MY_PN}-${PV}"
-fi
-
 CMAKE_MIN_VERSION=3.0.2
 CMAKE_MAKEFILE_GENERATOR="${CMAKE_MAKEFILE_GENERATOR:-ninja}"
 
-inherit cmake-utils
+inherit cmake-utils git-r3
 
-DESCRIPTION="Advanced Simulation Library - multiphysics simulation software package"
+DESCRIPTION="Advanced Simulation Library - hardware accelerated multiphysics simulation platform"
 HOMEPAGE="http://asl.org.il/"
+SRC_URI=""
+EGIT_REPO_URI="git://github.com/AvtechScientific/${MY_PN}.git"
+
 LICENSE="AGPL-3"
 SLOT="0"
-IUSE="doc examples matio"
+IUSE="doc examples matlab"
+KEYWORDS=""
 
 RDEPEND="
-	>=dev-libs/boost-1.55:=
+	>=dev-libs/boost-1.53:=
 	>=sci-libs/vtk-6.1
 	>=virtual/opencl-0-r2
 "
 DEPEND="${RDEPEND}
 	doc? ( app-doc/doxygen[dot] )
-	matio? ( >=sci-libs/matio-1.5.2 )
+	matlab? ( >=sci-libs/matio-1.5.2 )
 "
 
 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)
+		-DWITH_API_DOC="$(usex doc)"
+		-DWITH_EXAMPLES="$(usex examples)"
+		-DWITH_MATIO="$(usex matlab)"
 	)
 	cmake-utils_src_configure
 }

diff --git a/sci-libs/asl/metadata.xml b/sci-libs/asl/metadata.xml
index 694b2ac..7170c1d 100644
--- a/sci-libs/asl/metadata.xml
+++ b/sci-libs/asl/metadata.xml
@@ -1,34 +1,37 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<maintainer type="person">
-  <email>bircoph@gentoo.org</email>
-  <name>Andrew Savchenko</name>
-</maintainer>
-<maintainer type="project">
-  <email>sci-physics@gentoo.org</email>
-  <name>Gentoo Physics Project</name>
-</maintainer>
-<longdescription lang="en">
-  Advanced Simulation Library (ASL) is a free and open source
-  multiphysics simulation software package. Its computational
-  engine is based, among others, on the Lattice Boltzmann Methods
-  and is written in OpenCL which enable extraordinarily efficient
-  deployment on a variety of massively parallel architectures,
-  ranging from inexpensive FPGAs, DSPs and GPUs up to heterogeneous
-  clusters and supercomputers. The engine is hidden entirely behind
-  C++ classes, so that no OpenCL knowledge is required from
-  application programmers. ASL can be utilized to model various
-  coupled physical and chemical phenomena and employed in a
-  multitude of fields: computational fluid dynamics, virtual
-  sensing, industrial process data validation and reconciliation,
-  image-guided surgery, computer-aided engineering,
-  high-performance scientific computing, etc.
+  <maintainer type="person">
+    <email>bircoph@gentoo.org</email>
+    <name>Andrew Savchenko</name>
+  </maintainer>
+  <maintainer type="project">
+    <email>sci-physics@gentoo.org</email>
+    <name>Gentoo Physics Project</name>
+  </maintainer>
+  <longdescription lang="en">
+Advanced Simulation Library (ASL) is a free and open source hardware
+accelerated multiphysics simulation platform (and an extensible general
+purpose tool for solving Partial Differential Equations). Its
+computational engine is written in OpenCL and utilizes matrix-free
+solution techniques which enable extraordinarily high performance,
+memory efficiency and deployability on a variety of massively parallel
+architectures, ranging from inexpensive FPGAs, DSPs and GPUs up to
+heterogeneous clusters and supercomputers. The engine is hidden entirely
+behind simple C++ classes, so that no OpenCL knowledge is required from
+application programmers. Mesh-free, immersed boundary approach allows to
+move from CAD directly to simulation drastically reducing pre-processing
+efforts and amount of potential errors. ASL can be used to model various
+coupled physical and chemical phenomena and employed in a multitude of
+fields: computational fluid dynamics, virtual sensing, industrial
+process data validation and reconciliation, image-guided surgery,
+computer-aided engineering, design space exploration, crystallography,
+etc.
 </longdescription>
-<use>
-  <flag name="matio">Matlab support with <pkg>sci-libs/matio</pkg></flag>
-</use>
-<upstream>
-  <remote-id type="github">AvtechScientific/ASL</remote-id>
-</upstream>
+  <use>
+    <flag name="matlab">Matlab support with <pkg>sci-libs/matio</pkg></flag>
+  </use>
+  <upstream>
+    <remote-id type="github">AvtechScientific/ASL</remote-id>
+  </upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-libs/asl/
@ 2021-01-29 20:59 Andrew Ammerlaan
  0 siblings, 0 replies; 7+ messages in thread
From: Andrew Ammerlaan @ 2021-01-29 20:59 UTC (permalink / raw
  To: gentoo-commits

commit:     c3b31fbf6cd0020a516e092684accc3a820a7436
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Fri Jan 29 20:58:35 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Fri Jan 29 20:58:56 2021 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=c3b31fbf

sci-libs/asl: camke-utils --> cmake, fix compilation

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 sci-libs/asl/asl-0.1.6.ebuild | 47 -------------------------------------------
 sci-libs/asl/asl-0.1.7.ebuild | 20 +++++++++++-------
 sci-libs/asl/asl-9999.ebuild  | 19 +++++++++--------
 3 files changed, 24 insertions(+), 62 deletions(-)

diff --git a/sci-libs/asl/asl-0.1.6.ebuild b/sci-libs/asl/asl-0.1.6.ebuild
deleted file mode 100644
index 397f4b260..000000000
--- a/sci-libs/asl/asl-0.1.6.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MY_PN=ASL
-
-if [[ ${PV} == "9999" ]] ; then
-	inherit git-r3
-	EGIT_REPO_URI="git://github.com/AvtechScientific/${MY_PN}.git"
-else
-	SRC_URI="https://github.com/AvtechScientific/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-	S="${WORKDIR}/${MY_PN}-${PV}"
-fi
-
-CMAKE_MIN_VERSION=3.0.2
-CMAKE_MAKEFILE_GENERATOR="${CMAKE_MAKEFILE_GENERATOR:-ninja}"
-
-inherit cmake-utils
-
-DESCRIPTION="Advanced Simulation Library - multiphysics simulation software package"
-HOMEPAGE="http://asl.org.il/"
-LICENSE="AGPL-3"
-SLOT="0"
-IUSE="doc examples matlab"
-
-RDEPEND="
-	>=dev-libs/boost-1.55:=
-	>=sci-libs/vtk-6.1
-	>=virtual/opencl-0-r2
-"
-DEPEND="${RDEPEND}
-	doc? ( app-doc/doxygen[dot] )
-	matlab? ( >=sci-libs/matio-1.5.2 )
-"
-
-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 matlab)
-	)
-	cmake-utils_src_configure
-}

diff --git a/sci-libs/asl/asl-0.1.7.ebuild b/sci-libs/asl/asl-0.1.7.ebuild
index 062763511..50eaeea5d 100644
--- a/sci-libs/asl/asl-0.1.7.ebuild
+++ b/sci-libs/asl/asl-0.1.7.ebuild
@@ -1,13 +1,12 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 MY_PN=ASL
-CMAKE_MIN_VERSION=3.0.2
 CMAKE_MAKEFILE_GENERATOR="${CMAKE_MAKEFILE_GENERATOR:-ninja}"
 
-inherit cmake-utils
+inherit cmake
 
 DESCRIPTION="Hardware accelerated multiphysics simulation platform"
 HOMEPAGE="http://asl.org.il/"
@@ -15,21 +14,28 @@ SRC_URI="https://github.com/AvtechScientific/${MY_PN}/archive/v${PV}.tar.gz -> $
 
 LICENSE="AGPL-3"
 SLOT="0"
-IUSE="doc examples matlab"
 KEYWORDS="~amd64 ~x86"
 
+IUSE="doc examples matlab"
+
 RDEPEND="
 	>=dev-libs/boost-1.53:=
 	>=sci-libs/vtk-6.1
 	>=virtual/opencl-0-r2
 "
 DEPEND="${RDEPEND}
-	doc? ( app-doc/doxygen[dot] )
 	matlab? ( >=sci-libs/matio-1.5.2 )
 "
+BDEPEND="doc? ( app-doc/doxygen[dot] )"
 
 S="${WORKDIR}/${MY_PN}-${PV}"
 
+src_prepare() {
+	cmake_src_prepare
+	# allow use of vtk 8.2
+	sed -i -e 's/find_package(VTK 7.0/find_package(VTK 8.2/g' CMakeLists.txt || die
+}
+
 src_configure() {
 	local mycmakeargs=(
 		-DCMAKE_INSTALL_DOCDIR=/usr/share/doc/${PF}
@@ -38,5 +44,5 @@ src_configure() {
 		-DWITH_EXAMPLES="$(usex examples)"
 		-DWITH_MATIO="$(usex matlab)"
 	)
-	cmake-utils_src_configure
+	cmake_src_configure
 }

diff --git a/sci-libs/asl/asl-9999.ebuild b/sci-libs/asl/asl-9999.ebuild
index 7f540d17a..82b464f7f 100644
--- a/sci-libs/asl/asl-9999.ebuild
+++ b/sci-libs/asl/asl-9999.ebuild
@@ -1,23 +1,20 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 MY_PN=ASL
-CMAKE_MIN_VERSION=3.0.2
 CMAKE_MAKEFILE_GENERATOR="${CMAKE_MAKEFILE_GENERATOR:-ninja}"
 
-inherit cmake-utils git-r3
+inherit cmake git-r3
 
 DESCRIPTION="Hardware accelerated multiphysics simulation platform"
 HOMEPAGE="http://asl.org.il/"
-SRC_URI=""
 EGIT_REPO_URI="git://github.com/AvtechScientific/${MY_PN}.git"
 
 LICENSE="AGPL-3"
 SLOT="0"
 IUSE="doc examples matlab"
-KEYWORDS=""
 
 RDEPEND="
 	>=dev-libs/boost-1.53:=
@@ -25,9 +22,15 @@ RDEPEND="
 	>=virtual/opencl-0-r2
 "
 DEPEND="${RDEPEND}
-	doc? ( app-doc/doxygen[dot] )
 	matlab? ( >=sci-libs/matio-1.5.2 )
 "
+BDEPEND="doc? ( app-doc/doxygen[dot] )"
+
+src_prepare() {
+	cmake_src_prepare
+	# allow use of vtk 8.2
+	sed -i -e 's/find_package(VTK 7.0/find_package(VTK 8.2/g' CMakeLists.txt || die
+}
 
 src_configure() {
 	local mycmakeargs=(
@@ -37,5 +40,5 @@ src_configure() {
 		-DWITH_EXAMPLES="$(usex examples)"
 		-DWITH_MATIO="$(usex matlab)"
 	)
-	cmake-utils_src_configure
+	cmake_src_configure
 }


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-libs/asl/
@ 2024-01-22 12:00 Horea Christian
  0 siblings, 0 replies; 7+ messages in thread
From: Horea Christian @ 2024-01-22 12:00 UTC (permalink / raw
  To: gentoo-commits

commit:     802190319f64fbca8a18311b0ef98c9bd8f68172
Author:     Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Mon Jan 22 11:59:15 2024 +0000
Commit:     Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Mon Jan 22 11:59:15 2024 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=80219031

sci-libs/asl: updated dependency name

Signed-off-by: Horea Christian <chr <AT> chymera.eu>

 sci-libs/asl/asl-0.1.7.ebuild | 2 +-
 sci-libs/asl/asl-9999.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-libs/asl/asl-0.1.7.ebuild b/sci-libs/asl/asl-0.1.7.ebuild
index 50eaeea5d..cbfbde5c6 100644
--- a/sci-libs/asl/asl-0.1.7.ebuild
+++ b/sci-libs/asl/asl-0.1.7.ebuild
@@ -26,7 +26,7 @@ RDEPEND="
 DEPEND="${RDEPEND}
 	matlab? ( >=sci-libs/matio-1.5.2 )
 "
-BDEPEND="doc? ( app-doc/doxygen[dot] )"
+BDEPEND="doc? ( app-text/doxygen[dot] )"
 
 S="${WORKDIR}/${MY_PN}-${PV}"
 

diff --git a/sci-libs/asl/asl-9999.ebuild b/sci-libs/asl/asl-9999.ebuild
index 82b464f7f..905c8813a 100644
--- a/sci-libs/asl/asl-9999.ebuild
+++ b/sci-libs/asl/asl-9999.ebuild
@@ -24,7 +24,7 @@ RDEPEND="
 DEPEND="${RDEPEND}
 	matlab? ( >=sci-libs/matio-1.5.2 )
 "
-BDEPEND="doc? ( app-doc/doxygen[dot] )"
+BDEPEND="doc? ( app-text/doxygen[dot] )"
 
 src_prepare() {
 	cmake_src_prepare


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2024-01-22 12:00 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-11 11:21 [gentoo-commits] proj/sci:master commit in: sci-libs/asl/ Andrew Savchenko
  -- strict thread matches above, loose matches on Subject: below --
2024-01-22 12:00 Horea Christian
2021-01-29 20:59 Andrew Ammerlaan
2016-11-12  9:16 Justin Lecher
2015-08-11 11:21 Andrew Savchenko
2015-08-10 16:50 Andrew Savchenko
2015-07-25 23:38 Andrew Savchenko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox