Date: Fri, 8 Jan 2016 04:56:01 +0000 (UTC) From: Kubilay Kocak <koobs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r405523 - in head/devel: . py-pydenticon Message-ID: <201601080456.u084u1II093179@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: koobs Date: Fri Jan 8 04:56:01 2016 New Revision: 405523 URL: https://svnweb.freebsd.org/changeset/ports/405523 Log: [NEW] devel/py-pydenticon: Library for generating identicons - an enhanced port of Sigil Pydenticon is a small utility library that can be used for deterministically generating identicons based on the hash of provided data. WWW: https://github.com/azaghal/pydenticon PR: 205914 Submitted by: Brendan Molloy <brendan+freebsd@bbqsrc.net> Added: head/devel/py-pydenticon/ head/devel/py-pydenticon/Makefile (contents, props changed) head/devel/py-pydenticon/distinfo (contents, props changed) head/devel/py-pydenticon/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Jan 8 04:51:15 2016 (r405522) +++ head/devel/Makefile Fri Jan 8 04:56:01 2016 (r405523) @@ -4219,6 +4219,7 @@ SUBDIR += py-pycmd SUBDIR += py-pycparser SUBDIR += py-pydasm + SUBDIR += py-pydenticon SUBDIR += py-pydoop SUBDIR += py-pyechonest SUBDIR += py-pyee Added: head/devel/py-pydenticon/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pydenticon/Makefile Fri Jan 8 04:56:01 2016 (r405523) @@ -0,0 +1,26 @@ +# Created by: Brendan Molloy <brendan+freebsd@bbqsrc.net> +# $FreeBSD$ + +PORTNAME= pydenticon +PORTVERSION= 0.2 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= brendan+freebsd@bbqsrc.net +COMMENT= Library for generating identicons - an enhanced port of Sigil + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>0:${PORTSDIR}/devel/py-mock + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +do-test: + @(cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test) + +.include <bsd.port.mk> Added: head/devel/py-pydenticon/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pydenticon/distinfo Fri Jan 8 04:56:01 2016 (r405523) @@ -0,0 +1,2 @@ +SHA256 (pydenticon-0.2.tar.gz) = f7b390e3198886b6a186da06c61053298275f430c8daa567165cbeab1957ad0c +SIZE (pydenticon-0.2.tar.gz) = 25583 Added: head/devel/py-pydenticon/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pydenticon/pkg-descr Fri Jan 8 04:56:01 2016 (r405523) @@ -0,0 +1,4 @@ +Pydenticon is a small utility library that can be used for deterministically +generating identicons based on the hash of provided data. + +WWW: https://github.com/azaghal/pydenticon
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201601080456.u084u1II093179>