Page MenuHomePhabricator

No OneTemporary

Size
8 KB
Referenced Files
None
Subscribers
None
diff --git a/trunk/debian/changelog b/trunk/debian/changelog
new file mode 100644
index 0000000..8a52ee9
--- /dev/null
+++ b/trunk/debian/changelog
@@ -0,0 +1,78 @@
+xmount (0.4.5) stable; urgency=low
+
+ * Added FUSE options to show mounted source in mount command output
+
+ -- Gillen Daniel <gillen.dan@pinguin.lu> Tue, 11 Feb 2011 16:00:00 +0100
+
+xmount (0.4.4) stable; urgency=critical
+
+ * Fixed a bug in UUID generation
+
+ -- Gillen Daniel <gillen.dan@pinguin.lu> Tue, 10 Aug 2010 15:00:00 +0100
+
+xmount (0.4.3) stable; urgency=critical
+
+ * Fixed a bug when moving cache files between different hw archtitectures
+
+ -- Gillen Daniel <gillen.dan@pinguin.lu> Wed, 24 Mar 2010 11:30:00 +0100
+
+xmount (0.3.1) stable; urgency=low
+
+ * Added --cache and --owcache command line options
+ * Updated some parts of the documentation
+
+ -- Gillen Daniel <gillen.dan@pinguin.lu> Fri, 10 Jul 2009 10:19:00 +0100
+
+xmount (0.3.0) stable; urgency=low
+
+ * Added VMDK emulation support
+
+ -- Gillen Daniel <gillen.dan@pinguin.lu> Fri, 22 May 2009 11:00:00 +0100
+
+xmount (0.2.3) stable; urgency=critical
+
+ * Virtual write support is fixed now
+
+ -- Gillen Daniel <gillen.dan@pinguin.lu> Fri, 10 Apr 2009 17:02:00 +0100
+
+xmount (0.2.2) stable; urgency=critical
+
+ * Fixed yet another bug in virtual write support
+
+ -- Gillen Daniel <gillen.dan@pinguin.lu> Thu, 31 Mar 2009 15:13:00 +0100
+
+xmount (0.2.1) stable; urgency=critical
+
+ * Fixed a bug in virtual write support that corrupted cache files
+
+ -- Gillen Daniel <gillen.dan@pinguin.lu> Fri, 27 Mar 2009 12:00:00 +0100
+
+xmount (0.2.0) stable; urgency=low
+
+ * Changed name from mountewf to xmount
+ * Massive code cleanup
+ * Added support for multiple input image formats
+ * Added support for virtual write access to emulated image files
+
+ -- Gillen Daniel <gillen.dan@pinguin.lu> Mon, 16 Mar 2009 17:00:00 +0100
+
+mountewf (0.1.2) stable; urgency=low
+
+ * Added random generator initialisation
+ * Resolved compilation issue by fixing a typo
+ * Fixed some debian specific scripts to be able to build a package
+
+ -- Gillen Daniel <gillen.dan@pinguin.lu> Tue, 10 Feb 2009 16:12:00 +0100
+
+mountewf (0.1.1) stable; urgency=low
+
+ * Fixed severe bugs in block map calculation.
+ * VDI emulation should now work
+
+ -- Gillen Daniel <gillen.dan@pinguin.lu> Thu, 03 Feb 2009 17:12:00 +0100
+
+mountewf (0.1.0) unstable; urgency=low
+
+ * Initial Release.
+
+ -- Gillen Daniel <gillen.dan@pinguin.lu> Sun, 01 Feb 2009 01:30:50 +0100
diff --git a/trunk/debian/compat b/trunk/debian/compat
new file mode 100644
index 0000000..7ed6ff8
--- /dev/null
+++ b/trunk/debian/compat
@@ -0,0 +1 @@
+5
diff --git a/trunk/debian/control b/trunk/debian/control
new file mode 100644
index 0000000..c7dccc7
--- /dev/null
+++ b/trunk/debian/control
@@ -0,0 +1,20 @@
+Source: xmount
+Section: unknown
+Priority: low
+Maintainer: Gillen Daniel <gillen.dan@pinguin.lu>
+Build-Depends: debhelper (>= 5), automake (>= 1.10), autoconf (>= 2.13), libfuse-dev (>= 2.7.1-2~bpo40+1), libewf-dev (>= 20080501-1)
+Standards-Version: 3.7.3
+
+Package: xmount
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: Tool to crossmount between multiple input and output harddisk image files
+ xmount allows you to convert on-the-fly between multiple input and output
+ harddisk image types. xmount creates a virtual file system using FUSE
+ (Filesystem in Userspace) that contains a virtual representation of the input
+ image. The virtual representation can be in raw DD, VirtualBox's virtual disk
+ file format or in VmWare's VMDK file format. Input images can be raw DD, EWF
+ (Expert Witness Compression Format) or AFF (Advanced Forensic Format) files.
+ In addition, xmount also supports virtual write access to the output files
+ that is redirected to a cache file. This makes it possible to boot acquired
+ harddisk images using QEMU, KVM, VirtualBox, VmWare or alike.
diff --git a/trunk/debian/copyright b/trunk/debian/copyright
new file mode 100644
index 0000000..0f3ad84
--- /dev/null
+++ b/trunk/debian/copyright
@@ -0,0 +1,33 @@
+This package was debianized by Gillen Daniel <gillen.dan@pinguin.lu> on
+Fri, 06 Mar 2009 17:00:00 +0200.
+
+Upstream Author(s):
+
+ Gillen Daniel <gillen.dan@pinguin.lu>
+
+Copyright:
+
+ Gillen Daniel <gillen.dan@pinguin.lu>
+
+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) 2008, 2009, Gillen Daniel <gillen.dan@pinguin.lu> and
+is licensed under the GPL, see above.
+
diff --git a/trunk/debian/dirs b/trunk/debian/dirs
new file mode 100644
index 0000000..3c52b97
--- /dev/null
+++ b/trunk/debian/dirs
@@ -0,0 +1,3 @@
+usr/bin
+usr/sbin
+usr/share/man/man1
diff --git a/trunk/debian/docs b/trunk/debian/docs
new file mode 100644
index 0000000..50bd824
--- /dev/null
+++ b/trunk/debian/docs
@@ -0,0 +1,2 @@
+NEWS
+README
diff --git a/trunk/debian/rules b/trunk/debian/rules
new file mode 100755
index 0000000..f21b535
--- /dev/null
+++ b/trunk/debian/rules
@@ -0,0 +1,107 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+
+# These are used for cross-compiling and for saving the configure script
+# from having to guess our platform (since we know it already)
+DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+ CFLAGS += -O0
+else
+ CFLAGS += -O2
+endif
+
+config.status: configure
+ dh_testdir
+ # Add here commands to configure the package.
+ ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs"
+
+
+build: build-stamp
+
+build-stamp: config.status
+ dh_testdir
+
+ # Add here commands to compile the package.
+ $(MAKE)
+ #docbook-to-man debian/xmount.sgml > xmount.1
+
+ touch $@
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp
+
+ # Add here commands to clean up after the build process.
+ -$(MAKE) distclean
+ifneq "$(wildcard /usr/share/misc/config.sub)" ""
+ cp -f /usr/share/misc/config.sub config.sub
+endif
+ifneq "$(wildcard /usr/share/misc/config.guess)" ""
+ cp -f /usr/share/misc/config.guess config.guess
+endif
+
+
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+
+ # Add here commands to install the package into debian/xmount.
+ $(MAKE) DESTDIR=$(CURDIR)/debian/xmount install
+
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+ dh_testdir
+ dh_testroot
+ dh_installchangelogs ChangeLog
+ dh_installdocs
+ dh_installexamples
+# dh_install
+# dh_installmenu
+# dh_installdebconf
+# dh_installlogrotate
+# dh_installemacsen
+# dh_installpam
+# dh_installmime
+# dh_python
+# dh_installinit
+# dh_installcron
+# dh_installinfo
+ dh_installman
+ dh_link
+ dh_strip
+ dh_compress
+ dh_fixperms
+# dh_perl
+# dh_makeshlibs
+ dh_installdeb
+ dh_shlibdeps
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install
diff --git a/trunk/debian/xmount.manpages b/trunk/debian/xmount.manpages
new file mode 100644
index 0000000..d832901
--- /dev/null
+++ b/trunk/debian/xmount.manpages
@@ -0,0 +1 @@
+xmount.1

File Metadata

Mime Type
text/x-diff
Expires
Thu, Oct 24, 1:43 PM (1 d, 13 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1142288
Default Alt Text
(8 KB)

Event Timeline