summaryrefslogtreecommitdiff
path: root/textproc/py-mkdocs-material/files/patch-setup.py
diff options
context:
space:
mode:
authorKai Knoblich <kai@FreeBSD.org>2023-03-16 06:56:51 +0100
committerKai Knoblich <kai@FreeBSD.org>2023-03-16 06:57:41 +0100
commitcbf776676ab6468b5d91a2eaf4b22cf0bbdc57de (patch)
tree089c1501135eddfcae71a74d257eebe4d037f1e5 /textproc/py-mkdocs-material/files/patch-setup.py
parentdevel/py-hatch-requirements-txt: New port (diff)
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)
Diffstat (limited to 'textproc/py-mkdocs-material/files/patch-setup.py')
-rw-r--r--textproc/py-mkdocs-material/files/patch-setup.py52
1 files changed, 0 insertions, 52 deletions
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 <martin.donath@squidfunk.com>',
-+ 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/*/*/*'],
-+ },
-+)