[Python-modules-commits] r26669 - in packages/pexpect/trunk/debian (6 files)

noskcaj-guest at users.alioth.debian.org noskcaj-guest at users.alioth.debian.org
Thu Dec 5 07:29:37 UTC 2013


    Date: Thursday, December 5, 2013 @ 07:29:36
  Author: noskcaj-guest
Revision: 26669

Finish update

Added:
  packages/pexpect/trunk/debian/python3-pexpect.docs
Modified:
  packages/pexpect/trunk/debian/changelog
  packages/pexpect/trunk/debian/control
  packages/pexpect/trunk/debian/python-pexpect.docs
Deleted:
  packages/pexpect/trunk/debian/patches/10_add_interpreter_line.patch
  packages/pexpect/trunk/debian/patches/20_fix_chess_example.patch

Modified: packages/pexpect/trunk/debian/changelog
===================================================================
--- packages/pexpect/trunk/debian/changelog	2013-12-05 07:11:39 UTC (rev 26668)
+++ packages/pexpect/trunk/debian/changelog	2013-12-05 07:29:36 UTC (rev 26669)
@@ -8,8 +8,11 @@
   [ Jakub Wilk ]
   * Use canonical URIs for Vcs-* fields.
 
- -- Thomas Kluyver <takowl at gmail.com>  Wed, 13 Nov 2013 09:40:11 -0800
+  [ Jackson Doak ]
+  * Create debian/python3-pexpect.docs
 
+ -- Jackson Doak <noskcaj at ubuntu.com>  Thu, 05 Dec 2013 18:26:43 +1100
+
 pexpect (2.4-1) unstable; urgency=low
 
   * Team upload.

Modified: packages/pexpect/trunk/debian/control
===================================================================
--- packages/pexpect/trunk/debian/control	2013-12-05 07:11:39 UTC (rev 26668)
+++ packages/pexpect/trunk/debian/control	2013-12-05 07:29:36 UTC (rev 26669)
@@ -5,8 +5,8 @@
 Maintainer: Ganesan Rajagopal <rganesan at debian.org>
 Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
 Standards-Version: 3.9.4
-Vcs-Svn: svn://svn.debian.org/python-modules/packages/pexpect/trunk/
-Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/pexpect/trunk/
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/pexpect/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/pexpect/trunk/
 Homepage: http://www.noah.org/wiki/Pexpect
 X-Python-Version: >= 2.6
 X-Python3-Version: >= 3.2
@@ -25,7 +25,7 @@
 Architecture: all
 Depends: ${misc:Depends}, ${python3:Depends}
 Description: Python 3 module for automating interactive applications
- Pexpect is a pure Python module for spawning child applications;
+ Pexpect is a pure Python 3 module for spawning child applications;
  controlling them; and responding to expected patterns in their
  output. Pexpect works like Don Libes' Expect. Pexpect allows your
  script to spawn a child application and control it as if a human were

Deleted: packages/pexpect/trunk/debian/patches/10_add_interpreter_line.patch
===================================================================
--- packages/pexpect/trunk/debian/patches/10_add_interpreter_line.patch	2013-12-05 07:11:39 UTC (rev 26668)
+++ packages/pexpect/trunk/debian/patches/10_add_interpreter_line.patch	2013-12-05 07:29:36 UTC (rev 26669)
@@ -1,10 +0,0 @@
-Author: Ganesan Rajagopal <rganesan at debian.org>
-Description: Adds the Python interpreter shebang line to ssh_session.py.
-
---- a/examples/ssh_session.py
-+++ b/examples/ssh_session.py
-@@ -1,3 +1,4 @@
-+#!/usr/bin/env python
- #
- # Eric S. Raymond
- #

Deleted: packages/pexpect/trunk/debian/patches/20_fix_chess_example.patch
===================================================================
--- packages/pexpect/trunk/debian/patches/20_fix_chess_example.patch	2013-12-05 07:11:39 UTC (rev 26668)
+++ packages/pexpect/trunk/debian/patches/20_fix_chess_example.patch	2013-12-05 07:29:36 UTC (rev 26669)
@@ -1,81 +0,0 @@
-Description: Fix syntax errors in example files.
-Bug-Debian: http://bugs.debian.org/580271
-Author: Arthur de Jong <adejong at debian.org>
-
---- a/examples/chess.py
-+++ b/examples/chess.py
-@@ -23,7 +23,7 @@
-                 self.term.process_list (self.before)
-                 self.term.process_list (self.after)
- 		self.last_computer_move = ''
--        def read_until_cursor (self, r,c)
-+        def read_until_cursor (self, r,c):
-             while 1:
-                 self.child.read(1, 60)
-                 self.term.process (c)
-@@ -41,7 +41,7 @@
-                 read_until_cursor (19,60)
- 		#self.child.expect ('\[19;60H')
- 		self.child.sendline (move)
--		print 'do_move' move
-+		print 'do_move', move
- 		return move
- 
- 	def get_first_computer_move (self):
---- a/examples/fix_cvs_files.py
-+++ b/examples/fix_cvs_files.py
-@@ -24,8 +24,8 @@
- 
- def is_binary (filename):
- 
--    """Assume that any file with a character where the 8th bit is set is
--    binary. """
-+	"""Assume that any file with a character where the 8th bit is set is
-+	binary. """
- 
- 	fin = open(filename, 'rb')
- 	wholething = fin.read()
-@@ -37,9 +37,9 @@
- 
- def is_kb_sticky (filename):
- 
--    """This checks if 'cvs status' reports '-kb' for Sticky options. If the
--    Sticky Option status is '-ks' then this returns 1. If the status is
--    'Unknown' then it returns 1. Otherwise 0 is returned. """
-+	"""This checks if 'cvs status' reports '-kb' for Sticky options. If the
-+	Sticky Option status is '-ks' then this returns 1. If the status is
-+	'Unknown' then it returns 1. Otherwise 0 is returned. """
- 
- 	try:
- 		s = pexpect.spawn ('cvs status %s' % filename)
-@@ -59,7 +59,7 @@
- 
- def cvs_admin_kb (filename):
- 
--    """This uses 'cvs admin' to set the '-kb' sticky option. """
-+	"""This uses 'cvs admin' to set the '-kb' sticky option. """
- 
- 	s = pexpect.run ('cvs admin -kb %s' % filename)
- 	# There is a timing issue. If I run 'cvs admin' too quickly
-@@ -68,8 +68,8 @@
- 	
- def walk_and_clean_cvs_binaries (arg, dirname, names):
- 
--    """This contains the logic for processing files. This is the os.path.walk
--    callback. This skips dirnames that end in CVS. """
-+	"""This contains the logic for processing files. This is the os.path.walk
-+	callback. This skips dirnames that end in CVS. """
- 
- 	if len(dirname)>3 and dirname[-3:]=='CVS':
- 		return
---- a/examples/ssh_tunnel.py
-+++ b/examples/ssh_tunnel.py
-@@ -56,7 +56,7 @@
-             print 'restarting tunnel'
-             start_tunnel ()
-             time.sleep (11)
--	        print 'tunnel OK'
-+            print 'tunnel OK'
-         else:
-             # print 'tunnel OK'
-             time.sleep (7)

Modified: packages/pexpect/trunk/debian/python-pexpect.docs
===================================================================
--- packages/pexpect/trunk/debian/python-pexpect.docs	2013-12-05 07:11:39 UTC (rev 26668)
+++ packages/pexpect/trunk/debian/python-pexpect.docs	2013-12-05 07:29:36 UTC (rev 26669)
@@ -1,2 +1 @@
-README
-doc
+doc/*

Added: packages/pexpect/trunk/debian/python3-pexpect.docs
===================================================================
--- packages/pexpect/trunk/debian/python3-pexpect.docs	                        (rev 0)
+++ packages/pexpect/trunk/debian/python3-pexpect.docs	2013-12-05 07:29:36 UTC (rev 26669)
@@ -0,0 +1 @@
+docs/*
\ No newline at end of file




More information about the Python-modules-commits mailing list