[gentoo-commits] proj/sci:master commit in: profiles/updates/

2022-11-15 Thread Andrew Ammerlaan
commit: c7e3da7347207bebbff82d9b74e8be738c85
Author: Bernd Waibel  posteo  net>
AuthorDate: Thu Nov  3 12:57:03 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Tue Nov 15 12:01:33 2022 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=c7e3da73

profiles/updates: move sci-mathematics/netgen -> media-gfx/netgen

Signed-off-by: Bernd Waibel  posteo.net>
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 profiles/updates/4Q-2022 | 1 +
 1 file changed, 1 insertion(+)

diff --git a/profiles/updates/4Q-2022 b/profiles/updates/4Q-2022
new file mode 100644
index 0..b80d5a910
--- /dev/null
+++ b/profiles/updates/4Q-2022
@@ -0,0 +1 @@
+move sci-mathematics/netgen media-gfx/netgen



[gentoo-commits] proj/sci:master commit in: profiles/updates/

2022-01-15 Thread Andrew Ammerlaan
commit: ed0fc83ddc6f9d5a7a7b432227f433a73debd0d3
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Sat Jan 15 11:13:52 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Sat Jan 15 11:13:52 2022 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=ed0fc83d

profiles/updates: fix pkg move

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 profiles/updates/1Q-2022 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/profiles/updates/1Q-2022 b/profiles/updates/1Q-2022
index e905430ca..8b44d82fa 100644
--- a/profiles/updates/1Q-2022
+++ b/profiles/updates/1Q-2022
@@ -1 +1 @@
-sci-biology/sra_sdk sci-biology/sra-tools
+move sci-biology/sra_sdk sci-biology/sra-tools



[gentoo-commits] proj/sci:master commit in: profiles/updates/

2021-05-24 Thread Andrew Ammerlaan
commit: bf34fe9901e8a3157c5d32011a444ae958aac32a
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Mon May 24 09:35:59 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Mon May 24 09:35:59 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=bf34fe99

profiles/updates/2Q-2021: do the move correctly

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 profiles/updates/2Q-2021 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/profiles/updates/2Q-2021 b/profiles/updates/2Q-2021
index 17dcce9eb..6b04562b8 100644
--- a/profiles/updates/2Q-2021
+++ b/profiles/updates/2Q-2021
@@ -1 +1 @@
-media-libs/libredwg media-gfx/libredwg
+move media-libs/libredwg media-gfx/libredwg



[gentoo-commits] proj/sci:master commit in: profiles/updates/, media-libs/libredwg/

2021-05-24 Thread Andrew Ammerlaan
commit: 0e575b038fd8bcec8bfb0f094b045a6015811c13
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Mon May 24 07:36:48 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Mon May 24 07:36:48 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=0e575b03

media-libs/libredwg: move to ::gentoo

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 media-libs/libredwg/libredwg-0.12.4.ebuild | 75 --
 media-libs/libredwg/metadata.xml   |  8 
 profiles/updates/2Q-2021   |  1 +
 3 files changed, 1 insertion(+), 83 deletions(-)

