public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/ipython: ChangeLog ipython-0.10.2.ebuild
@ 2011-04-09 17:08 Arfrever Frehtes Taifersar Arahesis (arfrever)
  0 siblings, 0 replies; 7+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2011-04-09 17:08 UTC (permalink / raw
  To: gentoo-commits

arfrever    11/04/09 17:08:09

  Modified:             ChangeLog
  Added:                ipython-0.10.2.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.0_alpha29_p10/cvs/Linux x86_64)

Revision  Changes    Path
1.81                 dev-python/ipython/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?rev=1.81&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?rev=1.81&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?r1=1.80&r2=1.81

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog	7 Jan 2011 14:41:27 -0000	1.80
+++ ChangeLog	9 Apr 2011 17:08:09 -0000	1.81
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/ipython
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v 1.80 2011/01/07 14:41:27 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v 1.81 2011/04/09 17:08:09 arfrever Exp $
+
+*ipython-0.10.2 (09 Apr 2011)
+
+  09 Apr 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+  +ipython-0.10.2.ebuild:
+  Version bump.
 
   07 Jan 2011; Brent Baude <ranger@gentoo.org> ipython-0.10.1.ebuild:
   Marking ipython-0.10.1 ppc for bug 345495



1.1                  dev-python/ipython/ipython-0.10.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild?rev=1.1&content-type=text/plain

Index: ipython-0.10.2.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild,v 1.1 2011/04/09 17:08:09 arfrever Exp $

EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
# When a new version of this package supports Python 3, then 3.* Python ABIs should be unrestricted in dev-python/ipdb.
RESTRICT_PYTHON_ABIS="3.* *-jython"

inherit distutils elisp-common eutils

DESCRIPTION="An interactive computing environment for Python"
HOMEPAGE="http://ipython.scipy.org/ http://pypi.python.org/pypi/ipython"
SRC_URI="http://ipython.scipy.org/dist/${PV}/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~s390 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="doc emacs examples gnuplot readline smp test wxwidgets"

RDEPEND="dev-python/pexpect
	emacs? (
		app-emacs/python-mode
		virtual/emacs
	)
	gnuplot? ( dev-python/gnuplot-py )
	readline? ( sys-libs/readline )
	smp? (
		dev-python/foolscap
		dev-python/pyopenssl
		net-zope/zope-interface
	)
	wxwidgets? ( dev-python/wxpython )"
DEPEND="${DEPEND}
	test? ( dev-python/nose )"

DOCS="docs/source/changes.txt"
PYTHON_MODNAME="IPython"

SITEFILE="62ipython-gentoo.el"

src_prepare() {
	epatch "${FILESDIR}/${PN}-0.9.1-globalpath.patch"
	sed -e "s:share/doc/ipython:share/doc/${PF}:" -i setupbase.py || die "sed failed"

	if ! use doc; then
		sed \
			-e "/extensions/d" \
			-e "s/+ manual_files//" \
			-i setupbase.py || die "sed failed"
	fi

	if ! use examples; then
		sed -e "s/+ example_files//" -i setupbase.py || die "sed failed"
	fi

	# Don't install files requiring Numeric.
	rm -f IPython/numutils.py IPython/UserConfig/ipythonrc-numeric

	# Disable failing test.
	sed -e "s/test_obj_del/_&/" -i IPython/tests/test_magic.py || die "sed failed"
}

src_compile() {
	distutils_src_compile

	if use emacs; then
		elisp-compile docs/emacs/ipython.el || die "elisp-compile failed"
	fi
}

src_test() {
	testing() {
		"$(PYTHON)" setup.py build -b "build-${PYTHON_ABI}" install --home="${WORKDIR}/test-${PYTHON_ABI}" > /dev/null || die "Installation for tests failed with $(python_get_implementation) $(python_get_version)"
		pushd "${WORKDIR}/test-${PYTHON_ABI}" > /dev/null
		# First initialize .ipython stuff.
		PATH="${WORKDIR}/test-${PYTHON_ABI}/bin:${PATH}" PYTHONPATH="${WORKDIR}/test-${PYTHON_ABI}/lib/python" ipython > /dev/null <<-EOF
		EOF
		# Run tests (-v for more verbosity).
		PATH="${WORKDIR}/test-${PYTHON_ABI}/bin:${PATH}" PYTHONPATH="${WORKDIR}/test-${PYTHON_ABI}/lib/python" iptest -v
		popd > /dev/null
	}
	python_execute_function testing
}

src_install() {
	distutils_src_install

	if use emacs; then
		pushd docs/emacs > /dev/null
		elisp-install ${PN} ${PN}.el* || die "elisp-install failed"
		elisp-site-file-install "${FILESDIR}/${SITEFILE}"
		popd > /dev/null
	fi
}

