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:20
Message-Id: 1467464985.cece675722222a8ce629ab5886158c2bac4f1404.soap@gentoo
1 commit: cece675722222a8ce629ab5886158c2bac4f1404
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:45 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cece6757
7
8 dev-python/pycipher: remove old and deprecated
9
10 Package-Manager: portage-2.3.0
11 Closes: https://github.com/gentoo/gentoo/pull/1814
12
13 Signed-off-by: David Seifert <soap <AT> gentoo.org>
14
15 dev-python/pycipher/pycipher-0.2.ebuild | 37 ---------------------------------
16 1 file changed, 37 deletions(-)
17
18 diff --git a/dev-python/pycipher/pycipher-0.2.ebuild b/dev-python/pycipher/pycipher-0.2.ebuild
19 deleted file mode 100644
20 index d298359..0000000
21 --- a/dev-python/pycipher/pycipher-0.2.ebuild
22 +++ /dev/null
23 @@ -1,37 +0,0 @@
24 -# Copyright 1999-2010 Gentoo Foundation
25 -# Distributed under the terms of the GNU General Public License v2
26 -# $Id$
27 -
28 -EAPI="3"
29 -PYTHON_DEPEND="*"
30 -SUPPORT_PYTHON_ABIS="1"
31 -
32 -inherit python
33 -
34 -DESCRIPTION="A Python module that implements several well-known classical cipher algorithms"
35 -HOMEPAGE="http://pycipher.sourceforge.net"
36 -SRC_URI="mirror://sourceforge/${PN}/${P}.py"
37 -
38 -LICENSE="BSD-2"
39 -SLOT="0"
40 -KEYWORDS="~x86 ~amd64"
41 -IUSE=""
42 -
43 -DEPEND=""
44 -RDEPEND=""
45 -
46 -src_install() {
47 - installation() {
48 - insinto $(python_get_sitedir)
49 - newins "${DISTDIR}/${P}.py" ${PN}.py
50 - }
51 - python_execute_function installation
52 -}
53 -
54 -pkg_postinst() {
55 - python_mod_optimize ${PN}.py
56 -}
57 -
58 -pkg_postrm() {
59 - python_mod_cleanup ${PN}.py
60 -}