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 1A4DE139694 for ; Thu, 18 May 2017 21:58:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 69314E0BED; Thu, 18 May 2017 21:58:23 +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 438D8E0BED for ; Thu, 18 May 2017 21:58:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 68D043416A5 for ; Thu, 18 May 2017 21:58:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C72BA743E for ; Thu, 18 May 2017 21:58:20 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1495144671.697032ee4ff858dc1467daad7bf2ba02ab5f1103.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pp/Manifest dev-python/pp/pp-1.6.5.ebuild X-VCS-Directories: dev-python/pp/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 697032ee4ff858dc1467daad7bf2ba02ab5f1103 X-VCS-Branch: master Date: Thu, 18 May 2017 21:58:20 +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: d2b957c3-b3b9-403a-97ce-2703dc070e83 X-Archives-Hash: 895c122856fd6e94a72bc40ac80c5600 commit: 697032ee4ff858dc1467daad7bf2ba02ab5f1103 Author: Patrice Clement gentoo org> AuthorDate: Thu May 18 21:57:51 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Thu May 18 21:57:51 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=697032ee dev-python/pp: version bump. Package-Manager: Portage-2.3.3, Repoman-2.3.1 dev-python/pp/Manifest | 1 + dev-python/pp/pp-1.6.5.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/dev-python/pp/Manifest b/dev-python/pp/Manifest index 15fe775c467..ab5e5d5d3bf 100644 --- a/dev-python/pp/Manifest +++ b/dev-python/pp/Manifest @@ -1 +1,2 @@ DIST pp-1.6.4.tar.bz2 27166 SHA256 7f932d8eff4b35357bf5b48c1abd7734a955c98a50138c13b7b9eb36aadaf408 SHA512 213322aaa60e1485b855e96336a01c45407185892dede693c013a200554656ce08799ee23ee4a0cf628b382b98e0519445c99dbb89f209b1b907ac0a1fc8147e WHIRLPOOL fce8fe3ceaeb9e1d4133734107924faec6bcc5b4d862a37629443d0ec1774504956271dfa1af7de8dd2c06012e488e99dbe1220705fe3f4ae7c8cc8f721211da +DIST pp-1.6.5.tar.bz2 27185 SHA256 add7272e135d6cf817b0196fcfe911c75b7e6662f6a410b016cb2955fc2468fd SHA512 b72c3e12b770f386b213a0325748a7e99d225a608a5453929004b06aaaa8fb69b40054a3bcb1d8b30a640f7db7a945b0ae8c1b1a1d753855668553d18a18bbfe WHIRLPOOL 7257f21b45368586ef3b76bc29e68b64e59ba624a264c7fcef96d415289c8b878ecebbc88678f0997d20a1d56f6d985dea0cf760ea0044e4f7b754a365c0946a diff --git a/dev-python/pp/pp-1.6.5.ebuild b/dev-python/pp/pp-1.6.5.ebuild new file mode 100644 index 00000000000..4370467ae6a --- /dev/null +++ b/dev-python/pp/pp-1.6.5.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="Parallel and distributed programming for Python" +HOMEPAGE="http://www.parallelpython.com/" +SRC_URI="http://www.parallelpython.com/downloads/${PN}/${P}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc examples" + +python_install_all() { + doman doc/ppserver.1 + use doc && HTML_DOCS=( doc/ppdoc.html ) + + if use examples; then + insinto /usr/share/doc/${PF} + doins -r "${S}/examples" + fi + distutils-r1_python_install_all +}