~ubuntu-branches/ubuntu/raring/doit/raring

« back to all changes in this revision

Viewing changes to debian/control

  • Committer: Package Import Robot
  • Author(s): Agustin Henze
  • Date: 2013-02-07 18:48:58 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20130207184858-lti56cio1j7j9hqd
Tags: 0.20.0-1
* Imported Upstream version 0.20.0
* Use sphinxdoc option from debhelper to build the documentation:
  - debian/control: Added missing dependency on python(3)-sphinx.
  - debian/python-doit-doc.links: removed, now handled by sphinxdoc.
  - debian/rules: Clean-up symlinks
* Fixed author in debian/python-doit-doc.doc-base file
* Added call to run test cases
  - Added dependency on python-mock and strace.
* Updated home page url
* Replaced "DoIt" for "doit" asked by the upstream author
* Improved package description

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
Build-Depends-Indep: python-all,
8
8
 python-support (>= 1),
9
9
 bash-completion,
10
 
 python-sphinx,
 
10
 python-sphinx (>= 1.0.7+dfsg) | python3-sphinx,
11
11
 python-pyinotify,
12
12
 python-setuptools,
13
13
 python3-all,
14
14
 python3-setuptools,
 
15
 python-mock,
 
16
 strace,
15
17
Standards-Version: 3.9.4
16
18
X-Python-Version: >= 2.7
17
 
Homepage: http://python-doit.sourceforge.net/
 
19
Homepage: http://pydoit.org
18
20
Vcs-Git: git://git.debian.org/collab-maint/doit.git
19
21
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/doit.git
20
22
 
23
25
Depends: ${python:Depends}, ${misc:Depends}, python-pyinotify
24
26
Suggests: python-doit-doc
25
27
Description: Automation tool for executing any kind of task in a build-tools fashion
26
 
 DoIt is an automation tool that brings the power of build-tools to execute any
 
28
 doit is an automation tool that brings the power of build-tools to execute any
27
29
 kind of task.
28
30
 .
29
 
 Build-tools were created with two primary goals:
30
 
  * To keep track of inter-dependencies between tasks and ensure that they
31
 
 will be executed in the correct order.
32
 
  * To be faster than manually executing all tasks. Actually, it cannot really
33
 
 execute a given task faster, instead it has some mechanism to determine if a
34
 
 task is up-to-date or not. So it is faster by executing less tasks, executing
35
 
 only the ones required (not up-to-date).
 
31
 A task describes some computation to be done (actions), and contains some
 
32
 extra meta-data.
 
33
 The actions can be external programs or Python functions. A single task may
 
34
 define more than one action.
 
35
 doit uses the task’s meta-data to:
 
36
  * cache task results
 
37
  * correct execution order
 
38
  * parallel execution
 
39
  * powerful dependency system
36
40
 
37
41
Package: python3-doit
38
42
Architecture: all
39
43
Depends: ${python3:Depends}, ${misc:Depends}, python3-pyinotify
40
44
Suggests: python-doit-doc
41
45
Description: Automation tool for executing any kind of task in a build-tools fashion
42
 
 DoIt is an automation tool that brings the power of build-tools to execute any
 
46
 doit is an automation tool that brings the power of build-tools to execute any
43
47
 kind of task.
44
48
 .
45
 
 Build-tools were created with two primary goals:
46
 
  * To keep track of inter-dependencies between tasks and ensure that they
47
 
 will be executed in the correct order.
48
 
  * To be faster than manually executing all tasks. Actually, it cannot really
49
 
 execute a given task faster, instead it has some mechanism to determine if a
50
 
 task is up-to-date or not. So it is faster by executing less tasks, executing
51
 
 only the ones required (not up-to-date).
 
49
 A task describes some computation to be done (actions), and contains some
 
50
 extra meta-data.
 
51
 The actions can be external programs or Python functions. A single task may
 
52
 define more than one action.
 
53
 doit uses the task’s meta-data to:
 
54
  * cache task results
 
55
  * correct execution order
 
56
  * parallel execution
 
57
  * powerful dependency system
52
58
 
53
59
Package: python-doit-doc
54
60
Architecture: all
55
61
Section: doc
56
 
Depends: ${misc:Depends}, libjs-jquery, libjs-underscore, libjs-sphinxdoc
 
62
Depends: ${misc:Depends}, ${sphinxdoc:Depends}
57
63
Recommends: python-doit
58
64
Description: Automation tool for executing any kind of task in a build-tools fashion - doc
59
 
 DoIt is an automation tool that brings the power of build-tools to execute any
 
65
 doit is an automation tool that brings the power of build-tools to execute any
60
66
 kind of task.
61
67
 .
62
 
 Build-tools were created with two primary goals:
63
 
  * To keep track of inter-dependencies between tasks and ensure that they
64
 
 will be executed in the correct order.
65
 
  * To be faster than manually executing all tasks. Actually it can not really
66
 
 execute a given task faster, instead it has some mechanism to determine if a
67
 
 task is up-to-date or not. So it is faster by executing less tasks, executing
68
 
 only the ones required (not up-to-date).
 
68
 A task describes some computation to be done (actions), and contains some
 
69
 extra meta-data.
 
70
 The actions can be external programs or Python functions. A single task may
 
71
 define more than one action.
 
72
 doit uses the task’s meta-data to:
 
73
  * cache task results
 
74
  * correct execution order
 
75
  * parallel execution
 
76
  * powerful dependency system
69
77
 .
70
78
 This package contains API documentation and examples.