* [gentoo-commits] gentoo-x86 commit in dev-python/sphinx: sphinx-1.1.3-r6.ebuild ChangeLog
@ 2013-02-06 1:04 Mike Gilbert (floppym)
0 siblings, 0 replies; 12+ messages in thread
From: Mike Gilbert (floppym) @ 2013-02-06 1:04 UTC (permalink / raw
To: gentoo-commits
floppym 13/02/06 01:04:42
Modified: ChangeLog
Added: sphinx-1.1.3-r6.ebuild
Log:
Add patch to fix manpage writer with docutils-0.10. Bug 455750.
(Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
Revision Changes Path
1.130 dev-python/sphinx/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?rev=1.130&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?rev=1.130&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?r1=1.129&r2=1.130
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v
retrieving revision 1.129
retrieving revision 1.130
diff -u -r1.129 -r1.130
--- ChangeLog 3 Feb 2013 10:57:05 -0000 1.129
+++ ChangeLog 6 Feb 2013 01:04:42 -0000 1.130
@@ -1,6 +1,12 @@
# 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.129 2013/02/03 10:57:05 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.130 2013/02/06 01:04:42 floppym Exp $
+
+*sphinx-1.1.3-r6 (06 Feb 2013)
+
+ 06 Feb 2013; Mike Gilbert <floppym@gentoo.org>
+ +files/sphinx-1.1.3-docutils-manpage.patch, +sphinx-1.1.3-r6.ebuild:
+ Add patch to fix manpage writer with docutils-0.10. Bug 455750.
03 Feb 2013; Michał Górny <mgorny@gentoo.org> sphinx-1.1.3-r5.ebuild:
Fix installing "tests" package. Move test conversion to python_test() phase.
1.1 dev-python/sphinx/sphinx-1.1.3-r6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?rev=1.1&content-type=text/plain
Index: sphinx-1.1.3-r6.ebuild
===================================================================
# 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-r6.ebuild,v 1.1 2013/02/06 01:04:42 floppym Exp $
EAPI=5
PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} )
inherit distutils-r1 versionator
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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="doc latex test"
RDEPEND=">=dev-python/docutils-0.7[${PYTHON_USEDEP}]
>=dev-python/jinja-2.3[${PYTHON_USEDEP}]
>=dev-python/pygments-1.2[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]
latex? (
dev-texlive/texlive-latexextra
app-text/dvipng
)"
DEPEND="${DEPEND}
test? ( dev-python/nose[${PYTHON_USEDEP}] )"
S="${WORKDIR}/${MY_P}"
PATCHES=(
"${FILESDIR}"/${P}-python3.patch
"${FILESDIR}"/${P}-docutils-manpage.patch
)
python_compile() {
distutils-r1_python_compile
# Generate the grammar. It will be caught by install somehow.
# Note that the tests usually do it for us. However, I don't want
# to trust USE=test really running all the tests, especially
# with FEATURES=test-fail-continue.
cd "${BUILD_DIR}"/lib || die
"${PYTHON}" -m sphinx.pycode.__init__ \
|| die "Grammar generation failed."
}
python_compile_all() {
use doc && emake -C doc SPHINXBUILD="${PYTHON} -m sphinx.__init__" html
}
python_test() {
cp -r -l tests "${BUILD_DIR}"/ || die
if [[ ${EPYTHON} == python3* ]]; then
2to3 -w --no-diffs "${BUILD_DIR}"/tests || die
fi
nosetests -w "${BUILD_DIR}"/tests \
|| die "Tests fail with ${EPYTHON}"
}
python_install_all() {
use doc && local HTML_DOCS=( doc/_build/html/. )
distutils-r1_python_install_all
}
replacing_python_eclass() {
local pv
for pv in ${REPLACING_VERSIONS}; do
if ! version_is_at_least 1.1.3-r4 ${pv}; then
return 0
fi
done
return 1
}
pkg_preinst() {
if replacing_python_eclass; then
# the old python.eclass ebuild will want to remove our pickles...
backup_pickle() {
# array to enable filename expansion
local pickle_name=(
"${D}$(python_get_sitedir)"/sphinx/pycode/Grammar*.pickle
)
local dest=${ROOT}${pickle_name[0]#${D}}.backup
cp -p -v "${pickle_name[0]}" "${dest}" \
|| die "Unable to backup grammar pickle from overwriting"
}
python_foreach_impl backup_pickle
fi
}
pkg_postinst() {
if replacing_python_eclass; then
restore_pickle() {
local backup_name=(
"${ROOT}$(python_get_sitedir)"/sphinx/pycode/Grammar*.pickle.backup
)
local dest=${backup_name[0]%.backup}
mv -v "${backup_name[0]}" "${dest}" \
|| die "Unable to restore grammar pickle backup"
}
python_foreach_impl restore_pickle
fi
}
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/sphinx: sphinx-1.1.3-r6.ebuild ChangeLog
@ 2013-02-07 14:40 Michal Gorny (mgorny)
0 siblings, 0 replies; 12+ messages in thread
From: Michal Gorny (mgorny) @ 2013-02-07 14:40 UTC (permalink / raw
To: gentoo-commits
mgorny 13/02/07 14:40:59
Modified: sphinx-1.1.3-r6.ebuild ChangeLog
Log:
Create missing directories when trying to backup pickles. Fixes bug #455910.
(Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key 42B9401D)
Revision Changes Path
1.2 dev-python/sphinx/sphinx-1.1.3-r6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?r1=1.1&r2=1.2
Index: sphinx-1.1.3-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sphinx-1.1.3-r6.ebuild 6 Feb 2013 01:04:42 -0000 1.1
+++ sphinx-1.1.3-r6.ebuild 7 Feb 2013 14:40:59 -0000 1.2
@@ -1,12 +1,12 @@
# 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-r6.ebuild,v 1.1 2013/02/06 01:04:42 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild,v 1.2 2013/02/07 14:40:59 mgorny Exp $
EAPI=5
PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} )
-inherit distutils-r1 versionator
+inherit distutils-r1 eutils versionator
MY_PN="Sphinx"
MY_P="${MY_PN}-${PV}"
@@ -93,6 +93,10 @@
local dest=${ROOT}${pickle_name[0]#${D}}.backup
+ eumask_push 022
+ mkdir -p "${dest%/*}" || die
+ eumask_pop
+
cp -p -v "${pickle_name[0]}" "${dest}" \
|| die "Unable to backup grammar pickle from overwriting"
}
@@ -103,6 +107,8 @@
pkg_postinst() {
if replacing_python_eclass; then
+ local warned
+
restore_pickle() {
local backup_name=(
"${ROOT}$(python_get_sitedir)"/sphinx/pycode/Grammar*.pickle.backup
@@ -114,5 +120,7 @@
}
python_foreach_impl restore_pickle
+
+ [[ ${warned} ]] && ewarn "Please try rebuilding the package."
fi
}
1.132 dev-python/sphinx/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?rev=1.132&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?rev=1.132&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?r1=1.131&r2=1.132
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v
retrieving revision 1.131
retrieving revision 1.132
diff -u -r1.131 -r1.132
--- ChangeLog 6 Feb 2013 01:51:10 -0000 1.131
+++ ChangeLog 7 Feb 2013 14:40:59 -0000 1.132
@@ -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.131 2013/02/06 01:51:10 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.132 2013/02/07 14:40:59 mgorny Exp $
+
+ 07 Feb 2013; Michał Górny <mgorny@gentoo.org> sphinx-1.1.3-r6.ebuild:
+ Create missing directories when trying to backup pickles. Fixes bug #455910.
06 Feb 2013; Mike Gilbert <floppym@gentoo.org> -sphinx-1.0.7.ebuild,
-sphinx-1.1.2.ebuild, -sphinx-1.1.3-r1.ebuild, -sphinx-1.1.3-r2.ebuild,
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/sphinx: sphinx-1.1.3-r6.ebuild ChangeLog
@ 2013-02-15 19:01 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-15 19:01 UTC (permalink / raw
To: gentoo-commits
ago 13/02/15 19:01:44
Modified: sphinx-1.1.3-r6.ebuild ChangeLog
Log:
Stable for amd64, wrt bug #457156
(Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key 7194459F)
Revision Changes Path
1.3 dev-python/sphinx/sphinx-1.1.3-r6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?r1=1.2&r2=1.3
Index: sphinx-1.1.3-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sphinx-1.1.3-r6.ebuild 7 Feb 2013 14:40:59 -0000 1.2
+++ sphinx-1.1.3-r6.ebuild 15 Feb 2013 19:01:44 -0000 1.3
@@ -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-r6.ebuild,v 1.2 2013/02/07 14:40:59 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild,v 1.3 2013/02/15 19:01:44 ago Exp $
EAPI=5
@@ -17,7 +17,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 test"
RDEPEND=">=dev-python/docutils-0.7[${PYTHON_USEDEP}]
1.133 dev-python/sphinx/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?rev=1.133&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?rev=1.133&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?r1=1.132&r2=1.133
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v
retrieving revision 1.132
retrieving revision 1.133
diff -u -r1.132 -r1.133
--- ChangeLog 7 Feb 2013 14:40:59 -0000 1.132
+++ ChangeLog 15 Feb 2013 19:01:44 -0000 1.133
@@ -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.132 2013/02/07 14:40:59 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.133 2013/02/15 19:01:44 ago Exp $
+
+ 15 Feb 2013; Agostino Sarubbo <ago@gentoo.org> sphinx-1.1.3-r6.ebuild:
+ Stable for amd64, wrt bug #457156
07 Feb 2013; Michał Górny <mgorny@gentoo.org> sphinx-1.1.3-r6.ebuild:
Create missing directories when trying to backup pickles. Fixes bug #455910.
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/sphinx: sphinx-1.1.3-r6.ebuild ChangeLog
@ 2013-02-15 19:07 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-15 19:07 UTC (permalink / raw
To: gentoo-commits
ago 13/02/15 19:07:55
Modified: sphinx-1.1.3-r6.ebuild ChangeLog
Log:
Stable for x86, wrt bug #457156
(Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key 7194459F)
Revision Changes Path
1.4 dev-python/sphinx/sphinx-1.1.3-r6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?r1=1.3&r2=1.4
Index: sphinx-1.1.3-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sphinx-1.1.3-r6.ebuild 15 Feb 2013 19:01:44 -0000 1.3
+++ sphinx-1.1.3-r6.ebuild 15 Feb 2013 19:07:55 -0000 1.4
@@ -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-r6.ebuild,v 1.3 2013/02/15 19:01:44 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild,v 1.4 2013/02/15 19:07:55 ago Exp $
EAPI=5
@@ -17,7 +17,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 test"
RDEPEND=">=dev-python/docutils-0.7[${PYTHON_USEDEP}]
1.134 dev-python/sphinx/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?rev=1.134&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?rev=1.134&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?r1=1.133&r2=1.134
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v
retrieving revision 1.133
retrieving revision 1.134
diff -u -r1.133 -r1.134
--- ChangeLog 15 Feb 2013 19:01:44 -0000 1.133
+++ ChangeLog 15 Feb 2013 19:07:55 -0000 1.134
@@ -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.133 2013/02/15 19:01:44 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.134 2013/02/15 19:07:55 ago Exp $
+
+ 15 Feb 2013; Agostino Sarubbo <ago@gentoo.org> sphinx-1.1.3-r6.ebuild:
+ Stable for x86, wrt bug #457156
15 Feb 2013; Agostino Sarubbo <ago@gentoo.org> sphinx-1.1.3-r6.ebuild:
Stable for amd64, wrt bug #457156
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/sphinx: sphinx-1.1.3-r6.ebuild ChangeLog
@ 2013-07-28 13:51 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-07-28 13:51 UTC (permalink / raw
To: gentoo-commits
ago 13/07/28 13:51:01
Modified: sphinx-1.1.3-r6.ebuild ChangeLog
Log:
Stable for ppc, wrt bug #477970
(Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)
Revision Changes Path
1.5 dev-python/sphinx/sphinx-1.1.3-r6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?r1=1.4&r2=1.5
Index: sphinx-1.1.3-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sphinx-1.1.3-r6.ebuild 15 Feb 2013 19:07:55 -0000 1.4
+++ sphinx-1.1.3-r6.ebuild 28 Jul 2013 13:51:01 -0000 1.5
@@ -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-r6.ebuild,v 1.4 2013/02/15 19:07:55 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild,v 1.5 2013/07/28 13:51:01 ago Exp $
EAPI=5
@@ -17,7 +17,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 test"
RDEPEND=">=dev-python/docutils-0.7[${PYTHON_USEDEP}]
1.137 dev-python/sphinx/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?rev=1.137&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?rev=1.137&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?r1=1.136&r2=1.137
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v
retrieving revision 1.136
retrieving revision 1.137
diff -u -r1.136 -r1.137
--- ChangeLog 1 Jun 2013 15:15:14 -0000 1.136
+++ ChangeLog 28 Jul 2013 13:51:01 -0000 1.137
@@ -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.136 2013/06/01 15:15:14 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.137 2013/07/28 13:51:01 ago Exp $
+
+ 28 Jul 2013; Agostino Sarubbo <ago@gentoo.org> sphinx-1.1.3-r6.ebuild:
+ Stable for ppc, wrt bug #477970
*sphinx-1.2_pre20130530 (01 Jun 2013)
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/sphinx: sphinx-1.1.3-r6.ebuild ChangeLog
@ 2013-08-04 13:42 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-08-04 13:42 UTC (permalink / raw
To: gentoo-commits
ago 13/08/04 13:42:05
Modified: sphinx-1.1.3-r6.ebuild ChangeLog
Log:
Stable for ppc64, wrt bug #477970
(Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.6 dev-python/sphinx/sphinx-1.1.3-r6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?r1=1.5&r2=1.6
Index: sphinx-1.1.3-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sphinx-1.1.3-r6.ebuild 28 Jul 2013 13:51:01 -0000 1.5
+++ sphinx-1.1.3-r6.ebuild 4 Aug 2013 13:42:05 -0000 1.6
@@ -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-r6.ebuild,v 1.5 2013/07/28 13:51:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild,v 1.6 2013/08/04 13:42:05 ago Exp $
EAPI=5
@@ -17,7 +17,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 test"
RDEPEND=">=dev-python/docutils-0.7[${PYTHON_USEDEP}]
1.138 dev-python/sphinx/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?rev=1.138&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?rev=1.138&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?r1=1.137&r2=1.138
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v
retrieving revision 1.137
retrieving revision 1.138
diff -u -r1.137 -r1.138
--- ChangeLog 28 Jul 2013 13:51:01 -0000 1.137
+++ ChangeLog 4 Aug 2013 13:42:05 -0000 1.138
@@ -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.137 2013/07/28 13:51:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.138 2013/08/04 13:42:05 ago Exp $
+
+ 04 Aug 2013; Agostino Sarubbo <ago@gentoo.org> sphinx-1.1.3-r6.ebuild:
+ Stable for ppc64, wrt bug #477970
28 Jul 2013; Agostino Sarubbo <ago@gentoo.org> sphinx-1.1.3-r6.ebuild:
Stable for ppc, wrt bug #477970
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/sphinx: sphinx-1.1.3-r6.ebuild ChangeLog
@ 2013-08-10 13:29 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-08-10 13:29 UTC (permalink / raw
To: gentoo-commits
ago 13/08/10 13:29:01
Modified: sphinx-1.1.3-r6.ebuild ChangeLog
Log:
Stable for arm, wrt bug #477970
(Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="arm", signed Manifest commit with key 7194459F)
Revision Changes Path
1.7 dev-python/sphinx/sphinx-1.1.3-r6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?r1=1.6&r2=1.7
Index: sphinx-1.1.3-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sphinx-1.1.3-r6.ebuild 4 Aug 2013 13:42:05 -0000 1.6
+++ sphinx-1.1.3-r6.ebuild 10 Aug 2013 13:29:01 -0000 1.7
@@ -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-r6.ebuild,v 1.6 2013/08/04 13:42:05 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild,v 1.7 2013/08/10 13:29:01 ago Exp $
EAPI=5
@@ -17,7 +17,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 test"
RDEPEND=">=dev-python/docutils-0.7[${PYTHON_USEDEP}]
1.139 dev-python/sphinx/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?rev=1.139&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?rev=1.139&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?r1=1.138&r2=1.139
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v
retrieving revision 1.138
retrieving revision 1.139
diff -u -r1.138 -r1.139
--- ChangeLog 4 Aug 2013 13:42:05 -0000 1.138
+++ ChangeLog 10 Aug 2013 13:29:01 -0000 1.139
@@ -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.138 2013/08/04 13:42:05 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.139 2013/08/10 13:29:01 ago Exp $
+
+ 10 Aug 2013; Agostino Sarubbo <ago@gentoo.org> sphinx-1.1.3-r6.ebuild:
+ Stable for arm, wrt bug #477970
04 Aug 2013; Agostino Sarubbo <ago@gentoo.org> sphinx-1.1.3-r6.ebuild:
Stable for ppc64, wrt bug #477970
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/sphinx: sphinx-1.1.3-r6.ebuild ChangeLog
@ 2013-09-02 11:55 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-09-02 11:55 UTC (permalink / raw
To: gentoo-commits
ago 13/09/02 11:55:05
Modified: sphinx-1.1.3-r6.ebuild ChangeLog
Log:
Stable for alpha, wrt bug #477970
(Portage version: 2.1.13.7/cvs/Linux x86_64, RepoMan options: --include-arches="alpha", signed Manifest commit with key 7194459F)
Revision Changes Path
1.9 dev-python/sphinx/sphinx-1.1.3-r6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?r1=1.8&r2=1.9
Index: sphinx-1.1.3-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- sphinx-1.1.3-r6.ebuild 15 Aug 2013 13:28:20 -0000 1.8
+++ sphinx-1.1.3-r6.ebuild 2 Sep 2013 11:55:05 -0000 1.9
@@ -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-r6.ebuild,v 1.8 2013/08/15 13:28:20 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild,v 1.9 2013/09/02 11:55:05 ago Exp $
EAPI=5
@@ -17,7 +17,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 test"
RDEPEND=">=dev-python/docutils-0.7[${PYTHON_USEDEP}]
1.147 dev-python/sphinx/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?rev=1.147&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?rev=1.147&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?r1=1.146&r2=1.147
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v
retrieving revision 1.146
retrieving revision 1.147
diff -u -r1.146 -r1.147
--- ChangeLog 2 Sep 2013 11:47:53 -0000 1.146
+++ ChangeLog 2 Sep 2013 11:55:05 -0000 1.147
@@ -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.146 2013/09/02 11:47:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.147 2013/09/02 11:55:05 ago Exp $
+
+ 02 Sep 2013; Agostino Sarubbo <ago@gentoo.org> sphinx-1.1.3-r6.ebuild:
+ Stable for alpha, wrt bug #477970
02 Sep 2013; Agostino Sarubbo <ago@gentoo.org> sphinx-1.1.3-r7.ebuild:
Stable for alpha, wrt bug #481804
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/sphinx: sphinx-1.1.3-r6.ebuild ChangeLog
@ 2013-09-02 11:55 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-09-02 11:55 UTC (permalink / raw
To: gentoo-commits
ago 13/09/02 11:55:50
Modified: sphinx-1.1.3-r6.ebuild ChangeLog
Log:
Stable for ia64, wrt bug #477970
(Portage version: 2.1.13.7/cvs/Linux x86_64, RepoMan options: --include-arches="ia64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.10 dev-python/sphinx/sphinx-1.1.3-r6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?r1=1.9&r2=1.10
Index: sphinx-1.1.3-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- sphinx-1.1.3-r6.ebuild 2 Sep 2013 11:55:05 -0000 1.9
+++ sphinx-1.1.3-r6.ebuild 2 Sep 2013 11:55:50 -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-r6.ebuild,v 1.9 2013/09/02 11:55:05 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild,v 1.10 2013/09/02 11:55:50 ago Exp $
EAPI=5
@@ -17,7 +17,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 test"
RDEPEND=">=dev-python/docutils-0.7[${PYTHON_USEDEP}]
1.148 dev-python/sphinx/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?rev=1.148&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?rev=1.148&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?r1=1.147&r2=1.148
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v
retrieving revision 1.147
retrieving revision 1.148
diff -u -r1.147 -r1.148
--- ChangeLog 2 Sep 2013 11:55:05 -0000 1.147
+++ ChangeLog 2 Sep 2013 11:55:50 -0000 1.148
@@ -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.147 2013/09/02 11:55:05 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.148 2013/09/02 11:55:50 ago Exp $
+
+ 02 Sep 2013; Agostino Sarubbo <ago@gentoo.org> sphinx-1.1.3-r6.ebuild:
+ Stable for ia64, wrt bug #477970
02 Sep 2013; Agostino Sarubbo <ago@gentoo.org> sphinx-1.1.3-r6.ebuild:
Stable for alpha, wrt bug #477970
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/sphinx: sphinx-1.1.3-r6.ebuild ChangeLog
@ 2013-09-02 11:56 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-09-02 11:56 UTC (permalink / raw
To: gentoo-commits
ago 13/09/02 11:56:41
Modified: sphinx-1.1.3-r6.ebuild ChangeLog
Log:
Stable for s390, wrt bug #477970
(Portage version: 2.1.13.7/cvs/Linux x86_64, RepoMan options: --include-arches="s390", signed Manifest commit with key 7194459F)
Revision Changes Path
1.11 dev-python/sphinx/sphinx-1.1.3-r6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?r1=1.10&r2=1.11
Index: sphinx-1.1.3-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- sphinx-1.1.3-r6.ebuild 2 Sep 2013 11:55:50 -0000 1.10
+++ sphinx-1.1.3-r6.ebuild 2 Sep 2013 11:56:40 -0000 1.11
@@ -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-r6.ebuild,v 1.10 2013/09/02 11:55:50 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild,v 1.11 2013/09/02 11:56:40 ago Exp $
EAPI=5
@@ -17,7 +17,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 test"
RDEPEND=">=dev-python/docutils-0.7[${PYTHON_USEDEP}]
1.150 dev-python/sphinx/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?rev=1.150&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?rev=1.150&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?r1=1.149&r2=1.150
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v
retrieving revision 1.149
retrieving revision 1.150
diff -u -r1.149 -r1.150
--- ChangeLog 2 Sep 2013 11:56:00 -0000 1.149
+++ ChangeLog 2 Sep 2013 11:56:40 -0000 1.150
@@ -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.149 2013/09/02 11:56:00 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.150 2013/09/02 11:56:40 ago Exp $
+
+ 02 Sep 2013; Agostino Sarubbo <ago@gentoo.org> sphinx-1.1.3-r6.ebuild:
+ Stable for s390, wrt bug #477970
02 Sep 2013; Agostino Sarubbo <ago@gentoo.org> sphinx-1.1.3-r7.ebuild:
Stable for ia64, wrt bug #481804
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/sphinx: sphinx-1.1.3-r6.ebuild ChangeLog
@ 2013-09-02 11:57 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-09-02 11:57 UTC (permalink / raw
To: gentoo-commits
ago 13/09/02 11:57:01
Modified: sphinx-1.1.3-r6.ebuild ChangeLog
Log:
Stable for sh, wrt bug #477970
(Portage version: 2.1.13.7/cvs/Linux x86_64, RepoMan options: --include-arches="sh", signed Manifest commit with key 7194459F)
Revision Changes Path
1.12 dev-python/sphinx/sphinx-1.1.3-r6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?r1=1.11&r2=1.12
Index: sphinx-1.1.3-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- sphinx-1.1.3-r6.ebuild 2 Sep 2013 11:56:40 -0000 1.11
+++ sphinx-1.1.3-r6.ebuild 2 Sep 2013 11:57:01 -0000 1.12
@@ -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-r6.ebuild,v 1.11 2013/09/02 11:56:40 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild,v 1.12 2013/09/02 11:57:01 ago Exp $
EAPI=5
@@ -17,7 +17,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 test"
RDEPEND=">=dev-python/docutils-0.7[${PYTHON_USEDEP}]
1.152 dev-python/sphinx/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?rev=1.152&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?rev=1.152&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?r1=1.151&r2=1.152
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v
retrieving revision 1.151
retrieving revision 1.152
diff -u -r1.151 -r1.152
--- ChangeLog 2 Sep 2013 11:56:50 -0000 1.151
+++ ChangeLog 2 Sep 2013 11:57:01 -0000 1.152
@@ -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.151 2013/09/02 11:56:50 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.152 2013/09/02 11:57:01 ago Exp $
+
+ 02 Sep 2013; Agostino Sarubbo <ago@gentoo.org> sphinx-1.1.3-r6.ebuild:
+ Stable for sh, wrt bug #477970
02 Sep 2013; Agostino Sarubbo <ago@gentoo.org> sphinx-1.1.3-r7.ebuild:
Stable for s390, wrt bug #481804
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/sphinx: sphinx-1.1.3-r6.ebuild ChangeLog
@ 2013-09-02 11:57 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-09-02 11:57 UTC (permalink / raw
To: gentoo-commits
ago 13/09/02 11:57:22
Modified: sphinx-1.1.3-r6.ebuild ChangeLog
Log:
Stable for sparc, wrt bug #477970
(Portage version: 2.1.13.7/cvs/Linux x86_64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)
Revision Changes Path
1.13 dev-python/sphinx/sphinx-1.1.3-r6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild?r1=1.12&r2=1.13
Index: sphinx-1.1.3-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- sphinx-1.1.3-r6.ebuild 2 Sep 2013 11:57:01 -0000 1.12
+++ sphinx-1.1.3-r6.ebuild 2 Sep 2013 11:57:22 -0000 1.13
@@ -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-r6.ebuild,v 1.12 2013/09/02 11:57:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r6.ebuild,v 1.13 2013/09/02 11:57:22 ago Exp $
EAPI=5
@@ -17,7 +17,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 test"
RDEPEND=">=dev-python/docutils-0.7[${PYTHON_USEDEP}]
1.154 dev-python/sphinx/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?rev=1.154&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?rev=1.154&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?r1=1.153&r2=1.154
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v
retrieving revision 1.153
retrieving revision 1.154
diff -u -r1.153 -r1.154
--- ChangeLog 2 Sep 2013 11:57:09 -0000 1.153
+++ ChangeLog 2 Sep 2013 11:57:22 -0000 1.154
@@ -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.153 2013/09/02 11:57:09 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.154 2013/09/02 11:57:22 ago Exp $
+
+ 02 Sep 2013; Agostino Sarubbo <ago@gentoo.org> sphinx-1.1.3-r6.ebuild:
+ Stable for sparc, wrt bug #477970
02 Sep 2013; Agostino Sarubbo <ago@gentoo.org> sphinx-1.1.3-r7.ebuild:
Stable for sh, wrt bug #481804
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2013-09-02 11:57 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-04 13:42 [gentoo-commits] gentoo-x86 commit in dev-python/sphinx: sphinx-1.1.3-r6.ebuild ChangeLog Agostino Sarubbo (ago)
-- strict thread matches above, loose matches on Subject: below --
2013-09-02 11:57 Agostino Sarubbo (ago)
2013-09-02 11:57 Agostino Sarubbo (ago)
2013-09-02 11:56 Agostino Sarubbo (ago)
2013-09-02 11:55 Agostino Sarubbo (ago)
2013-09-02 11:55 Agostino Sarubbo (ago)
2013-08-10 13:29 Agostino Sarubbo (ago)
2013-07-28 13:51 Agostino Sarubbo (ago)
2013-02-15 19:07 Agostino Sarubbo (ago)
2013-02-15 19:01 Agostino Sarubbo (ago)
2013-02-07 14:40 Michal Gorny (mgorny)
2013-02-06 1:04 Mike Gilbert (floppym)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox