[Python-apps-commits] r6198 - in packages/pype/trunk/debian (2 files)

anoteng-guest at users.alioth.debian.org anoteng-guest at users.alioth.debian.org
Fri Oct 15 04:49:37 UTC 2010


    Date: Friday, October 15, 2010 @ 04:49:13
  Author: anoteng-guest
Revision: 6198

Remove useless blank lines from patch

Modified:
  packages/pype/trunk/debian/changelog
  packages/pype/trunk/debian/patches/command-shell.patch

Modified: packages/pype/trunk/debian/changelog
===================================================================
--- packages/pype/trunk/debian/changelog	2010-10-14 20:23:21 UTC (rev 6197)
+++ packages/pype/trunk/debian/changelog	2010-10-15 04:49:13 UTC (rev 6198)
@@ -1,6 +1,7 @@
 pype (2.9.1-2) unstable; urgency=low
 
-  * Fix broken command shell (closes: #600227)
+  * command-shell.patch
+    - Fix broken command shell, from upstream svn repository. (closes: #600227)
 
  -- Andreas Noteng <andreas at noteng.no>  Thu, 14 Oct 2010 22:20:42 +0200
 

Modified: packages/pype/trunk/debian/patches/command-shell.patch
===================================================================
--- packages/pype/trunk/debian/patches/command-shell.patch	2010-10-14 20:23:21 UTC (rev 6197)
+++ packages/pype/trunk/debian/patches/command-shell.patch	2010-10-15 04:49:13 UTC (rev 6198)
@@ -3,51 +3,19 @@
 --- pype/plugins/interpreter.py	(revision 74)
 +++ pype/plugins/interpreter.py	(revision 75)
 @@ -96,7 +96,7 @@
-     if " " in command:
-         command = '"%s"'%command
- elif sys.platform == 'linux2':
--    command = '/bin/sh --noediting -i'
-+    command = '/bin/sh -i'
- else:
-     command = '/bin/sh'
- 
+     if " " in command:
+         command = '"%s"'%command
+ elif sys.platform == 'linux2':
+-    command = '/bin/sh --noediting -i'
++    command = '/bin/sh -i'
+ else:
+     command = '/bin/sh'
+ 
 @@ -321,6 +321,7 @@
-         stc.StyledTextCtrl.__init__(self, parent, id)
-         self.lines = lineabstraction.LineAbstraction(self)
-         self.NEWDOCUMENT = _pype.NEWDOCUMENT+1
-+        self.loaded = True
-         
-         global pypestc
-         if not pypestc:
-@@ -896,6 +897,7 @@
- 
-     def CanPaste(self):
-         return stc.StyledTextCtrl.CanPaste(self) and self.CanEdit()
-+
-     def Paste(self):
-         success = False
-         do = wx.TextDataObject()
-@@ -916,6 +918,7 @@
-         self.ReplaceSelection('')
-         
-         self.queue.extend(spliti(do.GetText(), '\n'))
-+
-     def Cut(self):
-         if self.CanCut:
-             stc.StyledTextCtrl.Cut(self)
-@@ -927,6 +930,7 @@
-             if x[-1:] == '\n':
-                 self.processLine()
-         ## wx.FutureCall(pushlines_t, self.pushlines)
-+
-     def MakeDirty(self, e=None):
-         f = self.filename
-         if f == ' ':
-@@ -938,6 +942,7 @@
-             c += 1
-         self.root.control.SetPageText(c, f)
-         self.root.redrawvisible(self)
-+
-     def DeleteSelection(self, e=None):
-         range = self.GetSelection()
-         mi = min(range)
+         stc.StyledTextCtrl.__init__(self, parent, id)
+         self.lines = lineabstraction.LineAbstraction(self)
+         self.NEWDOCUMENT = _pype.NEWDOCUMENT+1
++        self.loaded = True
+         
+         global pypestc
+         if not pypestc:




More information about the Python-apps-commits mailing list