~ubuntu-branches/ubuntu/saucy/pexpect/saucy

« back to all changes in this revision

Viewing changes to debian/control

  • Committer: Package Import Robot
  • Author(s): Arthur de Jong, Arthur de Jong, Piotr Ożarowski, Sandro Tosi, Carlos Galisteo
  • Date: 2012-03-09 11:43:41 UTC
  • mfrom: (2.1.4 sid)
  • Revision ID: package-import@ubuntu.com-20120309114341-tyl62gut4noubs1g
Tags: 2.4-1
* Team upload.

[ Arthur de Jong ]
* New upstream release (Closes: #609195).
* Switch to 3.0 (quilt) source format.
* Switch to dh-style debian/rules.
* Moved packaging from python-central to dh_python2 (Closes: #616935,
  LP: #788514).
* Drop Conflicts/Replaces on ancient versions which shipped in sarge.
* Bump standards-version to 3.9.3.
* Register documentation with doc-base.
* Update debian/copyright (license is actually MIT instead of Python 2.3).
* Fix syntax errors in one of the examples (closes: #580271)

[ Piotr Ożarowski ]
* Added Vcs-Svn and Vcs-Browser fields

[ Sandro Tosi ]
* debian/control
  - uniforming Vcs-Browser field
* debian/control
  - switch Vcs-Browser field to viewsvn

[ Carlos Galisteo ]
* debian/control
  - Added Homepage field.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
Source: pexpect
2
2
Section: python
3
3
Priority: optional
4
 
Build-Depends-Indep: python-all-dev (>= 2.6.6-3~)
5
 
Build-Depends: debhelper (>= 5.0.37.1)
6
 
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
7
 
XSBC-Original-Maintainer: Ganesan Rajagopal <rganesan@debian.org>
 
4
Build-Depends: python-all (>= 2.6.6-3~), debhelper (>= 7.0.50~)
 
5
Maintainer: Ganesan Rajagopal <rganesan@debian.org>
8
6
Uploaders: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
9
 
Standards-Version: 3.8.0
 
7
Standards-Version: 3.9.3
 
8
Vcs-Svn: svn://svn.debian.org/python-modules/packages/pexpect/trunk/
 
9
Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/pexpect/trunk/
 
10
Homepage: http://www.noah.org/wiki/Pexpect
10
11
 
11
12
Package: python-pexpect
12
13
Architecture: all
13
 
Depends: ${python:Depends}
14
 
Provides: ${python:Provides}
15
 
Conflicts: python2.3-pexpect, python2.4-pexpect
16
 
Replaces: python2.3-pexpect, python2.4-pexpect
 
14
Depends: ${misc:Depends}, ${python:Depends}
17
15
Description: Python module for automating interactive applications
18
16
 Pexpect is a pure Python module for spawning child applications;
19
17
 controlling them; and responding to expected patterns in their
20
18
 output. Pexpect works like Don Libes' Expect. Pexpect allows your
21
19
 script to spawn a child application and control it as if a human were
22
 
 typing commands.  
 
20
 typing commands.