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 4877413835A for ; Fri, 19 Feb 2021 16:37:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 51A5FE0823; Fri, 19 Feb 2021 16:37:50 +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 3DAA9E0823 for ; Fri, 19 Feb 2021 16:37:50 +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 5C727340E72 for ; Fri, 19 Feb 2021 16:37:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B25014EA for ; Fri, 19 Feb 2021 16:37:47 +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: <1613752423.bf14c7be313f03a903f08e9553d8834fdadfde2f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyusb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyusb/Manifest dev-python/pyusb/pyusb-1.1.0.ebuild X-VCS-Directories: dev-python/pyusb/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: bf14c7be313f03a903f08e9553d8834fdadfde2f X-VCS-Branch: master Date: Fri, 19 Feb 2021 16:37:47 +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: bf9b2d51-ba8e-4cea-beba-4c7ec97b6393 X-Archives-Hash: 6e878333dbf4795e7eab083c049df492 commit: bf14c7be313f03a903f08e9553d8834fdadfde2f Author: Michał Górny gentoo org> AuthorDate: Fri Feb 19 16:33:43 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Feb 19 16:33:43 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf14c7be dev-python/pyusb: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/pyusb/Manifest | 1 - dev-python/pyusb/pyusb-1.1.0.ebuild | 28 ---------------------------- 2 files changed, 29 deletions(-) diff --git a/dev-python/pyusb/Manifest b/dev-python/pyusb/Manifest index 412b55c67a9..21d7e354153 100644 --- a/dev-python/pyusb/Manifest +++ b/dev-python/pyusb/Manifest @@ -1,2 +1 @@ -DIST pyusb-1.1.0.tar.gz 78752 BLAKE2B ee541afedca7d5dca345c6addee2702ccb7408bb9a2d8b23fe1eb47f067a93309599894e364c0bdcef3e5348bd13cc39f240257efd4664679017f61b87853217 SHA512 0769670e6ebd8b31f2494258eca5d6e470ad3cb17663cc14b8b3a8136ea24caa23f86d81c60c501b88a9bc94b0de6a45aac43c6c5f140e65fd03a589b4d18179 DIST pyusb-1.1.1.tar.gz 74746 BLAKE2B 795acafae3193e1a415baeb634554c8fdec3f4baa45a61a3eac9e1af4a84634cc540d421b7d8ad20142912fbef6ba53684e2e5b008e48f3e89406a493918ab20 SHA512 19aa82dcb9421d536063a975414855d1474f44b33dc4039e9a001be795061dbd60ed576acb605ae6bab7a0fe10834e5507408757546c7edcd50b43687a65a287 diff --git a/dev-python/pyusb/pyusb-1.1.0.ebuild b/dev-python/pyusb/pyusb-1.1.0.ebuild deleted file mode 100644 index 508d193f7cc..00000000000 --- a/dev-python/pyusb/pyusb-1.1.0.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..9} ) -DISTUTILS_USE_SETUPTOOLS=bdepend - -inherit distutils-r1 - -DESCRIPTION="USB support for Python" -HOMEPAGE="https://pyusb.github.io/pyusb/ https://pypi.org/project/pyusb/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~ppc x86" - -### This version is compatible with both 0.X and 1.X versions of libusb -DEPEND="virtual/libusb:=" -RDEPEND="${DEPEND}" - -DOCS=( README.rst docs/tutorial.rst ) - -python_test() { - cd tests || die - "${PYTHON}" testall.py || die "Tests failed with ${EPYTHON}" -}