public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pyxml: ChangeLog pyxml-0.8.4-r2.ebuild
Date: Wed, 30 Dec 2009 01:40:59 +0000	[thread overview]
Message-ID: <E1NPnYZ-0008Mb-Kf@stork.gentoo.org> (raw)

arfrever    09/12/30 01:40:59

  Modified:             ChangeLog pyxml-0.8.4-r2.ebuild
  Log:
  Fix tests with Python 2.7 (bug #298930).
  (Portage version: 15154-svn/cvs/Linux x86_64)

Revision  Changes    Path
1.60                 dev-python/pyxml/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyxml/ChangeLog?rev=1.60&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyxml/ChangeLog?rev=1.60&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyxml/ChangeLog?r1=1.59&r2=1.60

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyxml/ChangeLog,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- ChangeLog	11 Oct 2009 11:31:35 -0000	1.59
+++ ChangeLog	30 Dec 2009 01:40:59 -0000	1.60
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/pyxml
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxml/ChangeLog,v 1.59 2009/10/11 11:31:35 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxml/ChangeLog,v 1.60 2009/12/30 01:40:59 arfrever Exp $
+
+  30 Dec 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+  pyxml-0.8.4-r2.ebuild:
+  Fix tests with Python 2.7 (bug #298930).
 
   11 Oct 2009; Fabian Groffen <grobian@gentoo.org> pyxml-0.8.4-r2.ebuild:
   Merge from Prefix



1.12                 dev-python/pyxml/pyxml-0.8.4-r2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyxml/pyxml-0.8.4-r2.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyxml/pyxml-0.8.4-r2.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyxml/pyxml-0.8.4-r2.ebuild?r1=1.11&r2=1.12

Index: pyxml-0.8.4-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyxml/pyxml-0.8.4-r2.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- pyxml-0.8.4-r2.ebuild	11 Oct 2009 11:31:35 -0000	1.11
+++ pyxml-0.8.4-r2.ebuild	30 Dec 2009 01:40:59 -0000	1.12
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxml/pyxml-0.8.4-r2.ebuild,v 1.11 2009/10/11 11:31:35 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxml/pyxml-0.8.4-r2.ebuild,v 1.12 2009/12/30 01:40:59 arfrever Exp $
 
 EAPI="2"
 SUPPORT_PYTHON_ABIS="1"
@@ -29,7 +29,11 @@
 
 src_prepare(){
 	distutils_src_prepare
+
 	epatch "${FILESDIR}/${P}-python-2.6.patch"
+
+	# Delete internal copy of old version of unittest module.
+	rm -f test/unittest.py
 }
 
 src_compile() {
@@ -42,7 +46,7 @@
 	fi
 
 	# use the already-installed shared copy of libexpat
-	distutils_src_compile --with-libexpat="${EPREFIX}"/usr ${myconf}
+	distutils_src_compile --with-libexpat="${EPREFIX}/usr" ${myconf}
 }
 src_test() {
 	cd test
@@ -53,7 +57,7 @@
 }
 
 src_install() {
-	[[ -z ${ED} ]] && local ED=${D}
+	[[ -z "${ED}" ]] && local ED="${D}"
 	distutils_src_install
 
 	doman doc/man/*
@@ -61,5 +65,5 @@
 		dohtml -A api,web -r doc/*
 		insinto /usr/share/doc/${PF} && doins doc/*.tex
 	fi
-	use examples && cp -r demo "${ED}"/usr/share/doc/${PF}
+	use examples && cp -r demo "${ED}usr/share/doc/${PF}"
 }






             reply	other threads:[~2009-12-30  1:41 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-12-30  1:40 Arfrever Frehtes Taifersar Arahesis (arfrever) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2015-06-13  9:04 [gentoo-commits] gentoo-x86 commit in dev-python/pyxml: ChangeLog pyxml-0.8.4-r2.ebuild Manuel Rueger (mrueg)
2010-07-16 21:24 Arfrever Frehtes Taifersar Arahesis (arfrever)
2010-07-16 19:26 Fabian Groffen (grobian)
2010-02-07 20:39 Peter Volkov (pva)
2009-10-11 11:31 Fabian Groffen (grobian)
2009-09-23 17:47 Arfrever Frehtes Taifersar Arahesis (arfrever)
2009-07-26 22:30 Brent Baude (ranger)
2009-07-20  3:43 Jeroen Roovers (jer)
2009-07-17 18:23 Gysbert Wassenaar (nixnut)
2009-07-17 14:12 Raul Porcel (armin76)
2009-07-16  3:02 Jeremy Olexa (darkside)
2009-07-15 13:02 Christian Faulhammer (fauli)
2009-07-14 18:12 Ferris McCormick (fmccor)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1NPnYZ-0008Mb-Kf@stork.gentoo.org \
    --to=arfrever@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox