]> git.sven.stormbind.net Git - sven/exfatprogs.git/commitdiff
initial debian packaging
authorSven Hoexter <sven@stormbind.net>
Sat, 4 Jul 2020 17:16:17 +0000 (19:16 +0200)
committerSven Hoexter <sven@stormbind.net>
Sat, 4 Jul 2020 18:10:13 +0000 (20:10 +0200)
.gitignore [new file with mode: 0644]
debian/changelog [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/rules [new file with mode: 0755]
debian/source/format [new file with mode: 0644]
debian/watch [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..bbe760d
--- /dev/null
@@ -0,0 +1 @@
+debian/files
diff --git a/debian/changelog b/debian/changelog
new file mode 100644 (file)
index 0000000..e9544d9
--- /dev/null
@@ -0,0 +1,5 @@
+exfatprogs (1.0.3-1) UNRELEASED; urgency=medium
+
+  * Initial release. (Closes: #964265)
+
+ -- Sven Hoexter <hoexter@debian.org>  Sat, 04 Jul 2020 18:32:31 +0200
diff --git a/debian/control b/debian/control
new file mode 100644 (file)
index 0000000..760c624
--- /dev/null
@@ -0,0 +1,27 @@
+Source: exfatprogs
+Section: otherosfs
+Priority: optional
+Maintainer: Sven Hoexter <hoexter@debian.org>
+Build-Depends: debhelper-compat (= 13), pkg-config
+Standards-Version: 4.5.0
+Rules-Requires-Root: no
+Homepage: https://github.com/exfatprogs/exfatprogs
+Vcs-Git: https://git.sven.stormbind.net/exfatprogs.git
+Vcs-Browser: https://git.sven.stormbind.net/?p=sven/exfatprogs.git
+
+Package: exfatprogs
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Conflicts: exfat-utils
+Description: tools to create, check and label exFAT filesystems
+ Tools to manage extended file allocation table filesystem.
+ This package provides tools to create, check and label the
+ filesystem. It contains
+  - mkfs.exfat to create an exFAT filesystem
+  - fsck.exfat to check and repair an exFAT filesystem
+  - tune.exfat to print and edit the filesystem label
+ The tools included in this package are the exfatprogs
+ maintained by Samsung engineers, who provided Linux exFAT
+ support. A similar but independent implementation of these
+ tools, written by the author of the exfat-fuse implementation,
+ are available in the exfat-utils package.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644 (file)
index 0000000..6c8d69b
--- /dev/null
@@ -0,0 +1,39 @@
+This work was packaged for Debian by:
+    Sven Hoexter <sven@stormbind.net> on Sat, 04 Jul 2020 19:06:23 +0200
+
+It was downloaded from:
+   https://github.com/exfatprogs/exfatprogs/releases
+
+Upstream Author:
+    Namjae Jeon <linkinjeon@kernel.org>
+    Hyunchul Lee <hyc.lee@gmail.com>
+
+Copyright:
+    Copyright (C) 2019 Namjae Jeon <linkinjeon@kernel.org>
+    Copyright (C) 2020 Hyunchul Lee <hyc.lee@gmail.com>
+    Copyright (C) 2020 The Android Open Source Project
+
+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 2 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, write to the Free Software Foundation, Inc.,
+   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+   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-2".
+
+
+The Debian packaging is:
+   Copyright (C) 2020 Sven Hoexter <sven@stormbind.net>
+
+and is licensed under the GPL version 2 or later,
+see "/usr/share/common-licenses/GPL-2".
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/rules b/debian/rules
new file mode 100755 (executable)
index 0000000..d3e0345
--- /dev/null
@@ -0,0 +1,11 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+
+%:
+       dh $@
+
+override_dh_installchangelogs:
+       dh_installchangelogs NEWS
diff --git a/debian/source/format b/debian/source/format
new file mode 100644 (file)
index 0000000..163aaf8
--- /dev/null
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/watch b/debian/watch
new file mode 100644 (file)
index 0000000..7bca73c
--- /dev/null
@@ -0,0 +1,2 @@
+version=3
+https://github.com/exfatprogs/exfatprogs/releases .*/exfatprogs-(\d\S*)\.tar\.xz
\ No newline at end of file