diff --git a/media-libs/libredwg/libredwg-0.12.4.ebuild 
b/media-libs/libredwg/libredwg-0.12.4.ebuild
deleted file mode 100644
index 459e83e54..0
--- a/media-libs/libredwg/libredwg-0.12.4.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-DOCS_BUILDER="doxygen"
-# File is hardcoded to be run from ../ so we use this instead of DOCS_DIR
-DOCS_CONFIG_NAME="doc/Doxyfile"
-
-inherit docs python-single-r1 perl-functions
-
-DESCRIPTION="C library to handle DWG files"
-HOMEPAGE="https://www.gnu.org/software/libredwg/;
-SRC_URI="https://github.com/LibreDWG/${PN}/releases/download/${PV}/${P}.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-IUSE="debug python perl static-libs"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
-   python? ( ${PYTHON_DEPS} )
-   perl? ( dev-lang/perl )
-   dev-libs/libpcre2
-   dev-libs/pslib
-"
-DEPEND="${RDEPEND}
-   python? ( dev-lang/swig )
-   perl? ( dev-lang/swig )
-"
-
-src_configure() {
-   perl_set_version
-   local myconf=(
-   --enable-write
-   --enable-dxf
-   --enable-json
-   --disable-gcov
-   $(usex debug "--disable-release" "--enable-release")
-   $(use_enable debug trace)
-   $(use_enable debug)
-   $(use_enable static-libs static)
-   $(use_enable python python "${EPYTHON}")
-   $(usex perl "--with-perl-install=vendor" 
"--with-perl-install=no")
-   )
-
-   if use python || use perl; then
-   myconf+=( --enable-bindings )
-   else
-   myconf+=( --disable-bindings )
-   fi
-
-   econf ${myconf[@]}
-
-   # Fix variable references itself error, fails in src_install otherwise.
-   # Can't put this in src_prepare and use eautoreconf because eautoreconf
-   # only works inside a git repository for this package.
-   sed -i -e 's/TEXINPUTS = 
"$(TEXINPUTS)$(PATH_SEPARATOR)$(TEXINFO_TEX_DIR)"/TEXINPUTS = 
"$(PATH_SEPARATOR)$(TEXINFO_TEX_DIR)"/g' doc/Makefile || die
-}
-
-src_compile() {
-   perl_set_version
-   emake
-   docs_compile
-}
-
-src_install() {
-   perl_set_version
-   default
-   use python && python_optimize
-   use perl && perl_domodule bindings/perl/LibreDWG.pm
-}

diff --git a/media-libs/libredwg/metadata.xml b/media-libs/libredwg/metadata.xml
deleted file mode 100644
index ae9640ffb..0
--- a/media-libs/libredwg/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   s...@gentoo.org
-   Gentoo Science Project
-   
-

diff --git a/profiles/updates/2Q-2021 b/profiles/updates/2Q-2021
new file mode 100644
index 0..17dcce9eb
--- /dev/null
+++ b/profiles/updates/2Q-2021
@@ -0,0 +1 @@
+media-libs/libredwg media-gfx/libredwg



[gentoo-commits] proj/sci:master commit in: profiles/updates/

2021-01-30 Thread Andrew Ammerlaan
commit: b36024a7aeaa5877590ef85cdf524025fcb17f89
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Sat Jan 30 14:30:15 2021 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Sat Jan 30 14:30:15 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=b36024a7

profiles/updates: move elmer sub packs into elmer-fem

Signed-off-by: Andrew Ammerlaan  riseup.net>

 profiles/updates/1Q-2021 | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/profiles/updates/1Q-2021 b/profiles/updates/1Q-2021
index f98f12ebf..562e445bc 100644
--- a/profiles/updates/1Q-2021
+++ b/profiles/updates/1Q-2021
@@ -1 +1,8 @@
 move virtual/blacs sci-libs/mkl
+move sci-libs/elmer-eio sci-misc/elmer-fem
+move sci-libs/elmer-hutiter sci-misc/elmer-fem
+move sci-misc/elmer-elmergrid sci-misc/elmer-fem
+move sci-misc/elmer-front sci-misc/elmer-fem
+move sci-misc/elmer-meshgend2d sci-misc/elmer-fem
+move sci-misc/elmer-post sci-misc/elmer-fem
+move sci-misc/elmer-meta sci-misc/elmer-fem



[gentoo-commits] proj/sci:master commit in: profiles/updates/

2021-01-05 Thread Andrew Ammerlaan
commit: 0b4f889313107f5540028a21b4de3ef67cb6a869
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Sun Jan  3 17:41:35 2021 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Tue Jan  5 18:10:18 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=0b4f8893

profiles/updates: move delted virtual to only dep

Closes: https://github.com/gentoo/sci/pull/1032
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>

 profiles/updates/1Q-2021 | 1 +
 1 file changed, 1 insertion(+)

diff --git a/profiles/updates/1Q-2021 b/profiles/updates/1Q-2021
new file mode 100644
index 0..f98f12ebf
--- /dev/null
+++ b/profiles/updates/1Q-2021
@@ -0,0 +1 @@
+move virtual/blacs sci-libs/mkl



[gentoo-commits] proj/sci:master commit in: profiles/updates/

2020-12-22 Thread Aisha Tammy
commit: 488aa2eaea12536407af75e0a8a59b77fc5d6c4f
Author: Aisha Tammy  aisha  cc>
AuthorDate: Mon Dec 21 16:15:37 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Mon Dec 21 16:15:37 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=488aa2ea

