Add debian/ subdirectory (temporary).
authorRichard W.M. Jones <rjones@redhat.com>
Thu, 9 Dec 2010 15:23:33 +0000 (15:23 +0000)
committerRichard W.M. Jones <rjones@redhat.com>
Thu, 9 Dec 2010 16:13:19 +0000 (16:13 +0000)
This adds the debian/ subdirectory to make it easier for us
to build Debian packages.

When we get this into Debian, this directory can be removed.

.gitignore
configure.ac
debian/.gitignore [new file with mode: 0644]
debian/changelog.in [new file with mode: 0644]
debian/compat [new file with mode: 0644]
debian/control [new file with mode: 0644]
debian/dirs [new file with mode: 0644]
debian/rules [new file with mode: 0755]

index 66161c7..f1339cb 100644 (file)
@@ -1,4 +1,5 @@
 *~
+*.cdbs-orig
 *.cmi
 *.cmo
 *.cmx
index a715668..5eb6c07 100644 (file)
@@ -106,5 +106,9 @@ AC_CHECK_HEADER([ext2fs/ext2fs.h],[],[
 ])
 
 AC_CONFIG_HEADERS([config.h])
-AC_CONFIG_FILES([config.ml Makefile lib/Makefile helper/Makefile])
+AC_CONFIG_FILES([config.ml
+        debian/changelog
+        Makefile
+        lib/Makefile
+        helper/Makefile])
 AC_OUTPUT
diff --git a/debian/.gitignore b/debian/.gitignore
new file mode 100644 (file)
index 0000000..790b089
--- /dev/null
@@ -0,0 +1,8 @@
+*.debhelper.log
+*.substvars
+changelog
+files
+stamp-autotools
+stamp-autotools-files
+stamp-makefile-build
+stamp-makefile-install
\ No newline at end of file
diff --git a/debian/changelog.in b/debian/changelog.in
new file mode 100644 (file)
index 0000000..9480309
--- /dev/null
@@ -0,0 +1,5 @@
+febootstrap (@VERSION@-1) unstable; urgency=low
+
+  * release: New upstream version @VERSION@.
+
+ -- Richard W.M. Jones <rjones@redhat.com>  Thu,  9 Dec 2010 12:00:00 +0000
diff --git a/debian/compat b/debian/compat
new file mode 100644 (file)
index 0000000..7f8f011
--- /dev/null
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644 (file)
index 0000000..15c30ea
--- /dev/null
@@ -0,0 +1,18 @@
+Source: febootstrap
+Section: libs
+Priority: extra
+Maintainer: Richard Jones <rjones@redhat.com>
+Uploaders: Richard Jones <rjones@redhat.com>, Guido Günther <agx@sigxcpu.org>
+Build-Depends: debhelper (>= 7), ocaml, ocaml-findlib, aptitude,
+ module-init-tools, e2fslibs-dev, e2fsprogs
+Homepage: http://people.redhat.com/~rjones/febootstrap
+Standards-Version: 3.8.2
+
+Package: febootstrap
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: bootstrapping tool for creating supermin appliances
+ febootstrap is a tool for building supermin appliances. These are
+ tiny appliances [similar to virtual machines], usually around 100KB
+ in size, which get fully instantiated on-the-fly in a fraction of a
+ second when you need to boot one of them.
diff --git a/debian/dirs b/debian/dirs
new file mode 100644 (file)
index 0000000..901aa2d
--- /dev/null
@@ -0,0 +1,2 @@
+usr/bin
+usr/share/man/man8
\ No newline at end of file
diff --git a/debian/rules b/debian/rules
new file mode 100755 (executable)
index 0000000..bb2be21
--- /dev/null
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+
+DEB_DH_INSTALL_SOURCEDIR = debian/tmp
+DEB_VENDOR=$(shell dpkg-vendor --query vendor)
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/autotools.mk