[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#598105: marked as done (unblock: win32-loader/0.6.19)



Your message dated Mon, 27 Sep 2010 20:59:55 +0200
with message-id <4CA0E9AB.5050901@dogguy.org>
and subject line Re: Bug#598105: unblock: win32-loader/0.6.19
has caused the Debian Bug report #598105,
regarding unblock: win32-loader/0.6.19
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
598105: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=598105
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian.org@packages.debian.org
Usertags: unblock

Please unblock package win32-loader in its 0.6.19 version.

The 0.6.19 version fixes the "Windows™ 7™" boot ( #595140 ) and includes some
translations. The changelog entry is: 

win32-loader (0.6.19) unstable; urgency=low

  [ Updated translations ]
    - Asturian (Maacub)
    - Spanish (Javier Fernández-Sanguino)
    - Icelandic added (Sveinn í Felli)
    - Telegu (Veeven). Closes: #593097

  * Update the kfreebsd daily netboot download.
  * Fix wrong Windows 7 detection as Windows NT and specify the device name in
    the bootmgr (Closes: #595140)

 -- Didier Raboud <didier@raboud.com>  Thu, 02 Sep 2010 20:04:38 +0200

The following debdiff is attached:

debdiff win32-loader_0.6.1{8,9}.dsc | filterdiff -x '*.po' > \
	win32-loader_0.6.18-19.debdiff 

Thanks in advance, cheers,

OdyX

unblock win32-loader/0.6.19

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (750, 'unstable'), (700, 'testing-proposed-updates'), (700, 'testing'), (101, 'testing-proposed-updates'), (101, 'experimental'), (101, 'unstable'), (101, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.35-trunk-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_CH.UTF-8, LC_CTYPE=fr_CH.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru win32-loader-0.6.18/debian/changelog win32-loader-0.6.19/debian/changelog
--- win32-loader-0.6.18/debian/changelog	2010-08-03 20:57:42.000000000 +0200
+++ win32-loader-0.6.19/debian/changelog	2010-09-02 20:04:40.000000000 +0200
@@ -1,3 +1,17 @@
+win32-loader (0.6.19) unstable; urgency=low
+
+  [ Updated translations ]
+    - Asturian (Maacub)
+    - Spanish (Javier Fernández-Sanguino)
+    - Icelandic added (Sveinn í Felli)
+    - Telegu (Veeven). Closes: #593097
+
+  * Update the kfreebsd daily netboot download.
+  * Fix wrong Windows 7 detection as Windows NT and specify the device name in
+    the bootmgr (Closes: #595140)
+
+ -- Didier Raboud <didier@raboud.com>  Thu, 02 Sep 2010 20:04:38 +0200
+
 win32-loader (0.6.18) unstable; urgency=low
 
   [ Updated translations ]
diff -Nru win32-loader-0.6.18/l10n/Makefile win32-loader-0.6.19/l10n/Makefile
--- win32-loader-0.6.18/l10n/Makefile	2010-08-01 17:35:37.000000000 +0200
+++ win32-loader-0.6.19/l10n/Makefile	2010-09-01 11:59:48.000000000 +0200
@@ -1,7 +1,7 @@
 # Add only languages really supported by NSIS there
 # For others, a PO file may be added and kept until NSIS is translated
-# Languages not yet supported by NSIS: ast bn dz kk ml vi
-LINGUAS= ar be bg bs ca cs de el en eo es eu fi fr ga gl he hr hu it ja ko lt nb nl pl pt pt_BR ro ru sk sl sq sv th tr uk zh_CN zh_TW
+# Languages not yet supported by NSIS: ast bn dz kk ml te vi
+LINGUAS= ar be bg bs ca cs de el en eo es eu fi fr ga gl he hr hu is it ja ko lt nb nl pl pt pt_BR ro ru sk sl sq sv th tr uk zh_CN zh_TW
 
 all: templates/all.nsh templates/dialog.nsh po/messages.pot
 
diff -Nru win32-loader-0.6.18/l10n/po/ast.po win32-loader-0.6.19/l10n/po/ast.po
diff -Nru win32-loader-0.6.18/l10n/po/es.po win32-loader-0.6.19/l10n/po/es.po
diff -Nru win32-loader-0.6.18/l10n/po/is.po win32-loader-0.6.19/l10n/po/is.po
diff -Nru win32-loader-0.6.18/l10n/po/te.po win32-loader-0.6.19/l10n/po/te.po
diff -Nru win32-loader-0.6.18/main.nsi win32-loader-0.6.19/main.nsi
--- win32-loader-0.6.18/main.nsi	2010-05-05 18:15:02.000000000 +0200
+++ win32-loader-0.6.19/main.nsi	2010-09-01 15:21:18.000000000 +0200
@@ -168,22 +168,18 @@
 
   ; Windows version is another abort condition
   Var /GLOBAL windows_boot_method
-  ${If} ${IsNT}
-    StrCpy $windows_boot_method ntldr
-    Goto windows_version_ok
-  ${Endif}
   ${If} ${AtMostWinME}
     StrCpy $windows_boot_method direct
+    ${If} ${IsNT}
+      StrCpy $windows_boot_method ntldr
+    ${Endif}
     Goto windows_version_ok
   ${Endif}
   ${If} ${AtMostWin2003}
     StrCpy $windows_boot_method ntldr
     Goto windows_version_ok
   ${Endif}
-  ${If} ${AtMostWinVista}
-; In the default install, "system partition" is not mounted.  We need a way
-; around this before Windows 7 can be enabled.
-;  ${OrIf} ${IsWin7}
+  ${If} ${AtMostWin7}
     StrCpy $windows_boot_method bootmgr
     Goto windows_version_ok
   ${Endif}
@@ -382,7 +378,7 @@
         StrCpy $base_url "http://d-i.debian.org/daily-images/$arch/daily/netboot/$gtkdebian-installer/$arch";
       ${Endif}
     ${ElseIf} $kernel == "kfreebsd"
-      StrCpy $base_url "http://d-i.debian.org/daily-images/kfreebsd-$arch/daily/monolithic";
+      StrCpy $base_url "http://d-i.debian.org/daily-images/kfreebsd-$arch/daily/netboot/debian-installer/kfreebsd-$arch/";
     ${EndIf}
   ${Else}
     ${If} $kernel == "linux"
@@ -882,6 +878,7 @@
     ${Endif}
     nsExec::Exec '"$bcdedit" /set $0 device boot'
     nsExec::Exec '"$bcdedit" /set $0 path \g2ldr.mbr'
+    nsExec::Exec '"$bcdedit" /set $0 device partition=$c'
     nsExec::Exec '"$bcdedit" /displayorder $0 /addlast'
   ${Endif}
 

--- End Message ---
--- Begin Message ---
On 09/26/2010 04:23 PM, Didier Raboud wrote:
> Package: release.debian.org
> Severity: normal
> User: release.debian.org@packages.debian.org
> Usertags: unblock
> 
> Please unblock package win32-loader in its 0.6.19 version.
> 

Unblocked (with otavio's blessing).

Regards,

-- 
Mehdi Dogguy مهدي الدڤي
http://dogguy.org/


--- End Message ---

Reply to: