Merge branch 'bug-56727'
Merge in fixed --dotfiles support. We need it.
This commit is contained in:
commit
23928d5af8
2 changed files with 98 additions and 11 deletions
|
@ -284,6 +284,7 @@ sub plan_unstow {
|
||||||
$self->{stow_path},
|
$self->{stow_path},
|
||||||
$package,
|
$package,
|
||||||
'.',
|
'.',
|
||||||
|
$path,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
debug(2, "Planning unstow of package $package... done");
|
debug(2, "Planning unstow of package $package... done");
|
||||||
|
@ -316,6 +317,7 @@ sub plan_stow {
|
||||||
$package,
|
$package,
|
||||||
'.',
|
'.',
|
||||||
$path, # source from target
|
$path, # source from target
|
||||||
|
0,
|
||||||
);
|
);
|
||||||
debug(2, "Planning stow of package $package... done");
|
debug(2, "Planning stow of package $package... done");
|
||||||
$self->{action_count}++;
|
$self->{action_count}++;
|
||||||
|
@ -367,10 +369,12 @@ sub within_target_do {
|
||||||
#============================================================================
|
#============================================================================
|
||||||
sub stow_contents {
|
sub stow_contents {
|
||||||
my $self = shift;
|
my $self = shift;
|
||||||
my ($stow_path, $package, $target, $source) = @_;
|
my ($stow_path, $package, $target, $source, $level) = @_;
|
||||||
|
|
||||||
my $path = join_paths($stow_path, $package, $target);
|
|
||||||
|
|
||||||
|
# Remove leading $level times .. from $source
|
||||||
|
my $n = 0;
|
||||||
|
my $path = join '/', map { (++$n <= $level) ? ( ) : $_ } (split m{/+}, $source);
|
||||||
|
|
||||||
return if $self->should_skip_target_which_is_stow_dir($target);
|
return if $self->should_skip_target_which_is_stow_dir($target);
|
||||||
|
|
||||||
my $cwd = getcwd();
|
my $cwd = getcwd();
|
||||||
|
@ -407,6 +411,7 @@ sub stow_contents {
|
||||||
$package,
|
$package,
|
||||||
$node_target, # target
|
$node_target, # target
|
||||||
join_paths($source, $node), # source
|
join_paths($source, $node), # source
|
||||||
|
$level
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -429,7 +434,7 @@ sub stow_contents {
|
||||||
#============================================================================
|
#============================================================================
|
||||||
sub stow_node {
|
sub stow_node {
|
||||||
my $self = shift;
|
my $self = shift;
|
||||||
my ($stow_path, $package, $target, $source) = @_;
|
my ($stow_path, $package, $target, $source, $level) = @_;
|
||||||
|
|
||||||
my $path = join_paths($stow_path, $package, $target);
|
my $path = join_paths($stow_path, $package, $target);
|
||||||
|
|
||||||
|
@ -499,12 +504,14 @@ sub stow_node {
|
||||||
$existing_package,
|
$existing_package,
|
||||||
$target,
|
$target,
|
||||||
join_paths('..', $existing_source),
|
join_paths('..', $existing_source),
|
||||||
|
$level + 1,
|
||||||
);
|
);
|
||||||
$self->stow_contents(
|
$self->stow_contents(
|
||||||
$self->{stow_path},
|
$self->{stow_path},
|
||||||
$package,
|
$package,
|
||||||
$target,
|
$target,
|
||||||
join_paths('..', $source),
|
join_paths('..', $source),
|
||||||
|
$level + 1,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -531,6 +538,7 @@ sub stow_node {
|
||||||
$package,
|
$package,
|
||||||
$target,
|
$target,
|
||||||
join_paths('..', $source),
|
join_paths('..', $source),
|
||||||
|
$level + 1,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -554,6 +562,7 @@ sub stow_node {
|
||||||
$package,
|
$package,
|
||||||
$target,
|
$target,
|
||||||
join_paths('..', $source),
|
join_paths('..', $source),
|
||||||
|
$level + 1,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -740,9 +749,7 @@ sub unstow_node_orig {
|
||||||
#============================================================================
|
#============================================================================
|
||||||
sub unstow_contents {
|
sub unstow_contents {
|
||||||
my $self = shift;
|
my $self = shift;
|
||||||
my ($stow_path, $package, $target) = @_;
|
my ($stow_path, $package, $target, $path) = @_;
|
||||||
|
|
||||||
my $path = join_paths($stow_path, $package, $target);
|
|
||||||
|
|
||||||
return if $self->should_skip_target_which_is_stow_dir($target);
|
return if $self->should_skip_target_which_is_stow_dir($target);
|
||||||
|
|
||||||
|
@ -778,7 +785,7 @@ sub unstow_contents {
|
||||||
$node_target = $adj_node_target;
|
$node_target = $adj_node_target;
|
||||||
}
|
}
|
||||||
|
|
||||||
$self->unstow_node($stow_path, $package, $node_target);
|
$self->unstow_node($stow_path, $package, $node_target, join_paths($path, $node));
|
||||||
}
|
}
|
||||||
if (-d $target) {
|
if (-d $target) {
|
||||||
$self->cleanup_invalid_links($target);
|
$self->cleanup_invalid_links($target);
|
||||||
|
@ -798,7 +805,7 @@ sub unstow_contents {
|
||||||
#============================================================================
|
#============================================================================
|
||||||
sub unstow_node {
|
sub unstow_node {
|
||||||
my $self = shift;
|
my $self = shift;
|
||||||
my ($stow_path, $package, $target) = @_;
|
my ($stow_path, $package, $target, $source) = @_;
|
||||||
|
|
||||||
my $path = join_paths($stow_path, $package, $target);
|
my $path = join_paths($stow_path, $package, $target);
|
||||||
|
|
||||||
|
@ -872,7 +879,7 @@ sub unstow_node {
|
||||||
elsif (-e $target) {
|
elsif (-e $target) {
|
||||||
debug(4, " Evaluate existing node: $target");
|
debug(4, " Evaluate existing node: $target");
|
||||||
if (-d $target) {
|
if (-d $target) {
|
||||||
$self->unstow_contents($stow_path, $package, $target);
|
$self->unstow_contents($stow_path, $package, $target, $source);
|
||||||
|
|
||||||
# This action may have made the parent directory foldable
|
# This action may have made the parent directory foldable
|
||||||
if (my $parent = $self->foldable($target)) {
|
if (my $parent = $self->foldable($target)) {
|
||||||
|
|
82
t/dotfiles.t
82
t/dotfiles.t
|
@ -24,7 +24,7 @@ use warnings;
|
||||||
|
|
||||||
use testutil;
|
use testutil;
|
||||||
|
|
||||||
use Test::More tests => 6;
|
use Test::More tests => 10;
|
||||||
use English qw(-no_match_vars);
|
use English qw(-no_match_vars);
|
||||||
|
|
||||||
use testutil;
|
use testutil;
|
||||||
|
@ -86,6 +86,64 @@ is(
|
||||||
=> 'processed dotfile folder'
|
=> 'processed dotfile folder'
|
||||||
);
|
);
|
||||||
|
|
||||||
|
#
|
||||||
|
# process folder marked with 'dot' prefix
|
||||||
|
# when directory exists is target
|
||||||
|
#
|
||||||
|
|
||||||
|
$stow = new_Stow(dir => '../stow', dotfiles => 1);
|
||||||
|
|
||||||
|
make_path('../stow/dotfiles/dot-emacs.d');
|
||||||
|
make_file('../stow/dotfiles/dot-emacs.d/init.el');
|
||||||
|
make_path('.emacs.d');
|
||||||
|
|
||||||
|
$stow->plan_stow('dotfiles');
|
||||||
|
$stow->process_tasks();
|
||||||
|
is(
|
||||||
|
readlink('.emacs.d/init.el'),
|
||||||
|
'../../stow/dotfiles/dot-emacs.d/init.el',
|
||||||
|
=> 'processed dotfile folder when folder exists (1 level)'
|
||||||
|
);
|
||||||
|
|
||||||
|
#
|
||||||
|
# process folder marked with 'dot' prefix
|
||||||
|
# when directory exists is target (2 levels)
|
||||||
|
#
|
||||||
|
|
||||||
|
$stow = new_Stow(dir => '../stow', dotfiles => 1);
|
||||||
|
|
||||||
|
make_path('../stow/dotfiles/dot-emacs.d/dot-emacs.d');
|
||||||
|
make_file('../stow/dotfiles/dot-emacs.d/dot-emacs.d/init.el');
|
||||||
|
make_path('.emacs.d');
|
||||||
|
|
||||||
|
$stow->plan_stow('dotfiles');
|
||||||
|
$stow->process_tasks();
|
||||||
|
is(
|
||||||
|
readlink('.emacs.d/.emacs.d'),
|
||||||
|
'../../stow/dotfiles/dot-emacs.d/dot-emacs.d',
|
||||||
|
=> 'processed dotfile folder exists (2 levels)'
|
||||||
|
);
|
||||||
|
|
||||||
|
#
|
||||||
|
# process folder marked with 'dot' prefix
|
||||||
|
# when directory exists is target
|
||||||
|
#
|
||||||
|
|
||||||
|
$stow = new_Stow(dir => '../stow', dotfiles => 1);
|
||||||
|
|
||||||
|
make_path('../stow/dotfiles/dot-one/dot-two');
|
||||||
|
make_file('../stow/dotfiles/dot-one/dot-two/three');
|
||||||
|
make_path('.one/.two');
|
||||||
|
|
||||||
|
$stow->plan_stow('dotfiles');
|
||||||
|
$stow->process_tasks();
|
||||||
|
is(
|
||||||
|
readlink('./.one/.two/three'),
|
||||||
|
'../../../stow/dotfiles/dot-one/dot-two/three',
|
||||||
|
=> 'processed dotfile 2 folder exists (2 levels)'
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# corner case: paths that have a part in them that's just "$DOT_PREFIX" or
|
# corner case: paths that have a part in them that's just "$DOT_PREFIX" or
|
||||||
# "$DOT_PREFIX." should not have that part expanded.
|
# "$DOT_PREFIX." should not have that part expanded.
|
||||||
|
@ -129,3 +187,25 @@ ok(
|
||||||
-f '../stow/dotfiles/dot-bar' && ! -e '.bar'
|
-f '../stow/dotfiles/dot-bar' && ! -e '.bar'
|
||||||
=> 'unstow a simple dotfile'
|
=> 'unstow a simple dotfile'
|
||||||
);
|
);
|
||||||
|
|
||||||
|
#
|
||||||
|
# unstow process folder marked with 'dot' prefix
|
||||||
|
# when directory exists is target
|
||||||
|
#
|
||||||
|
|
||||||
|
$stow = new_Stow(dir => '../stow', dotfiles => 1);
|
||||||
|
|
||||||
|
make_path('../stow/dotfiles/dot-emacs.d');
|
||||||
|
make_file('../stow/dotfiles/dot-emacs.d/init.el');
|
||||||
|
make_path('.emacs.d');
|
||||||
|
make_link('.emacs.d/init.el', '../../stow/dotfiles/dot-emacs.d/init.el');
|
||||||
|
|
||||||
|
$stow->plan_unstow('dotfiles');
|
||||||
|
$stow->process_tasks();
|
||||||
|
ok(
|
||||||
|
$stow->get_conflict_count == 0 &&
|
||||||
|
-f '../stow/dotfiles/dot-emacs.d/init.el' &&
|
||||||
|
! -e '.emacs.d/init.el' &&
|
||||||
|
-d '.emacs.d/'
|
||||||
|
=> 'unstow dotfile folder when folder already exists'
|
||||||
|
);
|
||||||
|
|
Loading…
Reference in a new issue