Package: btrfs-tools Version: 0.18-3 Severity: normal Tags: patch Hello Daniel,
there is a nice utility missing in btrfs. See the attached patch to build and include it, too. Best regards Uwe -- System Information: Debian Release: 5.0.1 APT prefers proposed-updates APT policy: (900, 'proposed-updates'), (900, 'stable'), (600, 'testing-proposed-updates'), (600, 'testing'), (500, 'oldstable-proposed-updates'), (500, 'oldstable'), (200, 'unstable'), (2, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.29-2-686 (SMP w/1 CPU core) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages btrfs-tools depends on: ii libc6 2.9-12 GNU C Library: Shared libraries ii libuuid1 1.41.3-1 universally unique id library ii zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime btrfs-tools recommends no packages. btrfs-tools suggests no packages. -- no debconf information
>From aaabbf2919abd0efd40e773ea668534a3a1dbe41 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Uwe=20Kleine-K=C3=B6nig?= <u.kleine-koe...@pengutronix.de> Date: Sun, 17 May 2009 21:38:06 +0200 Subject: [PATCH] build btrfs-convert MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit btrfs-convert accesses ext3 filesystems using e2fslibs, so two new build dependencies are needed. Signed-off-by: Uwe Kleine-König <u.kleine-koe...@pengutronix.de> --- debian/control | 6 ++++-- debian/rules | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/debian/control b/debian/control index 75c8d3a..812fd5c 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: btrfs-tools Section: admin Priority: optional Maintainer: Daniel Baumann <dan...@debian.org> -Build-Depends: debhelper (>= 7), quilt, uuid-dev, zlib1g-dev +Build-Depends: debhelper (>= 7), quilt, uuid-dev, zlib1g-dev, libacl1-dev, e2fslibs-dev Standards-Version: 3.8.1 Homepage: http://btrfs.wiki.kernel.org/ Vcs-Browser: http://git.debian.net/?p=debian/btrfs-tools.git @@ -16,7 +16,9 @@ Description: Checksumming Copy on Write Filesystem Notable features include very fast offline filesystem check, online filesystem checking, checksumming of all metadata and fast, writable filesystem snapshots. . - This package contains utilities (mkfs, fsck, btrfsctl) used to work with btrfs. + This package contains utilities (mkfs, fsck, btrfsctl) used to work with btrfs + and and an utility (btrfs-convert) to make a btrfs filesystem from an ext3 + one. . WARNING: Btrfs is under heavy development, and is not suitable for any uses other than benchmarking and review. diff --git a/debian/rules b/debian/rules index ad96208..373abb2 100755 --- a/debian/rules +++ b/debian/rules @@ -15,7 +15,7 @@ build: build-stamp build-stamp: patch dh_testdir - CFLAGS="$(CFLAGS)" $(MAKE) + CFLAGS="$(CFLAGS)" $(MAKE) all convert touch build-stamp -- 1.6.3.1