From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 1DFC7138222 for ; Tue, 3 May 2016 09:54:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 82A4A21C001; Tue, 3 May 2016 09:54:48 +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 21EB521C001 for ; Tue, 3 May 2016 09:54:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 7AE1934095A for ; Tue, 3 May 2016 09:54:46 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 078F0331 for ; Tue, 3 May 2016 09:54:41 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1462269269.fdca527edc1849ce7b23cc98a707bb39a2ff1e07.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/nnpy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/nnpy/Manifest dev-python/nnpy/metadata.xml dev-python/nnpy/nnpy-1.1.ebuild X-VCS-Directories: dev-python/nnpy/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: fdca527edc1849ce7b23cc98a707bb39a2ff1e07 X-VCS-Branch: master Date: Tue, 3 May 2016 09:54:41 +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: 7ad280c0-0e84-4fcc-a63b-be2a1c4a8875 X-Archives-Hash: fc5c58e0728fb11869198acfebcbb0f0 commit: fdca527edc1849ce7b23cc98a707bb39a2ff1e07 Author: Alexis Ballier gentoo org> AuthorDate: Tue May 3 09:54:20 2016 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Tue May 3 09:54:29 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdca527e dev-python/nnpy: initial import; ebuild by me Package-Manager: portage-2.2.28 dev-python/nnpy/Manifest | 1 + dev-python/nnpy/metadata.xml | 12 ++++++++++++ dev-python/nnpy/nnpy-1.1.ebuild | 28 ++++++++++++++++++++++++++++ 3 files changed, 41 insertions(+) diff --git a/dev-python/nnpy/Manifest b/dev-python/nnpy/Manifest new file mode 100644 index 0000000..5ec70c1 --- /dev/null +++ b/dev-python/nnpy/Manifest @@ -0,0 +1 @@ +DIST nnpy-1.1.tar.gz 3337 SHA256 5501378bf20862d3b552396314bb57756b1e189de1a7671985b51d033e0c8416 SHA512 099c77b0916507a8e49ac0c0cd8a48d5d99c00d1f762a133f3f6f1e8bb6ed556e13260f4414751a4ea8ba4a847670ff180017a2900e12977cd072d98b7b5133c WHIRLPOOL e1a9568d729c101246330a558a5a4dff88c8a6dccaf8f0d62d9f84ffce070f380c8e57259db2e5960e0e3884cce0a117de1cd39f435cae657ea315eaa4f18f60 diff --git a/dev-python/nnpy/metadata.xml b/dev-python/nnpy/metadata.xml new file mode 100644 index 0000000..6d910c6 --- /dev/null +++ b/dev-python/nnpy/metadata.xml @@ -0,0 +1,12 @@ + + + + + aballier@gentoo.org + Alexis Ballier + + + djc@gentoo.org + Dirkjan Ochtman + + diff --git a/dev-python/nnpy/nnpy-1.1.ebuild b/dev-python/nnpy/nnpy-1.1.ebuild new file mode 100644 index 0000000..5b574dc --- /dev/null +++ b/dev-python/nnpy/nnpy-1.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python{2_7,3_4,3_5} ) + +inherit distutils-r1 + +DESCRIPTION="cffi-based Python bindings for nanomsg" +HOMEPAGE="https://github.com/nanomsg/nnpy" +SRC_URI="https://github.com/nanomsg/nnpy/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND=" + dev-python/cffi[${PYTHON_USEDEP}] + dev-libs/nanomsg +" +RDEPEND="${DEPEND}" + +python_test() { + "${PYTHON}" "${S}/test.py" || die +}