1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-18 08:02:48 +00:00

devel/py-itemadapter: Common interface for data container classes in Python

The ItemAdapter class is a wrapper for data container objects, providing a
common interface to handle objects of different types in an uniform manner,
regardless of their underlying implementation.

WWW: https://pypi.org/project/itemadapter/
This commit is contained in:
Danilo G. Baio 2021-05-30 08:02:34 -03:00
parent be1be4cd15
commit 6822b0ad83
4 changed files with 27 additions and 0 deletions

View File

@ -4555,6 +4555,7 @@
SUBDIR += py-isodate
SUBDIR += py-isort
SUBDIR += py-itanium_demangler
SUBDIR += py-itemadapter
SUBDIR += py-iterpipes
SUBDIR += py-itypes
SUBDIR += py-jaraco

View File

@ -0,0 +1,18 @@
PORTNAME= itemadapter
DISTVERSION= 0.2.0
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= dbaio@FreeBSD.org
COMMENT= Common interface for data container classes in Python
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= python:3.6+
USE_PYTHON= autoplist concurrent distutils
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1622321907
SHA256 (itemadapter-0.2.0.tar.gz) = cb7aaa577fefe2aa6f229ccf4d058e05f44e0178a98c8fb70ee4d95acfabb423
SIZE (itemadapter-0.2.0.tar.gz) = 12197

View File

@ -0,0 +1,5 @@
The ItemAdapter class is a wrapper for data container objects, providing a
common interface to handle objects of different types in an uniform manner,
regardless of their underlying implementation.
WWW: https://pypi.org/project/itemadapter/