Files
ports/textproc/py-textfsm/files/patch-setup.py
T
Kai Knoblich 55e313e339 textproc/py-textfsm: Update to 2.1.0
* Switch to the PEP517 build framework.

* Add TEST_ENV to ensure that tests are run against the new copy of the
  module in the staging directory and remove superfluous TEST_DEPENDS as
  it's already set via "USE_PYTHON=pytest" while I'm here.

Changelogs since 1.1.0:

https://github.com/google/textfsm/releases/tag/v2.1.0
https://github.com/google/textfsm/releases/tag/v2.0.0
2025-08-29 09:45:31 +02:00

13 lines
359 B
Python

Remove "testdata" directory from installation. It is only required for the
testsuite.
--- setup.py.orig 2025-03-21 04:48:22 UTC
+++ setup.py
@@ -50,6 +50,4 @@ setup(
],
packages=['textfsm'],
entry_points={'console_scripts': ['textfsm=textfsm.parser:main']},
- include_package_data=True,
- package_data={'textfsm': ['../testdata/*']},
)