Gentoo Archives: gentoo-commits

From: Sebastian Pipping <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/betagarden:master commit in: app-crypt/onetime/
Date: Tue, 30 Aug 2011 19:50:03
Message-Id: 213794e940be13ac8c5554aebd33803cb05e433c.sping@gentoo
1 commit: 213794e940be13ac8c5554aebd33803cb05e433c
2 Author: Sebastian Pipping <sebastian <AT> pipping <DOT> org>
3 AuthorDate: Tue Aug 30 19:48:37 2011 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 30 19:49:20 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=213794e9
7
8 app-crypt/onetime: 1.115
9
10 ---
11 app-crypt/onetime/onetime-1.115.ebuild | 29 +++++++++++++++++++++++++++++
12 1 files changed, 29 insertions(+), 0 deletions(-)
13
14 diff --git a/app-crypt/onetime/onetime-1.115.ebuild b/app-crypt/onetime/onetime-1.115.ebuild
15 new file mode 100644
16 index 0000000..a52faad
17 --- /dev/null
18 +++ b/app-crypt/onetime/onetime-1.115.ebuild
19 @@ -0,0 +1,29 @@
20 +# Copyright 1999-2011 Gentoo Foundation
21 +# Distributed under the terms of the GNU General Public License v2
22 +# $Header: $
23 +
24 +EAPI="3"
25 +PYTHON_DEPEND="2"
26 +
27 +inherit python
28 +
29 +DESCRIPTION="An Encoder/Decoder Using The 'One-Time Pad' Method"
30 +HOMEPAGE="http://www.red-bean.com/onetime/"
31 +SRC_URI="http://www.red-bean.com/${PN}/${P}.tar.gz"
32 +
33 +LICENSE="CC-PD"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~x86"
36 +IUSE=""
37 +
38 +DEPEND=""
39 +RDEPEND=""
40 +
41 +src_compile() {
42 + :
43 +}
44 +
45 +src_install() {
46 + dobin onetime || die
47 + dodoc README || die
48 +}