[Pkg-xen-changes] r406 - in trunk: xen-3.1/debian xen-3.1/debian/templates xen-common/debian

Ralph Passgang tha-guest at alioth.debian.org
Sat Jul 21 14:06:37 UTC 2007


Author: tha-guest
Date: Sat Jul 21 14:06:37 2007
New Revision: 406

Log:
xen-3.1:
* added graphviz to build-dependencies (build-indep)
xen-common:
* unbrake xen-common build


Modified:
   trunk/xen-3.1/debian/changelog
   trunk/xen-3.1/debian/templates/control.source.in
   trunk/xen-common/debian/changelog
   trunk/xen-common/debian/rules

Modified: trunk/xen-3.1/debian/changelog
==============================================================================
--- trunk/xen-3.1/debian/changelog	(original)
+++ trunk/xen-3.1/debian/changelog	Sat Jul 21 14:06:37 2007
@@ -1,8 +1,12 @@
 xen-3.1 (3.1.0-0-1) UNRELEASED; urgency=low
 
+  [ Julien Danjou ]
   * New upstream version.
   * Update some dpatches, fix pygrub, thanks to Peter Siering
 
+  [ Ralph Passgang ]
+  * added graphviz to Build-Indeps
+
  -- Julien Danjou <acid at debian.org>  Tue, 19 Jun 2007 20:55:15 +0200
 
 xen-3.0 (3.0.4-1-1) unstable; urgency=low

Modified: trunk/xen-3.1/debian/templates/control.source.in
==============================================================================
--- trunk/xen-3.1/debian/templates/control.source.in	(original)
+++ trunk/xen-3.1/debian/templates/control.source.in	Sat Jul 21 14:06:37 2007
@@ -4,7 +4,7 @@
 Maintainer: Debian Xen Team <pkg-xen-devel at lists.alioth.debian.org>
 Uploaders: Julien Danjou <acid at debian.org>, Jeremy T. Bouse <jbouse at debian.org>, Guido Trotter <ultrotter at debian.org>, Bastian Blank <waldi at debian.org>
 Build-Depends: debhelper (>= 5.0.37.2), python-dev (>= 2.3), libsdl1.2-dev, bcc, dpatch, lsb-release, python-central (>= 0.5), zlib1g-dev, libncurses5-dev, x11proto-core-dev, libssl-dev, libcrypto++-dev
-Build-Depends-Indep: transfig, tetex-bin, tetex-extra, gs-common
+Build-Depends-Indep: transfig, tetex-bin, tetex-extra, gs-common, graphviz
 Standards-Version: 3.7.2.0
 XS-Python-Version: current
 

Modified: trunk/xen-common/debian/changelog
==============================================================================
--- trunk/xen-common/debian/changelog	(original)
+++ trunk/xen-common/debian/changelog	Sat Jul 21 14:06:37 2007
@@ -7,6 +7,10 @@
   [ Guido Trotter ]
   * Handle gracefully domains called Name.* (closes: #432583)
 
+  [ Ralph Passgang ]
+  * create directories with mkdir's "-p" option
+  * create $(BUILD_DIR)/docs/out before pod2man is executed.
+
  -- Guido Trotter <ultrotter at debian.org>  Tue, 10 Jul 2007 21:21:51 +0100
 
 xen-common (3.0.4-1-2) unstable; urgency=low

Modified: trunk/xen-common/debian/rules
==============================================================================
--- trunk/xen-common/debian/rules	(original)
+++ trunk/xen-common/debian/rules	Sat Jul 21 14:06:37 2007
@@ -12,17 +12,18 @@
 $(STAMPS_DIR)/source: $(STAMPS_DIR)
 	dh_testdir
 	@rm -rf $(BUILD_DIR)
-	mkdir $(BUILD_DIR)
+	mkdir -p $(BUILD_DIR)
 	cp -a $(srcfiles) $(BUILD_DIR)
 	dpatch -d $(BUILD_DIR) apply-all
 	touch $@
 
 define build_man
+	mkdir -p $(BUILD_DIR)/docs/out
 	pod2man --release=$(VERSION) --name=$(3) -s $(4) -c Xen $(BUILD_DIR)/docs/man/$(1) $(BUILD_DIR)/docs/out/$(2)
 endef
 
 build: $(STAMPS_DIR)/source
-	mkdir $(BUILD_DIR)/docs/man
+	mkdir -p $(BUILD_DIR)/docs/man
 	$(call build_man,xend-config.sxp.pod.5,xend-config.sxp.5,xend-config.sxp,5)
 	$(call build_man,xmdomain.cfg.pod.5,xmdomain.cfg.5,xmdomain.cfg,5)
 	$(call build_man,xm.pod.1,xm.1,xm,1)
@@ -33,7 +34,7 @@
 	dh_clean
 
 $(BUILD_DIR) $(STAMPS_DIR):
-	@[ -d $@ ] || mkdir $@
+	@[ -d $@ ] || mkdir -p $@
 
 NO_ORIG = .svn debian scripts
 



More information about the Pkg-xen-changes mailing list