From owner-svn-ports-all@freebsd.org Sun Dec 15 10:48:40 2019 Return-Path: Delivered-To: svn-ports-all@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 A7AD31E9857; Sun, 15 Dec 2019 10:48:40 +0000 (UTC) (envelope-from yuri@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 47bLjh3yrxz4Q1r; Sun, 15 Dec 2019 10:48:40 +0000 (UTC) (envelope-from yuri@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 7EE67BEEF; Sun, 15 Dec 2019 10:48:40 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xBFAmeZh058780; Sun, 15 Dec 2019 10:48:40 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xBFAmddH058776; Sun, 15 Dec 2019 10:48:39 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201912151048.xBFAmddH058776@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 15 Dec 2019 10:48:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r520169 - in head/misc: . py-fleep X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/misc: . py-fleep X-SVN-Commit-Revision: 520169 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.29 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: Sun, 15 Dec 2019 10:48:40 -0000 Author: yuri Date: Sun Dec 15 10:48:39 2019 New Revision: 520169 URL: https://svnweb.freebsd.org/changeset/ports/520169 Log: New port: misc/py-fleep: File format determination library for Python Added: head/misc/py-fleep/ head/misc/py-fleep/Makefile (contents, props changed) head/misc/py-fleep/distinfo (contents, props changed) head/misc/py-fleep/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Sun Dec 15 10:14:33 2019 (r520168) +++ head/misc/Makefile Sun Dec 15 10:48:39 2019 (r520169) @@ -383,6 +383,7 @@ SUBDIR += py-eemeter SUBDIR += py-emoji SUBDIR += py-fast-histogram + SUBDIR += py-fleep SUBDIR += py-fuzzy SUBDIR += py-glance SUBDIR += py-huepy Added: head/misc/py-fleep/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-fleep/Makefile Sun Dec 15 10:48:39 2019 (r520169) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= fleep +DISTVERSION= 1.0.1 +CATEGORIES= misc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= File format determination library for Python + +LICENSE= MIT + +USES= python +USE_PYTHON= distutils autoplist + +NO_ARCH= yes + +.include Added: head/misc/py-fleep/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-fleep/distinfo Sun Dec 15 10:48:39 2019 (r520169) @@ -0,0 +1,3 @@ +TIMESTAMP = 1576406682 +SHA256 (fleep-1.0.1.tar.gz) = c8f62b258ee5364d7f6c1ed1f3f278e99020fc3f0a60a24ad1e10846e31d104c +SIZE (fleep-1.0.1.tar.gz) = 6547 Added: head/misc/py-fleep/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-fleep/pkg-descr Sun Dec 15 10:48:39 2019 (r520169) @@ -0,0 +1,4 @@ +fleep is a library that determines file format by file signature (also known as +"magic number"). + +WWW: https://github.com/floyernick/fleep-py