public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/pyenchant: pyenchant-1.6.5.ebuild pyenchant-1.6.5-r1.ebuild ChangeLog
@ 2013-07-06  0:56 Mike Gilbert (floppym)
  0 siblings, 0 replies; only message in thread
From: Mike Gilbert (floppym) @ 2013-07-06  0:56 UTC (permalink / raw
  To: gentoo-commits

floppym     13/07/06 00:56:03

  Modified:             pyenchant-1.6.5.ebuild pyenchant-1.6.5-r1.ebuild
                        ChangeLog
  Log:
  Prevent distribute bootstrap. Resolves error with setuptools-0.7, bug 475290.
  
  (Portage version: 2.2.0_alpha186/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)

Revision  Changes    Path
1.8                  dev-python/pyenchant/pyenchant-1.6.5.ebuild

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

Index: pyenchant-1.6.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyenchant/pyenchant-1.6.5.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- pyenchant-1.6.5.ebuild	29 Jun 2013 15:36:53 -0000	1.7
+++ pyenchant-1.6.5.ebuild	6 Jul 2013 00:56:03 -0000	1.8
@@ -1,13 +1,13 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyenchant/pyenchant-1.6.5.ebuild,v 1.7 2013/06/29 15:36:53 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyenchant/pyenchant-1.6.5.ebuild,v 1.8 2013/07/06 00:56:03 floppym Exp $
 
 EAPI="3"
 SUPPORT_PYTHON_ABIS="1"
 RESTRICT_PYTHON_ABIS="*-jython"
 DISTUTILS_SRC_TEST="setup.py"
 
-inherit distutils
+inherit distutils eutils
 
 DESCRIPTION="Python bindings for the Enchant spellchecking system"
 HOMEPAGE="http://pyenchant.sourceforge.net http://pypi.python.org/pypi/pyenchant"
@@ -20,12 +20,17 @@
 
 DEPEND="
 	>=app-text/enchant-${PV%.*}
-	<dev-python/setuptools-0.7"
+	dev-python/setuptools"
 RDEPEND="${DEPEND}"
 
 DOCS="README.txt TODO.txt"
 PYTHON_MODNAME="enchant"
 
+src_prepare() {
+	epatch "${FILESDIR}/${PN}-setup.patch"
+	distutils_src_prepare
+}
+
 src_test() {
 	if [[ -n "$(LC_ALL="en_US.UTF-8" bash -c "" 2>&1)" ]]; then
 		ewarn "Disabling tests due to missing en_US.UTF-8 locale"



1.2                  dev-python/pyenchant/pyenchant-1.6.5-r1.ebuild

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

Index: pyenchant-1.6.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyenchant/pyenchant-1.6.5-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pyenchant-1.6.5-r1.ebuild	29 Jun 2013 15:36:53 -0000	1.1
+++ pyenchant-1.6.5-r1.ebuild	6 Jul 2013 00:56:03 -0000	1.2
@@ -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/pyenchant/pyenchant-1.6.5-r1.ebuild,v 1.1 2013/06/29 15:36:53 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyenchant/pyenchant-1.6.5-r1.ebuild,v 1.2 2013/07/06 00:56:03 floppym Exp $
 
 EAPI=5
 
@@ -19,10 +19,11 @@
 
 DEPEND="
 	>=app-text/enchant-${PV%.*}
-	<dev-python/setuptools-0.7[${PYTHON_USEDEP}]"
+	dev-python/setuptools[${PYTHON_USEDEP}]"
 RDEPEND="${DEPEND}"
 
 DOCS=( README.txt TODO.txt )
+PATCHES=( "${FILESDIR}/${PN}-setup.patch" )
 
 python_test() {
 	if [[ -n "$(LC_ALL="en_US.UTF-8" bash -c "" 2>&1)" ]]; then



1.45                 dev-python/pyenchant/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyenchant/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog	29 Jun 2013 15:36:53 -0000	1.44
+++ ChangeLog	6 Jul 2013 00:56:03 -0000	1.45
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/pyenchant
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyenchant/ChangeLog,v 1.44 2013/06/29 15:36:53 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyenchant/ChangeLog,v 1.45 2013/07/06 00:56:03 floppym Exp $
+
+  06 Jul 2013; Mike Gilbert <floppym@gentoo.org> +files/pyenchant-setup.patch,
+  pyenchant-1.6.5-r1.ebuild, pyenchant-1.6.5.ebuild:
+  Prevent distribute bootstrap. Resolves error with setuptools-0.7, bug 475290.
 
 *pyenchant-1.6.5-r1 (29 Jun 2013)
 
@@ -169,4 +173,3 @@
   +pyenchant-1.1.5.ebuild:
   New package, based on an ebuild from Ryan Kelly (ryan-gentoo@rfk.id.au).
   Closes bug #85959.
-





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2013-07-06  0:56 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-06  0:56 [gentoo-commits] gentoo-x86 commit in dev-python/pyenchant: pyenchant-1.6.5.ebuild pyenchant-1.6.5-r1.ebuild ChangeLog 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