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: Sun, 05 Feb 2012 17:03:26
Message-Id: 9471c9d6622438f289426f3beeddc0b9b596d784.naota@gentoo
1 commit: 9471c9d6622438f289426f3beeddc0b9b596d784
2 Author: Naohiro Aota <naota <AT> elisp <DOT> net>
3 AuthorDate: Sun Feb 5 17:02:24 2012 +0000
4 Commit: Naohiro Aota <naota <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 5 17:02:24 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=9471c9d6
7
8 app-portage/gentwoo: Version bump
9
10 ---
11 app-portage/gentwoo/gentwoo-0.0.20120206.ebuild | 34 +++++++++++++++++++++++
12 1 files changed, 34 insertions(+), 0 deletions(-)
13
14 diff --git a/app-portage/gentwoo/gentwoo-0.0.20120206.ebuild b/app-portage/gentwoo/gentwoo-0.0.20120206.ebuild
15 new file mode 100644
16 index 0000000..cc82dff
17 --- /dev/null
18 +++ b/app-portage/gentwoo/gentwoo-0.0.20120206.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 +}