setup: add missing hgext.fsmonitor
Before this patch, fsmonitor was not installed along with other extensions. It
did correctly build the C files needed but forgot to copy over the python
files. This patch fixes it by adding fsmonitor and fsmonitor.pywatchman to the
correct install variable.
--- a/setup.py Fri Mar 25 16:23:23 2016 -0500
+++ b/setup.py Tue Mar 22 16:08:02 2016 -0700
@@ -505,8 +505,9 @@
packages = ['mercurial', 'mercurial.hgweb', 'mercurial.httpclient',
'mercurial.pure',
- 'hgext', 'hgext.convert', 'hgext.highlight', 'hgext.largefiles',
- 'hgext.zeroconf', 'hgext3rd']
+ 'hgext', 'hgext.convert', 'hgext.fsmonitor',
+ 'hgext.fsmonitor.pywatchman', 'hgext.highlight',
+ 'hgext.largefiles', 'hgext.zeroconf', 'hgext3rd']
common_depends = ['mercurial/util.h']