[Webapps-common-discuss] webapps-common/debian changelog, 1.5, 1.6 rules, 1.4, 1.5

seanius at haydn.debian.org seanius at haydn.debian.org
Fri Mar 31 07:04:58 UTC 2006


Update of /cvsroot/webapps-common/webapps-common/debian
In directory haydn:/org/alioth.debian.org/chroot/home/users/seanius/tmp/cvs-serv4048/debian

Modified Files:
	changelog rules 
Log Message:
some offline work i did

Index: changelog
===================================================================
RCS file: /cvsroot/webapps-common/webapps-common/debian/changelog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- changelog	24 Nov 2005 10:28:51 -0000	1.5
+++ changelog	31 Mar 2006 07:04:54 -0000	1.6
@@ -1,6 +1,23 @@
 webapps-common (0.3) UNRELEASED; urgency=low
 
   [sean finney]
+  * whee... haven't touched this in a while!
+  * split example packages into seperate source packages, as this makes
+    things much clearer to those learning about webapps-common.
+  * fix the pgrep expression in wc_httpd_running to catch web servers
+    even if they are run with nonstandard arguments.
+  * remove preinst hooks, as we would need pre-depends for them
+    and that's never fun.
+  * add some debugging and logging functions
+  * add a variable in debian/rules to control whether to compile
+    all the documentation (which takes a while and is not necessary
+    for code development)
+
+ -- sean finney <seanius at debian.org>  Fri, 31 Mar 2006 08:49:34 +0200
+
+webapps-common (0.3) UNRELEASED; urgency=low
+
+  [sean finney]
   * fix from matt brown to use wc_httpd_running instead of 
     wc_httpd_supported.
   * updated debian/rules build-deps to include stuff for

Index: rules
===================================================================
RCS file: /cvsroot/webapps-common/webapps-common/debian/rules,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- rules	24 Nov 2005 10:28:51 -0000	1.4
+++ rules	31 Mar 2006 07:04:54 -0000	1.5
@@ -13,6 +13,8 @@
 SHARE:=${TMPDIR}/usr/share/webapps-common
 DOC:=${TMPDIR}/usr/share/doc/webapps-common
 
+builddocs=no
+
 configure: configure-stamp
 configure-stamp:
 	dh_testdir
@@ -20,16 +22,19 @@
 
 
 build: build-stamp
-	make -C doc
-
 build-stamp: configure-stamp 
 	dh_testdir
 	touch build-stamp
+ifeq ($(builddocs),yes)
+	make -C doc
+endif
+
 
 clean:
 	dh_testdir
 	dh_testroot
 	make -C doc clean
+	rm -f examples/*deb
 	rm -f build-stamp configure-stamp
 	dh_clean 
 	debconf-updatepo




More information about the Webapps-common-discuss mailing list