guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/07: gnu: e2fsprogs: Update to 1.43.6.


From: Marius Bakke
Subject: 04/07: gnu: e2fsprogs: Update to 1.43.6.
Date: Wed, 27 Sep 2017 15:13:55 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit 29591fc4c48eac9f8b5010e22339b3ac3c947a90
Author: Marius Bakke <address@hidden>
Date:   Mon Sep 25 15:51:12 2017 +0200

    gnu: e2fsprogs: Update to 1.43.6.
    
    * gnu/packages/linux.scm (e2fsprogs): Update to 1.43.6.
---
 gnu/local.mk                                       |  1 -
 gnu/packages/linux.scm                             |  5 +--
 .../patches/e2fsprogs-32bit-quota-warnings.patch   | 46 ----------------------
 3 files changed, 2 insertions(+), 50 deletions(-)

diff --git a/gnu/local.mk b/gnu/local.mk
index bf03472..e4c25bf 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -588,7 +588,6 @@ dist_patch_DATA =                                           
\
   %D%/packages/patches/doc++-segfault-fix.patch                        \
   %D%/packages/patches/doxygen-test.patch                      \
   %D%/packages/patches/dvd+rw-tools-add-include.patch          \
-  %D%/packages/patches/e2fsprogs-32bit-quota-warnings.patch    \
   %D%/packages/patches/elfutils-tests-ptrace.patch             \
   %D%/packages/patches/elixir-disable-failing-tests.patch      \
   %D%/packages/patches/einstein-build.patch                    \
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 24278b4..ae402ed 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -693,17 +693,16 @@ slabtop, and skill.")
 (define-public e2fsprogs
   (package
     (name "e2fsprogs")
-    (version "1.43.5")
+    (version "1.43.6")
     (source (origin
              (method url-fetch)
              (uri (string-append
                    "mirror://kernel.org/linux/kernel/people/tytso/"
                    name "/v" version "/"
                    name "-" version ".tar.xz"))
-             (patches (search-patches "e2fsprogs-32bit-quota-warnings.patch"))
              (sha256
               (base32
-               "05ssjpmy0fpv2ik6ibm1f47wr6794nf0q50r581vygrqvsd3s7r6"))))
+               "00ilv65dzcgiap435j89xk86shf7rrav3wsik7cahy789qijdcn9"))))
     (build-system gnu-build-system)
     (inputs `(("util-linux" ,util-linux)))
     (native-inputs `(("pkg-config" ,pkg-config)
diff --git a/gnu/packages/patches/e2fsprogs-32bit-quota-warnings.patch 
b/gnu/packages/patches/e2fsprogs-32bit-quota-warnings.patch
deleted file mode 100644
index e7a96a2..0000000
--- a/gnu/packages/patches/e2fsprogs-32bit-quota-warnings.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-Fix a test failure on 32-bit platforms.
-
-Patch copied from upstream source repository:
-
-https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git/commit/?id=9e31a5696c4b699bf000a07b86601c1fb91c0493
-
-diff --git a/lib/support/mkquota.c b/lib/support/mkquota.c
-index 00f3a40..931a839 100644
---- a/lib/support/mkquota.c
-+++ b/lib/support/mkquota.c
-@@ -50,11 +50,13 @@ static void print_dquot(const char *desc, struct dquot *dq)
- {
-       if (desc)
-               fprintf(stderr, "%s: ", desc);
--      fprintf(stderr, "%u %ld:%ld:%ld %ld:%ld:%ld\n",
--              dq->dq_id, dq->dq_dqb.dqb_curspace,
--              dq->dq_dqb.dqb_bsoftlimit, dq->dq_dqb.dqb_bhardlimit,
--              dq->dq_dqb.dqb_curinodes,
--              dq->dq_dqb.dqb_isoftlimit, dq->dq_dqb.dqb_ihardlimit);
-+      fprintf(stderr, "%u %lld:%lld:%lld %lld:%lld:%lld\n",
-+              dq->dq_id, (long long) dq->dq_dqb.dqb_curspace,
-+              (long long) dq->dq_dqb.dqb_bsoftlimit,
-+              (long long) dq->dq_dqb.dqb_bhardlimit,
-+              (long long) dq->dq_dqb.dqb_curinodes,
-+              (long long) dq->dq_dqb.dqb_isoftlimit,
-+              (long long) dq->dq_dqb.dqb_ihardlimit);
- }
- #else
- static void print_dquot(const char *desc EXT2FS_ATTR((unused)),
-@@ -524,11 +526,11 @@ static int scan_dquots_callback(struct dquot *dquot, 
void *cb_data)
-           dq->dq_dqb.dqb_curinodes != dquot->dq_dqb.dqb_curinodes) {
-               scan_data->usage_is_inconsistent = 1;
-               fprintf(stderr, "[QUOTA WARNING] Usage inconsistent for ID %u:"
--                      "actual (%ld, %ld) != expected (%ld, %ld)\n",
--                      dq->dq_id, dq->dq_dqb.dqb_curspace,
--                      dq->dq_dqb.dqb_curinodes,
--                      dquot->dq_dqb.dqb_curspace,
--                      dquot->dq_dqb.dqb_curinodes);
-+                      "actual (%lld, %lld) != expected (%lld, %lld)\n",
-+                      dq->dq_id, (long long) dq->dq_dqb.dqb_curspace,
-+                      (long long) dq->dq_dqb.dqb_curinodes,
-+                      (long long) dquot->dq_dqb.dqb_curspace,
-+                      (long long) dquot->dq_dqb.dqb_curinodes);
-       }
- 
-       if (scan_data->update_limits) {



reply via email to

[Prev in Thread] Current Thread [Next in Thread]