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 95A72138350 for ; Mon, 4 May 2020 11:26:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F28D9E09F1; Mon, 4 May 2020 11:26:32 +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 D63EAE09F1 for ; Mon, 4 May 2020 11:26:32 +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 EF43334F55C for ; Mon, 4 May 2020 11:26:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 97AC8103 for ; Mon, 4 May 2020 11:26:30 +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: <1588591522.e0f761dfcb50932608db3c9220e1adda5471319f.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.3.3.ebuild X-VCS-Directories: dev-python/micawber/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e0f761dfcb50932608db3c9220e1adda5471319f X-VCS-Branch: master Date: Mon, 4 May 2020 11:26:30 +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: 7cdd7086-fd99-471f-9c42-4496fe66c044 X-Archives-Hash: 618e67ea783370668ba3733cee8fb2ab commit: e0f761dfcb50932608db3c9220e1adda5471319f Author: Michał Górny gentoo org> AuthorDate: Mon May 4 11:25:22 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon May 4 11:25:22 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0f761df dev-python/micawber: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/micawber/Manifest | 1 - dev-python/micawber/micawber-0.3.3.ebuild | 29 ----------------------------- 2 files changed, 30 deletions(-) diff --git a/dev-python/micawber/Manifest b/dev-python/micawber/Manifest index 1a7d20829d6..c438816ef5a 100644 --- a/dev-python/micawber/Manifest +++ b/dev-python/micawber/Manifest @@ -1,2 +1 @@ -DIST micawber-0.3.3.tar.gz 32200 BLAKE2B 570c6e59cc73a7ddd878c6c03cba1600159a44cf1b1ce6a2e8d2311e5747352143cc7831a868cd27f68b36d67923860ec3a8c7f36a7a63aeb2c51d08f1fb2c02 SHA512 15f5e3f85e6d3bf44e6a4a3ae975872acb2e9093e15b56a5a3b24573332c811955c84f0ee69d327334b22fa61b29a51ce14657fc7bf2f486268145965c159bc0 DIST micawber-0.5.1.tar.gz 34210 BLAKE2B cc3be0dfdb52a733ff37f249d589f37812c5f6b641b1dd2092faffcfeff9cd79c3989324def721859584280405a28c046ec98aeee3a89106fec0e3f27ed4fede SHA512 888826ced322a0584d827f7e0c58691281d8147e7c3ca9e940493a8beba41fbf6d005b0ca7c4ee6eb8e9c37edea4fb8244aaea9f553b886b1410d91aecbae4ee diff --git a/dev-python/micawber/micawber-0.3.3.ebuild b/dev-python/micawber/micawber-0.3.3.ebuild deleted file mode 100644 index 3c3c076355b..00000000000 --- a/dev-python/micawber/micawber-0.3.3.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -PYTHON_COMPAT=( python3_6 ) -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="examples" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" - -PATCHES=( "${FILESDIR}"/${PN}-0.3.2-remove-examples-from-setup.py.patch ) #555250 - -python_install_all() { - if use examples; then - dodoc -r examples - docompress -x /usr/share/doc/${PF}/examples - fi - - distutils-r1_python_install_all - dodoc -r docs -}