summarylogtreecommitdiffstats
path: root/pull_134.patch
diff options
context:
space:
mode:
authorJavier Tiá2016-07-17 01:29:49 -0600
committerJavier Tiá2016-07-17 01:29:49 -0600
commit3804a4d02937d434102337e261f2e7ab333c288b (patch)
treedf57cfdb771cfba6b8e5127e6e153fc6f8ea9d77 /pull_134.patch
parentd8b72c18b301b1030bfba2336c6bffffbb1d7f22 (diff)
downloadaur-3804a4d02937d434102337e261f2e7ab333c288b.tar.gz
Bump up gdrivefs-0.14.8-1
Diffstat (limited to 'pull_134.patch')
-rw-r--r--pull_134.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/pull_134.patch b/pull_134.patch
deleted file mode 100644
index 60c672e9b4d1..000000000000
--- a/pull_134.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff -Naur GDriveFS-0.14.3/gdrivefs/gdfs/gdfuse.py GDriveFS-0.14.3-new/gdrivefs/gdfs/gdfuse.py
---- GDriveFS-0.14.3/gdrivefs/gdfs/gdfuse.py 2015-10-18 16:09:54.708226894 -0600
-+++ GDriveFS-0.14.3-new/gdrivefs/gdfs/gdfuse.py 2015-10-18 16:15:17.431235540 -0600
-@@ -7,6 +7,7 @@
- import atexit
- import resource
- import pprint
-+import math
-
- from errno import ENOENT, EIO, ENOTDIR, ENOTEMPTY, EPERM, EEXIST
- from fuse import FUSE, Operations, FuseOSError, c_statvfs, fuse_get_context, \
-@@ -161,6 +162,8 @@
- stat_result["st_mode"] = (stat.S_IFREG | effective_permission)
- stat_result["st_nlink"] = 1
-
-+ stat_result["st_blocks"] = int(math.ceil(float(stat_result["st_size"]) / 512.0))
-+
- return stat_result
-
- @dec_hint(['raw_path', 'fh'])