D2932: setup: register zope.interface packages and compile C extension
indygreg (Gregory Szorc)
phabricator at mercurial-scm.org
Wed Mar 28 18:26:31 UTC 2018
indygreg updated this revision to Diff 7351.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D2932?vs=7245&id=7351
REVISION DETAIL
https://phab.mercurial-scm.org/D2932
AFFECTED FILES
contrib/import-checker.py
setup.py
CHANGE DETAILS
diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -812,6 +812,8 @@
'mercurial.thirdparty.attr',
'mercurial.thirdparty.cbor',
'mercurial.thirdparty.cbor.cbor2',
+ 'mercurial.thirdparty.zope',
+ 'mercurial.thirdparty.zope.interface',
'mercurial.utils',
'hgext', 'hgext.convert', 'hgext.fsmonitor',
'hgext.fsmonitor.pywatchman', 'hgext.highlight',
@@ -894,6 +896,10 @@
extra_compile_args=osutil_cflags,
extra_link_args=osutil_ldflags,
depends=common_depends),
+ Extension(
+ 'mercurial.thirdparty.zope.interface._zope_interface_coptimizations', [
+ 'mercurial/thirdparty/zope/interface/_zope_interface_coptimizations.c',
+ ]),
Extension('hgext.fsmonitor.pywatchman.bser',
['hgext/fsmonitor/pywatchman/bser.c']),
]
diff --git a/contrib/import-checker.py b/contrib/import-checker.py
--- a/contrib/import-checker.py
+++ b/contrib/import-checker.py
@@ -37,6 +37,8 @@
'mercurial.pure.parsers',
# third-party imports should be directly imported
'mercurial.thirdparty',
+ 'mercurial.thirdparty.zope',
+ 'mercurial.thirdparty.zope.interface',
)
# Whitelist of symbols that can be directly imported.
To: indygreg, #hg-reviewers
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list