[Debian-live-changes] r1194 - in dists/trunk/live-helper: debian helpers

Daniel Baumann daniel at alioth.debian.org
Thu Apr 26 14:15:13 UTC 2007


Author: daniel
Date: 2007-04-26 14:15:13 +0000 (Thu, 26 Apr 2007)
New Revision: 1194

Modified:
   dists/trunk/live-helper/debian/changelog
   dists/trunk/live-helper/helpers/lh_binary_debian-installer
Log:


Modified: dists/trunk/live-helper/debian/changelog
===================================================================
--- dists/trunk/live-helper/debian/changelog	2007-04-26 13:50:25 UTC (rev 1193)
+++ dists/trunk/live-helper/debian/changelog	2007-04-26 14:15:13 UTC (rev 1194)
@@ -2,6 +2,7 @@
 
   * New upstream release:
     - updated syslinux templates (Closes: #399658).
+    - removed forgotten set -x in the cron (Closes: #421105).
 
  -- Daniel Baumann <daniel at debian.org>  Mon, 30 Apr 2007 00:00:00 +0200
 

Modified: dists/trunk/live-helper/helpers/lh_binary_debian-installer
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_debian-installer	2007-04-26 13:50:25 UTC (rev 1193)
+++ dists/trunk/live-helper/helpers/lh_binary_debian-installer	2007-04-26 14:15:13 UTC (rev 1194)
@@ -125,5 +125,30 @@
 	cd -
 done
 
+# Downloading debs
+if [ -d cache/packages_bootstrap ]
+then
+	for FILE in cache/packages_bootstrap/*.deb
+	do
+		SOURCE="`basename ${FILE} | awk -F_ '{ print $1 }'`"
+
+		case "${SOURCE}" in
+			lib?*)
+				LETTER="`echo ${SOURCE} | sed 's/\(....\).*/\1/'`"
+				;;
+
+			*)
+				LETTER="`echo ${SOURCE} | sed 's/\(.\).*/\1/'`"
+				;;
+		esac
+
+		# Install directory
+		mkdir -p binary/pool/"${LETTER}"/"${SOURCE}"
+
+		# Move files
+		cp "${FILE}" binary/pool/"${LETTER}"/"${SOURCE}"
+	done
+fi
+
 # Creating stage file
 Create_stagefile .stage/binary_debian-installer




More information about the Debian-live-changes mailing list