From owner-svn-ports-all@freebsd.org Mon May 11 23:19:53 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 979212DA5D4; Mon, 11 May 2020 23:19:53 +0000 (UTC) (envelope-from dbaio@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 49LcN93QQTz4MsF; Mon, 11 May 2020 23:19:53 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6E7B0263BC; Mon, 11 May 2020 23:19:53 +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 04BNJrK3009253; Mon, 11 May 2020 23:19:53 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 04BNJqt2009250; Mon, 11 May 2020 23:19:52 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <202005112319.04BNJqt2009250@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Mon, 11 May 2020 23:19:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r534963 - in head/textproc: . py-sphinxcontrib-htmlhelp X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: in head/textproc: . py-sphinxcontrib-htmlhelp X-SVN-Commit-Revision: 534963 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: Mon, 11 May 2020 23:19:53 -0000 Author: dbaio Date: Mon May 11 23:19:52 2020 New Revision: 534963 URL: https://svnweb.freebsd.org/changeset/ports/534963 Log: Add textproc/py-sphinxcontrib-htmlhelp sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files. WWW: https://www.sphinx-doc.org/ PR: 244677 Submitted by: Willem Jan Withagen Added: head/textproc/py-sphinxcontrib-htmlhelp/ head/textproc/py-sphinxcontrib-htmlhelp/Makefile (contents, props changed) head/textproc/py-sphinxcontrib-htmlhelp/distinfo (contents, props changed) head/textproc/py-sphinxcontrib-htmlhelp/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Mon May 11 23:17:42 2020 (r534962) +++ head/textproc/Makefile Mon May 11 23:19:52 2020 (r534963) @@ -1363,6 +1363,7 @@ SUBDIR += py-sphinxcontrib-bitbucket SUBDIR += py-sphinxcontrib-devhelp SUBDIR += py-sphinxcontrib-fulltoc + SUBDIR += py-sphinxcontrib-htmlhelp SUBDIR += py-sphinxcontrib-httpdomain SUBDIR += py-sphinxcontrib-jsmath SUBDIR += py-sphinxcontrib-newsfeed Added: head/textproc/py-sphinxcontrib-htmlhelp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-sphinxcontrib-htmlhelp/Makefile Mon May 11 23:19:52 2020 (r534963) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= sphinxcontrib-htmlhelp +PORTVERSION= 1.0.3 +CATEGORIES= textproc +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= python@FreeBSD.org +COMMENT= Sphinx extension which renders HTML help files + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python:3.5+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include Added: head/textproc/py-sphinxcontrib-htmlhelp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-sphinxcontrib-htmlhelp/distinfo Mon May 11 23:19:52 2020 (r534963) @@ -0,0 +1,3 @@ +TIMESTAMP = 1586631496 +SHA256 (sphinxcontrib-htmlhelp-1.0.3.tar.gz) = e8f5bb7e31b2dbb25b9cc435c8ab7a79787ebf7f906155729338f3156d93659b +SIZE (sphinxcontrib-htmlhelp-1.0.3.tar.gz) = 24248 Added: head/textproc/py-sphinxcontrib-htmlhelp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-sphinxcontrib-htmlhelp/pkg-descr Mon May 11 23:19:52 2020 (r534963) @@ -0,0 +1,3 @@ +sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files. + +WWW: https://www.sphinx-doc.org/