From owner-dev-commits-ports-main@freebsd.org Sun Aug 8 14:58:15 2021 Return-Path: Delivered-To: dev-commits-ports-main@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 50D646580F4; Sun, 8 Aug 2021 14:58:15 +0000 (UTC) (envelope-from git@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4GjMlp6Xzzz4jSW; Sun, 8 Aug 2021 14:58:14 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BE67E1664C; Sun, 8 Aug 2021 14:58:14 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 178EwEY2023825; Sun, 8 Aug 2021 14:58:14 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 178EwEjV023824; Sun, 8 Aug 2021 14:58:14 GMT (envelope-from git) Date: Sun, 8 Aug 2021 14:58:14 GMT Message-Id: <202108081458.178EwEjV023824@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Po-Chuan Hsieh Subject: git: 25625d556e8f - main - textproc/py-sphinxcontrib-bibtex: Add py-sphinxcontrib-bibtex 2.3.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: sunpoet X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 25625d556e8f760ea75a8980523e9f8678bc51b7 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commits to the main branch of the FreeBSD ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2021 14:58:15 -0000 The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=25625d556e8f760ea75a8980523e9f8678bc51b7 commit 25625d556e8f760ea75a8980523e9f8678bc51b7 Author: Po-Chuan Hsieh AuthorDate: 2021-08-08 14:32:31 +0000 Commit: Po-Chuan Hsieh CommitDate: 2021-08-08 14:53:55 +0000 textproc/py-sphinxcontrib-bibtex: Add py-sphinxcontrib-bibtex 2.3.0 The bibtex extension allows BibTeX citations to be inserted into documentation generated by Sphinx, via a bibliography directive, along with :cite:p: and :cite:t: roles. These work similarly to LaTeX's thebibliography environment and the \citet and \citep commands. WWW: https://github.com/mcmtroffaes/sphinxcontrib-bibtex --- textproc/Makefile | 1 + textproc/py-sphinxcontrib-bibtex/Makefile | 31 ++++++++++++++++++++++++++++++ textproc/py-sphinxcontrib-bibtex/distinfo | 3 +++ textproc/py-sphinxcontrib-bibtex/pkg-descr | 6 ++++++ 4 files changed, 41 insertions(+) diff --git a/textproc/Makefile b/textproc/Makefile index 4ebb211c6690..270fafda4a72 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1446,6 +1446,7 @@ SUBDIR += py-sphinxcontrib-adadomain SUBDIR += py-sphinxcontrib-applehelp SUBDIR += py-sphinxcontrib-autoprogram + SUBDIR += py-sphinxcontrib-bibtex SUBDIR += py-sphinxcontrib-bitbucket SUBDIR += py-sphinxcontrib-devhelp SUBDIR += py-sphinxcontrib-fulltoc diff --git a/textproc/py-sphinxcontrib-bibtex/Makefile b/textproc/py-sphinxcontrib-bibtex/Makefile new file mode 100644 index 000000000000..4d8faeeda376 --- /dev/null +++ b/textproc/py-sphinxcontrib-bibtex/Makefile @@ -0,0 +1,31 @@ +# Created by: Po-Chuan Hsieh + +PORTNAME= sphinxcontrib-bibtex +PORTVERSION= 2.3.0 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Sphinx extension for BibTeX style citations + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.rst + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}docutils>=0.8:textproc/py-docutils@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pybtex>=0.20:textproc/py-pybtex@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pybtex-docutils>=1.0.0:textproc/py-pybtex-docutils@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}sphinx>=2.1,1:textproc/py-sphinx@${PY_FLAVOR} + +USES= python:3.6+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include + +.if ${PYTHON_REL} < 30700 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dataclasses>=0:devel/py-dataclasses@${PY_FLAVOR} +.endif + +.include diff --git a/textproc/py-sphinxcontrib-bibtex/distinfo b/textproc/py-sphinxcontrib-bibtex/distinfo new file mode 100644 index 000000000000..28de050c1076 --- /dev/null +++ b/textproc/py-sphinxcontrib-bibtex/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1628103022 +SHA256 (sphinxcontrib-bibtex-2.3.0.tar.gz) = 1aae1005935ae8e6499750b4ef1c8251a14ba16e025d0c0154fe2b6bf45defc0 +SIZE (sphinxcontrib-bibtex-2.3.0.tar.gz) = 100159 diff --git a/textproc/py-sphinxcontrib-bibtex/pkg-descr b/textproc/py-sphinxcontrib-bibtex/pkg-descr new file mode 100644 index 000000000000..95b28c4bebe5 --- /dev/null +++ b/textproc/py-sphinxcontrib-bibtex/pkg-descr @@ -0,0 +1,6 @@ +The bibtex extension allows BibTeX citations to be inserted into documentation +generated by Sphinx, via a bibliography directive, along with :cite:p: and +:cite:t: roles. These work similarly to LaTeX's thebibliography environment and +the \citet and \citep commands. + +WWW: https://github.com/mcmtroffaes/sphinxcontrib-bibtex