forked from NetBSD/pkgsrc
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v3.1.1 (2024-05-22) ------------------- Bugfixes ^^^^^^^^ - Fix private subpackages causing orphan pages (#446) v3.1.0 (2024-05-20) ------------------- Features ^^^^^^^^ - Objects can render to their own page (#226) - Render PEP-695 type aliases as TypeAlias assignments. (#414) Bugfixes ^^^^^^^^ - Values are always rendered for TypeAlises and PEP-695 type aliases. (#224) - Fix submodule with `__init__.pyi` documented as `__init__` instead of submodule name (#398) - Fix IndexError when a module docstring contains only a heading (#412) - Preserve strings inside Literal type annotations (#423) - Stopped using xrefs in page titles (#427) - Fix unpickable configuration value warning when using autoapi_prepare_jinja_env (#445) - Fix emitting ignore event twice for methods. Misc ^^^^ - #388
- Loading branch information
Showing
3 changed files
with
29 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
# $NetBSD: Makefile,v 1.12 2023/11/07 22:38:05 wiz Exp $ | ||
# $NetBSD: Makefile,v 1.13 2024/06/08 12:24:15 wiz Exp $ | ||
|
||
DISTNAME= sphinx-autoapi-3.0.0 | ||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME} | ||
DISTNAME= sphinx_autoapi-3.1.1 | ||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/_/-/} | ||
CATEGORIES= textproc python | ||
MASTER_SITES= ${MASTER_SITE_PYPI:=s/sphinx-autoapi/} | ||
MASTER_SITES= ${MASTER_SITE_PYPI:=s/sphinx_autoapi/} | ||
|
||
MAINTAINER= [email protected] | ||
HOMEPAGE= https://github.com/readthedocs/sphinx-autoapi | ||
COMMENT= Autodoc style documentation for multiple languages | ||
LICENSE= mit | ||
|
||
TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools | ||
TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel | ||
DEPENDS+= ${PYPKGPREFIX}-anyascii-[0-9]*:../../textproc/py-anyascii | ||
DEPENDS+= ${PYPKGPREFIX}-astroid>=2.7:../../devel/py-astroid | ||
DEPENDS+= ${PYPKGPREFIX}-jinja2-[0-9]*:../../textproc/py-jinja2 | ||
|
@@ -27,5 +29,5 @@ TEST_ENV+= PYTHONPATH=${WRKSRC}/build/lib | |
do-test: | ||
cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests | ||
|
||
.include "../../lang/python/egg.mk" | ||
.include "../../lang/python/wheel.mk" | ||
.include "../../mk/bsd.pkg.mk" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
$NetBSD: distinfo,v 1.12 2023/10/14 08:01:49 wiz Exp $ | ||
$NetBSD: distinfo,v 1.13 2024/06/08 12:24:15 wiz Exp $ | ||
|
||
BLAKE2s (sphinx-autoapi-3.0.0.tar.gz) = bc7c76b9c95b59f79aa853b1004be971714d42ef9d9ce6cfe231775e8440e38a | ||
SHA512 (sphinx-autoapi-3.0.0.tar.gz) = f59fb203e1b867f02d5757fb3f58dcaf52b936eff67f4837ae75d9cbff24989d19bb254830bf0e2f90bae1760204e8900ea2e30573da654ad0b5223b9c39750d | ||
Size (sphinx-autoapi-3.0.0.tar.gz) = 58081 bytes | ||
BLAKE2s (sphinx_autoapi-3.1.1.tar.gz) = fef2a632ba15384e7624e1a5883b6852df876ac339f4792f46cff9ee492288ff | ||
SHA512 (sphinx_autoapi-3.1.1.tar.gz) = 2c833279dfc00b95a83325c6fdbe61115e56c62966f2d0f260974ede2ced5699b5d56170240f4116b8f7b02254eaa68ef35a8263f54d55997bfda94c796010fb | ||
Size (sphinx_autoapi-3.1.1.tar.gz) = 62024 bytes |