From owner-svn-ports-head@freebsd.org Mon Feb 10 10:42:28 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 7EFA423581A; Mon, 10 Feb 2020 10:42:28 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48GMtD2qXmz4JL6; Mon, 10 Feb 2020 10:42:28 +0000 (UTC) (envelope-from ehaupt@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 423061DE03; Mon, 10 Feb 2020 10:42:28 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 01AAgSqc026444; Mon, 10 Feb 2020 10:42:28 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 01AAgRL2026440; Mon, 10 Feb 2020 10:42:27 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <202002101042.01AAgRL2026440@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Mon, 10 Feb 2020 10:42:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r525700 - in head/graphics: . py-face_recognition X-SVN-Group: ports-head X-SVN-Commit-Author: ehaupt X-SVN-Commit-Paths: in head/graphics: . py-face_recognition X-SVN-Commit-Revision: 525700 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Feb 2020 10:42:28 -0000 Author: ehaupt Date: Mon Feb 10 10:42:27 2020 New Revision: 525700 URL: https://svnweb.freebsd.org/changeset/ports/525700 Log: Add py-face_recognition 1.2.2, recognize faces from Python or from the command line. Added: head/graphics/py-face_recognition/ head/graphics/py-face_recognition/Makefile (contents, props changed) head/graphics/py-face_recognition/distinfo (contents, props changed) head/graphics/py-face_recognition/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Mon Feb 10 10:42:01 2020 (r525699) +++ head/graphics/Makefile Mon Feb 10 10:42:27 2020 (r525700) @@ -794,6 +794,7 @@ SUBDIR += py-djvulibre SUBDIR += py-editobj SUBDIR += py-exifread + SUBDIR += py-face_recognition SUBDIR += py-face_recognition_models SUBDIR += py-fiona SUBDIR += py-freeimagepy Added: head/graphics/py-face_recognition/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-face_recognition/Makefile Mon Feb 10 10:42:27 2020 (r525700) @@ -0,0 +1,25 @@ +# Created by: Emanuel Haupt +# $FreeBSD$ + +PORTNAME= face_recognition +PORTVERSION= 1.2.2 +CATEGORIES= graphics python devel +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= ehaupt@FreeBSD.org +COMMENT= Recognize faces from Python or from the command line + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>=6.0:devel/py-click@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}numpy>0:math/py-numpy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pillow>0:graphics/py-pillow@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}face_recognition_models>0:graphics/py-face_recognition_models@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}dlib>=19.7:science/py-dlib@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +.include Added: head/graphics/py-face_recognition/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-face_recognition/distinfo Mon Feb 10 10:42:27 2020 (r525700) @@ -0,0 +1,3 @@ +TIMESTAMP = 1581268184 +SHA256 (face_recognition-1.2.2.tar.gz) = f70d92c8582113fed669832cd8036819b66eebf4a535b1b43b1c0cede0072fb7 +SIZE (face_recognition-1.2.2.tar.gz) = 3179622 Added: head/graphics/py-face_recognition/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-face_recognition/pkg-descr Mon Feb 10 10:42:27 2020 (r525700) @@ -0,0 +1,3 @@ +The world's simplest facial recognition API for Python and the command line. + +WWW: https://pypi.org/project/face_recognition/