idella4     15/05/21 09:03:39

  Modified:             pyxattr-0.5.5.ebuild pyxattr-0.5.3.ebuild ChangeLog
  Log:
  fix to theme in conf.py, fixes doc build, fixes bug #548486 by Torsten Kaiser
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  Changes    Path
1.2                  dev-python/pyxattr/pyxattr-0.5.5.ebuild

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

Index: pyxattr-0.5.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyxattr/pyxattr-0.5.5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pyxattr-0.5.5.ebuild        14 May 2015 02:18:08 -0000      1.1
+++ pyxattr-0.5.5.ebuild        21 May 2015 09:03:39 -0000      1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxattr/pyxattr-0.5.5.ebuild,v 
1.1 2015/05/14 02:18:08 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxattr/pyxattr-0.5.5.ebuild,v 
1.2 2015/05/21 09:03:39 idella4 Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
@@ -25,6 +25,9 @@
 
 python_prepare_all() {
        sed -i -e 's:, "-Werror"::' setup.py || die
+       # Bug 548486
+       sed -e "s:html_theme = 'default':html_theme = 'classic':" \
+               -i doc/conf.py || die
 
        distutils-r1_python_prepare_all
 }



1.13                 dev-python/pyxattr/pyxattr-0.5.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyxattr/pyxattr-0.5.3.ebuild?rev=1.13&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyxattr/pyxattr-0.5.3.ebuild?rev=1.13&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyxattr/pyxattr-0.5.3.ebuild?r1=1.12&r2=1.13

Index: pyxattr-0.5.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyxattr/pyxattr-0.5.3.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- pyxattr-0.5.3.ebuild        8 Apr 2015 08:04:59 -0000       1.12
+++ pyxattr-0.5.3.ebuild        21 May 2015 09:03:39 -0000      1.13
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxattr/pyxattr-0.5.3.ebuild,v 
1.12 2015/04/08 08:04:59 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxattr/pyxattr-0.5.3.ebuild,v 
1.13 2015/05/21 09:03:39 idella4 Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
@@ -25,6 +25,9 @@
 
 python_prepare_all() {
        sed -i -e 's:, "-Werror"::' setup.py || die
+       # Bug 548486
+       sed -e "s:html_theme = 'default':html_theme = 'classic':" \
+               -i doc/conf.py || die
 
        distutils-r1_python_prepare_all
 }



1.77                 dev-python/pyxattr/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyxattr/ChangeLog,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -r1.76 -r1.77
--- ChangeLog   14 May 2015 02:18:08 -0000      1.76
+++ ChangeLog   21 May 2015 09:03:39 -0000      1.77
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/pyxattr
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxattr/ChangeLog,v 1.76 
2015/05/14 02:18:08 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxattr/ChangeLog,v 1.77 
2015/05/21 09:03:39 idella4 Exp $
+
+  21 May 2015; Ian Delaney <[email protected]> pyxattr-0.5.3.ebuild,
+  pyxattr-0.5.5.ebuild:
+  fix to theme in conf.py, fixes doc build, fixes bug #548486 by Torsten Kaiser
 
 *pyxattr-0.5.5 (14 May 2015)
 




Reply via email to