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 DA3281399D4 for ; Wed, 2 Sep 2015 11:05:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 72AD21429F; Wed, 2 Sep 2015 11:05:42 +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 7D8BE1429F for ; Wed, 2 Sep 2015 11:05:41 +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 B317C340739 for ; Wed, 2 Sep 2015 11:05:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 106C4182 for ; Wed, 2 Sep 2015 11:05:37 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1441191931.8ba7f416e8c1bd2f45fbf75dfbd9e9c03ec03245.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/webcolors/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/webcolors/Manifest dev-python/webcolors/metadata.xml dev-python/webcolors/webcolors-1.5.ebuild X-VCS-Directories: dev-python/webcolors/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 8ba7f416e8c1bd2f45fbf75dfbd9e9c03ec03245 X-VCS-Branch: master Date: Wed, 2 Sep 2015 11:05: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: 913c238c-21be-4f48-8015-089a54e8e7a7 X-Archives-Hash: 02da183dc800e7384023e8bd82b13e90 commit: 8ba7f416e8c1bd2f45fbf75dfbd9e9c03ec03245 Author: Justin Lecher gentoo org> AuthorDate: Wed Sep 2 10:38:44 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Sep 2 11:05:31 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ba7f416 dev-python/webcolors: New package, ebuild written by me Package-Manager: portage-2.2.20.1 Signed-off-by: Justin Lecher gentoo.org> dev-python/webcolors/Manifest | 1 + dev-python/webcolors/metadata.xml | 5 +++++ dev-python/webcolors/webcolors-1.5.ebuild | 26 ++++++++++++++++++++++++++ 3 files changed, 32 insertions(+) diff --git a/dev-python/webcolors/Manifest b/dev-python/webcolors/Manifest new file mode 100644 index 0000000..9d49735 --- /dev/null +++ b/dev-python/webcolors/Manifest @@ -0,0 +1 @@ +DIST webcolors-1.5.tar.gz 29960 SHA256 b3b1c3a41e9c69d1982b76b6531239115519f91cc034a24e975749832dc51b8e SHA512 84ce8cbbbdb4523bb146cf379845b549570623411a56651a7f9b9687152b7adc9dc42a3a0f684b55b61fb7a3d51d49d3871100b56725c86a727e3374b53c84b6 WHIRLPOOL f779a1777bb1ad9dac92f4dc75981be7274864291e7fd53ad59aa11b2ebd3eab2ff35ec68944fe7d57658976ac7b29f0708a256fc0e73a96535af99a4313ad7e diff --git a/dev-python/webcolors/metadata.xml b/dev-python/webcolors/metadata.xml new file mode 100644 index 0000000..301d220 --- /dev/null +++ b/dev-python/webcolors/metadata.xml @@ -0,0 +1,5 @@ + + + + python + diff --git a/dev-python/webcolors/webcolors-1.5.ebuild b/dev-python/webcolors/webcolors-1.5.ebuild new file mode 100644 index 0000000..d81e75b --- /dev/null +++ b/dev-python/webcolors/webcolors-1.5.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 python3_{3,4} ) + +inherit distutils-r1 + +DESCRIPTION="Color names and value formats defined by the HTML and CSS specifications" +HOMEPAGE="https://pypi.python.org/pypi/webcolors https://github.com/ubernostrum/webcolors" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="BSD" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +DEPEND=" + test? ( dev-python/nose[${PYTHON_USEDEP}] ) + " + +python_test() { + nosetests --verbose || die +}