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 0E9061382C5 for ; Wed, 17 Feb 2021 15:40:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 51DC4E084E; Wed, 17 Feb 2021 15:40:49 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 3BFC2E084E for ; Wed, 17 Feb 2021 15:40:49 +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 11AA53417DA for ; Wed, 17 Feb 2021 15:40:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 544574AF for ; Wed, 17 Feb 2021 15:40:46 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1613576427.e0d0aebffed56852120a91a39e112d9ad77e56a1.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/sniffio/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/sniffio/Manifest dev-python/sniffio/metadata.xml dev-python/sniffio/sniffio-1.2.0.ebuild X-VCS-Directories: dev-python/sniffio/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: e0d0aebffed56852120a91a39e112d9ad77e56a1 X-VCS-Branch: dev Date: Wed, 17 Feb 2021 15:40:46 +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: ce5a4c25-d966-4264-92cc-45c53217cac3 X-Archives-Hash: 19ab2abc9db876ea5768bbe45d4d7f9b commit: e0d0aebffed56852120a91a39e112d9ad77e56a1 Author: Andrew Ammerlaan riseup net> AuthorDate: Wed Feb 17 15:38:05 2021 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Wed Feb 17 15:40:27 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e0d0aebf Revert "DO NOT MERGE THIS TO MASTER: check if we can make the test fail" This reverts commit 31bde09bcc9d5286833d49c3302bbae289793f78. the check failed sucessfully Signed-off-by: Andrew Ammerlaan riseup.net> dev-python/sniffio/Manifest | 1 - dev-python/sniffio/metadata.xml | 12 ------------ dev-python/sniffio/sniffio-1.2.0.ebuild | 31 ------------------------------- 3 files changed, 44 deletions(-) diff --git a/dev-python/sniffio/Manifest b/dev-python/sniffio/Manifest deleted file mode 100644 index d096430d..00000000 --- a/dev-python/sniffio/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST sniffio-1.2.0.gh.tar.gz 17335 BLAKE2B 0d67baa18702ac38932680bdc741c87ee0a31342cc752c1463a7f90720ea0ebf6d62ef682a042c58e8fe96456e1461638e0f02c6f60da5f5e0d07464be27a4a3 SHA512 8e1dd2bb6fc22ee5824adfffe688ff0621b8c1ef5daea594dedce13d5e04a498e05816bb32e9bbed206a653a330ff710df57c888ddcff00a6254eafddc538273 diff --git a/dev-python/sniffio/metadata.xml b/dev-python/sniffio/metadata.xml deleted file mode 100644 index 0c53f9f9..00000000 --- a/dev-python/sniffio/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - python@gentoo.org - - - - python-trio/sniffio - sniffio - - diff --git a/dev-python/sniffio/sniffio-1.2.0.ebuild b/dev-python/sniffio/sniffio-1.2.0.ebuild deleted file mode 100644 index 89f3dc32..00000000 --- a/dev-python/sniffio/sniffio-1.2.0.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..9} ) -inherit distutils-r1 - -DESCRIPTION="Sniff out which async library your code is running under" -HOMEPAGE=" - https://github.com/python-trio/sniffio/ - https://pypi.org/project/sniffio/" -SRC_URI=" - https://github.com/python-trio/sniffio/archive/v${PV}.tar.gz - -> ${P}.gh.tar.gz" - -LICENSE="|| ( Apache-2.0 MIT )" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -distutils_enable_tests pytest - -python_test() { - local deselect=( - # curio is not packaged - sniffio/_tests/test_sniffio.py::test_curio - ) - - pytest -vv ${deselect[@]/#/--deselect } || - die "Tests failed with ${EPYTHON}" -}