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: Tue, 12 Jun 2018 08:46:58
Message-Id: 1528793209.6b879c610467c0ab51ec6551f331ab3b1af2fb3d.monsieurp@gentoo
1 commit: 6b879c610467c0ab51ec6551f331ab3b1af2fb3d
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 11 17:34:40 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 12 08:46:49 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b879c61
7
8 dev-python/brython: version bump.
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 dev-python/brython/Manifest | 1 +
13 dev-python/brython/brython-3.6.0.ebuild | 36 +++++++++++++++++++++++++++++++++
14 2 files changed, 37 insertions(+)
15
16 diff --git a/dev-python/brython/Manifest b/dev-python/brython/Manifest
17 index 2613fce606c..ac079c34c66 100644
18 --- a/dev-python/brython/Manifest
19 +++ b/dev-python/brython/Manifest
20 @@ -1,2 +1,3 @@
21 DIST brython-3.5.0.tar.gz 9232597 BLAKE2B a01c01cf0e67589bd58312e05eb56b11b7905c19e2ac62b895d3352ff9aa0eba141a52437ab12a1aec43e63d07714b56822db2aa82bec89b46c2c9f8b0980c45 SHA512 a0ba2e66712fdf41d64fee4f832d1e620a965099cb506660268d43c9ff00c808d853ac7b7373bad9bfc16f3ec7b60066ed6ba28c33d7df151624169b272951cc
22 DIST brython-3.5.1.tar.gz 9238724 BLAKE2B 88237a237afd65a7a4b66e74fdb38d10adb30a41f86536baf0f66754fe9ba32b4fe96938c2856d8ccaf1edf846b90dda730e5d22dd7372108e8dc3c274926ce5 SHA512 90666cd1ecb82432099da0acbe47f6693aeddd9cb2db939ae98af43560589924d3aac0aef6ed3191ae496c76bbfc5d8a5916917d2ba4b38da422e4d8cffb6013
23 +DIST brython-3.6.0.tar.gz 9310837 BLAKE2B 616874f2a9c303e910a3fd2910aad6ffe360f87e98d009d66e85fd8c05d61c5d96c1a313214c08b69b5d073a23008b23d882a607af0d54f7d2942fcd2b6861ff SHA512 c59cee89634a2439a6fc64d3397966762aa508c6c00d05186138acce25fcf6597230511e30a261217898bca3d86a11eea92516cfe630c5d82cb271603dbecb2c
24
25 diff --git a/dev-python/brython/brython-3.6.0.ebuild b/dev-python/brython/brython-3.6.0.ebuild
26 new file mode 100644
27 index 00000000000..50f67db8982
28 --- /dev/null
29 +++ b/dev-python/brython/brython-3.6.0.ebuild
30 @@ -0,0 +1,36 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
37 +
38 +inherit webapp python-single-r1
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}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="BSD"
45 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
46 +
47 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
48 +
49 +need_httpd_cgi
50 +
51 +pkg_setup() {
52 + webapp_pkg_setup
53 + python-single-r1_pkg_setup
54 +}
55 +
56 +src_install() {
57 + dodoc LICENCE.txt README.md
58 + rm -v LICENCE.txt README.md bower.json .{git*,tra*} server.py || die
59 +
60 + webapp_src_preinst
61 +
62 + insinto "${MY_HTDOCSDIR}"
63 + doins -r .
64 +
65 + webapp_src_install
66 +}