[PATCH 2 of 2] setup: add missing hgext.fsmonitor

Sean Farley sean at farley.io
Tue Mar 22 19:17:58 EDT 2016


# HG changeset patch
# User Sean Farley <sean at farley.io>
# Date 1458688082 25200
#      Tue Mar 22 16:08:02 2016 -0700
# Node ID c330ac3641660d028c235ad969dd5a7eda1b018c
# Parent  c11f0992d1246286a6a0b2531ff5f31948abcf58
# EXP-Topic smf/fix-install
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 to the correct variable.

diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -503,12 +503,12 @@ cmdclass = {'build': hgbuild,
             'build_hgexe': buildhgexe,
             }
 
 packages = ['mercurial', 'mercurial.hgweb', 'mercurial.httpclient',
             'mercurial.pure',
-            'hgext', 'hgext.convert', 'hgext.highlight', 'hgext.largefiles',
-            'hgext.zeroconf', 'hgext3rd']
+            'hgext', 'hgext.convert', 'hgext.fsmonitor', 'hgext.highlight',
+            'hgext.largefiles', 'hgext.zeroconf', 'hgext3rd']
 
 common_depends = ['mercurial/util.h']
 
 osutil_ldflags = []
 


More information about the Mercurial-devel mailing list