[Python-modules-commits] r33806 - in packages/python-pyface/trunk/debian (4 files)
varun at users.alioth.debian.org
varun at users.alioth.debian.org
Mon Aug 17 02:19:00 UTC 2015
Date: Monday, August 17, 2015 @ 02:18:59
Author: varun
Revision: 33806
* New upstream release
* Acknowledge previous NMU, thanks!
* Bump Standards-Version to 3.9.6
* Fix the watch file
* Refresh the wxpy3.0-compat.patch file
* Non-maintainer upload with maintainer's permission.
* Need wx.NullColour instead of wx.NullColor for wxPython3, so update patch
wxpy3.0-compat.patch
Modified:
packages/python-pyface/trunk/debian/changelog
packages/python-pyface/trunk/debian/control
packages/python-pyface/trunk/debian/patches/wxpy3.0-compat.patch
packages/python-pyface/trunk/debian/watch
Modified: packages/python-pyface/trunk/debian/changelog
===================================================================
--- packages/python-pyface/trunk/debian/changelog 2015-08-17 02:15:38 UTC (rev 33805)
+++ packages/python-pyface/trunk/debian/changelog 2015-08-17 02:18:59 UTC (rev 33806)
@@ -1,3 +1,21 @@
+python-pyface (4.5.2-1) unstable; urgency=medium
+
+ * New upstream release
+ * Acknowledge previous NMU, thanks!
+ * Bump Standards-Version to 3.9.6
+ * Fix the watch file
+ * Refresh the wxpy3.0-compat.patch file
+
+ -- Varun Hiremath <varun at debian.org> Sun, 16 Aug 2015 22:13:14 -0400
+
+python-pyface (4.4.0-2.1) unstable; urgency=low
+
+ * Non-maintainer upload with maintainer's permission.
+ * Need wx.NullColour instead of wx.NullColor for wxPython3, so update patch
+ wxpy3.0-compat.patch
+
+ -- Olly Betts <olly at survex.com> Thu, 26 Mar 2015 18:11:47 +1300
+
python-pyface (4.4.0-2) unstable; urgency=medium
[ Olly Betts ]
Modified: packages/python-pyface/trunk/debian/control
===================================================================
--- packages/python-pyface/trunk/debian/control 2015-08-17 02:15:38 UTC (rev 33805)
+++ packages/python-pyface/trunk/debian/control 2015-08-17 02:18:59 UTC (rev 33806)
@@ -5,7 +5,7 @@
Uploaders: Varun Hiremath <varun at debian.org>
Build-Depends: cdbs, debhelper, python-all
Build-Depends-Indep: python-setupdocs
-Standards-Version: 3.9.5
+Standards-Version: 3.9.6
Homepage: http://pypi.python.org/pypi/pyface
X-Python-Version: >= 2.5
Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-pyface/trunk/
Modified: packages/python-pyface/trunk/debian/patches/wxpy3.0-compat.patch
===================================================================
--- packages/python-pyface/trunk/debian/patches/wxpy3.0-compat.patch 2015-08-17 02:15:38 UTC (rev 33805)
+++ packages/python-pyface/trunk/debian/patches/wxpy3.0-compat.patch 2015-08-17 02:18:59 UTC (rev 33806)
@@ -2,12 +2,12 @@
These changes should maintain compatibility with wxPython 2.8.
Author: Olly Betts <olly at survex.com>
Forwarded: no
-Last-Update: 2014-08-15
+Last-Update: 2015-03-26
-Index: python-pyface-4.4.0/pyface/ui/wx/directory_dialog.py
+Index: python-pyface-4.5.2/pyface/ui/wx/directory_dialog.py
===================================================================
---- python-pyface-4.4.0.orig/pyface/ui/wx/directory_dialog.py
-+++ python-pyface-4.4.0/pyface/ui/wx/directory_dialog.py
+--- python-pyface-4.5.2.orig/pyface/ui/wx/directory_dialog.py
++++ python-pyface-4.5.2/pyface/ui/wx/directory_dialog.py
@@ -70,7 +70,7 @@ class DirectoryDialog(MDirectoryDialog,
def _create_control(self, parent):
@@ -17,10 +17,10 @@
# Create the wx style depending on which buttons are required etc.
if self.new_directory:
-Index: python-pyface-4.4.0/pyface/ui/wx/file_dialog.py
+Index: python-pyface-4.5.2/pyface/ui/wx/file_dialog.py
===================================================================
---- python-pyface-4.4.0.orig/pyface/ui/wx/file_dialog.py
-+++ python-pyface-4.4.0/pyface/ui/wx/file_dialog.py
+--- python-pyface-4.5.2.orig/pyface/ui/wx/file_dialog.py
++++ python-pyface-4.5.2/pyface/ui/wx/file_dialog.py
@@ -105,11 +105,11 @@ class FileDialog(MFileDialog, Dialog):
default_filename = self.default_filename
@@ -36,10 +36,10 @@
# Create the actual dialog.
dialog = wx.FileDialog(parent, self.title, defaultDir=default_directory,
-Index: python-pyface-4.4.0/pyface/ui/wx/init.py
+Index: python-pyface-4.5.2/pyface/ui/wx/init.py
===================================================================
---- python-pyface-4.4.0.orig/pyface/ui/wx/init.py
-+++ python-pyface-4.4.0/pyface/ui/wx/init.py
+--- python-pyface-4.5.2.orig/pyface/ui/wx/init.py
++++ python-pyface-4.5.2/pyface/ui/wx/init.py
@@ -15,17 +15,17 @@ import wx
@@ -65,10 +65,10 @@
+ _app = PySimpleApp()
#### EOF ######################################################################
-Index: python-pyface-4.4.0/pyface/wx/dialog.py
+Index: python-pyface-4.5.2/pyface/wx/dialog.py
===================================================================
---- python-pyface-4.4.0.orig/pyface/wx/dialog.py
-+++ python-pyface-4.4.0/pyface/wx/dialog.py
+--- python-pyface-4.5.2.orig/pyface/wx/dialog.py
++++ python-pyface-4.5.2/pyface/wx/dialog.py
@@ -36,7 +36,7 @@ class OpenFileDialog(wx.FileDialog):
def __init__(self, parent=None, **kw):
""" Constructor. """
@@ -96,10 +96,10 @@
# Base-class constructor.
wx.FileDialog.__init__(self, parent, "Save As", style=style, **kw)
-Index: python-pyface-4.4.0/pyface/util/guisupport.py
+Index: python-pyface-4.5.2/pyface/util/guisupport.py
===================================================================
---- python-pyface-4.4.0.orig/pyface/util/guisupport.py
-+++ python-pyface-4.4.0/pyface/util/guisupport.py
+--- python-pyface-4.5.2.orig/pyface/util/guisupport.py
++++ python-pyface-4.5.2/pyface/util/guisupport.py
@@ -81,7 +81,12 @@ def get_app_wx(*args, **kwargs):
if app is None:
if not kwargs.has_key('redirect'):
Modified: packages/python-pyface/trunk/debian/watch
===================================================================
--- packages/python-pyface/trunk/debian/watch 2015-08-17 02:15:38 UTC (rev 33805)
+++ packages/python-pyface/trunk/debian/watch 2015-08-17 02:18:59 UTC (rev 33806)
@@ -1,4 +1,4 @@
version=3
opts="uversionmangle=s/([ab])/~$1/,dversionmangle=s/\+.*//" \
-http://pypi.python.org/pypi/pyface .*pyface-(.*).tar.gz \
+http://pypi.debian.net/pyface/pyface-(.*).tar.gz \
debian debian/orig-tar.sh
More information about the Python-modules-commits
mailing list