Add textproc/py-ebcdic: Additional EBCDIC codecs

ebcdic is a Python package adding additional EBCDIC codecs for data
exchange with legacy system. It works with Python 2.7 and Python
3.4+.

EBCDIC is short for Extended Binary Coded Decimal Interchange Code
and is a family of character encodings that is mainly used on
mainframe computers. There is no real point in using it unless you
have to exchange data with legacy systems that still only support
EBCDIC as character encoding.

WWW: https://github.com/roskakori/CodecMapper

PR:		265762
This commit is contained in:
Jesús Daniel Colmenares Oviedo 2022-09-23 14:04:25 -04:00 committed by Li-Wen Hsu
parent f6c58e8709
commit e62e9ecee2
No known key found for this signature in database
GPG key ID: 82B261B14D3BC7AF
4 changed files with 35 additions and 0 deletions

View file

@ -1314,6 +1314,7 @@
SUBDIR += py-dominate
SUBDIR += py-dparse
SUBDIR += py-duecredit
SUBDIR += py-ebcdic
SUBDIR += py-elasticsearch
SUBDIR += py-elasticsearch-async
SUBDIR += py-elasticsearch-curator

View file

@ -0,0 +1,22 @@
PORTNAME= ebcdic
PORTVERSION= 1.1.1
CATEGORIES= textproc python
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= DtxdF@disroot.org
COMMENT= Additional EBCDIC codecs
WWW= https://github.com/roskakori/CodecMapper
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
USES= python:3.8+
USE_GITHUB= yes
GH_ACCOUNT= roskakori
GH_PROJECT= CodecMapper
GH_TAGNAME= v1.1.1
USE_PYTHON= autoplist distutils unittest
WRKSRC_SUBDIR= ${PORTNAME}
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1659976590
SHA256 (roskakori-CodecMapper-1.1.1-v1.1.1_GH0.tar.gz) = 7a1a77fdc7e87924e42826087bd9c0c4b48b779156c10cabc94eec237739c818
SIZE (roskakori-CodecMapper-1.1.1-v1.1.1_GH0.tar.gz) = 18048

View file

@ -0,0 +1,9 @@
ebcdic is a Python package adding additional EBCDIC codecs for data
exchange with legacy system. It works with Python 2.7 and Python
3.4+.
EBCDIC is short for Extended Binary Coded Decimal Interchange Code
and is a family of character encodings that is mainly used on
mainframe computers. There is no real point in using it unless you
have to exchange data with legacy systems that still only support
EBCDIC as character encoding.