diff options
author | James Laska <jlaska@ansible.com> | 2015-08-26 17:49:09 +0200 |
---|---|---|
committer | James Laska <jlaska@ansible.com> | 2015-08-26 18:13:59 +0200 |
commit | 32a4a941e0b95debc3fcca1f21389902043cb147 (patch) | |
tree | e1799848034fea79ea86280369180aafc2655459 /MANIFEST.in | |
parent | Fix chunked stdout display issue (diff) | |
download | awx-32a4a941e0b95debc3fcca1f21389902043cb147.tar.xz awx-32a4a941e0b95debc3fcca1f21389902043cb147.zip |
Gather pip requirements at package build time
Previously, requirements were gathered prior to the `sdist` target, and
included in the sdist tarball. As some requirements are compiled, this caused
problems where the compiled dependencies were linked against the wrong
libraries. This pull-request addresses that by moving the requirements
gathering into the `dh_prep` and `%build` steps of the packaging process.
Diffstat (limited to 'MANIFEST.in')
-rw-r--r-- | MANIFEST.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MANIFEST.in b/MANIFEST.in index 5af81ddecc..1825574341 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -6,9 +6,8 @@ recursive-include awx/ui/templates *.html recursive-include awx/ui/dist * recursive-include awx/playbooks *.yml recursive-include awx/lib/site-packages * +recursive-include requirements *.txt recursive-include config * -recursive-include config/deb * -recursive-include config/rpm * recursive-exclude awx devonly.py* recursive-exclude awx/api/tests * recursive-exclude awx/main/tests * @@ -18,5 +17,6 @@ include tools/scripts/ansible-tower-service include tools/munin_monitors/* include tools/sosreport/* include COPYING +include Makefile prune awx/public prune awx/projects |