debian/0000775000000000000000000000000012207352321007165 5ustar debian/compat0000664000000000000000000000000212161414676010376 0ustar 9 debian/control0000664000000000000000000001473412161414676010614 0ustar Source: blktap Section: libs Priority: extra Maintainer: Ubuntu Developers XSBC-Original-Maintainer: PKG Xen Devel Uploaders: Thomas Goirand Build-Depends: debhelper (>= 9), autotools-dev, uuid-dev, libaio-dev, libtool, autoconf, automake Standards-Version: 3.9.4 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-xen/blktap.git Vcs-Git: http://anonscm.debian.org/git/pkg-xen/blktap.git Homepage: http://www.xen.org/products/cloudxen.html Package: blktap-dev Section: devel Architecture: linux-any Depends: ${misc:Depends}, ${shlibs:Depends}, libvhd0 (= ${binary:Version}), libvhdio-2.0.90 (= ${binary:Version}), libblktapctl0 (= ${binary:Version}) Description: Xen API blktap shared library (development files) The Xen Cloud Platform (XCP) is an open source enterprise-ready server virtualization and cloud computing platform, delivering the Xen Hypervisor with support for a range of guest operating systems. This package is part of it. It implements the userland part of the blktap driver. . Virtual Hard Disk (VHD) is a file format standard which maps logical hard disk contents to a physical disk image format, which can then be more efficiently stored in a variety of different storage types, such as file systems or logical volumes. . VHDs are container files storing block metadata alongside a virtual disk's contents, in a single disk image. The metadata enables advanced storage backend capabilities, such as thin provisioning, disk image snapshotting, and coalescing of differencing disks. . Libvhd is a library to access VHD format metadata. It provides disk image initialization, inspection and manipulation to both VHD user utilities and the VHD disk driver in Blktap. . This package contains the development files Package: blktap-utils Section: utils Architecture: linux-any Depends: ${misc:Depends}, ${shlibs:Depends}, libvhd0 (= ${binary:Version}), libvhdio-2.0.90 (= ${binary:Version}), libblktapctl0 (= ${binary:Version}), blktap-dkms Description: utilities to work with VHD disk images files The Xen Cloud Platform (XCP) is an open source enterprise-ready server virtualization and cloud computing platform, delivering the Xen Hypervisor with support for a range of guest operating systems. This package is part of it. It implements the userland part of the blktap driver. . Virtual Hard Disk (VHD) is a file format standard which maps logical hard disk contents to a physical disk image format, which can then be more efficiently stored in a variety of different storage types, such as file systems or logical volumes. . VHDs are container files storing block metadata alongside a virtual disk's contents, in a single disk image. The metadata enables advanced storage backend capabilities, such as thin provisioning, disk image snapshotting, and coalescing of differencing disks. . This package contains user utilities to inspect, test, and manipulate Virtual Hard Disk (VHD) images through libvhd, and the control utilities needed to create destroy and manipulate devices ('tap-ctl'), the 'tapdisk' driver program to perform tap devices I/O, and a number of image drivers. Package: libvhd0 Architecture: linux-any Depends: ${misc:Depends}, ${shlibs:Depends} Description: VHD file format access library The Xen Cloud Platform (XCP) is an open source enterprise-ready server virtualization and cloud computing platform, delivering the Xen Hypervisor with support for a range of guest operating systems. This package is part of it. It implements the userland part of the blktap driver. . Virtual Hard Disk (VHD) is a file format standard which maps logical hard disk contents to a physical disk image format, which can then be more efficiently stored in a variety of different storage types, such as file systems or logical volumes. . VHDs are container files storing block metadata alongside a virtual disk's contents, in a single disk image. The metadata enables advanced storage backend capabilities, such as thin provisioning, disk image snapshotting, and coalescing of differencing disks. . Libvhd is a library to access VHD format metadata. It provides disk image initialization, inspection and manipulation to both VHD user utilities and the VHD disk driver in Blktap. . This package contains the runtime vhd library. Package: libvhdio-2.0.90 Architecture: linux-any Depends: ${misc:Depends}, ${shlibs:Depends} Description: Xen API blktap shared library (shared library) The Xen Cloud Platform (XCP) is an open source enterprise-ready server virtualization and cloud computing platform, delivering the Xen Hypervisor with support for a range of guest operating systems. This package is part of it. It implements the userland part of the blktap driver. . Virtual Hard Disk (VHD) is a file format standard which maps logical hard disk contents to a physical disk image format, which can then be more efficiently stored in a variety of different storage types, such as file systems or logical volumes. . VHDs are container files storing block metadata alongside a virtual disk's contents, in a single disk image. The metadata enables advanced storage backend capabilities, such as thin provisioning, disk image snapshotting, and coalescing of differencing disks. . This package contains the runtime vhdio library. Package: libblktapctl0 Architecture: linux-any Depends: ${misc:Depends}, ${shlibs:Depends} Description: Xen API blktapctl shared library (shared library) The Xen Cloud Platform (XCP) is an open source enterprise-ready server virtualization and cloud computing platform, delivering the Xen Hypervisor with support for a range of guest operating systems. This package is part of it. It implements the userland part of the blktap driver. . Virtual Hard Disk (VHD) is a file format standard which maps logical hard disk contents to a physical disk image format, which can then be more efficiently stored in a variety of different storage types, such as file systems or logical volumes. . VHDs are container files storing block metadata alongside a virtual disk's contents, in a single disk image. The metadata enables advanced storage backend capabilities, such as thin provisioning, disk image snapshotting, and coalescing of differencing disks. . Libvhd is a library to access VHD format metadata. It provides disk image initialization, inspection and manipulation to both VHD user utilities and the VHD disk driver in Blktap. . This package contains the runtime blktapctl library. debian/patches/0000775000000000000000000000000012207352145010620 5ustar debian/patches/Fixes-bashism-in-binsh-script-in-partvhdpartx.patch0000664000000000000000000000477112161345700022512 0ustar Description: Fixes bashism in /bin/sh script in part/vhdpartx * Fixes bashism in /bin/sh script in part/vhdpartx (Closes: #690630). Author: Thomas Goirand Bug-Debian: http://bugs.debian.org/690630 Forwarded: By email to upstream --- blktap-2.0.90.orig/part/vhdpartx +++ blktap-2.0.90/part/vhdpartx @@ -37,8 +37,8 @@ parse_args() shift done - [[ -z "$lib" ]] && lib=$LIBVHDIO - [[ -z "$vhd" || "$count" != "1" ]] && usage + [ -z "$lib" ] && lib=$LIBVHDIO + [ -z "$vhd" ] || [ "$count" != "1" ] && usage return 0 } @@ -48,13 +48,13 @@ fdisk_read_partitions() local data=$(LD_PRELOAD=$lib fdisk -l $vhd) local none=$(echo $data | grep "This doesn't look like a partition table") - [[ -n "$none" ]] && partitions=0 && return 0 + [ -n "$none" ] && partitions=0 && return 0 partitions=4 - while [[ "$partitions" != "0" ]]; do + while [ "$partitions" != "0" ]; do local hit=$(echo $data | grep "${vhd}$partitions") - [[ -n "$hit" ]] && break - let partitions=$partitions-1 + [ -n "$hit" ] && break + partitions=$(($partitions - 1 )) done } @@ -66,9 +66,9 @@ part_util_read_partitions() list_mappings() { local parts=1 - while [[ $parts -le $partitions ]]; do + while [ $parts -le $partitions ]; do echo ${vhd}$parts - let parts=$parts+1 + parts=$(($parts + 1 )) done } @@ -76,32 +76,32 @@ add_mappings() { local parts=1 local path=$(realpath $vhd) - while [[ $parts -le $partitions ]]; do - [[ -e ${path}${parts} ]] || ln -s $(basename $path) ${path}$parts - let parts=$parts+1 + while [ $parts -le $partitions ]; do + [ -e ${path}${parts} ] || ln -s $(basename $path) ${path}$parts + parts=$(($parts + 1 )) done } del_mappings() { local parts=1 - while [[ $parts -le $partitions ]]; do - [[ -L ${vhd}$parts ]] && rm -f ${vhd}$parts - let parts=$parts+1 + while [ $parts -le $partitions ]; do + [ -L ${vhd}$parts ] && rm -f ${vhd}$parts + parts=$(($parts + 1 )) done } main() { parse_args $@ - [[ -x $part_util ]] || die "can't find part-util" - [[ -r $vhd && -r $lib ]] || die "can't find vhd or lib" + [ -x $part_util ] || die "can't find part-util" + [ -r $vhd && -r $lib ] || die "can't find vhd or lib" part_util_read_partitions - [[ -n "$add" ]] && add_mappings - [[ -n "$del" ]] && del_mappings - [[ -n "$list" ]] && list_mappings + [ -n "$add" ] && add_mappings + [ -n "$del" ] && del_mappings + [ -n "$list" ] && list_mappings return 0 } debian/patches/fix-for-arm.patch0000664000000000000000000000070512035571570013776 0ustar Index: blktap-2.0.90/configure.ac =================================================================== --- blktap-2.0.90.orig/configure.ac 2011-11-28 17:56:57.000000000 +0000 +++ blktap-2.0.90/configure.ac 2012-10-11 16:27:32.279320907 +0000 @@ -52,7 +52,7 @@ AM_CONDITIONAL([ENABLE_VHDIO], [test x$enable_shared = xyes && case "${host_os}" in - linux-gnu) true ;; + linux-gnu*) true ;; *) false ;; esac]) debian/patches/series0000664000000000000000000000016612207352145012040 0ustar lvm-path Fixes-bashism-in-binsh-script-in-partvhdpartx.patch gcc-4.8.patch fix-for-big-endian.patch fix-for-arm.patch debian/patches/fix-for-big-endian.patch0000664000000000000000000000043612001063336015202 0ustar --- blktap-2.0.90.orig/include/libvhd.h +++ blktap-2.0.90/include/libvhd.h @@ -48,6 +48,7 @@ #define BE64_OUT(foo) (*(foo)) = bswap_64(*(foo)) #else #define BE16_IN(foo) + #define BE16_OUT(foo) #define BE32_IN(foo) #define BE64_IN(foo) #define BE32_OUT(foo) debian/patches/lvm-path0000664000000000000000000000142612161414676012305 0ustar Fix the path to the LVM utilities vgs and lvs --- a/lvm/lvm-util.c +++ b/lvm/lvm-util.c @@ -117,7 +117,7 @@ memset(vg, 0, sizeof(*vg)); - err = asprintf(&cmd, "/usr/sbin/vgs %s --noheadings --nosuffix --units=b " + err = asprintf(&cmd, "/sbin/vgs %s --noheadings --nosuffix --units=b " "--options=vg_name,vg_extent_size,lv_count,pv_count," "pv_name,pe_start --unbuffered 2> /dev/null", vgname); if (err == -1) @@ -222,7 +222,7 @@ FILE *scan; int i, err; - err = asprintf(&cmd, "/usr/sbin/lvs %s --noheadings --nosuffix --units=b " + err = asprintf(&cmd, "/sbin/lvs %s --noheadings --nosuffix --units=b " "--options=lv_name,lv_size,segtype,seg_count,seg_start," "seg_size,devices --unbuffered 2> /dev/null", vg->name); if (err == -1) debian/patches/gcc-4.8.patch0000664000000000000000000000141712161345700012705 0ustar Description: Fix FTBFS with gcc-4.8 and -Werror and -Wsizeof-pointer-memaccess Author: Juhani Numminen Bug-Debian: http://bugs.debian.org/701248 Last-Update: 2013-06-07 --- a/drivers/tapdisk-logfile.c +++ b/drivers/tapdisk-logfile.c @@ -163,7 +163,7 @@ { int err; - memset(log, 0, sizeof(log)); + memset(log, 0, sizeof(*log)); tapdisk_logfile_name(log->path, sizeof(log->path), dir, ident, ext); --- a/drivers/block-llcache.c +++ b/drivers/block-llcache.c @@ -253,7 +253,7 @@ return; } - memset(req, 0, sizeof(req)); + memset(req, 0, sizeof(*req)); req->treq = treq; @@ -553,7 +553,7 @@ return; } - memset(req, 0, sizeof(req)); + memset(req, 0, sizeof(*req)); req->treq = treq; req->pending = treq.secs; debian/mans/0000775000000000000000000000000012161414676010136 5ustar debian/mans/vhd-index.80000664000000000000000000000040712161414676012116 0ustar .TH vhd-index 8 .SH NAME vhd-index \- short desc goes here .SH SYNOPSIS .B vhd-index .I .SH COMMANDS .B index: <-i index name> <-v vhd file> .B summary: <-s index name> [-v vhd file [-b block]] .SH DESCRIPTION .B vhd-index Long description goes here. debian/mans/tapdisk.80000664000000000000000000000024312161414676011665 0ustar .TH tapdisk 8 .SH NAME tapdisk \- short desc goes here .SH SYNOPSIS .B tapdisk .I .SH DESCRIPTION .B tapdisk Long description goes here. .SH PARAMETERS debian/mans/lock-util.80000664000000000000000000000023312161414676012130 0ustar .TH lock-util 8 .SH NAME lock-util \- short desc goes here .SH SYNOPSIS .B lock-util .I .SH DESCRIPTION .B lock-util Long description goes here. debian/mans/lvm-util.80000664000000000000000000000024712161414676012003 0ustar .TH lvm-util 8 .SH NAME lvm-util \- short desc goes here .SH SYNOPSIS .B lvm-util .I .SH DESCRIPTION .B lvm-util Long description goes here. .SH PARAMETERS debian/mans/part-util.80000664000000000000000000000043212161414676012147 0ustar .TH part-util 8 .SH NAME part-util \- short desc goes here .SH SYNOPSIS .B part-util .I <-i image> [-d dump] [-c count] [-f format] [-t type] [-s sig ] .SH DESCRIPTION .B part-util Long description goes here. .SH PARAMETERS .B -i .B -c .B -f .B -t .B -s debian/mans/td-rated.80000664000000000000000000000031612161414676011733 0ustar .TH td-rated 8 .SH NAME td-rated \- short desc goes here .SH SYNOPSIS .B td-rated .I {-t|--type}={token|meminfo} [-h|--help] [-D|--debug=] .SH DESCRIPTION .B td-rated Long description goes here. debian/mans/vhd-update.80000664000000000000000000000041012161414676012263 0ustar .TH vhd-update 8 .SH NAME vhd-update \- short desc goes here .SH SYNOPSIS .B vhd-update .I -n .I [-j ] .I [-h] .SH DESCRIPTION .B vhd-update Long description goes here. .SH PARAMETERS .B -n .SH OPTIONS .B -j .B -h debian/mans/tapdisk-stream.80000664000000000000000000000025712161414676013163 0ustar .TH tapdisk-stream 8 .SH NAME tapdisk-stream \- short desc goes here .SH SYNOPSIS .B tapdisk-stream .I .SH DESCRIPTION .B tapdisk-stream Long description goes here. debian/mans/td-util.80000664000000000000000000000037712161414676011620 0ustar .TH td-util 8 .SH NAME td-util \- short desc goes here .SH SYNOPSIS .B td-util .I [TYPE] [OPTIONS] .SH COMMANDS .B create .B snapshot .B query .B set .SH TYPE .B vhd .B aio .SH DESCRIPTION .B td-util Long description goes here. .SH OPTIONS debian/mans/tapdisk2.80000664000000000000000000000023112161414676011744 0ustar .TH tapdisk2 8 .SH NAME tapdisk2 \- short desc goes here .SH SYNOPSIS .B tapdisk2 .I .SH DESCRIPTION .B tapdisk2 Long description goes here. debian/mans/vhdpartx.80000664000000000000000000000022712161414676012070 0ustar .TH vhdpartx 8 .SH NAME vhdpartx \- short desc goes here .SH SYNOPSIS .B vhdpartx .I .SH DESCRIPTION .B vhdpartx Long description goes here. debian/mans/vhd-util.80000664000000000000000000000050712161414676011765 0ustar .TH vhd-util 8 .SH NAME vhd-util \- short desc goes here .SH SYNOPSIS .B vhd-util .I [OPTIONS] .SH COMMANDS .B create .B snapshot .B query .B read .B set .B repair .B resize .B fill .B coalesce .B modify .B scan .B check .B revert .SH DESCRIPTION .B vhd-util Long description goes here. .SH OPTIONS debian/mans/tap-ctl.80000664000000000000000000000047412161414676011600 0ustar .TH tap-ctl 8 .SH NAME tap-ctl \- short desc goes here .SH SYNOPSIS .B tap-ctl .I [OPTIONS] .SH COMMANDS .B list .B allocate .B free .B create .B destroy .B spawn .B attach .B detach .B open .B close .B pause .B unpause .B stats .B major .B check .SH DESCRIPTION .B lock-util Long description goes here. debian/gbp.conf0000664000000000000000000000016412161345700010607 0ustar [DEFAULT] upstream-branch = upstream-sid debian-branch = debian-sid [git-buildpackage] export-dir = ../build-area/ debian/blktap-utils.install0000664000000000000000000000026112161414676013202 0ustar usr/bin/vhd-util usr/bin/vhd-update usr/bin/vhd-index usr/sbin/vhdpartx usr/sbin/lvm-util usr/sbin/part-util usr/sbin/td-util usr/sbin/td-rated usr/sbin/tap-ctl usr/bin/tapdisk debian/libvhdio-2.0.90.install0000664000000000000000000000002612161414676013112 0ustar usr/lib/libvhdio-*.so debian/source/0000775000000000000000000000000012161414676010500 5ustar debian/source/format0000664000000000000000000000001412161414676011706 0ustar 3.0 (quilt) debian/README.source0000664000000000000000000000013412161414676011355 0ustar This package uses dpatch. To patch do: dpatch apply-all To unpatch, do: dpatch deapply-all debian/copyright0000664000000000000000000000635012161414676011137 0ustar Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=173 Upstream-Name: blktap Upstream-Contact: Jonathan Ludlam Source: git clone https://github.com/xen-org/blktap.git Files: debian/* Copyright: (c) 2011, Thomas Goirand License: BSD (2 clauses) Files: drivers/atomicio.c include/atomicio.h vhd/lib/atomicio.c Copyright: (c) 2005, Anil Madhavapeddy. All rights reserved. (c) 1995,1999 Theo de Raadt. All rights reserved. License: BSD (2 clauses) Files: * Copyright: (c) 2008-2011, XenSource Inc., All rights reserved. (c) 2010-2011, Citrix Systems, Inc License: BSD (3 clauses) License: BSD (2 clauses) Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. . 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. . THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. License: BSD (3 clauses) Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. . 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. . 3. Neither the name of XenSource Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. debian/libblktapctl0.install0000664000000000000000000000003212161414676013312 0ustar usr/lib/libblktapctl.so.* debian/libvhd0.install0000664000000000000000000000002412161414676012114 0ustar usr/lib/libvhd.so.* debian/rules0000775000000000000000000000205412161414676010261 0ustar #!/usr/bin/make -f pkg_libvhd = libvhd0 vrs_libvhd = 0.1.1 pkg_libvhdio = libvhdio2 vrs_libvhdio = 2.0.90 pkg_libblktapctl = libblktapctl0 vrs_libblktapctl = 0.1.1 %: dh $@ override_dh_auto_clean: [ ! -f Makefile ] || $(MAKE) distclean rm -f aclocal.m4 config.* configure depcomp install-sh ltmain.sh Makefile.in missing rm -f control/Makefile.in drivers/Makefile.in include/Makefile.in rm -f lvm/Makefile.in part/Makefile.in vhd/lib/Makefile.in rm -f vhd/lib/test/Makefile.in vhd/Makefile.in rm -f control/*.opic control/tap-ctl rm -f vhd/vhd-util part/part-util vhd/vhd-util part/part-util rm -f drivers/tapdisk2 drivers/tapdisk-stream drivers/lock-util drivers/td-util drivers/td-rated rm -f vhd/vhd-update vhd/vhd-index rm -f control/libblktapctl.so vhd/lib/libvhdio.so.1.0.0 vhd/lib/libvhd.so.1.0.0 find . -type f -iname '*.o' -delete rm -f build-stamp dh_clean override_dh_auto_build: ./autogen.sh ./configure --prefix=/usr --with-pic --libexecdir=/usr/bin -sysconfdir=/etc $(MAKE) -j 20 USE_SYSTEM_LIBRARIES=y DESTDIR=$(CURDIR)/debian/tmp debian/blktap-dev.install0000664000000000000000000000060512161414676012622 0ustar usr/lib/libblktapctl.a usr/include/blktap/tap-ctl.h usr/include/blktap/blktaplib.h usr/include/blktap/tapdisk-message.h usr/include/blktap/blktap2.h usr/lib/libvhd.a usr/include/vhd/vhd.h usr/include/vhd/libvhd-index.h usr/include/vhd/libvhd-journal.h usr/include/vhd/libvhd.h usr/include/vhd/vhd-util.h usr/include/vhd/list.h usr/lib/libvhd.so usr/lib/libvhdio.so usr/lib/libblktapctl.so debian/blktap-utils.manpages0000664000000000000000000000046312161414676013333 0ustar debian/mans/lock-util.8 debian/mans/part-util.8 debian/mans/tapdisk2.8 debian/mans/tapdisk-stream.8 debian/mans/td-rated.8 debian/mans/td-util.8 debian/mans/vhd-index.8 debian/mans/vhdpartx.8 debian/mans/vhd-update.8 debian/mans/vhd-util.8 debian/mans/tap-ctl.8 debian/mans/lvm-util.8 debian/mans/tapdisk.8 debian/changelog0000664000000000000000000000276612207352307011056 0ustar blktap (2.0.90-2ubuntu1) saucy; urgency=low * Merge from Debian unstable. Remaining changes: - This is not x86 specific, but is linux specific. Use linux-any - Fix libvhd.h header on big-endian not providing BE16_OUT() macro - Fix build failure, enabling vhd io on arm*. -- Stefan Bader Wed, 28 Aug 2013 12:45:10 +0200 blktap (2.0.90-2) unstable; urgency=low * Fixes bashism in /bin/sh script in part/vhdpartx (Closes: #690630). * Fixes wrong paragraph separation in package description (Closes: #699845). * Added a debian/gbp.conf. * Fixes FTBFS with gcc 4.8, thanks to Matthias Klose for reporting, and Juhani Numminen for sending a patch to fix it (Closes: #701248). * Switching to debhelper and compat 9. * Standards-Version: 3.9.4. * Canonical VCS fields. -- Thomas Goirand Tue, 23 Oct 2012 10:23:57 +0000 blktap (2.0.90-1ubuntu2) quantal; urgency=low * Fix build failure, enabling vhd io on arm*. -- Matthias Klose Thu, 11 Oct 2012 18:27:44 +0200 blktap (2.0.90-1ubuntu1) quantal; urgency=low * This is not x86 specific, but is linux specific. Use linux-any * Fix libvhd.h header on big-endian not providing BE16_OUT() macro -- Ben Collins Mon, 16 Jul 2012 15:07:50 -0400 blktap (2.0.90-1) unstable; urgency=low * Initial release. (Closes: #635115) -- Thomas Goirand Thu, 21 Jul 2011 17:08:44 +0000