Gentoo Archives: gentoo-commits

From: Aisha Tammy <gentoo@×××××.cc>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-astronomy/zebra/
Date: Sun, 27 Sep 2020 12:35:20
Message-Id: 1601210108.bc0ba938780971a6a4c367b2cfcbb847477711ad.epsilon-0@gentoo
1 commit: bc0ba938780971a6a4c367b2cfcbb847477711ad
2 Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
3 AuthorDate: Sun Sep 27 11:33:35 2020 +0000
4 Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
5 CommitDate: Sun Sep 27 12:35:08 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=bc0ba938
7
8 sci-astronomy/zebra: drop dead package
9
10 Package-Manager: Portage-3.0.8, Repoman-3.0.1
11 Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
12
13 sci-astronomy/zebra/metadata.xml | 25 ---------------------
14 sci-astronomy/zebra/zebra-1.01.ebuild | 42 -----------------------------------
15 2 files changed, 67 deletions(-)
16
17 diff --git a/sci-astronomy/zebra/metadata.xml b/sci-astronomy/zebra/metadata.xml
18 deleted file mode 100644
19 index b9760ac17..000000000
20 --- a/sci-astronomy/zebra/metadata.xml
21 +++ /dev/null
22 @@ -1,25 +0,0 @@
23 -<?xml version="1.0" encoding="UTF-8"?>
24 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
25 -<pkgmetadata>
26 - <maintainer type="project">
27 - <email>sci-astronomy@g.o</email>
28 - <name>Gentoo Astronomy Project</name>
29 - </maintainer>
30 - <longdescription lang="en">
31 -The Zurich Extragalactic Bayesian Redshift Analyzer is a software to
32 -compute and analyze photometric redshifts of galaxies.
33 -ZEBRA combines and extends several of the classical approaches to
34 -produce accurate photometric redshifts down to faint magnitudes. In
35 -particular, ZEBRA uses the template-fitting approach to produce
36 -Maximum Likelihood and Bayesian redshift estimates based on:
37 -* An automatic iterative technique to correct the original set of
38 -galaxy templates to best represent the SEDs of real galaxies at
39 -different redshifts;
40 -* A training set of spectroscopic redshifts for a small fraction of
41 -the photometric sample, to improve the robustness of the
42 -photometric redshift estimates; and
43 -* An iterative technique for Bayesian redshift estimates, which
44 -extracts the full two-dimensional redshift and template likelihood
45 -function for each galaxy.
46 -</longdescription>
47 -</pkgmetadata>
48
49 diff --git a/sci-astronomy/zebra/zebra-1.01.ebuild b/sci-astronomy/zebra/zebra-1.01.ebuild
50 deleted file mode 100644
51 index b8949e212..000000000
52 --- a/sci-astronomy/zebra/zebra-1.01.ebuild
53 +++ /dev/null
54 @@ -1,42 +0,0 @@
55 -# Copyright 1999-2014 Gentoo Foundation
56 -# Distributed under the terms of the GNU General Public License v2
57 -
58 -EAPI=5
59 -
60 -inherit autotools-utils toolchain-funcs
61 -
62 -DESCRIPTION="Galaxy redhift Bayesian analyzer"
63 -HOMEPAGE="http://www.astro.phys.ethz.ch/exgal_ocosm/zebra/index.html"
64 -SRC_URI="http://www.astro.phys.ethz.ch/exgal_ocosm/zebra/tar/${P}.tar.gz"
65 -
66 -LICENSE="GPL-3"
67 -SLOT="0"
68 -KEYWORDS="~amd64 ~x86"
69 -IUSE="doc examples"
70 -
71 -RDEPEND="
72 - sci-libs/gsl
73 - sci-libs/lapackpp
74 - virtual/blas
75 - virtual/cblas
76 - virtual/lapack"
77 -DEPEND="${RDEPEND}
78 - virtual/pkgconfig"
79 -
80 -src_configure() {
81 - myeconfargs+=(
82 - --with-blas="$($(tc-getPKG_CONFIG) --libs blas)"
83 - --with-cblas="$($(tc-getPKG_CONFIG) --libs cblas)"
84 - --with-lapack="$($(tc-getPKG_CONFIG) --libs lapack)"
85 - )
86 - autotools-utils_src_configure
87 -}
88 -
89 -src_install() {
90 - autotools-utils_src_install
91 - use doc && dodoc doc/*.pdf
92 - if use examples; then
93 - insinto /usr/share/doc/${PF}
94 - doins -r scripts examples
95 - fi
96 -}