pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/textproc



Module Name:    pkgsrc
Committed By:   adam
Date:           Wed Sep 18 07:47:39 UTC 2024

Modified Files:
        pkgsrc/textproc: Makefile
Added Files:
        pkgsrc/textproc/py-class-doc: DESCR Makefile PLIST distinfo

Log Message:
py-class-doc: added version 0.2.6

Small set of helpers aimed to extract class attributes documentation from the
class definition. This stuff tries to mimic sphinx-autodoc behaviour as closely
as possible (except instance attributes defined inside __init__ function).

The main advantage of this project over sphinx-autodoc is that it is
lightweight single-purpose dependency, while autodoc just a small part of
really heavy project.


To generate a diff of this commit:
cvs rdiff -u -r1.1484 -r1.1485 pkgsrc/textproc/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/textproc/py-class-doc/DESCR \
    pkgsrc/textproc/py-class-doc/Makefile pkgsrc/textproc/py-class-doc/PLIST \
    pkgsrc/textproc/py-class-doc/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/textproc/Makefile
diff -u pkgsrc/textproc/Makefile:1.1484 pkgsrc/textproc/Makefile:1.1485
--- pkgsrc/textproc/Makefile:1.1484     Mon Aug 26 11:10:57 2024
+++ pkgsrc/textproc/Makefile    Wed Sep 18 07:47:39 2024
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1484 2024/08/26 11:10:57 wiz Exp $
+# $NetBSD: Makefile,v 1.1485 2024/09/18 07:47:39 adam Exp $
 #
 
 COMMENT=       Text processing utilities (does not include desktop publishing)
@@ -1026,6 +1026,7 @@ SUBDIR+=  py-black
 SUBDIR+=       py-bracex
 SUBDIR+=       py-breathe
 SUBDIR+=       py-cabocha
+SUBDIR+=       py-class-doc
 SUBDIR+=       py-cmTemplate
 SUBDIR+=       py-cmarkgfm
 SUBDIR+=       py-cmudict

Added files:

Index: pkgsrc/textproc/py-class-doc/DESCR
diff -u /dev/null pkgsrc/textproc/py-class-doc/DESCR:1.1
--- /dev/null   Wed Sep 18 07:47:40 2024
+++ pkgsrc/textproc/py-class-doc/DESCR  Wed Sep 18 07:47:39 2024
@@ -0,0 +1,7 @@
+Small set of helpers aimed to extract class attributes documentation from the
+class definition. This stuff tries to mimic sphinx-autodoc behaviour as closely
+as possible (except instance attributes defined inside __init__ function).
+
+The main advantage of this project over sphinx-autodoc is that it is
+lightweight single-purpose dependency, while autodoc just a small part of
+really heavy project.
Index: pkgsrc/textproc/py-class-doc/Makefile
diff -u /dev/null pkgsrc/textproc/py-class-doc/Makefile:1.1
--- /dev/null   Wed Sep 18 07:47:40 2024
+++ pkgsrc/textproc/py-class-doc/Makefile       Wed Sep 18 07:47:39 2024
@@ -0,0 +1,19 @@
+# $NetBSD: Makefile,v 1.1 2024/09/18 07:47:39 adam Exp $
+
+DISTNAME=      class-doc-0.2.6
+PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
+CATEGORIES=    textproc python
+MASTER_SITES=  ${MASTER_SITE_PYPI:=c/class-doc/}
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      https://github.com/danields761/class-doc
+COMMENT=       Extract attributes docstrings defined in various ways
+LICENSE=       mit
+
+TOOL_DEPENDS+= ${PYPKGPREFIX}-poetry>=0.12:../../devel/py-poetry
+DEPENDS+=      ${PYPKGPREFIX}-more-itertools>=5.0.0:../../devel/py-more-itertools
+
+USE_LANGUAGES= # none
+
+.include "../../lang/python/wheel.mk"
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/textproc/py-class-doc/PLIST
diff -u /dev/null pkgsrc/textproc/py-class-doc/PLIST:1.1
--- /dev/null   Wed Sep 18 07:47:40 2024
+++ pkgsrc/textproc/py-class-doc/PLIST  Wed Sep 18 07:47:39 2024
@@ -0,0 +1,7 @@
+@comment $NetBSD: PLIST,v 1.1 2024/09/18 07:47:39 adam Exp $
+${PYSITELIB}/${WHEEL_INFODIR}/METADATA
+${PYSITELIB}/${WHEEL_INFODIR}/RECORD
+${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
+${PYSITELIB}/class_doc.py
+${PYSITELIB}/class_doc.pyc
+${PYSITELIB}/class_doc.pyo
Index: pkgsrc/textproc/py-class-doc/distinfo
diff -u /dev/null pkgsrc/textproc/py-class-doc/distinfo:1.1
--- /dev/null   Wed Sep 18 07:47:40 2024
+++ pkgsrc/textproc/py-class-doc/distinfo       Wed Sep 18 07:47:39 2024
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1 2024/09/18 07:47:39 adam Exp $
+
+BLAKE2s (class-doc-0.2.6.tar.gz) = e095302d00556f003aa8ecd388ef6c1dfa9e5587b939daa3c2b27a932fcc860e
+SHA512 (class-doc-0.2.6.tar.gz) = c9484b72868fd70ba565ee903c7f7480d37d1aba1c72c6ff073863714c9b1a97382b7601b1f62f61e80e7b15d2802a36877906902fbc5953d51d5197b5feb2f0
+Size (class-doc-0.2.6.tar.gz) = 4980 bytes



Home | Main Index | Thread Index | Old Index