summaryrefslogtreecommitdiff
path: root/sci-libs/o2scl
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-07-13 12:26:41 +0100
committerV3n3RiX <venerix@koprulu.sector>2024-07-13 12:26:41 +0100
commit482a48c0e1675b1e92663b8b5222bb7261aa7956 (patch)
treeb81e02db1810214fc690a762e3a9c687d0f0c5ab /sci-libs/o2scl
parent37bccfe5e76c5740c4ef5ba1179e9488d8404075 (diff)
gentoo auto-resync : 13:07:2024 - 12:26:41
Diffstat (limited to 'sci-libs/o2scl')
-rw-r--r--sci-libs/o2scl/Manifest3
-rw-r--r--sci-libs/o2scl/metadata.xml22
-rw-r--r--sci-libs/o2scl/o2scl-0.920.ebuild72
3 files changed, 0 insertions, 97 deletions
diff --git a/sci-libs/o2scl/Manifest b/sci-libs/o2scl/Manifest
deleted file mode 100644
index a997fc3a1e49..000000000000
--- a/sci-libs/o2scl/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST o2scl-0.920.tar.gz 34498666 BLAKE2B de269d1d6d329786d34dcbf84b6cb89d5bfae709ff1e0116455dbf8cee9e66d45b2a66086ca467037c572a8495ad198a23836861914c681050471810dda00354 SHA512 a80c959b76d15473e206f1caac496607af254f0617f7a18d13bd9732861b6c51f5db8ca3ff6866bb8d0ea70865d4ac94cb972e0a0c158f19034667340341467c
-EBUILD o2scl-0.920.ebuild 1723 BLAKE2B fc99b6db606efff8a4666048a3cd2f793341c23309113f1cfed407156defb5bd92e5bb8284309614899607de5ded09282ca3202929f8b547cb720c23212f2979 SHA512 c0978da228f15a5953d19a54a3972cf121ab74ca41cd03a43745a0522b6fb0e3127c22695bbfc6c891504bc55bcc10d544075dd04601fa0115b1a36162248231
-MISC metadata.xml 917 BLAKE2B 853243ea026afa409c8be80040f9a97e6b74f5126168f8df4e83367ace9a26ff444324461097d040b187f4f8b22cbf52fd9c9993833b39e13d16b5926f57f490 SHA512 8198e119295aca7034964f2d239dddfb0711240ca2658656eb9ba90bc363a31f7e02eb239130bf54eaa670fa81feb20072b7e11acb69e3d3189561318f506e66
diff --git a/sci-libs/o2scl/metadata.xml b/sci-libs/o2scl/metadata.xml
deleted file mode 100644
index bfbde3f72f12..000000000000
--- a/sci-libs/o2scl/metadata.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>sci@gentoo.org</email>
- <name>Gentoo Science Project</name>
- </maintainer>
- <longdescription lang="en">
- O2scl is a C++ class library for object-oriented numerical
- programming. It includes classes based on numerical routines from
- GSL and CERNLIB and two sub-libraries: thermodynamics of ideal and
- nearly-ideal particles with quantum statistics and e quations of
- state for finite density relevant for neutron stars.
- </longdescription>
- <use>
- <flag name="armadillo">Build matrix manipulation with <pkg>sci-libs/armadillo</pkg></flag>
- <flag name="eigen">Build matrix manipulation with <pkg>dev-cpp/eigen</pkg></flag>
- </use>
- <upstream>
- <remote-id type="github">awsteiner/o2scl</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/sci-libs/o2scl/o2scl-0.920.ebuild b/sci-libs/o2scl/o2scl-0.920.ebuild
deleted file mode 100644
index b82c2a9bcc19..000000000000
--- a/sci-libs/o2scl/o2scl-0.920.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit flag-o-matic toolchain-funcs
-
-DESCRIPTION="Object-oriented Scientific Computing Library"
-HOMEPAGE="https://web.utk.edu/~asteine1/o2scl/"
-SRC_URI="https://github.com/awsteiner/${PN}/releases/download/v${PV}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="armadillo debug doc examples eigen fftw gsl hdf5 openmp readline static-libs"
-
-RDEPEND="
- dev-libs/boost:=
- >=sci-libs/gsl-2:0=
- virtual/cblas:=
- eigen? ( dev-cpp/eigen:3 )
- armadillo? ( sci-libs/armadillo[lapack] )
- fftw? ( sci-libs/fftw:3.0= )
- hdf5? ( sci-libs/hdf5:0= )
- readline? ( sys-libs/readline:0= )
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-pkg_pretend() {
- [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
-}
-
-pkg_setup() {
- if [[ ${MERGE_TYPE} != binary ]] && use openmp && ! tc-check-openmp; then
- ewarn "OpenMP is not available in your current selected compiler"
- die "need openmp capable compiler"
- fi
-}
-
-src_configure() {
- use debug || append-cppflags -DO2SCL_NO_RANGE_CHECK
- econf \
- --enable-acol \
- $(use_enable armadillo) \
- $(use_enable eigen) \
- $(use_enable fftw) \
- $(use_enable gsl gsl2) \
- $(use_enable hdf5 hdf) \
- $(use_enable hdf5 partlib) \
- $(use_enable hdf5 eoslib) \
- $(use_enable openmp) \
- $(use_enable static-libs static)
-}
-
-src_install() {
- default
-
- if ! use static-libs; then
- find "${ED}" -name '*.la' -delete || die
- fi
-
- rm -r "${ED}"/usr/doc || die
- if use doc; then
- dodoc -r doc/o2scl/html
- docompress -x /usr/share/doc/${PF}/html
- fi
- if use examples; then
- dodoc -r examples
- docompress -x /usr/share/doc/${PF}/examples
- fi
-}