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: Thu, 01 Feb 2018 23:08:06
Message-Id: 1517526400.d31db15d167148c06e333882b8f6958f62f1be5c.monsieurp@gentoo
1 commit: d31db15d167148c06e333882b8f6958f62f1be5c
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 1 22:24:08 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 1 23:06:40 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d31db15d
7
8 dev-python/brython: version bump.
9
10 Package-Manager: Portage-2.3.13, Repoman-2.3.3
11
12 dev-python/brython/Manifest | 1 +
13 dev-python/brython/brython-3.3.4.ebuild | 36 +++++++++++++++++++++++++++++++++
14 2 files changed, 37 insertions(+)
15
16 diff --git a/dev-python/brython/Manifest b/dev-python/brython/Manifest
17 index d0ae6ec1eab..b4f5c9eedab 100644
18 --- a/dev-python/brython/Manifest
19 +++ b/dev-python/brython/Manifest
20 @@ -1 +1,2 @@
21 DIST brython-3.3.3.zip 10040987 BLAKE2B a6a238ac6189e9170653c1987db46f2e0735f25deccaf0318ebc669b48dce1330acf333ef27300f1061e7e18044cfa24fadc02265d0fe3a83d0aa8b97f4de684 SHA512 e182a6c859cd18b90b205f751260b0b5c8d250746e48844c59cd61608dfdaf0fd6f0f25b8061de9505b7c5d094ac68fe57536c52cb31adb48f04c2cc5624e249
22 +DIST brython-3.3.4.zip 10047374 BLAKE2B ba4719476206fd71f412d646deb6a7eea3a0aef930814d7fa3589a3e736818f2bc7edf7f642998ae1471da87e3ad05ce89fd9dd32d569267ba45174543e4e520 SHA512 818181e040eefaeffd1e8866af471626ff5874fd99c3ee9fcc09c46a4b4b836619045a2712a8e16121a1132c86407b0676a8125e707eff4c7e867851cf20cecd
23
24 diff --git a/dev-python/brython/brython-3.3.4.ebuild b/dev-python/brython/brython-3.3.4.ebuild
25 new file mode 100644
26 index 00000000000..fe8fc801b10
27 --- /dev/null
28 +++ b/dev-python/brython/brython-3.3.4.ebuild
29 @@ -0,0 +1,36 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
36 +
37 +inherit webapp python-single-r1
38 +
39 +DESCRIPTION="A Python 3 implementation for client-side web programming"
40 +HOMEPAGE="http://www.brython.info"
41 +SRC_URI="https://github.com/${PN}-dev/${PN}/archive/${PV}.zip -> ${P}.zip"
42 +
43 +LICENSE="BSD"
44 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
45 +
46 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
47 +
48 +need_httpd_cgi
49 +
50 +pkg_setup() {
51 + webapp_pkg_setup
52 + python-single-r1_pkg_setup
53 +}
54 +
55 +src_install() {
56 + dodoc LICENCE.txt README.md
57 + rm -v LICENCE.txt README.md bower.json .{git*,tra*} server.py || die
58 +
59 + webapp_src_preinst
60 +
61 + insinto "${MY_HTDOCSDIR}"
62 + doins -r .
63 +
64 + webapp_src_install
65 +}