From 6d63e0d3e61b6c86076aee3b7f337d1e212d3428 Mon Sep 17 00:00:00 2001 From: Evan Broder Date: Sun, 22 Nov 2009 21:47:02 -0500 Subject: [PATCH] Debianize PyAFS. --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 14 ++++++++++++++ debian/copyright | 18 ++++++++++++++++++ debian/gbp.conf | 2 ++ debian/pycompat | 1 + debian/rules | 9 +++++++++ 7 files changed, 50 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/gbp.conf create mode 100644 debian/pycompat create mode 100755 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..3bfb3a1 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +python-afs (0.1.0-1) unstable; urgency=low + + * Initial Release. + + -- Evan Broder Sun, 22 Nov 2009 21:38:37 -0500 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7ed6ff8 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +5 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..74dbc64 --- /dev/null +++ b/debian/control @@ -0,0 +1,14 @@ +Source: python-afs +Section: python +Priority: extra +Maintainer: Evan Broder +Build-Depends: cdbs, debhelper, python-all-dev, python-support, python-pyrex, python-setuptools, libopenafs-dev +Standards-Version: 3.8.3 + +Package: python-afs +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} +Provides: ${python:Provides} +Description: AFS bindings for Python + PyAFS provides a set of Python bindings for the AFS distributed + filesystem. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..68bb3ca --- /dev/null +++ b/debian/copyright @@ -0,0 +1,18 @@ +This package was written and debianized by Evan Broder + on Sun, Nov. 22, 2009. + +Upstream Author: + + Evan Broder + +Copyright: + + Copyright (C) 2009 Evan Broder + +License: + + This software is licensed under version 2 or later of the GPL. The + GPL can be found in the file `/usr/share/common-licenses/GPL-2'. + +The Debian packaging is (C) 2009, Evan Broder and is +licensed under the GPL License, see above. diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..7113f6f --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,2 @@ +upstream-branch = master +debian-branch = debian diff --git a/debian/pycompat b/debian/pycompat new file mode 100644 index 0000000..0cfbf08 --- /dev/null +++ b/debian/pycompat @@ -0,0 +1 @@ +2 diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..25c34c4 --- /dev/null +++ b/debian/rules @@ -0,0 +1,9 @@ +#!/usr/bin/make -f + +DEB_PYTHON_SYSTEM=pysupport + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/python-distutils.mk + +clean:: + rm -rf afs/_acl.c afs/_fs.c afs/_pts.c afs/_util.c -- 1.7.9.5