public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/sphinx: sphinx-1.1.3-r3.ebuild ChangeLog
@ 2012-05-06 12:10 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 7+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2012-05-06 12:10 UTC (permalink / raw
  To: gentoo-commits

xarthisius    12/05/06 12:10:06

  Modified:             ChangeLog
  Added:                sphinx-1.1.3-r3.ebuild
  Log:
  Backport upstream patch with python3 fixes
  
  (Portage version: 2.2.0_alpha100/cvs/Linux x86_64)

Revision  Changes    Path
1.111                dev-python/sphinx/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v
retrieving revision 1.110
retrieving revision 1.111
diff -u -r1.110 -r1.111
--- ChangeLog	1 May 2012 12:00:37 -0000	1.110
+++ ChangeLog	6 May 2012 12:10:06 -0000	1.111
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/sphinx
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.110 2012/05/01 12:00:37 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.111 2012/05/06 12:10:06 xarthisius Exp $
+
+*sphinx-1.1.3-r3 (06 May 2012)
+
+  06 May 2012; Kacper Kowalik <xarthisius@gentoo.org>
+  +files/sphinx-1.1.3-python3.patch, +sphinx-1.1.3-r3.ebuild:
+  Backport upstream patch with python3 fixes
 
   01 May 2012; Kacper Kowalik <xarthisius@gentoo.org> sphinx-1.1.3-r2.ebuild:
   Add dependency on app-text/dvipng required for rendering math expressions



1.1                  dev-python/sphinx/sphinx-1.1.3-r3.ebuild

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

Index: sphinx-1.1.3-r3.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r3.ebuild,v 1.1 2012/05/06 12:10:06 xarthisius Exp $

EAPI="4"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
DISTUTILS_SRC_TEST="nosetests"
PYTHON_TESTS_RESTRICTED_ABIS="2.5 *-pypy-*"

inherit eutils distutils

MY_PN="Sphinx"
MY_P="${MY_PN}-${PV}"

DESCRIPTION="Python documentation generator"
HOMEPAGE="http://sphinx.pocoo.org/ http://pypi.python.org/pypi/Sphinx"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="doc latex"

DEPEND=">=dev-python/docutils-0.7
	>=dev-python/jinja-2.3
	>=dev-python/pygments-1.2
	dev-python/setuptools
	latex? (
		dev-texlive/texlive-latexextra
		app-text/dvipng
	)"
RDEPEND="${DEPEND}"

S="${WORKDIR}/${MY_P}"

DOCS="CHANGES"

src_prepare() {
	epatch "${FILESDIR}"/${P}-python3.patch
	distutils_src_prepare

	prepare_tests() {
		mkdir -p build-${PYTHON_ABI}
		cp -r tests build-${PYTHON_ABI}/tests
		if [[ $(python_get_version -l --major) == "3" ]]; then
			2to3-${PYTHON_ABI} -nw --no-diffs build-${PYTHON_ABI}/tests
		fi
	}
	use test && python_execute_function prepare_tests
}

src_compile() {
	distutils_src_compile

	if use doc; then
		einfo "Generation of documentation"
		sed -e "/import sys/a sys.path.insert(0, '${S}/build-$(PYTHON -f --ABI)/lib')" -i sphinx-build.py
		pushd doc > /dev/null
		emake SPHINXBUILD="$(PYTHON -f) ../sphinx-build.py" html || die
		popd > /dev/null
	fi
}

src_test() {
	testing() {
		pushd build-${PYTHON_ABI} > /dev/null
		echo PYTHONPATH=lib nosetests --verbosity=1
		PYTHONPATH=lib nosetests --verbosity=1
		local rv=$?
		popd > /dev/null
		return $rv
	}
	python_execute_function testing
}

src_install() {
	distutils_src_install
	python_generate_wrapper_scripts -E -f -q "${ED}usr/bin/sphinx-build"

	delete_grammar_pickle() {
		rm -f "${ED}$(python_get_sitedir)/sphinx/pycode/Grammar$(python_get_version -l).pickle"
	}
	python_execute_function -q delete_grammar_pickle

	if use doc; then
		dohtml -A txt -r doc/_build/html/* || die "Installation of documentation failed"
	fi
}

pkg_postinst() {
	distutils_pkg_postinst

	# Generate the Grammar pickle to avoid sandbox violations.
	generation_of_grammar_pickle() {
		"$(PYTHON)" -c "import sys; sys.path.insert(0, '${EROOT}$(python_get_sitedir -b)'); from sphinx.pycode.pgen2.driver import load_grammar; load_grammar('${EROOT}$(python_get_sitedir -b)/sphinx/pycode/Grammar.txt')"
	}
	python_execute_function \
		--action-message 'Generation of Grammar pickle with $(python_get_implementation_and_version)...' \
		--failure-message 'Generation of Grammar pickle with $(python_get_implementation_and_version) failed' \
		generation_of_grammar_pickle
}

pkg_postrm() {
	distutils_pkg_postrm

	deletion_of_grammar_pickle() {
		rm -f "${EROOT}$(python_get_sitedir -b)/sphinx/pycode"/Grammar*.pickle || return 1

		# Delete empty parent directories.
		local dir="${EROOT}$(python_get_sitedir -b)/sphinx/pycode"
		while [[ "${dir}" != "${EROOT%/}" ]]; do
			rmdir "${dir}" 2> /dev/null || break
			dir="${dir%/*}"
		done
	}
	python_execute_function \
		--action-message 'Deletion of Grammar pickle with $(python_get_implementation_and_version)...' \
		--failure-message 'Deletion of Grammar pickle with $(python_get_implementation_and_version) failed' \
		deletion_of_grammar_pickle
}






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

* [gentoo-commits] gentoo-x86 commit in dev-python/sphinx: sphinx-1.1.3-r3.ebuild ChangeLog
@ 2012-10-18  6:31 Mike Gilbert (floppym)
  0 siblings, 0 replies; 7+ messages in thread
From: Mike Gilbert (floppym) @ 2012-10-18  6:31 UTC (permalink / raw
  To: gentoo-commits

floppym     12/10/18 06:31:53

  Modified:             sphinx-1.1.3-r3.ebuild ChangeLog
  Log:
  Don't depend on python2.
  
  (Portage version: 2.2.0_alpha138/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)

Revision  Changes    Path
1.3                  dev-python/sphinx/sphinx-1.1.3-r3.ebuild

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

Index: sphinx-1.1.3-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sphinx-1.1.3-r3.ebuild	9 May 2012 00:18:40 -0000	1.2
+++ sphinx-1.1.3-r3.ebuild	18 Oct 2012 06:31:52 -0000	1.3
@@ -1,9 +1,9 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r3.ebuild,v 1.2 2012/05/09 00:18:40 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r3.ebuild,v 1.3 2012/10/18 06:31:52 floppym Exp $
 
 EAPI="4"
-PYTHON_DEPEND="2"
+PYTHON_DEPEND="*"
 SUPPORT_PYTHON_ABIS="1"
 DISTUTILS_SRC_TEST="nosetests"
 PYTHON_TESTS_RESTRICTED_ABIS="2.5 *-pypy-*"



1.114                dev-python/sphinx/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v
retrieving revision 1.113
retrieving revision 1.114
diff -u -r1.113 -r1.114
--- ChangeLog	28 May 2012 14:15:36 -0000	1.113
+++ ChangeLog	18 Oct 2012 06:31:52 -0000	1.114
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/sphinx
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.113 2012/05/28 14:15:36 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.114 2012/10/18 06:31:52 floppym Exp $
+
+  18 Oct 2012; Mike Gilbert <floppym@gentoo.org> sphinx-1.1.3-r3.ebuild:
+  Don't depend on python2.
 
   28 May 2012; Raúl Porcel <armin76@gentoo.org> sphinx-1.1.2.ebuild:
   alpha/ia64/s390/sh/sparc stable wrt #410115
@@ -415,4 +418,3 @@
   07 Jun 2008; Tiziano Müller <dev-zero@gentoo.org> +metadata.xml,
   +sphinx-0.3.ebuild:
   Initial ebuild (written by me)
-





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

* [gentoo-commits] gentoo-x86 commit in dev-python/sphinx: sphinx-1.1.3-r3.ebuild ChangeLog
@ 2012-12-31 22:39 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-12-31 22:39 UTC (permalink / raw
  To: gentoo-commits

ago         12/12/31 22:39:54

  Modified:             sphinx-1.1.3-r3.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #449424
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.5                  dev-python/sphinx/sphinx-1.1.3-r3.ebuild

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

Index: sphinx-1.1.3-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sphinx-1.1.3-r3.ebuild	31 Dec 2012 19:14:39 -0000	1.4
+++ sphinx-1.1.3-r3.ebuild	31 Dec 2012 22:39:54 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r3.ebuild,v 1.4 2012/12/31 19:14:39 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r3.ebuild,v 1.5 2012/12/31 22:39:54 ago Exp $
 
 EAPI="4"
 PYTHON_DEPEND="*"
@@ -19,7 +19,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc latex"
 
 DEPEND=">=dev-python/docutils-0.7



1.116                dev-python/sphinx/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -r1.115 -r1.116
--- ChangeLog	31 Dec 2012 19:14:39 -0000	1.115
+++ ChangeLog	31 Dec 2012 22:39:54 -0000	1.116
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/sphinx
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.115 2012/12/31 19:14:39 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.116 2012/12/31 22:39:54 ago Exp $
+
+  31 Dec 2012; Agostino Sarubbo <ago@gentoo.org> sphinx-1.1.3-r3.ebuild:
+  Stable for amd64, wrt bug #449424
 
   31 Dec 2012; Jeroen Roovers <jer@gentoo.org> sphinx-1.1.3-r3.ebuild:
   Stable for HPPA (bug #449424).





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

* [gentoo-commits] gentoo-x86 commit in dev-python/sphinx: sphinx-1.1.3-r3.ebuild ChangeLog
@ 2012-12-31 22:45 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-12-31 22:45 UTC (permalink / raw
  To: gentoo-commits

ago         12/12/31 22:45:18

  Modified:             sphinx-1.1.3-r3.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #449424
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.6                  dev-python/sphinx/sphinx-1.1.3-r3.ebuild

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

Index: sphinx-1.1.3-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sphinx-1.1.3-r3.ebuild	31 Dec 2012 22:39:54 -0000	1.5
+++ sphinx-1.1.3-r3.ebuild	31 Dec 2012 22:45:18 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r3.ebuild,v 1.5 2012/12/31 22:39:54 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r3.ebuild,v 1.6 2012/12/31 22:45:18 ago Exp $
 
 EAPI="4"
 PYTHON_DEPEND="*"
@@ -19,7 +19,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc latex"
 
 DEPEND=">=dev-python/docutils-0.7



1.117                dev-python/sphinx/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v
retrieving revision 1.116
retrieving revision 1.117
diff -u -r1.116 -r1.117
--- ChangeLog	31 Dec 2012 22:39:54 -0000	1.116
+++ ChangeLog	31 Dec 2012 22:45:18 -0000	1.117
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/sphinx
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.116 2012/12/31 22:39:54 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.117 2012/12/31 22:45:18 ago Exp $
+
+  31 Dec 2012; Agostino Sarubbo <ago@gentoo.org> sphinx-1.1.3-r3.ebuild:
+  Stable for x86, wrt bug #449424
 
   31 Dec 2012; Agostino Sarubbo <ago@gentoo.org> sphinx-1.1.3-r3.ebuild:
   Stable for amd64, wrt bug #449424





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

* [gentoo-commits] gentoo-x86 commit in dev-python/sphinx: sphinx-1.1.3-r3.ebuild ChangeLog
@ 2012-12-31 23:29 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-12-31 23:29 UTC (permalink / raw
  To: gentoo-commits

ago         12/12/31 23:29:54

  Modified:             sphinx-1.1.3-r3.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #449424
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)

Revision  Changes    Path
1.7                  dev-python/sphinx/sphinx-1.1.3-r3.ebuild

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

Index: sphinx-1.1.3-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r3.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sphinx-1.1.3-r3.ebuild	31 Dec 2012 22:45:18 -0000	1.6
+++ sphinx-1.1.3-r3.ebuild	31 Dec 2012 23:29:54 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r3.ebuild,v 1.6 2012/12/31 22:45:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r3.ebuild,v 1.7 2012/12/31 23:29:54 ago Exp $
 
 EAPI="4"
 PYTHON_DEPEND="*"
@@ -19,7 +19,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc latex"
 
 DEPEND=">=dev-python/docutils-0.7



1.118                dev-python/sphinx/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v
retrieving revision 1.117
retrieving revision 1.118
diff -u -r1.117 -r1.118
--- ChangeLog	31 Dec 2012 22:45:18 -0000	1.117
+++ ChangeLog	31 Dec 2012 23:29:54 -0000	1.118
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/sphinx
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.117 2012/12/31 22:45:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.118 2012/12/31 23:29:54 ago Exp $
+
+  31 Dec 2012; Agostino Sarubbo <ago@gentoo.org> sphinx-1.1.3-r3.ebuild:
+  Stable for ppc, wrt bug #449424
 
   31 Dec 2012; Agostino Sarubbo <ago@gentoo.org> sphinx-1.1.3-r3.ebuild:
   Stable for x86, wrt bug #449424





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

* [gentoo-commits] gentoo-x86 commit in dev-python/sphinx: sphinx-1.1.3-r3.ebuild ChangeLog
@ 2013-01-03  9:39 Ian Delaney (idella4)
  0 siblings, 0 replies; 7+ messages in thread
From: Ian Delaney (idella4) @ 2013-01-03  9:39 UTC (permalink / raw
  To: gentoo-commits

idella4     13/01/03 09:39:05

  Modified:             sphinx-1.1.3-r3.ebuild ChangeLog
  Log:
  py3.3 excluded from PYTHON_DEPEND, fixes Bug 447676 reported by jlec
  
  (Portage version: 2.1.11.30/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)

Revision  Changes    Path
1.9                  dev-python/sphinx/sphinx-1.1.3-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r3.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r3.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r3.ebuild?r1=1.8&r2=1.9

Index: sphinx-1.1.3-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r3.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- sphinx-1.1.3-r3.ebuild	1 Jan 2013 19:18:34 -0000	1.8
+++ sphinx-1.1.3-r3.ebuild	3 Jan 2013 09:39:05 -0000	1.9
@@ -1,9 +1,9 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r3.ebuild,v 1.8 2013/01/01 19:18:34 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r3.ebuild,v 1.9 2013/01/03 09:39:05 idella4 Exp $
 
 EAPI="4"
-PYTHON_DEPEND="*"
+PYTHON_DEPEND="*::3.2"
 SUPPORT_PYTHON_ABIS="1"
 DISTUTILS_SRC_TEST="nosetests"
 PYTHON_TESTS_RESTRICTED_ABIS="2.5 *-pypy-*"



1.120                dev-python/sphinx/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v
retrieving revision 1.119
retrieving revision 1.120
diff -u -r1.119 -r1.120
--- ChangeLog	1 Jan 2013 19:18:34 -0000	1.119
+++ ChangeLog	3 Jan 2013 09:39:05 -0000	1.120
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/sphinx
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.119 2013/01/01 19:18:34 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.120 2013/01/03 09:39:05 idella4 Exp $
+
+  04 Jan 2013; Ian Delaney <idella4@gentoo.org> sphinx-1.1.3-r3.ebuild:
+  py3.3 excluded from PYTHON_DEPEND, fixes Bug 447676 reported by jlec
 
   01 Jan 2013; Raúl Porcel <armin76@gentoo.org> sphinx-1.1.3-r3.ebuild:
   alpha/arm/ia64/s390/sh/sparc stable wrt #449424





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

* [gentoo-commits] gentoo-x86 commit in dev-python/sphinx: sphinx-1.1.3-r3.ebuild ChangeLog
@ 2013-01-04 13:10 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-01-04 13:10 UTC (permalink / raw
  To: gentoo-commits

ago         13/01/04 13:10:28

  Modified:             sphinx-1.1.3-r3.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #449424
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)

Revision  Changes    Path
1.10                 dev-python/sphinx/sphinx-1.1.3-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r3.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r3.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r3.ebuild?r1=1.9&r2=1.10

Index: sphinx-1.1.3-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r3.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- sphinx-1.1.3-r3.ebuild	3 Jan 2013 09:39:05 -0000	1.9
+++ sphinx-1.1.3-r3.ebuild	4 Jan 2013 13:10:28 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r3.ebuild,v 1.9 2013/01/03 09:39:05 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r3.ebuild,v 1.10 2013/01/04 13:10:28 ago Exp $
 
 EAPI="4"
 PYTHON_DEPEND="*::3.2"
@@ -19,7 +19,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc latex"
 
 DEPEND=">=dev-python/docutils-0.7



1.121                dev-python/sphinx/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -r1.120 -r1.121
--- ChangeLog	3 Jan 2013 09:39:05 -0000	1.120
+++ ChangeLog	4 Jan 2013 13:10:28 -0000	1.121
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/sphinx
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.120 2013/01/03 09:39:05 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.121 2013/01/04 13:10:28 ago Exp $
+
+  04 Jan 2013; Agostino Sarubbo <ago@gentoo.org> sphinx-1.1.3-r3.ebuild:
+  Stable for ppc64, wrt bug #449424
 
   04 Jan 2013; Ian Delaney <idella4@gentoo.org> sphinx-1.1.3-r3.ebuild:
   py3.3 excluded from PYTHON_DEPEND, fixes Bug 447676 reported by jlec





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

end of thread, other threads:[~2013-01-04 13:10 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-31 22:39 [gentoo-commits] gentoo-x86 commit in dev-python/sphinx: sphinx-1.1.3-r3.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2013-01-04 13:10 Agostino Sarubbo (ago)
2013-01-03  9:39 Ian Delaney (idella4)
2012-12-31 23:29 Agostino Sarubbo (ago)
2012-12-31 22:45 Agostino Sarubbo (ago)
2012-10-18  6:31 Mike Gilbert (floppym)
2012-05-06 12:10 Kacper Kowalik (xarthisius)

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