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: Sat, 11 Feb 2017 23:25:52
Message-Id: 1486855518.85217c09b4da95ebac15b53efde2e3151217b1fc.monsieurp@gentoo
1 commit: 85217c09b4da95ebac15b53efde2e3151217b1fc
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 11 22:01:13 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 11 23:25:18 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85217c09
7
8 dev-python/brython: version bump.
9
10 Package-Manager: portage-2.3.3
11 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
12
13 dev-python/brython/Manifest | 1 +
14 dev-python/brython/brython-3.3.0.ebuild | 33 +++++++++++++++++++++++++++++++++
15 2 files changed, 34 insertions(+)
16
17 diff --git a/dev-python/brython/Manifest b/dev-python/brython/Manifest
18 index 0c202eb231..a3fdb137fc 100644
19 --- a/dev-python/brython/Manifest
20 +++ b/dev-python/brython/Manifest
21 @@ -1,2 +1,3 @@
22 DIST brython-3.2.8.zip 9165384 SHA256 6ae0ddb8b8b9529ceba4b9dbbcc2276eef787e4933bf4f94275cf0cf192eb96a SHA512 409d1338120479bfb0558e7f875f36d022e1a86ce2bbe8cb30ab10a4e2059f2e0ffa6fb7681ecddcf373bbc483a6c25ff44c647c1f38acc7afc14907506b793d WHIRLPOOL 8c411f0e22563799ccfffde707d70b2272aac0d6d40ef5f1d00889968caf8990b9ae6105db1d0c25226024a45027e24c4fd41081fe4ae1fad06d4683fea809e3
23 DIST brython-3.2.9.zip 9430857 SHA256 a4eb0fd99312cb3d11f4d98f8dea0f633fc96ee99bf3e46c9ba02acd9f095072 SHA512 a68c4b88f4c3c2bdd8e713721eb87fe1af053097bf3f8fe0999a0088cb414831c797231eb335fcac3a3d6110059f7e1974a1642cd41fca48bf543fa7989cf850 WHIRLPOOL bca1ac9122a1a111ee5bf7c8f950a7f1c2a418b31c0eb487f3ed587f7278033ef58c9736b1cf208aa374e62a36fbbb9e7f4872eeb07030feb76a7249d2886513
24 +DIST brython-3.3.0.zip 9405649 SHA256 4b63b4758bbf08e865fcda647e064265ddc12a6d0cdb76489a614c73c28a8d02 SHA512 03b0dfcdd1be4a415423317d74fc0c941cdac5682a17a19ccf81d9b19058fda342d21397870a1a8e74a445155f7f736977278d21c38fb22251c8ed4a4489b194 WHIRLPOOL 5356a58b155b1783c9bc30c2e9d015660824002101fe6ab9fb183833b370a3aea71cc40ae4c67908f828e202a81968dfb9c4a77e825638f3f02439d56ed1a329
25
26 diff --git a/dev-python/brython/brython-3.3.0.ebuild b/dev-python/brython/brython-3.3.0.ebuild
27 new file mode 100644
28 index 0000000000..f37a32e475
29 --- /dev/null
30 +++ b/dev-python/brython/brython-3.3.0.ebuild
31 @@ -0,0 +1,33 @@
32 +# Copyright 1999-2017 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 +}