[Python-apps-commits] r10482 - in packages/pyspread/trunk/debian (5 files)
anoteng-guest at users.alioth.debian.org
anoteng-guest at users.alioth.debian.org
Wed Feb 5 16:16:06 UTC 2014
Date: Wednesday, February 5, 2014 @ 16:16:05
Author: anoteng-guest
Revision: 10482
New upstream release
Refresh patches
Modified:
packages/pyspread/trunk/debian/changelog
packages/pyspread/trunk/debian/control
packages/pyspread/trunk/debian/patches/about_dialog_license.patch
packages/pyspread/trunk/debian/patches/change_default_paths.patch
packages/pyspread/trunk/debian/patches/python_tutorial.patch
Modified: packages/pyspread/trunk/debian/changelog
===================================================================
--- packages/pyspread/trunk/debian/changelog 2014-02-05 10:22:39 UTC (rev 10481)
+++ packages/pyspread/trunk/debian/changelog 2014-02-05 16:16:05 UTC (rev 10482)
@@ -1,12 +1,13 @@
-pyspread (0.2.5-1) UNRELEASED; urgency=low
+pyspread (0.2.6-1) unstable; urgency=low
* New upstream release
* Refresh patches
* Delete documentation_typos.patch, fixed upstream
* Add DEP-8 tests
* Remove runstests.py from original tarball and regenerate during build
+ * Add recommends: python-xlrd
- -- Andreas Noteng <andreas at noteng.no> Fri, 04 Oct 2013 19:29:15 +0200
+ -- Andreas Noteng <andreas at noteng.no> Wed, 01 Jan 2014 15:28:46 +0100
pyspread (0.2.3-2) unstable; urgency=low
Modified: packages/pyspread/trunk/debian/control
===================================================================
--- packages/pyspread/trunk/debian/control 2014-02-05 10:22:39 UTC (rev 10481)
+++ packages/pyspread/trunk/debian/control 2014-02-05 16:16:05 UTC (rev 10482)
@@ -5,7 +5,7 @@
Uploaders: Python Applications Packaging Team <python-apps-team at lists.alioth.debian.org>
Build-Depends: debhelper (>= 8.1.0), python (>= 2.7)
X-Python-Version: >= 2.7
-Standards-Version: 3.9.4
+Standards-Version: 3.9.5
XS-Testsuite: autopkgtest
Homepage: http://pyspread.sourceforge.net/
Vcs-Svn: svn://anonscm.debian.org/python-apps/packages/pyspread/trunk/
@@ -19,6 +19,7 @@
python-wxgtk2.8 (>= 2.8.10.1),
${misc:Depends},
${python:Depends}
+Recommends: python-xlrd, ttf-mscorefonts-installer
Description: cross-platform Python spreadsheet application
Pyspread is a cross-platform Python spreadsheet application. Instead of
spreadsheet formulas, Python expressions are entered into the spreadsheet
Modified: packages/pyspread/trunk/debian/patches/about_dialog_license.patch
===================================================================
--- packages/pyspread/trunk/debian/patches/about_dialog_license.patch 2014-02-05 10:22:39 UTC (rev 10481)
+++ packages/pyspread/trunk/debian/patches/about_dialog_license.patch 2014-02-05 16:16:05 UTC (rev 10482)
@@ -3,9 +3,11 @@
Author: Andreas Noteng <andreas at noteng.no>
Last-Update: 2012-01-28
---- a/pyspread/src/gui/_dialogs.py 2013-09-22 08:11:38.107901082 +0200
-+++ b/pyspread/src/gui/_dialogs.py 2013-09-22 08:11:38.103901082 +0200
-@@ -1104,7 +1104,7 @@
+Index: pyspread-0.2.6/pyspread/src/gui/_dialogs.py
+===================================================================
+--- pyspread-0.2.6.orig/pyspread/src/gui/_dialogs.py 2014-01-01 17:01:43.717128431 +0100
++++ pyspread-0.2.6/pyspread/src/gui/_dialogs.py 2014-01-01 17:01:43.713128343 +0100
+@@ -1171,7 +1171,7 @@
"Martin Manns", "Andreas Noteng",
"Enrico Nicoletto"]
Modified: packages/pyspread/trunk/debian/patches/change_default_paths.patch
===================================================================
--- packages/pyspread/trunk/debian/patches/change_default_paths.patch 2014-02-05 10:22:39 UTC (rev 10481)
+++ packages/pyspread/trunk/debian/patches/change_default_paths.patch 2014-02-05 16:16:05 UTC (rev 10482)
@@ -4,8 +4,8 @@
Forwarded: not-needed
Author: Andreas Noteng <andreas at noteng.no>
Last-Update: 2013-04-23
---- a/pyspread/src/sysvars.py 2013-08-25 08:58:02.882134810 +0200
-+++ b/pyspread/src/sysvars.py 2013-08-25 08:58:02.874134810 +0200
+--- a/pyspread/src/sysvars.py
++++ b/pyspread/src/sysvars.py
@@ -43,13 +43,13 @@
def get_program_path():
"""Returns the path in which pyspread is installed"""
@@ -22,8 +22,8 @@
def get_python_tutorial_path():
---- a/pyspread/src/pyspread.py 2013-08-25 08:58:02.882134810 +0200
-+++ b/pyspread/src/pyspread.py 2013-08-25 08:58:02.874134810 +0200
+--- a/pyspread/src/pyspread.py
++++ b/pyspread/src/pyspread.py
@@ -39,11 +39,12 @@
import sys
@@ -47,15 +47,8 @@
# Patch for using with PyScripter thanks to Colin J. Williams
# If wx exists in sys,modules, we dont need to import wx version.
-@@ -240,4 +240,4 @@
- import cProfile
- cProfile.run('pyspread()')
- else:
-- pyspread()
-\ No newline at end of file
-+ pyspread()
---- a/pyspread/src/lib/i18n.py 2013-08-25 08:58:02.882134810 +0200
-+++ b/pyspread/src/lib/i18n.py 2013-08-25 08:58:02.874134810 +0200
+--- a/pyspread/src/lib/i18n.py
++++ b/pyspread/src/lib/i18n.py
@@ -60,5 +60,4 @@
# gettext initialization
# ----------------------
@@ -64,8 +57,8 @@
- fallback=True)
\ No newline at end of file
+language = gettext.translation(APP_NAME, languages=languages, fallback=True)
---- a/setup.py 2013-07-20 13:46:26.000000000 +0200
-+++ b/setup.py 2013-08-25 09:00:09.246136396 +0200
+--- a/setup.py
++++ b/setup.py
@@ -61,9 +61,6 @@
package_data={'pyspread':
[
Modified: packages/pyspread/trunk/debian/patches/python_tutorial.patch
===================================================================
--- packages/pyspread/trunk/debian/patches/python_tutorial.patch 2014-02-05 10:22:39 UTC (rev 10481)
+++ packages/pyspread/trunk/debian/patches/python_tutorial.patch 2014-02-05 16:16:05 UTC (rev 10482)
@@ -6,9 +6,9 @@
Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=704928
Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=704929
Last-Update: 2013-04-21
---- a/pyspread/src/gui/_main_window.py 2013-09-22 08:12:10.775899653 +0200
-+++ b/pyspread/src/gui/_main_window.py 2013-09-22 08:12:10.771899653 +0200
-@@ -1220,12 +1220,17 @@
+--- a/pyspread/src/gui/_main_window.py
++++ b/pyspread/src/gui/_main_window.py
+@@ -1241,12 +1241,17 @@
def OnPythonTutorial(self, event):
"""Python tutorial launch event handler"""
More information about the Python-apps-commits
mailing list