r7888 - in packages/trunk/invaders/debian: . scripts

Fabian Greffrath fabian-guest at alioth.debian.org
Fri Aug 1 12:44:04 UTC 2008


Author: fabian-guest
Date: 2008-08-01 12:44:04 +0000 (Fri, 01 Aug 2008)
New Revision: 7888

Modified:
   packages/trunk/invaders/debian/changelog
   packages/trunk/invaders/debian/control
   packages/trunk/invaders/debian/scripts/grub
Log:
  * debian/scripts/grub:
    + Fixed to use functions out of /usr/lib/grub/update-grub_lib instead of
      ${GRUB_DRIVE_BOOT} (Closes: #492267). Thanks
      Justin B Rye <jbr at edlug.org.uk>.
    + Added a missing "prepare_grub_to_access_device ${GRUB_DEVICE_BOOT}"
      call. Without it, it could break if /boot/ is in a different device than
      whatever came before invaders. Thanks Robert Millan <rmh at aybabtu.com>.



Modified: packages/trunk/invaders/debian/changelog
===================================================================
--- packages/trunk/invaders/debian/changelog	2008-07-31 19:04:33 UTC (rev 7887)
+++ packages/trunk/invaders/debian/changelog	2008-08-01 12:44:04 UTC (rev 7888)
@@ -1,13 +1,21 @@
-invaders (1.0.0-8) UNRELEASED; urgency=low
+invaders (1.0.0-8) unstable; urgency=low
 
   * debian/control:
     + Set Maintainer to Debian Games Team and added myself to Uploaders.
     + Added Vcs-Svn and Vcs-Browser fields.
+    + Bumped Suggests to 'grub2 (>= 1.96+20080531-1)'.
   * debian/patches/01-pointer-targets-differ-in-signedness.dpatch:
-    + Fixed misspelling: "YOU LOOSE" should be "YOU LOSE". Thanks
-      Daniel Kahn Gillmor <dkg-debian.org at fifthhorseman.net>.
+    + Fixed misspelling: "YOU LOOSE" should be "YOU LOSE" (Closes: #478928).
+      Thanks Daniel Kahn Gillmor <dkg-debian.org at fifthhorseman.net>.
+  * debian/scripts/grub:
+    + Fixed to use functions out of /usr/lib/grub/update-grub_lib instead of
+      ${GRUB_DRIVE_BOOT} (Closes: #492267). Thanks
+      Justin B Rye <jbr at edlug.org.uk>.
+    + Added a missing "prepare_grub_to_access_device ${GRUB_DEVICE_BOOT}"
+      call. Without it, it could break if /boot/ is in a different device than
+      whatever came before invaders. Thanks Robert Millan <rmh at aybabtu.com>.
 
- -- Fabian Greffrath <fabian at debian-unofficial.org>  Fri, 02 May 2008 09:58:00 +0100
+ -- Fabian Greffrath <fabian at debian-unofficial.org>  Fri,  1 Aug 2008 14:44:00 +0100
 
 invaders (1.0.0-7) unstable; urgency=low
 

Modified: packages/trunk/invaders/debian/control
===================================================================
--- packages/trunk/invaders/debian/control	2008-07-31 19:04:33 UTC (rev 7887)
+++ packages/trunk/invaders/debian/control	2008-08-01 12:44:04 UTC (rev 7888)
@@ -12,7 +12,7 @@
 Package: grub-invaders
 Architecture: i386 hurd-i386 kfreebsd-i386 amd64 kfreebsd-amd64
 Depends: ${misc:Depends}
-Suggests: grub2 (>= 1.95+20080116-1)
+Suggests: grub2 (>= 1.96+20080531-1)
 Description: multiboot compliant kernel game
  GRUB Invaders is a game that runs directly on a computer, without an operating
  system. It is meant to be started with the GRUB bootloader for PCs.

Modified: packages/trunk/invaders/debian/scripts/grub
===================================================================
--- packages/trunk/invaders/debian/scripts/grub	2008-07-31 19:04:33 UTC (rev 7887)
+++ packages/trunk/invaders/debian/scripts/grub	2008-08-01 12:44:04 UTC (rev 7888)
@@ -1,10 +1,15 @@
 #!/bin/bash -e
 
 if test -e /boot/invaders ; then
+  source /usr/lib/grub/update-grub_lib
+  INVADERSPATH=$( make_system_path_relative_to_its_root "/boot/invaders" )
   echo "Found GRUB Invaders image: /boot/invaders" >&2
   cat << EOF
 menuentry "GRUB Invaders" {
-	multiboot	${GRUB_DRIVE_BOOT}/invaders
+EOF
+prepare_grub_to_access_device ${GRUB_DEVICE_BOOT} | sed -e "s/^/\t/g"
+cat << EOF
+	multiboot	$INVADERSPATH
 }
 EOF
 fi




More information about the Pkg-games-commits mailing list