Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/webcolors/
Date: Sun, 29 Jul 2018 22:34:53
Message-Id: 1532903680.1c7ef415bb7a589b9ebbf00c236722aefbd1f500.monsieurp@gentoo
1 commit: 1c7ef415bb7a589b9ebbf00c236722aefbd1f500
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 29 21:59:26 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 29 22:34:40 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c7ef415
7
8 dev-python/webcolors: version bump.
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 dev-python/webcolors/Manifest | 1 +
13 dev-python/webcolors/webcolors-1.8.1.ebuild | 23 +++++++++++++++++++++++
14 2 files changed, 24 insertions(+)
15
16 diff --git a/dev-python/webcolors/Manifest b/dev-python/webcolors/Manifest
17 index 4beb0dea5a1..c65d510e6e4 100644
18 --- a/dev-python/webcolors/Manifest
19 +++ b/dev-python/webcolors/Manifest
20 @@ -1 +1,2 @@
21 DIST webcolors-1.5.tar.gz 29960 BLAKE2B 0d46fa57b54525594547b1224801308961f9265dc76866153752e411dcf81d3ca2566cb289bb9f0cd486bd6ec1ffe7cf88f99a04f5554ae43f183175c9eb925e SHA512 84ce8cbbbdb4523bb146cf379845b549570623411a56651a7f9b9687152b7adc9dc42a3a0f684b55b61fb7a3d51d49d3871100b56725c86a727e3374b53c84b6
22 +DIST webcolors-1.8.1.tar.gz 33118 BLAKE2B e16ff2d9549eb09638722a6513749ec0bc91cd63ba69c19667ddea9c07aae7f9fa2b0fd3390a9b0f6f420f245ff3157d86a585301ba77e724146a7cee0ef4ad8 SHA512 45ddb4ec030206c3ff1edb7de6b8ec1b5f2f9ef5068f37a7c43b66531a2dc6b290cced2af1ca18794aaa9ba17f297022b2f9cc7a92a74ee9b68f758abf7c104e
23
24 diff --git a/dev-python/webcolors/webcolors-1.8.1.ebuild b/dev-python/webcolors/webcolors-1.8.1.ebuild
25 new file mode 100644
26 index 00000000000..d3a857f4979
27 --- /dev/null
28 +++ b/dev-python/webcolors/webcolors-1.8.1.ebuild
29 @@ -0,0 +1,23 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} pypy pypy3 )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Color names and value formats defined by the HTML and CSS specifications"
40 +HOMEPAGE="https://pypi.org/project/webcolors/ https://github.com/ubernostrum/webcolors"
41 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 +
43 +SLOT="0"
44 +LICENSE="BSD"
45 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
46 +IUSE="test"
47 +
48 +DEPEND="test? ( dev-python/nose[${PYTHON_USEDEP}] )"
49 +
50 +python_test() {
51 + nosetests --verbose || die
52 +}