diff --git a/.bzrignore b/.bzrignore index 3f26509..5a1482a 100644 --- a/.bzrignore +++ b/.bzrignore @@ -1,3 +1,7 @@ dist build *.new +python-build-stamp* +debian/oblogout +debian/*.log +debian/oblogout.* diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..28e29bd --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +oblogout (0.2-1-0ubuntu1) intrepid; urgency=low + + * Initial release + + -- Andrew Williams Sat, 24 Jan 2009 13:10:05 +0000 + 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..03ba29d --- /dev/null +++ b/debian/control @@ -0,0 +1,15 @@ +Source: oblogout +Section: misc +Priority: extra +Maintainer: Andrew Williams +Build-Depends: cdbs, debhelper (>= 7), python-central (>= 0.5.6) +XS-Python-Version: >= 2.5 +Standards-Version: 3.7.3 +Homepage: http://launchpad.net/oblogout/ + +Package: oblogout +Architecture: any +Depends: ${python:Depends}, python-gobject, python-gtk2, python-imaging, python-cairo, python-dbus +XB-Python-Version: ${python:Versions} +Description: Logout script designed with Openbox in mind. + OBLogout is a expandable, configurable, and theme-able logout script designed to be used in a Openbox desktop environment. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..cdcc666 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,34 @@ +This package was debianized by Andrew Williams on +Sat, 24 Jan 2009 12:59:44 +0000. + +It was downloaded from http://launchpad.net/oblogout + +Upstream Author(s): + + Andrew Williams + +Copyright: + + 2008 - 2009 Andrew Williams + +License: + + This package 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 2 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 package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + +The Debian packaging is (C) 2009, Andrew Williams and +is licensed under the GPL, see above. diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..e845566 --- /dev/null +++ b/debian/docs @@ -0,0 +1 @@ +README diff --git a/debian/files b/debian/files new file mode 100644 index 0000000..79c8d66 --- /dev/null +++ b/debian/files @@ -0,0 +1 @@ +oblogout_0.2-1-0ubuntu1_i386.deb misc extra 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..02fb5d1 --- /dev/null +++ b/debian/rules @@ -0,0 +1,9 @@ +#!/usr/bin/make -f + +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. diff --git a/setup.py b/setup.py index acac8a7..d1c5fbc 100755 --- a/setup.py +++ b/setup.py @@ -63,7 +63,7 @@ print files from distutils.core import setup setup(name = "openboxlogout", - version = "0.1", + version = "0.2", description = "Openbox Logout", author = "Andrew Williams", author_email = "andy@tensixtyone.com",