From 0fbfb7e120b1a9701caf297847d5534fd45514fa Mon Sep 17 00:00:00 2001 From: Ragner Magalhaes Date: Tue, 2 Dec 2008 21:04:17 +0000 Subject: [PATCH] Added initial Debian packaging support. FIXES: - Added initial Debian packaging support. Signed-off-by: Bruno Abinader git-svn-id: https://garage.maemo.org/svn/carman/branches/carman-0.7-beta2/python-purple@1398 596f6dd7-e928-0410-a184-9e12fd12cf7e --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 14 ++++++++++++++ debian/files | 1 + debian/pycompat | 1 + debian/rules | 10 ++++++++++ 6 files changed, 32 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/files create mode 100644 debian/pycompat create mode 100755 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..2cc171e --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +python-purple (0.1) unstable; urgency=low + + * Initial release. + + -- Bruno Abinader Tue, 11 Nov 2008 16:53:59 -0400 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..7fa888d --- /dev/null +++ b/debian/control @@ -0,0 +1,14 @@ +Source: python-purple +Section: python +Priority: optional +Maintainer: Bruno Abinader +Build-Depends: cdbs, cython, debhelper, gcc, libpurple-dev, python + +Package: python-purple +Architecture: all +Depends: ${python:Depends}, ${misc:Depends} +XB-Python-Version: ${python:Versions} +Description: Python bind for libpurple + Libpurple is a library intended to be used by programmers seeking + to write an IM client that connects to many IM networks. + This is a python bind for libpurple written using Cython. diff --git a/debian/files b/debian/files new file mode 100644 index 0000000..5a0a80a --- /dev/null +++ b/debian/files @@ -0,0 +1 @@ +python-purple_0.1_all.deb python optional 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..a8f2098 --- /dev/null +++ b/debian/rules @@ -0,0 +1,10 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +DEB_PYTHON_SYSTEM=pysupport + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/python-distutils.mk + +install/cython:: +# dh_installman debian/python-purple.1 -- 1.7.9.5