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 0206313835A for ; Tue, 19 Jan 2021 08:02:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ED4CCE088B; Tue, 19 Jan 2021 08:02:27 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 7860CE088B for ; Tue, 19 Jan 2021 08:02:27 +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 16E91340EE3 for ; Tue, 19 Jan 2021 08:02:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4EBFA46B for ; Tue, 19 Jan 2021 08:02:24 +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: <1611042762.377ed28da0df1e6ec22a59774be1c5f39c396a55.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/micawber/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/micawber/Manifest dev-python/micawber/micawber-0.5.1.ebuild X-VCS-Directories: dev-python/micawber/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 377ed28da0df1e6ec22a59774be1c5f39c396a55 X-VCS-Branch: master Date: Tue, 19 Jan 2021 08:02:24 +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: 0a727baa-4c01-4f1b-af78-32a593a319ae X-Archives-Hash: 35c18d8de1344a3d07bb2a03a2e460ef commit: 377ed28da0df1e6ec22a59774be1c5f39c396a55 Author: Michał Górny gentoo org> AuthorDate: Tue Jan 19 07:52:42 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Jan 19 07:52:42 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=377ed28d dev-python/micawber: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/micawber/Manifest | 1 - dev-python/micawber/micawber-0.5.1.ebuild | 28 ---------------------------- 2 files changed, 29 deletions(-) diff --git a/dev-python/micawber/Manifest b/dev-python/micawber/Manifest index d03e580d419..b4926471da9 100644 --- a/dev-python/micawber/Manifest +++ b/dev-python/micawber/Manifest @@ -1,2 +1 @@ -DIST micawber-0.5.1.tar.gz 34210 BLAKE2B cc3be0dfdb52a733ff37f249d589f37812c5f6b641b1dd2092faffcfeff9cd79c3989324def721859584280405a28c046ec98aeee3a89106fec0e3f27ed4fede SHA512 888826ced322a0584d827f7e0c58691281d8147e7c3ca9e940493a8beba41fbf6d005b0ca7c4ee6eb8e9c37edea4fb8244aaea9f553b886b1410d91aecbae4ee DIST micawber-0.5.2.tar.gz 34541 BLAKE2B d123e67ed859a60d102c4653776d0440e410f084087bf27fa56f4976e6e1d06d4f5a7d91bb67b45c6fb99657d6b3cdf6145d3153bc13553b9f4e7892cc7e6d24 SHA512 2bca326f884e88b31a1e019f22d5002316d200f7b273cf2a80ed6240e3fcafc2816f351e8f992905d4b60223061fb096469e905d75ef7c1c45b941d744a1a217 diff --git a/dev-python/micawber/micawber-0.5.1.ebuild b/dev-python/micawber/micawber-0.5.1.ebuild deleted file mode 100644 index 743a6f20ad1..00000000000 --- a/dev-python/micawber/micawber-0.5.1.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7,8} ) -inherit distutils-r1 - -DESCRIPTION="A small library for extracting rich content from urls" -HOMEPAGE="https://github.com/coleifer/micawber/" -SRC_URI="https://github.com/coleifer/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64" -IUSE="test" -RESTRICT="!test? ( test )" - -BDEPEND=" - test? ( - $(python_gen_impl_dep sqlite) - dev-python/beautifulsoup:4[${PYTHON_USEDEP}] - dev-python/django[${PYTHON_USEDEP}] - )" - -python_test() { - "${EPYTHON}" runtests.py || die "Tests failed with ${EPYTHON}" -}