diff --git a/.gitignore b/.gitignore index dde3895..5d3c588 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,6 @@ .DS_Store *.pyc +debian/tvorganise* +build/ +*.egg-info +python-build-stamp-2.5 diff --git a/Makefile b/Makefile index 4e0353a..7cbfa16 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,8 @@ all: python test.py - +clean: + rm *.pyc + rm test/*.pyc + rm -rf build diff --git a/README b/README new file mode 100644 index 0000000..e69de29 diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..9e5f918 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +tvorganise (0.1-1) intrepid; urgency=low + + * Initial release + + -- Andrew Williams Tue, 26 Jan 2010 16:50:25 +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..938d00b --- /dev/null +++ b/debian/control @@ -0,0 +1,17 @@ +Source: tvorganise +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: tvorganise +Architecture: all +Depends: ${python:Depends} +Recommends: python-dbus, policykit +XB-Python-Version: ${python:Versions} +Description: Organises video files into a logical structure based on filename + This enables you to organise files based on the file names, it uses a particular filename convetion + used by TVNamer, but it can be modified to use any format diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..2478ef9 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,34 @@ +This package was debianized by Andrew Williams on +Tue, 26 Jan 2010 16:52: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..db4aa77 --- /dev/null +++ b/debian/files @@ -0,0 +1 @@ +tvorganise_0.1-1_all.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..528517d --- /dev/null +++ b/debian/rules @@ -0,0 +1,8 @@ +#!/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.