[Git][reproducible-builds/disorderfs][debian] 4 commits: Bump standards version to 4.5.0, no changes needed.
Holger Levsen
gitlab at salsa.debian.org
Tue Jan 21 12:24:30 UTC 2020
Holger Levsen pushed to branch debian at Reproducible Builds / disorderfs
Commits:
6f8f8da7 by Holger Levsen at 2020-01-21T12:43:33+01:00
Bump standards version to 4.5.0, no changes needed.
Signed-off-by: Holger Levsen <holger at layer-acht.org>
- - - - -
07c6e804 by Chris Lamb at 2020-01-21T13:14:43+01:00
Ignore the return values to fsyncdir to ensure (for example) dpkg(1) can "flush" /var/lib/dpkg.
- - - - -
9e8cdd46 by Holger Levsen at 2020-01-21T13:14:43+01:00
release 0.5.7
Signed-off-by: Holger Levsen <holger at layer-acht.org>
- - - - -
ab8f0595 by Holger Levsen at 2020-01-21T13:15:05+01:00
release as 0.5.7-1
Signed-off-by: Holger Levsen <holger at layer-acht.org>
- - - - -
3 changed files:
- debian/changelog
- debian/control
- disorderfs.cpp
Changes:
=====================================
debian/changelog
=====================================
@@ -1,10 +1,14 @@
-disorderfs (0.5.6-3) UNRELEASED; urgency=medium
+disorderfs (0.5.7-1) unstable; urgency=medium
- * Update standards version to 4.4.1, no changes needed.
+ [ Debian Janitor ]
* Bump debhelper from old 11 to 12.
* Re-export upstream signing key without extra signatures.
- -- Debian Janitor <janitor at jelmer.uk> Fri, 01 Nov 2019 11:50:40 +0000
+ [ Holger Levsen ]
+ * New upstream release.
+ * Bump standards version to 4.5.0, no changes needed.
+
+ -- Holger Levsen <holger at debian.org> Tue, 21 Jan 2020 13:14:46 +0100
disorderfs (0.5.6-2) unstable; urgency=medium
=====================================
debian/control
=====================================
@@ -6,7 +6,7 @@ Uploaders:
Holger Levsen <holger at debian.org>,
Section: utils
Priority: optional
-Standards-Version: 4.4.1
+Standards-Version: 4.5.0
Rules-Requires-Root: no
Build-Depends:
asciidoc,
=====================================
disorderfs.cpp
=====================================
@@ -43,7 +43,7 @@ extern "C" {
#include <sys/file.h>
#include <stddef.h>
-#define DISORDERFS_VERSION "0.5.6"
+#define DISORDERFS_VERSION "0.5.7"
namespace {
std::vector<std::string> bare_arguments;
@@ -477,7 +477,8 @@ int main (int argc, char** argv)
};
disorderfs_fuse_operations.fsyncdir = [] (const char* path, int is_datasync, struct fuse_file_info* info) -> int {
// XXX: is it OK to just use fsync? Not clear on why FUSE has a separate fsyncdir operation
- return wrap(is_datasync ? fdatasync(info->fh) : fsync(info->fh));
+ wrap(is_datasync ? fdatasync(info->fh) : fsync(info->fh));
+ return 0; // return value is ignored
};
disorderfs_fuse_operations.create = [] (const char* path, mode_t mode, struct fuse_file_info* info) -> int {
Guard g;
View it on GitLab: https://salsa.debian.org/reproducible-builds/disorderfs/compare/ec1803468ade9c217cfccd7711d660ce2433a03f...ab8f05950f8113c576660ad986fd80dbc6588eb0
--
View it on GitLab: https://salsa.debian.org/reproducible-builds/disorderfs/compare/ec1803468ade9c217cfccd7711d660ce2433a03f...ab8f05950f8113c576660ad986fd80dbc6588eb0
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.reproducible-builds.org/pipermail/rb-commits/attachments/20200121/08431a7b/attachment.htm>
More information about the rb-commits
mailing list