From owner-svn-ports-all@freebsd.org Sat Mar 10 22:59:18 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AB06BF3C679; Sat, 10 Mar 2018 22:59:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BAAB681EA; Sat, 10 Mar 2018 22:59:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 41A531426E; Sat, 10 Mar 2018 22:59:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2AMxIAh019074; Sat, 10 Mar 2018 22:59:18 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2AMxHvh019070; Sat, 10 Mar 2018 22:59:17 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201803102259.w2AMxHvh019070@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Mar 2018 22:59:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r464096 - in head/devel: . py-confusable_homoglyphs X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . py-confusable_homoglyphs X-SVN-Commit-Revision: 464096 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Mar 2018 22:59:18 -0000 Author: sunpoet Date: Sat Mar 10 22:59:17 2018 New Revision: 464096 URL: https://svnweb.freebsd.org/changeset/ports/464096 Log: Add py-confusable_homoglyphs 3.0.0 A homoglyph is one of two or more graphemes, characters, or glyphs with shapes that appear identical or very similar homoglyph. Unicode homoglyphs can be a nuisance on the web. confusable_homoglyphs helps to detect confusable usage of unicode homoglyphs and prevent homograph attacks. WWW: https://pypi.python.org/pypi/confusable_homoglyphs WWW: https://github.com/vhf/confusable_homoglyphs Added: head/devel/py-confusable_homoglyphs/ head/devel/py-confusable_homoglyphs/Makefile (contents, props changed) head/devel/py-confusable_homoglyphs/distinfo (contents, props changed) head/devel/py-confusable_homoglyphs/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Mar 10 22:56:54 2018 (r464095) +++ head/devel/Makefile Sat Mar 10 22:59:17 2018 (r464096) @@ -4348,6 +4348,7 @@ SUBDIR += py-configargparse SUBDIR += py-configobj SUBDIR += py-configparser + SUBDIR += py-confusable_homoglyphs SUBDIR += py-constantly SUBDIR += py-construct SUBDIR += py-construct28 Added: head/devel/py-confusable_homoglyphs/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-confusable_homoglyphs/Makefile Sat Mar 10 22:59:17 2018 (r464096) @@ -0,0 +1,22 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= confusable_homoglyphs +PORTVERSION= 3.0.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Detect confusable usage of unicode homoglyphs + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>=0:devel/py-click@${FLAVOR} + +NO_ARCH= yes +USE_PYTHON= autoplist concurrent distutils +USES= python + +.include Added: head/devel/py-confusable_homoglyphs/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-confusable_homoglyphs/distinfo Sat Mar 10 22:59:17 2018 (r464096) @@ -0,0 +1,3 @@ +TIMESTAMP = 1520629922 +SHA256 (confusable_homoglyphs-3.0.0.tar.gz) = 2dc772701291bd8343abd0dca01453b970a998a9dc7fc4be558d91472100e02e +SIZE (confusable_homoglyphs-3.0.0.tar.gz) = 188836 Added: head/devel/py-confusable_homoglyphs/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-confusable_homoglyphs/pkg-descr Sat Mar 10 22:59:17 2018 (r464096) @@ -0,0 +1,7 @@ +A homoglyph is one of two or more graphemes, characters, or glyphs with shapes +that appear identical or very similar homoglyph. Unicode homoglyphs can be a +nuisance on the web. confusable_homoglyphs helps to detect confusable usage of +unicode homoglyphs and prevent homograph attacks. + +WWW: https://pypi.python.org/pypi/confusable_homoglyphs +WWW: https://github.com/vhf/confusable_homoglyphs