summaryrefslogtreecommitdiff
path: root/app-backup/pdumpfs/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-backup/pdumpfs/files
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-backup/pdumpfs/files')
-rw-r--r--app-backup/pdumpfs/files/pdumpfs-in.patch40
-rw-r--r--app-backup/pdumpfs/files/pdumpfs-test.patch12
2 files changed, 0 insertions, 52 deletions
diff --git a/app-backup/pdumpfs/files/pdumpfs-in.patch b/app-backup/pdumpfs/files/pdumpfs-in.patch
deleted file mode 100644
index cddfb995918a..000000000000
--- a/app-backup/pdumpfs/files/pdumpfs-in.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-patch by proxy maintainer, P. Healy, April 2015
-# Bug 509960
---- pdumpfs.in_orig 2004-12-21 02:43:12.000000000 +0000
-+++ pdumpfs.in 2015-04-01 10:58:22.671131947 +0100
-@@ -48,7 +48,7 @@
- #
-
- require 'find'
--require 'ftools'
-+require 'fileutils'
- require 'getoptlong'
- require 'date'
-
-@@ -868,7 +868,7 @@
- today = File.join(dest, datedir(start_time), base)
-
- File.umask(0077)
-- File.mkpath(today) unless @dry_run
-+ FileUtils.mkpath(today) unless @dry_run
- if latest
- update_snapshot(src, latest, today)
- else
-@@ -1018,7 +1018,7 @@
-
- case type
- when "directory"
-- File.mkpath(today)
-+ FileUtils.mkpath(today)
- when "unchanged"
- File.force_link(latest, today)
- when "updated"
-@@ -1089,7 +1089,7 @@
-
- case type
- when "directory"
-- File.mkpath(t)
-+ FileUtils.mkpath(t)
- when "new_file"
- copy(s, t)
- when "symlink"
diff --git a/app-backup/pdumpfs/files/pdumpfs-test.patch b/app-backup/pdumpfs/files/pdumpfs-test.patch
deleted file mode 100644
index e81e8b0f2d8a..000000000000
--- a/app-backup/pdumpfs/files/pdumpfs-test.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-patch by proxy maintainer, P. Healy, April 2015
-# Bug 509960
---- tests/pdumpfs-test_orig 2004-08-10 07:54:28.000000000 +0100
-+++ tests/pdumpfs-test 2015-04-01 11:24:35.948633870 +0100
-@@ -17,6 +17,7 @@
-
- ../pdumpfs src dest > tmp.log || exit 1
- diff -r src dest/$today/src || exit 1
-+mkdir -p dest/$yesterday && rmdir dest/$yesterday
- mv dest/$today dest/$yesterday
-
- echo update > src/foo