From owner-svn-ports-all@freebsd.org Tue Jul 21 01:30:54 2020 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 E89F23702B1; Tue, 21 Jul 2020 01:30:54 +0000 (UTC) (envelope-from swills@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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4B9gz25zLvz3bTd; Tue, 21 Jul 2020 01:30:54 +0000 (UTC) (envelope-from swills@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 B13B71642F; Tue, 21 Jul 2020 01:30:54 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 06L1UsUk030850; Tue, 21 Jul 2020 01:30:54 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 06L1UsQ4030847; Tue, 21 Jul 2020 01:30:54 GMT (envelope-from swills@FreeBSD.org) Message-Id: <202007210130.06L1UsQ4030847@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 21 Jul 2020 01:30:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r542697 - in head/textproc: . py-sphinx-argparse X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/textproc: . py-sphinx-argparse X-SVN-Commit-Revision: 542697 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.33 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: Tue, 21 Jul 2020 01:30:55 -0000 Author: swills Date: Tue Jul 21 01:30:53 2020 New Revision: 542697 URL: https://svnweb.freebsd.org/changeset/ports/542697 Log: textproc/py-sphinx-argparse: create port A sphinx extension that automatically documents argparse commands and options. For installation and usage details, see the documentation. WWW: https://github.com/ribozz/sphinx-argparse Added: head/textproc/py-sphinx-argparse/ head/textproc/py-sphinx-argparse/Makefile (contents, props changed) head/textproc/py-sphinx-argparse/distinfo (contents, props changed) head/textproc/py-sphinx-argparse/pkg-descr (contents, props changed) Modified: head/textproc/Makefile (contents, props changed) Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Tue Jul 21 01:30:29 2020 (r542696) +++ head/textproc/Makefile Tue Jul 21 01:30:53 2020 (r542697) @@ -1366,6 +1366,7 @@ SUBDIR += py-snowballstemmer SUBDIR += py-sparqlwrapper SUBDIR += py-sphinx + SUBDIR += py-sphinx-argparse SUBDIR += py-sphinx-autoapi SUBDIR += py-sphinx-autodoc-typehints SUBDIR += py-sphinx-intl Added: head/textproc/py-sphinx-argparse/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-sphinx-argparse/Makefile Tue Jul 21 01:30:53 2020 (r542697) @@ -0,0 +1,17 @@ +# $FreeBSD$ + +PORTNAME= sphinx-argparse +PORTVERSION= 0.2.5 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= swills@FreeBSD.org +COMMENT= Sphinx extension that automatically documents argparse + +RUN_DEPENDS= ${PY_SPHINX} + +USES= python:3.6+ +USE_PYTHON= autoplist distutils + +.include Added: head/textproc/py-sphinx-argparse/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-sphinx-argparse/distinfo Tue Jul 21 01:30:53 2020 (r542697) @@ -0,0 +1,3 @@ +TIMESTAMP = 1595292594 +SHA256 (sphinx-argparse-0.2.5.tar.gz) = 60ab98f80ffd38731d62e267171388a421abbc96c74901b7785a8e058b438c17 +SIZE (sphinx-argparse-0.2.5.tar.gz) = 12153 Added: head/textproc/py-sphinx-argparse/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-sphinx-argparse/pkg-descr Tue Jul 21 01:30:53 2020 (r542697) @@ -0,0 +1,5 @@ +A sphinx extension that automatically documents argparse commands and options. + +For installation and usage details, see the documentation. + +WWW: https://github.com/ribozz/sphinx-argparse