summaryrefslogtreecommitdiff
path: root/textproc/py-ntc-templates/files/patch-setup.py
diff options
context:
space:
mode:
authorKai Knoblich <kai@FreeBSD.org>2023-02-23 19:45:34 +0100
committerKai Knoblich <kai@FreeBSD.org>2023-02-23 19:48:32 +0100
commitf73094c9a4f145b8718b86701a9025e357fd1242 (patch)
tree3634d80d0567d3ac546221449896d6c2473df106 /textproc/py-ntc-templates/files/patch-setup.py
parentnet-mgmt/py-netutils: Update to 1.4.1 (diff)
textproc/py-ntc-templates: Update to 3.2.0
* Switch to the PEP-517 build framework and remove the setuptools workaround. * Also convert "do-test" target to USE_PYTHON=pytest while I'm here. Changelog: https://github.com/networktocode/ntc-templates/compare/v3.1.0...v3.2.0 MFH: No (PEP-517 support not present in the 2023Q1 branch)
Diffstat (limited to 'textproc/py-ntc-templates/files/patch-setup.py')
-rw-r--r--textproc/py-ntc-templates/files/patch-setup.py29
1 files changed, 0 insertions, 29 deletions
diff --git a/textproc/py-ntc-templates/files/patch-setup.py b/textproc/py-ntc-templates/files/patch-setup.py
deleted file mode 100644
index 279ced16c65b..000000000000
--- a/textproc/py-ntc-templates/files/patch-setup.py
+++ /dev/null
@@ -1,29 +0,0 @@
---- setup.py.orig 2022-03-27 21:10:43 UTC
-+++ setup.py
-@@ -0,0 +1,26 @@
-+# -*- coding: utf-8 -*-
-+from setuptools import setup
-+
-+packages = \
-+['ntc_templates']
-+
-+package_data = \
-+{'': ['*'], 'ntc_templates': ['templates/*']}
-+
-+install_requires = \
-+['textfsm>=1.1.0,<2.0.0']
-+
-+setup_kwargs = {
-+ 'name': 'ntc-templates',
-+ 'version': '%%DISTVERSION%%',
-+ 'description': "TextFSM Templates for Network Devices, and Python wrapper for TextFSM's CliTable.",
-+ 'author': 'Network to Code',
-+ 'author_email': 'info@networktocode.com',
-+ 'url': 'https://github.com/networktocode/ntc-templates',
-+ 'packages': packages,
-+ 'package_data': package_data,
-+ 'install_requires': install_requires,
-+ 'python_requires': '>=3.6,<4.0',
-+}
-+
-+setup(**setup_kwargs)