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 0B0DF1388C3 for ; Wed, 6 Jan 2016 20:40:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5C7D3E07FA; Wed, 6 Jan 2016 20:40:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E2129E07FA for ; Wed, 6 Jan 2016 20:40:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A94DC3409F2 for ; Wed, 6 Jan 2016 20:40:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D0A5CEE for ; Wed, 6 Jan 2016 20:40:37 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1452112820.43ac157ad7a76bd268c8d15c8ede109d74a46977.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-event/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/zope-event/Manifest dev-python/zope-event/zope-event-4.1.0.ebuild X-VCS-Directories: dev-python/zope-event/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 43ac157ad7a76bd268c8d15c8ede109d74a46977 X-VCS-Branch: master Date: Wed, 6 Jan 2016 20:40: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: 90230aa2-0833-464d-97a3-20839fe5667e X-Archives-Hash: e02d7cc37ef207b04ceabd259c015312 commit: 43ac157ad7a76bd268c8d15c8ede109d74a46977 Author: Manuel Rüger gentoo org> AuthorDate: Wed Jan 6 20:33:44 2016 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Wed Jan 6 20:40:20 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43ac157a dev-python/zope-event: Version bump Package-Manager: portage-2.2.26 dev-python/zope-event/Manifest | 1 + dev-python/zope-event/zope-event-4.1.0.ebuild | 28 +++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/dev-python/zope-event/Manifest b/dev-python/zope-event/Manifest index 5ec280c..b987a6f 100644 --- a/dev-python/zope-event/Manifest +++ b/dev-python/zope-event/Manifest @@ -1 +1,2 @@ DIST zope.event-4.0.3.tar.gz 390984 SHA256 f5fdf6ca5716f714023358b212f7f435539dea11771603cd90eebf3ad34405f1 SHA512 bc328bb588beea0cdf55d5f36ff5b269d7b75f399b6d595e1df6565bf1d1fbe2d65b63072db26d096a3fc2dfc0fcec747ea7cf8eabe3c4535084347cb149f1e7 WHIRLPOOL 58ce4490fa86c79b30edc3c96d8d9e912b5d692bffe9664a29d2a7963efb90bb6d03acbe0774eb03ac912acfe44cca1c126cc1a840538bd2abcb1848ec972b53 +DIST zope.event-4.1.0.tar.gz 476047 SHA256 dc7a59a2fd91730d3793131a5d261b29e93ec4e2a97f1bc487ce8defee2fe786 SHA512 abb0a2de578546f678eb06160b50e6c301de97d4248baed80cd76cbf666b22962052f82d8a58a3006e72d288866e5d5baec86425ab27a79926b4706ef8d5915e WHIRLPOOL 9f07da6353636371df83e6fbb6d197d14959338ace4565ba1429d8759a26c3894a27e3fdaacecf2760c709a1baecc2128cd4c5430284ac7453dc8898e79d1f68 diff --git a/dev-python/zope-event/zope-event-4.1.0.ebuild b/dev-python/zope-event/zope-event-4.1.0.ebuild new file mode 100644 index 0000000..6880a60 --- /dev/null +++ b/dev-python/zope-event/zope-event-4.1.0.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 +MY_PN=zope.event + +MY_P=${MY_PN}-${PV} +DESCRIPTION="Event publishing / dispatch, used by Zope Component Architecture" +HOMEPAGE="https://github.com/zopefoundation/zope.event http://docs.zope.org/zope.event/" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="ZPL" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="test" + +DEPEND="test? ( dev-python/nose[${PYTHON_USEDEP}] ) + dev-python/setuptools[${PYTHON_USEDEP}]" + +S=${WORKDIR}/${MY_P} + +python_test() { + nosetests || die +}