add debian/ to build .deb package
The following package are needed:
- devscripts,
- python-all-dev,
- python-stdeb,
- fuse (>= 2.9.2),
- python-fuse (>= 2:0.2.1)
To build the package::
$ debuild
$ litian -i ...
$ ...
More information at:
http://docs.python.org/2/distutils/sourcedist.html
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/MANIFEST.in Sat Mar 30 02:52:36 2013 +0100
@@ -0,0 +1,1 @@
+recursive-include debian *
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/debian/changelog Sat Mar 30 02:52:36 2013 +0100
@@ -0,0 +1,5 @@
+h5fs (0.1-1) unstable; urgency=low
+
+ * source package automatically created by stdeb 0.6.0+git
+
+ -- alain leufroy <alain.leufroy@logilab.fr> Fri, 29 Mar 2013 23:08:00 +0100
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/debian/compat Sat Mar 30 02:52:36 2013 +0100
@@ -0,0 +1,1 @@
+7
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/debian/control Sat Mar 30 02:52:36 2013 +0100
@@ -0,0 +1,27 @@
+Source: h5fs
+Maintainer: alain leufroy <alain.leufroy@logilab.fr>
+Section: python
+Priority: optional
+Build-Depends: python (>= 2.6.6-3), debhelper (>= 7.4.3), fuse (>= 2.9.2), python-fuse, python-h5py, python-numpy
+Standards-Version: 3.9.1
+
+Package: h5fs
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}, python-fuse (>= 2:0.2.1)
+X-Python-Version: >= 2.5
+Description: Virtual filesystem that exposes the content of HDF5 files
+ H5FS is a mountable Linux virtual file system that allows user to read
+ the content of HDF5 as if they were real files.
+ .
+ In fact, HDF5 simplifies the file structure to include only two major types of
+ object:
+ .
+ * Datasets, which are multidimensional arrays of a homogenous type
+ * Groups, which are container structures which can hold datasets and other
+ groups
+ .
+ This results in a truly hierarchical, filesystem-like data format as resources
+ in an HDF5 file are even accessed using the POSIX-like syntax
+ /path/to/resource. By this way a virtual file system that exposes to the user
+ the hierarchical data seems natural.
+ .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/debian/copyright Sat Mar 30 02:52:36 2013 +0100
@@ -0,0 +1,41 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: h5fs
+Source: http://hg.logilab.org/h5fs
+
+Files: *
+Copyright: 2012-2013 Alain Leufroy <alain.leufroy@logilab.fr>
+License: LGPL-3.0+
+ This package is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser 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
+ Lesser 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 <http://www.gnu.org/licenses/>.
+ .
+ On Debian systems, the complete text of the GNU Lesser General
+ Public License can be found in "/usr/share/common-licenses/LGPL-3".
+
+Files: debian/*
+Copyright: 2013 Alain Leufroy <alain.leufroy@logilab.fr>
+License: GPL-2+
+ 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 program. If not, see <http://www.gnu.org/licenses/>
+ .
+ On Debian systems, the complete text of the GNU General
+ Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/debian/links Sat Mar 30 02:52:36 2013 +0100
@@ -0,0 +1,1 @@
+/usr/share/h5fs/h5fs /usr/bin/h5fs
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/debian/rules Sat Mar 30 02:52:36 2013 +0100
@@ -0,0 +1,11 @@
+#!/usr/bin/make -f
+
+# This file was automatically generated by stdeb 0.6.0+git at
+# Fri, 29 Mar 2013 23:08:00 +0100
+
+%:
+ dh $@ --with python2
+
+override_dh_auto_install:
+ python setup.py install --root=debian/h5fs --install-layout=deb --install-lib=/usr/share/h5fs --install-scripts=/usr/share/h5fs
+override_dh_auto_build:
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/debian/source/format Sat Mar 30 02:52:36 2013 +0100
@@ -0,0 +1,1 @@
+3.0 (quilt)