Skip to content
Snippets Groups Projects
Commit 06680ace authored by Scott Kitterman's avatar Scott Kitterman
Browse files

Stop automatically regenerating static content (dh_python2 man pages and

Python FAQ) and drop build-dep on python-docutils to ease bootstrapping
(Closes: #754060)
parent a47cd2bb
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ clean:
make -C tests clean
make -C pydist clean
find . -name '*.py[co]' -delete
rm -f .coverage $(MANPAGES)
rm -f .coverage
install-dev:
$(INSTALL) -m 755 -d $(DESTDIR)$(PREFIX)/bin \
......@@ -28,14 +28,6 @@ install-runtime:
install: install-dev install-runtime
%.1: %.rst
rst2man $< > $@
%.html: %.rst
rst2html $< > $@
manpages: $(MANPAGES)
dist_fallback:
make -C pydist $@
......
......@@ -17,6 +17,9 @@ python-defaults (2.7.7-1) UNRELEASED; urgency=medium
* Clarify discussion of requirement to use python:Provides (Closes: #669346)
* Add clarification of naming requirements for submocules (Closes: #701192)
* Minor cleanups in debian/pyversions.py
* Stop automatically regenerating static content (dh_python2 man pages and
Python FAQ) and drop build-dep on python-docutils to ease bootstrapping
(Closes: #754060)
-- Matthias Klose <doko@debian.org> Mon, 02 Jun 2014 19:54:25 +0200
......
......@@ -81,6 +81,7 @@ endif
faqs = index general programming library extending windows gui installed
get-faq:
# Note: This rule is broken due to web site reorg at python.org
rm -rf faq
mkdir faq
cd faq && \
......@@ -95,6 +96,14 @@ get-faq:
) >> faq/FAQ.ht
rm -f faq/index.ht
MANPAGES ?= dh_python2.1 pycompile.1 pyclean.1
%.1: %.rst
rst2man $< > $@
# Manually run this rule if there is a need to update the dh_python2 man pages
make-man: $(MANPAGES)
clean: control-file
dh_testdir
dh_testroot
......@@ -103,7 +112,6 @@ clean: control-file
rm -f debian/python-policy.txt
rm -rf debian/python-policy.html
rm -f faq/*.h2 faq/*.html
set -e;\
for f in debian/*.in; do \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment