Files
ports/devel/py-dbus-deviation/files/patch-setup.py
T
Po-Chuan Hsieh f8ebf62236 devel/py-dbus-deviation: Add py-dbus-deviation 0.6.1
dbus-deviation is a project for parsing D-Bus introspection XML and processing
it in various ways. Its main tool is dbus-interface-diff, which calculates the
difference between two D-Bus APIs for the purpose of checking for API breaks.
This functionality is also available as a Python module, dbusdeviation.

A second Python module, dbusapi, is provided for parsing D-Bus introspection XML
to produce an AST representing a D-Bus interface.
2026-01-31 22:14:44 +08:00

23 lines
631 B
Python

--- setup.py.orig 2021-01-29 15:23:49 UTC
+++ setup.py
@@ -93,7 +93,6 @@ setuptools.setup(
zip_safe=True,
setup_requires=[
'setuptools_git >= 0.3',
- 'sphinx',
],
install_requires=['lxml'],
tests_require=[],
@@ -112,11 +111,4 @@ setuptools.setup(
license='LGPLv2.1+',
url='https://tecnocode.co.uk/dbus-deviation/',
cmdclass={'test': DiscoverTest},
- command_options={
- 'build_sphinx': {
- 'project': ('setup.py', project_name),
- 'version': ('setup.py', __version__),
- 'release': ('setup.py', __version__),
- },
- },
)