From: Ralph Ronnquist Date: Sun, 2 Jul 2023 13:15:01 +0000 (+1000) Subject: Merge tag '1.0' into debian (reintroducing the sources on this branch) X-Git-Tag: debian/1.0-1 X-Git-Url: https://git.rrq.au/?a=commitdiff_plain;h=926faaaa64a47215df843936eeb2a2e6142d46a2;hp=5521fd27f847da8a2ad924d1efe29cb64c9c7fe0;p=rrq%2Ffusefile.git Merge tag '1.0' into debian (reintroducing the sources on this branch) --- diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..2005620 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,76 @@ +fusefile (1.0-1) unstable; urgency=medium + + * Version change for submission to debian + + -- Ralph Ronnquist Sun, 25 Jun 2023 17:39:21 +1000 + +fusefile (0.5.7) unstable; urgency=medium + + * Updated man page. + + -- Ralph Ronnquist Sun, 25 Jun 2023 13:37:38 +1000 + +fusefile (0.5.6) unstable; urgency=medium + + * Added -dump function for dumping fragments including overlay table. + + -- Ralph Ronnquist Wed, 21 Jun 2023 00:09:34 +1000 + +fusefile (0.5.5) unstable; urgency=medium + + * Updated man page. + + -- Ralph Ronnquist Thu, 25 May 2023 16:01:40 +1000 + +fusefile (0.5.4) unstable; urgency=medium + + * Include fusedisk helper script for block mount + + -- Ralph Ronnquist Wed, 24 May 2023 19:48:53 +1000 +fusefile (0.5.3) unstable; urgency=medium + + * Updated package description. + + -- Ralph Ronnquist Mon, 03 Oct 2022 13:01:26 +1100 + +fusefile (0.5.2) unstable; urgency=medium + + * Reworked overlay with new region representaiton. + + -- Ralph Ronnquist Fri, 12 Aug 2022 08:57:37 +1000 + +fusefile (0.5.1) unstable; urgency=medium + + * Fixes to overlay function. + + -- Ralph Ronnquist Thu, 11 Aug 2022 01:40:48 +1000 + +fusefile (0.5) unstable; urgency=medium + + * Added overlay file option. + + -- Ralph Ronnquist Tue, 09 Aug 2022 21:22:35 +1000 + +fusefile (0.4) unstable; urgency=medium + + * Revised into overwriting in sources without size change. + + -- Ralph Ronnquist Fri, 15 Jul 2022 12:17:30 +1000 + +fusefile (0.3) unstable; urgency=medium + + * Added writeability variation + + -- Ralph Ronnquist Thu, 26 May 2022 19:53:05 +1000 + +fusefile (0.2) unstable; urgency=medium + + * Code refresh for chimaera (bullseye). + + -- Ralph Ronnquist Tue, 05 Apr 2022 19:43:49 +1000 + +fusefile (0.1) unstable; urgency=medium + + * Initial Release. + + -- Ralph Ronnquist Mon, 11 Mar 2018 10:00:00 +1100 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..397a837 --- /dev/null +++ b/debian/control @@ -0,0 +1,22 @@ +Source: fusefile +Section: admin +Priority: optional +Maintainer: Ralph Ronnquist +Build-Depends: debhelper-compat (= 13), libfuse-dev +Standards-Version: 4.6.2 +Homepage: https://git.devuan.org/rrq/fusefile.git +Vcs-Browser: https://git.devuan.org/rrq/fusefile/src/branch/debian +Vcs-Git: https://git.devuan.org/rrq/fusefile.git -b debian +Rules-Requires-Root: no + +Package: fusefile +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, fuse +Description: Using FUSE to combine file fragments into a single file. + fusefile is a FUSE "file mount" that presents a series of fragments + of other files as a contiguous concatenation. Technically it bind + mounts a driver on top of the filename mountpoint to provide access + to the given file fragments as if in a single, contiguous file. The + fusefile mount driver offers read/write access to the fused file, + distributing written data across the given fragments or to an overlay + file. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..011d4e9 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,25 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: fusefile +Upstream-Contact: Ralph Ronnquist +Source: https://git.devuan.org/rrq/fusefile.git + +Files: * +Copyright: 2018 Ralph Ronnquist +License: GPL-3.0+ + +License: GPL-3.0+ + 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 package 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 . + . + On Debian systems, the complete text of the GNU General + Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". diff --git a/debian/fusefile.links b/debian/fusefile.links new file mode 100644 index 0000000..ed132f0 --- /dev/null +++ b/debian/fusefile.links @@ -0,0 +1 @@ +usr/share/man/man8/fusefile.8 usr/share/man/man8/fusedisk.8 diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..f5e3ac2 --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,5 @@ +[DEFAULT] +debian-branch=debian +upstream-branch=master +upstream-tag=%(version)s +compression-level=9 diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..2d33f6a --- /dev/null +++ b/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh $@ diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..cfb3210 --- /dev/null +++ b/debian/watch @@ -0,0 +1,4 @@ +version=4 +opts="mode=git, pgpmode=none" \ +https://git.devuan.org/rrq/fusefile \ +refs/tags/([\d\.]+) master uupdate