diff options
Diffstat (limited to 'app-admin/durep/files')
-rw-r--r-- | app-admin/durep/files/digest-durep-0.9-r2 | 1 | ||||
-rw-r--r-- | app-admin/durep/files/durep-0.9-gigabyte.patch | 17 |
2 files changed, 18 insertions, 0 deletions
diff --git a/app-admin/durep/files/digest-durep-0.9-r2 b/app-admin/durep/files/digest-durep-0.9-r2 new file mode 100644 index 000000000000..42331a33b325 --- /dev/null +++ b/app-admin/durep/files/digest-durep-0.9-r2 @@ -0,0 +1 @@ +MD5 fb6d09d48b02b150501f7e769087696f durep-0.9.tar.gz 13713 diff --git a/app-admin/durep/files/durep-0.9-gigabyte.patch b/app-admin/durep/files/durep-0.9-gigabyte.patch new file mode 100644 index 000000000000..315cb1c7c813 --- /dev/null +++ b/app-admin/durep/files/durep-0.9-gigabyte.patch @@ -0,0 +1,17 @@ +fix `durep -hs 1g` output + +Patch by Stephen Tallowitz + +http://bugs.gentoo.org/108942 + +--- durep ++++ durep +@@ -468,7 +468,7 @@ + elsif ($temp =~ m/^[mM]/) { + return $size * 1048576; + } +- elsif ($temp =~ m/^[mM]/) { ++ elsif ($temp =~ m/^[gG]/) { + return $size * 1048576 * 1024; + } + return $size; |