Gentoo Archives: gentoo-commits

From: Sebastian Pipping <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/betagarden:master commit in: dev-python/pythontidy/
Date: Wed, 30 May 2012 20:00:28
Message-Id: 1338407966.f959fe75ddb69ca2383ac84bee2df0668dcfb128.sping@gentoo
1 commit: f959fe75ddb69ca2383ac84bee2df0668dcfb128
2 Author: Sebastian Pipping <sebastian <AT> pipping <DOT> org>
3 AuthorDate: Wed May 30 19:59:26 2012 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Wed May 30 19:59:26 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=f959fe75
7
8 dev-python/pythontidy: 1.23
9
10 ---
11 dev-python/pythontidy/pythontidy-1.23.ebuild | 23 +++++++++++++++++++++++
12 1 files changed, 23 insertions(+), 0 deletions(-)
13
14 diff --git a/dev-python/pythontidy/pythontidy-1.23.ebuild b/dev-python/pythontidy/pythontidy-1.23.ebuild
15 new file mode 100644
16 index 0000000..6619b4d
17 --- /dev/null
18 +++ b/dev-python/pythontidy/pythontidy-1.23.ebuild
19 @@ -0,0 +1,23 @@
20 +# Copyright 1999-2012 Gentoo Foundation
21 +# Distributed under the terms of the GNU General Public License v2
22 +# $Header: $
23 +
24 +EAPI="3"
25 +
26 +PYTHON_DEPEND="2"
27 +inherit python
28 +
29 +MY_PN=PythonTidy
30 +DESCRIPTION="Cleans up, regularizes, and reformats the text of Python scripts."
31 +HOMEPAGE="http://pypi.python.org/pypi/PythonTidy/"
32 +SRC_URI="http://lacusveris.com/${MY_PN}/${MY_PN}-${PV}.python"
33 +
34 +LICENSE="|| ( GPL-2 GPL-3 )"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~x86"
37 +IUSE=""
38 +
39 +src_install() {
40 + newbin "${DISTDIR}"/${A} ${PN} || die
41 + python_convert_shebangs 2 "${D}"/usr/bin/${PN} || die
42 +}