+++ /dev/null
-This package uses quilt to manage the patches in debian/patches.
-For further information please install the quilt package and read
-/usr/share/doc/quilt/README.source.
-
- -- Sven Hoexter <hoexter@debian.org>, Mon, 21 May 2012 20:54:59 +0200
+exfat-utils (0.9.8-1) UNRELEASED; urgency=low
+
+ * New upstream release.
+ + The mkfs utility was rewritten and can now
+ create filesystems up to several exabytes.
+ * Dropped all patches - merged upstream.
+ * Dropped all usage of quilt - currently not required.
+ * No longer use CFLAGS as CCFLAGS, the SConstruct file
+ now honors CCFLAGS.
+
+ -- Sven Hoexter <hoexter@debian.org> Sun, 12 Aug 2012 19:51:22 +0200
+
exfat-utils (0.9.7-2) unstable; urgency=low
* Move manual link creation from debian/rules to debian/links
Section: otherosfs
Priority: optional
Maintainer: Sven Hoexter <hoexter@debian.org>
-Build-Depends: debhelper (>= 9), scons, quilt
+Build-Depends: debhelper (>= 9), scons
Standards-Version: 3.9.3
Homepage: http://code.google.com/p/exfat/
Vcs-Git: git://git.sven.stormbind.net/git/sven/exfat-utils.git
+++ /dev/null
-Applied upstream in r284.
-http://code.google.com/p/exfat/source/detail?r=284
---- a/SConstruct
-+++ b/SConstruct
-@@ -41,6 +41,8 @@ if not conf.env['CCFLAGS']:
- conf.env.Replace(CCFLAGS = '-Wall -O2 -ggdb')
- elif conf.env['CC'] == 'clang':
- conf.env.Replace(CCFLAGS = '-Wall -O2 -g')
-+if 'CPPFLAGS' in os.environ:
-+ conf.env.Replace(CPPFLAGS = os.environ['CPPFLAGS'])
- conf.env.Append(CPPDEFINES = {'FUSE_USE_VERSION': 26})
- conf.env.Append(CPPDEFINES = {'_FILE_OFFSET_BITS' : 64})
- conf.env.Append(CPPPATH = ['libexfat'])
+++ /dev/null
-honor-cppflags
-utf16-fix
+++ /dev/null
-Applied upstream in r283.
-http://code.google.com/p/exfat/source/detail?r=283
-Closes Debian bug #672898.
-Thanks to Vladimir Serbinenko <phcoder@gmail.com>.
---- a/libexfat/utf.c
-+++ b/libexfat/utf.c
-@@ -89,6 +89,7 @@ static const le16_t* utf16_to_wchar(cons
- return NULL;
- *wc = ((wchar_t) (le16_to_cpu(input[0]) & 0x3ff) << 10);
- *wc |= (le16_to_cpu(input[1]) & 0x3ff);
-+ *wc += 0x10000;
- return input + 2;
- }
- else
-@@ -186,6 +187,7 @@ static le16_t* wchar_to_utf16(le16_t* ou
- }
- if (outsize < 2)
- return NULL;
-+ wc -= 0x10000;
- output[0] = cpu_to_le16(0xd800 | ((wc >> 10) & 0x3ff));
- output[1] = cpu_to_le16(0xdc00 | (wc & 0x3ff));
- return output + 2;
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
-export CCFLAGS=${CFLAGS}
-
%:
- dh $@ --with quilt
+ dh $@
override_dh_auto_build:
scons