Your message dated Wed, 09 Nov 2011 22:32:15 +0000
with message-id <[email protected]>
and subject line Bug#645759: fixed in boa-constructor 0.6.1-12
has caused the Debian Bug report #645759,
regarding boa-constructor: Please update to use wxwidgets2.8
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 [email protected]
immediately.)


-- 
645759: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=645759
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: boa-constructor
Version: 0.6.1-11
Tags: patch
User: [email protected]
Usertags: wx2.6to2.8

I'm trying to get packages to migrate from wxwidgets2.6 to wxwidgets2.8
so we can remove the former from the archive - it's no longer supported
upstream, and wxwidgets3.0 is supposed to be out early next year.

I updated boa-constructor as per the attached patch to see what might
be needed.

I'm not familiar with the package, but it generally seems to work fine
except that if I create a new PythonApp then exit the application and
say "No" to saving, I get a segfault.  I don't get that with 0.6.1-11 (the
version currently in unstable).

I think the segfault really needs investigating before upload, and more
thorough testing would be appropriate anyway, but hopefully the attached
patch is a useful start.

Cheers,
    Olly
diff -Nru boa-constructor-0.6.1/debian/changelog boa-constructor-0.6.1/debian/changelog
--- boa-constructor-0.6.1/debian/changelog	2011-03-22 11:07:11.000000000 +1300
+++ boa-constructor-0.6.1/debian/changelog	2011-10-19 00:50:53.000000000 +1300
@@ -1,3 +1,10 @@
+boa-constructor (0.6.1-11.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Update to use python-wxgtk2.8.
+
+ -- Olly Betts <[email protected]>  Tue, 18 Oct 2011 11:50:11 +0000
+
 boa-constructor (0.6.1-11) unstable; urgency=low
 
   * debian/source:
diff -Nru boa-constructor-0.6.1/debian/control boa-constructor-0.6.1/debian/control
--- boa-constructor-0.6.1/debian/control	2011-03-22 11:05:53.000000000 +1300
+++ boa-constructor-0.6.1/debian/control	2011-10-19 00:49:55.000000000 +1300
@@ -13,7 +13,7 @@
 
 Package: boa-constructor
 Architecture: all
-Depends: ${misc:Depends}, ${python:Depends}, pychecker, python-wxgtk2.6
+Depends: ${misc:Depends}, ${python:Depends}, pychecker, python-wxgtk2.8
 Suggests: python-pyparsing
 Description: RAD tool for Python and wxWindows application
  Boa-constructor is an IDE oriented towards creating cross-platform
diff -Nru boa-constructor-0.6.1/debian/patches/debian-changes-0.6.1-11.1 boa-constructor-0.6.1/debian/patches/debian-changes-0.6.1-11.1
--- boa-constructor-0.6.1/debian/patches/debian-changes-0.6.1-11.1	1970-01-01 12:00:00.000000000 +1200
+++ boa-constructor-0.6.1/debian/patches/debian-changes-0.6.1-11.1	2011-10-19 00:55:49.000000000 +1300
@@ -0,0 +1,37 @@
+Description: Upstream changes introduced in version 0.6.1-11.1
+ This patch has been created by dpkg-source during the package build.
+ Here's the last changelog entry, hopefully it gives details on why
+ those changes were made:
+ .
+ boa-constructor (0.6.1-11.1) unstable; urgency=low
+ .
+   * Non-maintainer upload.
+   * Update to use python-wxgtk2.8.
+ .
+ The person named in the Author field signed this changelog entry.
+Author: Olly Betts <[email protected]>
+
+---
+The information above should follow the Patch Tagging Guidelines, please
+checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
+are templates for supplementary fields that you might want to add:
+
+Origin: <vendor|upstream|other>, <url of original patch>
+Bug: <url in upstream bugtracker>
+Bug-Debian: http://bugs.debian.org/<bugnumber>
+Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
+Forwarded: <no|not-needed|url proving that it has been forwarded>
+Reviewed-By: <name and email of someone who approved the patch>
+Last-Update: <YYYY-MM-DD>
+
+--- boa-constructor-0.6.1.orig/Boa.py
++++ boa-constructor-0.6.1/Boa.py
+@@ -229,7 +229,7 @@ try:
+     if not hasattr(sys, 'frozen'):
+         import wxversion
+         if wxVersionSelect is None:
+-            wxversion.select('2.8')
++            wxversion.ensureMinimal('2.5')
+         else:
+             wxversion.select(wxVersionSelect)
+ except ImportError:
diff -Nru boa-constructor-0.6.1/debian/patches/select_wxpython_2_6.patch boa-constructor-0.6.1/debian/patches/select_wxpython_2_6.patch
--- boa-constructor-0.6.1/debian/patches/select_wxpython_2_6.patch	2009-07-31 09:17:45.000000000 +1200
+++ boa-constructor-0.6.1/debian/patches/select_wxpython_2_6.patch	1970-01-01 12:00:00.000000000 +1200
@@ -1,17 +0,0 @@
-Description:	Use xwpython 2.6.
-Origin:		Debian
-Forwarded:	not-needed
-
-Index: boa-constructor-0.6.1/Boa.py
-===================================================================
---- boa-constructor-0.6.1.orig/Boa.py	2009-04-11 15:57:01.000000000 +0200
-+++ boa-constructor-0.6.1/Boa.py	2009-04-11 15:57:09.000000000 +0200
-@@ -230,7 +230,7 @@
-     if not hasattr(sys, 'frozen'):
-         import wxversion
-         if wxVersionSelect is None:
--            wxversion.ensureMinimal('2.5')
-+            wxversion.select('2.6')
-         else:
-             wxversion.select(wxVersionSelect)
- except ImportError:
diff -Nru boa-constructor-0.6.1/debian/patches/select_wxpython_2_8.patch boa-constructor-0.6.1/debian/patches/select_wxpython_2_8.patch
--- boa-constructor-0.6.1/debian/patches/select_wxpython_2_8.patch	1970-01-01 12:00:00.000000000 +1200
+++ boa-constructor-0.6.1/debian/patches/select_wxpython_2_8.patch	2011-10-19 00:53:23.000000000 +1300
@@ -0,0 +1,30 @@
+Description:	Use wxpython 2.8.
+Origin:		Debian
+Forwarded:	not-needed
+
+Index: boa-constructor-0.6.1/Boa.py
+===================================================================
+--- boa-constructor-0.6.1.orig/Boa.py	2009-04-11 15:57:01.000000000 +0200
++++ boa-constructor-0.6.1/Boa.py	2009-04-11 15:57:09.000000000 +0200
+@@ -230,7 +230,7 @@
+     if not hasattr(sys, 'frozen'):
+         import wxversion
+         if wxVersionSelect is None:
+-            wxversion.ensureMinimal('2.5')
++            wxversion.select('2.8')
+         else:
+             wxversion.select(wxVersionSelect)
+ except ImportError:
+Index: boa-constructor-0.6.1/Examples/Everything.py
+===================================================================
+--- boa-constructor-0.6.1.orig/Examples/Everything.py
++++ boa-constructor-0.6.1/Examples/Everything.py
+@@ -3,7 +3,7 @@
+ """ Frame containing all controls available on the Palette. """
+ 
+ import wxversion
+-wxversion.select('2.5')
++wxversion.select('2.8')
+ 
+ import wx
+ from wx.lib.anchors import LayoutAnchors
diff -Nru boa-constructor-0.6.1/debian/patches/series boa-constructor-0.6.1/debian/patches/series
--- boa-constructor-0.6.1/debian/patches/series	2010-06-07 21:54:28.000000000 +1200
+++ boa-constructor-0.6.1/debian/patches/series	2011-10-19 00:55:49.000000000 +1300
@@ -1,6 +1,7 @@
-select_wxpython_2_6.patch
+select_wxpython_2_8.patch
 executable_script_fixup.patch
 no_maxint.patch
 no_double_free.patch
 stdlib.patch
 string_exceptions.patch
+debian-changes-0.6.1-11.1

--- End Message ---
--- Begin Message ---
Source: boa-constructor
Source-Version: 0.6.1-12

We believe that the bug you reported is fixed in the latest version of
boa-constructor, which is due to be installed in the Debian FTP archive:

boa-constructor_0.6.1-12.debian.tar.gz
  to main/b/boa-constructor/boa-constructor_0.6.1-12.debian.tar.gz
boa-constructor_0.6.1-12.dsc
  to main/b/boa-constructor/boa-constructor_0.6.1-12.dsc
boa-constructor_0.6.1-12_all.deb
  to main/b/boa-constructor/boa-constructor_0.6.1-12_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Charlie Smotherman <[email protected]> (supplier of updated boa-constructor 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Mon, 07 Nov 2011 18:24:34 -0500
Source: boa-constructor
Binary: boa-constructor
Architecture: source all
Version: 0.6.1-12
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group <[email protected]>
Changed-By: Charlie Smotherman <[email protected]>
Description: 
 boa-constructor - RAD tool for Python and wxWindows application
Closes: 645759
Changes: 
 boa-constructor (0.6.1-12) unstable; urgency=low
 .
   * Orphaning package.
   * Update package to use wxwidgets2.8 (Closes: #645759).
   * Bump Standards-Version to 3.9.2, no changes required.
Checksums-Sha1: 
 9b6406927660f855286f81ffe707cde3017d6181 2015 boa-constructor_0.6.1-12.dsc
 70d4c3bc95ccecd1640e193b008624858819bb34 13348 
boa-constructor_0.6.1-12.debian.tar.gz
 fdc5a165f116551a7e5d8caf78344acc966b25b0 13522594 
boa-constructor_0.6.1-12_all.deb
Checksums-Sha256: 
 4b84f2eed793d58ddc52ae9cd474207a2dd7a5134b351c10fc0608c0a5b33fd7 2015 
boa-constructor_0.6.1-12.dsc
 a3b44e7dcf57974123b2e65630347c205a3e212e3fa04f2aa25427650260b942 13348 
boa-constructor_0.6.1-12.debian.tar.gz
 81fec1196e09218927fd9f65a3ff1bb93ee91ee8f04bb3eaf943fd998573761a 13522594 
boa-constructor_0.6.1-12_all.deb
Files: 
 4022dedf6198d4707cd7980ad1e44581 2015 devel optional 
boa-constructor_0.6.1-12.dsc
 cc21b27f0aae2ba4b60087a5bc4caad8 13348 devel optional 
boa-constructor_0.6.1-12.debian.tar.gz
 1b6c44e8d931d49fd8ff6bce17114565 13522594 devel optional 
boa-constructor_0.6.1-12_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJOuvqUAAoJEEkIatPr4vMfxvoP/ig+hUT7VlrjQ222Sn0U0xmk
bvOgao3otoeakwsXuMgwR4EGTITZcI5aZh+mrz6d50ua3YFwvYkwRsIJCZb/H2Lp
KjvFwMw0Cy0jP46spqvdTWxEY/vYCovUHJh2sy9CULIAt7jpbKqdHOZrxqCsds1o
oE+NocGbflr7ITbIAKrCW/SGwp6DRuI394cIz9cjiURt7FzCE0uRa1a+x9eIG/kf
eZ4+cSjgropmZgDmRpDGEuDQ08ejECPVb3r8CevY8dY9JE6tZdtoCJTM+WWJtpB0
plHT0Q590sF+shOTsdYWg+U6hFeR/tm2PpW/Us1JamCycfKvRunHpXgfhGJQUTFq
QGQRUTSDJRqA7zrzEv+1tKyLvOVLr733EoDd6pWKqpO8XfhlYOhXQt7R/pFUbz2H
0voiYr4ly12tVPteJqdYm4L8KDx1RDk8gvg50UQZZJmuXB5FyI6z02KC5h/atZm9
QzBQrENjoE6E79gkXz9zEi2jl/1JhmabMibaM5vOfCftqmPz1Ql/PKAso+d+0ONE
UvwdTooRCb61mmntT+XId5iTABrFVUYDUl8VbS02078sfyERALIQRe1pZuAkUyB/
dGHa5VZw0IRZSb/hcr4qCmm91lku5SM19ZDLtQlDfHSZp2fV/xHT78eQWbb37wv8
0T0ix/TuV5Y0D4ZqIFwn
=4F0o
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to