Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-ctags/
Date: Wed, 25 May 2016 08:28:53
Message-Id: 1464163238.46204861ef6f910c6ff1055171495b2d2e7d3a24.monsieurp@gentoo
1 commit: 46204861ef6f910c6ff1055171495b2d2e7d3a24
2 Author: Louis Sautier <sautier.louis <AT> gmail <DOT> com>
3 AuthorDate: Tue May 24 12:08:32 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Wed May 25 08:00:38 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46204861
7
8 dev-python/python-ctags: bump to 1.2.3, add py3 support, tests
9
10 Package-Manager: portage-2.3.0_rc1
11 Closes: https://github.com/gentoo/gentoo/pull/1529
12
13 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
14
15 dev-python/python-ctags/Manifest | 1 +
16 dev-python/python-ctags/python-ctags-1.2.3.ebuild | 27 +++++++++++++++++++++++
17 2 files changed, 28 insertions(+)
18
19 diff --git a/dev-python/python-ctags/Manifest b/dev-python/python-ctags/Manifest
20 index ec38046..2e1a994 100644
21 --- a/dev-python/python-ctags/Manifest
22 +++ b/dev-python/python-ctags/Manifest
23 @@ -1 +1,2 @@
24 DIST python-ctags-1.0.6.tar.gz 24275 SHA256 16a3fe367360167dc62fd2dc4a262659c6c1a7454aac95eb491edc44345ed565 SHA512 d26663fbb216843b6a3417bc28e89a1cb8666d7ed6aab3d05e87ac2be1edac111b7a3f3d487b42d33d25f4ed984c76933991c40a4c946ac7710b4a55c781563b WHIRLPOOL e369048183735302b81e2d33ffd183e2e8cfed7019741dfecacad7392de01295188c760f71a6125fa28e5f6370da8d11b0756de801e2484af6d7c6a4590731ce
25 +DIST python-ctags3-1.2.3.tar.gz 45646 SHA256 57a0ef06bc4678267aa991086d7643ecb268986ab94a2b643d328f7bbb9a1ad8 SHA512 3bbe730e75a5ae36208113c6e2c43894942002ee37ed700990416fe54d5644b2d2be795935d1392191aae11797ec613ca143343a287596a0a327027c2f170525 WHIRLPOOL 1e4aa102b84f1e8bcbf1a3da89b709fc63497a7840e8c8ca99077c4dcc4a53e36e26248021a93b31a3a270c1935bf0ac672d8cc498db45ed82a577b0a8e8d9eb
26
27 diff --git a/dev-python/python-ctags/python-ctags-1.2.3.ebuild b/dev-python/python-ctags/python-ctags-1.2.3.ebuild
28 new file mode 100644
29 index 0000000..f7117dd
30 --- /dev/null
31 +++ b/dev-python/python-ctags/python-ctags-1.2.3.ebuild
32 @@ -0,0 +1,27 @@
33 +# Copyright 1999-2016 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +# $Id$
36 +
37 +EAPI=6
38 +
39 +PYTHON_COMPAT=( python{2_7,3_4,3_5} )
40 +
41 +inherit distutils-r1
42 +
43 +MY_PN="${PN}3"
44 +DESCRIPTION="Exuberant Ctags indexing python bindings"
45 +HOMEPAGE="https://github.com/jonashaag/python-ctags3"
46 +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
47 +
48 +LICENSE="LGPL-3"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~x86"
51 +
52 +RDEPEND="dev-util/ctags"
53 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
54 +
55 +S="${WORKDIR}/${MY_PN}-${PV}"
56 +
57 +python_test() {
58 + esetup.py test
59 +}