pkg_postinst() {
	distutils_pkg_postinst
	use emacs && elisp-site-regen
}

pkg_postrm() {
	distutils_pkg_postrm
	use emacs && elisp-site-regen
}






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

* [gentoo-commits] gentoo-x86 commit in dev-python/ipython: ChangeLog ipython-0.10.2.ebuild
@ 2011-05-10 14:42 Arfrever Frehtes Taifersar Arahesis (arfrever)
  0 siblings, 0 replies; 7+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2011-05-10 14:42 UTC (permalink / raw
  To: gentoo-commits

arfrever    11/05/10 14:42:26

  Modified:             ChangeLog ipython-0.10.2.ebuild
  Log:
  Disable tests requiring foolscap when foolscap is unavailable (bug #366749).
  
  (Portage version: 2.2.0_alpha32_p13/cvs/Linux x86_64)

Revision  Changes    Path
1.82                 dev-python/ipython/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?rev=1.82&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?rev=1.82&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?r1=1.81&r2=1.82

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- ChangeLog	9 Apr 2011 17:08:09 -0000	1.81
+++ ChangeLog	10 May 2011 14:42:26 -0000	1.82
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/ipython
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v 1.81 2011/04/09 17:08:09 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v 1.82 2011/05/10 14:42:26 arfrever Exp $
+
+  10 May 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+  ipython-0.10.2.ebuild:
+  Disable tests requiring foolscap when foolscap is unavailable (bug #366749).
 
 *ipython-0.10.2 (09 Apr 2011)
 



1.2                  dev-python/ipython/ipython-0.10.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild?r1=1.1&r2=1.2

Index: ipython-0.10.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ipython-0.10.2.ebuild	9 Apr 2011 17:08:09 -0000	1.1
+++ ipython-0.10.2.ebuild	10 May 2011 14:42:26 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild,v 1.1 2011/04/09 17:08:09 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild,v 1.2 2011/05/10 14:42:26 arfrever Exp $
 
 EAPI="3"
 PYTHON_DEPEND="2"
@@ -60,6 +60,9 @@
 
 	# Disable failing test.
 	sed -e "s/test_obj_del/_&/" -i IPython/tests/test_magic.py || die "sed failed"
+
+	# Disable tests requiring foolscap when foolscap is unavailable.
+	sed -e "/^if not have_twisted:$/i if not have_foolscap:\n    EXCLUDE.append(pjoin('IPython', 'kernel'))\n" -i IPython/testing/iptest.py || die "sed failed"
 }
 
 src_compile() {






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

* [gentoo-commits] gentoo-x86 commit in dev-python/ipython: ChangeLog ipython-0.10.2.ebuild
@ 2011-05-11 13:49 Arfrever Frehtes Taifersar Arahesis (arfrever)
  0 siblings, 0 replies; 7+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2011-05-11 13:49 UTC (permalink / raw
  To: gentoo-commits

arfrever    11/05/11 13:49:59

  Modified:             ChangeLog ipython-0.10.2.ebuild
  Log:
  Improve src_test() (bug #366749).
  
  (Portage version: 2.2.0_alpha32_p17/cvs/Linux x86_64)

Revision  Changes    Path
1.83                 dev-python/ipython/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?rev=1.83&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?rev=1.83&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?r1=1.82&r2=1.83

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- ChangeLog	10 May 2011 14:42:26 -0000	1.82
+++ ChangeLog	11 May 2011 13:49:59 -0000	1.83
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/ipython
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v 1.82 2011/05/10 14:42:26 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v 1.83 2011/05/11 13:49:59 arfrever Exp $
+
+  11 May 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+  ipython-0.10.2.ebuild:
+  Improve src_test() (bug #366749).
 
   10 May 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
   ipython-0.10.2.ebuild:



1.3                  dev-python/ipython/ipython-0.10.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild?r1=1.2&r2=1.3

Index: ipython-0.10.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ipython-0.10.2.ebuild	10 May 2011 14:42:26 -0000	1.2
+++ ipython-0.10.2.ebuild	11 May 2011 13:49:59 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild,v 1.2 2011/05/10 14:42:26 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild,v 1.3 2011/05/11 13:49:59 arfrever Exp $
 
 EAPI="3"
 PYTHON_DEPEND="2"
@@ -81,7 +81,7 @@
 		PATH="${WORKDIR}/test-${PYTHON_ABI}/bin:${PATH}" PYTHONPATH="${WORKDIR}/test-${PYTHON_ABI}/lib/python" ipython > /dev/null <<-EOF
 		EOF
 		# Run tests (-v for more verbosity).
-		PATH="${WORKDIR}/test-${PYTHON_ABI}/bin:${PATH}" PYTHONPATH="${WORKDIR}/test-${PYTHON_ABI}/lib/python" iptest -v
+		PATH="${WORKDIR}/test-${PYTHON_ABI}/bin:${PATH}" PYTHONPATH="${WORKDIR}/test-${PYTHON_ABI}/lib/python" iptest -v || return 1
 		popd > /dev/null
 	}
 	python_execute_function testing






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

* [gentoo-commits] gentoo-x86 commit in dev-python/ipython: ChangeLog ipython-0.10.2.ebuild
@ 2011-05-11 18:56 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 7+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-05-11 18:56 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/05/11 18:56:02

  Modified:             ChangeLog ipython-0.10.2.ebuild
  Log:
  Stable on amd64 wrt bug #366667
  
  (Portage version: 2.1.9.47/cvs/Linux x86_64)

Revision  Changes    Path
1.84                 dev-python/ipython/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?rev=1.84&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?rev=1.84&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?r1=1.83&r2=1.84

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog	11 May 2011 13:49:59 -0000	1.83
+++ ChangeLog	11 May 2011 18:56:02 -0000	1.84
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/ipython
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v 1.83 2011/05/11 13:49:59 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v 1.84 2011/05/11 18:56:02 hwoarang Exp $
+
+  11 May 2011; Markos Chandras <hwoarang@gentoo.org> ipython-0.10.2.ebuild:
+  Stable on amd64 wrt bug #366667
 
   11 May 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
   ipython-0.10.2.ebuild:



1.4                  dev-python/ipython/ipython-0.10.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild?r1=1.3&r2=1.4

Index: ipython-0.10.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ipython-0.10.2.ebuild	11 May 2011 13:49:59 -0000	1.3
+++ ipython-0.10.2.ebuild	11 May 2011 18:56:02 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild,v 1.3 2011/05/11 13:49:59 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild,v 1.4 2011/05/11 18:56:02 hwoarang Exp $
 
 EAPI="3"
 PYTHON_DEPEND="2"
@@ -16,7 +16,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~s390 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="amd64 ~ia64 ~ppc ~ppc64 ~s390 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc emacs examples gnuplot readline smp test wxwidgets"
 
 RDEPEND="dev-python/pexpect






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

* [gentoo-commits] gentoo-x86 commit in dev-python/ipython: ChangeLog ipython-0.10.2.ebuild
@ 2011-05-23  9:05 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 7+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-05-23  9:05 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    11/05/23 09:05:27

  Modified:             ChangeLog ipython-0.10.2.ebuild
  Log:
  x86 stable wrt bug #366667
  
  (Portage version: 2.1.9.42/cvs/Linux i686)

Revision  Changes    Path
1.85                 dev-python/ipython/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?rev=1.85&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?rev=1.85&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?r1=1.84&r2=1.85

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ChangeLog	11 May 2011 18:56:02 -0000	1.84
+++ ChangeLog	23 May 2011 09:05:26 -0000	1.85
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/ipython
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v 1.84 2011/05/11 18:56:02 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v 1.85 2011/05/23 09:05:26 phajdan.jr Exp $
+
+  23 May 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> ipython-0.10.2.ebuild:
+  x86 stable wrt bug #366667
 
   11 May 2011; Markos Chandras <hwoarang@gentoo.org> ipython-0.10.2.ebuild:
   Stable on amd64 wrt bug #366667



1.5                  dev-python/ipython/ipython-0.10.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild?r1=1.4&r2=1.5

Index: ipython-0.10.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ipython-0.10.2.ebuild	11 May 2011 18:56:02 -0000	1.4
+++ ipython-0.10.2.ebuild	23 May 2011 09:05:26 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild,v 1.4 2011/05/11 18:56:02 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild,v 1.5 2011/05/23 09:05:26 phajdan.jr Exp $
 
 EAPI="3"
 PYTHON_DEPEND="2"
@@ -16,7 +16,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~ia64 ~ppc ~ppc64 ~s390 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="amd64 ~ia64 ~ppc ~ppc64 ~s390 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc emacs examples gnuplot readline smp test wxwidgets"
 
 RDEPEND="dev-python/pexpect






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

* [gentoo-commits] gentoo-x86 commit in dev-python/ipython: ChangeLog ipython-0.10.2.ebuild
@ 2011-05-28 11:57 Brent Baude (ranger)
  0 siblings, 0 replies; 7+ messages in thread
From: Brent Baude (ranger) @ 2011-05-28 11:57 UTC (permalink / raw
  To: gentoo-commits

ranger      11/05/28 11:57:22

  Modified:             ChangeLog ipython-0.10.2.ebuild
  Log:
  Marking ipython-0.10.2 ppc for bug 366669
  
  (Portage version: 2.1.9.42/cvs/Linux ppc64)

Revision  Changes    Path
1.86                 dev-python/ipython/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?rev=1.86&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?rev=1.86&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?r1=1.85&r2=1.86

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog	23 May 2011 09:05:26 -0000	1.85
+++ ChangeLog	28 May 2011 11:57:22 -0000	1.86
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/ipython
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v 1.85 2011/05/23 09:05:26 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v 1.86 2011/05/28 11:57:22 ranger Exp $
+
+  28 May 2011; Brent Baude <ranger@gentoo.org> ipython-0.10.2.ebuild:
+  Marking ipython-0.10.2 ppc for bug 366669
 
   23 May 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> ipython-0.10.2.ebuild:
   x86 stable wrt bug #366667



1.6                  dev-python/ipython/ipython-0.10.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild?r1=1.5&r2=1.6

Index: ipython-0.10.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ipython-0.10.2.ebuild	23 May 2011 09:05:26 -0000	1.5
+++ ipython-0.10.2.ebuild	28 May 2011 11:57:22 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild,v 1.5 2011/05/23 09:05:26 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild,v 1.6 2011/05/28 11:57:22 ranger Exp $
 
 EAPI="3"
 PYTHON_DEPEND="2"
@@ -16,7 +16,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~ia64 ~ppc ~ppc64 ~s390 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="amd64 ~ia64 ppc ~ppc64 ~s390 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc emacs examples gnuplot readline smp test wxwidgets"
 
 RDEPEND="dev-python/pexpect






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

* [gentoo-commits] gentoo-x86 commit in dev-python/ipython: ChangeLog ipython-0.10.2.ebuild
@ 2011-07-17 11:52 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 7+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-07-17 11:52 UTC (permalink / raw
  To: gentoo-commits

xarthisius    11/07/17 11:52:36

  Modified:             ChangeLog ipython-0.10.2.ebuild
  Log:
  ppc64 stable wrt #366667
  
  (Portage version: 2.2.0_alpha45/cvs/Linux x86_64)

Revision  Changes    Path
1.87                 dev-python/ipython/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?rev=1.87&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?rev=1.87&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?r1=1.86&r2=1.87

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog	28 May 2011 11:57:22 -0000	1.86
+++ ChangeLog	17 Jul 2011 11:52:36 -0000	1.87
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/ipython
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v 1.86 2011/05/28 11:57:22 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v 1.87 2011/07/17 11:52:36 xarthisius Exp $
+
+  17 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org> ipython-0.10.2.ebuild:
+  ppc64 stable wrt #366667
 
   28 May 2011; Brent Baude <ranger@gentoo.org> ipython-0.10.2.ebuild:
   Marking ipython-0.10.2 ppc for bug 366669



1.7                  dev-python/ipython/ipython-0.10.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild?r1=1.6&r2=1.7

Index: ipython-0.10.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ipython-0.10.2.ebuild	28 May 2011 11:57:22 -0000	1.6
+++ ipython-0.10.2.ebuild	17 Jul 2011 11:52:36 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild,v 1.6 2011/05/28 11:57:22 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-0.10.2.ebuild,v 1.7 2011/07/17 11:52:36 xarthisius Exp $
 
 EAPI="3"
 PYTHON_DEPEND="2"
@@ -16,7 +16,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~ia64 ppc ~ppc64 ~s390 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="amd64 ~ia64 ppc ppc64 ~s390 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc emacs examples gnuplot readline smp test wxwidgets"
 
 RDEPEND="dev-python/pexpect






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

end of thread, other threads:[~2011-07-17 11:52 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-23  9:05 [gentoo-commits] gentoo-x86 commit in dev-python/ipython: ChangeLog ipython-0.10.2.ebuild PaweA Hajdan (phajdan.jr)
  -- strict thread matches above, loose matches on Subject: below --
2011-07-17 11:52 Kacper Kowalik (xarthisius)
2011-05-28 11:57 Brent Baude (ranger)
2011-05-11 18:56 Markos Chandras (hwoarang)
2011-05-11 13:49 Arfrever Frehtes Taifersar Arahesis (arfrever)
2011-05-10 14:42 Arfrever Frehtes Taifersar Arahesis (arfrever)
2011-04-09 17:08 Arfrever Frehtes Taifersar Arahesis (arfrever)

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