public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: dev-python/asciidata/
@ 2011-08-04 21:00 Sebastien Fabbro
  0 siblings, 0 replies; 3+ messages in thread
From: Sebastien Fabbro @ 2011-08-04 21:00 UTC (permalink / raw
  To: gentoo-commits

commit:     79e70d28e05b97884def0b8728d48bb4afbe7a63
Author:     Sébastien Fabbro <sebfabbro <AT> gmail <DOT> com>
AuthorDate: Thu Aug  4 20:57:31 2011 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Thu Aug  4 20:57:31 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=79e70d28

[dev-python/asciidata] switch herd

---
 dev-python/asciidata/ChangeLog    |    5 ++++-
 dev-python/asciidata/metadata.xml |    2 +-
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/dev-python/asciidata/ChangeLog b/dev-python/asciidata/ChangeLog
index 1320ff2..69d7889 100644
--- a/dev-python/asciidata/ChangeLog
+++ b/dev-python/asciidata/ChangeLog
@@ -1,7 +1,10 @@
 # ChangeLog for dev-python/asciidata
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  04 Aug 2011; Sébastien Fabbro <bicatali@gentoo.org> metadata.xml:
+  Switched herd to sci-astronomy
+
 *asciidata-1.1.1-r1 (25 Jun 2010)
 
   25 Jun 2010; Justin Lecher <jlec@gentoo.org> -asciidata-1.1.1.ebuild,

diff --git a/dev-python/asciidata/metadata.xml b/dev-python/asciidata/metadata.xml
index 4f6d8e1..804a751 100644
--- a/dev-python/asciidata/metadata.xml
+++ b/dev-python/asciidata/metadata.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<herd>sci</herd>
+<herd>sci-astronomy</herd>
 <longdescription lang="en">
   AsciiData is a Python module to handle ASCII tables. With this
   module it is possible to:



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

* [gentoo-commits] proj/sci:master commit in: dev-python/asciidata/
@ 2012-05-13 14:00 Kacper Kowalik
  0 siblings, 0 replies; 3+ messages in thread
From: Kacper Kowalik @ 2012-05-13 14:00 UTC (permalink / raw
  To: gentoo-commits

commit:     f80e8bbabe4914176adad930c6096e22bcd06565
Author:     Kacper Kowalik (Xarthisius) <xarthisius <AT> gentoo <DOT> org>
AuthorDate: Sun May 13 13:59:34 2012 +0000
Commit:     Kacper Kowalik <xarthisius <AT> gentoo <DOT> org>
CommitDate: Sun May 13 13:59:34 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=f80e8bba

[dev-python/asciidata] Reorder vars to comply with ebuild.skel, drop redundant PYTHON_DEPEND (already done via distutils.eclass) and src_test, add pyfits to RDEPEND, numpy is RDEPEND only, build docs instead of downloading them, bump to EAPI4

---
 dev-python/asciidata/asciidata-1.1.1-r1.ebuild |   31 +++++++++++++----------
 1 files changed, 17 insertions(+), 14 deletions(-)

diff --git a/dev-python/asciidata/asciidata-1.1.1-r1.ebuild b/dev-python/asciidata/asciidata-1.1.1-r1.ebuild
index c01bdc6..8c096fd 100644
--- a/dev-python/asciidata/asciidata-1.1.1-r1.ebuild
+++ b/dev-python/asciidata/asciidata-1.1.1-r1.ebuild
@@ -2,37 +2,40 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
-EAPI="3"
+EAPI=4
 
-PYTHON_DEPEND="2"
 SUPPORT_PYTHON_ABIS="1"
+DISTUTILS_SRC_TEST=setup.py
+RESTRICT_PYTHON_ABIS="3.* 2.7-pypy-*"
 
 inherit distutils
 
-DISTUTILS_SRC_TEST="setup.py"
-
 DESCRIPTION="Python module to handle ASCII tables"
-SRC_URI="http://www.stecf.org/software/PYTHONtools/astro${PN}/source/${P}.tar.gz
-	doc? ( http://www.stecf.org/software/PYTHONtools/astro${PN}/manual/${PN}_${PV}.tar.gz )"
 HOMEPAGE="http://www.stecf.org/software/astroasciidata/index.html"
+SRC_URI="http://www.stecf.org/software/PYTHONtools/astro${PN}/source/${P}.tar.gz"
 
-IUSE="doc"
+IUSE="doc test"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 LICENSE="GPL-2"
 
-RDEPEND="dev-python/numpy"
-DEPEND="${RDEPEND}"
-
-RESTRICT_PYTHON_ABIS="3.*"
+RDEPEND="dev-python/numpy
+	dev-python/pyfits"
+DEPEND="doc? ( dev-tex/latex2html )
+	test? ( ${RDEPEND} )"
 
-src_test() {
-	distutils_src_test
+src_compile() {
+	distutils_src_compile
+	if use doc; then
+		pushd doc &> /dev/null
+		latex2html ${PN}.tex
+		popd &> /dev/null
+	fi
 }
 
 src_install() {
 	distutils_src_install
 	if use doc; then
-		dohtml "${WORKDIR}"/asciidata/* || die
+		dohtml -r doc/${PN}/
 	fi
 }



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

* [gentoo-commits] proj/sci:master commit in: dev-python/asciidata/
@ 2013-04-29 16:32 Sebastien Fabbro
  0 siblings, 0 replies; 3+ messages in thread
From: Sebastien Fabbro @ 2013-04-29 16:32 UTC (permalink / raw
  To: gentoo-commits

commit:     c94e868a2a570dfedea658b37638590227c31305
Author:     Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 24 23:05:34 2013 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Wed Apr 24 23:05:34 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=c94e868a

removed asciidata, replaced by astropy and asciitable

---
 dev-python/asciidata/ChangeLog                 |   28 ----------------
 dev-python/asciidata/asciidata-1.1.1-r1.ebuild |   41 ------------------------
 dev-python/asciidata/metadata.xml              |   13 -------
 3 files changed, 0 insertions(+), 82 deletions(-)

diff --git a/dev-python/asciidata/ChangeLog b/dev-python/asciidata/ChangeLog
deleted file mode 100644
index 69d7889..0000000
--- a/dev-python/asciidata/ChangeLog
+++ /dev/null
@@ -1,28 +0,0 @@
-# ChangeLog for dev-python/asciidata
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: $
-
-  04 Aug 2011; Sébastien Fabbro <bicatali@gentoo.org> metadata.xml:
-  Switched herd to sci-astronomy
-
-*asciidata-1.1.1-r1 (25 Jun 2010)
-
-  25 Jun 2010; Justin Lecher <jlec@gentoo.org> -asciidata-1.1.1.ebuild,
-  +asciidata-1.1.1-r1.ebuild:
-  Fix PYTHON ABI Stuff
-
-*asciidata-1.1.1 (26 Jun 2009)
-
-  26 Jun 2009; Sébastien Fabbro <bicatali@gentoo.org>
-  -asciidata-1.1.ebuild, +asciidata-1.1.1.ebuild:
-  Version bump
-
-  23 May 2008; Sébastien Fabbro <bicatali@gentoo.org>
-  -asciidata-1.0.ebuild, +asciidata-1.1.ebuild:
-  Version bump, now depend on numpy
-
-*asciidata-1.0 (15 Oct 2006)
-
-  15 Oct 2006; Sebastien Fabbro <seb@ist.utl.pt>
-  +asciidata-1.0.ebuild, +metadata.xml
-  Initial import.

diff --git a/dev-python/asciidata/asciidata-1.1.1-r1.ebuild b/dev-python/asciidata/asciidata-1.1.1-r1.ebuild
deleted file mode 100644
index 8c096fd..0000000
--- a/dev-python/asciidata/asciidata-1.1.1-r1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=4
-
-SUPPORT_PYTHON_ABIS="1"
-DISTUTILS_SRC_TEST=setup.py
-RESTRICT_PYTHON_ABIS="3.* 2.7-pypy-*"
-
-inherit distutils
-
-DESCRIPTION="Python module to handle ASCII tables"
-HOMEPAGE="http://www.stecf.org/software/astroasciidata/index.html"
-SRC_URI="http://www.stecf.org/software/PYTHONtools/astro${PN}/source/${P}.tar.gz"
-
-IUSE="doc test"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-LICENSE="GPL-2"
-
-RDEPEND="dev-python/numpy
-	dev-python/pyfits"
-DEPEND="doc? ( dev-tex/latex2html )
-	test? ( ${RDEPEND} )"
-
-src_compile() {
-	distutils_src_compile
-	if use doc; then
-		pushd doc &> /dev/null
-		latex2html ${PN}.tex
-		popd &> /dev/null
-	fi
-}
-
-src_install() {
-	distutils_src_install
-	if use doc; then
-		dohtml -r doc/${PN}/
-	fi
-}

diff --git a/dev-python/asciidata/metadata.xml b/dev-python/asciidata/metadata.xml
deleted file mode 100644
index 804a751..0000000
--- a/dev-python/asciidata/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?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">
-  AsciiData is a Python module to handle ASCII tables. With this
-  module it is possible to:
-    * read ASCII tables;
-    * access its elements for reading and writing;
-    * save the ASCII table back to a file;
-    * delete/add rows and columns.
-</longdescription>
-</pkgmetadata>


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

end of thread, other threads:[~2013-04-29 16:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-13 14:00 [gentoo-commits] proj/sci:master commit in: dev-python/asciidata/ Kacper Kowalik
  -- strict thread matches above, loose matches on Subject: below --
2013-04-29 16:32 Sebastien Fabbro
2011-08-04 21:00 Sebastien Fabbro

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