Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pycipher/
Date: Sat, 02 Jul 2016 13:10:19
Message-Id: 1467464983.c02abc9dbb16406c03110c8c3cec214827eef031.soap@gentoo
1 commit: c02abc9dbb16406c03110c8c3cec214827eef031
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 2 12:42:11 2016 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 2 13:09:43 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c02abc9d
7
8 dev-python/pycipher: Modernize to python-r1 suite
9
10 * EAPI=6
11
12 Package-Manager: portage-2.3.0
13 Closes: https://github.com/gentoo/gentoo/pull/1814
14
15 Signed-off-by: David Seifert <soap <AT> gentoo.org>
16
17 dev-python/pycipher/pycipher-0.2-r1.ebuild | 30 ++++++++++++++++++++++++++++++
18 1 file changed, 30 insertions(+)
19
20 diff --git a/dev-python/pycipher/pycipher-0.2-r1.ebuild b/dev-python/pycipher/pycipher-0.2-r1.ebuild
21 new file mode 100644
22 index 0000000..40d801d
23 --- /dev/null
24 +++ b/dev-python/pycipher/pycipher-0.2-r1.ebuild
25 @@ -0,0 +1,30 @@
26 +# Copyright 1999-2016 Gentoo Foundation
27 +# Distributed under the terms of the GNU General Public License v2
28 +# $Id$
29 +
30 +EAPI=6
31 +
32 +PYTHON_COMPAT=( python{2_7,3_4,3_5} )
33 +
34 +inherit python-r1
35 +
36 +DESCRIPTION="A Python module that implements several well-known classical cipher algorithms"
37 +HOMEPAGE="http://pycipher.sourceforge.net"
38 +SRC_URI="mirror://sourceforge/${PN}/${P}.py"
39 +
40 +LICENSE="BSD-2"
41 +SLOT="0"
42 +KEYWORDS="~x86 ~amd64"
43 +IUSE=""
44 +
45 +DEPEND=""
46 +RDEPEND=""
47 +
48 +src_unpack() {
49 + mkdir "${S}" || die
50 + cp "${DISTDIR}/${A}" "${S}/${PN}.py" || die
51 +}
52 +
53 +src_install() {
54 + python_foreach_impl python_domodule ${PN}.py
55 +}