fix package move for 1Q-2011

Signed-off-by: Aisha Tammy  aisha.cc>

 profiles/updates/1Q-2011 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/profiles/updates/1Q-2011 b/profiles/updates/1Q-2011
index 85c91332b..fc246d419 100644
--- a/profiles/updates/1Q-2011
+++ b/profiles/updates/1Q-2011
@@ -1,6 +1,6 @@
 move www-apps/SwishE www-apps/py-swish-e
 move sys-cluster/os-mpi sys-cluster/native-mpi
 move sci-misc/freecad media-gfx/freecad
-move app-doc/votca-manual app-doc/votca-csg-manual 
+move app-doc/votca-manual app-doc/votca-csg-manual
 move sci-chemistry/inchi sci-libs/inchi
 move sci-chemistry/stdinchi sci-libs/inchi



[gentoo-commits] proj/sci:master commit in: profiles/updates/

2015-12-18 Thread Justin Lecher
commit: f890af12b3e67c606fa1fd9b9a4c9ecb5a99aad2
Author: Horea Christian  mail  ru>
AuthorDate: Thu Dec 17 11:22:36 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Thu Dec 17 11:22:36 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=f890af12

added move notice

 profiles/updates/4Q-2015 | 1 +
 1 file changed, 1 insertion(+)

diff --git a/profiles/updates/4Q-2015 b/profiles/updates/4Q-2015
new file mode 100644
index 000..49814b7
--- /dev/null
+++ b/profiles/updates/4Q-2015
@@ -0,0 +1 @@
+move dev-python/nilearn sci-biology/nilearn



[gentoo-commits] proj/sci:master commit in: profiles/updates/

2015-12-18 Thread Justin Lecher
commit: 4bd21205382cd97453bb2852d9290b58024fa621
Author: Horea Christian  mail  ru>
AuthorDate: Thu Dec 17 11:22:36 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Fri Dec 18 17:27:16 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=4bd21205

added move notice

 profiles/updates/4Q-2015 | 1 +
 1 file changed, 1 insertion(+)

diff --git a/profiles/updates/4Q-2015 b/profiles/updates/4Q-2015
new file mode 100644
index 000..49814b7
--- /dev/null
+++ b/profiles/updates/4Q-2015
@@ -0,0 +1 @@
+move dev-python/nilearn sci-biology/nilearn



[gentoo-commits] proj/sci:master commit in: profiles/updates/

2014-12-26 Thread Justin Lecher
commit: cab6f13c157f64916c30d1db410ea859da0b5a69
Author: mikko_laine mikko.laine AT gmail DOT com
AuthorDate: Thu Dec 25 14:49:55 2014 +
Commit: Justin Lecher jlec AT gentoo DOT org
CommitDate: Thu Dec 25 14:49:55 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=cab6f13c

Syncing fork

---
 profiles/updates/2Q-2014 | 1 +
 1 file changed, 1 insertion(+)

diff --git a/profiles/updates/2Q-2014 b/profiles/updates/2Q-2014
index 88463d7..5c275eb 100644
--- a/profiles/updates/2Q-2014
+++ b/profiles/updates/2Q-2014
@@ -1 +1,2 @@
 move sci-physics/LoopTools sci-physics/looptools
+move sci-astronomy/pyAstroStack sci-astronomy/mosstack



[gentoo-commits] proj/sci:master commit in: profiles/updates/

2014-12-15 Thread Justin Lecher
commit: 0e4f9ee960bd6afc9fb10e1fd7c92d6194672782
Author: Mikko Laine mikko.laine AT gmail DOT com
AuthorDate: Sun Dec 14 11:29:23 2014 +
Commit: Justin Lecher jlec AT gentoo DOT org
CommitDate: Sun Dec 14 11:29:23 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=0e4f9ee9

Update 2Q-2014

---
 profiles/updates/2Q-2014 | 1 +
 1 file changed, 1 insertion(+)

diff --git a/profiles/updates/2Q-2014 b/profiles/updates/2Q-2014
index 88463d7..5c275eb 100644
--- a/profiles/updates/2Q-2014
+++ b/profiles/updates/2Q-2014
@@ -1 +1,2 @@
 move sci-physics/LoopTools sci-physics/looptools
+move sci-astronomy/pyAstroStack sci-astronomy/mosstack