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: Mon, 26 Mar 2018 21:37:56
Message-Id: 1522100257.4125c74d8bacbcef268f8c1551f550f09bec6766.monsieurp@gentoo
1 commit: 4125c74d8bacbcef268f8c1551f550f09bec6766
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 26 21:37:37 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 26 21:37:37 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4125c74d
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.5.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 599ef0fcb21..ea2a6d340ca 100644
18 --- a/dev-python/brython/Manifest
19 +++ b/dev-python/brython/Manifest
20 @@ -2,3 +2,4 @@ DIST brython-3.3.3.zip 10040987 BLAKE2B a6a238ac6189e9170653c1987db46f2e0735f25d
21 DIST brython-3.3.4.zip 10047374 BLAKE2B ba4719476206fd71f412d646deb6a7eea3a0aef930814d7fa3589a3e736818f2bc7edf7f642998ae1471da87e3ad05ce89fd9dd32d569267ba45174543e4e520 SHA512 818181e040eefaeffd1e8866af471626ff5874fd99c3ee9fcc09c46a4b4b836619045a2712a8e16121a1132c86407b0676a8125e707eff4c7e867851cf20cecd
22 DIST brython-3.3.5.tar.gz 9215864 BLAKE2B 985671d9d60396101b01813b151798d57ca8b7e6450c9a0eae2f14e65cf06cd12e416715219128ac17ff8fa66f1aa3e736dcbfb17537140b7373598d4c873eb1 SHA512 5226d01e4d0f824885329403e2d9b80dd0bec3ed456102f54fcb3900ff08508e3268111b51b892687db21f2936d4feb4bfd328775812206790bcccb4d9e366a8
23 DIST brython-3.4.0.tar.gz 9303732 BLAKE2B 18ef80ce4390f052b6743a545236f57339378ebb3df5e51cf56385fc6c25e43a8e40fe4887d86d8390475c3e02e148188c9be1622fbda4938031559a3fb72bf1 SHA512 4533dd07293efd96b8e6d8f690decb65bbe6c511654f2872b4751e549e4fae0bd48ac80f80983d1b5c7ec029b8df455dec83ba544286dd84c64124d55fdd68e1
24 +DIST brython-3.5.0.tar.gz 9232597 BLAKE2B a01c01cf0e67589bd58312e05eb56b11b7905c19e2ac62b895d3352ff9aa0eba141a52437ab12a1aec43e63d07714b56822db2aa82bec89b46c2c9f8b0980c45 SHA512 a0ba2e66712fdf41d64fee4f832d1e620a965099cb506660268d43c9ff00c808d853ac7b7373bad9bfc16f3ec7b60066ed6ba28c33d7df151624169b272951cc
25
26 diff --git a/dev-python/brython/brython-3.5.0.ebuild b/dev-python/brython/brython-3.5.0.ebuild
27 new file mode 100644
28 index 00000000000..50f67db8982
29 --- /dev/null
30 +++ b/dev-python/brython/brython-3.5.0.ebuild
31 @@ -0,0 +1,36 @@
32 +# Copyright 1999-2018 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
38 +
39 +inherit webapp python-single-r1
40 +
41 +DESCRIPTION="A Python 3 implementation for client-side web programming"
42 +HOMEPAGE="http://www.brython.info"
43 +SRC_URI="https://github.com/${PN}-dev/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="BSD"
46 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
47 +
48 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
49 +
50 +need_httpd_cgi
51 +
52 +pkg_setup() {
53 + webapp_pkg_setup
54 + python-single-r1_pkg_setup
55 +}
56 +
57 +src_install() {
58 + dodoc LICENCE.txt README.md
59 + rm -v LICENCE.txt README.md bower.json .{git*,tra*} server.py || die
60 +
61 + webapp_src_preinst
62 +
63 + insinto "${MY_HTDOCSDIR}"
64 + doins -r .
65 +
66 + webapp_src_install
67 +}