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 F2D83138334 for ; Fri, 24 Aug 2018 06:24:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CCC41E0893; Fri, 24 Aug 2018 06:24:47 +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 A211FE0893 for ; Fri, 24 Aug 2018 06:24:47 +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 85B8B335CA6 for ; Fri, 24 Aug 2018 06:24:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D6CDE37C for ; Fri, 24 Aug 2018 06:24:43 +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: <1535091874.51443d82972d1a63484ea8c515c2ff6720b94d0f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/colorlog/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/colorlog/Manifest dev-python/colorlog/colorlog-3.1.4.ebuild X-VCS-Directories: dev-python/colorlog/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 51443d82972d1a63484ea8c515c2ff6720b94d0f X-VCS-Branch: master Date: Fri, 24 Aug 2018 06:24:43 +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: 83f469d4-1dc2-4307-8c1c-8e2d5bf6c656 X-Archives-Hash: f2d7cb19b0992636759ce2451a6555a7 commit: 51443d82972d1a63484ea8c515c2ff6720b94d0f Author: Michael Seifert digitalernachschub de> AuthorDate: Tue Aug 21 15:18:05 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Aug 24 06:24:34 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51443d82 dev-python/colorlog: Added ebuild for v3.1.4. Closes: https://bugs.gentoo.org/664182 Closes: https://github.com/gentoo/gentoo/pull/9653 dev-python/colorlog/Manifest | 1 + dev-python/colorlog/colorlog-3.1.4.ebuild | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/dev-python/colorlog/Manifest b/dev-python/colorlog/Manifest index e83cd0719c7..43991bc622c 100644 --- a/dev-python/colorlog/Manifest +++ b/dev-python/colorlog/Manifest @@ -1 +1,2 @@ DIST colorlog-2.7.0.tar.gz 10153 BLAKE2B 5e3c1fb3dce5b9a925739777b3f7569cd10094e02385888cdc2865e47bae4dfa0cb9960a3144794fa6cd09c5143adf4df8f18af1c0d9cf561165595e10322053 SHA512 765923004a2e2b0c0e34f7cbf2d79ac7232a13e9aba68166c8ba295303cd7187317d9a34a405a78cc5f7ca0281fc3b653848e419c0b3a0dd473ad0b859216703 +DIST colorlog-3.1.4.tar.gz 14424 BLAKE2B 0434c92044c623dc4b9be4ae3ddc491ccda3db7725894d07125ed19e8f8ae184d8cae27a7adb424e799cf092e66c17089eb193686ef710b5a4789f2f7c75dde6 SHA512 9333e8e5a3237cf3f43d0a86cf93c6252ed52031e685342a1afc411568407a77840946620da429dc384c8f77f7e540339632f15a417ce00a13b40b2d51f1c730 diff --git a/dev-python/colorlog/colorlog-3.1.4.ebuild b/dev-python/colorlog/colorlog-3.1.4.ebuild new file mode 100644 index 00000000000..603f274853c --- /dev/null +++ b/dev-python/colorlog/colorlog-3.1.4.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( pypy{,3} python{2_7,3_{4,5,6,7}} ) + +inherit distutils-r1 + +DESCRIPTION="Log formatting with colors" +HOMEPAGE="https://pypi.org/project/colorlog/ https://github.com/borntyping/python-colorlog" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND="" +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/pytest[${PYTHON_USEDEP}] ) +" + +python_test() { + py.test -vv -p no:logging || die +}