public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: sci-astronomy/zebra/
@ 2012-05-17 23:20 Sebastien Fabbro
  0 siblings, 0 replies; 3+ messages in thread
From: Sebastien Fabbro @ 2012-05-17 23:20 UTC (permalink / raw
  To: gentoo-commits

commit:     d419e8bce2437211842deccfba7b54c389765046
Author:     Sébastien Fabbro <sebfabbro <AT> gmail <DOT> com>
AuthorDate: Thu May 17 23:19:48 2012 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Thu May 17 23:19:48 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=d419e8bc

sci-astronomy/zebra: Initial import

(Portage version: 2.1.10.60/git/Linux x86_64, unsigned Manifest commit)

---
 sci-astronomy/zebra/ChangeLog         |   10 +++++++
 sci-astronomy/zebra/metadata.xml      |   22 +++++++++++++++++
 sci-astronomy/zebra/zebra-1.01.ebuild |   43 +++++++++++++++++++++++++++++++++
 3 files changed, 75 insertions(+), 0 deletions(-)

diff --git a/sci-astronomy/zebra/ChangeLog b/sci-astronomy/zebra/ChangeLog
new file mode 100644
index 0000000..72dc7db
--- /dev/null
+++ b/sci-astronomy/zebra/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for sci-astronomy/zebra
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*zebra-1.01 (17 May 2012)
+
+  17 May 2012; Sébastien Fabbro <bicatali@gentoo.org> +metadata.xml,
+  +zebra-1.01.ebuild:
+  sci-astronomy/zebra: Initial import
+

diff --git a/sci-astronomy/zebra/metadata.xml b/sci-astronomy/zebra/metadata.xml
new file mode 100644
index 0000000..b8ef7bb
--- /dev/null
+++ b/sci-astronomy/zebra/metadata.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>sci-astronomy</herd>
+<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
new file mode 100644
index 0000000..7463821
--- /dev/null
+++ b/sci-astronomy/zebra/zebra-1.01.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+inherit autotools-utils
+
+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="$(pkg-config --libs blas)"
+		--with-cblas="$(pkg-config --libs cblas)"
+		--with-lapack="$(pkg-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
+}



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-astronomy/zebra/
@ 2013-02-22 10:15 Justin Lecher
  0 siblings, 0 replies; 3+ messages in thread
From: Justin Lecher @ 2013-02-22 10:15 UTC (permalink / raw
  To: gentoo-commits

commit:     c232e0bdae9e7d17e3697d927f2af1b9f1721ff2
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 22 10:14:27 2013 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Feb 22 10:14:27 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=c232e0bd

sci-astronomy/zebra: Use tc-getPKG_CONFIG from toolchain-funcs.eclass instead of plain pkg-config

Package-Manager: portage-2.2.0_alpha163

---
 sci-astronomy/zebra/ChangeLog         |    5 ++++-
 sci-astronomy/zebra/metadata.xml      |    4 ++--
 sci-astronomy/zebra/zebra-1.01.ebuild |   16 ++++++++--------
 3 files changed, 14 insertions(+), 11 deletions(-)

diff --git a/sci-astronomy/zebra/ChangeLog b/sci-astronomy/zebra/ChangeLog
index 72dc7db..d4e0f1a 100644
--- a/sci-astronomy/zebra/ChangeLog
+++ b/sci-astronomy/zebra/ChangeLog
@@ -1,7 +1,10 @@
 # ChangeLog for sci-astronomy/zebra
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  22 Feb 2013; Justin Lecher <jlec@gentoo.org> zebra-1.01.ebuild, metadata.xml:
+  Use tc-getPKG_CONFIG from toolchain-funcs.eclass instead of plain pkg-config
+
 *zebra-1.01 (17 May 2012)
 
   17 May 2012; Sébastien Fabbro <bicatali@gentoo.org> +metadata.xml,

diff --git a/sci-astronomy/zebra/metadata.xml b/sci-astronomy/zebra/metadata.xml
index b8ef7bb..1edf84d 100644
--- a/sci-astronomy/zebra/metadata.xml
+++ b/sci-astronomy/zebra/metadata.xml
@@ -1,8 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<herd>sci-astronomy</herd>
-<longdescription lang="en">
+  <herd>sci-astronomy</herd>
+  <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

diff --git a/sci-astronomy/zebra/zebra-1.01.ebuild b/sci-astronomy/zebra/zebra-1.01.ebuild
index 7463821..d4f2e76 100644
--- a/sci-astronomy/zebra/zebra-1.01.ebuild
+++ b/sci-astronomy/zebra/zebra-1.01.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
-EAPI=4
+EAPI=5
 
-inherit autotools-utils
+inherit autotools-utils toolchain-funcs
 
 DESCRIPTION="Galaxy redhift Bayesian analyzer"
 HOMEPAGE="http://www.astro.phys.ethz.ch/exgal_ocosm/zebra/index.html"
@@ -15,20 +15,20 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="doc examples"
 
-RDEPEND="sci-libs/gsl
+RDEPEND="
+	sci-libs/gsl
 	sci-libs/lapackpp
 	virtual/blas
 	virtual/cblas
 	virtual/lapack"
-
 DEPEND="${RDEPEND}
 	virtual/pkgconfig"
 
 src_configure() {
 	myeconfargs+=(
-		--with-blas="$(pkg-config --libs blas)"
-		--with-cblas="$(pkg-config --libs cblas)"
-		--with-lapack="$(pkg-config --libs lapack)"
+		--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
 }


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-astronomy/zebra/
@ 2020-09-27 12:35 Aisha Tammy
  0 siblings, 0 replies; 3+ messages in thread
From: Aisha Tammy @ 2020-09-27 12:35 UTC (permalink / raw
  To: gentoo-commits

commit:     bc0ba938780971a6a4c367b2cfcbb847477711ad
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Sun Sep 27 11:33:35 2020 +0000
Commit:     Aisha Tammy <gentoo <AT> aisha <DOT> 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 <gentoo <AT> 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 @@
-<?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
-}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-09-27 12:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-17 23:20 [gentoo-commits] proj/sci:master commit in: sci-astronomy/zebra/ Sebastien Fabbro
  -- strict thread matches above, loose matches on Subject: below --
2013-02-22 10:15 Justin Lecher
2020-09-27 12:35 Aisha Tammy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox