pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/converters py-confusable_homoglyphs: added version 3.0.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9ed8a04df296
branches:  trunk
changeset: 372576:9ed8a04df296
user:      adam <adam%pkgsrc.org@localhost>
date:      Sun Dec 10 16:34:41 2017 +0000

description:
py-confusable_homoglyphs: added version 3.0.0

diffstat:

 converters/Makefile                          |   3 ++-
 converters/py-confusable_homoglyphs/DESCR    |   9 +++++++++
 converters/py-confusable_homoglyphs/Makefile |  18 ++++++++++++++++++
 converters/py-confusable_homoglyphs/PLIST    |  28 ++++++++++++++++++++++++++++
 converters/py-confusable_homoglyphs/distinfo |   6 ++++++
 5 files changed, 63 insertions(+), 1 deletions(-)

diffs (94 lines):

diff -r 78eb8c1357fd -r 9ed8a04df296 converters/Makefile
--- a/converters/Makefile       Sun Dec 10 16:02:59 2017 +0000
+++ b/converters/Makefile       Sun Dec 10 16:34:41 2017 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.157 2017/09/27 21:16:14 wiz Exp $
+# $NetBSD: Makefile,v 1.158 2017/12/10 16:34:41 adam Exp $
 #
 
 COMMENT=       Document format and character code converters
@@ -100,6 +100,7 @@
 SUBDIR+=       pstotext
 SUBDIR+=       py-cairosvg
 SUBDIR+=       py-chardet
+SUBDIR+=       py-confusable_homoglyphs
 SUBDIR+=       py-jpCodecs
 SUBDIR+=       py-simplejson
 SUBDIR+=       py-yenc
diff -r 78eb8c1357fd -r 9ed8a04df296 converters/py-confusable_homoglyphs/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/converters/py-confusable_homoglyphs/DESCR Sun Dec 10 16:34:41 2017 +0000
@@ -0,0 +1,9 @@
+A homoglyph is one of two or more graphemes, characters, or glyphs with shapes
+that appear identical or very similar wikipedia:Homoglyph
+
+Unicode homoglyphs can be a nuisance on the web. Your most popular client,
+AlaskaJazz, might be upset to be impersonated by a trickster who deliberately
+chose the username AlaskaJazz.
+
+* AlaskaJazz is single script: only Latin characters.
+* AlaskaJazz is mixed-script: the first character is a greek letter.
diff -r 78eb8c1357fd -r 9ed8a04df296 converters/py-confusable_homoglyphs/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/converters/py-confusable_homoglyphs/Makefile      Sun Dec 10 16:34:41 2017 +0000
@@ -0,0 +1,18 @@
+# $NetBSD: Makefile,v 1.1 2017/12/10 16:34:41 adam Exp $
+
+DISTNAME=      confusable_homoglyphs-3.0.0
+PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
+CATEGORIES=    converters python
+MASTER_SITES=  ${MASTER_SITE_PYPI:=c/confusable_homoglyphs/}
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      https://github.com/vhf/confusable_homoglyphs
+COMMENT=       Detect confusable usage of unicode homoglyphs
+LICENSE=       mit
+
+DEPENDS+=      ${PYPKGPREFIX}-click-[0-9]*:../../devel/py-click
+
+USE_LANGUAGES= # none
+
+.include "../../lang/python/egg.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 78eb8c1357fd -r 9ed8a04df296 converters/py-confusable_homoglyphs/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/converters/py-confusable_homoglyphs/PLIST Sun Dec 10 16:34:41 2017 +0000
@@ -0,0 +1,28 @@
+@comment $NetBSD: PLIST,v 1.1 2017/12/10 16:34:41 adam Exp $
+bin/confusable_homoglyphs
+${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
+${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
+${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
+${PYSITELIB}/${EGG_INFODIR}/requires.txt
+${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/confusable_homoglyphs/__init__.py
+${PYSITELIB}/confusable_homoglyphs/__init__.pyc
+${PYSITELIB}/confusable_homoglyphs/__init__.pyo
+${PYSITELIB}/confusable_homoglyphs/_version.py
+${PYSITELIB}/confusable_homoglyphs/_version.pyc
+${PYSITELIB}/confusable_homoglyphs/_version.pyo
+${PYSITELIB}/confusable_homoglyphs/categories.json
+${PYSITELIB}/confusable_homoglyphs/categories.py
+${PYSITELIB}/confusable_homoglyphs/categories.pyc
+${PYSITELIB}/confusable_homoglyphs/categories.pyo
+${PYSITELIB}/confusable_homoglyphs/cli.py
+${PYSITELIB}/confusable_homoglyphs/cli.pyc
+${PYSITELIB}/confusable_homoglyphs/cli.pyo
+${PYSITELIB}/confusable_homoglyphs/confusables.json
+${PYSITELIB}/confusable_homoglyphs/confusables.py
+${PYSITELIB}/confusable_homoglyphs/confusables.pyc
+${PYSITELIB}/confusable_homoglyphs/confusables.pyo
+${PYSITELIB}/confusable_homoglyphs/utils.py
+${PYSITELIB}/confusable_homoglyphs/utils.pyc
+${PYSITELIB}/confusable_homoglyphs/utils.pyo
diff -r 78eb8c1357fd -r 9ed8a04df296 converters/py-confusable_homoglyphs/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/converters/py-confusable_homoglyphs/distinfo      Sun Dec 10 16:34:41 2017 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2017/12/10 16:34:41 adam Exp $
+
+SHA1 (confusable_homoglyphs-3.0.0.tar.gz) = 0af8dbd0a33a2e095e8fdc48bb7b2c31f716b4a7
+RMD160 (confusable_homoglyphs-3.0.0.tar.gz) = 0a16a1c8ceeccb92a401050cd3064f57d39b75f3
+SHA512 (confusable_homoglyphs-3.0.0.tar.gz) = 2ca5ba33fa7020890bc176d4600fe7ae8b9ffb6194b49d61cfaadfda095c5f0cf7a94337a82253900308158236ef18503d3e91183064ffbc715d761d9992b413
+Size (confusable_homoglyphs-3.0.0.tar.gz) = 188836 bytes



Home | Main Index | Thread Index | Old Index