Gentoo Archives: gentoo-commits

From: "Amadeusz Zolnowski (aidecoe)" <aidecoe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/potr: metadata.xml ChangeLog potr-1.0.1.ebuild
Date: Mon, 29 Dec 2014 18:04:41
Message-Id: 20141229180437.EF3FDE6FF@oystercatcher.gentoo.org
1 aidecoe 14/12/29 18:04:37
2
3 Added: metadata.xml ChangeLog potr-1.0.1.ebuild
4 Log:
5 Add initial ebuild.
6
7 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key F0134531E1DBFAB5)
8
9 Revision Changes Path
10 1.1 dev-python/potr/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/potr/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/potr/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>aidecoe@g.o</email>
22 <name>Amadeusz Żołnowski</name>
23 </maintainer>
24 <longdescription lang="en">
25 This is a pure Python OTR implementation; it does not bind to libotr.
26 </longdescription>
27 </pkgmetadata>
28
29
30
31 1.1 dev-python/potr/ChangeLog
32
33 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/potr/ChangeLog?rev=1.1&view=markup
34 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/potr/ChangeLog?rev=1.1&content-type=text/plain
35
36 Index: ChangeLog
37 ===================================================================
38 # ChangeLog for dev-python/potr
39 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
40 # $Header: /var/cvsroot/gentoo-x86/dev-python/potr/ChangeLog,v 1.1 2014/12/29 18:04:37 aidecoe Exp $
41
42 *potr-1.0.1 (29 Dec 2014)
43
44 29 Dec 2014; Amadeusz Żołnowski <aidecoe@g.o> +potr-1.0.1.ebuild,
45 +metadata.xml:
46 Add initial ebuild.
47
48
49
50
51 1.1 dev-python/potr/potr-1.0.1.ebuild
52
53 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/potr/potr-1.0.1.ebuild?rev=1.1&view=markup
54 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/potr/potr-1.0.1.ebuild?rev=1.1&content-type=text/plain
55
56 Index: potr-1.0.1.ebuild
57 ===================================================================
58 # Copyright 1999-2014 Gentoo Foundation
59 # Distributed under the terms of the GNU General Public License v2
60 # $Header: /var/cvsroot/gentoo-x86/dev-python/potr/potr-1.0.1.ebuild,v 1.1 2014/12/29 18:04:37 aidecoe Exp $
61
62 EAPI=5
63
64 MY_PN="python-${PN}"
65 MY_P="${MY_PN}-${PV}"
66
67 PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} )
68
69 inherit distutils-r1
70
71 DESCRIPTION="Pure Python OTR implementation"
72 HOMEPAGE="https://github.com/python-otr/pure-python-otr"
73 SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.zip"
74
75 LICENSE="LGPL-3+"
76 SLOT="0"
77 KEYWORDS="~amd64"
78 IUSE=""
79
80 CDEPEND=">=dev-python/pycrypto-2.1[${PYTHON_USEDEP}]"
81 DEPEND="${CDEPEND}
82 dev-python/setuptools[${PYTHON_USEDEP}]
83 "
84 RDEPEND="${CDEPEND}"
85
86 S="${WORKDIR}/${MY_P}"