public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-astronomy/pyephem: pyephem-3.7.5.3.ebuild ChangeLog
@ 2014-06-30 18:36 Sebastien Fabbro (bicatali)
  0 siblings, 0 replies; 4+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2014-06-30 18:36 UTC (permalink / raw
  To: gentoo-commits

bicatali    14/06/30 18:36:41

  Modified:             ChangeLog
  Added:                pyephem-3.7.5.3.ebuild
  Log:
  Version bump, added python-3 compat
  
  (Portage version: 2.2.10.1-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)

Revision  Changes    Path
1.23                 sci-astronomy/pyephem/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/pyephem/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/pyephem/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/pyephem/ChangeLog?r1=1.22&r2=1.23

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/pyephem/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog	28 Jan 2014 18:05:57 -0000	1.22
+++ ChangeLog	30 Jun 2014 18:36:41 -0000	1.23
@@ -1,6 +1,11 @@
 # ChangeLog for sci-astronomy/pyephem
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/pyephem/ChangeLog,v 1.22 2014/01/28 18:05:57 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/pyephem/ChangeLog,v 1.23 2014/06/30 18:36:41 bicatali Exp $
+
+*pyephem-3.7.5.3 (30 Jun 2014)
+
+  30 Jun 2014; Sébastien Fabbro <bicatali@gentoo.org> +pyephem-3.7.5.3.ebuild:
+  Version bump, added python-3 compat
 
 *pyephem-3.7.5.2 (28 Jan 2014)
 



1.1                  sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild?rev=1.1&content-type=text/plain

Index: pyephem-3.7.5.3.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild,v 1.1 2014/06/30 18:36:41 bicatali Exp $

EAPI=5

PYTHON_COMPAT=( python{2_7,3_3} )

inherit distutils-r1

DESCRIPTION="Astronomical routines for the python programming language"
HOMEPAGE="http://rhodesmill.org/pyephem/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
IUSE="doc test"

DEPEND="
	doc? ( dev-python/sphinx )
	test? ( virtual/python-unittest2[${PYTHON_USEDEP}] )"
RDEPEND=""

src_prepare() {
	# don't install rst files
	sed -i -e "s:'doc/\*\.rst',::" setup.py || die
	distutils-r1_src_prepare
}

src_compile() {
	distutils-r1_src_compile
	if use doc; then
		PYTHONPATH=. emake -C ephem/doc html
	fi
}

python_test() {
	if [[ ${PYTHON_ABI} == "2.7" ]]; then
		PYTHONPATH="$(ls -d ${BUILD_DIR}/lib*)" \
			${EPYTHON} -m unittest discover -s src/ephem
	else
		PYTHONPATH="$(ls -d ${BUILD_DIR}/lib*)" \
			unit2 discover -s src/ephem
	fi
}

src_install() {
	distutils-r1_src_install
	use doc && dohtml -r ephem/doc/_build/html/*

	delete_tests() {
		rm -r "${D}$(python_get_sitedir)/ephem/tests" || die
	}
	python_foreach_impl delete_tests
}





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

* [gentoo-commits] gentoo-x86 commit in sci-astronomy/pyephem: pyephem-3.7.5.3.ebuild ChangeLog
@ 2014-11-28 13:59 Pacho Ramos (pacho)
  0 siblings, 0 replies; 4+ messages in thread
From: Pacho Ramos (pacho) @ 2014-11-28 13:59 UTC (permalink / raw
  To: gentoo-commits

pacho       14/11/28 13:59:58

  Modified:             pyephem-3.7.5.3.ebuild ChangeLog
  Log:
  Support python 3.4
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.3                  sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild?r1=1.2&r2=1.3

Index: pyephem-3.7.5.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pyephem-3.7.5.3.ebuild	6 Jul 2014 12:56:15 -0000	1.2
+++ pyephem-3.7.5.3.ebuild	28 Nov 2014 13:59:58 -0000	1.3
@@ -1,10 +1,10 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild,v 1.2 2014/07/06 12:56:15 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild,v 1.3 2014/11/28 13:59:58 pacho Exp $
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_7,3_3} )
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
 
 inherit distutils-r1
 



1.25                 sci-astronomy/pyephem/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/pyephem/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/pyephem/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/pyephem/ChangeLog?r1=1.24&r2=1.25

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/pyephem/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog	6 Jul 2014 12:56:15 -0000	1.24
+++ ChangeLog	28 Nov 2014 13:59:58 -0000	1.25
@@ -1,6 +1,9 @@
 # ChangeLog for sci-astronomy/pyephem
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/pyephem/ChangeLog,v 1.24 2014/07/06 12:56:15 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/pyephem/ChangeLog,v 1.25 2014/11/28 13:59:58 pacho Exp $
+
+  28 Nov 2014; Pacho Ramos <pacho@gentoo.org> pyephem-3.7.5.3.ebuild:
+  Support python 3.4
 
   06 Jul 2014; Michał Górny <mgorny@gentoo.org> pyephem-3.7.5.1.ebuild,
   pyephem-3.7.5.2.ebuild, pyephem-3.7.5.3.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in sci-astronomy/pyephem: pyephem-3.7.5.3.ebuild ChangeLog
@ 2015-06-08 16:08 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-06-08 16:08 UTC (permalink / raw
  To: gentoo-commits

ago         15/06/08 16:08:06

  Modified:             pyephem-3.7.5.3.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #548074
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild?r1=1.3&r2=1.4

Index: pyephem-3.7.5.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pyephem-3.7.5.3.ebuild	28 Nov 2014 13:59:58 -0000	1.3
+++ pyephem-3.7.5.3.ebuild	8 Jun 2015 16:08:06 -0000	1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild,v 1.3 2014/11/28 13:59:58 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild,v 1.4 2015/06/08 16:08:06 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc test"
 
 DEPEND="



1.27                 sci-astronomy/pyephem/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/pyephem/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/pyephem/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/pyephem/ChangeLog?r1=1.26&r2=1.27

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/pyephem/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	8 Apr 2015 18:20:00 -0000	1.26
+++ ChangeLog	8 Jun 2015 16:08:06 -0000	1.27
@@ -1,6 +1,9 @@
 # ChangeLog for sci-astronomy/pyephem
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/pyephem/ChangeLog,v 1.26 2015/04/08 18:20:00 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/pyephem/ChangeLog,v 1.27 2015/06/08 16:08:06 ago Exp $
+
+  08 Jun 2015; Agostino Sarubbo <ago@gentoo.org> pyephem-3.7.5.3.ebuild:
+  Stable for amd64, wrt bug #548074
 
   08 Apr 2015; Michał Górny <mgorny@gentoo.org> pyephem-3.7.5.1.ebuild,
   pyephem-3.7.5.2.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in sci-astronomy/pyephem: pyephem-3.7.5.3.ebuild ChangeLog
@ 2015-06-09  7:05 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-06-09  7:05 UTC (permalink / raw
  To: gentoo-commits

ago         15/06/09 07:05:06

  Modified:             pyephem-3.7.5.3.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #548074
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild?r1=1.4&r2=1.5

Index: pyephem-3.7.5.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- pyephem-3.7.5.3.ebuild	8 Jun 2015 16:08:06 -0000	1.4
+++ pyephem-3.7.5.3.ebuild	9 Jun 2015 07:05:06 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild,v 1.4 2015/06/08 16:08:06 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild,v 1.5 2015/06/09 07:05:06 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux"
 IUSE="doc test"
 
 DEPEND="



1.28                 sci-astronomy/pyephem/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/pyephem/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/pyephem/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/pyephem/ChangeLog?r1=1.27&r2=1.28

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/pyephem/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	8 Jun 2015 16:08:06 -0000	1.27
+++ ChangeLog	9 Jun 2015 07:05:06 -0000	1.28
@@ -1,6 +1,9 @@
 # ChangeLog for sci-astronomy/pyephem
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/pyephem/ChangeLog,v 1.27 2015/06/08 16:08:06 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/pyephem/ChangeLog,v 1.28 2015/06/09 07:05:06 ago Exp $
+
+  09 Jun 2015; Agostino Sarubbo <ago@gentoo.org> pyephem-3.7.5.3.ebuild:
+  Stable for x86, wrt bug #548074
 
   08 Jun 2015; Agostino Sarubbo <ago@gentoo.org> pyephem-3.7.5.3.ebuild:
   Stable for amd64, wrt bug #548074





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

end of thread, other threads:[~2015-06-09  7:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-08 16:08 [gentoo-commits] gentoo-x86 commit in sci-astronomy/pyephem: pyephem-3.7.5.3.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2015-06-09  7:05 Agostino Sarubbo (ago)
2014-11-28 13:59 Pacho Ramos (pacho)
2014-06-30 18:36 Sebastien Fabbro (bicatali)

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