[pkg-boinc-commits] r464 - in branches/sarge/boinc/debian: . patches

Frank S. Thomas fst-guest at costa.debian.org
Wed Jun 21 23:31:40 UTC 2006


Author: fst-guest
Date: 2006-06-21 23:31:39 +0000 (Wed, 21 Jun 2006)
New Revision: 464

Removed:
   branches/sarge/boinc/debian/patches/03_wx2.6-with-unicode.dpatch
Modified:
   branches/sarge/boinc/debian/changelog
   branches/sarge/boinc/debian/patches/00list
Log:
Prepared 5.4.10-1 for sarge-backports. This is totally untested.


Modified: branches/sarge/boinc/debian/changelog
===================================================================
--- branches/sarge/boinc/debian/changelog	2006-06-21 10:19:31 UTC (rev 463)
+++ branches/sarge/boinc/debian/changelog	2006-06-21 23:31:39 UTC (rev 464)
@@ -1,15 +1,26 @@
-boinc (5.4.9-2) unstable; urgency=low
+boinc (5.4.10-0bpo1) sarge-backports; urgency=low
 
-  * NOT RELEASED YET
+  * Initial upload to backports.org. The following changes were needed for the
+    backport to sarge:
+    - Removed boinc-manager package, since it needs a newer wxWidgets.
+    - boinc-dev: Depend on libmysqlclient14-dev instead of
+      libmysqlclient15-dev.
+    - boinc-client: Removed dependency on lsb-base (>= 3.0-6) and don't use
+      LSB init functions.
+    - Use debhelper compatibility level 4.
 
+ -- Frank S. Thomas <frank at thomas-alfeld.de>  Thu, 22 Jun 2006 01:11:47 +0200
+
+boinc (5.4.10-1) unstable; urgency=low
+
   [ Frank S. Thomas ]
-  * debian/control:
+  * New upstream release.
+    - Display Account Manager names correctly in BOINC Manager. This fixes
+      Ubuntu bug #48246.
+  * debian/control: 
     - Really bumped the Standards-Version to 3.7.2.
   * Added the boinc_gl.h header to the boinc-dev package. This file is needed
     to compile SETI at home's graphics component.
-  * debian/patches/:
-    - Added new 03_wx2.6-with-unicode.dpatch to display the AM name correctly.
-      See also Ubuntu bug #48246.
   * Added a hint to use "update-alternatives --set x-www-browser [...]" to
     manually set the x-www-browser alternative to boinc-manager's
     README.Debian. See Ubuntu bug #48766 for more details.
@@ -24,7 +35,7 @@
     - Make sure that the group boinc exists before trying to create the user
       boinc. Thanks to Christoph Martin for the report. (closes: #372950)
 
- -- Frank S. Thomas <frank at thomas-alfeld.de>  Tue, 13 Jun 2006 12:00:49 +0200
+ -- Frank S. Thomas <frank at thomas-alfeld.de>  Sat, 17 Jun 2006 21:09:15 +0200
 
 boinc (5.4.9-1) unstable; urgency=low
 

Modified: branches/sarge/boinc/debian/patches/00list
===================================================================
--- branches/sarge/boinc/debian/patches/00list	2006-06-21 10:19:31 UTC (rev 463)
+++ branches/sarge/boinc/debian/patches/00list	2006-06-21 23:31:39 UTC (rev 464)
@@ -1,3 +1,2 @@
-03_wx2.6-with-unicode.dpatch
 07_use-sensible-browser.dpatch
 10_exclude-sea.dpatch

Deleted: branches/sarge/boinc/debian/patches/03_wx2.6-with-unicode.dpatch
===================================================================
--- branches/sarge/boinc/debian/patches/03_wx2.6-with-unicode.dpatch	2006-06-21 10:19:31 UTC (rev 463)
+++ branches/sarge/boinc/debian/patches/03_wx2.6-with-unicode.dpatch	2006-06-21 23:31:39 UTC (rev 464)
@@ -1,65 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## 03_wx2.6-with-unicode.dpatch by Frank S. Thomas <frank at thomas-alfeld.de>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: No description.
-
- at DPATCH@
-diff -urNad boinc-5.4.9~/clientgui/MainFrame.cpp boinc-5.4.9/clientgui/MainFrame.cpp
---- boinc-5.4.9~/clientgui/MainFrame.cpp	2006-05-02 20:17:44.000000000 +0200
-+++ boinc-5.4.9/clientgui/MainFrame.cpp	2006-06-11 12:45:37.000000000 +0200
-@@ -366,11 +366,11 @@
-     } else {
-         strMenuName.Printf(
-             _("&Synchronize with %s"), 
--            ami.acct_mgr_name.c_str()
-+            wxString(ami.acct_mgr_name.c_str(), wxConvUTF8).c_str()
-         );
-         strMenuDescription.Printf(
-             _("Get current settings from %s"), 
--            ami.acct_mgr_name.c_str()
-+            wxString(ami.acct_mgr_name.c_str(), wxConvUTF8).c_str()
-         );
-         menuTools->Append(
-             ID_TOOLSAMUPDATENOW, 
-@@ -448,7 +448,7 @@
-     if (is_acct_mgr_detected) {
-         strMenuName.Printf(
-             _("&Defect from %s"), 
--            ami.acct_mgr_name.c_str()
-+            wxString(ami.acct_mgr_name.c_str(), wxConvUTF8).c_str()
-         );
-         menuAdvanced->Append(
-             ID_ADVANCEDAMDEFECT, 
-@@ -1220,7 +1220,7 @@
- 
-         strTitle.Printf(
-             _("BOINC Manager - Detach from %s"), 
--            ami.acct_mgr_name.c_str()
-+            wxString(ami.acct_mgr_name.c_str(), wxConvUTF8).c_str()
-         );
-         strMessage.Printf(
-             _("If you defect from %s,\n"
-@@ -1228,8 +1228,8 @@
-               "but you'll have to manage projects manually.\n"
-               "\n"
-               "Do you want to defect from %s?"), 
--            ami.acct_mgr_name.c_str(),
--            ami.acct_mgr_name.c_str()
-+            wxString(ami.acct_mgr_name.c_str(), wxConvUTF8).c_str(),
-+            wxString(ami.acct_mgr_name.c_str(), wxConvUTF8).c_str()
-         );
- 
-         iAnswer = ::wxMessageBox(
-diff -urNad boinc-5.4.9~/clientgui/ViewTransfers.cpp boinc-5.4.9/clientgui/ViewTransfers.cpp
---- boinc-5.4.9~/clientgui/ViewTransfers.cpp	2006-04-18 02:49:47.000000000 +0200
-+++ boinc-5.4.9/clientgui/ViewTransfers.cpp	2006-06-11 12:49:00.000000000 +0200
-@@ -188,7 +188,7 @@
-         _("Are you sure you want to abort this file transfer '%s'?\n"
-           "NOTE: Aborting a transfer will invalidate a task and you\n"
-           "will not receive credit for it."), 
--        pDoc->file_transfer(m_pListPane->GetFirstSelected())->name.c_str()
-+        wxString(pDoc->file_transfer(m_pListPane->GetFirstSelected())->name.c_str(), wxConvUTF8).c_str()
-     );
- 
-     iAnswer = ::wxMessageBox(




More information about the pkg-boinc-commits mailing list