aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAisha Tammy <gentoo@aisha.cc>2020-09-27 11:33:35 +0000
committerAisha Tammy <gentoo@aisha.cc>2020-09-27 12:35:08 +0000
commitbc0ba938780971a6a4c367b2cfcbb847477711ad (patch)
treeb78ffce1b5577d58dc25dd1105582d9073e05d9a /sci-astronomy
parentsci-biology/fgap-bin: removed discontinued package (diff)
downloadsci-bc0ba938780971a6a4c367b2cfcbb847477711ad.tar.gz
sci-bc0ba938780971a6a4c367b2cfcbb847477711ad.tar.bz2
sci-bc0ba938780971a6a4c367b2cfcbb847477711ad.zip
sci-astronomy/zebra: drop dead package
Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Aisha Tammy <gentoo@aisha.cc>
Diffstat (limited to 'sci-astronomy')
-rw-r--r--sci-astronomy/zebra/Manifest1
-rw-r--r--sci-astronomy/zebra/metadata.xml25
-rw-r--r--sci-astronomy/zebra/zebra-1.01.ebuild42
3 files changed, 0 insertions, 68 deletions
diff --git a/sci-astronomy/zebra/Manifest b/sci-astronomy/zebra/Manifest
deleted file mode 100644
index 50c07d577..000000000
--- a/sci-astronomy/zebra/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST zebra-1.01.tar.gz 1574479 BLAKE2B 54b52f25312a9bf5c24cc7ba9dacb66a1fb0e7d931e4926788c80757cf7e4e114fc4b7c47498906e6ba32838be3236d894ffeddddf885c3d9d53f0c6eb258cec SHA512 68372227d095b84301099f5fbc541778642de6dcbdb2d76f33215263752ef452145fb061132a940c14fb488617f7b95ddc6aea298063cba44e0c17bd4d626f80
diff --git a/sci-astronomy/zebra/metadata.xml b/sci-astronomy/zebra/metadata.xml
deleted file mode 100644
index b9760ac17..000000000
--- a/sci-astronomy/zebra/metadata.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>sci-astronomy@gentoo.org</email>
- <name>Gentoo Astronomy Project</name>
- </maintainer>
- <longdescription lang="en">
-The Zurich Extragalactic Bayesian Redshift Analyzer is a software to
-compute and analyze photometric redshifts of galaxies.
-ZEBRA combines and extends several of the classical approaches to
-produce accurate photometric redshifts down to faint magnitudes. In
-particular, ZEBRA uses the template-fitting approach to produce
-Maximum Likelihood and Bayesian redshift estimates based on:
-* An automatic iterative technique to correct the original set of
-galaxy templates to best represent the SEDs of real galaxies at
-different redshifts;
-* A training set of spectroscopic redshifts for a small fraction of
-the photometric sample, to improve the robustness of the
-photometric redshift estimates; and
-* An iterative technique for Bayesian redshift estimates, which
-extracts the full two-dimensional redshift and template likelihood
-function for each galaxy.
-</longdescription>
-</pkgmetadata>
diff --git a/sci-astronomy/zebra/zebra-1.01.ebuild b/sci-astronomy/zebra/zebra-1.01.ebuild
deleted file mode 100644
index b8949e212..000000000
--- a/sci-astronomy/zebra/zebra-1.01.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools-utils toolchain-funcs
-
-DESCRIPTION="Galaxy redhift Bayesian analyzer"
-HOMEPAGE="http://www.astro.phys.ethz.ch/exgal_ocosm/zebra/index.html"
-SRC_URI="http://www.astro.phys.ethz.ch/exgal_ocosm/zebra/tar/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc examples"
-
-RDEPEND="
- sci-libs/gsl
- sci-libs/lapackpp
- virtual/blas
- virtual/cblas
- virtual/lapack"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-src_configure() {
- myeconfargs+=(
- --with-blas="$($(tc-getPKG_CONFIG) --libs blas)"
- --with-cblas="$($(tc-getPKG_CONFIG) --libs cblas)"
- --with-lapack="$($(tc-getPKG_CONFIG) --libs lapack)"
- )
- autotools-utils_src_configure
-}
-
-src_install() {
- autotools-utils_src_install
- use doc && dodoc doc/*.pdf
- if use examples; then
- insinto /usr/share/doc/${PF}
- doins -r scripts examples
- fi
-}