gentoo/dev-python/markdown/files/markdown-2.6.8-dont-build-docs-default.patch
David Seifert 20c3a37648
dev-python/markdown: Version bump to 2.6.8
* EAPI 6
* Add py3.6 support
* Only build docs when USE="doc"
* Remove superfluous .txt files from
  generated documentation

Package-Manager: Portage-2.3.5, Repoman-2.3.2
2017-04-29 18:26:44 +02:00

15 lines
387 B
Diff

Don't build docs by default, which causes issues when trying
to remove .txt files, as they will be readded on installing.
--- a/setup.py
+++ b/setup.py
@@ -204,7 +204,7 @@
def initialize_options(self):
build.initialize_options(self)
- self.no_build_docs = False
+ self.no_build_docs = True
def has_docs(self):
return not self.no_build_docs