From owner-svn-ports-all@freebsd.org Thu Mar 15 04:43:47 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 72F0CF4AC7F; Thu, 15 Mar 2018 04:43:47 +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.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 2413E6B4B5; Thu, 15 Mar 2018 04:43:47 +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 1ED9811A78; Thu, 15 Mar 2018 04:43:47 +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 w2F4hlfU013039; Thu, 15 Mar 2018 04:43:47 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2F4hkjm013034; Thu, 15 Mar 2018 04:43:46 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201803150443.w2F4hkjm013034@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 15 Mar 2018 04:43:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r464557 - in head/textproc: . py-bibtexparser X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/textproc: . py-bibtexparser X-SVN-Commit-Revision: 464557 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: Thu, 15 Mar 2018 04:43:47 -0000 Author: yuri Date: Thu Mar 15 04:43:46 2018 New Revision: 464557 URL: https://svnweb.freebsd.org/changeset/ports/464557 Log: New port: textproc/py-bibtexparser: Bibtex parser Added: head/textproc/py-bibtexparser/ head/textproc/py-bibtexparser/Makefile (contents, props changed) head/textproc/py-bibtexparser/distinfo (contents, props changed) head/textproc/py-bibtexparser/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Thu Mar 15 04:11:19 2018 (r464556) +++ head/textproc/Makefile Thu Mar 15 04:43:46 2018 (r464557) @@ -1278,6 +1278,7 @@ SUBDIR += py-asv SUBDIR += py-autopep8 SUBDIR += py-awesome-slugify + SUBDIR += py-bibtexparser SUBDIR += py-bugzillatools SUBDIR += py-chardet SUBDIR += py-cjkwrap Added: head/textproc/py-bibtexparser/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-bibtexparser/Makefile Thu Mar 15 04:43:46 2018 (r464557) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= bibtexparser +DISTVERSION= 1.0.1 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Bibtex parser + +LICENSE= BSD3CLAUSE LGPL3 +LICENSE_COMB= dual + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}future>=0.16.0:devel/py-future@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pyparsing>=2.0.3:devel/py-pyparsing@${FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/textproc/py-bibtexparser/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-bibtexparser/distinfo Thu Mar 15 04:43:46 2018 (r464557) @@ -0,0 +1,3 @@ +TIMESTAMP = 1521087950 +SHA256 (bibtexparser-1.0.1.tar.gz) = cc41cdd8332c2bf44b97daf1f135f4f267c3b744c33976655cd270b66f964c0a +SIZE (bibtexparser-1.0.1.tar.gz) = 43816 Added: head/textproc/py-bibtexparser/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-bibtexparser/pkg-descr Thu Mar 15 04:43:46 2018 (r464557) @@ -0,0 +1,4 @@ +BibtexParser is a python library to parse bibtex files. +The code relies on pyparsing and is tested with unittests. + +WWW: https://github.com/sciunto-org/python-bibtexparser