From owner-svn-ports-all@freebsd.org Tue Jan 8 03:15:43 2019 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 D4EE3148D5EF; Tue, 8 Jan 2019 03:15:42 +0000 (UTC) (envelope-from skreuzer@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 7A1096B71E; Tue, 8 Jan 2019 03:15:42 +0000 (UTC) (envelope-from skreuzer@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 67C2B21AC1; Tue, 8 Jan 2019 03:15:42 +0000 (UTC) (envelope-from skreuzer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x083Fgp2058954; Tue, 8 Jan 2019 03:15:42 GMT (envelope-from skreuzer@FreeBSD.org) Received: (from skreuzer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x083FfTQ058948; Tue, 8 Jan 2019 03:15:41 GMT (envelope-from skreuzer@FreeBSD.org) Message-Id: <201901080315.x083FfTQ058948@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: skreuzer set sender to skreuzer@FreeBSD.org using -f From: Steven Kreuzer Date: Tue, 8 Jan 2019 03:15:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r489639 - in head/textproc: . py-custom_inherit X-SVN-Group: ports-head X-SVN-Commit-Author: skreuzer X-SVN-Commit-Paths: in head/textproc: . py-custom_inherit X-SVN-Commit-Revision: 489639 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 7A1096B71E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.94 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.95)[-0.947,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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, 08 Jan 2019 03:15:43 -0000 Author: skreuzer Date: Tue Jan 8 03:15:41 2019 New Revision: 489639 URL: https://svnweb.freebsd.org/changeset/ports/489639 Log: The Python package custom_inherit provides convenient, light-weight tools for inheriting docstrings in customizeable ways. Features: * Metaclass that instructs children to inherit docstrings for their attributes from their parents, using custom docstring inheritance styles. * Decorator that merges a string/docstring with the docstring of the decorated object using custom styles. * Built-in docstring merging styles for popular docstring specifications: * NumPy docstring specification * Napoleon docstring specifications (for both Google and NumPy styles) * Merging based on reST sections * Simple inheritance from a parent, if the docstring is not overwritten * Simple interface for using your own docstring inheritance style. WWW: https://github.com/meowklaski/custom_inherit Added: head/textproc/py-custom_inherit/ head/textproc/py-custom_inherit/Makefile (contents, props changed) head/textproc/py-custom_inherit/distinfo (contents, props changed) head/textproc/py-custom_inherit/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Tue Jan 8 02:11:53 2019 (r489638) +++ head/textproc/Makefile Tue Jan 8 03:15:41 2019 (r489639) @@ -1280,6 +1280,7 @@ SUBDIR += py-colorclass SUBDIR += py-creole SUBDIR += py-csvkit + SUBDIR += py-custom_inherit SUBDIR += py-dbfread SUBDIR += py-diff-match-patch SUBDIR += py-docutils Added: head/textproc/py-custom_inherit/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-custom_inherit/Makefile Tue Jan 8 03:15:41 2019 (r489639) @@ -0,0 +1,18 @@ +# Created by: skreuzer +# $FreeBSD$ + +PORTNAME= custom_inherit +PORTVERSION= 2.2.0 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= skreuzer@FreeBSD.org +COMMENT= Package providing tools for inheriting docstrings in customizable ways + +LICENSE= MIT + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/textproc/py-custom_inherit/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-custom_inherit/distinfo Tue Jan 8 03:15:41 2019 (r489639) @@ -0,0 +1,3 @@ +TIMESTAMP = 1546916988 +SHA256 (custom_inherit-2.2.0.tar.gz) = 3892ec53aaffae98d757867c3d1dd5f02200db0e1f888ab601223d72262996f8 +SIZE (custom_inherit-2.2.0.tar.gz) = 11257 Added: head/textproc/py-custom_inherit/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-custom_inherit/pkg-descr Tue Jan 8 03:15:41 2019 (r489639) @@ -0,0 +1,16 @@ +The Python package custom_inherit provides convenient, light-weight tools for +inheriting docstrings in customizeable ways. + +Features: + * Metaclass that instructs children to inherit docstrings for their + attributes from their parents, using custom docstring inheritance styles. + * Decorator that merges a string/docstring with the docstring of the decorated + object using custom styles. + * Built-in docstring merging styles for popular docstring specifications: + * NumPy docstring specification + * Napoleon docstring specifications (for both Google and NumPy styles) + * Merging based on reST sections + * Simple inheritance from a parent, if the docstring is not overwritten + * Simple interface for using your own docstring inheritance style. + +WWW: https://github.com/meowklaski/custom_inherit