r833 - in zope-debhelper/trunk: . debian

Bernd Zeimetz bzed-guest at alioth.debian.org
Fri May 4 18:26:27 UTC 2007


Author: bzed-guest
Date: 2007-05-04 18:26:26 +0000 (Fri, 04 May 2007)
New Revision: 833

Modified:
   zope-debhelper/trunk/debian/changelog
   zope-debhelper/trunk/dh_installzopeinstance
Log:
Products: fix, adding appropriate changelog entries


Modified: zope-debhelper/trunk/debian/changelog
===================================================================
--- zope-debhelper/trunk/debian/changelog	2007-05-04 08:29:09 UTC (rev 832)
+++ zope-debhelper/trunk/debian/changelog	2007-05-04 18:26:26 UTC (rev 833)
@@ -1,8 +1,16 @@
 zope-debhelper (0.3.7) UNRELEASED; urgency=low
 
-  * Fixed a few typos in dh_installzopeinstance
+  * dh_installzopeinstance and appropriate autoscripts:
+      - Fixing a few typos
+      - Adding support for the 'Skeleton' option, which allows to
+        provide skeleton dirs with a package, which are different
+        from the default Zope skeleton
+      - Allow a comma seperated list in the 'Products' entry of
+        dzinstance files
+  * Change debian/control to depend on the first version of zope-common
+    which supports the skeleteon option.
 
- -- Bernd Zeimetz <bernd at bzed.de>  Wed, 18 Apr 2007 18:57:56 +0200
+ -- Bernd Zeimetz <bernd at bzed.de>  Fri, 04 May 2007 20:16:32 +0200
 
 zope-debhelper (0.3.6) unstable; urgency=medium
 

Modified: zope-debhelper/trunk/dh_installzopeinstance
===================================================================
--- zope-debhelper/trunk/dh_installzopeinstance	2007-05-04 08:29:09 UTC (rev 832)
+++ zope-debhelper/trunk/dh_installzopeinstance	2007-05-04 18:26:26 UTC (rev 833)
@@ -178,7 +178,11 @@
 			$dzinstance{'Addon-Mode'} = 'manual' if (!$dzinstance{'Addon-Mode'});
 			$dzinstance{'Addon-Technique'} = 'tree-linked' if (!$dzinstance{'Addon-Technique'});
 			$dzinstance{'RestartPolicy'} = 'end' if (!$dzinstance{'RestartPolicy'});
-			$dzinstance{'Products'} = '' if (!$dzinstance{'Products'});
+			if ($dzinstance{'Products'}) {
+				$dzinstance{'Products'} =~ s/,//g;
+			} else {
+				$dzinstance{'Products'} = ''
+			}
 			$dzinstance{'Port'} = '9673' if (!$dzinstance{'Port'});
 			if ($dzinstance{'Skeleton'}) {
 				$dzinstance{'Skeleton'} = '--skelsrc ' . $dzinstance{'Skeleton'};
@@ -216,5 +220,6 @@
 =head1 AUTHOR
 
 Fabio Tranchitella <kobold at debian.org>
+Bernd Zeimetz <bernd at bzed.de>
 
 =cut




More information about the pkg-zope-commits mailing list