Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/mistune: metadata.xml mistune-0.5.ebuild ChangeLog
Date: Sat, 28 Feb 2015 11:44:47
Message-Id: 20150228114443.5992C12BB6@oystercatcher.gentoo.org
1 jlec 15/02/28 11:44:43
2
3 Added: metadata.xml mistune-0.5.ebuild ChangeLog
4 Log:
5 New package written by me
6
7 (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
8
9 Revision Changes Path
10 1.1 dev-python/mistune/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mistune/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mistune/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <maintainer>
21 <email>jlec@g.o</email>
22 <name>Justin Lecher</name>
23 </maintainer>
24 </pkgmetadata>
25
26
27
28 1.1 dev-python/mistune/mistune-0.5.ebuild
29
30 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mistune/mistune-0.5.ebuild?rev=1.1&view=markup
31 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mistune/mistune-0.5.ebuild?rev=1.1&content-type=text/plain
32
33 Index: mistune-0.5.ebuild
34 ===================================================================
35 # Copyright 1999-2015 Gentoo Foundation
36 # Distributed under the terms of the GNU General Public License v2
37 # $Header: /var/cvsroot/gentoo-x86/dev-python/mistune/mistune-0.5.ebuild,v 1.1 2015/02/28 11:44:43 jlec Exp $
38
39 EAPI=5
40
41 PYTHON_COMPAT=( python2_7 python3_{3,4} pypy pypy3 )
42
43 inherit distutils-r1
44
45 DESCRIPTION="The fastest markdown parser in pure Python"
46 HOMEPAGE="https://pypi.python.org/pypi/mistune https://github.com/lepture/mistune"
47 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
48
49 SLOT="0"
50 LICENSE="BSD"
51 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
52 IUSE=""
53
54 RDEPEND=""
55 DEPEND="${RDEPEND}
56 dev-python/cython[$(python_gen_usedep 'python*')]
57 "
58
59 python_test() {
60 ${EPYTHON} tests/test.py || die
61 }
62
63
64
65 1.1 dev-python/mistune/ChangeLog
66
67 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mistune/ChangeLog?rev=1.1&view=markup
68 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mistune/ChangeLog?rev=1.1&content-type=text/plain
69
70 Index: ChangeLog
71 ===================================================================
72 # ChangeLog for dev-python/mistune
73 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
74 # $Header: /var/cvsroot/gentoo-x86/dev-python/mistune/ChangeLog,v 1.1 2015/02/28 11:44:43 jlec Exp $
75
76 *mistune-0.5 (28 Feb 2015)
77
78 28 Feb 2015; Justin Lecher <jlec@g.o> +metadata.xml,
79 +mistune-0.5.ebuild:
80 New package written by me