ports/sysutils/py-ansible-lint/files/patch-setup.py
Matthew Seaman ba6514502b Update to 4.2.0
Work around the new-style PEP-517 configuration by creating our own
setup.py, as suggested by sunpoet@

ChangeLog:	https://github.com/ansible/ansible-lint/blob/v4.2.0/CHANGELOG.rst
2019-12-10 06:47:32 +00:00

8 lines
166 B
Python

--- setup.py.orig 2019-12-09 07:04:35 UTC
+++ setup.py
@@ -0,0 +1,5 @@
+
+import setuptools
+if __name__ == "__main__":
+ setuptools.setup(use_scm_version=True)
+