From cbf776676ab6468b5d91a2eaf4b22cf0bbdc57de Mon Sep 17 00:00:00 2001 From: Kai Knoblich Date: Thu, 16 Mar 2023 06:56:51 +0100 Subject: textproc/py-mkdocs-material: Update to 9.1.2 * Switch to PEP517 build framework and remove no longer required setuptools workaround. Changelog since 8.5.11: https://github.com/squidfunk/mkdocs-material/compare/8.5.11...9.1.2 MFH: No (PEP517 support not present in 2023Q1 branch) --- textproc/py-mkdocs-material/files/patch-setup.py | 52 ------------------------ 1 file changed, 52 deletions(-) delete mode 100644 textproc/py-mkdocs-material/files/patch-setup.py (limited to 'textproc/py-mkdocs-material/files/patch-setup.py') diff --git a/textproc/py-mkdocs-material/files/patch-setup.py b/textproc/py-mkdocs-material/files/patch-setup.py deleted file mode 100644 index dc4f53f88f2a..000000000000 --- a/textproc/py-mkdocs-material/files/patch-setup.py +++ /dev/null @@ -1,52 +0,0 @@ -Generated via adding - -[tool.hatch.build.targets.sdist] -support-legacy = true - -to setup.py and then run "hatchling build". - ---- setup.py.orig 2022-12-20 10:46:10 UTC -+++ setup.py -@@ -0,0 +1,42 @@ -+# -*- coding: utf-8 -*- -+from setuptools import setup -+ -+setup( -+ name='mkdocs-material', -+ version='%%DISTVERSION%%', -+ description='Documentation that simply works', -+ long_description='', -+ author_email='Martin Donath ', -+ classifiers=[ -+ 'Development Status :: 5 - Production/Stable', -+ 'Environment :: Web Environment', -+ 'License :: OSI Approved :: MIT License', -+ 'Programming Language :: JavaScript', -+ 'Programming Language :: Python', -+ 'Topic :: Documentation', -+ 'Topic :: Software Development :: Documentation', -+ 'Topic :: Text Processing :: Markup :: HTML', -+ ], -+ install_requires=[ -+ 'jinja2>=3.0.2', -+ 'markdown>=3.2', -+ 'mkdocs-material-extensions>=1.1', -+ 'mkdocs>=1.4.0', -+ 'pygments>=2.12', -+ 'pymdown-extensions>=9.4', -+ 'requests>=2.26', -+ ], -+ entry_points={ -+ 'mkdocs.plugins': [ -+ 'search = material.plugins.search.plugin:SearchPlugin', -+ 'social = material.plugins.social.plugin:SocialPlugin', -+ 'tags = material.plugins.tags.plugin:TagsPlugin', -+ ], -+ 'mkdocs.themes': [ -+ 'material = material', -+ ], -+ }, -+ package_data={ -+ '': ['*', '.icons/*', '.icons/*/*', '.icons/*/*/*'], -+ }, -+) -- cgit v1.2.3