mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-01 11:18:09 -07:00
dev-python/toolz: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
@@ -1,2 +1 @@
|
||||
DIST toolz-0.11.1.tar.gz 64428 BLAKE2B 934f122bbf9e762e72f502f8b9ba8b5aa946b6e2b758e9501c2bc58fefa3443cda4b3e2c423be221643f51b2a12de0961be835ae3a23e97525fa203c969edff4 SHA512 8bea2b75b74d9da988c777577f3ad574192659dcc4bea54ac6d1400a81bef07818c49c8da40028a8c42905f9ab5b5111c50c239fb56f34c315865f90413af68b
|
||||
DIST toolz-0.11.2.tar.gz 65928 BLAKE2B 3a2baddae437272e8f3efb665b63df127b3ec6bc2a68f3381651a1a3a3b45e4de6e575a328306fac95e9261228ee91193effd4aeca8d115f1608cb2561d50f13 SHA512 67e8aaea3f9fb8811027f19aa9cf56ab980e4f9cea43978ed9515662c78a7bea12314054b2c26da483b055382d4b080125c011fc43bc48b0965a6ff8415f7168
|
||||
|
||||
@@ -1,25 +0,0 @@
|
||||
From da81b1e8ab96b22ed81e6414099aba066633f3ff Mon Sep 17 00:00:00 2001
|
||||
From: Erik Welch <erik.n.welch@gmail.com>
|
||||
Date: Thu, 22 Apr 2021 00:20:24 -0500
|
||||
Subject: [PATCH] Support Python 3.10 by adding `anext` signature.
|
||||
|
||||
Fixes #512
|
||||
---
|
||||
.travis.yml | 3 ++-
|
||||
toolz/_signatures.py | 3 +++
|
||||
2 files changed, 5 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/toolz/_signatures.py b/toolz/_signatures.py
|
||||
index 328cea91..3ce1616a 100644
|
||||
--- a/toolz/_signatures.py
|
||||
+++ b/toolz/_signatures.py
|
||||
@@ -45,6 +45,9 @@
|
||||
lambda x: None],
|
||||
all=[
|
||||
lambda iterable: None],
|
||||
+ anext=[
|
||||
+ lambda aiterator: None,
|
||||
+ lambda aiterator, default: None],
|
||||
any=[
|
||||
lambda iterable: None],
|
||||
apply=[
|
||||
@@ -1,24 +0,0 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
PYTHON_COMPAT=( python3_{8..10} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="List processing tools and functional utilities"
|
||||
HOMEPAGE="https://pypi.org/project/toolz/"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
|
||||
|
||||
BDEPEND="
|
||||
dev-python/versioneer[${PYTHON_USEDEP}]"
|
||||
|
||||
distutils_enable_tests pytest
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${P}-py310.patch
|
||||
)
|
||||
Reference in New Issue
Block a user