summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Delaney <idella4@gentoo.org>2014-05-31 13:55:42 +0000
committerIan Delaney <idella4@gentoo.org>2014-05-31 13:55:42 +0000
commit15edf6b8ec7b2e0fbf1b9f42eb9af2a5cc8d88ef (patch)
treeacb03062e6d3eace701254fd28aba5df5eb2f97d /app-text/pytextile
parentVersion bump, drop old (diff)
downloadgentoo-2-15edf6b8ec7b2e0fbf1b9f42eb9af2a5cc8d88ef.tar.gz
gentoo-2-15edf6b8ec7b2e0fbf1b9f42eb9af2a5cc8d88ef.tar.bz2
gentoo-2-15edf6b8ec7b2e0fbf1b9f42eb9af2a5cc8d88ef.zip
add fix to test failings noted by Arfrever, fix typo
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Diffstat (limited to 'app-text/pytextile')
-rw-r--r--app-text/pytextile/ChangeLog5
-rw-r--r--app-text/pytextile/pytextile-2.1.8.ebuild6
2 files changed, 8 insertions, 3 deletions
diff --git a/app-text/pytextile/ChangeLog b/app-text/pytextile/ChangeLog
index 37ef2f380dff..c34ddaa01a56 100644
--- a/app-text/pytextile/ChangeLog
+++ b/app-text/pytextile/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-text/pytextile
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v 1.31 2014/05/29 15:32:47 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v 1.32 2014/05/31 13:55:42 idella4 Exp $
+
+ 31 May 2014; Ian Delaney <idella4@gentoo.org> pytextile-2.1.8.ebuild:
+ add fix to test failings noted by Arfrever, fix typo
*pytextile-2.1.8 (29 May 2014)
diff --git a/app-text/pytextile/pytextile-2.1.8.ebuild b/app-text/pytextile/pytextile-2.1.8.ebuild
index 69ee898b5cf4..718030fbcc30 100644
--- a/app-text/pytextile/pytextile-2.1.8.ebuild
+++ b/app-text/pytextile/pytextile-2.1.8.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild,v 1.1 2014/05/29 15:32:47 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild,v 1.2 2014/05/31 13:55:42 idella4 Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
@@ -28,7 +28,9 @@ S="${WORKDIR}/${MY_P}"
python_prepare_all() {
# https://github.com/ikirudennis/python-textile/issues/6
- sed -e s':testSanitize:_&:' -i textile/tests/__init__.py || die
+ sed -e 's:testSanitize:_&:' -i textile/tests/__init__.py || die
+ # This resolves a nasty race condition noted and observed by Arfrever
+ sed -e 's:with-id = 1::' -i setup.cfg || die
distutils-r1_python_prepare_all
}