[LNT] r306670 - Fix MANIFEST.in file adding two missing entries.
Kristof Beyls via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 29 06:09:23 PDT 2017
Author: kbeyls
Date: Thu Jun 29 06:09:23 2017
New Revision: 306670
URL: http://llvm.org/viewvc/llvm-project?rev=306670&view=rev
Log:
Fix MANIFEST.in file adding two missing entries.
These are required to correctly specify the files needed to distribute LNT as
redistributable Python source distribution. If we don’t supply an explicit
list of files, packaging command puts a minimal default set of files into the
source distribution (omitting requirements.client.txt &
requirements.server.txt). Both .txt files store pinned versions of dependencies
for LNT client and server.
Patch by Przemysław Wirkus.
Differential Revision: https://reviews.llvm.org/D34617
Modified:
lnt/trunk/MANIFEST.in
Modified: lnt/trunk/MANIFEST.in
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/MANIFEST.in?rev=306670&r1=306669&r2=306670&view=diff
==============================================================================
--- lnt/trunk/MANIFEST.in (original)
+++ lnt/trunk/MANIFEST.in Thu Jun 29 06:09:23 2017
@@ -1,4 +1,5 @@
include README.txt CHANGELOG.txt
+include requirements.client.txt requirements.server.txt
recursive-include docs *
recursive-include tests *
recursive-include examples *
More information about the llvm-commits
mailing list