commit:     85accf3105facb51086d99c9cf0500c3568362b8
Author:     Alexander Puck Neuwirth <alexander <AT> neuwirth-informatik <DOT> 
de>
AuthorDate: Tue Oct 25 21:11:47 2022 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Wed Nov  2 11:30:11 2022 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=85accf31

sci-physics/oneloop: new package, add 2020.07.31

Signed-off-by: Alexander Puck Neuwirth <alexander <AT> neuwirth-informatik.de>
Closes: https://github.com/gentoo/sci/pull/1176
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 .../oneloop/files/oneloop-2020.07.31-config.patch  | 11 +++++
 sci-physics/oneloop/metadata.xml                   | 12 ++++++
 sci-physics/oneloop/oneloop-2020.07.31.ebuild      | 49 ++++++++++++++++++++++
 3 files changed, 72 insertions(+)

diff --git a/sci-physics/oneloop/files/oneloop-2020.07.31-config.patch 
b/sci-physics/oneloop/files/oneloop-2020.07.31-config.patch
new file mode 100644
index 000000000..4af47e066
--- /dev/null
+++ b/sci-physics/oneloop/files/oneloop-2020.07.31-config.patch
@@ -0,0 +1,11 @@
+--- a/Config   2022-05-19 17:34:51.000000000 +0200
++++ b/Config   2022-05-19 17:34:51.000000000 +0200
+@@ -3,7 +3,7 @@
+ #FFLAGS = -Wall
+ 
+ DPKIND = kind(1d0)
+-QPKIND = kind(1q0)
++#QPKIND = kind(1q0)
+ #DPKIND = selected_real_kind(15)
+ #QPKIND = 16
+ #DDTYPE = ddfun90

diff --git a/sci-physics/oneloop/metadata.xml b/sci-physics/oneloop/metadata.xml
new file mode 100644
index 000000000..bdee6992b
--- /dev/null
+++ b/sci-physics/oneloop/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
+<pkgmetadata>
+       <maintainer type="person">
+               <email>[email protected]</email>
+               <name>Alexander Puck Neuwirth</name>
+       </maintainer>
+       <maintainer type="project">
+               <email>[email protected]</email>
+               <name>Gentoo Physics Project</name>
+       </maintainer>
+</pkgmetadata>

diff --git a/sci-physics/oneloop/oneloop-2020.07.31.ebuild 
b/sci-physics/oneloop/oneloop-2020.07.31.ebuild
new file mode 100644
index 000000000..49b30f07e
--- /dev/null
+++ b/sci-physics/oneloop/oneloop-2020.07.31.ebuild
@@ -0,0 +1,49 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# python only needed for create.py to get binaries
+PYTHON_COMPAT=( python3_{8..11} )
+inherit toolchain-funcs python-any-r1
+
+DESCRIPTION="Library of one-loop scalar functions"
+HOMEPAGE="https://bitbucket.org/hameren/oneloop";
+SRC_URI="https://bitbucket.org/hameren/oneloop/get/3762b8bad6ad.zip -> 
${P}.zip"
+S="${WORKDIR}/hameren-oneloop-3762b8bad6ad"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+BDEPEND="
+       ${PYTHON_DEPS}
+       app-arch/unzip
+       virtual/fortran
+"
+
+PATCHES=(
+       "${FILESDIR}"/${P}-config.patch
+)
+
+src_configure() {
+       tc-export FC
+       sed -i "/FC = /s/gfortran/${FC}/g" Config || die
+       sed -i "/FFLAGS = /s/ -O/${FFLAGS} -fPIC/g" Config || die
+}
+
+src_compile() {
+       tc-export FC
+       emake -f make_cuttools
+       ${EPYTHON} ./create.py || die "Failed to compile"
+       #./create.py dynamic || die
+       ${FC} ${LDFLAGS} -Wl,-soname,libavh_olo.so -shared -o libavh_olo.so 
avh_olo.o || die "Failed to link"
+}
+
+src_install() {
+       dolib.a libavh_olo.a
+       dolib.so libavh_olo.so
+       doheader avh_olo.mod
+}

Reply via email to