--- vmfs-tools-0.2.1.orig/GNUmakefile +++ vmfs-tools-0.2.1/GNUmakefile @@ -1,4 +1,4 @@ -ifeq (,$(filter clean distclean,$(MAKECMDGOALS))) +ifeq (,$(filter clean distclean realclean,$(MAKECMDGOALS))) -include version -include config.cache endif --- vmfs-tools-0.2.1.orig/debian/changelog +++ vmfs-tools-0.2.1/debian/changelog @@ -0,0 +1,42 @@ +vmfs-tools (0.2.1-1) unstable; urgency=low + + * New upstream release. + * debian/rules: Minimize rules now that upstream makefile supports + everything needed. + * debian/control: Bump Standard-Version to 3.8.4.0: No changes required. + * debian/copyright: Update copyright years. + * GNUmakefile: Avoid creating the config.cache file when dh_auto_clean runs + the realclean target. + + -- Mike Hommey Mon, 05 Apr 2010 17:47:10 +0200 + +vmfs-tools (0.2.0-1) unstable; urgency=low + + * New upstream release. + * debian/control: + - Build-depend on libreadline-dev before libreadline5-dev. + Closes: #553889. + - Build-depend on a debhelper version that supports dh overrides. + - Bump Standard-Version to 3.8.3.0: No changes required. + * debian/rules: Workaround for inexistent upstream distclean rule. + + -- Mike Hommey Mon, 23 Nov 2009 18:31:48 +0100 + +vmfs-tools (0.1.2-1) unstable; urgency=medium + + * New upstream release. + - Fixes various corruptions when reading data. Closes: #532557. + + -- Mike Hommey Thu, 11 Jun 2009 22:53:15 +0200 + +vmfs-tools (0.1.1-1) unstable; urgency=low + + * New upstream release. + + -- Mike Hommey Tue, 26 May 2009 20:24:00 +0200 + +vmfs-tools (0.1.0-1) unstable; urgency=low + + * Initial release. (Closes: #530022) + + -- Mike Hommey Sun, 24 May 2009 11:32:52 +0200 --- vmfs-tools-0.2.1.orig/debian/compat +++ vmfs-tools-0.2.1/debian/compat @@ -0,0 +1 @@ +7 --- vmfs-tools-0.2.1.orig/debian/control +++ vmfs-tools-0.2.1/debian/control @@ -0,0 +1,21 @@ +Source: vmfs-tools +Priority: extra +Section: otherosfs +Maintainer: Mike Hommey +Build-Depends: debhelper (>= 7.0.50~), pkg-config, uuid-dev, libreadline-dev | libreadline5-dev, libfuse-dev, asciidoc, xsltproc, docbook-xsl +Standards-Version: 3.8.4.0 + +Package: vmfs-tools +Architecture: any +Section: otherosfs +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Tools to access VMFS filesystems + VMFS is a clustered filesystem designed to store virtual machine disks for + VMware ESX or ESXi Server hosts. This set of tools allows to access these + filesystems from some other non ESX/ESXi host for e.g. maintenance tasks. + . + Only read access is available at the moment, but write access is under + works. Multiple extents are supported. + . + The VMFS can be accessed with a command line tool or mounted through a + userspace filesystem (FUSE-based). --- vmfs-tools-0.2.1.orig/debian/copyright +++ vmfs-tools-0.2.1/debian/copyright @@ -0,0 +1,14 @@ +Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=48 +Name: vmfs-tools +Source: http://glandium.org/projects/vmfs-tools/ + +Copyright: 2009, Christophe Fillot + 2009,2010, Mike Hommey +License: GPL-2+ + On Debian systems the full text of the GNU General Public + License can be found in the `/usr/share/common-licenses/GPL-2' + file. + +Files: debian/* +Copyright: 2009,2010, Mike Hommey +License: GPL-2+ --- vmfs-tools-0.2.1.orig/debian/rules +++ vmfs-tools-0.2.1/debian/rules @@ -0,0 +1,6 @@ +#!/usr/bin/make -f + +export NO_STRIP = 1 + +%: + dh $@