diff options
author | adam <adam@pkgsrc.org> | 2022-04-26 08:20:06 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2022-04-26 08:20:06 +0000 |
commit | a1646bc2eed2c50cfc3f5f39028b3bcebce86e39 (patch) | |
tree | 31edaad256a49854037e0ab190f48d394fc19a6f /converters | |
parent | 405213e79fcadae8b19fb5c18779bad5234c29fc (diff) | |
download | pkgsrc-a1646bc2eed2c50cfc3f5f39028b3bcebce86e39.tar.gz |
py-zbase32: removed
Diffstat (limited to 'converters')
-rw-r--r-- | converters/Makefile | 3 | ||||
-rw-r--r-- | converters/py-zbase32/DESCR | 24 | ||||
-rw-r--r-- | converters/py-zbase32/Makefile | 22 | ||||
-rw-r--r-- | converters/py-zbase32/PLIST | 25 | ||||
-rw-r--r-- | converters/py-zbase32/distinfo | 5 |
5 files changed, 1 insertions, 78 deletions
diff --git a/converters/Makefile b/converters/Makefile index 367fb0813d6..0615d6ec851 100644 --- a/converters/Makefile +++ b/converters/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.193 2022/02/23 16:53:19 pho Exp $ +# $NetBSD: Makefile,v 1.194 2022/04/26 08:20:06 adam Exp $ # COMMENT= Document format and character code converters @@ -126,7 +126,6 @@ SUBDIR+= py-reedsolo SUBDIR+= py-simplejson SUBDIR+= py-unicode-slugify SUBDIR+= py-yenc -SUBDIR+= py-zbase32 SUBDIR+= py-zfec SUBDIR+= py-zhCodecs SUBDIR+= py27-cairosvg diff --git a/converters/py-zbase32/DESCR b/converters/py-zbase32/DESCR deleted file mode 100644 index 66495605e6d..00000000000 --- a/converters/py-zbase32/DESCR +++ /dev/null @@ -1,24 +0,0 @@ -An alternate base32 encoder (not RFC 3548 compliant). - -The rationale for base-32 encoding in RFC 3548 [1] is as written therein: "The -Base 32 encoding is designed to represent arbitrary sequences of octets in a -form that needs to be case insensitive but need not be humanly readable.". - -The rationale for our encoding is different -- it is to represent arbitrary -sequences of octets in a form that is as convenient as possible for human -users to manipulate. In particular, z-base-32 was created in order to serve -the Mnet project [3], where 30-octet cryptographic values are encoded into -URIs for humans to manipulate. Anticipated uses of these URIs include cut- -and-paste, text editing (e.g. in HTML files), manual transcription via a -keyboard, manual transcription via pen-and-paper, vocal transcription over -phone or radio, etc. - -The desiderata for such an encoding are: - - * minimizing transcription errors -- e.g. the well-known problem of confusing - `0' with `O' - * embedding into other structures -- e.g. search engines, structured or - marked-up text, file systems, command shells - * brevity -- Shorter URLs are better than longer ones. - * ergonomics -- Human users (especially non-technical ones) should find the - URIs as easy and pleasant as possible. The uglier the URI looks, the worse. diff --git a/converters/py-zbase32/Makefile b/converters/py-zbase32/Makefile deleted file mode 100644 index 8005046705e..00000000000 --- a/converters/py-zbase32/Makefile +++ /dev/null @@ -1,22 +0,0 @@ -# $NetBSD: Makefile,v 1.18 2022/01/04 20:52:40 wiz Exp $ - -DISTNAME= zbase32-1.1.5 -PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 1 -CATEGORIES= converters -MASTER_SITES= ${MASTER_SITE_PYPI:=z/zbase32/} - -MAINTAINER= gdt@NetBSD.org -HOMEPAGE= https://pypi.python.org/pypi/zbase32/ -COMMENT= Alternate base32 encoder (not RFC 3548 compliant) -LICENSE= modified-bsd - -REPLACE_INTERPRETER+= python -REPLACE.python.old= /usr/bin/env python -REPLACE.python.new= ${PYTHONBIN} -REPLACE_FILES.python= zbase32/zbase32.py zbase32/test/test_zbase32.py - -PYTHON_VERSIONS_ACCEPTED= 27 # not yet ported as of 1.1.5 - -.include "../../lang/python/egg.mk" -.include "../../mk/bsd.pkg.mk" diff --git a/converters/py-zbase32/PLIST b/converters/py-zbase32/PLIST deleted file mode 100644 index b107fc1ccdf..00000000000 --- a/converters/py-zbase32/PLIST +++ /dev/null @@ -1,25 +0,0 @@ -@comment $NetBSD: PLIST,v 1.2 2014/01/19 22:22:56 wiz Exp $ -${PYSITELIB}/${EGG_INFODIR}/PKG-INFO -${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt -${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt -${PYSITELIB}/${EGG_INFODIR}/not-zip-safe -${PYSITELIB}/${EGG_INFODIR}/requires.txt -${PYSITELIB}/${EGG_INFODIR}/top_level.txt -${PYSITELIB}/zbase32/__init__.py -${PYSITELIB}/zbase32/__init__.pyc -${PYSITELIB}/zbase32/__init__.pyo -${PYSITELIB}/zbase32/_version.py -${PYSITELIB}/zbase32/_version.pyc -${PYSITELIB}/zbase32/_version.pyo -${PYSITELIB}/zbase32/test/__init__.py -${PYSITELIB}/zbase32/test/__init__.pyc -${PYSITELIB}/zbase32/test/__init__.pyo -${PYSITELIB}/zbase32/test/test_zbase32.py -${PYSITELIB}/zbase32/test/test_zbase32.pyc -${PYSITELIB}/zbase32/test/test_zbase32.pyo -${PYSITELIB}/zbase32/zbase32.py -${PYSITELIB}/zbase32/zbase32.pyc -${PYSITELIB}/zbase32/zbase32.pyo -${PYSITELIB}/zbase32/zbase32id.py -${PYSITELIB}/zbase32/zbase32id.pyc -${PYSITELIB}/zbase32/zbase32id.pyo diff --git a/converters/py-zbase32/distinfo b/converters/py-zbase32/distinfo deleted file mode 100644 index ebdbf83db02..00000000000 --- a/converters/py-zbase32/distinfo +++ /dev/null @@ -1,5 +0,0 @@ -$NetBSD: distinfo,v 1.7 2021/10/26 10:06:50 nia Exp $ - -BLAKE2s (zbase32-1.1.5.tar.gz) = 35cf2f6acc1bb00dfec3eae6790a2dc5851c7f52776931d10479bc8c547b060e -SHA512 (zbase32-1.1.5.tar.gz) = b2b049cdbc312cb56656b611d726527cdb0f598e5c8e0a646d1a144f863698404d8784d477f64402b0e3efd2d0ef5927a74ff0370a1742c1b7a5ad257bdc4f11 -Size (zbase32-1.1.5.tar.gz) = 21745 bytes |