mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-08 14:15:07 +02:00
Replace epatch, dohtml Bump the minimum ruby version to >=ruby-2.7.4 Bug: https://bugs.gentoo.org/819687 Signed-off-by: Paul Healy <lmiphay@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/22764 Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
40 lines
981 B
Diff
40 lines
981 B
Diff
patch by proxy maintainer, P. Healy, April 2015
|
|
# Bug 509960
|
|
--- a/pdumpfs.in_orig 2004-12-21 02:43:12.000000000 +0000
|
|
+++ b/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"
|