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 9785F138334 for ; Thu, 22 Aug 2019 01:06:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 92E97E098E; Thu, 22 Aug 2019 01:06:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 6FEF4E098E for ; Thu, 22 Aug 2019 01:06:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 4464034A0C3 for ; Thu, 22 Aug 2019 01:06:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5CF8A770 for ; Thu, 22 Aug 2019 01:06:40 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1566435964.6ad93299f63bcc0fdf5d3230254e71ebb7b651eb.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/loguru/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/loguru/Manifest dev-python/loguru/loguru-0.3.1.ebuild X-VCS-Directories: dev-python/loguru/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 6ad93299f63bcc0fdf5d3230254e71ebb7b651eb X-VCS-Branch: master Date: Thu, 22 Aug 2019 01:06:40 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0327362f-21d4-4223-84d4-ba3863fb21c7 X-Archives-Hash: ef52f2830028889528f0057932a14738 commit: 6ad93299f63bcc0fdf5d3230254e71ebb7b651eb Author: Georgy Yakovlev gentoo org> AuthorDate: Thu Aug 22 01:06:04 2019 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Thu Aug 22 01:06:04 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ad93299 dev-python/loguru: drop 0.3.1 Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Georgy Yakovlev gentoo.org> dev-python/loguru/Manifest | 1 - dev-python/loguru/loguru-0.3.1.ebuild | 47 ----------------------------------- 2 files changed, 48 deletions(-) diff --git a/dev-python/loguru/Manifest b/dev-python/loguru/Manifest index 96970fa6497..1ff209a5d79 100644 --- a/dev-python/loguru/Manifest +++ b/dev-python/loguru/Manifest @@ -1,2 +1 @@ -DIST loguru-0.3.1.tar.gz 377834 BLAKE2B 4402a6dfd8e36efb966eb0f31ba2161183c03a7072f45ef86110587b1f3653e4711c0461d39d5e0047fb7b84c7da417c011644ffee815f82bf1f4847588b17b8 SHA512 b0b75aa265839be0a522101671bf9992c1fe548439988a5c2feb58702be77944137e4f78920ec5dd4fe5953daf7160714a4de940527d0987dba4907ac27a0e15 DIST loguru-0.3.2.tar.gz 378160 BLAKE2B 83301f5bb79d0edb20d211e8ee4d05b3b93a0a9f13f13b2ff103f1e9759f227b80e5571ccda48098a1e45658d99a54768fdf456ffef7a13d08375ce62ad876e1 SHA512 e78f5f43fbf4891ff9b9a21c1a29e4f02877f73a09b7b7df25076bffb25a094eef561c469b22cbb999979de4dbf81df2298681fa219dc684f15fe7c52ecb5359 diff --git a/dev-python/loguru/loguru-0.3.1.ebuild b/dev-python/loguru/loguru-0.3.1.ebuild deleted file mode 100644 index f3f34085887..00000000000 --- a/dev-python/loguru/loguru-0.3.1.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{5,6,7} ) - -inherit distutils-r1 - -DESCRIPTION="Python logging made (stupidly) simple" -HOMEPAGE="https://github.com/Delgan/loguru" -SRC_URI="https://github.com/Delgan/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc test" - -RDEPEND=">=dev-python/colorama-0.3.4[${PYTHON_USEDEP}]" - -DEPEND=" - doc? ( - dev-python/sphinx[${PYTHON_USEDEP}] - dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}] - ) - test? ( - ${RDEPEND} - >=dev-python/colorama-0.3.4[${PYTHON_USEDEP}] - >=dev-python/pytest-4.5.0[${PYTHON_USEDEP}] - ) -" - -BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" - -python_compile_all() { - use doc && esetup.py build_sphinx -} - -python_install_all() { - use doc && HTML_DOCS=( "${BUILD_DIR}"/sphinx/html/. ) - distutils-r1_python_install_all -} - -python_test() { - distutils_install_for_testing - pytest -vv || die "Tests failed with ${EPYTHON}" -}