Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/brython/
Date: Sun, 04 Dec 2016 00:47:28
Message-Id: 1480812430.19cf2f8406cee9fb692db479461d495d196bca12.monsieurp@gentoo
1 commit: 19cf2f8406cee9fb692db479461d495d196bca12
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 3 22:53:26 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 4 00:47:10 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19cf2f84
7
8 dev-python/brython: version bump.
9
10 Package-Manager: portage-2.3.0
11
12 dev-python/brython/Manifest | 1 +
13 dev-python/brython/brython-3.2.9.ebuild | 33 +++++++++++++++++++++++++++++++++
14 2 files changed, 34 insertions(+)
15
16 diff --git a/dev-python/brython/Manifest b/dev-python/brython/Manifest
17 index c0de0c8..f1ae07a 100644
18 --- a/dev-python/brython/Manifest
19 +++ b/dev-python/brython/Manifest
20 @@ -1,3 +1,4 @@
21 DIST brython-3.2.6.zip 9330416 SHA256 209f5ddd5165c083217c3146fbdf1dcbc26346f4e3366172c61e08d5af4a22e7 SHA512 307c914b5bbe30765187ff57c324a4ce575b28ea6b41f87e81b02309b1fae7d011603c006d9ab938af50657167de3d66b48de1a92363f76e225a0a3948d4e045 WHIRLPOOL f9a4bc892c2eb1737bb25486ec4c3dfb9615cb18191ac4e87f09316a2be4165236b4e578be374d493908a1d812417cdd7de7c9ab3aabd9eae257957af15c7099
22 DIST brython-3.2.7.zip 9087095 SHA256 83aeef2e68491eadf977c41f0d41fb50bf5c1436c0e2417be47011793d2cdf9e SHA512 e137d4f01ccd67307b1f4f93c09c3654d6bdae8d3d8f9cb9c38777be9c527b93326cdd518cced4df39832a263159cc0256fa25d0328d32248eb82ca62e1ec024 WHIRLPOOL e578698e783ef6d615942887d4cfcb49daf517503150a588a9aecee5ab247f251ed21fb67f713219bcb53ece3b5b8b0073638378213802924da5da8a1e27e1d0
23 DIST brython-3.2.8.zip 9165384 SHA256 6ae0ddb8b8b9529ceba4b9dbbcc2276eef787e4933bf4f94275cf0cf192eb96a SHA512 409d1338120479bfb0558e7f875f36d022e1a86ce2bbe8cb30ab10a4e2059f2e0ffa6fb7681ecddcf373bbc483a6c25ff44c647c1f38acc7afc14907506b793d WHIRLPOOL 8c411f0e22563799ccfffde707d70b2272aac0d6d40ef5f1d00889968caf8990b9ae6105db1d0c25226024a45027e24c4fd41081fe4ae1fad06d4683fea809e3
24 +DIST brython-3.2.9.zip 9430857 SHA256 a4eb0fd99312cb3d11f4d98f8dea0f633fc96ee99bf3e46c9ba02acd9f095072 SHA512 a68c4b88f4c3c2bdd8e713721eb87fe1af053097bf3f8fe0999a0088cb414831c797231eb335fcac3a3d6110059f7e1974a1642cd41fca48bf543fa7989cf850 WHIRLPOOL bca1ac9122a1a111ee5bf7c8f950a7f1c2a418b31c0eb487f3ed587f7278033ef58c9736b1cf208aa374e62a36fbbb9e7f4872eeb07030feb76a7249d2886513
25
26 diff --git a/dev-python/brython/brython-3.2.9.ebuild b/dev-python/brython/brython-3.2.9.ebuild
27 new file mode 100644
28 index 00000000..feed5f4
29 --- /dev/null
30 +++ b/dev-python/brython/brython-3.2.9.ebuild
31 @@ -0,0 +1,33 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=6
37 +
38 +inherit webapp
39 +
40 +DESCRIPTION="A Python 3 implementation for client-side web programming"
41 +HOMEPAGE="http://www.brython.info"
42 +SRC_URI="https://github.com/${PN}-dev/${PN}/archive/${PV}.zip -> ${P}.zip"
43 +
44 +LICENSE="BSD"
45 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
46 +IUSE=""
47 +
48 +RDEPEND="dev-lang/python:*"
49 +
50 +DEPEND="${RDEPEND}"
51 +
52 +need_httpd_cgi
53 +
54 +src_install() {
55 + dodoc LICENCE.txt README.md
56 + rm -v LICENCE.txt README.md bower.json .{git*,tra*} server.py || die
57 +
58 + webapp_src_preinst
59 +
60 + insinto "${MY_HTDOCSDIR}"
61 + doins -r .
62 +
63 + webapp_src_install
64 +}