From 6614b5a111e9b6a512b7b6e07a0bed9ec260bca3 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Sun, 24 Jan 2010 18:15:41 -0200 Subject: [PATCH] New debian rules --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 16 ++++++++++++++++ debian/copyright | 42 ++++++++++++++++++++++++++++++++++++++++++ debian/docs | 4 ++++ debian/files | 1 + debian/pycompat | 1 + debian/rules | 9 +++++++++ 8 files changed, 79 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/docs 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..4204551 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +mitter (1.0.0alpha4-1) unstable; urgency=low + + * Initial release + + -- Julio Biason Sun, 24 Jan 2010 17:10:00 -0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..679b4e2 --- /dev/null +++ b/debian/control @@ -0,0 +1,16 @@ +Source: mitter +Section: python +Priority: optional +Maintainer: Julio Biason +Build-Depends: cdbs (>= 0.4.49), debhelper (>= 5.0.38), python-central (>= 0.6.0) +XS-Python-Version: >= 2.5 +Standards-Version: 3.8.1 +Homepage: http://mitter.googlecode.com + +Package: mitter +Architecture: all +XB-Python-Version: ${python:Versions} +Depends: python-gobject, python-gtk2, ${misc:Depends}, ${python:Depends} +Description: Microblogging tool + Mitter is a microblogging client, with multiple interfaces. Currently + it supports Twitter. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..381a18a --- /dev/null +++ b/debian/copyright @@ -0,0 +1,42 @@ +This package was debianized by: + + Julio Biason on Sun, 24 Jan 2010 17:10:00 -0200 + +It was downloaded from: + + + +Upstream Author(s): + + Julio Biason + +Copyright: + + Copyright (C) 2007-2010 Julio Biason + +License: + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +On Debian systems, the complete text of the GNU General +Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'. + +The Debian packaging is: + + Copyright (C) 2010 Julio Biason + +and is licensed under the GPL version 3, see above. + +# Please also look if there are files or directories which have a +# different copyright/license attached and list them here. diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..07bd077 --- /dev/null +++ b/debian/docs @@ -0,0 +1,4 @@ +README +CHEAT-CODES +HACKING +THANKS diff --git a/debian/files b/debian/files new file mode 100644 index 0000000..7c1a2fb --- /dev/null +++ b/debian/files @@ -0,0 +1 @@ +mitter_1.0.0alpha4-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..f3530d4 --- /dev/null +++ b/debian/rules @@ -0,0 +1,9 @@ +#!/usr/bin/make -f + +export DH_PYCENTRAL=nomove +export DEB_PYTHON_SYSTEM=pycentral + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/python-distutils.mk + +# Add here any variable or target overrides you need.