# HG changeset patch # User Anton Shestakov # Date 1612180359 -28800 # Node ID 7d5d9301c244a17bf0f7ca977875b795f990c2aa # Parent 94b458d3b9615659a2409e2c9c2ee7baf479619b manifest: include all .py files from hgext3rd This is required for packaging a tarball correctly on debian testing, where the current version of python and/or setuptools and/or distutils result in hgext3rd directory being included in the MANIFEST file using absolute paths to the files, and somehow that doesn't work correctly and the tarball has only a README file from topics and nothing else inside hgext3rd. Also see 3e7025a55c1b. diff -r 94b458d3b961 -r 7d5d9301c244 MANIFEST.in --- a/MANIFEST.in Mon Feb 01 11:52:04 2021 +0100 +++ b/MANIFEST.in Mon Feb 01 19:52:39 2021 +0800 @@ -4,6 +4,7 @@ include MANIFEST.in include README.rst include setup.py +recursive-include hgext3rd *.py recursive-include tests *.py *.sh *.t include docs/makefile