From owner-svn-ports-all@freebsd.org Sat Nov 18 13:37:21 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DB969DBB542; Sat, 18 Nov 2017 13:37:21 +0000 (UTC) (envelope-from dbaio@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 mx1.freebsd.org (Postfix) with ESMTPS id B37506FE60; Sat, 18 Nov 2017 13:37:21 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vAIDbK1Y036772; Sat, 18 Nov 2017 13:37:20 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAIDbKPK036769; Sat, 18 Nov 2017 13:37:20 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201711181337.vAIDbKPK036769@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Sat, 18 Nov 2017 13:37:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r454431 - head/converters/bibtexconv X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/converters/bibtexconv X-SVN-Commit-Revision: 454431 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: Sat, 18 Nov 2017 13:37:22 -0000 Author: dbaio Date: Sat Nov 18 13:37:20 2017 New Revision: 454431 URL: https://svnweb.freebsd.org/changeset/ports/454431 Log: converters/bibtexconv: Update to 1.1.11 [1] Update MASTER_SITES and WWW. [1] Improve LICENSE. Switch to options helper (EXAMPLES). Include script ietf2bibtex (Python 3 dependency) and USES=ssl. PR: 223328 Submitted by: dreibh@iem.uni-due.de (maintainer) [1] Modified: head/converters/bibtexconv/Makefile head/converters/bibtexconv/distinfo head/converters/bibtexconv/pkg-descr Modified: head/converters/bibtexconv/Makefile ============================================================================== --- head/converters/bibtexconv/Makefile Sat Nov 18 13:33:03 2017 (r454430) +++ head/converters/bibtexconv/Makefile Sat Nov 18 13:37:20 2017 (r454431) @@ -2,23 +2,24 @@ # $FreeBSD$ PORTNAME= bibtexconv -PORTVERSION= 1.0.0 -PORTREVISION= 1 +PORTVERSION= 1.1.11 CATEGORIES= converters -MASTER_SITES= http://www.exp-math.uni-essen.de/~dreibh/bibtexconv/download/ +MASTER_SITES= https://www.uni-due.de/~be0001/bibtexconv/download/ MAINTAINER= dreibh@iem.uni-due.de COMMENT= BibTeX Converter -LICENSE= GPLv3 +LICENSE= GPLv3+ +LICENSE_FILE= ${WRKSRC}/COPYING.GPL LIB_DEPENDS= libcurl.so:ftp/curl GNU_CONFIGURE= yes -USES= gmake +USES= gmake ssl python:3.4+ -PLIST_FILES= bin/bibtexconv bin/bibtexconv-odt \ - man/man1/bibtexconv.1.gz man/man1/bibtexconv-odt.1.gz +PLIST_FILES= bin/bibtexconv bin/bibtexconv-odt bin/ietf2bibtex \ + man/man1/bibtexconv.1.gz man/man1/bibtexconv-odt.1.gz \ + man/man1/ietf2bibtex.1.gz PORTEXAMPLES= ExampleReferences.bib ODT-Template.odt odt-example.export \ web-example.export text-example.export @@ -28,8 +29,9 @@ OPTIONS_DEFINE= EXAMPLES pre-configure: @${REINPLACE_CMD} -e 's|install-data-am: install-dist_examplesDATA|install-data-am:|' \ ${WRKSRC}/src/Makefile.in + @${REINPLACE_CMD} -e 's|/usr/bin/python3|${PYTHON_CMD}|' ${WRKSRC}/src/ietf2bibtex -post-install: +post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${PORTEXAMPLES:S,^,${WRKSRC}/src/,} ${STAGEDIR}${EXAMPLESDIR} Modified: head/converters/bibtexconv/distinfo ============================================================================== --- head/converters/bibtexconv/distinfo Sat Nov 18 13:33:03 2017 (r454430) +++ head/converters/bibtexconv/distinfo Sat Nov 18 13:37:20 2017 (r454431) @@ -1,2 +1,3 @@ -SHA256 (bibtexconv-1.0.0.tar.gz) = b47979aac7e5aa4e4d4e45deabc59fda2f5c363d8fa67139b53b8e76e3fe4e9d -SIZE (bibtexconv-1.0.0.tar.gz) = 442266 +TIMESTAMP = 1509634898 +SHA256 (bibtexconv-1.1.11.tar.gz) = 1240c3011718d9ba95c165dbf908eab871153530b70bca0ef74dc2b9664e83f1 +SIZE (bibtexconv-1.1.11.tar.gz) = 344966 Modified: head/converters/bibtexconv/pkg-descr ============================================================================== --- head/converters/bibtexconv/pkg-descr Sat Nov 18 13:33:03 2017 (r454430) +++ head/converters/bibtexconv/pkg-descr Sat Nov 18 13:37:20 2017 (r454431) @@ -4,4 +4,4 @@ text output. Furthermore, it provides the possibility check URLs (including MD5, size and MIME type computations) and to verify ISBN and ISSN numbers. -WWW: http://www.iem.uni-due.de/~dreibh/bibtexconv/ +WWW: https://www.uni-due.de/~be0001/bibtexconv/