From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 15B8913832E for ; Sun, 17 Jul 2016 15:44:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 32A94E09AF; Sun, 17 Jul 2016 15:44:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 08E26E07C2 for ; Sun, 17 Jul 2016 15:44:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1D94F3409E6 for ; Sun, 17 Jul 2016 15:44:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CF0BF2456 for ; Sun, 17 Jul 2016 15:44:37 +0000 (UTC) From: "Patrick Lauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick Lauer" Message-ID: <1468770270.99a098664e89bf65629ce1af4d833ebcf55cd3d1.patrick@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/brython/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/brython/Manifest dev-python/brython/brython-3.2.7.ebuild X-VCS-Directories: dev-python/brython/ X-VCS-Committer: patrick X-VCS-Committer-Name: Patrick Lauer X-VCS-Revision: 99a098664e89bf65629ce1af4d833ebcf55cd3d1 X-VCS-Branch: master Date: Sun, 17 Jul 2016 15:44:37 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: eb9cdf26-a702-4279-af32-82e651ecfbb4 X-Archives-Hash: 2ddda19a2343ba4877c21a0eb6b5a8d5 commit: 99a098664e89bf65629ce1af4d833ebcf55cd3d1 Author: Patrick Lauer gentoo org> AuthorDate: Sun Jul 17 15:42:08 2016 +0000 Commit: Patrick Lauer gentoo org> CommitDate: Sun Jul 17 15:44:30 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99a09866 dev-python/brython: Bump Package-Manager: portage-2.3.0 dev-python/brython/Manifest | 1 + dev-python/brython/brython-3.2.7.ebuild | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/dev-python/brython/Manifest b/dev-python/brython/Manifest index 3319871..e80539e 100644 --- a/dev-python/brython/Manifest +++ b/dev-python/brython/Manifest @@ -1 +1,2 @@ DIST brython-3.2.6.zip 9330416 SHA256 209f5ddd5165c083217c3146fbdf1dcbc26346f4e3366172c61e08d5af4a22e7 SHA512 307c914b5bbe30765187ff57c324a4ce575b28ea6b41f87e81b02309b1fae7d011603c006d9ab938af50657167de3d66b48de1a92363f76e225a0a3948d4e045 WHIRLPOOL f9a4bc892c2eb1737bb25486ec4c3dfb9615cb18191ac4e87f09316a2be4165236b4e578be374d493908a1d812417cdd7de7c9ab3aabd9eae257957af15c7099 +DIST brython-3.2.7.zip 9087095 SHA256 83aeef2e68491eadf977c41f0d41fb50bf5c1436c0e2417be47011793d2cdf9e SHA512 e137d4f01ccd67307b1f4f93c09c3654d6bdae8d3d8f9cb9c38777be9c527b93326cdd518cced4df39832a263159cc0256fa25d0328d32248eb82ca62e1ec024 WHIRLPOOL e578698e783ef6d615942887d4cfcb49daf517503150a588a9aecee5ab247f251ed21fb67f713219bcb53ece3b5b8b0073638378213802924da5da8a1e27e1d0 diff --git a/dev-python/brython/brython-3.2.7.ebuild b/dev-python/brython/brython-3.2.7.ebuild new file mode 100644 index 0000000..feed5f4 --- /dev/null +++ b/dev-python/brython/brython-3.2.7.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit webapp + +DESCRIPTION="A Python 3 implementation for client-side web programming" +HOMEPAGE="http://www.brython.info" +SRC_URI="https://github.com/${PN}-dev/${PN}/archive/${PV}.zip -> ${P}.zip" + +LICENSE="BSD" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="" + +RDEPEND="dev-lang/python:*" + +DEPEND="${RDEPEND}" + +need_httpd_cgi + +src_install() { + dodoc LICENCE.txt README.md + rm -v LICENCE.txt README.md bower.json .{git*,tra*} server.py || die + + webapp_src_preinst + + insinto "${MY_HTDOCSDIR}" + doins -r . + + webapp_src_install +}