From 4c5f597132a0db4418b18b42385dde7f860afcb0 Mon Sep 17 00:00:00 2001 From: Ben Carrillo Date: Tue, 5 Feb 2013 23:00:53 +0900 Subject: initial commit --- debian/python3-sh/DEBIAN/control | 15 +++++++++++++++ debian/python3-sh/DEBIAN/md5sums | 4 ++++ debian/python3-sh/DEBIAN/postinst | 9 +++++++++ debian/python3-sh/DEBIAN/prerm | 9 +++++++++ 4 files changed, 37 insertions(+) create mode 100644 debian/python3-sh/DEBIAN/control create mode 100644 debian/python3-sh/DEBIAN/md5sums create mode 100755 debian/python3-sh/DEBIAN/postinst create mode 100755 debian/python3-sh/DEBIAN/prerm (limited to 'debian/python3-sh/DEBIAN') diff --git a/debian/python3-sh/DEBIAN/control b/debian/python3-sh/DEBIAN/control new file mode 100644 index 0000000..f6b71bf --- /dev/null +++ b/debian/python3-sh/DEBIAN/control @@ -0,0 +1,15 @@ +Package: python3-sh +Source: python-sh +Version: 1.07-1 +Architecture: all +Maintainer: Ben Carrillo +Installed-Size: 96 +Section: python +Priority: optional +Homepage: https://github.com/amoffat/sh +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. diff --git a/debian/python3-sh/DEBIAN/md5sums b/debian/python3-sh/DEBIAN/md5sums new file mode 100644 index 0000000..24a0a29 --- /dev/null +++ b/debian/python3-sh/DEBIAN/md5sums @@ -0,0 +1,4 @@ +71456e107fec6ffe2706ea157947c165 usr/lib/python3/dist-packages/sh-1.07.egg-info +55daae0274c9a0992efa0c75e505d6b1 usr/lib/python3/dist-packages/sh.py +d71b839fa155aabdd48114d059c0f56d usr/share/doc/python3-sh/changelog.Debian.gz +1e7c7101fc2af784c75fe00987acfeff usr/share/doc/python3-sh/copyright diff --git a/debian/python3-sh/DEBIAN/postinst b/debian/python3-sh/DEBIAN/postinst new file mode 100755 index 0000000..67c36cc --- /dev/null +++ b/debian/python3-sh/DEBIAN/postinst @@ -0,0 +1,9 @@ +#!/bin/sh +set -e + +# Automatically added by dh_python3: +if which py3compile >/dev/null 2>&1; then + py3compile -p python3-sh +fi + +# End automatically added section diff --git a/debian/python3-sh/DEBIAN/prerm b/debian/python3-sh/DEBIAN/prerm new file mode 100755 index 0000000..b62f215 --- /dev/null +++ b/debian/python3-sh/DEBIAN/prerm @@ -0,0 +1,9 @@ +#!/bin/sh +set -e + +# Automatically added by dh_python3: +if which py3clean >/dev/null 2>&1; then + py3clean -p python3-sh +fi + +# End automatically added section -- cgit v1.2.3