public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: sci-physics/mbdyn/
@ 2021-10-06 22:15 Alessandro Barbieri
  0 siblings, 0 replies; 4+ messages in thread
From: Alessandro Barbieri @ 2021-10-06 22:15 UTC (permalink / raw
  To: gentoo-commits

commit:     4f65714107028a14583d4239c051a7673d47a79d
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Wed Oct  6 14:21:00 2021 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Wed Oct  6 22:15:37 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4f657141

sci-physics/mbdyn: fix configure option

Closes: https://bugs.gentoo.org/816552
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 sci-physics/mbdyn/mbdyn-1.7.3_p20210925.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sci-physics/mbdyn/mbdyn-1.7.3_p20210925.ebuild b/sci-physics/mbdyn/mbdyn-1.7.3_p20210925.ebuild
index 5750bf3df..6fecb6acb 100644
--- a/sci-physics/mbdyn/mbdyn-1.7.3_p20210925.ebuild
+++ b/sci-physics/mbdyn/mbdyn-1.7.3_p20210925.ebuild
@@ -223,11 +223,12 @@ src_configure() {
 		$(use_with sparse suitesparseqr)
 		$(use_with sparse umfpack)
 		$(use_with superlu)
-		$(use_with taucs)
 		$(use_with threads)
 		$(use_with y12)
 	)
 
+	use taucs && myconf+=( "--with-taucs" )
+
 	if ( use autodiff && use sparse ); then
 		myconf+=( "--enable-sparse-autodiff" )
 	else


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

* [gentoo-commits] repo/proj/guru:dev commit in: sci-physics/mbdyn/
@ 2021-10-08  1:01 Alessandro Barbieri
  0 siblings, 0 replies; 4+ messages in thread
From: Alessandro Barbieri @ 2021-10-08  1:01 UTC (permalink / raw
  To: gentoo-commits

commit:     32c97b8a4ba5afa11fbb853b1111a04954bd9e02
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Fri Oct  8 01:00:37 2021 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Fri Oct  8 01:00:37 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=32c97b8a

sci-physics/mbdyn: remove taucs use

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 sci-physics/mbdyn/mbdyn-1.7.3_p20210925.ebuild | 11 ++++-------
 sci-physics/mbdyn/metadata.xml                 |  2 +-
 2 files changed, 5 insertions(+), 8 deletions(-)

diff --git a/sci-physics/mbdyn/mbdyn-1.7.3_p20210925.ebuild b/sci-physics/mbdyn/mbdyn-1.7.3_p20210925.ebuild
index 5a7971737..aa0140169 100644
--- a/sci-physics/mbdyn/mbdyn-1.7.3_p20210925.ebuild
+++ b/sci-physics/mbdyn/mbdyn-1.7.3_p20210925.ebuild
@@ -88,9 +88,9 @@ IUSE_MBDYN_MODULE="
 	mbdyn-module-wheel4
 "
 IUSE="${IUSE_MBDYN_MODULE//_/-} ann arpack autodiff blender boost bullet chaco crypt
-debug eig ginac jdqz +mbc metis mpi multithread-naive netcdf octave openblas
-pam pastix pmpi python qrupdate rt sasl schur sparse superlu taucs tests threads
-udunits +y12"
+debug eig ginac jdqz +mbc metis mpi multithread-naive netcdf octave openblas pam
+pastix pmpi python qrupdate rt sasl schur sparse superlu tests threads udunits +y12"
+# taucs rtai
 
 #	dev-libs/blitz
 RDEPEND="
@@ -126,11 +126,10 @@ RDEPEND="
 		sci-libs/umfpack
 	)
 	superlu? ( sci-libs/superlu_mt )
-	taucs? ( sci-libs/taucs )
 	threads? ( dev-libs/libatomic_ops )
 	udunits? ( sci-libs/udunits )
 "
-#	rtai? ( sys-libs/rtai )
+#	taucs? ( sci-libs/taucs )
 DEPEND="
 	${RDEPEND}
 	blender? ( sys-apps/pkgcore )
@@ -228,8 +227,6 @@ src_configure() {
 		$(use_with y12)
 	)
 
-	use taucs && myconf+=( "--with-taucs" )
-
 	if ( use autodiff && use sparse ); then
 		myconf+=( "--enable-sparse-autodiff" )
 	else

diff --git a/sci-physics/mbdyn/metadata.xml b/sci-physics/mbdyn/metadata.xml
index 58bd967bc..d7c54cba3 100644
--- a/sci-physics/mbdyn/metadata.xml
+++ b/sci-physics/mbdyn/metadata.xml
@@ -104,7 +104,7 @@
 		<flag name="schur">Enable Schur parallel solver</flag>
 		<flag name="sparse">Enable sparse solvers</flag>
 		<flag name="superlu">With <pkg>sci-libs/superlu</pkg> math library - eXperimental</flag>
-		<flag name="taucs">With <pkg>sci-libs/taucs</pkg> math library - eXperimental</flag>
+		<!--<flag name="taucs">With <pkg>sci-libs/taucs</pkg> math library - eXperimental</flag>-->
 		<flag name="tests">Enable installation of some test programs which are otherwise not installed</flag>
 		<flag name="threads">With threads</flag>
 		<flag name="y12">With Y12 sparse math library</flag>


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

* [gentoo-commits] repo/proj/guru:dev commit in: sci-physics/mbdyn/
@ 2021-10-09  0:32 Alessandro Barbieri
  0 siblings, 0 replies; 4+ messages in thread
From: Alessandro Barbieri @ 2021-10-09  0:32 UTC (permalink / raw
  To: gentoo-commits

commit:     d79629997005ed583852340101f3d3c8cc2ed2c5
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Fri Oct  8 01:14:20 2021 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sat Oct  9 00:32:29 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d7962999

sci-physics/mbdyn: remove template modules

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 sci-physics/mbdyn/mbdyn-1.7.3_p20210925.ebuild | 2 --
 sci-physics/mbdyn/metadata.xml                 | 2 --
 2 files changed, 4 deletions(-)

diff --git a/sci-physics/mbdyn/mbdyn-1.7.3_p20210925.ebuild b/sci-physics/mbdyn/mbdyn-1.7.3_p20210925.ebuild
index aa0140169..f2375d665 100644
--- a/sci-physics/mbdyn/mbdyn-1.7.3_p20210925.ebuild
+++ b/sci-physics/mbdyn/mbdyn-1.7.3_p20210925.ebuild
@@ -79,8 +79,6 @@ IUSE_MBDYN_MODULE="
 	mbdyn-module-scalarfunc
 	mbdyn-module-switch_drive
 	mbdyn-module-tclpgin
-	mbdyn-module-template
-	mbdyn-module-template2
 	mbdyn-module-triangular_contact
 	mbdyn-module-udunits
 	mbdyn-module-uni_in_plane

diff --git a/sci-physics/mbdyn/metadata.xml b/sci-physics/mbdyn/metadata.xml
index d7c54cba3..8896f30ef 100644
--- a/sci-physics/mbdyn/metadata.xml
+++ b/sci-physics/mbdyn/metadata.xml
@@ -82,8 +82,6 @@
 		<flag name="mbdyn-module-scalarfunc">example of run-time loadable scalar function</flag>
 		<flag name="mbdyn-module-switch-drive">switch drive module</flag>
 		<flag name="mbdyn-module-tclpgin">tcl plugin</flag>
-		<flag name="mbdyn-module-template">template module; use it as guideline for user-defined elements</flag>
-		<flag name="mbdyn-module-template2">template module; use it as guideline for user-defined elements</flag>
 		<flag name="mbdyn-module-triangular-contact">This element implements unilateral contact with friction between an arbitrary rigid body, represented by a triangular mesh, and a set of nodes with arbitrary offsets</flag>
 		<flag name="mbdyn-module-udunits">This module adds a namespace "units" with the only function "convert", which is thus invoked as "units::convert"</flag>
 		<flag name="mbdyn-module-uni-in-plane">This element implements the unilateral contact between a point and a plane</flag>


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

* [gentoo-commits] repo/proj/guru:dev commit in: sci-physics/mbdyn/
@ 2022-05-28 15:15 Alessandro Barbieri
  0 siblings, 0 replies; 4+ messages in thread
From: Alessandro Barbieri @ 2022-05-28 15:15 UTC (permalink / raw
  To: gentoo-commits

commit:     05e2535d573d3d19197613a0e7cac6755b24e7f2
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sat May 28 14:52:01 2022 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sat May 28 14:52:01 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=05e2535d

sci-physics/mbdyn: enable py3.11

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 sci-physics/mbdyn/mbdyn-1.7.3_p20210925-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-physics/mbdyn/mbdyn-1.7.3_p20210925-r1.ebuild b/sci-physics/mbdyn/mbdyn-1.7.3_p20210925-r1.ebuild
index 73aa5c47f..d976ada12 100644
--- a/sci-physics/mbdyn/mbdyn-1.7.3_p20210925-r1.ebuild
+++ b/sci-physics/mbdyn/mbdyn-1.7.3_p20210925-r1.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 COMMIT="ae57618c4e7b030b59707b8c156a6e2a94a6efd0"
 MYP="${PN}-${COMMIT}"
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
 
 inherit autotools flag-o-matic fortran-2 pam python-single-r1
 


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

end of thread, other threads:[~2022-05-28 15:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-08  1:01 [gentoo-commits] repo/proj/guru:dev commit in: sci-physics/mbdyn/ Alessandro Barbieri
  -- strict thread matches above, loose matches on Subject: below --
2022-05-28 15:15 Alessandro Barbieri
2021-10-09  0:32 Alessandro Barbieri
2021-10-06 22:15 Alessandro Barbieri

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