Gentoo Archives: gentoo-commits

From: Naohiro Aota <naota@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/betagarden:master commit in: app-portage/gentwoo/
Date: Thu, 05 Jul 2012 04:23:04
Message-Id: 1341462147.c868ae94877768c30fb4980b8aadf280a5d48918.naota@gentoo
1 commit: c868ae94877768c30fb4980b8aadf280a5d48918
2 Author: Naohiro Aota <naota <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 5 04:22:27 2012 +0000
4 Commit: Naohiro Aota <naota <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 5 04:22:27 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=c868ae94
7
8 app-portage/gentwoo: version bump
9
10 ---
11 app-portage/gentwoo/gentwoo-0.0.20120705.ebuild | 34 +++++++++++++++++++++++
12 1 files changed, 34 insertions(+), 0 deletions(-)
13
14 diff --git a/app-portage/gentwoo/gentwoo-0.0.20120705.ebuild b/app-portage/gentwoo/gentwoo-0.0.20120705.ebuild
15 new file mode 100644
16 index 0000000..cc82dff
17 --- /dev/null
18 +++ b/app-portage/gentwoo/gentwoo-0.0.20120705.ebuild
19 @@ -0,0 +1,34 @@
20 +# Copyright 1999-2012 Gentoo Foundation
21 +# Distributed under the terms of the GNU General Public License v2
22 +# $Header: $
23 +
24 +EAPI=4
25 +PYTHON_NEEDED="2"
26 +SUPPORT_PYTHON_ABIS="1"
27 +RESTRICT_PYTHON_ABIS="3.*"
28 +
29 +inherit python
30 +
31 +DESCRIPTION="Client program for Social Compiling site GenTwoo"
32 +HOMEPAGE="http://gentwoo.elisp.net"
33 +SRC_URI="http://gentwoo.elisp.net/download/${P}.tar.gz"
34 +
35 +LICENSE="GPL-3"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~x86"
38 +IUSE=""
39 +
40 +DEPEND=""
41 +RDEPEND="dev-python/simplejson"
42 +
43 +src_install() {
44 + gentwoo_install() {
45 + python_convert_shebangs -- ${PYTHON_ABI} gentwoo.py
46 + newbin gentwoo.py gentwoo-${PYTHON_ABI}
47 + }
48 + python_execute_function gentwoo_install
49 + python_generate_wrapper_scripts "${ED}"usr/bin/gentwoo
50 +
51 + insinto /etc
52 + doins gentwoo.conf
53 +}