[Python-modules-commits] r17612 - in packages/sphinx/trunk/debian (changelog docs rules)

jwilk at users.alioth.debian.org jwilk at users.alioth.debian.org
Sat Jun 25 20:43:18 UTC 2011


    Date: Saturday, June 25, 2011 @ 20:43:17
  Author: jwilk
Revision: 17612

Use build/html as build directory for documentation.

Modified:
  packages/sphinx/trunk/debian/changelog
  packages/sphinx/trunk/debian/docs
  packages/sphinx/trunk/debian/rules

Modified: packages/sphinx/trunk/debian/changelog
===================================================================
--- packages/sphinx/trunk/debian/changelog	2011-06-25 20:32:27 UTC (rev 17611)
+++ packages/sphinx/trunk/debian/changelog	2011-06-25 20:43:17 UTC (rev 17612)
@@ -8,8 +8,9 @@
       /usr/share/javascript/underscore/underscore.js.
   * Add Underscore.js license to debian/copyright.
   * Unify multiple calls to dh_link.
+  * Use build/html as build directory for documentation.
 
- -- Jakub Wilk <jwilk at debian.org>  Sat, 25 Jun 2011 22:28:51 +0200
+ -- Jakub Wilk <jwilk at debian.org>  Sat, 25 Jun 2011 22:42:58 +0200
 
 sphinx (1.0.7-5) unstable; urgency=low
 

Modified: packages/sphinx/trunk/debian/docs
===================================================================
--- packages/sphinx/trunk/debian/docs	2011-06-25 20:32:27 UTC (rev 17611)
+++ packages/sphinx/trunk/debian/docs	2011-06-25 20:43:17 UTC (rev 17612)
@@ -1,3 +1,3 @@
 README
 AUTHORS
-_build/html
+build/html

Modified: packages/sphinx/trunk/debian/rules
===================================================================
--- packages/sphinx/trunk/debian/rules	2011-06-25 20:32:27 UTC (rev 17611)
+++ packages/sphinx/trunk/debian/rules	2011-06-25 20:43:17 UTC (rev 17612)
@@ -31,8 +31,8 @@
 ifneq "$(underscore_version_debian)" "$(underscore_version_upstream)"
 	$(error Debian and upstream versions of Underscore.js do not match ($(underscore_version_debian) != $(underscore_version_upstream)))
 endif
-	mkdir -p _build/html
-	PYTHONPATH=. python debian/sphinx-build-local.py doc _build/html
+	mkdir -p build/html
+	PYTHONPATH=. python debian/sphinx-build-local.py doc build/html
 ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
 	set -e -x; \
 	for python in $(shell pyversions -r); do \
@@ -46,7 +46,7 @@
 	dh_testroot
 	python setup.py clean
 	find . -name '*.py[co]' -delete
-	rm -rf _build build *.egg-info
+	rm -rf build *.egg-info
 	dh_clean sphinx/pycode/*.pickle
 
 install: build




More information about the Python-modules-commits mailing list