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 8FD23138331 for ; Thu, 22 Feb 2018 14:22:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 09091E0858; Thu, 22 Feb 2018 14:22:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E11AAE0858 for ; Thu, 22 Feb 2018 14:22:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 0DC32335C4F for ; Thu, 22 Feb 2018 14:22:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D2F0238 for ; Thu, 22 Feb 2018 14:22:35 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1519309342.bba9c1ff011773be5b13ce2340d2c5ca32beb39c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/constantly/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/constantly/Manifest dev-python/constantly/constantly-15.1.0-r1.ebuild X-VCS-Directories: dev-python/constantly/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: bba9c1ff011773be5b13ce2340d2c5ca32beb39c X-VCS-Branch: master Date: Thu, 22 Feb 2018 14:22:35 +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: 16851c55-8039-4ce7-b726-c79dbcf3144f X-Archives-Hash: 4b6a878ed8f631ffb3dda1a57d468965 commit: bba9c1ff011773be5b13ce2340d2c5ca32beb39c Author: Michał Górny gentoo org> AuthorDate: Thu Feb 22 14:19:28 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Feb 22 14:22:22 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bba9c1ff dev-python/constantly: Enable tests dev-python/constantly/Manifest | 1 + dev-python/constantly/constantly-15.1.0-r1.ebuild | 27 +++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/dev-python/constantly/Manifest b/dev-python/constantly/Manifest index 7955ff3948d..6c7a079e294 100644 --- a/dev-python/constantly/Manifest +++ b/dev-python/constantly/Manifest @@ -1 +1,2 @@ +DIST constantly-15.1.0.gh.tar.gz 40635 BLAKE2B d400336901f7df7b1535a0e46fe092a2542546964ea144014210e8be3807aabfe8e8370e94f426061a0c3a6257ee66a6ceb963b159717def7e047405368d910e SHA512 eeaa74552fe8e01c40566ac3c8b3d41085f800863ac516e30fe1242f40d3401e4e872279149776f29d3ba78a7a16337a794ad26230efab4dd1847d42bffa81ce DIST constantly-15.1.0.tar.gz 21465 BLAKE2B fc3781e521f3a9988567c437e456e2f8215b8d61115e076d4f9fc52926125540f59bad457413105422d31184506bf7fd3fa38711dae8a8057b38941f2c5584bb SHA512 ccc6f41b0bd552d2bb5346cc9d64cd7b91a59dd30e0cf66b01e82f7e0e079c01c34bc6c66b69c5fee9d2eed35ae5455258d309e66278d708d5f576ddf2e00ac3 diff --git a/dev-python/constantly/constantly-15.1.0-r1.ebuild b/dev-python/constantly/constantly-15.1.0-r1.ebuild new file mode 100644 index 00000000000..baef122ff14 --- /dev/null +++ b/dev-python/constantly/constantly-15.1.0-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) + +inherit distutils-r1 + +DESCRIPTION="Symbolic constants in Python" +HOMEPAGE="https://github.com/twisted/constantly https://pypi.python.org/pypi/constantly" +SRC_URI="https://github.com/twisted/constantly/archive/${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="test" + +RDEPEND="" +DEPEND=" + ${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/twisted[${PYTHON_USEDEP}] ) +" + +python_test() { + esetup.py test +}