summaryrefslogtreecommitdiff
path: root/debian/control
diff options
context:
space:
mode:
Diffstat (limited to 'debian/control')
-rw-r--r--debian/control36
1 files changed, 36 insertions, 0 deletions
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..63648c6
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,36 @@
+Source: python-sh
+Maintainer: Ben Carrillo <ben@futeisha.org>
+Section: python
+Priority: optional
+Build-Depends:
+ python-all (>= 2.6.6-3),
+ python3-all,
+ debhelper (>= 7.0.50)
+Standards-Version: 3.9.4
+X-Python-Version: >= 2.6
+X-Python3-Version: <= 3.2
+Vcs-Git: git://github.com/amoffat/sh.git
+Vcs-Browser: https://github.com/amoffat/sh
+Homepage: https://github.com/amoffat/sh
+
+Package: python-sh
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${python:Depends}
+Description: Python subprocess interface
+ sh (previously pbs) is a full-fledged subprocess interface for
+ Python 2.6 - 3.2 that allows you to call any program as if it
+ were a function.
+
+Package: python3-sh
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${python:Depends}
+Description: Python subprocess interface
+ sh (previously pbs) is a full-fledged subprocess interface for
+ Python 2.6 - 3.2 that allows you to call any program as if it
+ were a function.
+ .
+ This package contains the Python 3 version of the library.