public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/autopep8: metadata.xml ChangeLog autopep8-0.5.2_p1.ebuild
@ 2012-05-04 20:20 Sebastian Pipping (sping)
  0 siblings, 0 replies; only message in thread
From: Sebastian Pipping (sping) @ 2012-05-04 20:20 UTC (permalink / raw
  To: gentoo-commits

sping       12/05/04 20:20:08

  Modified:             metadata.xml ChangeLog
  Added:                autopep8-0.5.2_p1.ebuild
  Log:
  dev-python/autopep8: 0.5.2_p1
  
  (Portage version: 2.1.10.56/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  dev-python/autopep8/metadata.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/metadata.xml?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/metadata.xml?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/metadata.xml?r1=1.2&r2=1.3

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/autopep8/metadata.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- metadata.xml	31 Mar 2012 17:02:27 -0000	1.2
+++ metadata.xml	4 May 2012 20:20:08 -0000	1.3
@@ -5,6 +5,10 @@
 		<email>xarthisius@gentoo.org</email>
 		<name>Kacper Kowalik</name>
 	</maintainer>
+	<maintainer>
+		<email>sping@gentoo.org</email>
+		<name>Sebastian Pipping</name>
+	</maintainer>
 	<longdescription>autopep8 formats Python code based on the output of the pep8 utility</longdescription>
 	<upstream>
 		<remote-id type="pypi">autopep8</remote-id>



1.7                  dev-python/autopep8/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/autopep8/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog	31 Mar 2012 22:47:05 -0000	1.6
+++ ChangeLog	4 May 2012 20:20:08 -0000	1.7
@@ -1,6 +1,13 @@
 # ChangeLog for dev-python/autopep8
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/autopep8/ChangeLog,v 1.6 2012/03/31 22:47:05 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/autopep8/ChangeLog,v 1.7 2012/05/04 20:20:08 sping Exp $
+
+*autopep8-0.5.2_p1 (04 May 2012)
+
+  04 May 2012; Sebastian Pipping <sping@gentoo.org> +autopep8-0.5.2_p1.ebuild,
+  +files/autopep8-0.5.2-issue-10.patch, metadata.xml:
+  Add upstream patch for issue 10 (runtime exception), add myself as backup
+  maintainer
 
   31 Mar 2012; Mike Gilbert <floppym@gentoo.org> autopep8-0.5.2.ebuild,
   autopep8-0.5.ebuild, autopep8-9999.ebuild:



1.1                  dev-python/autopep8/autopep8-0.5.2_p1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/autopep8-0.5.2_p1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/autopep8-0.5.2_p1.ebuild?rev=1.1&content-type=text/plain

Index: autopep8-0.5.2_p1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/autopep8/autopep8-0.5.2_p1.ebuild,v 1.1 2012/05/04 20:20:08 sping Exp $

EAPI=4

PYTHON_DEPEND="*:2.6"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.5-cpython"

inherit eutils distutils

MY_PV=${PV%%_p*}
DESCRIPTION="Automatically formats Python code to conform to the PEP 8 style guide"
HOMEPAGE="https://github.com/hhatto/autopep8 http://pypi.python.org/pypi/autopep8"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${PN}-${MY_PV}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

RDEPEND="dev-python/pep8
	dev-python/setuptools"
DEPEND="${RDEPEND}"

PYTHON_MODNAME="${PN}.py"

S=${WORKDIR}/${PN}-${MY_PV}

src_prepare() {
	epatch "${FILESDIR}"/${PN}-0.5.2-issue-10.patch
}

src_test() {
	testing() {
		PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" test/test_${PN}.py
	}
	python_execute_function testing
}






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

only message in thread, other threads:[~2012-05-04 20:20 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-04 20:20 [gentoo-commits] gentoo-x86 commit in dev-python/autopep8: metadata.xml ChangeLog autopep8-0.5.2_p1.ebuild Sebastian Pipping (sping)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox