View | Details | Raw Unified | Return to bug 260444 | Differences between
and this patch

Collapse All | Expand All

(-)b/devel/Makefile (+1 lines)
Lines 4535-4540 Link Here
4535
    SUBDIR += py-freezegun
4535
    SUBDIR += py-freezegun
4536
    SUBDIR += py-frictionless
4536
    SUBDIR += py-frictionless
4537
    SUBDIR += py-frozendict
4537
    SUBDIR += py-frozendict
4538
    SUBDIR += py-frozenlist
4538
    SUBDIR += py-fs
4539
    SUBDIR += py-fs
4539
    SUBDIR += py-fs2
4540
    SUBDIR += py-fs2
4540
    SUBDIR += py-fsspec
4541
    SUBDIR += py-fsspec
(-)b/devel/py-frozenlist/Makefile (+18 lines)
Added Link Here
1
PORTNAME=	frozenlist
2
PORTVERSION=	1.2.0
3
CATEGORIES=	devel python
4
MASTER_SITES=	CHEESESHOP
5
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
6
7
MAINTAINER=	python@FreeBSD.org
8
COMMENT=	A list-like structure which implements collections.abc.MutableSequence
9
10
LICENSE=	APACHE20
11
LICENSE_FILE=	${WRKSRC}/LICENSE
12
13
USES=		python:3.6+
14
USE_PYTHON=	autoplist distutils
15
16
NO_ARCH=	yes
17
18
.include <bsd.port.mk>
(-)b/devel/py-frozenlist/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1639526623
2
SHA256 (frozenlist-1.2.0.tar.gz) = 68201be60ac56aff972dc18085800b6ee07973c49103a8aba669dee3d71079de
3
SIZE (frozenlist-1.2.0.tar.gz) = 65634
(-)b/devel/py-frozenlist/pkg-descr (+6 lines)
Added Link Here
1
The list is mutable until FrozenList.freeze() is called, after which
2
list modifications raise RuntimeError. A FrozenList instance is
3
hashable, but only when frozen. Attempts to hash a non-frozen instance
4
will result in a RuntimeError exception.
5
6
WWW: https://github.com/aio-libs/frozenlist

Return to bug 260444