mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-04-28 04:07:32 -07:00
* 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
15 lines
387 B
Diff
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
|