From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1C373138359 for ; Sun, 27 Sep 2020 12:35:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 66EB6E0817; Sun, 27 Sep 2020 12:35:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D970AE0802 for ; Sun, 27 Sep 2020 12:35:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 82A56335CFE for ; Sun, 27 Sep 2020 12:35:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0D10C339 for ; Sun, 27 Sep 2020 12:35:15 +0000 (UTC) From: "Aisha Tammy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aisha Tammy" Message-ID: <1601210108.bc0ba938780971a6a4c367b2cfcbb847477711ad.epsilon-0@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-astronomy/zebra/ X-VCS-Repository: proj/sci X-VCS-Files: sci-astronomy/zebra/metadata.xml sci-astronomy/zebra/zebra-1.01.ebuild X-VCS-Directories: sci-astronomy/zebra/ X-VCS-Committer: epsilon-0 X-VCS-Committer-Name: Aisha Tammy X-VCS-Revision: bc0ba938780971a6a4c367b2cfcbb847477711ad X-VCS-Branch: master Date: Sun, 27 Sep 2020 12:35:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 56ab71f0-a74b-4c23-b9b4-b6490fdefd44 X-Archives-Hash: e5303dc7f5e867c30d04e99348b2bbca commit: bc0ba938780971a6a4c367b2cfcbb847477711ad Author: Aisha Tammy aisha cc> AuthorDate: Sun Sep 27 11:33:35 2020 +0000 Commit: Aisha Tammy aisha cc> CommitDate: Sun Sep 27 12:35:08 2020 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=bc0ba938 sci-astronomy/zebra: drop dead package Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Aisha Tammy aisha.cc> sci-astronomy/zebra/metadata.xml | 25 --------------------- sci-astronomy/zebra/zebra-1.01.ebuild | 42 ----------------------------------- 2 files changed, 67 deletions(-) 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 @@ - - - - - sci-astronomy@gentoo.org - Gentoo Astronomy Project - - -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. - - 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 -}