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 3140C139347 for ; Sat, 24 Jul 2021 17:30:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 743CBE0DD1; Sat, 24 Jul 2021 17:30:13 +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 5D964E0DCF for ; Sat, 24 Jul 2021 17:30:13 +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 ECBF2342ACA for ; Sat, 24 Jul 2021 17:30:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 600F97F3 for ; Sat, 24 Jul 2021 17:30:10 +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: <1627147794.ac06241a3f954e260e37bff5d561bd28e7268392.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/dill/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/dill/Manifest dev-python/dill/dill-0.3.3.ebuild X-VCS-Directories: dev-python/dill/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: ac06241a3f954e260e37bff5d561bd28e7268392 X-VCS-Branch: master Date: Sat, 24 Jul 2021 17:30:10 +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: 38adb27f-a39b-487a-8c1a-e28250483446 X-Archives-Hash: 88cf9af646595dda33407b19bee815f0 commit: ac06241a3f954e260e37bff5d561bd28e7268392 Author: Michał Górny gentoo org> AuthorDate: Sat Jul 24 15:18:54 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jul 24 17:29:54 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac06241a dev-python/dill: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/dill/Manifest | 1 - dev-python/dill/dill-0.3.3.ebuild | 30 ------------------------------ 2 files changed, 31 deletions(-) diff --git a/dev-python/dill/Manifest b/dev-python/dill/Manifest index 5166b150912..4635e25b6cd 100644 --- a/dev-python/dill/Manifest +++ b/dev-python/dill/Manifest @@ -1,2 +1 @@ -DIST dill-0.3.3.gh.tar.gz 149103 BLAKE2B b08830ad1eb47ceb29c6be6ae88ab38338d9a8a325188bc3890b71c7f393792988da4962819f9b82bf7ad9ebd668c96989ef8c55072a2c82483660c4ec01d072 SHA512 bb514c37902412380d99f38293d5cb9d3d6a6643a34e59e6e889c89d845f9b83e9fa3fa9f0a75218575aa56670f287144f2b00abc8359b5fc6cb450351b43b68 DIST dill-0.3.4.gh.tar.gz 152875 BLAKE2B 61c638f0459b94f5cc0dabd9d5fd224c3c010ab6ccc9b7e47943922e7e139bd74c7a5173657febb028fc79632792f807586e271316ad87bb505520163f85a300 SHA512 1b1991909a9782382ecdb2ada13249c8b446d3558de69501280c816f7cd6c6728f9d3303c826461245ab9e42c43c02e4605142f25e09244bb7ccc9ca68a4b565 diff --git a/dev-python/dill/dill-0.3.3.ebuild b/dev-python/dill/dill-0.3.3.ebuild deleted file mode 100644 index e8db905be3d..00000000000 --- a/dev-python/dill/dill-0.3.3.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..10} ) - -inherit distutils-r1 - -DESCRIPTION="Serialize all of python (almost)" -HOMEPAGE="https://pypi.org/project/dill/" -SRC_URI=" - https://github.com/uqfoundation/dill/archive/${P}.tar.gz - -> ${P}.gh.tar.gz" -S=${WORKDIR}/${PN}-${P} - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~arm64 ppc x86 ~amd64-linux ~x86-linux" - -python_test() { - local fail= t - for t in tests/test_*.py; do - ebegin "\t${t}" - "${EPYTHON}" "${t}" - eend || fail=1 - done - - [[ ${fail} ]] && die "Tests fail with ${EPYTHON}" -}