svn commit: r475546 - in head/textproc: . py-fingerprints

Martin Wilke miwi at FreeBSD.org
Sat Jul 28 12:24:28 UTC 2018


Author: miwi
Date: Sat Jul 28 12:24:26 2018
New Revision: 475546
URL: https://svnweb.freebsd.org/changeset/ports/475546

Log:
  This library helps with the generation of fingerprints for entity data. A
  fingerprint in this context is understood as a simplified entity identifier,
  derived from it's name or address and used for cross-referencing of entity
  across different datasets.
  
  WWW: https://github.com/alephdata/fingerprints
  
  PR:		229528
  Submitted by:	freebsd_ports at k-worx.org
  Sponsored by:	iXsystems Inc.

Added:
  head/textproc/py-fingerprints/
  head/textproc/py-fingerprints/Makefile   (contents, props changed)
  head/textproc/py-fingerprints/distinfo   (contents, props changed)
  head/textproc/py-fingerprints/pkg-descr   (contents, props changed)
Modified:
  head/textproc/Makefile

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Sat Jul 28 12:22:52 2018	(r475545)
+++ head/textproc/Makefile	Sat Jul 28 12:24:26 2018	(r475546)
@@ -1298,6 +1298,7 @@
     SUBDIR += py-et_xmlfile
     SUBDIR += py-excelerator
     SUBDIR += py-feedparser
+    SUBDIR += py-fingerprints
     SUBDIR += py-gambit-elasticsearch
     SUBDIR += py-genshi
     SUBDIR += py-gensim

Added: head/textproc/py-fingerprints/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-fingerprints/Makefile	Sat Jul 28 12:24:26 2018	(r475546)
@@ -0,0 +1,27 @@
+# $FreeBSD$
+
+PORTNAME=	fingerprints
+DISTVERSION=	0.5.4
+CATEGORIES=	textproc python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	freebsd_ports at k-worx.org
+COMMENT=	Easy comparing and cross-referencing of companies and people
+
+LICENSE=	MIT
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}normality>=0.4.0:textproc/py-normality@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}yaml>=0:devel/py-yaml@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+NO_ARCH=	yes
+
+post-extract:
+	# Prevents that the tests directory will be installed into site-packages
+	@(cd ${WRKSRC} && ${MV} tests test)
+
+.include <bsd.port.mk>

Added: head/textproc/py-fingerprints/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-fingerprints/distinfo	Sat Jul 28 12:24:26 2018	(r475546)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1530199613
+SHA256 (fingerprints-0.5.4.tar.gz) = e720fa97356c6b8e227474aa8dbeb3c10e93452820a447e632d547bdb1981c5a
+SIZE (fingerprints-0.5.4.tar.gz) = 10454

Added: head/textproc/py-fingerprints/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-fingerprints/pkg-descr	Sat Jul 28 12:24:26 2018	(r475546)
@@ -0,0 +1,6 @@
+This library helps with the generation of fingerprints for entity data. A
+fingerprint in this context is understood as a simplified entity identifier,
+derived from it's name or address and used for cross-referencing of entity
+across different datasets.
+
+WWW: https://github.com/alephdata/fingerprints


More information about the svn-ports-all mailing list