]> git.sven.stormbind.net Git - sven/exfat-utils.git/commitdiff
Merge commit 'upstream/0.9.6'
authorSven Hoexter <sven@timegate.de>
Sat, 14 Jan 2012 12:30:13 +0000 (13:30 +0100)
committerSven Hoexter <sven@timegate.de>
Sat, 14 Jan 2012 12:30:13 +0000 (13:30 +0100)
debian/changelog [new file with mode: 0644]
debian/compat [new file with mode: 0644]
debian/control [new file with mode: 0644]
debian/copyright [new file with mode: 0644]
debian/gbp.conf [new file with mode: 0644]
debian/install [new file with mode: 0644]
debian/manpages [new file with mode: 0644]
debian/rules [new file with mode: 0755]
debian/source/format [new file with mode: 0644]
debian/watch [new file with mode: 0644]

diff --git a/debian/changelog b/debian/changelog
new file mode 100644 (file)
index 0000000..f7cf168
--- /dev/null
@@ -0,0 +1,6 @@
+exfat-utils (0.9.5-1) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #625611)
+
+ -- Sven Hoexter <hoexter@debian.org>  Thu, 29 Dec 2011 11:38:47 +0100
+
diff --git a/debian/compat b/debian/compat
new file mode 100644 (file)
index 0000000..45a4fb7
--- /dev/null
@@ -0,0 +1 @@
+8
diff --git a/debian/control b/debian/control
new file mode 100644 (file)
index 0000000..a4b5355
--- /dev/null
@@ -0,0 +1,22 @@
+Source: exfat-utils
+Section: otherosfs
+Priority: optional
+Maintainer: Sven Hoexter <hoexter@debian.org>
+Build-Depends: debhelper (>= 8), scons
+Standards-Version: 3.9.2
+Homepage: http://code.google.com/p/exfat/
+Vcs-Git: git://git.sven.stormbind.net/git/sven/exfat-utils.git
+Vcs-Browser: http://git.sven.stormbind.net/?p=sven/exfat-utils.git
+
+Package: exfat-utils
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Recommends: exfat-fuse
+Description: utilities to create, check and label exFAT filesystem
+ Utilities to manage Extended File Allocation Table filesystem.
+ This package provides tools to create, check and label the
+ filesystem. It contains
+  - dumpexfat to dump properties of the filesystem
+  - exfatfsck / fsck.exfat to report errors found on a exFAT filesystem
+  - exfatlabel to label a exFAT filesystem
+  - mkexfatfs / mkfs.exfat to create a exFAT filesystem.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644 (file)
index 0000000..2a3441a
--- /dev/null
@@ -0,0 +1,33 @@
+This work was packaged for Debian by:
+    Sven Hoexter <sven@timegate.de> on Thu, 29 Dec 2011 10:30:47 +0100
+
+It was downloaded from:
+    http://code.google.com/p/exfat/downloads/list
+
+Upstream Author:
+    Andrew Nayenko resver@gmail.com 
+
+Copyright:
+    Copyright (C) 2009, 2010  Andrew Nayenko
+
+License:
+    This program 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 3 of the License, or
+    (at your option) any later version.
+
+    This program 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 program.  If not, see <http://www.gnu.org/licenses/>.
+
+    On any Debian system, you can find the complete text of the GNU GPL
+    (GNU General Public License) in the file "/usr/share/common-licenses/GPL-3".
+
+The Debian packaging is:
+    Copyright (C) 2011 Sven Hoexter <sven@timegate.de>
+
+and is licensed under the GPL version 3, see "/usr/share/common-licenses/GPL-3".
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644 (file)
index 0000000..cec628c
--- /dev/null
@@ -0,0 +1,2 @@
+[DEFAULT]
+pristine-tar = True
diff --git a/debian/install b/debian/install
new file mode 100644 (file)
index 0000000..374a8a7
--- /dev/null
@@ -0,0 +1,4 @@
+dump/dumpexfat /sbin
+fsck/exfatfsck /sbin
+label/exfatlabel /sbin
+mkfs/mkexfatfs /sbin
diff --git a/debian/manpages b/debian/manpages
new file mode 100644 (file)
index 0000000..d8cc60f
--- /dev/null
@@ -0,0 +1,4 @@
+dump/dumpexfat.8
+fsck/exfatfsck.8
+label/exfatlabel.8
+mkfs/mkexfatfs.8
diff --git a/debian/rules b/debian/rules
new file mode 100755 (executable)
index 0000000..01a85ac
--- /dev/null
@@ -0,0 +1,25 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+       dh $@ 
+
+override_dh_auto_build:
+       scons
+
+override_dh_auto_clean:
+       scons -c
+
+override_dh_auto_install:
+       mkdir -p debian/exfat-utils/sbin
+       cd debian/exfat-utils/sbin && \
+               ln -s exfatfsck fsck.exfat; \
+               ln -s mkexfatfs mkfs.exfat
+
+       mkdir -p debian/exfat-utils/usr/share/man/man8
+       cd debian/exfat-utils/usr/share/man/man8 && \
+               ln -s exfatfsck.8.gz fsck.exfat.8.gz; \
+               ln -s mkexfatfs.8.gz mkfs.exfat.8.gz
diff --git a/debian/source/format b/debian/source/format
new file mode 100644 (file)
index 0000000..d3827e7
--- /dev/null
@@ -0,0 +1 @@
+1.0
diff --git a/debian/watch b/debian/watch
new file mode 100644 (file)
index 0000000..714c860
--- /dev/null
@@ -0,0 +1,2 @@
+version=3
+http://code.google.com/p/exfat/downloads/list?can=1 .*/exfat-utils-(\d[\d\.]*)\.tar\.gz