[Debian-live-changes] r2233 - dists/trunk/live-magic

lamby-guest at alioth.debian.org lamby-guest at alioth.debian.org
Fri Jun 22 18:45:56 UTC 2007


Author: lamby-guest
Date: 2007-06-22 18:45:56 +0000 (Fri, 22 Jun 2007)
New Revision: 2233

Added:
   dists/trunk/live-magic/TODO
Log:


Added: dists/trunk/live-magic/TODO
===================================================================
--- dists/trunk/live-magic/TODO	                        (rev 0)
+++ dists/trunk/live-magic/TODO	2007-06-22 18:45:56 UTC (rev 2233)
@@ -0,0 +1,28 @@
+live-magic TODO
+===============
+
+ * Identify which configuration variables need more advanced
+   treatment. Eg. common.LIVE_BINARY_IMAGES should really be a
+   sequence.
+ * Reading of std(in|out|err) from gtk.VteTerminal.
+ * Fix about box close dialog.
+
+API
+ * Fix API for LiveHelperConfiguration.
+ * Remove as much class metaprogramming as possible.
+ * Extract api to another package?
+     Would allow saner build scripts:
+
+     #!/usr/bin/env python
+     import os
+     import livehelper
+     lh = livehelper.Configuration()
+     for pkg_list in ['gnome', 'kde', 'standard', 'rescue']:
+	 for binary_type in ['iso', 'usb-hdd', 'tar', 'netboot']:
+             lh.common.LIVE_PACKAGES_LISTS = pkg_list
+             lh.binary.LIVE_BINARY_IMAGES = image_type
+             result = lh.build(save=True)
+	     ext = result.rsplit('.', 1)[1]
+             os.rename(result, 'debian-live-%s-%s.%s' % (pkg_list, binary_type, ext))
+
+    ^ Would need some way of saving logs.




More information about the Debian-live-changes mailing list