From 23daff4a9f14d7e79780822e8f74ff9a73d85e2a Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Mon, 23 Oct 2023 15:01:16 +1100 Subject: [PATCH] Rebuild stow based on v2.3.2-fixbug56727 --- local/bin/chkstow | 21 +- local/bin/stow | 323 +- local/{share => lib}/perl/Stow.pm | 241 +- local/{share => lib}/perl/Stow/Util.pm | 33 +- local/share/doc/stow/ChangeLog | 1765 ++++++++- local/share/doc/stow/INSTALL.md | 202 + local/share/doc/stow/README | 53 - local/share/doc/stow/README.md | 101 + local/share/doc/stow/manual-single.html | 3374 ++++++++--------- .../doc/stow/manual-split/Bootstrapping.html | 155 +- .../Compile_002dtime-vs-Install_002dtime.html | 240 +- .../doc/stow/manual-split/Conflicts.html | 151 +- .../stow/manual-split/Cygnus-Software.html | 152 +- .../stow/manual-split/Deferred-Operation.html | 56 +- .../stow/manual-split/Deleting-Packages.html | 170 +- .../doc/stow/manual-split/GNU-Emacs.html | 163 +- .../GNU-General-Public-License.html | 1071 ++++-- .../doc/stow/manual-split/Ignore-Lists.html | 129 +- .../manual-split/Installing-Packages.html | 271 +- .../doc/stow/manual-split/Introduction.html | 237 +- .../doc/stow/manual-split/Invoking-Stow.html | 396 +- ...n-For-Yet-Another-Set-Of-Ignore-Files.html | 138 +- .../doc/stow/manual-split/Known-Bugs.html | 123 +- .../stow/manual-split/Mixing-Operations.html | 146 +- .../Motivation-For-Ignore-Lists.html | 140 +- .../Multiple-Stow-Directories.html | 136 +- .../stow/manual-split/Other-FSF-Software.html | 140 +- .../manual-split/Perl-and-Perl-5-Modules.html | 248 +- .../doc/stow/manual-split/Reporting-Bugs.html | 155 +- .../doc/stow/manual-split/Resource-Files.html | 206 +- .../stow/manual-split/Target-Maintenance.html | 170 +- .../doc/stow/manual-split/Terminology.html | 200 +- .../doc/stow/manual-split/Tree-unfolding.html | 56 +- .../Types-And-Syntax-Of-Ignore-Lists.html | 265 +- local/share/doc/stow/manual-split/index.html | 337 +- .../doc/stow/manual-split/tree-folding.html | 56 +- .../doc/stow/manual-split/tree-refolding.html | 56 +- local/share/doc/stow/manual.pdf | Bin 257587 -> 275951 bytes local/share/doc/stow/version.texi | 8 +- local/share/info/dir | 4 +- local/share/info/stow.info | 1821 +++++---- local/share/man/man8/stow.8 | 322 +- 42 files changed, 8741 insertions(+), 5290 deletions(-) rename local/{share => lib}/perl/Stow.pm (92%) rename local/{share => lib}/perl/Stow/Util.pm (81%) create mode 100644 local/share/doc/stow/INSTALL.md delete mode 100644 local/share/doc/stow/README create mode 100644 local/share/doc/stow/README.md diff --git a/local/bin/chkstow b/local/bin/chkstow index b3a55b0..2d1df26 100755 --- a/local/bin/chkstow +++ b/local/bin/chkstow @@ -1,4 +1,19 @@ -#!/usr/bin/perl +#!/usr/local/bin/perl +# +# This file is part of GNU Stow. +# +# GNU Stow is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# GNU Stow is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see https://www.gnu.org/licenses/. use strict; use warnings; @@ -8,7 +23,7 @@ require 5.006_001; use File::Find; use Getopt::Long; -my $DEFAULT_TARGET = '/usr/local/'; +my $DEFAULT_TARGET = $ENV{STOW_DIR} || '/usr/local/'; our $Wanted = \&bad_links; our %Package = (); @@ -93,7 +108,7 @@ sub aliens { !-l && !-d && print "Unstowed file: $File::Find::name\n"; } -# just list the packages in the the target directory +# just list the packages in the target directory # FIXME: what if the stow dir is not called 'stow'? sub list { if (-l) { diff --git a/local/bin/stow b/local/bin/stow index 7acad8b..a7e9c7a 100755 --- a/local/bin/stow +++ b/local/bin/stow @@ -1,27 +1,29 @@ -#!/usr/bin/perl +#!/usr/local/bin/perl -# GNU Stow - manage the installation of multiple software packages +# GNU Stow - manage farms of symbolic links # Copyright (C) 1993, 1994, 1995, 1996 by Bob Glickstein # Copyright (C) 2000, 2001 Guillaume Morin # Copyright (C) 2007 Kahlil Hodgson # Copyright (C) 2011 Adam Spiers # -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or +# This file is part of GNU Stow. +# +# GNU Stow is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # -# This program is distributed in the hope that it will be useful, but +# GNU Stow is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, see . +# along with this program. If not, see https://www.gnu.org/licenses/. =head1 NAME -stow - software package installation manager +stow - manage farms of symbolic links =head1 SYNOPSIS @@ -29,33 +31,34 @@ stow [ options ] package ... =head1 DESCRIPTION -This manual page describes GNU Stow 2.2.2, a program for managing -the installation of software packages. This is not the definitive -documentation for stow; for that, see the info manual. +This manual page describes GNU Stow 2.3.2-fixbug56727. This is not the +definitive documentation for Stow; for that, see the accompanying info +manual, e.g. by typing C. -Stow is a tool for managing the installation of multiple software -packages in the same run-time directory tree. One historical -difficulty of this task has been the need to administer, upgrade, -install, and remove files in independent packages without confusing -them with other files sharing the same filesystem space. For instance, -it is common to install Perl and Emacs in F. When one -does so, one winds up (as of Perl 4.036 and Emacs 19.22) with the -following files in F: F; F; -F; F; F; F; and F. Now -suppose it's time to uninstall Perl. Which man pages get removed? -Obviously F is one of them, but it should not be the -administrator's responsibility to memorize the ownership of individual -files by separate packages. +Stow is a symlink farm manager which takes distinct sets of software +and/or data located in separate directories on the filesystem, and +makes them all appear to be installed in a single directory tree. -The approach used by Stow is to install each package into its own -tree, then use symbolic links to make it appear as though the files -are installed in the common tree. Administration can be performed in -the package's private tree in isolation from clutter from other -packages. Stow can then be used to update the symbolic links. The -structure of each private tree should reflect the desired structure in -the common tree; i.e. (in the typical case) there should be a F -directory containing executables, a F directory containing -section 1 man pages, and so on. +Originally Stow was born to address the need to administer, upgrade, +install, and remove files in independent software packages without +confusing them with other files sharing the same file system space. +For instance, many years ago it used to be common to compile programs +such as Perl and Emacs from source. By using Stow, F +could contain symlinks to files within F, +F etc., and likewise recursively for any +other subdirectories such as F<.../share>, F<.../man>, and so on. + +While this is useful for keeping track of system-wide and per-user +installations of software built from source, in more recent times +software packages are often managed by more sophisticated package +management software such as rpm, dpkg, and Nix / GNU Guix, or +language-native package managers such as Ruby's gem, Python's pip, +Javascript's npm, and so on. + +However Stow is still used not only for software package management, +but also for other purposes, such as facilitating a more controlled +approach to management of configuration files in the user's home +directory, especially when coupled with version control systems. Stow was inspired by Carnegie Mellon's Depot program, but is substantially simpler and safer. Whereas Depot required database files @@ -66,6 +69,9 @@ will never delete any files, directories, or links that appear in a Stow directory (e.g., F), so it's always possible to rebuild the target tree (e.g., F). +Stow is implemented as a combination of a Perl script providing a CLI +interface, and a backend Perl module which does most of the work. + =head1 TERMINOLOGY A "package" is a related collection of files and directories that @@ -129,6 +135,8 @@ C<-D>). =item --no +=item --simulate + Do not perform any operations that modify the filesystem; merely show what would happen. @@ -152,7 +160,7 @@ directory. =item --verbose[=N] Send verbose output to standard error describing what Stow is -doing. Verbosity levels are 0, 1, 2, 3, and 4; 0 is the default. +doing. Verbosity levels are from 0 to 5; 0 is the default. Using C<-v> or C<--verbose> increases the verbosity by one; using `--verbose=N' sets it to N. @@ -214,6 +222,22 @@ stowed to another package. Force stowing files beginning with this Perl regex if the file is already stowed to another package. +=item --dotfiles + +Enable special handling for "dotfiles" (files or folders whose name +begins with a period) in the package directory. If this option is +enabled, Stow will add a preprocessing step for each file or folder +whose name begins with "dot-", and replace the "dot-" prefix in the +name by a period (.). This is useful when Stow is used to manage +collections of dotfiles, to avoid having a package directory full of +hidden files. + +For example, suppose we have a package containing two files, +F and F. With this option, +Stow will create symlinks from F<.bashrc> to F and +from F<.emacs.d/init.el> to F. Any other +files, whose name does not begin with "dot-", will be processed as usual. + =item -V =item --version @@ -323,6 +347,28 @@ Stow will re-fold the tree by removing the symlinks to the surviving package, removing the directory, then linking the directory back to the surviving package. +=head1 RESOURCE FILES + +F searches for default command line options at F<.stowrc> (current +directory) and F<~/.stowrc> (home directory) in that order. If both +locations are present, the files are effectively appended together. + +The effect of options in the resource file is similar to simply prepending +the options to the command line. For options that provide a single value, +such as F<--target> or F<--dir>, the command line option will overwrite any +options in the resource file. For options that can be given more than once, +F<--ignore> for example, command line options and resource options are +appended together. + +Environment variables and the tilde character (F<~>) will be expanded for +options that take a file path. + +The options F<-D>, F<-R>, F<-S>, and any packages listed in the resource +file are ignored. + +See the info manual for more information on how stow handles resource +file. + =head1 SEE ALSO The full documentation for F is maintained as a Texinfo manual. @@ -412,11 +458,10 @@ use warnings; require 5.006_001; use POSIX qw(getcwd); -use Getopt::Long; +use Getopt::Long qw(GetOptionsFromArray); +use Scalar::Util qw(reftype); -use Cwd qw(abs_path); -use File::Basename qw(dirname); -use lib dirname(dirname(abs_path($0))) . '/share/perl'; +use FindBin; use lib "$FindBin::Bin/../lib/perl"; use Stow; use Stow::Util qw(parent error); @@ -463,27 +508,75 @@ sub main { #===== SUBROUTINE =========================================================== # Name : process_options() -# Purpose : parse command line options +# Purpose : Parse and process command line and .stowrc file options # Parameters: none # Returns : (\%options, \@pkgs_to_unstow, \@pkgs_to_stow) -# Throws : a fatal error if a bad command line option is given +# Throws : a fatal error if a bad option is given # Comments : checks @ARGV for valid package names #============================================================================ sub process_options { + # Get cli options. + my ($cli_options, + $pkgs_to_unstow, + $pkgs_to_stow) = parse_options(@ARGV); + + # Get the .stowrc options. + # Note that rc_pkgs_to_unstow and rc_pkgs_to_stow are ignored. + my ($rc_options, + $rc_pkgs_to_unstow, + $rc_pkgs_to_stow) = get_config_file_options(); + + # Merge .stowrc and command line options. + # Preference is given to cli options. + my %options = %$rc_options; + foreach my $option (keys %$cli_options) { + my $rc_value = $rc_options->{$option}; + my $cli_value = $cli_options->{$option}; + my $type = reftype($cli_value); + + if (defined $type && $type eq 'ARRAY' && defined $rc_value) { + # rc options come first in merged arrays. + $options{$option} = [@{$rc_value}, @{$cli_value}]; + } else { + # cli options overwrite conflicting rc options. + $options{$option} = $cli_value; + } + } + + # Run checks on the merged options. + sanitize_path_options(\%options); + check_packages($pkgs_to_unstow, $pkgs_to_stow); + + # Return merged and processed options. + return (\%options, $pkgs_to_unstow, $pkgs_to_stow); +} + +#===== SUBROUTINE =========================================================== +# Name : parse_options() +# Purpose : parse command line options +# Parameters: @arg_array => array of options to parse +# Example: parse_options(@ARGV) +# Returns : (\%options, \@pkgs_to_unstow, \@pkgs_to_stow) +# Throws : a fatal error if a bad command line option is given +# Comments : Used for parsing both command line options and rc file. Used +# for parsing only. Sanity checks and post-processing belong in +# process_options(). +#============================================================================ +sub parse_options { my %options = (); my @pkgs_to_unstow = (); my @pkgs_to_stow = (); my $action = 'stow'; - unshift @ARGV, get_config_file_options(); - #$,="\n"; print @ARGV,"\n"; # for debugging rc file + #$,="\n"; print @_,"\n"; # for debugging rc file Getopt::Long::config('no_ignore_case', 'bundling', 'permute'); - GetOptions( + GetOptionsFromArray( + \@_, \%options, 'verbose|v:+', 'help|h', 'simulate|n|no', 'version|V', 'compat|p', 'dir|d=s', 'target|t=s', - 'adopt', 'no-folding', + 'adopt', 'no-folding', 'dotfiles', # clean and pre-compile any regex's at parse time 'ignore=s' => @@ -525,31 +618,27 @@ sub process_options { push @pkgs_to_stow, $_[0]; } }, - ) or usage(); + ) or usage(''); usage() if $options{help}; version() if $options{version}; - sanitize_path_options(\%options); - check_packages(\@pkgs_to_unstow, \@pkgs_to_stow); - return (\%options, \@pkgs_to_unstow, \@pkgs_to_stow); } sub sanitize_path_options { my ($options) = @_; - if (exists $options->{dir}) { - $options->{dir} =~ s/\A +//; - $options->{dir} =~ s/ +\z//; - } - else { - $options->{dir} = exists $ENV{STOW_DIR} ? $ENV{STOW_DIR} : getcwd(); + unless (exists $options->{dir}) { + $options->{dir} = length $ENV{STOW_DIR} ? $ENV{STOW_DIR} : getcwd(); } + usage("--dir value '$options->{dir}' is not a valid directory") + unless -d $options->{dir}; + if (exists $options->{target}) { - $options->{target} =~ s/\A +//; - $options->{target} =~ s/ +\z//; + usage("--target value '$options->{target}' is not a valid directory") + unless -d $options->{target}; } else { $options->{target} = parent($options->{dir}) || '.'; @@ -572,22 +661,25 @@ sub check_packages { } } - #===== SUBROUTINE ============================================================ # Name : get_config_file_options() # Purpose : search for default settings in any .stowrc files # Parameters: none -# Returns : a list of default options -# Throws : no exceptions -# Comments : prepends the contents of '~/.stowrc' and '.stowrc' to the command -# : line so they get parsed just like normal arguments. (This was -# : hacked in so that Emil and I could set different preferences). +# Returns : (\%rc_options, \@rc_pkgs_to_unstow, \@rc_pkgs_to_stow) +# Throws : a fatal error if a bad option is given +# Comments : Parses the contents of '~/.stowrc' and '.stowrc' with the same +# parser as the command line options. Additionally expands any +# environment variables or ~ character in --target or --dir +# options. #============================================================================= sub get_config_file_options { my @defaults = (); - for my $file ("$ENV{HOME}/.stowrc", '.stowrc') { + my @dirlist = ('.stowrc'); + if (defined($ENV{HOME})) { + unshift(@dirlist, "$ENV{HOME}/.stowrc"); + } + for my $file (@dirlist) { if (-r $file) { - warn "Loading defaults from $file\n"; open my $FILE, '<', $file or die "Could not open $file for reading\n"; while (my $line = <$FILE>){ @@ -597,9 +689,102 @@ sub get_config_file_options { close $FILE or die "Could not close open file: $file\n"; } } - return @defaults; + + # Parse the options + my ($rc_options, $rc_pkgs_to_unstow, $rc_pkgs_to_stow) = parse_options(@defaults); + + # Expand environment variables and glob characters. + if (exists $rc_options->{target}) { + $rc_options->{target} = + expand_filepath($rc_options->{target}, '--target option'); + } + if (exists $rc_options->{dir}) { + $rc_options->{dir} = + expand_filepath($rc_options->{dir}, '--dir option'); + } + + return ($rc_options, $rc_pkgs_to_unstow, $rc_pkgs_to_stow); } +#===== SUBROUTINE ============================================================ +# Name : expand_filepath() +# Purpose : Handles expansions that need to be applied to +# : file paths. Currently expands environment +# : variables and the tilde. +# Parameters: $path => string to perform expansion on. +# : $source => where the string came from +# Returns : String with replacements performed. +# Throws : n/a +# Comments : n/a +#============================================================================= +sub expand_filepath { + my ($path, $source) = @_; + + $path = expand_environment($path, $source); + $path = expand_tilde($path); + + return $path; +} + +#===== SUBROUTINE ============================================================ +# Name : expand_environment() +# Purpose : Expands evironment variables. +# Parameters: $path => string to perform expansion on. +# : $source => where the string came from +# Returns : String with replacements performed. +# Throws : n/a +# Comments : Variable replacement mostly based on SO answer +# : http://stackoverflow.com/a/24675093/558820 +#============================================================================= +sub expand_environment { + my ($path, $source) = @_; + # Replace non-escaped $VAR and ${VAR} with $ENV{VAR} + # If $ENV{VAR} does not exist, perl will raise a warning + # and then happily treat it as an empty string. + $path =~ s/(? string to perform expansion on. +# Returns : String with replacements performed. +# Throws : n/a +# Comments : http://docstore.mik.ua/orelly/perl4/cook/ch07_04.htm +#============================================================================= +sub expand_tilde { + my ($path) = @_; + # Replace tilde with home path. + $path =~ s{ ^ ~ ( [^/]* ) } + { $1 + ? (getpwnam($1))[7] + : ( $ENV{HOME} || $ENV{LOGDIR} + || (getpwuid($<))[7] + ) + }ex; + # Replace espaced tilde with regular tilde. + $path =~ s/\\~/~/g; + return $path +} + + #===== SUBROUTINE =========================================================== # Name : usage() # Purpose : print program usage message and exit @@ -612,7 +797,7 @@ sub usage { my ($msg) = @_; if ($msg) { - print "$ProgramName: $msg\n\n"; + warn "$ProgramName: $msg\n\n"; } print <<"EOT"; @@ -638,10 +823,12 @@ OPTIONS: if the file is already stowed to another package --adopt (Use with care!) Import existing files into stow package from target. Please read docs before using. + --dotfiles Enables special handling for dotfiles that are + Stow packages that start with "dot-" and not "." -p, --compat Use legacy algorithm for unstowing -n, --no, --simulate Do not actually make any filesystem changes - -v, --verbose[=N] Increase verbosity (levels are 0,1,2,3; + -v, --verbose[=N] Increase verbosity (levels are from 0 to 5; -v or --verbose adds 1; --verbose=N sets level) -V, --version Show stow version number -h, --help Show this help diff --git a/local/share/perl/Stow.pm b/local/lib/perl/Stow.pm similarity index 92% rename from local/share/perl/Stow.pm rename to local/lib/perl/Stow.pm index b7ee6ad..96bfd1a 100644 --- a/local/share/perl/Stow.pm +++ b/local/lib/perl/Stow.pm @@ -1,10 +1,25 @@ #!/usr/bin/perl +# +# This file is part of GNU Stow. +# +# GNU Stow is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# GNU Stow is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see https://www.gnu.org/licenses/. package Stow; =head1 NAME -Stow - manage the installation of multiple software packages +Stow - manage farms of symbolic links =head1 SYNOPSIS @@ -41,15 +56,13 @@ use File::Spec; use POSIX qw(getcwd); use Stow::Util qw(set_debug_level debug error set_test_mode - join_paths restore_cwd canon_path parent); + join_paths restore_cwd canon_path parent adjust_dotfile); our $ProgramName = 'stow'; -our $VERSION = '2.2.2'; +our $VERSION = '2.3.2-fixbug56727'; our $LOCAL_IGNORE_FILE = '.stow-local-ignore'; our $GLOBAL_IGNORE_FILE = '.stow-global-ignore'; -our $NO_FOLDING_FILE = '.stow-no-folding'; -our $RENAME_FILE = '.stow-rename'; our @default_global_ignore_regexps = __PACKAGE__->get_default_global_ignore_regexps(); @@ -62,6 +75,7 @@ our %DEFAULT_OPTIONS = ( paranoid => 0, compat => 0, test_mode => 0, + dotfiles => 0, adopt => 0, 'no-folding' => 0, ignore => [], @@ -207,9 +221,6 @@ sub init_state { # Store command line packages to unstow (-D and -R) $self->{pkgs_to_delete} = []; - # Store .stow-rename info indexed by package name. - $self->{pkg_renames} = {}; - # The following structures are used by the abstractions that allow us to # defer operating on the filesystem until after all potential conflicts have # been assessed. @@ -273,6 +284,7 @@ sub plan_unstow { $self->{stow_path}, $package, '.', + $path, ); } debug(2, "Planning unstow of package $package... done"); @@ -305,6 +317,7 @@ sub plan_stow { $package, '.', $path, # source from target + 0, ); debug(2, "Planning stow of package $package... done"); $self->{action_count}++; @@ -343,7 +356,9 @@ sub within_target_do { # Parameters: $stow_path => relative path from current (i.e. target) directory # : to the stow dir containing the package to be stowed # : $package => the package whose contents are being stowed -# : $target => subpath relative to package and target directories +# : $target => subpath relative to package directory which needs +# : stowing as a symlink at subpath relative to target +# : directory. # : $source => relative path from the (sub)dir of target # : to symlink source # Returns : n/a @@ -354,14 +369,12 @@ sub within_target_do { #============================================================================ sub stow_contents { my $self = shift; - my ($stow_path, $package, $target, $source) = @_; - - $target = $source; - $target =~ s/^(\.\.\/)*\Q$stow_path\E\/\Q$package\E\/?//; - $target = '.' unless $target; - - my $path = join_paths($stow_path, $package, $target); + my ($stow_path, $package, $target, $source, $level) = @_; + # 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); my $cwd = getcwd(); @@ -370,11 +383,10 @@ sub stow_contents { debug(3, $msg); debug(4, " => $source"); - my $dest = $self->renamed($package, $target); error("stow_contents() called with non-directory path: $path") unless -d $path; - error("stow_contents() called with non-directory target: $dest") - unless $self->is_a_node($dest); + error("stow_contents() called with non-directory target: $target") + unless $self->is_a_node($target); opendir my $DIR, $path or error("cannot read directory: $path ($!)"); @@ -387,11 +399,19 @@ sub stow_contents { next NODE if $node eq '..'; my $node_target = join_paths($target, $node); next NODE if $self->ignore($stow_path, $package, $node_target); + + if ($self->{dotfiles}) { + my $adj_node_target = adjust_dotfile($node_target); + debug(4, " Adjusting: $node_target => $adj_node_target"); + $node_target = $adj_node_target; + } + $self->stow_node( $stow_path, $package, $node_target, # target join_paths($source, $node), # source + $level ); } } @@ -402,7 +422,9 @@ sub stow_contents { # Parameters: $stow_path => relative path from current (i.e. target) directory # : to the stow dir containing the node to be stowed # : $package => the package containing the node being stowed -# : $target => subpath relative to package and target directories +# : $target => subpath relative to package directory of node which +# : needs stowing as a symlink at subpath relative to +# : target directory. # : $source => relative path to symlink source from the dir of target # Returns : n/a # Throws : fatal exception if a conflict arises @@ -412,7 +434,7 @@ sub stow_contents { #============================================================================ sub stow_node { my $self = shift; - my ($stow_path, $package, $target, $source) = @_; + my ($stow_path, $package, $target, $source, $level) = @_; my $path = join_paths($stow_path, $package, $target); @@ -434,14 +456,13 @@ sub stow_node { } # Does the target already exist? - my $dest = $self->renamed($package, $target); - if ($self->is_a_link($dest)) { + if ($self->is_a_link($target)) { # Where is the link pointing? - my $existing_source = $self->read_a_link($dest); + my $existing_source = $self->read_a_link($target); if (not $existing_source) { - error("Could not read link: $dest"); + error("Could not read link: $target"); } - debug(4, " Evaluate existing link: $dest => $existing_source"); + debug(4, " Evaluate existing link: $target => $existing_source"); # Does it point to a node under any stow directory? my ($existing_path, $existing_stow_path, $existing_package) = @@ -450,7 +471,7 @@ sub stow_node { $self->conflict( 'stow', $package, - "existing target is not owned by stow: $dest" + "existing target is not owned by stow: $target" ); return; # XXX # } @@ -468,27 +489,29 @@ sub stow_node { $self->do_unlink($target); $self->do_link($source, $target); } - elsif ($self->is_a_dir(join_paths(parent($dest), $existing_source)) && - $self->is_a_dir(join_paths(parent($dest), $source)) ) { + elsif ($self->is_a_dir(join_paths(parent($target), $existing_source)) && + $self->is_a_dir(join_paths(parent($target), $source)) ) { # If the existing link points to a directory, # and the proposed new link points to a directory, # then we can unfold (split open) the tree at that point - debug(2, "--- Unfolding $dest which was already owned by $existing_package"); - $self->do_unlink($dest); - $self->do_mkdir($dest); + debug(2, "--- Unfolding $target which was already owned by $existing_package"); + $self->do_unlink($target); + $self->do_mkdir($target); $self->stow_contents( $existing_stow_path, $existing_package, $target, join_paths('..', $existing_source), + $level + 1, ); $self->stow_contents( $self->{stow_path}, $package, $target, join_paths('..', $source), + $level + 1, ); } else { @@ -496,52 +519,54 @@ sub stow_node { 'stow', $package, "existing target is stowed to a different package: " - . "$dest => $existing_source" + . "$target => $existing_source" ); } } else { # The existing link is invalid, so replace it with a good link - debug(2, "--- replacing invalid link: $dest"); - $self->do_unlink($dest); - $self->do_link($source, $dest); + debug(2, "--- replacing invalid link: $path"); + $self->do_unlink($target); + $self->do_link($source, $target); } } - elsif ($self->is_a_node($dest)) { - debug(4, " Evaluate existing node: $dest"); - if ($self->is_a_dir($dest)) { + elsif ($self->is_a_node($target)) { + debug(4, " Evaluate existing node: $target"); + if ($self->is_a_dir($target)) { $self->stow_contents( $self->{stow_path}, $package, $target, join_paths('..', $source), + $level + 1, ); } else { if ($self->{adopt}) { - $self->do_mv($dest, $path); - $self->do_link($source, $dest); + $self->do_mv($target, $path); + $self->do_link($source, $target); } else { $self->conflict( 'stow', $package, - "existing target is neither a link nor a directory: $dest" + "existing target is neither a link nor a directory: $target" ); } } } elsif ($self->{'no-folding'} && -d $path && ! -l $path) { - $self->do_mkdir($dest); + $self->do_mkdir($target); $self->stow_contents( $self->{stow_path}, $package, $target, join_paths('..', $source), + $level + 1, ); } else { - $self->do_link($source, $dest); + $self->do_link($source, $target); } return; } @@ -570,7 +595,7 @@ sub should_skip_target_which_is_stow_dir { return 1; } - debug (4, "$target not protected"); + debug(4, "$target not protected"); return 0; } @@ -724,10 +749,7 @@ sub unstow_node_orig { #============================================================================ sub unstow_contents { my $self = shift; - my ($stow_path, $package, $target) = @_; - - my $path = join_paths($stow_path, $package, $target); - my $dest = $self->renamed($package, $target); + my ($stow_path, $package, $target, $path) = @_; return if $self->should_skip_target_which_is_stow_dir($target); @@ -742,8 +764,8 @@ sub unstow_contents { # When called at the top level, $target should exist. And # unstow_node() should only call this via mutual recursion if # $target exists. - error("unstow_contents() called with invalid target: $dest") - unless $self->is_a_node($dest); + error("unstow_contents() called with invalid target: $target") + unless $self->is_a_node($target); opendir my $DIR, $path or error("cannot read directory: $path ($!)"); @@ -756,7 +778,14 @@ sub unstow_contents { next NODE if $node eq '..'; my $node_target = join_paths($target, $node); next NODE if $self->ignore($stow_path, $package, $node_target); - $self->unstow_node($stow_path, $package, $node_target); + + if ($self->{dotfiles}) { + my $adj_node_target = adjust_dotfile($node_target); + debug(4, " Adjusting: $node_target => $adj_node_target"); + $node_target = $adj_node_target; + } + + $self->unstow_node($stow_path, $package, $node_target, join_paths($path, $node)); } if (-d $target) { $self->cleanup_invalid_links($target); @@ -776,26 +805,25 @@ sub unstow_contents { #============================================================================ sub unstow_node { my $self = shift; - my ($stow_path, $package, $target) = @_; + my ($stow_path, $package, $target, $source) = @_; my $path = join_paths($stow_path, $package, $target); - my $dest = $self->renamed($package, $target); debug(3, "Unstowing $path"); - debug(4, " target is $dest"); + debug(4, " target is $target"); # Does the target exist? - if ($self->is_a_link($dest)) { - debug(4, " Evaluate existing link: $dest"); + if ($self->is_a_link($target)) { + debug(4, " Evaluate existing link: $target"); # Where is the link pointing? - my $existing_source = $self->read_a_link($dest); + my $existing_source = $self->read_a_link($target); if (not $existing_source) { - error("Could not read link: $dest"); + error("Could not read link: $target"); } if ($existing_source =~ m{\A/}) { - warn "Ignoring an absolute symlink: $dest => $existing_source\n"; + warn "Ignoring an absolute symlink: $target => $existing_source\n"; return; # XXX # } @@ -806,7 +834,7 @@ sub unstow_node { $self->conflict( 'unstow', $package, - "existing target is not owned by stow: $dest => $existing_source" + "existing target is not owned by stow: $target => $existing_source" ); return; # XXX # } @@ -814,8 +842,14 @@ sub unstow_node { # Does the existing $target actually point to anything? if (-e $existing_path) { # Does link points to the right place? + + # Adjust for dotfile if necessary. + if ($self->{dotfiles}) { + $existing_path = adjust_dotfile($existing_path); + } + if ($existing_path eq $path) { - $self->do_unlink($dest); + $self->do_unlink($target); } # XXX we quietly ignore links that are stowed to a different @@ -838,30 +872,30 @@ sub unstow_node { #} } else { - debug(2, "--- removing invalid link into a stow directory: $dest"); - $self->do_unlink($dest); + debug(2, "--- removing invalid link into a stow directory: $path"); + $self->do_unlink($target); } } - elsif (-e $dest) { - debug(4, " Evaluate existing node: $dest"); - if (-d $dest) { - $self->unstow_contents($stow_path, $package, $target); + elsif (-e $target) { + debug(4, " Evaluate existing node: $target"); + if (-d $target) { + $self->unstow_contents($stow_path, $package, $target, $source); # This action may have made the parent directory foldable - if (my $parent = $self->foldable($dest)) { - $self->fold_tree($dest, $parent); + if (my $parent = $self->foldable($target)) { + $self->fold_tree($target, $parent); } } else { $self->conflict( 'unstow', $package, - "existing target is neither a link nor a directory: $dest", + "existing target is neither a link nor a directory: $target", ); } } else { - debug(2, "$dest did not exist to be unstowed"); + debug(2, "$target did not exist to be unstowed"); } return; } @@ -889,18 +923,20 @@ sub path_owned_by_package { # Name : find_stowed_path() # Purpose : determine whether the given link points to a member of a # : stowed package -# Parameters: $target => path to a symbolic link under current directory +# Parameters: $target => path to a symbolic link under current directory. +# : Must share a common prefix with $self->{stow_path} # : $source => where that link points to (needed because link # : might not exist yet due to two-phase approach, -# : so we can't just call readlink()) +# : so we can't just call readlink()). This must be +# : expressed relative to (the directory containing) +# : $target. # Returns : ($path, $stow_path, $package) where $path and $stow_path are # : relative from the current (i.e. target) directory. $path # : is the full relative path, $stow_path is the relative path # : to the stow directory, and $package is the name of the package. # : or ('', '', '') if link is not owned by stow # Throws : n/a -# Comments : Needs -# : Allow for stow dir not being under target dir. +# Comments : Allow for stow dir not being under target dir. # : We could put more logic under here for multiple stow dirs. #============================================================================ sub find_stowed_path { @@ -932,6 +968,12 @@ sub find_stowed_path { # If no .stow file was found, we need to find out whether it's # owned by the current stow directory, in which case $path will be # a prefix of $self->{stow_path}. + if (substr($path, 0, 1) eq '/' xor substr($self->{stow_path}, 0, 1) eq '/') + { + warn "BUG in find_stowed_path? Absolute/relative mismatch between " . + "Stow dir $self->{stow_path} and path $path"; + } + my @stow_path = split m{/+}, $self->{stow_path}; # Strip off common prefixes until one is empty @@ -948,7 +990,7 @@ sub find_stowed_path { } my $package = shift @path; - + debug(4, " yes - by $package in " . join_paths(@path)); return ($path, $self->{stow_path}, $package); } @@ -1326,11 +1368,6 @@ sub get_ignore_regexps_from_fh { # because this is the only place stow looks for them. $regexps{"^/\Q$LOCAL_IGNORE_FILE\E\$"}++; - # Also ignore the files .stow-no-folding and .stow-rename, for the same - # reason. - $regexps{"^/\Q$NO_FOLDING_FILE\E\$"}++; - $regexps{"^/\Q$RENAME_FILE\E\$"}++; - return $self->compile_ignore_regexps(%regexps); } @@ -1620,46 +1657,6 @@ sub is_a_link { return 0; } -sub renamed { - my $self = shift; - my ($package, $path) = @_; - return $self->do_rename($self->read_rename_file($package), $path); -} - -sub read_rename_file { - my $self = shift; - my ($package) = @_; - return $self->{pkg_renames}{$package} if defined $self->{pkg_renames}{$package}; - my %renames = (); - $self->{pkg_renames}{$package} = \%renames; - - my $file = join_paths($self->{stow_path}, $package, $RENAME_FILE); - return \%renames if (not -f $file); - - open my $fh, $file or die "Could not open file $!"; - while (<$fh>) { - chomp; - %renames = (%renames, split/\s*=>\s*/); - } - close $fh; - return \%renames; -} - -sub do_rename { - my $self = shift; - my ($renames, $path) = @_; - my %renames = %{ $renames }; - - return $renames{$path} if $renames{$path}; - foreach my $dir (keys %renames) { - if (0 == index $path, $dir) { - $path =~ s/^\Q$dir\E/$renames{$dir}/; - } - } - - return $path; -} - #===== METHOD =============================================================== # Name : is_a_dir() # Purpose : determine if the given path is a current or planned directory diff --git a/local/share/perl/Stow/Util.pm b/local/lib/perl/Stow/Util.pm similarity index 81% rename from local/share/perl/Stow/Util.pm rename to local/lib/perl/Stow/Util.pm index c22d7b8..5cd98d4 100644 --- a/local/share/perl/Stow/Util.pm +++ b/local/lib/perl/Stow/Util.pm @@ -1,3 +1,18 @@ +# This file is part of GNU Stow. +# +# GNU Stow is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# GNU Stow is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see https://www.gnu.org/licenses/. + package Stow::Util; =head1 NAME @@ -22,11 +37,11 @@ use POSIX qw(getcwd); use base qw(Exporter); our @EXPORT_OK = qw( error debug set_debug_level set_test_mode - join_paths parent canon_path restore_cwd + join_paths parent canon_path restore_cwd adjust_dotfile ); our $ProgramName = 'stow'; -our $VERSION = '2.2.2'; +our $VERSION = '2.3.2-fixbug56727'; ############################################################################# # @@ -193,6 +208,20 @@ sub restore_cwd { chdir($prev) or error("Your current directory $prev seems to have vanished"); } +sub adjust_dotfile { + my ($target) = @_; + + my @result = (); + for my $part (split m{/+}, $target) { + if (($part ne "dot-") && ($part ne "dot-.")) { + $part =~ s/^dot-/./; + } + push @result, $part; + } + + return join '/', @result; +} + =head1 BUGS =head1 SEE ALSO diff --git a/local/share/doc/stow/ChangeLog b/local/share/doc/stow/ChangeLog index ec7f8e1..1d83673 100644 --- a/local/share/doc/stow/ChangeLog +++ b/local/share/doc/stow/ChangeLog @@ -1,3 +1,1723 @@ +Mon Oct 23 12:49:55 2023 +1100 Danielle McLean + + * Merge branch 'bug-56727' Merge in fixed --dotfiles support. We need + it. + + +Thu Apr 15 12:18:10 2021 +0100 Adam Spiers + + * Merge pull request #86 from gutierri/patch-manpage add option + --simulate on manpage + +Wed Apr 14 22:08:38 2021 -0300 Gutierri Barboza + + * add option --simulate on manpage + + M bin/stow.in + +Wed Apr 14 11:03:00 2021 +0100 Adam Spiers + + * Merge pull request #85 from gutierri/patch-usage-dotfiles add + --dotfiles sub usage + +Tue Apr 13 22:09:38 2021 -0300 Gutierri Barboza + + * add --dotfiles sub usage + + M bin/stow.in + +Sun Nov 1 12:24:52 2020 +0000 Adam Spiers + + * Merge pull request #71 from egli/master Mention the dotfiles option in + the manual + +Wed May 27 17:51:37 2020 +0200 Christian Egli + + * Mention the dotfiles option in the manual This should have been part + of 182acbbb64425bf95008cb6d42d266f6185032c9 when the option was + first added. + + This commit basically just copies the help text from stow.in into + the texinfo manual. + + + M doc/stow.texi + +Mon May 25 22:26:31 2020 +0200 ATuinDev <1757663+AitorATuin@users.noreply.github.com> + + * Fix missing variable + + M lib/Stow.pm.in + +Mon May 25 22:23:23 2020 +0200 ATuinDev <1757663+AitorATuin@users.noreply.github.com> + + * Add more tests for testing directories in dotfiles.t + + M t/dotfiles.t + +Mon May 25 22:21:31 2020 +0200 ATuinDev <1757663+AitorATuin@users.noreply.github.com> + + * Add $level variable in stow_contents and stow_node This variables is + used to keep track of the current level in the source. + + + M lib/Stow.pm.in + +Sun May 24 18:12:49 2020 +0200 ATuinDev <1757663+AitorATuin@users.noreply.github.com> + + * Fixes Bug #56727 Problem was that when running + stow_contents/unstow_contents recursively from + stow_node/unstow_node the information for the source path (without + the dot- to + . transformation) was lost. + + In the case of stow_contents the solution is just to remove the + leading dots (..) from the $source path (since the $source path is + passed as an argument to the function) + + In the case of unstow_contents the solution is the same as for + stow_contents but the arguments was now passed so I added it to + the function. + + + M lib/Stow.pm.in + +Sun Jul 28 14:54:36 2019 +0100 Adam Spiers + + * HOWTO-RELEASE: explicitly push to master This avoids errors like + + fatal: You are pushing to remote 'savannah', which is not the + upstream of + your current branch 'master', without telling me what to push + to update which remote branch. + + + M doc/HOWTO-RELEASE + +Sun Jul 28 14:52:53 2019 +0100 Adam Spiers + + * Bump version to 2.3.2 for development of next release + + M META.json + M META.yml + M configure.ac + +Sun Jul 28 14:52:16 2019 +0100 Adam Spiers + + * HOWTO-RELEASE: fix final step of bumping to next release version + + M doc/HOWTO-RELEASE + +Sun Jul 28 14:29:06 2019 +0100 Adam Spiers + + * NEWS: disable org-export-with-toc 2.3.0 was a big release with lots of + stuff, but most releases will be smaller, so default to not having + a ToC. + + + M NEWS + +Sun Jul 28 14:28:41 2019 +0100 Adam Spiers + + * NEWS: don't export with author name Avoid extra noise when exporting + to text for a release announcement. + + + M NEWS + +Sun Jul 28 13:58:00 2019 +0100 Adam Spiers + + * HOWTO-RELEASE: explain how to confirm PAUSE acceptance of upload + + M doc/HOWTO-RELEASE + +Sun Jul 28 13:28:46 2019 +0100 Adam Spiers + + * HOWTO-RELEASE: do ./Build dist earlier docker builds break ./Build + dist, so do it earlier. + + + M doc/HOWTO-RELEASE + +Sun Jul 28 13:15:11 2019 +0100 Adam Spiers + + * Make sure release process starts from a clean slate + + M doc/HOWTO-RELEASE + +Sun Jul 28 13:10:49 2019 +0100 Adam Spiers + + * Prepare NEWS for 2.3.1 release + + M NEWS + +Sun Jul 28 12:57:27 2019 +0100 Adam Spiers + + * fix cross-references under --no-folding section of manual Under emacs, + this was previously rendered as + + '--no-folding' + + This disables any further *note tree folding:: or *note + tree + refolding::. If a new subdirectory is encountered whilst + stowing a + + which looks awkward. Similarly under info(1): + + '--no-folding' + + This disables any further *note tree folding:: or *note + tree + refolding::. If a new subdirectory is encountered whilst + stowing a + + The new way is undesirably repetitive, but at least grammatically + correct. I don't think there's a better solution with texinfo :-/ + + + M doc/stow.texi + +Sun Jul 28 12:55:22 2019 +0100 Adam Spiers + + * HOWTO-RELEASE: add suggested commands for updating home page + + M doc/HOWTO-RELEASE + +Sun Jul 28 13:03:54 2019 +0100 Adam Spiers + + * cli.t: test with the right Perl executable (#62) cli.t: test with the + right Perl executable + +Tue Jul 16 19:24:19 2019 +0100 Adam Spiers + + * HOWTO-RELEASE: update news section of online home page + + M doc/HOWTO-RELEASE + +Tue Jul 16 19:21:04 2019 +0100 Adam Spiers + + * HOWTO-RELEASE: update online docs *after* uploading release It doesn't + make sense to have docs online relating to a release which isn't + yet available; it's less confusing to have a small time window in + which the online docs are out of date. + + + M doc/HOWTO-RELEASE + +Mon Jul 15 16:10:21 2019 -0400 Adam Spiers + + * cli.t: test with the right Perl executable t/cli.t calls scripts which + run with the first perl found in the user's PATH (usually the + system perl), not with the perl used for the build, as reported + here: + + https://rt.cpan.org/Ticket/Display.html?id=129944 + + Thanks to Slaven Rezic for spotting this and reporting it! + + + M THANKS + M t/cli.t + +Sat Jun 29 13:48:59 2019 +0100 Adam Spiers + + * Remove dependencies on Hash::Merge and Clone::Choose (#60) Remove + dependencies on Hash::Merge and Clone::Choose + +Sat Jun 29 13:04:30 2019 +0100 Adam Spiers + + * Remove dependencies on Hash::Merge and Clone::Choose stow 2.3.0 added + external runtime dependencies on Hash::Merge and Clone::Choose. + Historically stow hasn't had runtime dependencies other than Perl + itself, which is a useful property if you're managing the + installation of Perl using stow; the bootstrapping instructions in + stow's manual would need updating to describe how to install these + two modules (and any dependencies they have now or in the future) + as well. + + However, Hash::Merge is much more general than stow actually + needs, so replace the merge() call with a few lines of equivalent + code -- this avoids the external dependencies, and is clearer than + the merge() call. + + Many thanks to Adam Sampson for this patch: + + https://lists.gnu.org/archive/html/bug-stow/2019-06/msg00001.html + + + M Build.PL + M META.json + M META.yml + M NEWS + M bin/stow.in + M t/rc_options.t + +Sat Jun 29 13:40:45 2019 +0100 Adam Spiers + + * Bump version to 2.3.1 for development of next release + + M META.json + M META.yml + M NEWS + M configure.ac + M doc/HOWTO-RELEASE + +Sat Jun 29 13:03:11 2019 +0100 Adam Spiers + + * Maintainer tweaks (#59) Maintainer tweaks + +Sat Jun 29 01:30:36 2019 +0100 Adam Spiers + + * Add GPL v3 upgrade to NEWS for 2.3.0 release Forgot to do this prior + to the release :-( But at least it will be mentioned in the + announcement on the mailing lists. + + + M NEWS + +Sat Jun 29 01:12:36 2019 +0100 Adam Spiers + + * Make NEWS export to text better Run org-convert-to-odd-levels on NEWS + and set local variables so that sections can easily be exported + for release announcements. + + + M NEWS + M doc/HOWTO-RELEASE + +Fri Jun 28 23:48:37 2019 +0100 Adam Spiers + + * Set DISTCLEANFILES to clean up more Docker generates a whole bunch of + files as root. + + + M Makefile.am + +Sat Jun 29 00:55:51 2019 +0100 Adam Spiers + + * HOWTO-RELEASE: Fix cvs commit command for docs + + M doc/HOWTO-RELEASE + +Sat Jun 29 00:36:00 2019 +0100 Adam Spiers + + * HOWTO-RELEASE: Fix git tag command + + M doc/HOWTO-RELEASE + +Fri Jun 28 23:54:30 2019 +0100 Adam Spiers + + * Split perlbrew install-multiple into separate RUN cmd This allows + changing which Perls are used etc. without re-bootstrapping + perlbrew. + + + M docker/Dockerfile + +Fri Jun 28 21:57:08 2019 +0100 Adam Spiers + + * Use Clone backend for Hash::Merge, not Storable (#58) Use Clone + backend for Hash::Merge, not Storable + +Fri Jun 28 21:11:58 2019 +0100 Adam Spiers + + * Use Clone backend for Hash::Merge, not Storable Need to avoid Storable + backend, since it can't deal with regexps: + + https://rt.perl.org/Public/Bug/Display.html?id=50608 + + This should fix the Docker builds. + + + M Build.PL + M META.json + M META.yml + M bin/stow.in + +Fri Jun 28 21:20:22 2019 +0100 Adam Spiers + + * make maintainer-clean remove cover_db/ + + M Makefile.am + +Fri Jun 28 20:46:15 2019 +0100 Adam Spiers + + * Make testing within Docker containers easier (#56) Make testing within + Docker containers easier + +Fri Jun 28 20:10:45 2019 +0100 Adam Spiers + + * Make testing within Docker containers easier + + M docker/run-stow-tests.sh + M test-docker.sh + +Fri Jun 28 20:33:30 2019 +0100 Adam Spiers + + * Merge pull request #57 from aspiers/strict-tests Allow make to fail if + missing modules for test dependencies + +Fri Jun 28 20:21:41 2019 +0100 Adam Spiers + + * Allow make to fail if missing modules for test dependencies e.g. make + STRICT_TESTS=1 + + However we don't need this in .travis.yml as explained in the + comments. + + + M .travis.yml + M configure.ac + +Fri Jun 28 17:48:04 2019 +0100 Adam Spiers + + * Dockerfile: fix Debian jessie sources (#55) Dockerfile: fix Debian + jessie sources + +Fri Jun 28 17:12:18 2019 +0100 Adam Spiers + + * Dockerfile: fix Debian jessie sources + https://superuser.com/questions/1423486/issue-with-fetching-http-deb-debian-org-debian-dists-jessie-updates-inrelease + + + M docker/Dockerfile + +Fri Jun 28 17:14:23 2019 +0100 Adam Spiers + + * Make docker scripts use get-version (#54) Make docker scripts use + get-version + +Fri Jun 28 17:10:42 2019 +0100 Adam Spiers + + * rebuild META.* in preparation for 2.3.0 release (#53) rebuild META.* + in preparation for 2.3.0 release + +Fri Jun 28 17:08:48 2019 +0100 Adam Spiers + + * Make docker scripts use get-version + + M build-docker.sh + M test-docker.sh + +Fri Jun 28 17:04:40 2019 +0100 Adam Spiers + + * rebuild META.* in preparation for 2.3.0 release + + M META.json + M META.yml + +Fri Jun 28 16:48:59 2019 +0100 Adam Spiers + + * Various improvements to tests (#52) Various improvements to tests + +Fri Jun 28 09:56:46 2019 +0100 Adam Spiers + + * Add separate tests for .stowrc from $HOME and $PWD + .stowrc can be obtained from $HOME and/or the current working + directory; however only the $HOME case was tested before, because + during tests Stow was being run from $HOME. + + So switch $TEST_DIR to an absolute path, create a new run_from/ + subdirectory, and chdir to that before invoking any Stow code. + This allows us to test the behaviour of .stowrc in $HOME and + run_from/ separately. + + + M NEWS + M bin/stow.in + M t/rc_options.t + M t/testutil.pm + +Fri Jun 28 15:23:52 2019 +0100 Adam Spiers + + * Split up is_deeply() assertions in find_stowed_path.t This makes the + tests and any failures more readable. + + + M t/find_stowed_path.t + +Fri Jun 28 15:22:44 2019 +0100 Adam Spiers + + * Check that find_stowed_path $path matches relative/absolute with + target Watch out for a corner case probably only relevant in + tests. + + + M lib/Stow.pm.in + +Fri Jun 28 15:22:29 2019 +0100 Adam Spiers + + * Improve comments on function parameters for clarity + + M lib/Stow.pm.in + +Fri Jun 28 10:32:18 2019 +0100 Adam Spiers + + * Add examples of how to enable debugging in tests + + M t/find_stowed_path.t + M t/stow.t + +Fri Jun 28 01:02:48 2019 +0100 Adam Spiers + + * Replace testutil::make_dir with File::Path::make_path No need for a + custom function here. + + + M t/chkstow.t + M t/cleanup_invalid_links.t + M t/cli_options.t + M t/dotfiles.t + M t/examples.t + M t/find_stowed_path.t + M t/foldable.t + M t/ignore.t + M t/stow.t + M t/testutil.pm + M t/unstow.t + M t/unstow_orig.t + +Fri Jun 28 00:53:12 2019 +0100 Adam Spiers + + * Rename $OUT_DIR to $TEST_DIR This is a more accurate reflection of + what it is. + + + M t/chkstow.t + M t/cleanup_invalid_links.t + M t/cli_options.t + M t/defer.t + M t/dotfiles.t + M t/examples.t + M t/find_stowed_path.t + M t/foldable.t + M t/ignore.t + M t/rc_options.t + M t/stow.t + M t/testutil.pm + M t/unstow.t + M t/unstow_orig.t + +Fri Jun 28 00:41:55 2019 +0100 Adam Spiers + + * Avoid dereferencing $ENV{HOME} if it is undefined (#32) Avoid + dereferencing $ENV{HOME} if it is undefined + +Thu Jun 27 20:49:44 2019 +0100 Adam Spiers + + * Improve the history of individual contributions and repositories (#49) + Improve the history of individual contributions and repositories + +Thu Jun 27 20:49:18 2019 +0100 Adam Spiers + + * Upgrade to GPL v3 and add headers to files (#50) + Upgrade to GPL v3 and add headers to files + +Thu Jun 27 20:28:17 2019 +0100 Adam Spiers + + * Improve the history of individual contributions and repositories The + source code has been through a rather complicated journey, and + it's occasionally useful to understand this history from CVS to a + private Subversion repository to its current location in git. So + document this more thoroughly, and ensure that everyone involved + is in the THANKS file. + + + M AUTHORS + M README.md + M THANKS + +Thu Jun 27 20:39:16 2019 +0100 Adam Spiers + + * Change -w to "use warnings;" in tools/get-version This is more + idiomatic and consistent with everywhere else. + + + M tools/get-version + +Thu Jun 27 20:37:50 2019 +0100 Adam Spiers + + * Change #!/usr/local/bin/perl to #!/usr/bin/perl in t/*.t This doesn't + really matter, since these are not executed directly, but it's + more consistent with everything else and modern systems. + + + M t/chkstow.t + M t/cleanup_invalid_links.t + M t/cli.t + M t/cli_options.t + M t/defer.t + M t/dotfiles.t + M t/examples.t + M t/find_stowed_path.t + M t/foldable.t + M t/ignore.t + M t/join_paths.t + M t/parent.t + M t/rc_options.t + M t/stow.t + M t/unstow.t + M t/unstow_orig.t + +Thu Jun 27 14:02:19 2019 +0100 Adam Spiers + + * Upgrade to GPL v3 and add headers to files (#44) Following advice from + maintainers@gnu.org, bring Stow in line with other GNU projects by + upgrading it from GPL v2 to v3 + + + https://www.gnu.org/prep/maintain/html_node/Licensing-of-GNU-Packages.html#Licensing-of-GNU-Packages + + as obtained in plain text and texinfo formats from + + https://www.gnu.org/licenses/ + + and adding appropriate headers: + + + https://www.gnu.org/prep/maintain/html_node/License-Notices-for-Code.html#License-Notices-for-Code + + Fixes #44: https://github.com/aspiers/stow/issues/44 + + + M Build.PL + M COPYING + M INSTALL.md + M Makefile.am + M README.md + M TODO + M bin/chkstow.in + M bin/stow.in + M configure.ac + M doc/stow.texi + M docker/Dockerfile + M docker/bootstrap-perls.sh + M docker/run-stow-tests.sh + M lib/Stow.pm.in + M lib/Stow/Util.pm.in + M t/chkstow.t + M t/cleanup_invalid_links.t + M t/cli.t + M t/cli_options.t + M t/defer.t + M t/dotfiles.t + M t/examples.t + M t/find_stowed_path.t + M t/foldable.t + M t/ignore.t + M t/join_paths.t + M t/parent.t + M t/rc_options.t + M t/stow.t + M t/testutil.pm + M t/unstow.t + M t/unstow_orig.t + +Thu Jun 27 14:14:23 2019 +0100 Adam Spiers + + * Fix Travis failure after merging #42 (#46) Fix Travis failure after + merging #42 + +Thu Jun 27 14:06:19 2019 +0100 Adam Spiers + + * remove trailing whitespace from lines (#45) remove trailing whitespace + from lines + +Thu Jun 27 13:55:35 2019 +0100 Adam Spiers + + * Fix Travis failure after merging #42 Something weird happened with + https://travis-ci.org/aspiers/stow/jobs/551290921 after merging + #42, as shown below. Maybe removing texi2html from the list of + packages for Travis to install will help. + + --- Installing APT Packages 15.50s$ travis_apt_get_update 0.11s$ + sudo -E apt-get -yq --no-install-suggests --no-install-recommends + $(travis_apt_get_options) install texinfo texlive texi2html + Reading package lists... Building dependency tree... Reading state + information... Package texinfo is not available, but is referred + to by another package. This may mean that the package is missing, + has been obsoleted, or is only available from another source + However the following packages replace it: + info install-info E: Package 'texinfo' has no installation + candidate E: Unable to locate package texi2html + apt-get.diagnostics apt-get install failed + $ cat ${TRAVIS_HOME}/apt-get-update.log Get:2 + http://dl.hhvm.com/ubuntu trusty InRelease [3,106 B] Get:3 + http://security.ubuntu.com/ubuntu trusty-security InRelease [65.9 + kB] Get:4 http://ppa.launchpad.net/chris-lea/redis-server/ubuntu + trusty InRelease [15.4 kB] Ign:5 + http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.4 + InRelease Get:6 http://repo.mongodb.org/apt/ubuntu + trusty/mongodb-org/3.4 Release [2,495 B] Get:7 + http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.4 + Release.gpg [801 B] Get:8 http://dl.hhvm.com/ubuntu trusty/main + amd64 Packages [1,812 B] Get:9 http://security.ubuntu.com/ubuntu + trusty-security/main Sources [220 kB] Get:10 + http://security.ubuntu.com/ubuntu trusty-security/restricted + Sources [5,050 B] Get:11 http://security.ubuntu.com/ubuntu + trusty-security/universe Sources [126 kB] Get:12 + http://security.ubuntu.com/ubuntu trusty-security/multiverse + Sources [3,070 B] Get:13 http://security.ubuntu.com/ubuntu + trusty-security/main amd64 Packages [1,032 kB] Get:14 + http://security.ubuntu.com/ubuntu trusty-security/main i386 + Packages [934 kB] Get:15 http://security.ubuntu.com/ubuntu + trusty-security/main Translation-en [541 kB] Get:16 + http://security.ubuntu.com/ubuntu trusty-security/restricted amd64 + Packages [18.1 kB] Get:17 http://security.ubuntu.com/ubuntu + trusty-security/restricted i386 Packages [17.8 kB] Get:18 + http://security.ubuntu.com/ubuntu trusty-security/restricted + Translation-en [3,272 B] Get:19 http://security.ubuntu.com/ubuntu + trusty-security/universe amd64 Packages [377 kB] Get:20 + http://security.ubuntu.com/ubuntu trusty-security/universe i386 + Packages [355 kB] Get:21 http://security.ubuntu.com/ubuntu + trusty-security/universe Translation-en [203 kB] Get:22 + http://security.ubuntu.com/ubuntu trusty-security/multiverse amd64 + Packages [4,730 B] Get:23 http://security.ubuntu.com/ubuntu + trusty-security/multiverse i386 Packages [4,887 B] Get:24 + http://security.ubuntu.com/ubuntu trusty-security/multiverse + Translation-en [2,426 B] Get:25 + https://download.docker.com/linux/ubuntu trusty InRelease [37.1 + kB] Get:26 http://repo.mongodb.org/apt/ubuntu + trusty/mongodb-org/3.4/multiverse amd64 Packages [14.1 kB] Get:27 + https://download.docker.com/linux/ubuntu trusty/stable amd64 + Packages [5,763 B] Get:28 https://download.docker.com/linux/ubuntu + trusty/edge amd64 Packages [6,911 B] Ign:29 + http://ppa.launchpad.net/couchdb/stable/ubuntu trusty InRelease + Get:30 http://ppa.launchpad.net/git-core/ppa/ubuntu trusty + InRelease [20.8 kB] Get:31 http://ppa.launchpad.net/hvr/ghc/ubuntu + trusty InRelease [15.4 kB] Get:32 + http://ppa.launchpad.net/pollinate/ppa/ubuntu trusty InRelease + [15.4 kB] Get:33 http://ppa.launchpad.net/webupd8team/java/ubuntu + trusty InRelease [15.5 kB] Get:34 + http://ppa.launchpad.net/chris-lea/redis-server/ubuntu trusty/main + amd64 Packages [1,843 B] Get:35 + http://ppa.launchpad.net/chris-lea/redis-server/ubuntu trusty/main + i386 Packages [1,842 B] Get:36 + http://ppa.launchpad.net/chris-lea/redis-server/ubuntu trusty/main + Translation-en [990 B] Get:37 + http://ppa.launchpad.net/couchdb/stable/ubuntu trusty Release + [15.1 kB] Get:38 http://ppa.launchpad.net/couchdb/stable/ubuntu + trusty Release.gpg [316 B] Ign:39 + http://dl.google.com/linux/chrome/deb stable InRelease Get:40 + http://dl.google.com/linux/chrome/deb stable Release [943 B] + Get:41 http://dl.google.com/linux/chrome/deb stable Release.gpg + [819 B] Get:42 http://ppa.launchpad.net/git-core/ppa/ubuntu + trusty/main amd64 Packages [3,494 B] Get:43 + http://ppa.launchpad.net/git-core/ppa/ubuntu trusty/main i386 + Packages [3,496 B] Get:44 + http://ppa.launchpad.net/git-core/ppa/ubuntu trusty/main + Translation-en [2,368 B] Get:45 + http://ppa.launchpad.net/hvr/ghc/ubuntu trusty/main amd64 Packages + [18.5 kB] Get:46 http://ppa.launchpad.net/hvr/ghc/ubuntu + trusty/main i386 Packages [15.7 kB] Get:47 + http://ppa.launchpad.net/hvr/ghc/ubuntu trusty/main Translation-en + [1,107 B] Get:48 http://ppa.launchpad.net/pollinate/ppa/ubuntu + trusty/main amd64 Packages [430 B] Get:49 + http://ppa.launchpad.net/pollinate/ppa/ubuntu trusty/main i386 + Packages [430 B] Get:50 + http://ppa.launchpad.net/pollinate/ppa/ubuntu trusty/main + Translation-en [374 B] Get:51 + http://ppa.launchpad.net/webupd8team/java/ubuntu trusty/main amd64 + Packages [20 B] Get:52 + http://ppa.launchpad.net/webupd8team/java/ubuntu trusty/main i386 + Packages [20 B] Get:53 + http://ppa.launchpad.net/webupd8team/java/ubuntu trusty/main + Translation-en [20 B] Get:54 + http://ppa.launchpad.net/couchdb/stable/ubuntu trusty/main amd64 + Packages [985 B] Get:55 + http://ppa.launchpad.net/couchdb/stable/ubuntu trusty/main i386 + Packages [985 B] Get:56 + http://ppa.launchpad.net/couchdb/stable/ubuntu trusty/main + Translation-en [644 B] Get:57 + http://dl.google.com/linux/chrome/deb stable/main amd64 Packages + [1,107 B] Err:58 + https://packagecloud.io/computology/apt-backport/ubuntu trusty + InRelease + Failed to connect to packagecloud.io port 443: Connection timed + out Err:59 http://us-east-1.ec2.archive.ubuntu.com/ubuntu trusty + InRelease + Could not connect to apt.cache.travis-ci.com:80 (34.96.81.152), + connection timed out Err:60 + http://us-east-1.ec2.archive.ubuntu.com/ubuntu trusty-updates + InRelease + Unable to connect to apt.cache.travis-ci.com:http: Err:61 + http://toolbelt.heroku.com/ubuntu ./ InRelease + Could not connect to apt.cache.travis-ci.com:80 (34.96.81.152), + connection timed out Err:62 + http://us-east-1.ec2.archive.ubuntu.com/ubuntu trusty-backports + InRelease + Unable to connect to apt.cache.travis-ci.com:http: Err:63 + http://apt.postgresql.org/pub/repos/apt trusty-pgdg InRelease + Could not connect to apt.cache.travis-ci.com:80 (34.96.81.152), + connection timed out Err:1 http://dl.bintray.com/apache/cassandra + 39x InRelease + Could not connect to apt.cache.travis-ci.com:80 (34.96.81.152), + connection timed out Get:64 + https://packagecloud.io/github/git-lfs/ubuntu trusty InRelease + [23.2 kB] Ign:64 https://packagecloud.io/github/git-lfs/ubuntu + trusty InRelease Get:65 + https://packagecloud.io/rabbitmq/rabbitmq-server/ubuntu trusty + InRelease [23.7 kB] Get:66 + https://packagecloud.io/github/git-lfs/ubuntu trusty/main Sources + [20 B] Get:67 https://packagecloud.io/github/git-lfs/ubuntu + trusty/main amd64 Packages [8,003 B] Get:68 + https://packagecloud.io/github/git-lfs/ubuntu trusty/main i386 + Packages [7,761 B] Get:69 + https://packagecloud.io/rabbitmq/rabbitmq-server/ubuntu + trusty/main Sources [20 B] Get:70 + https://packagecloud.io/rabbitmq/rabbitmq-server/ubuntu + trusty/main amd64 Packages [7,866 B] Get:71 + https://packagecloud.io/rabbitmq/rabbitmq-server/ubuntu + trusty/main i386 Packages [7,866 B] Fetched 4,218 kB in 15s (279 + kB/s) Reading package lists... W: + http://ppa.launchpad.net/couchdb/stable/ubuntu/dists/trusty/Release.gpg: + Signature by key 15866BAFD9BCC4F3C1E0DFC7D69548E1C17EAB57 uses + weak digest algorithm (SHA1) W: GPG error: + https://packagecloud.io/github/git-lfs/ubuntu trusty InRelease: + The following signatures couldn't be verified because the public + key is not available: NO_PUBKEY 6B05F25D762E3157 W: The repository + 'https://packagecloud.io/github/git-lfs/ubuntu trusty InRelease' + is not signed. W: There is no public key available for the + following key IDs: 6B05F25D762E3157 W: Failed to fetch + http://us-east-1.ec2.archive.ubuntu.com/ubuntu/dists/trusty/InRelease + Could not connect to apt.cache.travis-ci.com:80 (34.96.81.152), + connection timed out W: Failed to fetch + http://us-east-1.ec2.archive.ubuntu.com/ubuntu/dists/trusty-updates/InRelease + Unable to connect to apt.cache.travis-ci.com:http: W: Failed to + fetch + http://us-east-1.ec2.archive.ubuntu.com/ubuntu/dists/trusty-backports/InRelease + Unable to connect to apt.cache.travis-ci.com:http: W: Failed to + fetch + http://www.apache.org/dist/cassandra/debian/dists/39x/InRelease + Could not connect to apt.cache.travis-ci.com:80 (34.96.81.152), + connection timed out W: Failed to fetch + https://packagecloud.io/computology/apt-backport/ubuntu/dists/trusty/InRelease + Failed to connect to packagecloud.io port 443: Connection timed + out W: Failed to fetch + http://toolbelt.heroku.com/ubuntu/./InRelease Could not connect + to apt.cache.travis-ci.com:80 (34.96.81.152), connection timed out + W: Failed to fetch + http://apt.postgresql.org/pub/repos/apt/dists/trusty-pgdg/InRelease + Could not connect to apt.cache.travis-ci.com:80 (34.96.81.152), + connection timed out W: Some index files failed to download. They + have been ignored, or old ones used instead. The command "sudo -E + apt-get -yq --no-install-suggests --no-install-recommends + $(travis_apt_get_options) install texinfo texlive texi2html" + failed and exited with 100 during . Your build has been stopped. + + + M .travis.yml + +Wed Jun 26 13:25:53 2019 +0100 Adam Spiers + + * remove trailing whitespace from lines + + M doc/stow.texi + +Thu Jun 27 13:27:12 2019 +0100 Adam Spiers + + * Update maintainership to reflect reality (#41) Update maintainership + to reflect reality + +Wed Jun 26 14:08:48 2019 +0100 Adam Spiers + + * switch from unmaintained texi2html to makeinfo --html --no-split (#42) + switch from unmaintained texi2html to makeinfo --html --no-split + +Wed Jun 26 13:26:08 2019 +0100 Adam Spiers + + * Update maintainership to reflect reality Troy hasn't been active on + the project for many years. + + https://lists.gnu.org/archive/html/stow-devel/2011-11/msg00009.html + + + M AUTHORS + M THANKS + +Wed Jun 26 13:37:07 2019 +0100 Adam Spiers + + * Switch to makeinfo --html --no-split for single-page HTML manual (#21) + Remove the dependency on the ancient and unmaintained texi2html, + which was difficult to get running on most distros other than + openSUSE. + + There are two more modern alternative approaches which can replace + this: + + - Use texi2any + - Use makeinfo --html --no-split + + The latter seems to be the standard way these days, so we switch + to that; however we keep Makefile rules for all three, and a phony + meta-rule 'manual-single-html-all' to allow quick comparison + between them. Make tweaks accordingly to minimise the differences + and improve the output. + + The rules for the older two approaches do not get triggered by + default. + + Fixes #21: https://github.com/aspiers/stow/issues/21 + + + M .gitignore + M MANIFEST.SKIP + M Makefile.am + M NEWS + +Wed Jun 26 13:34:09 2019 +0100 Adam Spiers + + * Include the preamble in online versions of the manual This is more + inline with the suggestion in the texinfo manual: + + https://www.gnu.org/software/texinfo/manual/texinfo/html_node/_0040top-Command.html + + and also the preamble is useful in all cases. + + + M doc/stow.texi + +Wed Jun 26 13:33:48 2019 +0100 Adam Spiers + + * Add Guillaume and myself to the list of @authors + + M doc/stow.texi + +Wed Jun 26 13:25:53 2019 +0100 Adam Spiers + + * remove trailing whitespace from lines + + M AUTHORS + +Tue Jun 25 20:33:48 2019 +0100 Adam Spiers + + * add tools/get-version to MANIFEST Forgot to do this, and it broke + ./Build.PL distcheck. + + + M MANIFEST + +Tue Jun 25 20:10:43 2019 +0100 Adam Spiers + + * Merge remote-tracking branch 'bricewge/fix-34' + +Tue Jun 25 20:04:11 2019 +0100 Adam Spiers + + * Add some polish to the release process + + M doc/HOWTO-RELEASE + A tools/get-version + +Tue Jun 25 19:49:46 2019 +0100 Adam Spiers + + * Perform shell expansion on the contents of .stowrc (#40) Perform shell + expansion on the contents of .stowrc + +Thu Jul 14 14:48:40 2016 -0500 Charles LeDoux + + * Add function to expand ~ in .stowrc files (#14) Add a new + expand_tilde() function that performs tilde expansion of strings, + and corresponding unit tests: + + * A ~ at the beginning of a path is expanded to the user's + home + directory. + * Literal '~' can be provided with '\~' + + Combine this with expand_environment() in a new expand_filepath() + function which applies all (both) required expansion functions to + a string, and use that in get_config_file_options() to expand + .stowrc options. + + Add more tests to check that tilde expanded in correct places, + i.e.: + + * expanded for --target and --dir + * not expanded for --ignore, --defer, or --override + + Update documentation on stowrc files according to this + functionality change. + + Fixes #14: https://github.com/aspiers/stow/issues/14 + + + M NEWS + M bin/stow.in + M doc/stow.texi + M t/rc_options.t + +Thu Jul 14 11:37:42 2016 -0500 Charles LeDoux + + * Apply environment expansion to options in .stowrc files Expand + environment variables used in stowrc, as requested in + + https://savannah.gnu.org/bugs/?41826 + + This is achieved by creating a new function expand_environment() + that replaces any substring of the form '$VAR' or '${VAR}' with + contents of environment variable $VAR. Literal '$' can be given + by '\$'. + + N.B. The function is only applied to the --target and --dir + options, and only for options specified in .stowrc; cli options + are left untouched. + + Undefined variables are expanded to the empty string, as they + would be in normal shell parameter expansion. + + Unit tests added accordingly: + + - Test expand_environment(): + * Expand $HOME + * Expand ${HOME} + * Expand ${WITH SPACE} + * Expand '\$HOME'. Expected is '$HOME' + * Expand ${UNDEFINED}. Expected is ''. + + - Test that it's applied to the correct options. + + - Test that CLI options are not expanded. + + + M bin/stow.in + M t/cli_options.t + M t/rc_options.t + +Fri Jul 1 20:07:28 2016 -0500 Charles LeDoux + + * Parse cli and stowrc files separately Why: + + * We want to selectively apply expansion to: + * Only options from stowrc files. + * Only options that take a path. + * This requires ability to: + * Differentiate cli options from stowrc options + * Distinguish between individual stowrc options. + + This change addresses the need by: + + * Options from ARGV and stowrc files are separately parsed, + resulting in + two options hashes. + * Creating an option hash from stowrc files allows modification + of + specific arguments without having to rely on something like + regex + parsing of the options. + + * get_config_file_options modified to return options hash. + * Uses the same parse_options function that parses ARGV + + * Add Hash:Merge to dependencies in order to merge the two option + hashes. + + * process_options() merges the two option hashes. + * Get option hash for ARGV + * Get option hash from get_config_file_options(). + * Merge the two hashes with Hash::Merge. + * Sanitation and checks are ran on the merged options. + + * The options -S, -D, and -R are ignored in stowrc files. + * Due to the way argument parsing happens, the effect of these + actions is not carried from stowrc into parsing of cli + options. + * It doesn't seem to make sense to put these options in stowrc + anyway. + + + M Build.PL + M META.json + M META.yml + M bin/stow.in + +Fri Jun 24 16:34:13 2016 -0500 Charles LeDoux + + * Factor out parsing of options Why: + + * Want to be able to selectively apply filepath expansion to: + 1. Only options in a stowrc file. + 2. Only options that take a file path. + + * Because of need 1, any expansion must be performed on stowrc + options + before merging with cli options. + + * Because of need 2, stowrc options need to be parsed before + expansion + in order to know which options need expanding. + + This change addresses the need by: + + * Create parse_options() + * Implements option parsing logic previously in + process_options() + * Takes an array as parameter instead of assuming ARGV + * Edit process_options() to still work as expected. + * Only change was to call parse_options() instead of directly + parsing ARGV + + * By factoring out the option parsing code, we can reuse the + existing + parsing code for stowrc options. + * Allows expansion of only the option itself, i.e expansion on + "$HOME/target" rather than "--target=$HOME/target" + * Allows easy determination of which options need expansion. + + + M bin/stow.in + +Thu Jul 14 08:55:55 2016 -0500 Charles LeDoux + + * Add test for conflicting stowrc and cli args Why: + + * Want to add feature to stowrc parsing. + * Missing regression test for conflicting cli and stowrc options. + + This change addresses the need by: + + * Add missing regression tests to rc_options.t + * Two types of tests for the two types of options possible. + + * For scalar options such as --target, cli arguments should + overwrite + stowrc arguments. + + * For options that result in a list, such as --ignore, the + arguments + from cli and stowrc files should be merged. + + + M t/rc_options.t + +Fri Jul 1 18:38:25 2016 -0500 Charles LeDoux + + * Add test harness for stowrc files Why: + + * Planning on developing a new feature for parsing of stowrc + files. + * Need a test harness that performs initialization and clean up + * Initialization: Create directory structure that allows + creation of + stowrc files without worrying about squashing existing files. + * Clean up: Remove all files created during testing. + + This change addresses the need by: + + * Add intialization and cleanup harness in t/rc_options.t + * Define the location to write stowrc files to in $RC_FILE + * Ensures that location $RC_FILE does not already exist. + * Calls the init_test_dirs to bootstrap directory tree. + * After all tests are run, removes $RC_FILE and the testing + directory tree. + + * Add basic test of stowrc parsing to t/rc_options.t + * Provides a template of how to create and test a stowrc file. + + * Newly created t/rc_options.t file added to MANIFEST + + + M MANIFEST + A t/rc_options.t + +Fri Jun 24 15:06:06 2016 -0500 Charles LeDoux + + * Change init_test_dirs to point $HOME at $OUT_DIRS Why: + + * Want to add a new feature to parsing of stowrc files. + * Need ability to write .stowrc files for testing without risk of + squashing existing files. + + This change addresses the need by: + + * Reusing logic in init_test_dirs + * init_test_dirs already creates new directory structure and + overwrites + $HOME to point into /tmp. + * This commit changes init_test_dirs to point $HOME at the newly + created + directory structure ($OUT_DIR) instead of /tmp. + * Grants ability to write .stowrc to $HOME without fear. + * Pointing $HOME at $OUT_DIR instead of /tmp also makes cleanup + easier. + * Remove $OUT_DIR vs remove specific files in /tmp. + + + M t/testutil.pm + +Tue Jun 25 19:05:38 2019 +0100 Adam Spiers + + * Don't warn when .stowrc is used We fully support and expect some users + using .stowrc, so there is no reason to issue a warning when they + do. + + + M bin/stow.in + +Tue Jun 25 19:36:49 2019 +0100 Adam Spiers + + * Group news items for 2.3.0 Since 2.3.0 is a long overdue release and + has many changes, document them in NEWS in three groups: + + - New features / changes in behaviour + - Documentation fixes and enhancements + - Fixes for bugs and technical debt + + + M NEWS + +Tue Jun 25 17:48:07 2019 +0100 Adam Spiers + + * Update docs according to recent commits (#39) Update docs according to + recent commits + +Tue Jun 25 17:21:53 2019 +0100 Adam Spiers + + * Update NEWS and THANKS according to recent commits + + M NEWS + M THANKS + +Tue Jun 25 17:25:33 2019 +0100 Adam Spiers + + * Synchronise --verbose documentation The man page was updated with + regard to higher --verbose levels but not the info manual, so fix + that. + + + M doc/stow.texi + +Tue Jun 25 17:05:43 2019 +0100 Adam Spiers + + * Fix old descriptions of Stow (#22) (#38) Fix old descriptions of Stow + (#22) + +Mon Nov 21 14:56:26 2016 +0000 Adam Spiers + + * Fix old descriptions of Stow (#22) De-emphasise the package management + aspects, since these days almost everyone prefers to use modern + package managers such as rpm / dpkg / Nix for (system-wide) + package management. + + Also include more popular modern use cases for Stow such as + management of dotfiles and software compiled in the user's $HOME + directory. + + Fixes #22: https://github.com/aspiers/stow/issues/22 + + + M README.md + M bin/stow.in + M doc/stow.texi + M lib/Stow.pm.in + +Tue Jun 25 15:55:15 2019 +0100 Adam Spiers + + * Merge pull request #37 from aspiers/invalid-option-exit-code Return + non-zero exit code when invalid option is specified (#34) + +Tue Jun 25 13:44:35 2019 +0100 Adam Spiers + + * Return non-zero exit code when invalid option is specified (#34) Also + add a unit test for this. + + Fixes #34: https://github.com/aspiers/stow/issues/34 + + + M bin/stow.in + M t/cli.t + +Tue Jun 25 15:41:41 2019 +0100 Adam Spiers + + * Add black box CLI testing and 2 other tweaks (#36) Add black box CLI + testing and 2 other tweaks + +Tue Jun 25 14:27:56 2019 +0100 Adam Spiers + + * Add cli.t for testing invocation of stow executable Unlike the other + tests, this actually treats stow(1) as a black box script, running + it directly rather than require-ing it as a library. This allows + us to check things like the exit codes returned. + + + M MANIFEST + A t/cli.t + +Tue Jun 25 14:30:08 2019 +0100 Adam Spiers + + * Make dotfiles.t executable for consistency with other tests + + M t/dotfiles.t + +Tue Jun 25 13:44:17 2019 +0100 Adam Spiers + + * remove duplicate "the" typo + + M bin/chkstow.in + +Tue Jun 11 14:13:51 2019 +0200 Brice Waegeneire + + * retrun exit code 1 when unknown option + + M bin/stow.in + +Tue Jun 11 10:53:28 2019 +0200 Brice Waegeneire + + * make non docker scripts more portable + + M build-docker.sh + M test-docker.sh + +Tue Jun 11 10:28:25 2019 +0200 Brice Waegeneire + + * fix dockerfile apt-get lock issue E: Could not open lock file + /var/cache/apt/archives/lock - open (2: No such file or directory) + E: Unable to lock the download directory + + + M docker/Dockerfile + +Wed Apr 3 09:48:15 2019 -0600 Will Aoki + + * Avoid dereferencing $ENV{HOME} if it is undefined + + M bin/stow.in + +Sat Feb 9 17:08:44 2019 +0000 Adam Spiers + + * Merge pull request #30 from aspiers/chkstow-stow-dir make chkstow + honour $STOW_DIR environment variable + +Sat Feb 9 17:02:47 2019 +0000 Adam Spiers + + * make chkstow honour $STOW_DIR environment variable Thanks to Matan + Nassau for reporting this deficiency. + + + M THANKS + M bin/chkstow.in + +Sun Feb 11 17:58:33 2018 +0000 Adam Spiers + + * add Jean Louis to THANKS file Forgot to do this in e7e6c7f. + + + M THANKS + +Sun Feb 11 17:55:40 2018 +0000 Adam Spiers + + * avoid "regex" abbreviation for consistency + + M doc/stow.texi + +Sun Feb 11 17:47:06 2018 +0000 Adam Spiers + + * fix erroneous glob examples in --ignore documentation Many thanks to + Daniel Shahaf for noticing this. + + http://lists.gnu.org/archive/html/bug-stow/2017-07/msg00000.html + + + M THANKS + M doc/stow.texi + +Sun Feb 11 11:52:56 2018 +0000 Adam Spiers + + * update aclocal.m4 using aclocal 1.15.1 + + M aclocal.m4 + +Sun Feb 11 11:47:39 2018 +0000 Adam Spiers + + * update the introductory text to clarify Stow's common usage Thanks to + Jean Louis for some suggestions on this. + + + M doc/stow.texi + +Sun Mar 19 21:12:46 2017 +0000 Adam Spiers + + * INSTALL.md: document how to build from git (#20) Fixes + https://github.com/aspiers/stow/issues/20 + + + M INSTALL.md + +Sat Mar 4 14:28:19 2017 +0000 Adam Spiers + + * fix typo in "Deleting Packages" chapter Thanks to Hongyi Zhao for + spotting this error and reporting it. + + + M THANKS + M doc/stow.texi + +Sun Dec 18 23:16:41 2016 +0000 Adam Spiers + + * clarify that ~/.stowrc args don't get processed by a shell Address + confusion reported here: + + http://lists.gnu.org/archive/html/bug-stow/2016-08/msg00000.html + + + M doc/stow.texi + +Sun Dec 18 23:14:39 2016 +0000 Adam Spiers + + * replace a "you" typo with better text The contents are prepended to + the arguments; they still come after the stow executable. + + + M doc/stow.texi + +Sun Dec 18 23:10:13 2016 +0000 Adam Spiers + + * fix documentation for --verbose It actually goes up to 5 these days. + Thanks to Kristoffer Haugsbakk for spotting that: + + http://lists.gnu.org/archive/html/bug-stow/2016-08/msg00000.html + + + M THANKS + M bin/stow.in + +Sun Nov 20 22:02:19 2016 +0000 Adam Spiers + + * Bump version to 2.3.0 + + M META.json + M META.yml + M configure.ac + +Sun Nov 20 21:45:17 2016 +0000 Adam Spiers + + * Prepare NEWS file for 2.3.0 release + + M NEWS + +Sun Nov 20 22:16:43 2016 +0000 Adam Spiers + + * HOWTO-RELEASE: use Docker to test before releasing Charles LeDoux did + some awesome work providing this Docker environment which can test + across multiple Perl versions using perlbrew, so it would be crazy + not to use it. + + + M doc/HOWTO-RELEASE + +Sun Nov 20 22:57:08 2016 +0000 Adam Spiers + + * ignore cover_db generated by Coveralls + + M .gitignore + +Sun Nov 20 22:16:10 2016 +0000 Adam Spiers + + * tag Docker images with the corresponding version number + + M build-docker.sh + M test-docker.sh + +Sun Nov 20 22:02:00 2016 +0000 Adam Spiers + + * use PAUSE upload for final validation step of release + + M doc/HOWTO-RELEASE + +Sun Nov 20 22:00:46 2016 +0000 Adam Spiers + + * make sure release tags are also pushed to GitHub + + M doc/HOWTO-RELEASE + +Sun Nov 20 21:58:31 2016 +0000 Adam Spiers + + * further refine the release process Let's try a new approach where we + increment the version number immediately after publishing a + release, not just before. + + This will mean that anyone who builds from git gets a version of + Stow which is higher than the release which was just cut, and this + could provide valuable debugging hints in case a bug report does + not clearly state whether the problem arose with the latest + release or with a build from git. + + + M doc/HOWTO-RELEASE + +Sun Nov 20 21:51:41 2016 +0000 Adam Spiers + + * whitespace cleanups + + M doc/HOWTO-RELEASE + M docker/Dockerfile + M docker/bootstrap-perls.sh + M docker/run-stow-tests.sh + M test-docker.sh + +Sun Nov 20 21:18:08 2016 +0000 Adam Spiers + + * THANKS: add some recent contributors + + M THANKS + +Sun Nov 20 21:17:46 2016 +0000 Adam Spiers + + * THANKS: clarify mention of Bob Glickstein + + M THANKS + +Sun Nov 20 20:55:14 2016 +0000 Adam Spiers + + * HOWTO-RELEASE: add a reminder to update THANKS Make sure the + maintainer always gives credit to contributors :-) + + + M doc/HOWTO-RELEASE + +Wed Oct 5 17:47:51 2016 +0100 Adam Spiers + + * Merge pull request #17 from jvkersch/enh/dot-files Special processing + for dotfiles + +Sun Jul 31 21:55:55 2016 +0100 Joris Vankerschaver + + * Special processing for dotfiles + + M MANIFEST + M bin/stow.in + M lib/Stow.pm.in + M lib/Stow/Util.pm.in + A t/dotfiles.t + +Sun Sep 25 19:32:08 2016 +0100 Adam Spiers + + * Merge pull request #16 from cledoux/feature/docker Added docker files + for local testing. + +Tue Sep 20 18:27:46 2016 +0100 Adam Spiers + + * fix naming of man page The title of the generated man page was ending + up as something like + + IO::FILE=IO(0XA719C0)(1) + + Also, with newer perls (e.g. v5.22.1), pod2man requires --name if + used within a pipeline. + + Closes #18. + + https://github.com/aspiers/stow/issues/18 + + + M Makefile.am + +Tue Aug 23 10:37:12 2016 +0100 Adam Spiers + + * remove superfluous space in function call Be consistent with style + elsewhere. + + + M lib/Stow.pm.in + +Tue May 10 15:00:13 2016 -0500 Charles LeDoux + + * Add docker files for local testing. + * Use docker to locally run tests on multiple perl versions + * perlbrew used to install multiple perls + * perl environments bootstrapped when image built + * Based on travis configuration + * Adds docker folder to MANIFEST.SKIP + * Running image runs all tests. + * If exit with no error, then all tests pass. + * ./build-docker.sh builds stow testing image. + * ./test-docker.sh runs stow testing image. + * Assumes built with options in build-docker.sh + * *-docker.sh scripts added to MANIFEST.SKIP + + + M MANIFEST.SKIP + A build-docker.sh + A docker/Dockerfile + A docker/bootstrap-perls.sh + A docker/run-stow-tests.sh + A test-docker.sh + +Sat Feb 27 12:19:57 2016 -0500 Lucas Theisen + + * fixed testutil to support cygwin which reports -z = true on + directories + + M t/testutil.pm + +Tue Nov 17 17:27:39 2015 +0000 Adam Spiers + + * another attempt to fix automake config d527094b was not the right fix + - Util.pm was being installed alongside Stow.pm under $(PMDIR). + This should be the correct fix. + + + M Makefile.am + +Tue Nov 17 01:50:27 2015 +0000 Adam Spiers + + * add coveralls badge + + M README.md + +Tue Nov 17 01:43:38 2015 +0000 Adam Spiers + + * add coveralls + + M .travis.yml + +Mon Nov 16 22:47:34 2015 +0000 Adam Spiers + + * add make distcheck and Module::Build to Travis tests + + M .travis.yml + M Makefile.am + +Mon Nov 16 22:50:58 2015 +0000 Adam Spiers + + * add .travis.yml to MANIFEST.SKIP + + M MANIFEST.SKIP + +Tue Nov 17 01:34:23 2015 +0000 Adam Spiers + + * fix make distcheck Stow/Util.pm was not being installed correctly + + + M Makefile.am + +Mon Nov 16 22:39:53 2015 +0000 Adam Spiers + + * add Travis CI badge to README.md + + M README.md + +Mon Nov 16 22:35:56 2015 +0000 Adam Spiers + + * fix breakage caused by converting files to Markdown + + M MANIFEST + M Makefile.am + M configure.ac + +Mon Nov 16 22:21:44 2015 +0000 Adam Spiers + + * convert INSTALL to Markdown + + D INSTALL + A INSTALL.md + M README.md + +Mon Nov 16 22:12:02 2015 +0000 Adam Spiers + + * convert README to Markdown + +R076 README README.md + +Mon Nov 16 21:56:45 2015 +0000 Adam Spiers + + * switch to Travis CI containers + + M .travis.yml + +Fri Nov 13 14:50:19 2015 +0000 Adam Spiers + + * Merge pull request #9 from Gnouc/master Allow directory with trailing + and leading spaces + +Fri Nov 13 11:57:21 2015 +0700 LE Manh Cuong + + * Allow directory with trailing and leading spaces + - The `sanitize_path_options` functions remove all trailing + and leading spaces. So any valid directory like ` 123`, + `123 ` can not be used + + - Also if there are two directories ` 123` and `123`, and if + user pick the ` 123` as option to `-d` or `-t`, then stow pick + directory `123` as the argument instead of ` 123` as user want. + + ``` + STOW_DIR=. stow -n -v3 -t \ 123 456 + stow dir is /tmp/test + stow dir path relative to target 123 is .. + cwd now 123 + cwd restored to /tmp/test + cwd now 123 + Planning stow of package 456... + Stowing contents of ../456 (cwd=/tmp/test/123) + Planning stow of package 456... done + cwd restored to /tmp/test + WARNING: in simulation mode so not modifying filesystem. + ``` + - This commit remove the check in `sanitize_path_options` + function, + and now stow can work with those directories. There have been a + check + for valid directory, so we are safe. + + + M bin/stow.in + M t/cli_options.t + +Fri Nov 13 11:13:06 2015 +0000 Adam Spiers + + * set up Travis CI + + A .travis.yml + +Fri Nov 13 12:04:52 2015 +0000 Adam Spiers + + * add IO::Scalar to build_requires + + M Build.PL + M META.json + M META.yml + +Wed Nov 11 12:25:19 2015 +0000 Adam Spiers + + * Do more validation on --dir / --target directories (#7) Previously + STOW_DIR=0 would cause the cwd to be used as the STOW_DIR. Make + that instead raise an error. Do similar validation on the target + directory. + + Closes #7 - https://github.com/aspiers/stow/pull/7 + + + M bin/stow.in + +Wed Nov 11 11:22:05 2015 +0000 Adam Spiers + + * Correctly handle empty STOW_DIR (#5, #6) In shell, a variable is often + considered unset even if it is set to the empty string. In other + words, + + STOW_DIR= stow [args] + + is an idiomatic alternative to writing: + + unset STOW_DIR + stow [args] + + and it also has the advantage of temporarily "unsetting" STOW_DIR + for a single command. + + Therefore we should treat STOW_DIR being set to the empty string + as equivalent to it not being set at all. + + Thanks to Cuong Manh Le for highlighting this issue! + + Fixes #6 - https://github.com/aspiers/stow/issues/6 Closes #5 - + https://github.com/aspiers/stow/pull/5 + + + M THANKS + M bin/stow.in + Mon Nov 9 12:37:09 2015 +0000 Adam Spiers * More fixes to "make distcheck" As with dc6a141d, the dependency of @@ -52,8 +1772,7 @@ Mon Nov 9 11:36:11 2015 +0000 Adam Spiers M META.yml M Makefile.am M NEWS - D lib/Stow/Util.pm - A lib/Stow/Util.pm.in +R099 lib/Stow/Util.pm lib/Stow/Util.pm.in Mon Nov 9 11:05:00 2015 +0000 Adam Spiers @@ -555,20 +2274,16 @@ Mon Jan 9 21:32:31 2012 +0000 Adam Spiers * Rename test files to reflect their purpose. M MANIFEST - A t/stow.t - D t/stow_contents.t - A t/unstow.t - D t/unstow_contents.t - D t/unstow_contents_orig.t - A t/unstow_orig.t +R099 t/stow_contents.t t/stow.t +R099 t/unstow_contents.t t/unstow.t +R099 t/unstow_contents_orig.t t/unstow_orig.t Mon Jan 9 21:31:46 2012 +0000 Adam Spiers * Rename stow.t to be more consistent with its purpose. M MANIFEST - A t/cli_options.t - D t/stow.t +R098 t/stow.t t/cli_options.t Mon Jan 9 22:10:19 2012 +0000 Adam Spiers @@ -1097,9 +2812,8 @@ Thu Nov 24 17:00:33 2011 +0000 Adam Spiers * Auto-generate ChangeLog from git M .gitignore - D ChangeLog M Makefile.am - A doc/ChangeLog.OLD +R099 ChangeLog doc/ChangeLog.OLD Thu Nov 24 16:59:45 2011 +0000 Adam Spiers @@ -1313,23 +3027,15 @@ Mon Nov 21 13:59:36 2011 +0000 Adam Spiers A META.json A META.yml M Makefile.am - A automake/install-sh - A automake/mdate-sh - A automake/missing - A bin/chkstow.in - A bin/stow.in - D chkstow.in +R100 install-sh automake/install-sh +R100 mdate-sh automake/mdate-sh +R100 missing automake/missing +R091 chkstow.in bin/chkstow.in +R096 stow.in bin/stow.in M configure.ac - A doc/stow.8 - A doc/stow.texi - A doc/texinfo.tex - D install-sh - D mdate-sh - D missing - D stow.8 - D stow.in - D stow.texi - D texinfo.tex +R099 stow.8 doc/stow.8 +R099 stow.texi doc/stow.texi +R099 texinfo.tex doc/texinfo.tex Mon Nov 21 14:07:39 2011 +0000 Adam Spiers @@ -1360,10 +3066,9 @@ Thu Nov 24 16:28:09 2011 +0000 Adam Spiers M t/parent.t M t/stow.t M t/stow_contents.t - A t/testutil.pm +R083 t/util.pm t/testutil.pm M t/unstow_contents.t M t/unstow_contents_orig.t - D t/util.pm Fri Nov 18 15:09:39 2011 +0000 Adam Spiers diff --git a/local/share/doc/stow/INSTALL.md b/local/share/doc/stow/INSTALL.md new file mode 100644 index 0000000..a85ad87 --- /dev/null +++ b/local/share/doc/stow/INSTALL.md @@ -0,0 +1,202 @@ +How to install GNU Stow +======================= + +Prerequisites +------------- + +Stow is a collection of Perl scripts and modules. You must have Perl +5.6.1 or later in order for it to run. The test suite also requires +the `Test::More` and `Test::Output` modules which can be obtained from +CPAN. They are also available as packages in some of the GNU/Linux +distributions. + +Installation methods +-------------------- + +Stow can either be installed via the standard GNU Autotools procedure +(`./configure && make install`) or since 2.1.0, via CPAN-style via +Module::Build. + +Advantages of the Autotools approach: + + - It's arguably more flexible. + + - It will install the documentation in Info, HTML, man, and PDF + formats. + +Advantages of the `Module::Build` approach: + + - It's more in keeping with the standard way to distribute CPAN + modules. + + - It performs dependency checking to ensure you have the necessary + Perl modules installed. + +Both approaches are described in detail below. However if you are +building from the git repository rather than an official release, +you first need to perform some extra steps: + +Preparatory steps required only when building from git +------------------------------------------------------ + +`configure` and `Makefile` are included in official releases of Stow, +but they are deliberately omitted from the git repository because they +are autogenerated. Therefore if you are installing directly from git, +you first need to generate them as follows. + +First `cd` to the directory containing the source code (and this +file), and then run: + + autoreconf -iv + +If this runs successfully then you are ready to continue with one of +the two installation methods below. + +Basic Installation via `Module::Build` +-------------------------------------- + +The steps in building Stow are: + +1. `cd` to the directory containing the source code (and this file). + +2. If you are building from an official GNU release tarball, type + `./configure && make` to configure stow for your system. If you + are building from a CPAN tarball, this step can be skipped. + + If `make` warns that the Perl module installation directory is + not in `@INC`, then you should run: + + eval `perl -V:siteprefix` + ./configure --prefix=$siteprefix && make + + to avoid a superfluous `use lib` line in your stow executable. + +3. Type `perl Build.PL`. + +4. Type `./Build install` to install the various files. As noted + above, this installs fewer files than the Autotools installation. + +Basic Installation via Autotools +-------------------------------- + +The steps in building Stow are: + +1. `cd` to the directory containing the source code (and this file). + +2. Type `./configure` to configure stow for your system. This step + will attempt to locate your copy of perl and set its location in + `Makefile.in`. You can use the normal arguments to change the + default installation paths (see below); additionally you can use + the + + --with-pmdir=/path/to/perl/modules + + option to manually choose where the Perl modules get installed. + However, if you don't, the `configure` script will go to great + lengths to try to choose a sensible default. + +3. Type `make install` to install the various files. If the chosen + installation directory for Perl modules is not included in Perl's + built-in `@INC` search path, the Makefile rules will automatically + insert a + + use lib "..."; + + line into the generated stow script to ensure that it can always + locate the Perl modules without needing to manually set `PERL5LIB`. + +4. You can remove the generated files from the source code directory + by typing `make clean`. To also remove the files that `configure` + created (so you can compile the package for a different computer), + type `make distclean`. There is also a `make maintainer-clean` + target, but that is intended mainly for stow's developers. If you + use it, you may have to get all sorts of other programs in order + to regenerate files that came with the distribution. + +Installation Names +------------------ + +By default, `make install` will install the package's files in +`/usr/local/bin` and `/usr/local/info`. You can specify an +installation prefix other than `/usr/local` by giving `configure` the +option `--prefix=PATH`. + +If the package supports it, you can cause programs to be installed +with an extra prefix or suffix on their names by giving `configure` +the option `--program-prefix=PREFIX` or `--program-suffix=SUFFIX`. + +Since `stow` is concerned with separating a package's installation +tree from its run-time tree, you might want to install `stow` into a +directory such as `/usr/local/stow/stow` but have it run out of +`/usr/local`. Do this by giving the run-time prefix (e.g., +/usr/local) to configure as described above; then run `make`; then run +`make install prefix=/usr/local/stow/stow`. For more information on +this technique, see the Stow manual. + +The configuration system +------------------------ + +The `configure` shell script attempts to guess correct values for +various system-dependent variables used during compilation. It uses +those values to create a `Makefile` and to create the `stow` script +itself, using Makefile.in and stow.in as templates. Finally, it +creates a shell script `config.status` that you can run in the future +to recreate the current configuration, a file `config.cache` that +saves the results of its tests to speed up reconfiguring, and a file +`config.log` containing other output. + +The file `configure.ac` is used to create `configure` by a program +called `autoconf`. You only need `configure.ac` if you want to change +it or regenerate `configure` using a newer version of `autoconf`. + +The file `Makefile.am` is used to create `Makefile.in` by a program +called `automake`. You only need `Makefile.am` if you want to change +it or regenerate `Makefile.in` using a newer version of `automake`. + +Sharing Defaults +---------------- + +If you want to set default values for `configure` scripts to share, +you can create a site shell script called `config.site` that gives +default values for variables like `CC`, `cache_file`, and `prefix`. +`configure` looks for `PREFIX/share/config.site` if it exists, then +`PREFIX/etc/config.site` if it exists. Or, you can set the +`CONFIG_SITE` environment variable to the location of the site script. +A warning: not all `configure` scripts look for a site script. + +Operation Controls +------------------ + +`configure` recognizes the following options to control how it +operates. + +`--cache-file=FILE` + Use and save the results of the tests in FILE instead of + `./config.cache`. Set FILE to `/dev/null` to disable caching, for + debugging `configure`. + +`--help` + Print a summary of the options to `configure`, and exit. + +`--quiet` +`--silent` +`-q` + Do not print messages saying which checks are being made. + +`--srcdir=DIR` + Look for the package's source code in directory DIR. Usually + `configure` can determine that directory automatically. + +`--version` + Print the version of Autoconf used to generate the `configure` + script, and exit. + +`configure` also accepts some other, not widely useful, options. + +License for this file +--------------------- + +Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. This file is offered as-is, +without any warranty. diff --git a/local/share/doc/stow/README b/local/share/doc/stow/README deleted file mode 100644 index d8df705..0000000 --- a/local/share/doc/stow/README +++ /dev/null @@ -1,53 +0,0 @@ -README for GNU Stow -=================== - -This is GNU Stow, a symlink farm manager program which takes distinct -packages of software and/or data located in separate directories on -the filesystem, and makes them appear to be installed in the same -place. For example, /usr/local/bin could contain symlinks to files -within /usr/local/stow/emacs/bin, /usr/local/stow/perl/bin etc., and -likewise recursively for any other subdirectories such as .../share, -.../man, and so on. - -This is particularly useful for keeping track of system-wide and -per-user installations of software built from source, but can also -facilitate a more controlled approach to management of configuration -files in the user's home directory, especially when coupled with -version control systems. - -Stow is implemented as a combination of a Perl script providing a CLI -interface, and a backend Perl module which does most of the work. - -You can get the latest information about Stow from the home page: - - http://www.gnu.org/software/stow/ - -License -------- - -Stow is free software, licensed under the GNU General Public License, -which can be found in the file COPYING. - -Installation ------------- - -See INSTALL for installation instructions. - -Feedback --------- - -Please do send comments, questions, and constructive criticism. The -mailing lists and any other communication channels are detailed on the -above home page. - -Brief history -------------- - -Stow was inspired by Carnegie Mellon's "Depot" program, but is -substantially simpler. Whereas Depot requires database files to keep -things in sync, Stow stores no extra state between runs, so there's no -danger (as there is in Depot) of mangling directories when file -hierarchies don't match the database. Also unlike Depot, Stow will -never delete any files, directories, or links that appear in a Stow -directory (e.g., /usr/local/stow/emacs), so it's always possible to -rebuild the target tree (e.g., /usr/local). diff --git a/local/share/doc/stow/README.md b/local/share/doc/stow/README.md new file mode 100644 index 0000000..525a573 --- /dev/null +++ b/local/share/doc/stow/README.md @@ -0,0 +1,101 @@ +[![Build Status](https://travis-ci.org/aspiers/stow.svg)](https://travis-ci.org/aspiers/stow) +[![Coverage Status](https://coveralls.io/repos/aspiers/stow/badge.svg?branch=master&service=github)](https://coveralls.io/github/aspiers/stow?branch=master) + +README for GNU Stow +=================== + +This README describes GNU Stow. This is not the definitive +documentation for Stow; for that, see the [info +manual](https://www.gnu.org/software/stow/manual/). + +Stow is a symlink farm manager program which takes distinct sets +of software and/or data located in separate directories on the +filesystem, and makes them all appear to be installed in a single +directory tree. + +Originally Stow was born to address the need to administer, upgrade, +install, and remove files in independent software packages without +confusing them with other files sharing the same file system space. +For instance, many years ago it used to be common to compile programs +such as Perl and Emacs from source and install them in `/usr/local`. +By using Stow, `/usr/local/bin` could contain symlinks to files within +`/usr/local/stow/emacs/bin`, `/usr/local/stow/perl/bin` etc., and +likewise recursively for any other subdirectories such as `.../share`, +`.../man`, and so on. + +While this is useful for keeping track of system-wide and per-user +installations of software built from source, in more recent times +software packages are often managed by more sophisticated package +management software such as +[`rpm`](https://en.wikipedia.org/wiki/Rpm_(software)), +[`dpkg`](https://en.wikipedia.org/wiki/Dpkg), and +[Nix](https://en.wikipedia.org/wiki/Nix_package_manager) / [GNU +Guix](https://en.wikipedia.org/wiki/GNU_Guix), or language-native +package managers such as Ruby's +[`gem`](https://en.wikipedia.org/wiki/RubyGems), Python's +[`pip`](https://en.wikipedia.org/wiki/Pip_(package_manager)), +Javascript's [`npm`](https://en.wikipedia.org/wiki/Npm_(software)), +and so on. + +However Stow is still used not only for software package management, +but also for other purposes, such as facilitating [a more controlled +approach to management of configuration files in the user's home +directory](http://brandon.invergo.net/news/2012-05-26-using-gnu-stow-to-manage-your-dotfiles.html), +especially when [coupled with version control +systems](http://lists.gnu.org/archive/html/info-stow/2011-12/msg00000.html). + +Stow was inspired by Carnegie Mellon's Depot program, but is +substantially simpler and safer. Whereas Depot required database files +to keep things in sync, Stow stores no extra state between runs, so +there's no danger (as there was in Depot) of mangling directories when +file hierarchies don't match the database. Also unlike Depot, Stow will +never delete any files, directories, or links that appear in a Stow +directory (e.g., `/usr/local/stow/emacs`), so it's always possible +to rebuild the target tree (e.g., `/usr/local`). + +Stow is implemented as a combination of a Perl script providing a CLI +interface, and a backend Perl module which does most of the work. + +You can get the latest information about Stow from the home page: + + http://www.gnu.org/software/stow/ + +License +------- + +Stow is free software, licensed under the GNU General Public License, +which can be found in the file [`COPYING`](COPYING). + +Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. This file is offered as-is, +without any warranty. + +Installation +------------ + +See [`INSTALL.md`](INSTALL.md) for installation instructions. + +Feedback +-------- + +Please do send comments, questions, and constructive criticism. The +mailing lists and any other communication channels are detailed on the +above home page. + +Brief history and authorship +---------------------------- + +Stow was inspired by Carnegie Mellon's "Depot" program, but is +substantially simpler. Whereas Depot requires database files to keep +things in sync, Stow stores no extra state between runs, so there's no +danger (as there is in Depot) of mangling directories when file +hierarchies don't match the database. Also unlike Depot, Stow will +never delete any files, directories, or links that appear in a Stow +directory (e.g., `/usr/local/stow/emacs`), so it's always possible to +rebuild the target tree (e.g., `/usr/local`). + +For a high-level overview of the contributions of the main developers +over the years, see [the `AUTHORS` file](AUTHORS). + +For a more detailed history, please see the `ChangeLog` file. diff --git a/local/share/doc/stow/manual-single.html b/local/share/doc/stow/manual-single.html index 6f112cc..7f288da 100644 --- a/local/share/doc/stow/manual-single.html +++ b/local/share/doc/stow/manual-single.html @@ -1,21 +1,23 @@ - + - + + + - - +approved by the Free Software Foundation. --> Stow - - + + + + + + + - + - - - - - - -
[Top][Contents][Index][ ? ]
- -

Stow

-

This manual describes GNU Stow 2.2.2 (9 November 2015), a -program for managing the installation of software packages. + + + + + +

+ + +

This manual describes GNU Stow 2.3.2-fixbug56727 (23 October 2023), a +symlink farm manager which takes distinct sets of software and/or data +located in separate directories on the filesystem, and makes them +appear to be installed in a single directory tree.

- - - - - - - - - - - - - - - - - - - - - - - - - - + +
+ +
+
+ +

1 Introduction

-
- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
- -

1. Introduction

- -

Stow is a tool for managing the installation of multiple software -packages in the same run-time directory tree. One historical difficulty -of this task has been the need to administer, upgrade, install, and -remove files in independent packages without confusing them with other -files sharing the same file system space. For instance, it is common to -install Perl and Emacs in ‘/usr/local’. When one does so, one -winds up with the following files(1) in ‘/usr/local/man/man1’: +

GNU Stow is a symlink farm manager which takes distinct sets of +software and/or data located in separate directories on the +filesystem, and makes them all appear to be installed in a single +directory tree.

-
 
a2p.1
+

Originally Stow was born to address the need to administer, upgrade, +install, and remove files in independent software packages without +confusing them with other files sharing the same file system space. +For instance, many years ago it used to be common to compile programs +such as Perl and Emacs from source and install them in +/usr/local. When one does so, one winds up with the following +files1 in +/usr/local/man/man1: +

+
+
a2p.1
 ctags.1
 emacs.1
 etags.1
 h2ph.1
 perl.1
 s2p.1
-
+

Now suppose it’s time to uninstall Perl. Which man pages -get removed? Obviously ‘perl.1’ is one of them, but it should not +get removed? Obviously perl.1 is one of them, but it should not be the administrator’s responsibility to memorize the ownership of individual files by separate packages.

@@ -197,194 +183,197 @@ installed in the common tree. Administration can be performed in the package’s private tree in isolation from clutter from other packages. Stow can then be used to update the symbolic links. The structure of each private tree should reflect the desired structure in the common -tree; i.e. (in the typical case) there should be a ‘bin’ directory -containing executables, a ‘man/man1’ directory containing section 1 +tree; i.e. (in the typical case) there should be a bin directory +containing executables, a man/man1 directory containing section 1 man pages, and so on.

+

While this is useful for keeping track of system-wide and per-user +installations of software built from source, in more recent times +software packages are often managed by more sophisticated package +management software such as +rpm, +dpkg, and +Nix / +GNU Guix, or +language-native package managers such as +Ruby’s gem, +Python’s +pip, Javascript’s npm, and so on. +

+

However Stow is still used not only for software package management, +but also for other purposes, such as facilitating a more controlled +approach to management of configuration files in the user’s home +directory2, +especially when coupled with version control +systems3. +

Stow was inspired by Carnegie Mellon’s Depot program, but is -substantially simpler and safer. Whereas Depot required database files -to keep things in sync, Stow stores no extra state between runs, so -there’s no danger (as there was in Depot) of mangling directories when -file hierarchies don’t match the database. Also unlike Depot, Stow will -never delete any files, directories, or links that appear in a Stow -directory (e.g., ‘/usr/local/stow/emacs’), so it’s always possible -to rebuild the target tree (e.g., ‘/usr/local’). +substantially simpler and safer. Whereas Depot required database +files to keep things in sync, Stow stores no extra state between runs, +so there’s no danger (as there was in Depot) of mangling directories +when file hierarchies don’t match the database. Also unlike Depot, +Stow will never delete any files, directories, or links that appear in +a Stow directory (e.g., /usr/local/stow/emacs), so it’s always +possible to rebuild the target tree (e.g., /usr/local). +

+

Stow is implemented as a combination of a Perl script providing a CLI +interface, and a backend Perl module which does most of the work.

For information about the latest version of Stow, you can refer to -http://www.gnu.org/software/stow/. +http://www.gnu.org/software/stow/.

-
- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
- -

2. Terminology

+
+ +
+ +

2 Terminology

- -

A package is a related collection of files and directories that + +

A package is a related collection of files and directories that you wish to administer as a unit — e.g., Perl or Emacs — and that needs to be installed in a particular directory structure — e.g., with -‘bin’, ‘lib’, and ‘man’ subdirectories. +bin, lib, and man subdirectories.

- -

A target directory is the root of a tree in which one or more -packages wish to appear to be installed. A common, but by no -means the only such location is ‘/usr/local’. The examples in this -manual will use ‘/usr/local’ as the target directory. + +

A target directory is the root of a tree in which one or more +packages wish to appear to be installed. A common, but by no +means the only such location is /usr/local. The examples in this +manual will use /usr/local as the target directory.

- -

A stow directory is the root of a tree containing separate + +

A stow directory is the root of a tree containing separate packages in private subtrees. When Stow runs, it uses the current directory as the default stow directory. The examples in this manual -will use ‘/usr/local/stow’ as the stow directory, so that -individual packages will be, for example, ‘/usr/local/stow/perl’ -and ‘/usr/local/stow/emacs’. +will use /usr/local/stow as the stow directory, so that +individual packages will be, for example, /usr/local/stow/perl +and /usr/local/stow/emacs.

- -

An installation image is the layout of files and directories + +

An installation image is the layout of files and directories required by a package, relative to the target directory. Thus, the -installation image for Perl includes: a ‘bin’ directory containing -‘perl’ and ‘a2p’ (among others); an ‘info’ directory -containing Texinfo documentation; a ‘lib/perl’ directory containing -Perl libraries; and a ‘man/man1’ directory containing man pages. +installation image for Perl includes: a bin directory containing +perl and a2p (among others); an info directory +containing Texinfo documentation; a lib/perl directory containing +Perl libraries; and a man/man1 directory containing man pages.

- - -

A package directory is the root of a tree containing the + + +

A package directory is the root of a tree containing the installation image for a particular package. Each package directory must reside in a stow directory — e.g., the package directory -‘/usr/local/stow/perl’ must reside in the stow directory -‘/usr/local/stow’. The name of a package is the name of its -directory within the stow directory — e.g., ‘perl’. +/usr/local/stow/perl must reside in the stow directory +/usr/local/stow. The name of a package is the name of its +directory within the stow directory — e.g., perl.

Thus, the Perl executable might reside in -‘/usr/local/stow/perl/bin/perl’, where ‘/usr/local’ is the -target directory, ‘/usr/local/stow’ is the stow directory, -‘/usr/local/stow/perl’ is the package directory, and -‘bin/perl’ within is part of the installation image. +/usr/local/stow/perl/bin/perl, where /usr/local is the +target directory, /usr/local/stow is the stow directory, +/usr/local/stow/perl is the package directory, and +bin/perl within is part of the installation image.

- - - -

A symlink is a symbolic link. A symlink can be relative or -absolute. An absolute symlink names a full path; that is, one -starting from ‘/’. A relative symlink names a relative path; that -is, one not starting from ‘/’. The target of a relative symlink is + + + +

A symlink is a symbolic link. A symlink can be relative or +absolute. An absolute symlink names a full path; that is, one +starting from /. A relative symlink names a relative path; that +is, one not starting from /. The target of a relative symlink is computed starting from the symlink’s own directory. Stow only creates relative symlinks.

-
- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
- -

3. Invoking Stow

+
+
+
+ +

3 Invoking Stow

-

The syntax of the stow command is: +

The syntax of the stow command is:

-
 
stow [options] [action flag] package …
-
+
+
stow [options] [action flag] package ...
+
-

Each package is the name of a package (e.g., ‘perl’) in the stow +

Each package is the name of a package (e.g., ‘perl’) in the stow directory that we wish to install into (or delete from) the target directory. The default action is to install the given packages, although alternate actions -may be specified by preceding the package name(s) with an action flag. +may be specified by preceding the package name(s) with an action flag.

The following options are supported:

-
-
-d dir
-
--dir=dir
-

Set the stow directory to dir. Defaults to the value of the environment -variable STOW_DIR if set, or the current directory otherwise. +

+
-d dir
+
--dir=dir
+

Set the stow directory to dir. Defaults to the value of the environment +variable STOW_DIR if set, or the current directory otherwise.

-
-t dir
-
--target=dir
-

Set the target directory to dir instead of the parent of the stow +

-t dir
+
--target=dir
+

Set the target directory to dir instead of the parent of the stow directory. Defaults to the parent of the stow directory, so it is typical to -execute stow from the directory ‘/usr/local/stow’. +execute stow from the directory /usr/local/stow.

-
--ignore=regexp
+
--ignore=regexp

This (repeatable) option lets you suppress acting on files that match the -given perl regular expression. For example, using the options +given Perl regular expression. For example, using the options

-
 
--ignore='*.orig' --ignore='*.dist'
-
+
+
--ignore='.*\.orig' --ignore='.*\.dist'
+
-

will cause stow to ignore files ending in ‘.orig’ or ‘.dist’. +

will cause stow to ignore files ending in .orig or .dist.

Note that the regular expression is anchored to the end of the filename, because this is what you will want to do most of the time.

Also note that by default Stow automatically ignores a “sensible” -built-in list of files and directories such as ‘CVS’, editor -backup files, and so on. See section Ignore Lists, for more details. +built-in list of files and directories such as CVS, editor +backup files, and so on. See Ignore Lists, for more details.

-
--defer=regexp
+
--defer=regexp

This (repeatable) option avoids stowing a file matching the given regular expression, if that file is already stowed by another package. -This is effectively the opposite of ‘--override’. +This is effectively the opposite of --override.

-

(N.B. the name ‘--defer’ was chosen in the sense that the package +

(N.B. the name --defer was chosen in the sense that the package currently being stowed is treated with lower precedence than any already installed package, not in the sense that the operation is being postponed to be run at a later point in time; do not confuse -this nomenclature with the wording used in Deferred Operation.) +this nomenclature with the wording used in Deferred Operation.)

For example, the following options

-
 
--defer=man --defer=info
-
+
+
--defer=man --defer=info
+

will cause stow to skip over pre-existing man and info pages.

-

Equivalently, you could use ‘--defer='man|info'’ since the -argument is just a Perl regex. +

Equivalently, you could use ‘--defer='man|info'’ since the +argument is just a Perl regular expression.

Note that the regular expression is anchored to the beginning of the path relative to the target directory, because this is what you will want to do most of the time.

-
--override=regexp
+
--override=regexp

This (repeatable) option forces any file matching the regular expression to be stowed, even if the file is already stowed to another package. For example, the following options

-
 
--override=man --override=info
-
+
+
--override=man --override=info
+

will permit stow to overwrite links that point to pre-existing man and info pages that are owned by stow and would otherwise cause a conflict. @@ -393,20 +382,38 @@ pages that are owned by stow and would otherwise cause a conflict. the target directory, because this is what you will want to do most of the time.

-
--no-folding
+
--dotfiles
-

This disables any further tree folding or tree refolding. -If a new subdirectory is encountered whilst stowing a new package, the -subdirectory is created within the target, and its contents are -symlinked, rather than just creating a symlink for the directory. If -removal of symlinks whilst unstowing a package causes a subtree to be -foldable (i.e. only containing symlinks to a single package), that -subtree will not be removed and replaced with a symlink. +

Enable special handling for dotfiles (files or folders whose +name begins with a period) in the package directory. If this option is +enabled, Stow will add a preprocessing step for each file or folder +whose name begins with ‘dot-’, and replace the ‘dot-’ prefix +in the name by a period ‘.’. This is useful when Stow is used to +manage collections of dotfiles, to avoid having a package directory +full of hidden files. +

+

For example, suppose we have a package containing two files, +stow/dot-bashrc and stow/dot-emacs.d/init.el. With this +option, Stow will create symlinks from .bashrc to +stow/dot-bashrc and from .emacs.d/init.el to +stow/dot-emacs.d/init.el. Any other files, whose name does not +begin with ‘dot-’, will be processed as usual.

-
-
--adopt
-

Warning! This behaviour is specifically intended to alter the +

--no-folding
+
+

This disables any further tree folding (see tree folding) or +refolding (see tree refolding). If a new subdirectory is +encountered whilst stowing a new package, the subdirectory is created +within the target, and its contents are symlinked, rather than just +creating a symlink for the directory. If removal of symlinks whilst +unstowing a package causes a subtree to be foldable (i.e. only +containing symlinks to a single package), that subtree will not be +removed and replaced with a symlink. +

+
+
--adopt
+

Warning! This behaviour is specifically intended to alter the contents of your stow directory. If you do not want that, this option is not for you.

@@ -423,190 +430,149 @@ changing. of a version control system, because it allows files in the target tree, with potentially different contents to the equivalent versions in the stow package’s installation image, to be adopted into the -package, then compared by running something like ‘git diff ...’ -inside the stow package, and finally either kept (e.g. via ‘git -commit ...’) or discarded (‘git checkout HEAD ...’). +package, then compared by running something like ‘git diff ...’ +inside the stow package, and finally either kept (e.g. via ‘git +commit ...’) or discarded (‘git checkout HEAD ...’).

- -
-
-n
-
--no
-
--simulate
+
+-n
+
--no
+
--simulate

Do not perform any operations that modify the file system; in combination with -‘-v’ can be used to merely show what would happen. +-v can be used to merely show what would happen.

-
-
-v
-
--verbose[=n]
+
-v
+
--verbose[=n]

Send verbose output to standard error describing what Stow is -doing. Verbosity levels are 0, 1, 2, and 3; 0 is the default. Using -‘-v’ or ‘--verbose’ increases the verbosity by one; using -‘--verbose=n’ sets it to n. +doing. Verbosity levels are from 0 to 5; 0 is the default. Using +-v or --verbose increases the verbosity by one; using +‘--verbose=n’ sets it to n.

-
-p
-
--compat
+
-p
+
--compat

Scan the whole target tree when unstowing. By default, only -directories specified in the installation image are scanned +directories specified in the installation image are scanned during an unstow operation. Scanning the whole tree can be prohibitive if your target tree is very large. This option restores -the legacy behaviour; however, the ‘--badlinks’ option to the -chkstow utility may be a better way of ensuring that your -installation does not have any dangling symlinks (see section Target Maintenance). +the legacy behaviour; however, the --badlinks option to the +chkstow utility may be a better way of ensuring that your +installation does not have any dangling symlinks (see Target Maintenance).

-
-V
-
--version
+
-V
+
--version

Show Stow version number, and exit.

-
-h
-
--help
+
-h
+
--help

Show Stow command syntax, and exit.

-

The following action flags are supported: +

The following action flags are supported:

-
-
-D
-
--delete
-

Delete (unstow) the package name(s) that follow this option from the target +

+
-D
+
--delete
+

Delete (unstow) the package name(s) that follow this option from the target directory. This option may be repeated any number of times.

-
-R
-
--restow
+
-R
+
--restow

Restow (first unstow, then stow again) the package names that follow this option. This is useful for pruning obsolete symlinks from the target tree after updating the software in a package. This option may be repeated any number of times.

-
-S
-
--stow
+
-S
+
--stow

explictly stow the package name(s) that follow this option. May be -omitted if you are not using the ‘-D’ or ‘-R’ options in the -same invocation. See section Mixing Operations, for details of when you +omitted if you are not using the -D or -R options in the +same invocation. See Mixing Operations, for details of when you might like to use this feature. This option may be repeated any number of times.

-
- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
- -

4. Ignore Lists

+
+
+
+ +

4 Ignore Lists

- - + + - - - - - -
- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
- -

4.1 Motivation For Ignore Lists

+ +
+
+ +

4.1 Motivation For Ignore Lists

In many situations, there will exist files under the package directories which it would be undesirable to stow into the target directory. For example, files related version control such as -‘.gitignore’, ‘CVS’, ‘*,v’ (RCS files) should typically +.gitignore, CVS, *,v (RCS files) should typically not have symlinks from the target tree pointing to them. Also there may be files or directories relating to the build of the package which are not needed at run-time.

In these cases, it can be rather cumbersome to specify a -‘--ignore’ parameter for each file or directory to be ignored. +--ignore parameter for each file or directory to be ignored. This could be worked around by ensuring the existence of -‘~/.stowrc’ containing multiple ‘--ignore’ lines, or if a +~/.stowrc containing multiple --ignore lines, or if a different set of files/directories should be ignored depending on -which stow package is involved, a ‘.stowrc’ file for each stow +which stow package is involved, a .stowrc file for each stow package, but this would require the user to ensure that they were in the correct directory before invoking stow, which would be tedious and error-prone. Furthermore, since Stow shifts parameters from -‘.stowrc’ onto ARGV at run-time, it could clutter up the process +.stowrc onto ARGV at run-time, it could clutter up the process table with excessively long parameter lists, or even worse, exceed the operating system’s limit for process arguments.

- -

Therefore in addition to ‘--ignore’ parameters, Stow provides a + +

Therefore in addition to --ignore parameters, Stow provides a way to specify lists of files and directories to ignore.

-
- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
- -

4.2 Types And Syntax Of Ignore Lists

+
+
+
+ +

4.2 Types And Syntax Of Ignore Lists

If you put Perl regular expressions, one per line, in a -‘.stow-local-ignore’ file within any top level package directory, +.stow-local-ignore file within any top level package directory, in which case any file or directory within that package matching any of these regular expressions will be ignored. In the absence of this package-specific ignore list, Stow will instead use the contents of -‘~/.stow-global-ignore’, if it exists. If neither the +~/.stow-global-ignore, if it exists. If neither the package-local or global ignore list exist, Stow will use its own built-in default ignore list, which serves as a useful example of the format of these ignore list files:

-
 
# Comments and blank lines are allowed.
+
+
# Comments and blank lines are allowed.
 
 RCS
 .+,v
@@ -628,93 +594,78 @@ _darcs
 ^/README.*
 ^/LICENSE.*
 ^/COPYING
-
+

Stow first iterates through the chosen ignore list (built-in, global, or package-local) as per above, stripping out comments (if you want to -include the ‘#’ symbol in a regular expression, escape it with a +include the ‘#’ symbol in a regular expression, escape it with a blackslash) and blank lines, placing each regular expressions into one -of two sets depending on whether it contains the ‘/’ forward +of two sets depending on whether it contains the ‘/’ forward slash symbol.

Then in order to determine whether a file or directory should be ignored:

-
    -
  1. -Stow calculates its path relative to the top-level package directory, -prefixing that with ‘/’. If any of the regular expressions -containing a ‘/exactly(2) match -a subpath(3) of this relative path, then the file or +
      +
    1. Stow calculates its path relative to the top-level package directory, +prefixing that with ‘/’. If any of the regular expressions +containing a ‘/exactly4 match +a subpath5 of this relative path, then the file or directory will be ignored. -
    2. -If none of the regular expressions containing a ‘/’ match in the +
    3. If none of the regular expressions containing a ‘/’ match in the manner described above, Stow checks whether the -basename(4) of the file or directory matches -exactly against the remaining regular expressions which do not -contain a ‘/’, and if so, ignores the file or directory. +basename6 of the file or directory matches +exactly against the remaining regular expressions which do not +contain a ‘/’, and if so, ignores the file or directory. -
    4. -Otherwise, the file or directory is not ignored. +
    5. Otherwise, the file or directory is not ignored.
    -

    For example, if a file ‘bazqux’ is in the ‘foo/bar’ +

    For example, if a file bazqux is in the foo/bar subdirectory of the package directory, Stow would use -‘/foo/bar/bazqux’ as the text for matching against regular -expressions which contain ‘/’, and ‘bazqux’ as the text for -matching against regular expressions which don’t contain ‘/’. -Then regular expressions ‘bazqux’, ‘baz.*’, ‘.*qux’, -‘bar/.*x’, and ‘^/foo/.*qux’ would all match (causing the -file to be ignored), whereas ‘bar’, ‘baz’, ‘qux’, and -‘o/bar/b’ would not (although ‘bar’ would cause its parent +‘/foo/bar/bazqux’ as the text for matching against regular +expressions which contain ‘/’, and ‘bazqux’ as the text for +matching against regular expressions which don’t contain ‘/’. +Then regular expressions ‘bazqux’, ‘baz.*’, ‘.*qux’, +‘bar/.*x’, and ‘^/foo/.*qux’ would all match (causing the +file to be ignored), whereas ‘bar’, ‘baz’, ‘qux’, and +‘o/bar/b’ would not (although ‘bar’ would cause its parent directory to be ignored and prevent Stow from recursing into that -anyway, in which case the file ‘bazqux’ would not even be +anyway, in which case the file bazqux would not even be considered for stowing).

    As a special exception to the above algorithm, any -‘.stow-local-ignore’ present in the top-level package directory -is always ignored, regardless of the contents of any ignore +.stow-local-ignore present in the top-level package directory +is always ignored, regardless of the contents of any ignore list, because this file serves no purpose outside the stow directory.

    -
    - - - - - - - - - - - - - - - - -
    [ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
    - -

    4.3 Justification For Yet Another Set Of Ignore Files

    +
    +
+
+ +

4.3 Justification For Yet Another Set Of Ignore Files

The reader may note that this format is very similar to existing -ignore list file formats, such as those for cvs, git, -rsync etc., and wonder if another set of ignore lists is +ignore list file formats, such as those for cvs, git, +rsync etc., and wonder if another set of ignore lists is justified. However there are good reasons why Stow does not simply -check for the presence of say, ‘.cvsignore’, and use that if it +check for the presence of say, .cvsignore, and use that if it exists. Firstly, there is no guarantee that a stow package would contain any version control meta-data, or permit introducing this if -it didn’t already exist. +it didn’t already exist.

Secondly even if it did, version control system ignore lists generally -reflect build-time ignores rather than install-time, and +reflect build-time ignores rather than install-time, and there may be some intermediate or temporary files on those ignore lists generated during development or at build-time which it would be inappropriate to stow, even though many files generated at build-time (binaries, libraries, documentation etc.) certainly do need to be -stowed. Similarly, if a file is not in the version control +stowed. Similarly, if a file is not in the version control system’s ignore list, there is no way of knowing whether the file is intended for end use, let alone whether the version control system is tracking it or not. @@ -724,28 +675,17 @@ systems do not provide sufficient information for Stow to determine which files and directories to stow, and so it makes sense for Stow to support independent ignore lists.

-
- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
- -

5. Installing Packages

+
+
+ +
+ +

5 Installing Packages

- +

The default action of Stow is to install a package. This means creating symlinks in the target tree that point into the package tree. Stow attempts to do this with as few symlinks as possible; in other words, if @@ -753,224 +693,137 @@ Stow can create a single symlink that points to an entire subtree within the package tree, it will choose to do that rather than create a directory in the target tree and populate it with symlinks.

-

-


- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
-

5.1 Tree folding

- - - + +
+

5.1 Tree folding

+ + +

For example, suppose that no packages have yet been installed in -‘/usr/local’; it’s completely empty (except for the ‘stow’ +/usr/local; it’s completely empty (except for the stow subdirectory, of course). Now suppose the Perl package is installed. Recall that it includes the following directories in its installation -image: ‘bin’; ‘info’; ‘lib/perl’; ‘man/man1’. -Rather than creating the directory ‘/usr/local/bin’ and populating -it with symlinks to ‘../stow/perl/bin/perl’ and -‘../stow/perl/bin/a2p’ (and so on), Stow will create a -single symlink, ‘/usr/local/bin’, which points to -‘stow/perl/bin’. In this way, it still works to refer to -‘/usr/local/bin/perl’ and ‘/usr/local/bin/a2p’, and fewer -symlinks have been created. This is called tree folding, since an +image: bin; info; lib/perl; man/man1. +Rather than creating the directory /usr/local/bin and populating +it with symlinks to ../stow/perl/bin/perl and +../stow/perl/bin/a2p (and so on), Stow will create a +single symlink, /usr/local/bin, which points to +stow/perl/bin. In this way, it still works to refer to +/usr/local/bin/perl and /usr/local/bin/a2p, and fewer +symlinks have been created. This is called tree folding, since an entire subtree is “folded” into a single symlink.

To complete this example, Stow will also create the symlink -‘/usr/local/info’ pointing to ‘stow/perl/info’; the symlink -‘/usr/local/lib’ pointing to ‘stow/perl/lib’; and the symlink -‘/usr/local/man’ pointing to ‘stow/perl/man’. +/usr/local/info pointing to stow/perl/info; the symlink +/usr/local/lib pointing to stow/perl/lib; and the symlink +/usr/local/man pointing to stow/perl/man.

Now suppose that instead of installing the Perl package into an empty target tree, the target tree is not empty to begin with. Instead, it contains several files and directories installed under a different -system-administration philosophy. In particular, ‘/usr/local/bin’ -already exists and is a directory, as are ‘/usr/local/lib’ and -‘/usr/local/man/man1’. In this case, Stow will descend into -‘/usr/local/bin’ and create symlinks to -‘../stow/perl/bin/perl’ and ‘../stow/perl/bin/a2p’ (etc.), -and it will descend into ‘/usr/local/lib’ and create the -tree-folding symlink ‘perl’ pointing to -‘../stow/perl/lib/perl’, and so on. As a rule, Stow only +system-administration philosophy. In particular, /usr/local/bin +already exists and is a directory, as are /usr/local/lib and +/usr/local/man/man1. In this case, Stow will descend into +/usr/local/bin and create symlinks to +../stow/perl/bin/perl and ../stow/perl/bin/a2p (etc.), +and it will descend into /usr/local/lib and create the +tree-folding symlink perl pointing to +../stow/perl/lib/perl, and so on. As a rule, Stow only descends as far as necessary into the target tree when it can create a tree-folding symlink. However, this behaviour can be changed via -the ‘--no-folding’ option; see section Invoking Stow. +the --no-folding option; see Invoking Stow.

-

-


- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
-

5.2 Tree unfolding

- - - - +
+
+

5.2 Tree unfolding

+ + + +

The time often comes when a tree-folding symlink has to be undone because another package uses one or more of the folded subdirectories in -its installation image. This operation is called splitting open or -unfolding a folded tree. It involves removing the original symlink from +its installation image. This operation is called splitting open or +unfolding a folded tree. It involves removing the original symlink from the target tree, creating a true directory in its place, and then populating the -new directory with symlinks to the newly-installed package and to +new directory with symlinks to the newly-installed package and to the old package that used the old symlink. For example, suppose that -after installing Perl into an empty ‘/usr/local’, we wish to -install Emacs. Emacs’s installation image includes a ‘bin’ -directory containing the ‘emacs’ and ‘etags’ executables, +after installing Perl into an empty /usr/local, we wish to +install Emacs. Emacs’s installation image includes a bin +directory containing the emacs and etags executables, among others. Stow must make these files appear to be installed -in ‘/usr/local/bin’, but presently ‘/usr/local/bin’ is a -symlink to ‘stow/perl/bin’. Stow therefore takes the -following steps: the symlink ‘/usr/local/bin’ is deleted; the -directory ‘/usr/local/bin’ is created; links are made from -‘/usr/local/bin’ to ‘../stow/emacs/bin/emacs’ and -‘../stow/emacs/bin/etags’; and links are made from -‘/usr/local/bin’ to ‘../stow/perl/bin/perl’ and -‘../stow/perl/bin/a2p’. +in /usr/local/bin, but presently /usr/local/bin is a +symlink to stow/perl/bin. Stow therefore takes the +following steps: the symlink /usr/local/bin is deleted; the +directory /usr/local/bin is created; links are made from +/usr/local/bin to ../stow/emacs/bin/emacs and +../stow/emacs/bin/etags; and links are made from +/usr/local/bin to ../stow/perl/bin/perl and +../stow/perl/bin/a2p.

-
- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
-

5.3 Ownership

- +
+
+

5.3 Ownership

+

When splitting open a folded tree, Stow makes sure that the symlink it is about to remove points inside a valid package in the -current stow directory. Stow will never delete anything +current stow directory. Stow will never delete anything that it doesn’t own. Stow “owns” everything living in the target tree that points into a package in the stow directory. Anything Stow owns, it can recompute if lost: symlinks that point into a package in the stow directory, or directories that only contain symlinks that stow “owns”. Note that by this definition, Stow doesn’t “own” anything -in the stow directory or in any of the packages. +in the stow directory or in any of the packages.

-
- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
-

5.4 Conflicts during installation

- - +
+
+

5.4 Conflicts during installation

+ +

If Stow needs to create a directory or a symlink in the target tree and it cannot because that name is already in use and is not owned -by Stow, then a conflict has arisen. See section Conflicts. +by Stow, then a conflict has arisen. See Conflicts.

-
- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
- -

6. Deleting Packages

+
+
+
+
+ +

6 Deleting Packages

- -

When the ‘-D’ option is given, the action of Stow is to + +

When the -D option is given, the action of Stow is to delete a package from the target tree. Note that Stow will not -delete anything it doesn’t “own”. Deleting a package does not +delete anything it doesn’t “own”. Deleting a package does not mean removing it from the stow directory or discarding the package tree.

To delete a package, Stow recursively scans the target tree, skipping over any -directory that is not included in the installation image.(5) -For example, if the target directory is ‘/usr/local’ and the -installation image for the package being deleted has only a ‘bin’ -directory and a ‘man’ directory at the top level, then we only scan -‘/usr/local/bin’ and ‘/usr/local/bin/man’, and not -‘/usr/local/lib’ or ‘/usr/local/share’, or for that matter -‘/usr/local/stow’. Any symlink it finds that points into the package +directory that is not included in the installation image.7 +For example, if the target directory is /usr/local and the +installation image for the package being deleted has only a bin +directory and a man directory at the top level, then we only scan +/usr/local/bin and /usr/local/man, and not +/usr/local/lib or /usr/local/share, or for that matter +/usr/local/stow. Any symlink it finds that points into the package being deleted is removed. Any directory that contained only symlinks to the package being deleted is removed.

-

-


- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
-

6.1 Refolding “foldable” trees.

- - + +
+

6.1 Refolding “foldable” trees.

+ +

After removing symlinks and empty subdirectories, any directory that contains only symlinks to a single other package is considered to be a @@ -978,34 +831,23 @@ previously “folded” tree that was “split open.” Stow wi the tree by removing the symlinks to the surviving package, removing the directory, then linking the directory back to the surviving package. However, this behaviour can be prevented via the -‘--no-folding’ option; see section Invoking Stow. +--no-folding option; see Invoking Stow.

-
- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
- -

7. Conflicts

+
+
+
+
+ +

7 Conflicts

- +

If, during installation, a file or symlink exists in the target tree and has the same name as something Stow needs to create, and if the existing name is not a folded tree that can be split open, then a -conflict has arisen. A conflict also occurs if a directory exists +conflict has arisen. A conflict also occurs if a directory exists where Stow needs to place a symlink to a non-directory. On the other hand, if the existing name is merely a symlink that already points where Stow needs it to, then no conflict has occurred. (Thus it @@ -1017,27 +859,12 @@ directories, can actually take a long time (a number of seconds). Moreover, an accurate analysis of potential conflicts requires us to take into account all of these operations.

-

-


- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
-

7.1 Deferred Operation

- + +
+

7.1 Deferred Operation

+

Since version 2.0, Stow now adopts a two-phase algorithm, first scanning for any potential conflicts before any stowing or unstowing @@ -1050,319 +877,271 @@ being partially stowed or unstowed due to conflicts. operation could be aborted mid-flow, leaving the target tree in an inconsistent state.

-
- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
- -

8. Mixing Operations

- +
+
+
+
+ +

8 Mixing Operations

+

Since version 2.0, multiple distinct actions can be specified in a single invocation of GNU Stow. For example, to update an installation of Emacs from version 21.3 to 21.4a you can now do the following:

-
 
stow -D emacs-21.3 -S emacs-21.4a
-
+
+
stow -D emacs-21.3 -S emacs-21.4a
+

which will replace emacs-21.3 with emacs-21.4a using a single invocation.

- +

This is much faster and cleaner than performing two separate invocations of stow, because redundant folding/unfolding operations can be factored out. In addition, all the operations are calculated -and merged before being executed (see Deferred Operation), so the +and merged before being executed (see Deferred Operation), so the amount of of time in which GNU Emacs is unavailable is minimised.

You can mix and match any number of actions, for example,

-
 
stow -S pkg1 pkg2 -D pkg3 pkg4 -S pkg5 -R pkg6
-
+
+
stow -S pkg1 pkg2 -D pkg3 pkg4 -S pkg5 -R pkg6
+

will unstow pkg3, pkg4 and pkg6, then stow pkg1, pkg2, pkg5 and pkg6.

-
- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
- -

9. Multiple Stow Directories

+
+
+
+ +

9 Multiple Stow Directories

If there are two or more system administrators who wish to maintain software separately, or if there is any other reason to want two or more -stow directories, it can be done by creating a file named ‘.stow’ -in each stow directory. The presence of ‘/usr/local/foo/.stow’ -informs Stow that, though ‘foo’ is not the current stow +stow directories, it can be done by creating a file named .stow +in each stow directory. The presence of /usr/local/foo/.stow +informs Stow that, though foo is not the current stow directory, even if it is a subdirectory of the target directory, -nevertheless it is a stow directory and as such Stow -doesn’t “own” anything in it (see section Installing Packages). This will -protect the contents of ‘foo’ from a ‘stow -D’, for instance. +nevertheless it is a stow directory and as such Stow +doesn’t “own” anything in it (see Installing Packages). This will +protect the contents of foo from a ‘stow -D’, for instance.

When multiple stow directories share a target tree, if a tree-folding symlink is encountered and needs to be split open during an installation, as long as the top-level stow directory into which the -existing symlink points contains ‘.stow’, Stow knows how to split +existing symlink points contains .stow, Stow knows how to split open the tree in the correct manner.

-
- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
- -

10. Target Maintenance

+
+
+
+ +

10 Target Maintenance

- +

From time to time you will need to clean up your target tree. Since -version 2, Stow provides a new utility chkstow to help with +version 2, Stow provides a new utility chkstow to help with this. It includes three operational modes which performs checks that would generally be too expensive to be performed during normal stow execution.

-

The syntax of the chkstow command is: +

The syntax of the chkstow command is:

-
 
chkstow [options]
-
+
+
chkstow [options]
+

The following options are supported:

-
-
-t dir
-
--target=dir
-

Set the target directory to dir instead of the parent of the stow +

+
-t dir
+
--target=dir
+

Set the target directory to dir instead of the parent of the stow directory. Defaults to the parent of the stow directory, so it is typical to -execute stow from the directory ‘/usr/local/stow’. +execute stow from the directory /usr/local/stow.

-
-b
-
--badlinks
+
-b
+
--badlinks

Checks target directory for bogus symbolic links. That is, links that point to non-existent files.

-
-a
-
--aliens
+
-a
+
--aliens

Checks for files in the target directory that are not symbolic links. The target directory should be managed by stow alone, except for directories that -contain a ‘.stow’ file. +contain a .stow file.

-
-l
-
--list
+
-l
+
--list

Will display the target package for every symbolic link in the stow target directory.

-
- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
- -

11. Resource Files

- - +
+
+
+ +

11 Resource Files

+ + -

Default command line options may be set in ‘.stowrc’ (current directory) or -‘~/.stowrc’ (home directory). These are parsed in that order, and effectively -prepended to you command line. This feature can be used for some interesting -effects. +

Default command line options may be set in .stowrc (current +directory) or ~/.stowrc (home directory). These are parsed in +that order, and are appended together if they both exist. The effect of +the options in the resource file is similar to simply prepending the +options to the command line. This feature can be used for some +interesting effects.

For example, suppose your site uses more than one stow directory, perhaps in order to share around responsibilities with a number of systems administrators. One of the administrators might have the following in their -‘~/.stowrc’ file: +~/.stowrc file:

-
 
--dir=/usr/local/stow2
+
+
--dir=/usr/local/stow2
 --target=/usr/local
 --ignore='~'
 --ignore='^CVS'
-
+
-

so that the stow command will default to operating on the -‘/usr/local/stow2’ directory, with ‘/usr/local’ as the +

so that the stow command will default to operating on the +/usr/local/stow2 directory, with /usr/local as the target, and ignoring vi backup files and CVS directories.

-

If you had a stow directory ‘/usr/local/stow/perl-extras’ that +

If you had a stow directory /usr/local/stow/perl-extras that was only used for Perl modules, then you might place the following in -‘/usr/local/stow/perl-extras/.stowrc’: +/usr/local/stow/perl-extras/.stowrc:

-
 
--dir=/usr/local/stow/perl-extras
+
+
--dir=/usr/local/stow/perl-extras
 --target=/usr/local
 --override=bin
 --override=man
 --ignore='perllocal\.pod'
 --ignore='\.packlist'
 --ignore='\.bs'
-
+ -

so that when you are in the ‘/usr/local/stow/perl-extras’ -directory, stow will regard any subdirectories as stow -packages, with ‘/usr/local’ as the target (rather than the -immediate parent directory ‘/usr/local/stow’), overriding any +

so that when you are in the /usr/local/stow/perl-extras +directory, stow will regard any subdirectories as stow +packages, with /usr/local as the target (rather than the +immediate parent directory /usr/local/stow), overriding any pre-existing links to bin files or man pages, and ignoring some cruft that gets installed by default.

- -
- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
- -

12. Compile-time vs Install-time

+

If an option is provided both on the command line and in a resource file, +the command line option takes precedence. For options that provide a single +value, such as --target or --dir, the command line +option will overwrite any options in the resource file. For options that can +be given more than once, --ignore for example, command line +options and resource options are appended together. +

+

For options that take a file path, environment variables and the tilde +character (~) are expanded. An environment variable can be +given in either the $VAR or ${VAR} form. To +prevent expansion, escape the $ or ~ with a +backslash. +

+

The options -D, -S, and -R are ignored in +resource files. This is also true of any package names given in the +resource file. +

+
+ +
+ +

12 Compile-time vs Install-time

Software whose installation is managed with Stow needs to be installed -in one place (the package directory, e.g. ‘/usr/local/stow/perl’) +in one place (the package directory, e.g. /usr/local/stow/perl) but needs to appear to run in another place (the target tree, e.g., -‘/usr/local’). Why is this important? What’s wrong with Perl, for -instance, looking for its files in ‘/usr/local/stow/perl’ instead -of in ‘/usr/local’? +/usr/local). Why is this important? What’s wrong with Perl, for +instance, looking for its files in /usr/local/stow/perl instead +of in /usr/local?

The answer is that there may be another package, e.g., -‘/usr/local/stow/perl-extras’, stowed under ‘/usr/local’. If -Perl is configured to find its files in ‘/usr/local/stow/perl’, it -will never find the extra files in the ‘perl-extras’ package, even +/usr/local/stow/perl-extras, stowed under /usr/local. If +Perl is configured to find its files in /usr/local/stow/perl, it +will never find the extra files in the ‘perl-extras’ package, even though they’re intended to be found by Perl. On the other hand, if Perl -looks for its files in ‘/usr/local’, then it will find the -intermingled Perl and ‘perl-extras’ files. +looks for its files in /usr/local, then it will find the +intermingled Perl and ‘perl-extras’ files.

This means that when you compile a package, you must tell it the location of the run-time, or target tree; but when you install it, you must place it in the stow tree.

-
- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
-

12.1 Advice on changing compilation and installation parameters

+ +
+

12.1 Advice on changing compilation and installation parameters

Some software packages allow you to specify, at compile-time, separate locations for installation and for run-time. Perl is one such package; -see Perl and Perl 5 Modules. Others allow you to compile the -package, then give a different destination in the ‘make install’ +see Perl and Perl 5 Modules. Others allow you to compile the +package, then give a different destination in the ‘make install’ step without causing the binaries or other files to get rebuilt. Most GNU software falls into this category; Emacs is a notable exception. -See section GNU Emacs, and Other FSF Software. +See GNU Emacs, and Other FSF Software.

Still other software packages cannot abide the idea of separate -installation and run-time locations at all. If you try to ‘make -install prefix=/usr/local/stow/foo’, then first the whole package -will be recompiled to hardwire the ‘/usr/local/stow/foo’ +installation and run-time locations at all. If you try to ‘make +install prefix=/usr/local/stow/foo’, then first the whole package +will be recompiled to hardwire the /usr/local/stow/foo path. With these packages, it is best to compile normally, then run -‘make -n install’, which should report all the steps needed to +‘make -n install’, which should report all the steps needed to install the just-built software. Place this output into a file, edit the commands in the file to remove recompilation steps and to reflect the Stow-based installation location, and execute the edited file as a -shell script in place of ‘make install’. Be sure to execute the -script using the same shell that ‘make install’ would have used. +shell script in place of ‘make install’. Be sure to execute the +script using the same shell that ‘make install’ would have used.

(If you use GNU Make and a shell [such as GNU bash] that understands -pushd and popd, you can do the following: +pushd and popd, you can do the following:

-
    -
  1. -Replace all lines matching ‘make[n]: Entering directory -dir’ with ‘pushd dir’. -
  2. -Replace all lines matching ‘make[n]: Leaving directory -dir’ with ‘popd’. -
  3. -Delete all lines matching ‘make[n]: Nothing to be done for -rule’. +
      +
    1. Replace all lines matching ‘make[n]: Entering directory +dir’ with ‘pushd dir’. +
    2. Replace all lines matching ‘make[n]: Leaving directory +dir’ with ‘popd’. +
    3. Delete all lines matching ‘make[n]: Nothing to be done for +rule’.
    -

    Then find other lines in the output containing cd or make +

    Then find other lines in the output containing cd or make commands and rewrite or delete them. In particular, you should be able to delete sections of the script that resemble this:

    -
     
    for i in dir_1 dir_2 ; do \
    -  (cd $i; make args ) \
    +
    +
    for i in dir_1 dir_2 ...; do \
    +  (cd $i; make args ...) \
     done
    -
    +

Note, that’s “should be able to,” not “can.” Be sure to modulate these guidelines with plenty of your own intelligence. @@ -1370,165 +1149,111 @@ these guidelines with plenty of your own intelligence.

The details of stowing some specific packages are described in the following sections.

- - - - - - -
- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
- -

12.2 GNU Emacs

+
+
+
+ +

12.2 GNU Emacs

Although the Free Software Foundation has many enlightened practices -regarding Makefiles and software installation (see see section Other FSF Software), Emacs, its flagship program, doesn’t quite follow the +regarding Makefiles and software installation (see see Other FSF Software), Emacs, its flagship program, doesn’t quite follow the rules. In particular, most GNU software allows you to write:

-
 
make
-make install prefix=/usr/local/stow/package
-
+
+
make
+make install prefix=/usr/local/stow/package
+
-

If you try this with Emacs, then the new value for prefix in the -‘make install’ step will cause some files to get recompiled with -the new value of prefix wired into them. In Emacs 19.23 and -later,(6) +

If you try this with Emacs, then the new value for prefix in the +‘make install’ step will cause some files to get recompiled with +the new value of prefix wired into them. In Emacs 19.23 and +later,8 the way to work around this problem is:

-
 
make
+
+
make
 make install-arch-dep install-arch-indep prefix=/usr/local/stow/emacs
-
+

In 19.22 and some prior versions of Emacs, the workaround was:

-
 
make
+
+
make
 make do-install prefix=/usr/local/stow/emacs
-
+ -
- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
- -

12.3 Other FSF Software

+
+ +
+ +

12.3 Other FSF Software

The Free Software Foundation, the organization behind the GNU project, has been unifying the build procedure for its tools for some time. -Thanks to its tools ‘autoconf’ and ‘automake’, most packages +Thanks to its tools ‘autoconf’ and ‘automake’, most packages now respond well to these simple steps, with no other intervention necessary:

-
 
./configure options
+
+
./configure options
 make
-make install prefix=/usr/local/stow/package
-
+make install prefix=/usr/local/stow/package +

Hopefully, these tools can evolve to be aware of Stow-managed packages, -such that providing an option to ‘configure’ can allow ‘make’ -and ‘make install’ steps to work correctly without needing to +such that providing an option to ‘configure’ can allow ‘make’ +and ‘make install’ steps to work correctly without needing to “fool” the build process.

-
- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
- -

12.4 Cygnus Software

+
+ +
+ +

12.4 Cygnus Software

Cygnus is a commercial supplier and supporter of GNU software. It has also written several of its own packages, released under the terms of the GNU General Public License; and it has taken over the maintenance of -other packages. Among the packages released by Cygnus are ‘gdb’, -‘gnats’, and ‘dejagnu’. +other packages. Among the packages released by Cygnus are ‘gdb’, +‘gnats’, and ‘dejagnu’.

Cygnus packages have the peculiarity that each one unpacks into a directory tree with a generic top-level Makefile, which is set up to -compile all of Cygnus’ packages, any number of which may reside +compile all of Cygnus’ packages, any number of which may reside under the top-level directory. In other words, even if you’re only -building ‘gnats’, the top-level Makefile will look for, and try to -build, ‘gdb’ and ‘dejagnu’ subdirectories, among many others. +building ‘gnats’, the top-level Makefile will look for, and try to +build, gdb and dejagnu subdirectories, among many others.

-

The result is that if you try ‘make -n install -prefix=/usr/local/stow/package’ at the top level of a Cygnus +

The result is that if you try ‘make -n install +prefix=/usr/local/stow/package’ at the top level of a Cygnus package, you’ll get a bewildering amount of output. It will then be very difficult to visually scan the output to see whether the install will proceed correctly. Unfortunately, it’s not always clear how to invoke an install from the subdirectory of interest.

-

In cases like this, the best approach is to run your ‘make install -prefix=’, but be ready to interrupt it if you detect that it +

In cases like this, the best approach is to run your ‘make install +prefix=’, but be ready to interrupt it if you detect that it is recompiling files. Usually it will work just fine; otherwise, install manually.

-
- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
- -

12.5 Perl and Perl 5 Modules

+
+
+
+ +

12.5 Perl and Perl 5 Modules

Perl 4.036 allows you to specify different locations for installation and for run-time. It is the only widely-used package in this author’s @@ -1546,989 +1271,1056 @@ Depot, not from AFS.

The result of this confusion is that Perl 5’s configuration script doesn’t even offer the option of separating install-time and run-time -trees unless you’re running AFS. Fortunately, after you’ve +trees unless you’re running AFS. Fortunately, after you’ve entered all the configuration settings, Perl’s setup script gives you the opportunity to edit those settings in a file called -‘config.sh’. When prompted, you should edit this file and replace +config.sh. When prompted, you should edit this file and replace occurrences of

-
 
inst/usr/local
-
+
+
inst.../usr/local...
+

with

-
 
inst/usr/local/stow/perl
-
+
+
inst.../usr/local/stow/perl...
+

You can do this with the following Unix command:

-
 
sed 's,^\(inst.*/usr/local\),\1/stow/perl,' config.sh > config.sh.new
+
+
sed 's,^\(inst.*/usr/local\),\1/stow/perl,' config.sh > config.sh.new
 mv config.sh.new config.sh
-
+

Hopefully, the Perl authors will correct this deficiency in Perl 5’s configuration mechanism.

Perl 5 modules—i.e., extensions to Perl 5—generally conform to a set of standards for building and installing them. The standard says that -the package comes with a top-level ‘Makefile.PL’, which is a Perl -script. When it runs, it generates a ‘Makefile’. +the package comes with a top-level Makefile.PL, which is a Perl +script. When it runs, it generates a Makefile.

-

If you followed the instructions above for editing ‘config.sh’ when -Perl was built, then when you create a ‘Makefile’ from a -‘Makefile.PL’, it will contain separate locations for run-time -(‘/usr/local’) and install-time (‘/usr/local/stow/perl’). +

If you followed the instructions above for editing config.sh when +Perl was built, then when you create a Makefile from a +Makefile.PL, it will contain separate locations for run-time +(/usr/local) and install-time (/usr/local/stow/perl). Thus you can do

-
 
perl Makefile.PL
+
+
perl Makefile.PL
 make
 make install
-
+ -

and the files will be installed into ‘/usr/local/stow/perl’. +

and the files will be installed into /usr/local/stow/perl. However, you might prefer each Perl module to be stowed separately. In that case, you must edit the resulting Makefile, replacing -‘/usr/local/stow/perl’ with ‘/usr/local/stow/module’. +/usr/local/stow/perl with /usr/local/stow/module. The best way to do this is:

-
 
perl Makefile.PL
+
+
perl Makefile.PL
 find . -name Makefile -print | \
-  xargs perl -pi~ -e 's,^(INST.*/stow)/perl,$1/module,;'
+  xargs perl -pi~ -e 's,^(INST.*/stow)/perl,$1/module,;'
 make
 make install
-
+ -

(The use of ‘find’ and ‘xargs’ ensures that all Makefiles in +

(The use of ‘find’ and ‘xargs’ ensures that all Makefiles in the module’s source tree, even those in subdirectories, get edited.) A good convention to follow is to name the stow directory for a Perl -modulecpan.module’, where ‘cpan’ stands for +module cpan.module, where ‘cpan’ stands for Comprehensive Perl Archive Network, a collection of FTP sites that is the source of most Perl 5 extensions. This way, it’s easy to tell at a -glance which of the subdirectories of ‘/usr/local/stow’ are Perl 5 +glance which of the subdirectories of /usr/local/stow are Perl 5 extensions.

When you stow separate Perl 5 modules separately, you are likely to -encounter conflicts (see section Conflicts) with files named ‘.exists’ -and ‘perllocal.pod’. One way to work around this is to remove +encounter conflicts (see Conflicts) with files named .exists +and perllocal.pod. One way to work around this is to remove those files before stowing the module. If you use the -‘cpan.module’ naming convention, you can simply do this: +cpan.module naming convention, you can simply do this:

-
 
cd /usr/local/stow
+
+
cd /usr/local/stow
 find cpan.* \( -name .exists -o -name perllocal.pod \) -print | \
   xargs rm
-
+ -
- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
- -

13. Bootstrapping

+
+ + +
+ +

13 Bootstrapping

Suppose you have a stow directory all set up and ready to go: -‘/usr/local/stow/perl’ contains the Perl installation, -‘/usr/local/stow/stow’ contains Stow itself, and perhaps you have +/usr/local/stow/perl contains the Perl installation, +/usr/local/stow/stow contains Stow itself, and perhaps you have other packages waiting to be stowed. You’d like to be able to do this:

-
 
cd /usr/local/stow
+
+
cd /usr/local/stow
 stow -vv *
-
+
-

but stow is not yet in your PATH. Nor can you do this: +

but stow is not yet in your PATH. Nor can you do this:

-
 
cd /usr/local/stow
+
+
cd /usr/local/stow
 stow/bin/stow -vv *
-
+ -

because the ‘#!’ line at the beginning of stow tries to -locate Perl (usually in ‘/usr/local/bin/perl’), and that won’t be +

because the ‘#!’ line at the beginning of stow tries to +locate Perl (usually in /usr/local/bin/perl), and that won’t be found. The solution you must use is:

-
 
cd /usr/local/stow
+
+
cd /usr/local/stow
 perl/bin/perl stow/bin/stow -vv *
-
+ -
- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
- -

14. Reporting Bugs

+
+ +
+ +

14 Reporting Bugs

Please send bug reports to the current maintainers by electronic -mail. The address to use is ‘<bug-stow@gnu.org>’. Please +mail. The address to use is ‘<bug-stow@gnu.org>’. Please include:

-
    -
  • -the version number of Stow (‘stow --version’); +
      +
    • the version number of Stow (‘stow --version’); -
    • -the version number of Perl (‘perl -v’); +
    • the version number of Perl (‘perl -v’); -
    • -the system information, which can often be obtained with ‘uname +
    • the system information, which can often be obtained with ‘uname -a’; -
    • -a description of the bug; +
    • a description of the bug; -
    • -the precise command you gave; +
    • the precise command you gave; -
    • -the output from the command (preferably verbose output, obtained by -adding ‘--verbose=3’ to the Stow command line). +
    • the output from the command (preferably verbose output, obtained by +adding ‘--verbose=3’ to the Stow command line).

    If you are really keen, consider developing a minimal test case and -creating a new test. See the ‘t/’ directory in the source for +creating a new test. See the t/ directory in the source for lots of examples.

    Before reporting a bug, please read the manual carefully, especially -Known Bugs, to see whether you’re encountering +Known Bugs, to see whether you’re encountering something that doesn’t need reporting. -(see section Conflicts). +(see Conflicts).

    -
    - - - - - - - - - - - - - - - - -
    [ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
    - -

    15. Known Bugs

    +
    +
+
+ +

15 Known Bugs

-

There are no known bugs in Stow version 2.2.2! -If you think you have found one, please see section Reporting Bugs. +

There are no known bugs in Stow version 2.3.2-fixbug56727! +If you think you have found one, please see Reporting Bugs.

-
- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
- -

GNU General Public License

+
+
+
+ +

GNU General Public License

-

Version 2, June 1991 +

Version 3, 29 June 2007 +
+ +
+
Copyright © 2007 Free Software Foundation, Inc. https://fsf.org/
+
+Everyone is permitted to copy and distribute verbatim copies of this
+license document, but changing it is not allowed.
+
+ +

Preamble

+ +

The GNU General Public License is a free, copyleft license for +software and other kinds of works.

-
 
Copyright © 1989, 1991 Free Software Foundation, Inc.
-675 Mass Ave, Cambridge, MA 02139, USA
-
-Everyone is permitted to copy and distribute verbatim copies
-of this license document, but changing it is not allowed.
-
- -
- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
-

Preamble

- -

The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software—to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation’s software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Library General Public License instead.) You can apply it to -your programs, too. +

The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom +to share and change all versions of a program—to make sure it remains +free software for all its users. We, the Free Software Foundation, +use the GNU General Public License for most of our software; it +applies also to any other work released this way by its authors. You +can apply it to your programs, too.

-

When we speak of free software, we are referring to freedom, not +

When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things.

-

To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. +

To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you +have certain responsibilities if you distribute copies of the +software, or if you modify it: responsibilities to respect the freedom +of others.

-

For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. +

For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, +receive or can get the source code. And you must show them these +terms so they know their rights.

-

We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. +

Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it.

-

Also, for each author’s protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors’ reputations. +

For the developers’ and authors’ protection, the GPL clearly explains +that there is no warranty for this free software. For both users’ and +authors’ sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions.

-

Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone’s free use or not licensed at all. +

Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the +manufacturer can do so. This is fundamentally incompatible with the +aim of protecting users’ freedom to change the software. The +systematic pattern of such abuse occurs in the area of products for +individuals to use, which is precisely where it is most unacceptable. +Therefore, we have designed this version of the GPL to prohibit the +practice for those products. If such problems arise substantially in +other domains, we stand ready to extend this provision to those +domains in future versions of the GPL, as needed to protect the +freedom of users.

-

The precise terms and conditions for copying, distribution and +

Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish +to avoid the special danger that patents applied to a free program +could make it effectively proprietary. To prevent this, the GPL +assures that patents cannot be used to render the program non-free. +

+

The precise terms and conditions for copying, distribution and modification follow.

-

TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION +

TERMS AND CONDITIONS

+ +
    +
  1. Definitions. + +

    “This License” refers to version 3 of the GNU General Public License.

    -
      -
    1. -This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The “Program”, below, -refers to any such program or work, and a “work based on the Program” -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term “modification”.) Each licensee is addressed as “you”. - -

      Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. +

      “Copyright” also means copyright-like laws that apply to other kinds +of works, such as semiconductor masks.

      -
    2. -You may copy and distribute verbatim copies of the Program’s -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -

      You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. +

      “The Program” refers to any copyrightable work licensed under this +License. Each licensee is addressed as “you”. “Licensees” and +“recipients” may be individuals or organizations.

      -
    3. -You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: +

      To “modify” a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of +an exact copy. The resulting work is called a “modified version” of +the earlier work or a work “based on” the earlier work. +

      +

      A “covered work” means either the unmodified Program or a work based +on the Program. +

      +

      To “propagate” a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. +

      +

      To “convey” a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user +through a computer network, with no transfer of a copy, is not +conveying. +

      +

      An interactive user interface displays “Appropriate Legal Notices” to +the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. +

      +
    4. Source Code. -
        -
      1. -You must cause the modified files to carry prominent notices -stating that you changed the files and the date of any change. +

        The “source code” for a work means the preferred form of the work for +making modifications to it. “Object code” means any non-source form +of a work. +

        +

        A “Standard Interface” means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. +

        +

        The “System Libraries” of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +“Major Component”, in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. +

        +

        The “Corresponding Source” for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work’s +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. +

        +

        The Corresponding Source need not include anything that users can +regenerate automatically from other parts of the Corresponding Source. +

        +

        The Corresponding Source for a work in source code form is that same +work. +

        +
      2. Basic Permissions. -
      3. -You must cause any work that you distribute or publish, that in -whole or in part contains or is derived from the Program or any -part thereof, to be licensed as a whole at no charge to all third -parties under the terms of this License. +

        All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. +

        +

        You may make, run and propagate covered works that you do not convey, +without conditions so long as your license otherwise remains in force. +You may convey covered works to others for the sole purpose of having +them make modifications exclusively for you, or provide you with +facilities for running those works, provided that you comply with the +terms of this License in conveying all material for which you do not +control copyright. Those thus making or running the covered works for +you must do so exclusively on your behalf, under your direction and +control, on terms that prohibit them from making any copies of your +copyrighted material outside their relationship with you. +

        +

        Conveying under any other circumstances is permitted solely under the +conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. +

        +
      4. Protecting Users’ Legal Rights From Anti-Circumvention Law. -
      5. -If the modified program normally reads commands interactively -when run, you must cause it, when started running for such -interactive use in the most ordinary way, to print or display an -announcement including an appropriate copyright notice and a -notice that there is no warranty (or else, saying that you provide -a warranty) and that users may redistribute the program under -these conditions, and telling the user how to view a copy of this -License. (Exception: if the Program itself is interactive but -does not normally print such an announcement, your work based on -the Program is not required to print an announcement.) +

        No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. +

        +

        When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such +circumvention is effected by exercising rights under this License with +respect to the covered work, and you disclaim any intention to limit +operation or modification of the work as a means of enforcing, against +the work’s users, your or third parties’ legal rights to forbid +circumvention of technological measures. +

        +
      6. Conveying Verbatim Copies. + +

        You may convey verbatim copies of the Program’s source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. +

        +

        You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. +

        +
      7. Conveying Modified Source Versions. + +

        You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these +conditions: +

        +
          +
        1. The work must carry prominent notices stating that you modified it, +and giving a relevant date. + +
        2. The work must carry prominent notices stating that it is released +under this License and any conditions added under section 7. This +requirement modifies the requirement in section 4 to “keep intact all +notices”. + +
        3. You must license the entire work, as a whole, under this License to +anyone who comes into possession of a copy. This License will +therefore apply, along with any applicable section 7 additional terms, +to the whole of the work, and all its parts, regardless of how they +are packaged. This License gives no permission to license the work in +any other way, but it does not invalidate such permission if you have +separately received it. + +
        4. If the work has interactive user interfaces, each must display +Appropriate Legal Notices; however, if the Program has interactive +interfaces that do not display Appropriate Legal Notices, your work +need not make them do so.
        -

        These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. +

        A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +“aggregate” if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation’s users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate.

        -

        Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. +

      8. Conveying Non-Source Forms. + +

        You may convey a covered work in object code form under the terms of +sections 4 and 5, provided that you also convey the machine-readable +Corresponding Source under the terms of this License, in one of these +ways:

        -

        In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. -

        -
      9. -You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: +
          +
        1. Convey the object code in, or embodied in, a physical product +(including a physical distribution medium), accompanied by the +Corresponding Source fixed on a durable physical medium customarily +used for software interchange. -
            -
          1. -Accompany it with the complete corresponding machine-readable -source code, which must be distributed under the terms of Sections -1 and 2 above on a medium customarily used for software interchange; or, +
          2. Convey the object code in, or embodied in, a physical product +(including a physical distribution medium), accompanied by a written +offer, valid for at least three years and valid for as long as you +offer spare parts or customer support for that product model, to give +anyone who possesses the object code either (1) a copy of the +Corresponding Source for all the software in the product that is +covered by this License, on a durable physical medium customarily used +for software interchange, for a price no more than your reasonable +cost of physically performing this conveying of source, or (2) access +to copy the Corresponding Source from a network server at no charge. -
          3. -Accompany it with a written offer, valid for at least three -years, to give any third party, for a charge no more than your -cost of physically performing source distribution, a complete -machine-readable copy of the corresponding source code, to be -distributed under the terms of Sections 1 and 2 above on a medium -customarily used for software interchange; or, +
          4. Convey individual copies of the object code with a copy of the written +offer to provide the Corresponding Source. This alternative is +allowed only occasionally and noncommercially, and only if you +received the object code with such an offer, in accord with subsection +6b. + +
          5. Convey the object code by offering access from a designated place +(gratis or for a charge), and offer equivalent access to the +Corresponding Source in the same way through the same place at no +further charge. You need not require recipients to copy the +Corresponding Source along with the object code. If the place to copy +the object code is a network server, the Corresponding Source may be +on a different server (operated by you or a third party) that supports +equivalent copying facilities, provided you maintain clear directions +next to the object code saying where to find the Corresponding Source. +Regardless of what server hosts the Corresponding Source, you remain +obligated to ensure that it is available for as long as needed to +satisfy these requirements. + +
          6. Convey the object code using peer-to-peer transmission, provided you +inform other peers where the object code and Corresponding Source of +the work are being offered to the general public at no charge under +subsection 6d. -
          7. -Accompany it with the information you received as to the offer -to distribute corresponding source code. (This alternative is -allowed only for noncommercial distribution and only if you -received the program in object code or executable form with such -an offer, in accord with Subsection b above.)
          -

          The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. +

          A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work.

          -

          If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. +

          A “User Product” is either (1) a “consumer product”, which means any +tangible personal property which is normally used for personal, +family, or household purposes, or (2) anything designed or sold for +incorporation into a dwelling. In determining whether a product is a +consumer product, doubtful cases shall be resolved in favor of +coverage. For a particular product received by a particular user, +“normally used” refers to a typical or common use of that class of +product, regardless of the status of the particular user or of the way +in which the particular user actually uses, or expects or is expected +to use, the product. A product is a consumer product regardless of +whether the product has substantial commercial, industrial or +non-consumer uses, unless such uses represent the only significant +mode of use of the product.

          -
        2. -You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. +

          “Installation Information” for a User Product means any methods, +procedures, authorization keys, or other information required to +install and execute modified versions of a covered work in that User +Product from a modified version of its Corresponding Source. The +information must suffice to ensure that the continued functioning of +the modified object code is in no case prevented or interfered with +solely because modification has been made. +

          +

          If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). +

          +

          The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or +updates for a work that has been modified or installed by the +recipient, or for the User Product in which it has been modified or +installed. Access to a network may be denied when the modification +itself materially and adversely affects the operation of the network +or violates the rules and protocols for communication across the +network. +

          +

          Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. +

          +
        3. Additional Terms. -
        4. -You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. +

          “Additional permissions” are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. +

          +

          When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. +

          +

          Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders +of that material) supplement the terms of this License with terms: +

          +
            +
          1. Disclaiming warranty or limiting liability differently from the terms +of sections 15 and 16 of this License; or -
          2. -Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients’ exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to +
          3. Requiring preservation of specified reasonable legal notices or author +attributions in that material or in the Appropriate Legal Notices +displayed by works containing it; or + +
          4. Prohibiting misrepresentation of the origin of that material, or +requiring that modified versions of such material be marked in +reasonable ways as different from the original version; or + +
          5. Limiting the use for publicity purposes of names of licensors or +authors of the material; or + +
          6. Declining to grant rights under trademark law for use of some trade +names, trademarks, or service marks; or + +
          7. Requiring indemnification of licensors and authors of that material by +anyone who conveys the material (or modified versions of it) with +contractual assumptions of liability to the recipient, for any +liability that these contractual assumptions directly impose on those +licensors and authors. +
          + +

          All other non-permissive additional terms are considered “further +restrictions” within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. +

          +

          If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. +

          +

          Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; the +above requirements apply either way. +

          +
        5. Termination. + +

          You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). +

          +

          However, if you cease all violation of this License, then your license +from a particular copyright holder is reinstated (a) provisionally, +unless and until the copyright holder explicitly and finally +terminates your license, and (b) permanently, if the copyright holder +fails to notify you of the violation by some reasonable means prior to +60 days after the cessation. +

          +

          Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. +

          +

          Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. +

          +
        6. Acceptance Not Required for Having Copies. + +

          You are not required to accept this License in order to receive or run +a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. +

          +
        7. Automatic Licensing of Downstream Recipients. + +

          Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. +

          +

          An “entity transaction” is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party’s predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. +

          +

          You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. +

          +
        8. Patents. + +

          A “contributor” is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor’s “contributor version”. +

          +

          A contributor’s “essential patent claims” are all patent claims owned +or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, “control” includes the right to grant +patent sublicenses in a manner consistent with the requirements of this License. +

          +

          Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor’s essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. +

          +

          In the following three paragraphs, a “patent license” is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To “grant” such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. +

          +

          If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. “Knowingly relying” means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient’s use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. +

          +

          If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. +

          +

          A patent license is “discriminatory” if it does not include within the +scope of its coverage, prohibits the exercise of, or is conditioned on +the non-exercise of one or more of the rights that are specifically +granted under this License. You may not convey a covered work if you +are a party to an arrangement with a third party that is in the +business of distributing software, under which you make payment to the +third party based on the extent of your activity of conveying the +work, and under which the third party grants, to any of the parties +who would receive the covered work from you, a discriminatory patent +license (a) in connection with copies of the covered work conveyed by +you (or copies made from those copies), or (b) primarily for and in +connection with specific products or compilations that contain the +covered work, unless you entered into that arrangement, or that patent +license was granted, prior to 28 March 2007. +

          +

          Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. +

          +
        9. No Surrender of Others’ Freedom. -
        10. -If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or +

          If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -

          If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. +excuse you from the conditions of this License. If you cannot convey +a covered work so as to satisfy simultaneously your obligations under +this License and any other pertinent obligations, then as a +consequence you may not convey it at all. For example, if you agree +to terms that obligate you to collect a royalty for further conveying +from those to whom you convey the Program, the only way you could +satisfy both those terms and this License would be to refrain entirely +from conveying the Program.

          -

          It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. -

          -

          This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. -

          -
        11. -If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. +
        12. Use with the GNU Affero General Public License. -
        13. -The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. +

          Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. +

          +
        14. Revised Versions of this License. +

          The Free Software Foundation may publish revised and/or new versions +of the GNU General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. +

          Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and “any -later version”, you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. +specifies that a certain numbered version of the GNU General Public +License “or any later version” applies to it, you have the option of +following the terms and conditions either of that numbered version or +of any later version published by the Free Software Foundation. If +the Program does not specify a version number of the GNU General +Public License, you may choose any version ever published by the Free +Software Foundation.

          -
        15. -If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - -

          NO WARRANTY +

          If the Program specifies that a proxy can decide which future versions +of the GNU General Public License can be used, that proxy’s public +statement of acceptance of a version permanently authorizes you to +choose that version for the Program.

          -
        16. -BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. +

          Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. +

          +
        17. Disclaimer of Warranty. -
        18. -IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. +

          THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT +WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND +PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE +DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR +CORRECTION. +

          +
        19. Limitation of Liability. + +

          IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR +CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT +NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR +LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM +TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER +PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. +

          +
        20. Interpretation of Sections 15 and 16. + +

          If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. +

        -

        END OF TERMS AND CONDITIONS -

        +

        END OF TERMS AND CONDITIONS

        -
        - - - - - - - - - - - - - - - - -
        [ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
        -

        How to Apply These Terms to Your New Programs

        +

        How to Apply These Terms to Your New Programs

        -

        If you develop a new program, and you want it to be of the greatest +

        If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. +free software which everyone can redistribute and change under these +terms.

        -

        To do so, attach the following notices to the program. It is safest +

        To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least +state the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found.

        -
         
        one line to give the program's name and an idea of what it does.
        -Copyright (C) 19yy  name of author
        +
        +
        one line to give the program's name and a brief idea of what it does.
        +Copyright (C) year name of author
         
        -This program is free software; you can redistribute it and/or
        -modify it under the terms of the GNU General Public License
        -as published by the Free Software Foundation; either version 2
        -of the License, or (at your option) any later version.
        +This program is free software: you can redistribute it and/or modify
        +it under the terms of the GNU General Public License as published by
        +the Free Software Foundation, either version 3 of the License, or (at
        +your option) any later version.
         
        -This program is distributed in the hope that it will be useful,
        -but WITHOUT ANY WARRANTY; without even the implied warranty of
        -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
        -GNU General Public License for more details.
        +This program is distributed in the hope that it will be useful, but
        +WITHOUT ANY WARRANTY; without even the implied warranty of
        +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
        +General Public License for more details.
         
         You should have received a copy of the GNU General Public License
        -along with this program; if not, write to the Free Software
        -Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
        -
        +along with this program. If not, see https://www.gnu.org/licenses/. +

Also add information on how to contact you by electronic and paper mail.

-

If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: +

If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode:

-
 
Gnomovision version 69, Copyright (C) 19yy name of author
-Gnomovision comes with ABSOLUTELY NO WARRANTY; for details
-type `show w'.  This is free software, and you are welcome
-to redistribute it under certain conditions; type `show c'
-for details.
-
+
+
program Copyright (C) year name of author
+This program comes with ABSOLUTELY NO WARRANTY; for details type ‘show w’.
+This is free software, and you are welcome to redistribute it
+under certain conditions; type ‘show c’ for details.
+
-

The hypothetical commands ‘show w’ and ‘show c’ should show -the appropriate parts of the General Public License. Of course, the -commands you use may be called something other than ‘show w’ and -‘show c’; they could even be mouse-clicks or menu items—whatever -suits your program. +

The hypothetical commands ‘show w’ and ‘show c’ should show +the appropriate parts of the General Public License. Of course, your +program’s commands might be different; for a GUI interface, you would +use an “about box”.

-

You should also get your employer (if you work as a programmer) or your -school, if any, to sign a “copyright disclaimer” for the program, if -necessary. Here is a sample; alter the names: +

You should also get your employer (if you work as a programmer) or school, +if any, to sign a “copyright disclaimer” for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +https://www.gnu.org/licenses/.

-
 
Yoyodyne, Inc., hereby disclaims all copyright
-interest in the program `Gnomovision'
-(which makes passes at compilers) written
-by James Hacker.
-
-signature of Ty Coon, 1 April 1989
-Ty Coon, President of Vice
-
- -

This General Public License does not permit incorporating your program -into proprietary programs. If your program is a subroutine library, you -may consider it more useful to permit linking proprietary applications -with the library. If this is what you want to do, use the GNU Library -General Public License instead of this License. +

The GNU General Public License does not permit incorporating your +program into proprietary programs. If your program is a subroutine +library, you may consider it more useful to permit linking proprietary +applications with the library. If this is what you want to do, use +the GNU Lesser General Public License instead of this License. But +first, please read https://www.gnu.org/licenses/why-not-lgpl.html.

-
- - - - - - - - - - - - - - - - -
[ < ][ > ]   [ << ][ Up ][ >> ]         [Top][Contents][Index][ ? ]
- -

Index

+
+ +
+ +

Index

-
Jump to:   A +
+
Jump to:   A   -C +C   -D +D   -F +F   -I +I   -M +M   -O +O   -P +P   -R +R   -S +S   -T +T   -U +U   -V +V  
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
Index Entry Section

A
absolute symlink2. Terminology
adopting existing files3. Invoking Stow

C
configuration files11. Resource Files
conflicts5.4 Conflicts during installation
conflicts7. Conflicts

D
deferred operation7.1 Deferred Operation
deferred operation8. Mixing Operations
deletion6. Deleting Packages
directory folding5.1 Tree folding
dry run3. Invoking Stow

F
folding trees5.1 Tree folding

I
ignore lists4. Ignore Lists
ignore lists4.1 Motivation For Ignore Lists
ignoring files and directories4. Ignore Lists
installation5. Installing Packages
installation conflicts5.4 Conflicts during installation
installation image2. Terminology

M
maintenance10. Target Maintenance
mixing operations8. Mixing Operations

O
ownership5.3 Ownership

P
package2. Terminology
package directory2. Terminology
package name2. Terminology

R
refolding trees6.1 Refolding “foldable” trees.
relative symlink2. Terminology
resource files11. Resource Files

S
simulated run3. Invoking Stow
splitting open folded trees5.2 Tree unfolding
stow directory2. Terminology
symlink2. Terminology

T
target directory2. Terminology
tree folding5.1 Tree folding
tree refolding6.1 Refolding “foldable” trees.
tree unfolding5.2 Tree unfolding
tree unsplitting5.2 Tree unfolding

U
unfolding trees5.2 Tree unfolding

V
verbosity levels3. Invoking Stow

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Index EntrySection

A
absolute symlinkTerminology
adopting existing filesInvoking Stow

C
configuration filesResource Files
conflictsInstalling Packages
conflictsConflicts

D
deferred operationConflicts
deferred operationMixing Operations
deletionDeleting Packages
directory foldingInstalling Packages
dotfilesInvoking Stow
dry runInvoking Stow

F
folding treesInstalling Packages

I
ignore listsIgnore Lists
ignore listsMotivation For Ignore Lists
ignoring files and directoriesIgnore Lists
installationInstalling Packages
installation conflictsInstalling Packages
installation imageTerminology

M
maintenanceTarget Maintenance
mixing operationsMixing Operations

O
ownershipInstalling Packages

P
packageTerminology
package directoryTerminology
package nameTerminology

R
refolding treesDeleting Packages
relative symlinkTerminology
resource filesResource Files

S
simulated runInvoking Stow
splitting open folded treesInstalling Packages
stow directoryTerminology
symlinkTerminology

T
target directoryTerminology
tree foldingInstalling Packages
tree refoldingDeleting Packages
tree unfoldingInstalling Packages
tree unsplittingInstalling Packages

U
unfolding treesInstalling Packages

V
verbosity levelsInvoking Stow

-
Jump to:   A + + -
- - - - - - -
[Top][Contents][Index][ ? ]
-

Footnotes

-

(1)

-

As of Perl 4.036 and Emacs -19.22. -

(2)

+ + +
+
+

Footnotes

+ +
(1)
+

As of Perl 4.036 and Emacs 19.22. These are now +ancient releases but the example still holds valid.

+
(2)
+

http://brandon.invergo.net/news/2012-05-26-using-gnu-stow-to-manage-your-dotfiles.html

+
(3)
+

http://lists.gnu.org/archive/html/info-stow/2011-12/msg00000.html

+
(4)

Exact matching means the regular expression is anchored at the beginning and end, in contrast -to unanchored regular expressions which will match a substring. -

(3)

+to unanchored regular expressions which will match a substring.

+
(5)

In this context, “subpath” means a contiguous subset of path segments; e.g for the relative path -‘one/two/three’, there are six valid subpaths: ‘one’, -‘two’, ‘three’, ‘one/two’, ‘two/three’, -‘one/two/three’. -

(4)

+one/two/three, there are six valid subpaths: one, +two, three, one/two, two/three, +one/two/three.

+
(6)

The “basename” is the name of the file or directory itself, excluding any directory path prefix - as returned by -the basename command. -

(5)

+the basename command.

+
(7)

This approach was introduced in version 2 of GNU Stow. Previously, the whole target tree was scanned and stow directories were explicitly omitted. This became problematic when dealing with very large installations. The only situation where this is useful is if you accidentally delete a directory in the package tree, leaving you with a whole bunch of dangling links. Note that -you can enable the old approach with the ‘-p’ option. Alternatively, you can -use the ‘--badlinks’ option get stow to search for dangling links in your target tree and remove the offenders manually. -

(6)

-

As I write this, the current version of Emacs is 19.31. -


- - - - - - -
[Top][Contents][Index][ ? ]
-

Table of Contents

- -
- - - - - - -
[Top][Contents][Index][ ? ]
-

About This Document

-

- This document was generated by Adam Spiers on November 9, 2015 using texi2html 1.82. -

-

- The buttons in the navigation panels have the following meaning: -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Button Name Go to From 1.2.3 go to
[ < ] BackPrevious section in reading order1.2.2
[ > ] ForwardNext section in reading order1.2.4
[ << ] FastBackBeginning of this chapter or previous chapter1
[ Up ] UpUp section1.2
[ >> ] FastForwardNext chapter2
[Top] TopCover (top) of document  
[Contents] ContentsTable of contents  
[Index] IndexIndex  
[ ? ] AboutAbout (help)  
-

- where the Example assumes that the current position is at Subsubsection One-Two-Three of a document of the following structure: -

-
    -
  • 1. Section One -
      -
    • 1.1 Subsection One-One -
        -
      • ...
      • -
      -
    • -
    • 1.2 Subsection One-Two -
        -
      • 1.2.1 Subsubsection One-Two-One
      • -
      • 1.2.2 Subsubsection One-Two-Two
      • -
      • 1.2.3 Subsubsection One-Two-Three     - <== Current Position
      • -
      • 1.2.4 Subsubsection One-Two-Four
      • -
      -
    • -
    • 1.3 Subsection One-Three -
        -
      • ...
      • -
      -
    • -
    • 1.4 Subsection One-Four
    • -
    -
  • -
-
-

- - This document was generated by Adam Spiers on November 9, 2015 using texi2html 1.82. - -
- -

diff --git a/local/share/doc/stow/manual-split/Bootstrapping.html b/local/share/doc/stow/manual-split/Bootstrapping.html index 40ee46e..a1cc379 100644 --- a/local/share/doc/stow/manual-split/Bootstrapping.html +++ b/local/share/doc/stow/manual-split/Bootstrapping.html @@ -1,89 +1,104 @@ - + + + -Bootstrapping - Stow - - - - - - - - +Bootstrapping (Stow) + + + + + + + + + + + + + + + - Permission is granted to copy and distribute modified versions of - this manual under the conditions for verbatim copying, provided - also that the section entitled ``GNU General Public License'' is - included with the modified manual, and provided that the entire - resulting derived work is distributed under the terms of a - permission notice identical to this one. - Permission is granted to copy and distribute translations of this - manual into another language, under the above conditions for - modified versions, except that this permission notice may be - stated in a translation approved by the Free Software Foundation. - --> - - - -
- -

-Next: , -Previous: Compile-time vs Install-time, -Up: Top -


-
-

13 Bootstrapping

+ +
+ +
+

13 Bootstrapping

Suppose you have a stow directory all set up and ready to go: -/usr/local/stow/perl contains the Perl installation, -/usr/local/stow/stow contains Stow itself, and perhaps you have -other packages waiting to be stowed. You'd like to be able to do this: +/usr/local/stow/perl contains the Perl installation, +/usr/local/stow/stow contains Stow itself, and perhaps you have +other packages waiting to be stowed. You’d like to be able to do this: +

+
+
cd /usr/local/stow
+stow -vv *
+
-
     cd /usr/local/stow
-     stow -vv *
-
-

but stow is not yet in your PATH. Nor can you do this: +

but stow is not yet in your PATH. Nor can you do this: +

+
+
cd /usr/local/stow
+stow/bin/stow -vv *
+
-
     cd /usr/local/stow
-     stow/bin/stow -vv *
-
-

because the ‘#!’ line at the beginning of stow tries to -locate Perl (usually in /usr/local/bin/perl), and that won't be +

because the ‘#!’ line at the beginning of stow tries to +locate Perl (usually in /usr/local/bin/perl), and that won’t be found. The solution you must use is: +

+
+
cd /usr/local/stow
+perl/bin/perl stow/bin/stow -vv *
+
-
     cd /usr/local/stow
-     perl/bin/perl stow/bin/stow -vv *
-
- - +
+ + + + diff --git a/local/share/doc/stow/manual-split/Compile_002dtime-vs-Install_002dtime.html b/local/share/doc/stow/manual-split/Compile_002dtime-vs-Install_002dtime.html index cb7776e..21a983b 100644 --- a/local/share/doc/stow/manual-split/Compile_002dtime-vs-Install_002dtime.html +++ b/local/share/doc/stow/manual-split/Compile_002dtime-vs-Install_002dtime.html @@ -1,144 +1,162 @@ - + + + -Compile-time vs Install-time - Stow - - - - - - - - +Compile-time vs Install-time (Stow) + + + + + + + + + + + + + + + - Permission is granted to copy and distribute modified versions of - this manual under the conditions for verbatim copying, provided - also that the section entitled ``GNU General Public License'' is - included with the modified manual, and provided that the entire - resulting derived work is distributed under the terms of a - permission notice identical to this one. - Permission is granted to copy and distribute translations of this - manual into another language, under the above conditions for - modified versions, except that this permission notice may be - stated in a translation approved by the Free Software Foundation. - --> - - - -
- - -

-Next: , -Previous: Resource Files, -Up: Top -


-
-

12 Compile-time vs Install-time

+ +
+ +
+

12 Compile-time vs Install-time

Software whose installation is managed with Stow needs to be installed -in one place (the package directory, e.g. /usr/local/stow/perl) +in one place (the package directory, e.g. /usr/local/stow/perl) but needs to appear to run in another place (the target tree, e.g., -/usr/local). Why is this important? What's wrong with Perl, for -instance, looking for its files in /usr/local/stow/perl instead -of in /usr/local? - -

The answer is that there may be another package, e.g., -/usr/local/stow/perl-extras, stowed under /usr/local. If -Perl is configured to find its files in /usr/local/stow/perl, it -will never find the extra files in the ‘perl-extras’ package, even -though they're intended to be found by Perl. On the other hand, if Perl -looks for its files in /usr/local, then it will find the -intermingled Perl and ‘perl-extras’ files. - -

This means that when you compile a package, you must tell it the +/usr/local). Why is this important? What’s wrong with Perl, for +instance, looking for its files in /usr/local/stow/perl instead +of in /usr/local? +

+

The answer is that there may be another package, e.g., +/usr/local/stow/perl-extras, stowed under /usr/local. If +Perl is configured to find its files in /usr/local/stow/perl, it +will never find the extra files in the ‘perl-extras’ package, even +though they’re intended to be found by Perl. On the other hand, if Perl +looks for its files in /usr/local, then it will find the +intermingled Perl and ‘perl-extras’ files. +

+

This means that when you compile a package, you must tell it the location of the run-time, or target tree; but when you install it, you must place it in the stow tree. - -

12.1 Advice on changing compilation and installation parameters

- +

+ +
+

12.1 Advice on changing compilation and installation parameters

Some software packages allow you to specify, at compile-time, separate locations for installation and for run-time. Perl is one such package; -see Perl and Perl 5 Modules. Others allow you to compile the -package, then give a different destination in the ‘make install’ +see Perl and Perl 5 Modules. Others allow you to compile the +package, then give a different destination in the ‘make install’ step without causing the binaries or other files to get rebuilt. Most -GNU software falls into this category; Emacs is a notable exception. -See GNU Emacs, and Other FSF Software. - -

Still other software packages cannot abide the idea of separate -installation and run-time locations at all. If you try to ‘make -install prefix=/usr/local/stow/foo’, then first the whole package -will be recompiled to hardwire the /usr/local/stow/foo +GNU software falls into this category; Emacs is a notable exception. +See GNU Emacs, and Other FSF Software. +

+

Still other software packages cannot abide the idea of separate +installation and run-time locations at all. If you try to ‘make +install prefix=/usr/local/stow/foo’, then first the whole package +will be recompiled to hardwire the /usr/local/stow/foo path. With these packages, it is best to compile normally, then run -‘make -n install’, which should report all the steps needed to +‘make -n install’, which should report all the steps needed to install the just-built software. Place this output into a file, edit the commands in the file to remove recompilation steps and to reflect the Stow-based installation location, and execute the edited file as a -shell script in place of ‘make install’. Be sure to execute the -script using the same shell that ‘make install’ would have used. +shell script in place of ‘make install’. Be sure to execute the +script using the same shell that ‘make install’ would have used. +

+

(If you use GNU Make and a shell [such as GNU bash] that understands +pushd and popd, you can do the following: +

+
    +
  1. Replace all lines matching ‘make[n]: Entering directory +dir’ with ‘pushd dir’. +
  2. Replace all lines matching ‘make[n]: Leaving directory +dir’ with ‘popd’. +
  3. Delete all lines matching ‘make[n]: Nothing to be done for +rule’. +
-

(If you use GNU Make and a shell [such as GNU bash] that understands -pushd and popd, you can do the following: - -

    -
  1. Replace all lines matching ‘make[n]: Entering directory -dir’ with ‘pushd dir’. -
  2. Replace all lines matching ‘make[n]: Leaving directory -dir’ with ‘popd’. -
  3. Delete all lines matching ‘make[n]: Nothing to be done for -rule’. -
- -

Then find other lines in the output containing cd or make +

Then find other lines in the output containing cd or make commands and rewrite or delete them. In particular, you should be able to delete sections of the script that resemble this: +

+
+
for i in dir_1 dir_2 ...; do \
+  (cd $i; make args ...) \
+done
+
-
     for i in dir_1 dir_2 ...; do \
-       (cd $i; make args ...) \
-     done
-
-

Note, that's “should be able to,” not “can.” Be sure to modulate +

Note, that’s “should be able to,” not “can.” Be sure to modulate these guidelines with plenty of your own intelligence. - -

The details of stowing some specific packages are described in the +

+

The details of stowing some specific packages are described in the following sections. +

- +
+
+
+ - - + + + diff --git a/local/share/doc/stow/manual-split/Conflicts.html b/local/share/doc/stow/manual-split/Conflicts.html index 6c58620..deeee1f 100644 --- a/local/share/doc/stow/manual-split/Conflicts.html +++ b/local/share/doc/stow/manual-split/Conflicts.html @@ -1,100 +1,117 @@ - + + + -Conflicts - Stow - - - - - - - - +Conflicts (Stow) + + + + + + + + + + + + + + + - Permission is granted to copy and distribute modified versions of - this manual under the conditions for verbatim copying, provided - also that the section entitled ``GNU General Public License'' is - included with the modified manual, and provided that the entire - resulting derived work is distributed under the terms of a - permission notice identical to this one. - Permission is granted to copy and distribute translations of this - manual into another language, under the above conditions for - modified versions, except that this permission notice may be - stated in a translation approved by the Free Software Foundation. - --> - - - -
- + + +
+ +
+

7 Conflicts

-

7 Conflicts

- -

If, during installation, a file or symlink exists in the target tree and + +

If, during installation, a file or symlink exists in the target tree and has the same name as something Stow needs to create, and if the existing name is not a folded tree that can be split open, then a -conflict has arisen. A conflict also occurs if a directory exists +conflict has arisen. A conflict also occurs if a directory exists where Stow needs to place a symlink to a non-directory. On the other hand, if the existing name is merely a symlink that already points where Stow needs it to, then no conflict has occurred. (Thus it is harmless to install a package that has already been installed.) - -

For complex packages, scanning the stow and target trees in tandem, +

+

For complex packages, scanning the stow and target trees in tandem, and deciding whether to make directories or links, split-open or fold -directories, can actually take a long time (a number of seconds). +directories, can actually take a long time (a number of seconds). Moreover, an accurate analysis of potential conflicts requires us to take into account all of these operations. +

+ +
+

7.1 Deferred Operation

+ -

- -

7.1 Deferred Operation

- -

-Since version 2.0, Stow now adopts a two-phase algorithm, first +

Since version 2.0, Stow now adopts a two-phase algorithm, first scanning for any potential conflicts before any stowing or unstowing operations are performed. If any conflicts are found, they are displayed and then Stow terminates without making any modifications to the filesystem. This means that there is much less risk of a package being partially stowed or unstowed due to conflicts. - -

Prior to version 2.0, if a conflict was discovered, the stow or unstow +

+

Prior to version 2.0, if a conflict was discovered, the stow or unstow operation could be aborted mid-flow, leaving the target tree in an inconsistent state. +

+
+
+
+ - - + + + diff --git a/local/share/doc/stow/manual-split/Cygnus-Software.html b/local/share/doc/stow/manual-split/Cygnus-Software.html index a98b83d..9488c0c 100644 --- a/local/share/doc/stow/manual-split/Cygnus-Software.html +++ b/local/share/doc/stow/manual-split/Cygnus-Software.html @@ -1,95 +1,103 @@ - + + + -Cygnus Software - Stow - - - - - - - - - +Cygnus Software (Stow) + + + + + + + + + + + + + + + - Permission is granted to copy and distribute modified versions of - this manual under the conditions for verbatim copying, provided - also that the section entitled ``GNU General Public License'' is - included with the modified manual, and provided that the entire - resulting derived work is distributed under the terms of a - permission notice identical to this one. - Permission is granted to copy and distribute translations of this - manual into another language, under the above conditions for - modified versions, except that this permission notice may be - stated in a translation approved by the Free Software Foundation. - --> - - - - -

12.4 Cygnus Software

+ +
+ +
+

12.4 Cygnus Software

Cygnus is a commercial supplier and supporter of GNU software. It has also written several of its own packages, released under the terms of the GNU General Public License; and it has taken over the maintenance of -other packages. Among the packages released by Cygnus are ‘gdb’, -‘gnats’, and ‘dejagnu’. - -

Cygnus packages have the peculiarity that each one unpacks into a +other packages. Among the packages released by Cygnus are ‘gdb’, +‘gnats’, and ‘dejagnu’. +

+

Cygnus packages have the peculiarity that each one unpacks into a directory tree with a generic top-level Makefile, which is set up to -compile all of Cygnus' packages, any number of which may reside -under the top-level directory. In other words, even if you're only -building ‘gnats’, the top-level Makefile will look for, and try to -build, gdb and dejagnu subdirectories, among many others. - -

The result is that if you try ‘make -n install -prefix=/usr/local/stow/package’ at the top level of a Cygnus -package, you'll get a bewildering amount of output. It will then be +compile all of Cygnus’ packages, any number of which may reside +under the top-level directory. In other words, even if you’re only +building ‘gnats’, the top-level Makefile will look for, and try to +build, gdb and dejagnu subdirectories, among many others. +

+

The result is that if you try ‘make -n install +prefix=/usr/local/stow/package’ at the top level of a Cygnus +package, you’ll get a bewildering amount of output. It will then be very difficult to visually scan the output to see whether the install -will proceed correctly. Unfortunately, it's not always clear how to +will proceed correctly. Unfortunately, it’s not always clear how to invoke an install from the subdirectory of interest. - -

In cases like this, the best approach is to run your ‘make install -prefix=...’, but be ready to interrupt it if you detect that it +

+

In cases like this, the best approach is to run your ‘make install +prefix=’, but be ready to interrupt it if you detect that it is recompiling files. Usually it will work just fine; otherwise, install manually. +

+
- - + + + diff --git a/local/share/doc/stow/manual-split/Deferred-Operation.html b/local/share/doc/stow/manual-split/Deferred-Operation.html index ff438aa..260bee1 100644 --- a/local/share/doc/stow/manual-split/Deferred-Operation.html +++ b/local/share/doc/stow/manual-split/Deferred-Operation.html @@ -1 +1,55 @@ - + + + + + + + +Deferred Operation (Stow) + + + + + + + + + + + + + + +

The node you are looking for is at Deferred Operation.

+ diff --git a/local/share/doc/stow/manual-split/Deleting-Packages.html b/local/share/doc/stow/manual-split/Deleting-Packages.html index 0257f0e..17d71d2 100644 --- a/local/share/doc/stow/manual-split/Deleting-Packages.html +++ b/local/share/doc/stow/manual-split/Deleting-Packages.html @@ -1,112 +1,126 @@ - + + + -Deleting Packages - Stow - - - - - - - - +Deleting Packages (Stow) + + + + + + + + + + + + + + + - Permission is granted to copy and distribute modified versions of - this manual under the conditions for verbatim copying, provided - also that the section entitled ``GNU General Public License'' is - included with the modified manual, and provided that the entire - resulting derived work is distributed under the terms of a - permission notice identical to this one. - Permission is granted to copy and distribute translations of this - manual into another language, under the above conditions for - modified versions, except that this permission notice may be - stated in a translation approved by the Free Software Foundation. - --> - - - -
- + + +
+ +
+

6 Deleting Packages

-

6 Deleting Packages

- -

When the -D option is given, the action of Stow is to + +

When the -D option is given, the action of Stow is to delete a package from the target tree. Note that Stow will not -delete anything it doesn't “own”. Deleting a package does not +delete anything it doesn’t “own”. Deleting a package does not mean removing it from the stow directory or discarding the package tree. - -

To delete a package, Stow recursively scans the target tree, skipping over any -directory that is not included in the installation image.1 -For example, if the target directory is /usr/local and the -installation image for the package being deleted has only a bin -directory and a man directory at the top level, then we only scan -/usr/local/bin and /usr/local/bin/man, and not -/usr/local/lib or /usr/local/share, or for that matter -/usr/local/stow. Any symlink it finds that points into the package +

+

To delete a package, Stow recursively scans the target tree, skipping over any +directory that is not included in the installation image.7 +For example, if the target directory is /usr/local and the +installation image for the package being deleted has only a bin +directory and a man directory at the top level, then we only scan +/usr/local/bin and /usr/local/man, and not +/usr/local/lib or /usr/local/share, or for that matter +/usr/local/stow. Any symlink it finds that points into the package being deleted is removed. Any directory that contained only symlinks to the package being deleted is removed. +

+ +
+

6.1 Refolding “foldable” trees.

+ + -

- -

6.1 Refolding “foldable” trees.

- -

-After removing symlinks and empty subdirectories, any directory that +

After removing symlinks and empty subdirectories, any directory that contains only symlinks to a single other package is considered to be a previously “folded” tree that was “split open.” Stow will refold the tree by removing the symlinks to the surviving package, removing the directory, then linking the directory back to the surviving package. However, this behaviour can be prevented via the ---no-folding option; see Invoking Stow. - - -

+--no-folding option; see Invoking Stow. +

+
+
+

-

Footnotes

[1] This +

Footnotes

+ +
(7)
+

This approach was introduced in version 2 of GNU Stow. Previously, the whole target tree was scanned and stow directories were explicitly omitted. This became problematic when dealing with very large installations. The only situation where this is useful is if you accidentally delete a directory in the package tree, leaving you with a whole bunch of dangling links. Note that -you can enable the old approach with the -p option. Alternatively, you can -use the --badlinks option get stow to search for dangling links in your target tree and remove the offenders manually.

+you can enable the old approach with the -p option. Alternatively, you can +use the --badlinks option get stow to search for dangling links in your target tree and remove the offenders manually.

+
-
- + + diff --git a/local/share/doc/stow/manual-split/GNU-Emacs.html b/local/share/doc/stow/manual-split/GNU-Emacs.html index 3f44cce..195a0ec 100644 --- a/local/share/doc/stow/manual-split/GNU-Emacs.html +++ b/local/share/doc/stow/manual-split/GNU-Emacs.html @@ -1,97 +1,112 @@ - + + + -GNU Emacs - Stow - - - - - - - - - +GNU Emacs (Stow) + + + + + + + + + + + + + + + - Permission is granted to copy and distribute modified versions of - this manual under the conditions for verbatim copying, provided - also that the section entitled ``GNU General Public License'' is - included with the modified manual, and provided that the entire - resulting derived work is distributed under the terms of a - permission notice identical to this one. - Permission is granted to copy and distribute translations of this - manual into another language, under the above conditions for - modified versions, except that this permission notice may be - stated in a translation approved by the Free Software Foundation. - --> - - - - -

12.2 GNU Emacs

+ +
+ +
+

12.2 GNU Emacs

Although the Free Software Foundation has many enlightened practices -regarding Makefiles and software installation (see see Other FSF Software), Emacs, its flagship program, doesn't quite follow the +regarding Makefiles and software installation (see see Other FSF Software), Emacs, its flagship program, doesn’t quite follow the rules. In particular, most GNU software allows you to write: +

+
+
make
+make install prefix=/usr/local/stow/package
+
-
     make
-     make install prefix=/usr/local/stow/package
-
-

If you try this with Emacs, then the new value for prefix in the -‘make install’ step will cause some files to get recompiled with -the new value of prefix wired into them. In Emacs 19.23 and -later,1 +

If you try this with Emacs, then the new value for prefix in the +‘make install’ step will cause some files to get recompiled with +the new value of prefix wired into them. In Emacs 19.23 and +later,8 the way to work around this problem is: +

+
+
make
+make install-arch-dep install-arch-indep prefix=/usr/local/stow/emacs
+
-
     make
-     make install-arch-dep install-arch-indep prefix=/usr/local/stow/emacs
-
-

In 19.22 and some prior versions of Emacs, the workaround was: +

In 19.22 and some prior versions of Emacs, the workaround was: +

+
+
make
+make do-install prefix=/usr/local/stow/emacs
+
-
     make
-     make do-install prefix=/usr/local/stow/emacs
-
- -
+
+

-

Footnotes

[1] As I write this, the current version of Emacs is 19.31.

+

Footnotes

-
+
(8)
+

As I write this, the current version of Emacs is 19.31.

+
- + + + diff --git a/local/share/doc/stow/manual-split/GNU-General-Public-License.html b/local/share/doc/stow/manual-split/GNU-General-Public-License.html index 32b3c18..6f3ee1f 100644 --- a/local/share/doc/stow/manual-split/GNU-General-Public-License.html +++ b/local/share/doc/stow/manual-split/GNU-General-Public-License.html @@ -1,411 +1,786 @@ - + + + -GNU General Public License - Stow - - - - - - - - +GNU General Public License (Stow) + + + + + + + + + + + + + + + - Permission is granted to copy and distribute modified versions of - this manual under the conditions for verbatim copying, provided - also that the section entitled ``GNU General Public License'' is - included with the modified manual, and provided that the entire - resulting derived work is distributed under the terms of a - permission notice identical to this one. - Permission is granted to copy and distribute translations of this - manual into another language, under the above conditions for - modified versions, except that this permission notice may be - stated in a translation approved by the Free Software Foundation. - --> - - - -
- + + +
+
+

GNU General Public License

+ +
Version 3, 29 June 2007
-

GNU General Public License

+
+
Copyright © 2007 Free Software Foundation, Inc. https://fsf.org/
 
-
Version 2, June 1991
+Everyone is permitted to copy and distribute verbatim copies of this +license document, but changing it is not allowed. +
-
     Copyright © 1989, 1991 Free Software Foundation, Inc.
-     675 Mass Ave, Cambridge, MA 02139, USA
-     
-     Everyone is permitted to copy and distribute verbatim copies
-     of this license document, but changing it is not allowed.
-
-

Preamble

+

Preamble

-

The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software—to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Library General Public License instead.) You can apply it to -your programs, too. - -

When we speak of free software, we are referring to freedom, not +

The GNU General Public License is a free, copyleft license for +software and other kinds of works. +

+

The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom +to share and change all versions of a program—to make sure it remains +free software for all its users. We, the Free Software Foundation, +use the GNU General Public License for most of our software; it +applies also to any other work released this way by its authors. You +can apply it to your programs, too. +

+

When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - -

To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - -

For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - -

We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - -

Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - -

Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - -

The precise terms and conditions for copying, distribution and +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. +

+

To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you +have certain responsibilities if you distribute copies of the +software, or if you modify it: responsibilities to respect the freedom +of others. +

+

For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, +receive or can get the source code. And you must show them these +terms so they know their rights. +

+

Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. +

+

For the developers’ and authors’ protection, the GPL clearly explains +that there is no warranty for this free software. For both users’ and +authors’ sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. +

+

Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the +manufacturer can do so. This is fundamentally incompatible with the +aim of protecting users’ freedom to change the software. The +systematic pattern of such abuse occurs in the area of products for +individuals to use, which is precisely where it is most unacceptable. +Therefore, we have designed this version of the GPL to prohibit the +practice for those products. If such problems arise substantially in +other domains, we stand ready to extend this provision to those +domains in future versions of the GPL, as needed to protect the +freedom of users. +

+

Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish +to avoid the special danger that patents applied to a free program +could make it effectively proprietary. To prevent this, the GPL +assures that patents cannot be used to render the program non-free. +

+

The precise terms and conditions for copying, distribution and modification follow. +

+

TERMS AND CONDITIONS

-
    -
  1. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The “Program”, below, -refers to any such program or work, and a “work based on the Program” -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term “modification”.) Each licensee is addressed as “you”. +
      +
    1. Definitions. -

      Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. +

      “This License” refers to version 3 of the GNU General Public License. +

      +

      “Copyright” also means copyright-like laws that apply to other kinds +of works, such as semiconductor masks. +

      +

      “The Program” refers to any copyrightable work licensed under this +License. Each licensee is addressed as “you”. “Licensees” and +“recipients” may be individuals or organizations. +

      +

      To “modify” a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of +an exact copy. The resulting work is called a “modified version” of +the earlier work or a work “based on” the earlier work. +

      +

      A “covered work” means either the unmodified Program or a work based +on the Program. +

      +

      To “propagate” a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. +

      +

      To “convey” a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user +through a computer network, with no transfer of a copy, is not +conveying. +

      +

      An interactive user interface displays “Appropriate Legal Notices” to +the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. +

      +
    2. Source Code. -
    3. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. +

      The “source code” for a work means the preferred form of the work for +making modifications to it. “Object code” means any non-source form +of a work. +

      +

      A “Standard Interface” means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. +

      +

      The “System Libraries” of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +“Major Component”, in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. +

      +

      The “Corresponding Source” for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work’s +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. +

      +

      The Corresponding Source need not include anything that users can +regenerate automatically from other parts of the Corresponding Source. +

      +

      The Corresponding Source for a work in source code form is that same +work. +

      +
    4. Basic Permissions. -

      You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. +

      All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. +

      +

      You may make, run and propagate covered works that you do not convey, +without conditions so long as your license otherwise remains in force. +You may convey covered works to others for the sole purpose of having +them make modifications exclusively for you, or provide you with +facilities for running those works, provided that you comply with the +terms of this License in conveying all material for which you do not +control copyright. Those thus making or running the covered works for +you must do so exclusively on your behalf, under your direction and +control, on terms that prohibit them from making any copies of your +copyrighted material outside their relationship with you. +

      +

      Conveying under any other circumstances is permitted solely under the +conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. +

      +
    5. Protecting Users’ Legal Rights From Anti-Circumvention Law. -
    6. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: +

      No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. +

      +

      When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such +circumvention is effected by exercising rights under this License with +respect to the covered work, and you disclaim any intention to limit +operation or modification of the work as a means of enforcing, against +the work’s users, your or third parties’ legal rights to forbid +circumvention of technological measures. +

      +
    7. Conveying Verbatim Copies. -
        -
      1. You must cause the modified files to carry prominent notices -stating that you changed the files and the date of any change. +

        You may convey verbatim copies of the Program’s source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. +

        +

        You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. +

        +
      2. Conveying Modified Source Versions. -
      3. You must cause any work that you distribute or publish, that in -whole or in part contains or is derived from the Program or any -part thereof, to be licensed as a whole at no charge to all third -parties under the terms of this License. +

        You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these +conditions: +

        +
          +
        1. The work must carry prominent notices stating that you modified it, +and giving a relevant date. -
        2. If the modified program normally reads commands interactively -when run, you must cause it, when started running for such -interactive use in the most ordinary way, to print or display an -announcement including an appropriate copyright notice and a -notice that there is no warranty (or else, saying that you provide -a warranty) and that users may redistribute the program under -these conditions, and telling the user how to view a copy of this -License. (Exception: if the Program itself is interactive but -does not normally print such an announcement, your work based on -the Program is not required to print an announcement.) -
        +
      4. The work must carry prominent notices stating that it is released +under this License and any conditions added under section 7. This +requirement modifies the requirement in section 4 to “keep intact all +notices”. -

        These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. +

      5. You must license the entire work, as a whole, under this License to +anyone who comes into possession of a copy. This License will +therefore apply, along with any applicable section 7 additional terms, +to the whole of the work, and all its parts, regardless of how they +are packaged. This License gives no permission to license the work in +any other way, but it does not invalidate such permission if you have +separately received it. -

        Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. +

      6. If the work has interactive user interfaces, each must display +Appropriate Legal Notices; however, if the Program has interactive +interfaces that do not display Appropriate Legal Notices, your work +need not make them do so. +
      -

      In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. +

      A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +“aggregate” if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation’s users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. +

      +
    8. Conveying Non-Source Forms. -
    9. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: +

      You may convey a covered work in object code form under the terms of +sections 4 and 5, provided that you also convey the machine-readable +Corresponding Source under the terms of this License, in one of these +ways: +

      +
        +
      1. Convey the object code in, or embodied in, a physical product +(including a physical distribution medium), accompanied by the +Corresponding Source fixed on a durable physical medium customarily +used for software interchange. -
          -
        1. Accompany it with the complete corresponding machine-readable -source code, which must be distributed under the terms of Sections -1 and 2 above on a medium customarily used for software interchange; or, +
        2. Convey the object code in, or embodied in, a physical product +(including a physical distribution medium), accompanied by a written +offer, valid for at least three years and valid for as long as you +offer spare parts or customer support for that product model, to give +anyone who possesses the object code either (1) a copy of the +Corresponding Source for all the software in the product that is +covered by this License, on a durable physical medium customarily used +for software interchange, for a price no more than your reasonable +cost of physically performing this conveying of source, or (2) access +to copy the Corresponding Source from a network server at no charge. -
        3. Accompany it with a written offer, valid for at least three -years, to give any third party, for a charge no more than your -cost of physically performing source distribution, a complete -machine-readable copy of the corresponding source code, to be -distributed under the terms of Sections 1 and 2 above on a medium -customarily used for software interchange; or, +
        4. Convey individual copies of the object code with a copy of the written +offer to provide the Corresponding Source. This alternative is +allowed only occasionally and noncommercially, and only if you +received the object code with such an offer, in accord with subsection +6b. -
        5. Accompany it with the information you received as to the offer -to distribute corresponding source code. (This alternative is -allowed only for noncommercial distribution and only if you -received the program in object code or executable form with such -an offer, in accord with Subsection b above.) -
        +
      2. Convey the object code by offering access from a designated place +(gratis or for a charge), and offer equivalent access to the +Corresponding Source in the same way through the same place at no +further charge. You need not require recipients to copy the +Corresponding Source along with the object code. If the place to copy +the object code is a network server, the Corresponding Source may be +on a different server (operated by you or a third party) that supports +equivalent copying facilities, provided you maintain clear directions +next to the object code saying where to find the Corresponding Source. +Regardless of what server hosts the Corresponding Source, you remain +obligated to ensure that it is available for as long as needed to +satisfy these requirements. -

        The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. +

      3. Convey the object code using peer-to-peer transmission, provided you +inform other peers where the object code and Corresponding Source of +the work are being offered to the general public at no charge under +subsection 6d. -

        If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. +

      -
    10. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. +

      A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. +

      +

      A “User Product” is either (1) a “consumer product”, which means any +tangible personal property which is normally used for personal, +family, or household purposes, or (2) anything designed or sold for +incorporation into a dwelling. In determining whether a product is a +consumer product, doubtful cases shall be resolved in favor of +coverage. For a particular product received by a particular user, +“normally used” refers to a typical or common use of that class of +product, regardless of the status of the particular user or of the way +in which the particular user actually uses, or expects or is expected +to use, the product. A product is a consumer product regardless of +whether the product has substantial commercial, industrial or +non-consumer uses, unless such uses represent the only significant +mode of use of the product. +

      +

      “Installation Information” for a User Product means any methods, +procedures, authorization keys, or other information required to +install and execute modified versions of a covered work in that User +Product from a modified version of its Corresponding Source. The +information must suffice to ensure that the continued functioning of +the modified object code is in no case prevented or interfered with +solely because modification has been made. +

      +

      If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). +

      +

      The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or +updates for a work that has been modified or installed by the +recipient, or for the User Product in which it has been modified or +installed. Access to a network may be denied when the modification +itself materially and adversely affects the operation of the network +or violates the rules and protocols for communication across the +network. +

      +

      Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. +

      +
    11. Additional Terms. -
    12. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. +

      “Additional permissions” are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. +

      +

      When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. +

      +

      Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders +of that material) supplement the terms of this License with terms: +

      +
        +
      1. Disclaiming warranty or limiting liability differently from the terms +of sections 15 and 16 of this License; or -
      2. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to +
      3. Requiring preservation of specified reasonable legal notices or author +attributions in that material or in the Appropriate Legal Notices +displayed by works containing it; or + +
      4. Prohibiting misrepresentation of the origin of that material, or +requiring that modified versions of such material be marked in +reasonable ways as different from the original version; or + +
      5. Limiting the use for publicity purposes of names of licensors or +authors of the material; or + +
      6. Declining to grant rights under trademark law for use of some trade +names, trademarks, or service marks; or + +
      7. Requiring indemnification of licensors and authors of that material by +anyone who conveys the material (or modified versions of it) with +contractual assumptions of liability to the recipient, for any +liability that these contractual assumptions directly impose on those +licensors and authors. +
      + +

      All other non-permissive additional terms are considered “further +restrictions” within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. +

      +

      If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. +

      +

      Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; the +above requirements apply either way. +

      +
    13. Termination. + +

      You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). +

      +

      However, if you cease all violation of this License, then your license +from a particular copyright holder is reinstated (a) provisionally, +unless and until the copyright holder explicitly and finally +terminates your license, and (b) permanently, if the copyright holder +fails to notify you of the violation by some reasonable means prior to +60 days after the cessation. +

      +

      Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. +

      +

      Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. +

      +
    14. Acceptance Not Required for Having Copies. + +

      You are not required to accept this License in order to receive or run +a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. +

      +
    15. Automatic Licensing of Downstream Recipients. + +

      Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. +

      +

      An “entity transaction” is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party’s predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. +

      +

      You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. +

      +
    16. Patents. + +

      A “contributor” is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor’s “contributor version”. +

      +

      A contributor’s “essential patent claims” are all patent claims owned +or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, “control” includes the right to grant +patent sublicenses in a manner consistent with the requirements of this License. +

      +

      Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor’s essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. +

      +

      In the following three paragraphs, a “patent license” is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To “grant” such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. +

      +

      If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. “Knowingly relying” means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient’s use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. +

      +

      If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. +

      +

      A patent license is “discriminatory” if it does not include within the +scope of its coverage, prohibits the exercise of, or is conditioned on +the non-exercise of one or more of the rights that are specifically +granted under this License. You may not convey a covered work if you +are a party to an arrangement with a third party that is in the +business of distributing software, under which you make payment to the +third party based on the extent of your activity of conveying the +work, and under which the third party grants, to any of the parties +who would receive the covered work from you, a discriminatory patent +license (a) in connection with copies of the covered work conveyed by +you (or copies made from those copies), or (b) primarily for and in +connection with specific products or compilations that contain the +covered work, unless you entered into that arrangement, or that patent +license was granted, prior to 28 March 2007. +

      +

      Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. +

      +
    17. No Surrender of Others’ Freedom. -
    18. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or +

      If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. +excuse you from the conditions of this License. If you cannot convey +a covered work so as to satisfy simultaneously your obligations under +this License and any other pertinent obligations, then as a +consequence you may not convey it at all. For example, if you agree +to terms that obligate you to collect a royalty for further conveying +from those to whom you convey the Program, the only way you could +satisfy both those terms and this License would be to refrain entirely +from conveying the Program. +

      +
    19. Use with the GNU Affero General Public License. -

      If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. +

      Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. +

      +
    20. Revised Versions of this License. -

      It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. +

      The Free Software Foundation may publish revised and/or new versions +of the GNU General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. +

      +

      Each version is given a distinguishing version number. If the Program +specifies that a certain numbered version of the GNU General Public +License “or any later version” applies to it, you have the option of +following the terms and conditions either of that numbered version or +of any later version published by the Free Software Foundation. If +the Program does not specify a version number of the GNU General +Public License, you may choose any version ever published by the Free +Software Foundation. +

      +

      If the Program specifies that a proxy can decide which future versions +of the GNU General Public License can be used, that proxy’s public +statement of acceptance of a version permanently authorizes you to +choose that version for the Program. +

      +

      Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. +

      +
    21. Disclaimer of Warranty. -

      This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. +

      THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT +WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND +PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE +DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR +CORRECTION. +

      +
    22. Limitation of Liability. -
    23. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. +

      IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR +CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT +NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR +LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM +TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER +PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. +

      +
    24. Interpretation of Sections 15 and 16. -
    25. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. +

      If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. +

      +
    -

    Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and “any -later version”, you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. +

    END OF TERMS AND CONDITIONS

    -
  2. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - -
  3. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - -
  4. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. -
- -

How to Apply These Terms to Your New Programs

+

How to Apply These Terms to Your New Programs

If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - -

To do so, attach the following notices to the program. It is safest +free software which everyone can redistribute and change under these +terms. +

+

To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least +state the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found. +

+
+
one line to give the program's name and a brief idea of what it does.
+Copyright (C) year name of author
 
-
     one line to give the program's name and an idea of what it does.
-     Copyright (C) 19yy  name of author
-     
-     This program is free software; you can redistribute it and/or
-     modify it under the terms of the GNU General Public License
-     as published by the Free Software Foundation; either version 2
-     of the License, or (at your option) any later version.
-     
-     This program is distributed in the hope that it will be useful,
-     but WITHOUT ANY WARRANTY; without even the implied warranty of
-     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-     GNU General Public License for more details.
-     
-     You should have received a copy of the GNU General Public License
-     along with this program; if not, write to the Free Software
-     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-
-

Also add information on how to contact you by electronic and paper mail. +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or (at +your option) any later version. -

If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: +This program is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. -

     Gnomovision version 69, Copyright (C) 19yy name of author
-     Gnomovision comes with ABSOLUTELY NO WARRANTY; for details
-     type `show w'.  This is free software, and you are welcome
-     to redistribute it under certain conditions; type `show c'
-     for details.
-
-

The hypothetical commands ‘show w’ and ‘show c’ should show -the appropriate parts of the General Public License. Of course, the -commands you use may be called something other than ‘show w’ and -‘show c’; they could even be mouse-clicks or menu items—whatever -suits your program. +You should have received a copy of the GNU General Public License +along with this program. If not, see https://www.gnu.org/licenses/. +

-

You should also get your employer (if you work as a programmer) or your -school, if any, to sign a “copyright disclaimer” for the program, if -necessary. Here is a sample; alter the names: +

Also add information on how to contact you by electronic and paper mail. +

+

If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: +

+
+
program Copyright (C) year name of author
+This program comes with ABSOLUTELY NO WARRANTY; for details type ‘show w’.
+This is free software, and you are welcome to redistribute it
+under certain conditions; type ‘show c’ for details.
+
-
     Yoyodyne, Inc., hereby disclaims all copyright
-     interest in the program `Gnomovision'
-     (which makes passes at compilers) written
-     by James Hacker.
-     
-     signature of Ty Coon, 1 April 1989
-     Ty Coon, President of Vice
-
-

This General Public License does not permit incorporating your program -into proprietary programs. If your program is a subroutine library, you -may consider it more useful to permit linking proprietary applications -with the library. If this is what you want to do, use the GNU Library -General Public License instead of this License. +

The hypothetical commands ‘show w’ and ‘show c’ should show +the appropriate parts of the General Public License. Of course, your +program’s commands might be different; for a GUI interface, you would +use an “about box”. +

+

You should also get your employer (if you work as a programmer) or school, +if any, to sign a “copyright disclaimer” for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +https://www.gnu.org/licenses/. +

+

The GNU General Public License does not permit incorporating your +program into proprietary programs. If your program is a subroutine +library, you may consider it more useful to permit linking proprietary +applications with the library. If this is what you want to do, use +the GNU Lesser General Public License instead of this License. But +first, please read https://www.gnu.org/licenses/why-not-lgpl.html. +

+
+
+ - + + + diff --git a/local/share/doc/stow/manual-split/Ignore-Lists.html b/local/share/doc/stow/manual-split/Ignore-Lists.html index 219962e..f2e123b 100644 --- a/local/share/doc/stow/manual-split/Ignore-Lists.html +++ b/local/share/doc/stow/manual-split/Ignore-Lists.html @@ -1,77 +1,86 @@ - + + + -Ignore Lists - Stow - - - - - - - - +Ignore Lists (Stow) + + + + + + + + + + + + + + + - Permission is granted to copy and distribute modified versions of - this manual under the conditions for verbatim copying, provided - also that the section entitled ``GNU General Public License'' is - included with the modified manual, and provided that the entire - resulting derived work is distributed under the terms of a - permission notice identical to this one. - Permission is granted to copy and distribute translations of this - manual into another language, under the above conditions for - modified versions, except that this permission notice may be - stated in a translation approved by the Free Software Foundation. - --> - - - -
- + + + -

4 Ignore Lists

-

- -

- - - + + diff --git a/local/share/doc/stow/manual-split/Installing-Packages.html b/local/share/doc/stow/manual-split/Installing-Packages.html index a0abce2..6ab3683 100644 --- a/local/share/doc/stow/manual-split/Installing-Packages.html +++ b/local/share/doc/stow/manual-split/Installing-Packages.html @@ -1,156 +1,187 @@ - + + + -Installing Packages - Stow - - - - - - - - +Installing Packages (Stow) + + + + + + + + + + + + + + + - Permission is granted to copy and distribute modified versions of - this manual under the conditions for verbatim copying, provided - also that the section entitled ``GNU General Public License'' is - included with the modified manual, and provided that the entire - resulting derived work is distributed under the terms of a - permission notice identical to this one. - Permission is granted to copy and distribute translations of this - manual into another language, under the above conditions for - modified versions, except that this permission notice may be - stated in a translation approved by the Free Software Foundation. - --> - - - -
- + + +
+ +
+

5 Installing Packages

-

5 Installing Packages

- -

The default action of Stow is to install a package. This means creating + +

The default action of Stow is to install a package. This means creating symlinks in the target tree that point into the package tree. Stow attempts to do this with as few symlinks as possible; in other words, if Stow can create a single symlink that points to an entire subtree within the package tree, it will choose to do that rather than create a directory in the target tree and populate it with symlinks. - -

- -

5.1 Tree folding

- -

For example, suppose that no packages have yet been installed in -/usr/local; it's completely empty (except for the stow -subdirectory, of course). Now suppose the Perl package is installed. +

+ +
+

5.1 Tree folding

+ + + +

For example, suppose that no packages have yet been installed in +/usr/local; it’s completely empty (except for the stow +subdirectory, of course). Now suppose the Perl package is installed. Recall that it includes the following directories in its installation -image: bin; info; lib/perl; man/man1. -Rather than creating the directory /usr/local/bin and populating -it with symlinks to ../stow/perl/bin/perl and -../stow/perl/bin/a2p (and so on), Stow will create a -single symlink, /usr/local/bin, which points to -stow/perl/bin. In this way, it still works to refer to -/usr/local/bin/perl and /usr/local/bin/a2p, and fewer -symlinks have been created. This is called tree folding, since an +image: bin; info; lib/perl; man/man1. +Rather than creating the directory /usr/local/bin and populating +it with symlinks to ../stow/perl/bin/perl and +../stow/perl/bin/a2p (and so on), Stow will create a +single symlink, /usr/local/bin, which points to +stow/perl/bin. In this way, it still works to refer to +/usr/local/bin/perl and /usr/local/bin/a2p, and fewer +symlinks have been created. This is called tree folding, since an entire subtree is “folded” into a single symlink. - -

To complete this example, Stow will also create the symlink -/usr/local/info pointing to stow/perl/info; the symlink -/usr/local/lib pointing to stow/perl/lib; and the symlink -/usr/local/man pointing to stow/perl/man. - -

Now suppose that instead of installing the Perl package into an empty +

+

To complete this example, Stow will also create the symlink +/usr/local/info pointing to stow/perl/info; the symlink +/usr/local/lib pointing to stow/perl/lib; and the symlink +/usr/local/man pointing to stow/perl/man. +

+

Now suppose that instead of installing the Perl package into an empty target tree, the target tree is not empty to begin with. Instead, it contains several files and directories installed under a different -system-administration philosophy. In particular, /usr/local/bin -already exists and is a directory, as are /usr/local/lib and -/usr/local/man/man1. In this case, Stow will descend into -/usr/local/bin and create symlinks to -../stow/perl/bin/perl and ../stow/perl/bin/a2p (etc.), -and it will descend into /usr/local/lib and create the -tree-folding symlink perl pointing to -../stow/perl/lib/perl, and so on. As a rule, Stow only +system-administration philosophy. In particular, /usr/local/bin +already exists and is a directory, as are /usr/local/lib and +/usr/local/man/man1. In this case, Stow will descend into +/usr/local/bin and create symlinks to +../stow/perl/bin/perl and ../stow/perl/bin/a2p (etc.), +and it will descend into /usr/local/lib and create the +tree-folding symlink perl pointing to +../stow/perl/lib/perl, and so on. As a rule, Stow only descends as far as necessary into the target tree when it can create a tree-folding symlink. However, this behaviour can be changed via -the --no-folding option; see Invoking Stow. - -

- -

5.2 Tree unfolding

- -

The time often comes when a tree-folding symlink has to be undone +the --no-folding option; see Invoking Stow. +

+
+
+

5.2 Tree unfolding

+ + + + +

The time often comes when a tree-folding symlink has to be undone because another package uses one or more of the folded subdirectories in -its installation image. This operation is called splitting open or -unfolding a folded tree. It involves removing the original symlink from +its installation image. This operation is called splitting open or +unfolding a folded tree. It involves removing the original symlink from the target tree, creating a true directory in its place, and then populating the -new directory with symlinks to the newly-installed package and to +new directory with symlinks to the newly-installed package and to the old package that used the old symlink. For example, suppose that -after installing Perl into an empty /usr/local, we wish to -install Emacs. Emacs's installation image includes a bin -directory containing the emacs and etags executables, +after installing Perl into an empty /usr/local, we wish to +install Emacs. Emacs’s installation image includes a bin +directory containing the emacs and etags executables, among others. Stow must make these files appear to be installed -in /usr/local/bin, but presently /usr/local/bin is a -symlink to stow/perl/bin. Stow therefore takes the -following steps: the symlink /usr/local/bin is deleted; the -directory /usr/local/bin is created; links are made from -/usr/local/bin to ../stow/emacs/bin/emacs and -../stow/emacs/bin/etags; and links are made from -/usr/local/bin to ../stow/perl/bin/perl and -../stow/perl/bin/a2p. - -

5.3 Ownership

- -

When splitting open a folded tree, Stow makes sure that the +in /usr/local/bin, but presently /usr/local/bin is a +symlink to stow/perl/bin. Stow therefore takes the +following steps: the symlink /usr/local/bin is deleted; the +directory /usr/local/bin is created; links are made from +/usr/local/bin to ../stow/emacs/bin/emacs and +../stow/emacs/bin/etags; and links are made from +/usr/local/bin to ../stow/perl/bin/perl and +../stow/perl/bin/a2p. +

+
+
+

5.3 Ownership

+ +

When splitting open a folded tree, Stow makes sure that the symlink it is about to remove points inside a valid package in the -current stow directory. Stow will never delete anything -that it doesn't own. Stow “owns” everything living in the +current stow directory. Stow will never delete anything +that it doesn’t own. Stow “owns” everything living in the target tree that points into a package in the stow directory. Anything Stow owns, it can recompute if lost: symlinks that point into a package in the stow directory, or directories that only contain symlinks that stow -“owns”. Note that by this definition, Stow doesn't “own” anything -in the stow directory or in any of the packages. - -

5.4 Conflicts during installation

- -

If Stow needs to create a directory or a symlink in the target +“owns”. Note that by this definition, Stow doesn’t “own” anything +in the stow directory or in any of the packages. +

+
+
+

5.4 Conflicts during installation

+ + +

If Stow needs to create a directory or a symlink in the target tree and it cannot because that name is already in use and is not owned -by Stow, then a conflict has arisen. See Conflicts. +by Stow, then a conflict has arisen. See Conflicts. +

- - +
+
+
+ + + + + diff --git a/local/share/doc/stow/manual-split/Introduction.html b/local/share/doc/stow/manual-split/Introduction.html index 0d971de..b9c02f9 100644 --- a/local/share/doc/stow/manual-split/Introduction.html +++ b/local/share/doc/stow/manual-split/Introduction.html @@ -1,119 +1,170 @@ - + + + -Introduction - Stow - - - - - - - - +Introduction (Stow) + + + + + + + + + + + + + + + - Permission is granted to copy and distribute modified versions of - this manual under the conditions for verbatim copying, provided - also that the section entitled ``GNU General Public License'' is - included with the modified manual, and provided that the entire - resulting derived work is distributed under the terms of a - permission notice identical to this one. - Permission is granted to copy and distribute translations of this - manual into another language, under the above conditions for - modified versions, except that this permission notice may be - stated in a translation approved by the Free Software Foundation. - --> - - - -
- + + +
+ +
+

1 Introduction

-

1 Introduction

+

GNU Stow is a symlink farm manager which takes distinct sets of +software and/or data located in separate directories on the +filesystem, and makes them all appear to be installed in a single +directory tree. +

+

Originally Stow was born to address the need to administer, upgrade, +install, and remove files in independent software packages without +confusing them with other files sharing the same file system space. +For instance, many years ago it used to be common to compile programs +such as Perl and Emacs from source and install them in +/usr/local. When one does so, one winds up with the following +files1 in +/usr/local/man/man1: +

+
+
a2p.1
+ctags.1
+emacs.1
+etags.1
+h2ph.1
+perl.1
+s2p.1
+
-

Stow is a tool for managing the installation of multiple software -packages in the same run-time directory tree. One historical difficulty -of this task has been the need to administer, upgrade, install, and -remove files in independent packages without confusing them with other -files sharing the same file system space. For instance, it is common to -install Perl and Emacs in /usr/local. When one does so, one -winds up with the following files1 in /usr/local/man/man1: - -

     a2p.1
-     ctags.1
-     emacs.1
-     etags.1
-     h2ph.1
-     perl.1
-     s2p.1
-
-

Now suppose it's time to uninstall Perl. Which man pages -get removed? Obviously perl.1 is one of them, but it should not -be the administrator's responsibility to memorize the ownership of +

Now suppose it’s time to uninstall Perl. Which man pages +get removed? Obviously perl.1 is one of them, but it should not +be the administrator’s responsibility to memorize the ownership of individual files by separate packages. - -

The approach used by Stow is to install each package into its own +

+

The approach used by Stow is to install each package into its own tree, then use symbolic links to make it appear as though the files are installed in the common tree. Administration can be performed in the -package's private tree in isolation from clutter from other packages. +package’s private tree in isolation from clutter from other packages. Stow can then be used to update the symbolic links. The structure of each private tree should reflect the desired structure in the common -tree; i.e. (in the typical case) there should be a bin directory -containing executables, a man/man1 directory containing section 1 +tree; i.e. (in the typical case) there should be a bin directory +containing executables, a man/man1 directory containing section 1 man pages, and so on. +

+

While this is useful for keeping track of system-wide and per-user +installations of software built from source, in more recent times +software packages are often managed by more sophisticated package +management software such as +rpm, +dpkg, and +Nix / +GNU Guix, or +language-native package managers such as +Ruby’s gem, +Python’s +pip, Javascript’s npm, and so on. +

+

However Stow is still used not only for software package management, +but also for other purposes, such as facilitating a more controlled +approach to management of configuration files in the user’s home +directory2, +especially when coupled with version control +systems3. +

+

Stow was inspired by Carnegie Mellon’s Depot program, but is +substantially simpler and safer. Whereas Depot required database +files to keep things in sync, Stow stores no extra state between runs, +so there’s no danger (as there was in Depot) of mangling directories +when file hierarchies don’t match the database. Also unlike Depot, +Stow will never delete any files, directories, or links that appear in +a Stow directory (e.g., /usr/local/stow/emacs), so it’s always +possible to rebuild the target tree (e.g., /usr/local). +

+

Stow is implemented as a combination of a Perl script providing a CLI +interface, and a backend Perl module which does most of the work. +

+

For information about the latest version of Stow, you can refer to +http://www.gnu.org/software/stow/. +

-

Stow was inspired by Carnegie Mellon's Depot program, but is -substantially simpler and safer. Whereas Depot required database files -to keep things in sync, Stow stores no extra state between runs, so -there's no danger (as there was in Depot) of mangling directories when -file hierarchies don't match the database. Also unlike Depot, Stow will -never delete any files, directories, or links that appear in a Stow -directory (e.g., /usr/local/stow/emacs), so it's always possible -to rebuild the target tree (e.g., /usr/local). - -

For information about the latest version of Stow, you can refer to -http://www.gnu.org/software/stow/. - - -

+
+

-

Footnotes

[1] As of Perl 4.036 and Emacs -19.22.

+

Footnotes

-
+
(1)
+

As of Perl 4.036 and Emacs 19.22. These are now +ancient releases but the example still holds valid.

+
(2)
+

http://brandon.invergo.net/news/2012-05-26-using-gnu-stow-to-manage-your-dotfiles.html

+
(3)
+

http://lists.gnu.org/archive/html/info-stow/2011-12/msg00000.html

+
+
+ - + + + diff --git a/local/share/doc/stow/manual-split/Invoking-Stow.html b/local/share/doc/stow/manual-split/Invoking-Stow.html index ba12b4d..abdcc19 100644 --- a/local/share/doc/stow/manual-split/Invoking-Stow.html +++ b/local/share/doc/stow/manual-split/Invoking-Stow.html @@ -1,206 +1,290 @@ - + + + -Invoking Stow - Stow - - - - - - - - +Invoking Stow (Stow) + + + + + + + + + + + + + + + - Permission is granted to copy and distribute modified versions of - this manual under the conditions for verbatim copying, provided - also that the section entitled ``GNU General Public License'' is - included with the modified manual, and provided that the entire - resulting derived work is distributed under the terms of a - permission notice identical to this one. - Permission is granted to copy and distribute translations of this - manual into another language, under the above conditions for - modified versions, except that this permission notice may be - stated in a translation approved by the Free Software Foundation. - --> - - - -
- + + +
+ +
+

3 Invoking Stow

-

3 Invoking Stow

+

The syntax of the stow command is: +

+
+
stow [options] [action flag] package ...
+
-

The syntax of the stow command is: - -

     stow [options] [action flag] package ...
-
-

Each package is the name of a package (e.g., ‘perl’) in the stow -directory that we wish to install into (or delete from) the target directory. +

Each package is the name of a package (e.g., ‘perl’) in the stow +directory that we wish to install into (or delete from) the target directory. The default action is to install the given packages, although alternate actions -may be specified by preceding the package name(s) with an action flag. - -

The following options are supported: - -

-
-d dir
--dir=dir
Set the stow directory to dir. Defaults to the value of the environment -variable STOW_DIR if set, or the current directory otherwise. - -
-t dir
--target=dir
Set the target directory to dir instead of the parent of the stow +may be specified by preceding the package name(s) with an action flag. +

+

The following options are supported: +

+
+
-d dir
+
--dir=dir
+

Set the stow directory to dir. Defaults to the value of the environment +variable STOW_DIR if set, or the current directory otherwise. +

+
+
-t dir
+
--target=dir
+

Set the target directory to dir instead of the parent of the stow directory. Defaults to the parent of the stow directory, so it is typical to -execute stow from the directory /usr/local/stow. +execute stow from the directory /usr/local/stow. +

+
+
--ignore=regexp
+

This (repeatable) option lets you suppress acting on files that match the +given Perl regular expression. For example, using the options +

+
+
--ignore='.*\.orig' --ignore='.*\.dist'
+
-
--ignore=regexp
This (repeatable) option lets you suppress acting on files that match the -given perl regular expression. For example, using the options - -
          --ignore='*.orig' --ignore='*.dist'
-
-

will cause stow to ignore files ending in .orig or .dist. - -

Note that the regular expression is anchored to the end of the filename, +

will cause stow to ignore files ending in .orig or .dist. +

+

Note that the regular expression is anchored to the end of the filename, because this is what you will want to do most of the time. - -

Also note that by default Stow automatically ignores a “sensible” -built-in list of files and directories such as CVS, editor -backup files, and so on. See Ignore Lists, for more details. - -

--defer=regexp
This (repeatable) option avoids stowing a file matching the given -regular expression, if that file is already stowed by another package. -This is effectively the opposite of --override. - -

(N.B. the name --defer was chosen in the sense that the package +

+

Also note that by default Stow automatically ignores a “sensible” +built-in list of files and directories such as CVS, editor +backup files, and so on. See Ignore Lists, for more details. +

+
+
--defer=regexp
+

This (repeatable) option avoids stowing a file matching the given +regular expression, if that file is already stowed by another package. +This is effectively the opposite of --override. +

+

(N.B. the name --defer was chosen in the sense that the package currently being stowed is treated with lower precedence than any already installed package, not in the sense that the operation is being postponed to be run at a later point in time; do not confuse -this nomenclature with the wording used in Deferred Operation.) +this nomenclature with the wording used in Deferred Operation.) +

+

For example, the following options +

+
+
--defer=man --defer=info
+
-

For example, the following options - -

          --defer=man --defer=info
-
-

will cause stow to skip over pre-existing man and info pages. - -

Equivalently, you could use ‘--defer='man|info'’ since the -argument is just a Perl regex. - -

Note that the regular expression is anchored to the beginning of the path +

will cause stow to skip over pre-existing man and info pages. +

+

Equivalently, you could use ‘--defer='man|info'’ since the +argument is just a Perl regular expression. +

+

Note that the regular expression is anchored to the beginning of the path relative to the target directory, because this is what you will want to do most of the time. - -

--override=regexp
This (repeatable) option forces any file matching the regular expression to be +

+
+
--override=regexp
+

This (repeatable) option forces any file matching the regular expression to be stowed, even if the file is already stowed to another package. For example, the following options +

+
+
--override=man --override=info
+
-
          --override=man --override=info
-
-

will permit stow to overwrite links that point to pre-existing man and info +

will permit stow to overwrite links that point to pre-existing man and info pages that are owned by stow and would otherwise cause a conflict. - -

The regular expression is anchored to the beginning of the path relative to +

+

The regular expression is anchored to the beginning of the path relative to the target directory, because this is what you will want to do most of the time. - -

--no-folding
-This disables any further tree folding or tree refolding. -If a new subdirectory is encountered whilst stowing a new package, the -subdirectory is created within the target, and its contents are -symlinked, rather than just creating a symlink for the directory. If -removal of symlinks whilst unstowing a package causes a subtree to be -foldable (i.e. only containing symlinks to a single package), that -subtree will not be removed and replaced with a symlink. - -


--adopt
Warning! This behaviour is specifically intended to alter the +

+
+
--dotfiles
+
+

Enable special handling for dotfiles (files or folders whose +name begins with a period) in the package directory. If this option is +enabled, Stow will add a preprocessing step for each file or folder +whose name begins with ‘dot-’, and replace the ‘dot-’ prefix +in the name by a period ‘.’. This is useful when Stow is used to +manage collections of dotfiles, to avoid having a package directory +full of hidden files. +

+

For example, suppose we have a package containing two files, +stow/dot-bashrc and stow/dot-emacs.d/init.el. With this +option, Stow will create symlinks from .bashrc to +stow/dot-bashrc and from .emacs.d/init.el to +stow/dot-emacs.d/init.el. Any other files, whose name does not +begin with ‘dot-’, will be processed as usual. +

+
+
--no-folding
+
+

This disables any further tree folding (see tree folding) or +refolding (see tree refolding). If a new subdirectory is +encountered whilst stowing a new package, the subdirectory is created +within the target, and its contents are symlinked, rather than just +creating a symlink for the directory. If removal of symlinks whilst +unstowing a package causes a subtree to be foldable (i.e. only +containing symlinks to a single package), that subtree will not be +removed and replaced with a symlink. +

+
+
--adopt
+

Warning! This behaviour is specifically intended to alter the contents of your stow directory. If you do not want that, this option is not for you. - -

When stowing, if a target is encountered which already exists but is a +

+

When stowing, if a target is encountered which already exists but is a plain file (and hence not owned by any existing stow package), then -normally Stow will register this as a conflict and refuse to proceed. +normally Stow will register this as a conflict and refuse to proceed. This option changes that behaviour so that the file is moved to the -same relative place within the package's installation image within the +same relative place within the package’s installation image within the stow directory, and then stowing proceeds as before. So effectively, the file becomes adopted by the stow package, without its contents changing. - -

This is particularly useful when the stow package is under the control +

+

This is particularly useful when the stow package is under the control of a version control system, because it allows files in the target tree, with potentially different contents to the equivalent versions -in the stow package's installation image, to be adopted into the -package, then compared by running something like ‘git diff ...’ -inside the stow package, and finally either kept (e.g. via ‘git -commit ...’) or discarded (‘git checkout HEAD ...’). - -


-n
--no
--simulate
Do not perform any operations that modify the file system; in combination with --v can be used to merely show what would happen. - -


-v
--verbose[=n]
Send verbose output to standard error describing what Stow is -doing. Verbosity levels are 0, 1, 2, and 3; 0 is the default. Using --v or --verbose increases the verbosity by one; using -‘--verbose=n’ sets it to n. - -
-p
--compat
Scan the whole target tree when unstowing. By default, only -directories specified in the installation image are scanned +in the stow package’s installation image, to be adopted into the +package, then compared by running something like ‘git diff ...’ +inside the stow package, and finally either kept (e.g. via ‘git +commit ...’) or discarded (‘git checkout HEAD ...’). +

+
+
+-n
+
--no
+
--simulate
+

Do not perform any operations that modify the file system; in combination with +-v can be used to merely show what would happen. +

+
+
-v
+
--verbose[=n]
+

Send verbose output to standard error describing what Stow is +doing. Verbosity levels are from 0 to 5; 0 is the default. Using +-v or --verbose increases the verbosity by one; using +‘--verbose=n’ sets it to n. +

+
+
-p
+
--compat
+

Scan the whole target tree when unstowing. By default, only +directories specified in the installation image are scanned during an unstow operation. Scanning the whole tree can be prohibitive if your target tree is very large. This option restores -the legacy behaviour; however, the --badlinks option to the -chkstow utility may be a better way of ensuring that your -installation does not have any dangling symlinks (see Target Maintenance). - -

-V
--version
Show Stow version number, and exit. - -
-h
--help
Show Stow command syntax, and exit. +the legacy behaviour; however, the --badlinks option to the +chkstow utility may be a better way of ensuring that your +installation does not have any dangling symlinks (see Target Maintenance). +

+
+
-V
+
--version
+

Show Stow version number, and exit. +

+
+
-h
+
--help
+

Show Stow command syntax, and exit. +

-

The following action flags are supported: - -

-
-D
--delete
Delete (unstow) the package name(s) that follow this option from the target -directory. This option may be repeated any number of times. - -
-R
--restow
Restow (first unstow, then stow again) the package names that follow this +

The following action flags are supported: +

+
+
-D
+
--delete
+

Delete (unstow) the package name(s) that follow this option from the target +directory. This option may be repeated any number of times. +

+
+
-R
+
--restow
+

Restow (first unstow, then stow again) the package names that follow this option. This is useful for pruning obsolete symlinks from the target tree after updating the software in a package. This option may be repeated any number of times. - -

-S
--stow
explictly stow the package name(s) that follow this option. May be -omitted if you are not using the -D or -R options in the -same invocation. See Mixing Operations, for details of when you +

+
+
-S
+
--stow
+

explictly stow the package name(s) that follow this option. May be +omitted if you are not using the -D or -R options in the +same invocation. See Mixing Operations, for details of when you might like to use this feature. This option may be repeated any number -of times. +of times. +

- - +
+
+ + + + + + diff --git a/local/share/doc/stow/manual-split/Justification-For-Yet-Another-Set-Of-Ignore-Files.html b/local/share/doc/stow/manual-split/Justification-For-Yet-Another-Set-Of-Ignore-Files.html index c6cc9c3..b77c82b 100644 --- a/local/share/doc/stow/manual-split/Justification-For-Yet-Another-Set-Of-Ignore-Files.html +++ b/local/share/doc/stow/manual-split/Justification-For-Yet-Another-Set-Of-Ignore-Files.html @@ -1,93 +1,101 @@ - + + + -Justification For Yet Another Set Of Ignore Files - Stow - - - - - - - - +Justification For Yet Another Set Of Ignore Files (Stow) + + + + + + + + + + + + + + - Permission is granted to copy and distribute modified versions of - this manual under the conditions for verbatim copying, provided - also that the section entitled ``GNU General Public License'' is - included with the modified manual, and provided that the entire - resulting derived work is distributed under the terms of a - permission notice identical to this one. - Permission is granted to copy and distribute translations of this - manual into another language, under the above conditions for - modified versions, except that this permission notice may be - stated in a translation approved by the Free Software Foundation. - --> - - - - -

4.3 Justification For Yet Another Set Of Ignore Files

+ +
+ +
+

4.3 Justification For Yet Another Set Of Ignore Files

The reader may note that this format is very similar to existing -ignore list file formats, such as those for cvs, git, -rsync etc., and wonder if another set of ignore lists is +ignore list file formats, such as those for cvs, git, +rsync etc., and wonder if another set of ignore lists is justified. However there are good reasons why Stow does not simply -check for the presence of say, .cvsignore, and use that if it +check for the presence of say, .cvsignore, and use that if it exists. Firstly, there is no guarantee that a stow package would contain any version control meta-data, or permit introducing this if -it didn't already exist. - -

Secondly even if it did, version control system ignore lists generally -reflect build-time ignores rather than install-time, and +it didn’t already exist. +

+

Secondly even if it did, version control system ignore lists generally +reflect build-time ignores rather than install-time, and there may be some intermediate or temporary files on those ignore lists generated during development or at build-time which it would be inappropriate to stow, even though many files generated at build-time (binaries, libraries, documentation etc.) certainly do need to be -stowed. Similarly, if a file is not in the version control -system's ignore list, there is no way of knowing whether the file is +stowed. Similarly, if a file is not in the version control +system’s ignore list, there is no way of knowing whether the file is intended for end use, let alone whether the version control system is tracking it or not. - -

Therefore it seems clear that ignore lists provided by version control +

+

Therefore it seems clear that ignore lists provided by version control systems do not provide sufficient information for Stow to determine which files and directories to stow, and so it makes sense for Stow to support independent ignore lists. +

+
- - + + + diff --git a/local/share/doc/stow/manual-split/Known-Bugs.html b/local/share/doc/stow/manual-split/Known-Bugs.html index bef4833..7003823 100644 --- a/local/share/doc/stow/manual-split/Known-Bugs.html +++ b/local/share/doc/stow/manual-split/Known-Bugs.html @@ -1,76 +1,81 @@ - + + + -Known Bugs - Stow - - - - - - - - +Known Bugs (Stow) + + + + + + + + + + + + + + + - Permission is granted to copy and distribute modified versions of - this manual under the conditions for verbatim copying, provided - also that the section entitled ``GNU General Public License'' is - included with the modified manual, and provided that the entire - resulting derived work is distributed under the terms of a - permission notice identical to this one. - Permission is granted to copy and distribute translations of this - manual into another language, under the above conditions for - modified versions, except that this permission notice may be - stated in a translation approved by the Free Software Foundation. - --> - - - -
- + + +
+
+

15 Known Bugs

+ +

There are no known bugs in Stow version 2.3.2-fixbug56727! +If you think you have found one, please see Reporting Bugs. +

+
-

15 Known Bugs

-

There are no known bugs in Stow version 2.2.2! -If you think you have found one, please see Reporting Bugs. - - - - - - - + + diff --git a/local/share/doc/stow/manual-split/Mixing-Operations.html b/local/share/doc/stow/manual-split/Mixing-Operations.html index 1267fc1..65aed1f 100644 --- a/local/share/doc/stow/manual-split/Mixing-Operations.html +++ b/local/share/doc/stow/manual-split/Mixing-Operations.html @@ -1,90 +1,104 @@ - + + + -Mixing Operations - Stow - - - - - - - - +Mixing Operations (Stow) + + + + + + + + + + + + + + + - Permission is granted to copy and distribute modified versions of - this manual under the conditions for verbatim copying, provided - also that the section entitled ``GNU General Public License'' is - included with the modified manual, and provided that the entire - resulting derived work is distributed under the terms of a - permission notice identical to this one. - Permission is granted to copy and distribute translations of this - manual into another language, under the above conditions for - modified versions, except that this permission notice may be - stated in a translation approved by the Free Software Foundation. - --> - - - -

- + + +
+ +
+

8 Mixing Operations

+ -

8 Mixing Operations

- -

-Since version 2.0, multiple distinct actions can be specified in a single +

Since version 2.0, multiple distinct actions can be specified in a single invocation of GNU Stow. For example, to update an installation of Emacs from version 21.3 to 21.4a you can now do the following: +

+
+
stow -D emacs-21.3 -S emacs-21.4a
+
-
     stow -D emacs-21.3 -S emacs-21.4a
-
-

which will replace emacs-21.3 with emacs-21.4a using a single invocation. - -

This is much faster and cleaner than performing two separate +

which will replace emacs-21.3 with emacs-21.4a using a single invocation. +

+ +

This is much faster and cleaner than performing two separate invocations of stow, because redundant folding/unfolding operations can be factored out. In addition, all the operations are calculated -and merged before being executed (see Deferred Operation), so the +and merged before being executed (see Deferred Operation), so the amount of of time in which GNU Emacs is unavailable is minimised. +

+

You can mix and match any number of actions, for example, +

+
+
stow -S pkg1 pkg2 -D pkg3 pkg4 -S pkg5 -R pkg6
+
-

You can mix and match any number of actions, for example, +

will unstow pkg3, pkg4 and pkg6, then stow pkg1, pkg2, pkg5 and pkg6. +

+
-
     stow -S pkg1 pkg2 -D pkg3 pkg4 -S pkg5 -R pkg6
-
-

will unstow pkg3, pkg4 and pkg6, then stow pkg1, pkg2, pkg5 and pkg6. - - + + diff --git a/local/share/doc/stow/manual-split/Motivation-For-Ignore-Lists.html b/local/share/doc/stow/manual-split/Motivation-For-Ignore-Lists.html index 37461e4..679c7fb 100644 --- a/local/share/doc/stow/manual-split/Motivation-For-Ignore-Lists.html +++ b/local/share/doc/stow/manual-split/Motivation-For-Ignore-Lists.html @@ -1,94 +1,102 @@ - + + + -Motivation For Ignore Lists - Stow - - - - - - - - - +Motivation For Ignore Lists (Stow) + + + + + + + + + + + + + + + - Permission is granted to copy and distribute modified versions of - this manual under the conditions for verbatim copying, provided - also that the section entitled ``GNU General Public License'' is - included with the modified manual, and provided that the entire - resulting derived work is distributed under the terms of a - permission notice identical to this one. - Permission is granted to copy and distribute translations of this - manual into another language, under the above conditions for - modified versions, except that this permission notice may be - stated in a translation approved by the Free Software Foundation. - --> - - - -

- -

-Next: , -Previous: Ignore Lists, -Up: Ignore Lists -


-
-

4.1 Motivation For Ignore Lists

+ +
+ +
+

4.1 Motivation For Ignore Lists

In many situations, there will exist files under the package directories which it would be undesirable to stow into the target directory. For example, files related version control such as -.gitignore, CVS, *,v (RCS files) should typically +.gitignore, CVS, *,v (RCS files) should typically not have symlinks from the target tree pointing to them. Also there may be files or directories relating to the build of the package which are not needed at run-time. - -

In these cases, it can be rather cumbersome to specify a ---ignore parameter for each file or directory to be ignored. +

+

In these cases, it can be rather cumbersome to specify a +--ignore parameter for each file or directory to be ignored. This could be worked around by ensuring the existence of -~/.stowrc containing multiple --ignore lines, or if a +~/.stowrc containing multiple --ignore lines, or if a different set of files/directories should be ignored depending on -which stow package is involved, a .stowrc file for each stow +which stow package is involved, a .stowrc file for each stow package, but this would require the user to ensure that they were in the correct directory before invoking stow, which would be tedious and error-prone. Furthermore, since Stow shifts parameters from -.stowrc onto ARGV at run-time, it could clutter up the process +.stowrc onto ARGV at run-time, it could clutter up the process table with excessively long parameter lists, or even worse, exceed the -operating system's limit for process arguments. - -

Therefore in addition to --ignore parameters, Stow provides a +operating system’s limit for process arguments. +

+ +

Therefore in addition to --ignore parameters, Stow provides a way to specify lists of files and directories to ignore. +

+
- - + + + diff --git a/local/share/doc/stow/manual-split/Multiple-Stow-Directories.html b/local/share/doc/stow/manual-split/Multiple-Stow-Directories.html index e8573d1..946a100 100644 --- a/local/share/doc/stow/manual-split/Multiple-Stow-Directories.html +++ b/local/share/doc/stow/manual-split/Multiple-Stow-Directories.html @@ -1,86 +1,94 @@ - + + + -Multiple Stow Directories - Stow - - - - - - - - +Multiple Stow Directories (Stow) + + + + + + + + + + + + + + + - Permission is granted to copy and distribute modified versions of - this manual under the conditions for verbatim copying, provided - also that the section entitled ``GNU General Public License'' is - included with the modified manual, and provided that the entire - resulting derived work is distributed under the terms of a - permission notice identical to this one. - Permission is granted to copy and distribute translations of this - manual into another language, under the above conditions for - modified versions, except that this permission notice may be - stated in a translation approved by the Free Software Foundation. - --> - - - -
- -

-Next: , -Previous: Mixing Operations, -Up: Top -


-
-

9 Multiple Stow Directories

+ +
+ +
+

9 Multiple Stow Directories

If there are two or more system administrators who wish to maintain software separately, or if there is any other reason to want two or more -stow directories, it can be done by creating a file named .stow -in each stow directory. The presence of /usr/local/foo/.stow -informs Stow that, though foo is not the current stow +stow directories, it can be done by creating a file named .stow +in each stow directory. The presence of /usr/local/foo/.stow +informs Stow that, though foo is not the current stow directory, even if it is a subdirectory of the target directory, -nevertheless it is a stow directory and as such Stow -doesn't “own” anything in it (see Installing Packages). This will -protect the contents of foo from a ‘stow -D’, for instance. +nevertheless it is a stow directory and as such Stow +doesn’t “own” anything in it (see Installing Packages). This will +protect the contents of foo from a ‘stow -D’, for instance. +

- -

When multiple stow directories share a target tree, if a tree-folding +

When multiple stow directories share a target tree, if a tree-folding symlink is encountered and needs to be split open during an installation, as long as the top-level stow directory into which the -existing symlink points contains .stow, Stow knows how to split +existing symlink points contains .stow, Stow knows how to split open the tree in the correct manner. +

+
- - + + + diff --git a/local/share/doc/stow/manual-split/Other-FSF-Software.html b/local/share/doc/stow/manual-split/Other-FSF-Software.html index 46a1d20..7efab66 100644 --- a/local/share/doc/stow/manual-split/Other-FSF-Software.html +++ b/local/share/doc/stow/manual-split/Other-FSF-Software.html @@ -1,85 +1,95 @@ - + + + -Other FSF Software - Stow - - - - - - - - - +Other FSF Software (Stow) + + + + + + + + + + + + + + + - Permission is granted to copy and distribute modified versions of - this manual under the conditions for verbatim copying, provided - also that the section entitled ``GNU General Public License'' is - included with the modified manual, and provided that the entire - resulting derived work is distributed under the terms of a - permission notice identical to this one. - Permission is granted to copy and distribute translations of this - manual into another language, under the above conditions for - modified versions, except that this permission notice may be - stated in a translation approved by the Free Software Foundation. - --> - - - -
- -

-Next: , -Previous: GNU Emacs, -Up: Compile-time vs Install-time -


-
-

12.3 Other FSF Software

+ +
+ +
+

12.3 Other FSF Software

The Free Software Foundation, the organization behind the GNU project, -has been unifying the build procedure for its tools for some time. -Thanks to its tools ‘autoconf’ and ‘automake’, most packages +has been unifying the build procedure for its tools for some time. +Thanks to its tools ‘autoconf’ and ‘automake’, most packages now respond well to these simple steps, with no other intervention necessary: +

+
+
./configure options
+make
+make install prefix=/usr/local/stow/package
+
-
     ./configure options
-     make
-     make install prefix=/usr/local/stow/package
-
-

Hopefully, these tools can evolve to be aware of Stow-managed packages, -such that providing an option to ‘configure’ can allow ‘make’ -and ‘make install’ steps to work correctly without needing to +

Hopefully, these tools can evolve to be aware of Stow-managed packages, +such that providing an option to ‘configure’ can allow ‘make’ +and ‘make install’ steps to work correctly without needing to “fool” the build process. +

+
- - + + + diff --git a/local/share/doc/stow/manual-split/Perl-and-Perl-5-Modules.html b/local/share/doc/stow/manual-split/Perl-and-Perl-5-Modules.html index 6c082bb..00cb9ec 100644 --- a/local/share/doc/stow/manual-split/Perl-and-Perl-5-Modules.html +++ b/local/share/doc/stow/manual-split/Perl-and-Perl-5-Modules.html @@ -1,150 +1,178 @@ - + + + -Perl and Perl 5 Modules - Stow - - - - - - - - +Perl and Perl 5 Modules (Stow) + + + + + + + + + + + + + + - Permission is granted to copy and distribute modified versions of - this manual under the conditions for verbatim copying, provided - also that the section entitled ``GNU General Public License'' is - included with the modified manual, and provided that the entire - resulting derived work is distributed under the terms of a - permission notice identical to this one. - Permission is granted to copy and distribute translations of this - manual into another language, under the above conditions for - modified versions, except that this permission notice may be - stated in a translation approved by the Free Software Foundation. - --> - - - -
- -

-Previous: Cygnus Software, -Up: Compile-time vs Install-time -


-
-

12.5 Perl and Perl 5 Modules

+ +
+ +
+

12.5 Perl and Perl 5 Modules

Perl 4.036 allows you to specify different locations for installation -and for run-time. It is the only widely-used package in this author's +and for run-time. It is the only widely-used package in this author’s experience that allows this, though hopefully more packages will adopt this model. - -

Unfortunately, the authors of Perl believed that only AFS sites need +

+

Unfortunately, the authors of Perl believed that only AFS sites need this ability. The configuration instructions for Perl 4 misleadingly state that some occult means are used under AFS to transport files from their installation tree to their run-time tree. In fact, that confusion -arises from the fact that Depot, Stow's predecessor, originated at -Carnegie Mellon University, which was also the birthplace of AFS. CMU's +arises from the fact that Depot, Stow’s predecessor, originated at +Carnegie Mellon University, which was also the birthplace of AFS. CMU’s need to separate install-time and run-time trees stemmed from its use of Depot, not from AFS. - -

The result of this confusion is that Perl 5's configuration script -doesn't even offer the option of separating install-time and run-time -trees unless you're running AFS. Fortunately, after you've -entered all the configuration settings, Perl's setup script gives you +

+

The result of this confusion is that Perl 5’s configuration script +doesn’t even offer the option of separating install-time and run-time +trees unless you’re running AFS. Fortunately, after you’ve +entered all the configuration settings, Perl’s setup script gives you the opportunity to edit those settings in a file called -config.sh. When prompted, you should edit this file and replace +config.sh. When prompted, you should edit this file and replace occurrences of +

+
+
inst.../usr/local...
+
-
     inst.../usr/local...
-
-

with +

with +

+
+
inst.../usr/local/stow/perl...
+
-
     inst.../usr/local/stow/perl...
-
-

You can do this with the following Unix command: +

You can do this with the following Unix command: +

+
+
sed 's,^\(inst.*/usr/local\),\1/stow/perl,' config.sh > config.sh.new
+mv config.sh.new config.sh
+
-
     sed 's,^\(inst.*/usr/local\),\1/stow/perl,' config.sh > config.sh.new
-     mv config.sh.new config.sh
-
-

Hopefully, the Perl authors will correct this deficiency in Perl 5's +

Hopefully, the Perl authors will correct this deficiency in Perl 5’s configuration mechanism. - -

Perl 5 modules—i.e., extensions to Perl 5—generally conform to a set +

+

Perl 5 modules—i.e., extensions to Perl 5—generally conform to a set of standards for building and installing them. The standard says that -the package comes with a top-level Makefile.PL, which is a Perl -script. When it runs, it generates a Makefile. - -

If you followed the instructions above for editing config.sh when -Perl was built, then when you create a Makefile from a -Makefile.PL, it will contain separate locations for run-time -(/usr/local) and install-time (/usr/local/stow/perl). +the package comes with a top-level Makefile.PL, which is a Perl +script. When it runs, it generates a Makefile. +

+

If you followed the instructions above for editing config.sh when +Perl was built, then when you create a Makefile from a +Makefile.PL, it will contain separate locations for run-time +(/usr/local) and install-time (/usr/local/stow/perl). Thus you can do +

+
+
perl Makefile.PL
+make
+make install
+
-
     perl Makefile.PL
-     make
-     make install
-
-

and the files will be installed into /usr/local/stow/perl. +

and the files will be installed into /usr/local/stow/perl. However, you might prefer each Perl module to be stowed separately. In that case, you must edit the resulting Makefile, replacing -/usr/local/stow/perl with /usr/local/stow/module. +/usr/local/stow/perl with /usr/local/stow/module. The best way to do this is: +

+
+
perl Makefile.PL
+find . -name Makefile -print | \
+  xargs perl -pi~ -e 's,^(INST.*/stow)/perl,$1/module,;'
+make
+make install
+
-
     perl Makefile.PL
-     find . -name Makefile -print | \
-       xargs perl -pi~ -e 's,^(INST.*/stow)/perl,$1/module,;'
-     make
-     make install
-
-

(The use of ‘find’ and ‘xargs’ ensures that all Makefiles in -the module's source tree, even those in subdirectories, get edited.) A +

(The use of ‘find’ and ‘xargs’ ensures that all Makefiles in +the module’s source tree, even those in subdirectories, get edited.) A good convention to follow is to name the stow directory for a Perl -module cpan.module, where ‘cpan’ stands for +module cpan.module, where ‘cpan’ stands for Comprehensive Perl Archive Network, a collection of FTP sites that is -the source of most Perl 5 extensions. This way, it's easy to tell at a -glance which of the subdirectories of /usr/local/stow are Perl 5 +the source of most Perl 5 extensions. This way, it’s easy to tell at a +glance which of the subdirectories of /usr/local/stow are Perl 5 extensions. - -

When you stow separate Perl 5 modules separately, you are likely to -encounter conflicts (see Conflicts) with files named .exists -and perllocal.pod. One way to work around this is to remove +

+

When you stow separate Perl 5 modules separately, you are likely to +encounter conflicts (see Conflicts) with files named .exists +and perllocal.pod. One way to work around this is to remove those files before stowing the module. If you use the -cpan.module naming convention, you can simply do this: +cpan.module naming convention, you can simply do this: +

+
+
cd /usr/local/stow
+find cpan.* \( -name .exists -o -name perllocal.pod \) -print | \
+  xargs rm
+
-
     cd /usr/local/stow
-     find cpan.* \( -name .exists -o -name perllocal.pod \) -print | \
-       xargs rm
-
- - +
+
+ + + + + + diff --git a/local/share/doc/stow/manual-split/Reporting-Bugs.html b/local/share/doc/stow/manual-split/Reporting-Bugs.html index 6f3f6c2..45fa491 100644 --- a/local/share/doc/stow/manual-split/Reporting-Bugs.html +++ b/local/share/doc/stow/manual-split/Reporting-Bugs.html @@ -1,98 +1,107 @@ - + + + -Reporting Bugs - Stow - - - - - - - - +Reporting Bugs (Stow) + + + + + + + + + + + + + + + - Permission is granted to copy and distribute modified versions of - this manual under the conditions for verbatim copying, provided - also that the section entitled ``GNU General Public License'' is - included with the modified manual, and provided that the entire - resulting derived work is distributed under the terms of a - permission notice identical to this one. - Permission is granted to copy and distribute translations of this - manual into another language, under the above conditions for - modified versions, except that this permission notice may be - stated in a translation approved by the Free Software Foundation. - --> - - - -
- -

-Next: , -Previous: Bootstrapping, -Up: Top -


-
-

14 Reporting Bugs

+ +
+ +
+

14 Reporting Bugs

Please send bug reports to the current maintainers by electronic -mail. The address to use is ‘<bug-stow@gnu.org>’. Please +mail. The address to use is ‘<bug-stow@gnu.org>’. Please include: +

+
    +
  • the version number of Stow (‘stow --version’); -
      -
    • the version number of Stow (‘stow --version’); +
    • the version number of Perl (‘perl -v’); -
    • the version number of Perl (‘perl -v’); +
    • the system information, which can often be obtained with ‘uname +-a’; -
    • the system information, which can often be obtained with ‘uname --a’; +
    • a description of the bug; -
    • a description of the bug; +
    • the precise command you gave; -
    • the precise command you gave; +
    • the output from the command (preferably verbose output, obtained by +adding ‘--verbose=3’ to the Stow command line). +
    -
  • the output from the command (preferably verbose output, obtained by -adding ‘--verbose=3’ to the Stow command line). -
- -

If you are really keen, consider developing a minimal test case and -creating a new test. See the t/ directory in the source for +

If you are really keen, consider developing a minimal test case and +creating a new test. See the t/ directory in the source for lots of examples. +

+

Before reporting a bug, please read the manual carefully, especially +Known Bugs, to see whether you’re encountering +something that doesn’t need reporting. +(see Conflicts). +

+
-

Before reporting a bug, please read the manual carefully, especially -Known Bugs, to see whether you're encountering -something that doesn't need reporting. -(see Conflicts). - - + + diff --git a/local/share/doc/stow/manual-split/Resource-Files.html b/local/share/doc/stow/manual-split/Resource-Files.html index 7abb7fc..ff3626f 100644 --- a/local/share/doc/stow/manual-split/Resource-Files.html +++ b/local/share/doc/stow/manual-split/Resource-Files.html @@ -1,108 +1,146 @@ - + + + -Resource Files - Stow - - - - - - - - +Resource Files (Stow) + + + + + + + + + + + + + + + - Permission is granted to copy and distribute modified versions of - this manual under the conditions for verbatim copying, provided - also that the section entitled ``GNU General Public License'' is - included with the modified manual, and provided that the entire - resulting derived work is distributed under the terms of a - permission notice identical to this one. - Permission is granted to copy and distribute translations of this - manual into another language, under the above conditions for - modified versions, except that this permission notice may be - stated in a translation approved by the Free Software Foundation. - --> - - - -

- + + +
+ +
+

11 Resource Files

+ + -

11 Resource Files

- -

-Default command line options may be set in .stowrc (current directory) or -~/.stowrc (home directory). These are parsed in that order, and effectively -prepended to you command line. This feature can be used for some interesting -effects. - -

For example, suppose your site uses more than one stow directory, perhaps in +

Default command line options may be set in .stowrc (current +directory) or ~/.stowrc (home directory). These are parsed in +that order, and are appended together if they both exist. The effect of +the options in the resource file is similar to simply prepending the +options to the command line. This feature can be used for some +interesting effects. +

+

For example, suppose your site uses more than one stow directory, perhaps in order to share around responsibilities with a number of systems administrators. One of the administrators might have the following in their -~/.stowrc file: +~/.stowrc file: +

+
+
--dir=/usr/local/stow2
+--target=/usr/local
+--ignore='~'
+--ignore='^CVS'
+
-
     --dir=/usr/local/stow2
-     --target=/usr/local
-     --ignore='~'
-     --ignore='^CVS'
-
-

so that the stow command will default to operating on the -/usr/local/stow2 directory, with /usr/local as the +

so that the stow command will default to operating on the +/usr/local/stow2 directory, with /usr/local as the target, and ignoring vi backup files and CVS directories. - -

If you had a stow directory /usr/local/stow/perl-extras that +

+

If you had a stow directory /usr/local/stow/perl-extras that was only used for Perl modules, then you might place the following in -/usr/local/stow/perl-extras/.stowrc: +/usr/local/stow/perl-extras/.stowrc: +

+
+
--dir=/usr/local/stow/perl-extras
+--target=/usr/local
+--override=bin
+--override=man
+--ignore='perllocal\.pod'
+--ignore='\.packlist'
+--ignore='\.bs'
+
-
     --dir=/usr/local/stow/perl-extras
-     --target=/usr/local
-     --override=bin
-     --override=man
-     --ignore='perllocal\.pod'
-     --ignore='\.packlist'
-     --ignore='\.bs'
-
-

so that when you are in the /usr/local/stow/perl-extras -directory, stow will regard any subdirectories as stow -packages, with /usr/local as the target (rather than the -immediate parent directory /usr/local/stow), overriding any +

so that when you are in the /usr/local/stow/perl-extras +directory, stow will regard any subdirectories as stow +packages, with /usr/local as the target (rather than the +immediate parent directory /usr/local/stow), overriding any pre-existing links to bin files or man pages, and ignoring some cruft that gets installed by default. +

+

If an option is provided both on the command line and in a resource file, +the command line option takes precedence. For options that provide a single +value, such as --target or --dir, the command line +option will overwrite any options in the resource file. For options that can +be given more than once, --ignore for example, command line +options and resource options are appended together. +

+

For options that take a file path, environment variables and the tilde +character (~) are expanded. An environment variable can be +given in either the $VAR or ${VAR} form. To +prevent expansion, escape the $ or ~ with a +backslash. +

+

The options -D, -S, and -R are ignored in +resource files. This is also true of any package names given in the +resource file. +

+
+
+ - - + + + diff --git a/local/share/doc/stow/manual-split/Target-Maintenance.html b/local/share/doc/stow/manual-split/Target-Maintenance.html index d283e35..b58f836 100644 --- a/local/share/doc/stow/manual-split/Target-Maintenance.html +++ b/local/share/doc/stow/manual-split/Target-Maintenance.html @@ -1,98 +1,122 @@ - + + + -Target Maintenance - Stow - - - - - - - - +Target Maintenance (Stow) + + + + + + + + + + + + + + + - Permission is granted to copy and distribute modified versions of - this manual under the conditions for verbatim copying, provided - also that the section entitled ``GNU General Public License'' is - included with the modified manual, and provided that the entire - resulting derived work is distributed under the terms of a - permission notice identical to this one. - Permission is granted to copy and distribute translations of this - manual into another language, under the above conditions for - modified versions, except that this permission notice may be - stated in a translation approved by the Free Software Foundation. - --> - - - -
- + + +
+ +
+

10 Target Maintenance

-

10 Target Maintenance

- -

From time to time you will need to clean up your target tree. Since -version 2, Stow provides a new utility chkstow to help with + +

From time to time you will need to clean up your target tree. Since +version 2, Stow provides a new utility chkstow to help with this. It includes three operational modes which performs checks that would generally be too expensive to be performed during normal stow execution. +

+

The syntax of the chkstow command is: +

+
+
chkstow [options]
+
-

The syntax of the chkstow command is: - -

     chkstow [options]
-
-

The following options are supported: - -

-
-t dir
--target=dir
Set the target directory to dir instead of the parent of the stow +

The following options are supported: +

+
+
-t dir
+
--target=dir
+

Set the target directory to dir instead of the parent of the stow directory. Defaults to the parent of the stow directory, so it is typical to -execute stow from the directory /usr/local/stow. - -

-b
--badlinks
Checks target directory for bogus symbolic links. That is, links that point to +execute stow from the directory /usr/local/stow. +

+
+
-b
+
--badlinks
+

Checks target directory for bogus symbolic links. That is, links that point to non-existent files. - -

-a
--aliens
Checks for files in the target directory that are not symbolic links. The +

+
+
-a
+
--aliens
+

Checks for files in the target directory that are not symbolic links. The target directory should be managed by stow alone, except for directories that -contain a .stow file. - -

-l
--list
Will display the target package for every symbolic link in the stow target +contain a .stow file. +

+
+
-l
+
--list
+

Will display the target package for every symbolic link in the stow target directory. +

+
+
-
+
- - + + + diff --git a/local/share/doc/stow/manual-split/Terminology.html b/local/share/doc/stow/manual-split/Terminology.html index a7b403e..3c92bb6 100644 --- a/local/share/doc/stow/manual-split/Terminology.html +++ b/local/share/doc/stow/manual-split/Terminology.html @@ -1,113 +1,135 @@ - + + + -Terminology - Stow - - - - - - - - +Terminology (Stow) + + + + + + + + + + + + + + + - Permission is granted to copy and distribute modified versions of - this manual under the conditions for verbatim copying, provided - also that the section entitled ``GNU General Public License'' is - included with the modified manual, and provided that the entire - resulting derived work is distributed under the terms of a - permission notice identical to this one. - Permission is granted to copy and distribute translations of this - manual into another language, under the above conditions for - modified versions, except that this permission notice may be - stated in a translation approved by the Free Software Foundation. - --> - - - -
- + + +
+ +
+

2 Terminology

-

2 Terminology

- -

A package is a related collection of files and directories that + +

A package is a related collection of files and directories that you wish to administer as a unit — e.g., Perl or Emacs — and that needs to be installed in a particular directory structure — e.g., with -bin, lib, and man subdirectories. - -

A target directory is the root of a tree in which one or more -packages wish to appear to be installed. A common, but by no -means the only such location is /usr/local. The examples in this -manual will use /usr/local as the target directory. - -

A stow directory is the root of a tree containing separate +bin, lib, and man subdirectories. +

+ +

A target directory is the root of a tree in which one or more +packages wish to appear to be installed. A common, but by no +means the only such location is /usr/local. The examples in this +manual will use /usr/local as the target directory. +

+ +

A stow directory is the root of a tree containing separate packages in private subtrees. When Stow runs, it uses the current directory as the default stow directory. The examples in this manual -will use /usr/local/stow as the stow directory, so that -individual packages will be, for example, /usr/local/stow/perl -and /usr/local/stow/emacs. - -

An installation image is the layout of files and directories +will use /usr/local/stow as the stow directory, so that +individual packages will be, for example, /usr/local/stow/perl +and /usr/local/stow/emacs. +

+ +

An installation image is the layout of files and directories required by a package, relative to the target directory. Thus, the -installation image for Perl includes: a bin directory containing -perl and a2p (among others); an info directory -containing Texinfo documentation; a lib/perl directory containing -Perl libraries; and a man/man1 directory containing man pages. - -

A package directory is the root of a tree containing the +installation image for Perl includes: a bin directory containing +perl and a2p (among others); an info directory +containing Texinfo documentation; a lib/perl directory containing +Perl libraries; and a man/man1 directory containing man pages. +

+ + +

A package directory is the root of a tree containing the installation image for a particular package. Each package directory must reside in a stow directory — e.g., the package directory -/usr/local/stow/perl must reside in the stow directory -/usr/local/stow. The name of a package is the name of its -directory within the stow directory — e.g., perl. - -

Thus, the Perl executable might reside in -/usr/local/stow/perl/bin/perl, where /usr/local is the -target directory, /usr/local/stow is the stow directory, -/usr/local/stow/perl is the package directory, and -bin/perl within is part of the installation image. - -

A symlink is a symbolic link. A symlink can be relative or -absolute. An absolute symlink names a full path; that is, one -starting from /. A relative symlink names a relative path; that -is, one not starting from /. The target of a relative symlink is -computed starting from the symlink's own directory. Stow only +/usr/local/stow/perl must reside in the stow directory +/usr/local/stow. The name of a package is the name of its +directory within the stow directory — e.g., perl. +

+

Thus, the Perl executable might reside in +/usr/local/stow/perl/bin/perl, where /usr/local is the +target directory, /usr/local/stow is the stow directory, +/usr/local/stow/perl is the package directory, and +bin/perl within is part of the installation image. +

+ + + +

A symlink is a symbolic link. A symlink can be relative or +absolute. An absolute symlink names a full path; that is, one +starting from /. A relative symlink names a relative path; that +is, one not starting from /. The target of a relative symlink is +computed starting from the symlink’s own directory. Stow only creates relative symlinks. +

+
+
+ - - + + + diff --git a/local/share/doc/stow/manual-split/Tree-unfolding.html b/local/share/doc/stow/manual-split/Tree-unfolding.html index f9d21bf..3928441 100644 --- a/local/share/doc/stow/manual-split/Tree-unfolding.html +++ b/local/share/doc/stow/manual-split/Tree-unfolding.html @@ -1 +1,55 @@ - + + + + + + + +Tree unfolding (Stow) + + + + + + + + + + + + + + +

The node you are looking for is at Tree unfolding.

+ diff --git a/local/share/doc/stow/manual-split/Types-And-Syntax-Of-Ignore-Lists.html b/local/share/doc/stow/manual-split/Types-And-Syntax-Of-Ignore-Lists.html index 879192c..350d372 100644 --- a/local/share/doc/stow/manual-split/Types-And-Syntax-Of-Ignore-Lists.html +++ b/local/share/doc/stow/manual-split/Types-And-Syntax-Of-Ignore-Lists.html @@ -1,167 +1,182 @@ - + + + -Types And Syntax Of Ignore Lists - Stow - - - - - - - - - +Types And Syntax Of Ignore Lists (Stow) + + + + + + + + + + + + + + + - Permission is granted to copy and distribute modified versions of - this manual under the conditions for verbatim copying, provided - also that the section entitled ``GNU General Public License'' is - included with the modified manual, and provided that the entire - resulting derived work is distributed under the terms of a - permission notice identical to this one. - Permission is granted to copy and distribute translations of this - manual into another language, under the above conditions for - modified versions, except that this permission notice may be - stated in a translation approved by the Free Software Foundation. - --> - - - - -

4.2 Types And Syntax Of Ignore Lists

+ +
+ +
+

4.2 Types And Syntax Of Ignore Lists

If you put Perl regular expressions, one per line, in a -.stow-local-ignore file within any top level package directory, +.stow-local-ignore file within any top level package directory, in which case any file or directory within that package matching any of these regular expressions will be ignored. In the absence of this package-specific ignore list, Stow will instead use the contents of -~/.stow-global-ignore, if it exists. If neither the +~/.stow-global-ignore, if it exists. If neither the package-local or global ignore list exist, Stow will use its own built-in default ignore list, which serves as a useful example of the format of these ignore list files: +

+
+
# Comments and blank lines are allowed.
 
-
     # Comments and blank lines are allowed.
-     
-     RCS
-     .+,v
-     
-     CVS
-     \.\#.+       # CVS conflict files / emacs lock files
-     \.cvsignore
-     
-     \.svn
-     _darcs
-     \.hg
-     
-     \.git
-     \.gitignore
-     
-     .+~          # emacs backup files
-     \#.*\#       # emacs autosave files
-     
-     ^/README.*
-     ^/LICENSE.*
-     ^/COPYING
-
-

Stow first iterates through the chosen ignore list (built-in, global, +RCS +.+,v + +CVS +\.\#.+ # CVS conflict files / emacs lock files +\.cvsignore + +\.svn +_darcs +\.hg + +\.git +\.gitignore + +.+~ # emacs backup files +\#.*\# # emacs autosave files + +^/README.* +^/LICENSE.* +^/COPYING +

+ +

Stow first iterates through the chosen ignore list (built-in, global, or package-local) as per above, stripping out comments (if you want to -include the ‘#’ symbol in a regular expression, escape it with a +include the ‘#’ symbol in a regular expression, escape it with a blackslash) and blank lines, placing each regular expressions into one -of two sets depending on whether it contains the ‘/’ forward +of two sets depending on whether it contains the ‘/’ forward slash symbol. - -

Then in order to determine whether a file or directory should be +

+

Then in order to determine whether a file or directory should be ignored: - -

    -
  1. Stow calculates its path relative to the top-level package directory, -prefixing that with ‘/’. If any of the regular expressions -containing a ‘/exactly1 match -a subpath2 of this relative path, then the file or +

    +
      +
    1. Stow calculates its path relative to the top-level package directory, +prefixing that with ‘/’. If any of the regular expressions +containing a ‘/exactly4 match +a subpath5 of this relative path, then the file or directory will be ignored. -
    2. If none of the regular expressions containing a ‘/’ match in the +
    3. If none of the regular expressions containing a ‘/’ match in the manner described above, Stow checks whether the -basename3 of the file or directory matches -exactly against the remaining regular expressions which do not -contain a ‘/’, and if so, ignores the file or directory. +basename6 of the file or directory matches +exactly against the remaining regular expressions which do not +contain a ‘/’, and if so, ignores the file or directory. -
    4. Otherwise, the file or directory is not ignored. -
    +
  2. Otherwise, the file or directory is not ignored. +
- - -

For example, if a file bazqux is in the foo/bar + +

For example, if a file bazqux is in the foo/bar subdirectory of the package directory, Stow would use -‘/foo/bar/bazqux’ as the text for matching against regular -expressions which contain ‘/’, and ‘bazqux’ as the text for -matching against regular expressions which don't contain ‘/’. -Then regular expressions ‘bazqux’, ‘baz.*’, ‘.*qux’, -‘bar/.*x’, and ‘^/foo/.*qux’ would all match (causing the -file to be ignored), whereas ‘bar’, ‘baz’, ‘qux’, and -‘o/bar/b’ would not (although ‘bar’ would cause its parent +‘/foo/bar/bazqux’ as the text for matching against regular +expressions which contain ‘/’, and ‘bazqux’ as the text for +matching against regular expressions which don’t contain ‘/’. +Then regular expressions ‘bazqux’, ‘baz.*’, ‘.*qux’, +‘bar/.*x’, and ‘^/foo/.*qux’ would all match (causing the +file to be ignored), whereas ‘bar’, ‘baz’, ‘qux’, and +‘o/bar/b’ would not (although ‘bar’ would cause its parent directory to be ignored and prevent Stow from recursing into that -anyway, in which case the file bazqux would not even be +anyway, in which case the file bazqux would not even be considered for stowing). - -

As a special exception to the above algorithm, any -.stow-local-ignore present in the top-level package directory -is always ignored, regardless of the contents of any ignore +

+

As a special exception to the above algorithm, any +.stow-local-ignore present in the top-level package directory +is always ignored, regardless of the contents of any ignore list, because this file serves no purpose outside the stow directory. - - -

+

+
+

-

Footnotes

[1] Exact matching means the +

Footnotes

+ +
(4)
+

Exact matching means the regular expression is anchored at the beginning and end, in contrast to unanchored regular expressions which will match a substring.

- -

[2] In this context, “subpath” means a contiguous +

(5)
+

In this context, “subpath” means a contiguous subset of path segments; e.g for the relative path -one/two/three, there are six valid subpaths: one, -two, three, one/two, two/three, -one/two/three.

- -

[3] The “basename” is the name of the file or +one/two/three, there are six valid subpaths: one, +two, three, one/two, two/three, +one/two/three.

+
(6)
+

The “basename” is the name of the file or directory itself, excluding any directory path prefix - as returned by -the basename command.

+the basename command.

+
+
+ -
- + + diff --git a/local/share/doc/stow/manual-split/index.html b/local/share/doc/stow/manual-split/index.html index e8dd536..032b93e 100644 --- a/local/share/doc/stow/manual-split/index.html +++ b/local/share/doc/stow/manual-split/index.html @@ -1,164 +1,211 @@ - + + + -Stow - - - - - - +Index (Stow) + + + + + + + + + + + + + + - Permission is granted to copy and distribute modified versions of - this manual under the conditions for verbatim copying, provided - also that the section entitled "GNU General Public License" is - included with the modified manual, and provided that the entire - resulting derived work is distributed under the terms of a - permission notice identical to this one. - Permission is granted to copy and distribute translations of this - manual into another language, under the above conditions for - modified versions, except that this permission notice may be - stated in a translation approved by the Free Software Foundation. - --> - - - -

Stow

- - - - -
- + +
+
+

Index

+ +
+
Jump to:   A +   +C +   +D +   +F +   +I +   +M +   +O +   +P +   +R +   +S +   +T +   +U +   +V +   +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Index EntrySection

A
absolute symlinkTerminology
adopting existing filesInvoking Stow

C
configuration filesResource Files
conflictsInstalling Packages
conflictsConflicts

D
deferred operationConflicts
deferred operationMixing Operations
deletionDeleting Packages
directory foldingInstalling Packages
dotfilesInvoking Stow
dry runInvoking Stow

F
folding treesInstalling Packages

I
ignore listsIgnore Lists
ignore listsMotivation For Ignore Lists
ignoring files and directoriesIgnore Lists
installationInstalling Packages
installation conflictsInstalling Packages
installation imageTerminology

M
maintenanceTarget Maintenance
mixing operationsMixing Operations

O
ownershipInstalling Packages

P
packageTerminology
package directoryTerminology
package nameTerminology

R
refolding treesDeleting Packages
relative symlinkTerminology
resource filesResource Files

S
simulated runInvoking Stow
splitting open folded treesInstalling Packages
stow directoryTerminology
symlinkTerminology

T
target directoryTerminology
tree foldingInstalling Packages
tree refoldingDeleting Packages
tree unfoldingInstalling Packages
tree unsplittingInstalling Packages

U
unfolding treesInstalling Packages

V
verbosity levelsInvoking Stow

+
-

Stow

+
+
+ - -

--- The Detailed Node Listing --- - -

Ignore Lists - -

- -

Advice on changing compilation and installation parameters - -

- - - - + + diff --git a/local/share/doc/stow/manual-split/tree-folding.html b/local/share/doc/stow/manual-split/tree-folding.html index cc06e05..96a9b6a 100644 --- a/local/share/doc/stow/manual-split/tree-folding.html +++ b/local/share/doc/stow/manual-split/tree-folding.html @@ -1 +1,55 @@ - + + + + + + + +tree folding (Stow) + + + + + + + + + + + + + + +

The node you are looking for is at tree folding.

+ diff --git a/local/share/doc/stow/manual-split/tree-refolding.html b/local/share/doc/stow/manual-split/tree-refolding.html index 5d17385..cc01eb8 100644 --- a/local/share/doc/stow/manual-split/tree-refolding.html +++ b/local/share/doc/stow/manual-split/tree-refolding.html @@ -1 +1,55 @@ - + + + + + + + +tree refolding (Stow) + + + + + + + + + + + + + + +

The node you are looking for is at tree refolding.

+ diff --git a/local/share/doc/stow/manual.pdf b/local/share/doc/stow/manual.pdf index 38eb34886cd4e19d68370865dc38beb0d4c992a3..a8c02bdf6502fb369753d645b2f73df265d5236c 100644 GIT binary patch delta 251735 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%0DBveAFjr;uhmG?iHDW}Ds#ljT4yK!@$_ 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 delta 233643 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%0Ar=cIglFa~jjnt_@zuIIFd)JRB|& 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%0AjR5SkT-}K@w2E@3WVa2oWh518B$skY*HUn#|pu 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 b3UhQ}a&&ldWo8O8H8wIdI0_{tMNdWw;=^S; diff --git a/local/share/doc/stow/version.texi b/local/share/doc/stow/version.texi index a9d4737..ddbcc43 100644 --- a/local/share/doc/stow/version.texi +++ b/local/share/doc/stow/version.texi @@ -1,4 +1,4 @@ -@set UPDATED 9 November 2015 -@set UPDATED-MONTH November 2015 -@set EDITION 2.2.2 -@set VERSION 2.2.2 +@set UPDATED 23 October 2023 +@set UPDATED-MONTH October 2023 +@set EDITION 2.3.2-fixbug56727 +@set VERSION 2.3.2-fixbug56727 diff --git a/local/share/info/dir b/local/share/info/dir index cd5f8a5..50ce727 100644 --- a/local/share/info/dir +++ b/local/share/info/dir @@ -5,7 +5,7 @@ The first time you invoke Info you start off looking at this node. File: dir, Node: Top This is the top of the INFO tree This (the Directory node) gives a menu of major topics. - Typing "q" exits, "?" lists all Info commands, "d" returns here, + Typing "q" exits, "H" lists all Info commands, "d" returns here, "h" gives a primer for first-timers, "mEmacs" visits the Emacs manual, etc. @@ -15,4 +15,4 @@ File: dir, Node: Top This is the top of the INFO tree * Menu: System administration -* Stow: (stow). GNU Stow. +* Stow: (stow). GNU Stow. diff --git a/local/share/info/stow.info b/local/share/info/stow.info index 0ee4e1d..d802194 100644 --- a/local/share/info/stow.info +++ b/local/share/info/stow.info @@ -1,15 +1,14 @@ -This is doc/stow.info, produced by makeinfo version 4.13 from -./doc/stow.texi. +This is stow.info, produced by makeinfo version 7.1 from stow.texi. -This manual describes GNU Stow version 2.2.2 (9 November 2015), a -program for managing the installation of software packages. +This manual describes GNU Stow version 2.3.2-fixbug56727 (23 October +2023), a program for managing farms of symbolic links. Software and documentation is copyrighted by the following: - (C) 1993, 1994, 1995, 1996 Bob Glickstein -(C) 2000, 2001 Guillaume Morin -(C) 2007 Kahlil (Kal) Hodgson -(C) 2011 Adam Spiers + © 1993, 1994, 1995, 1996 Bob Glickstein +© 2000, 2001 Guillaume Morin +© 2007 Kahlil (Kal) Hodgson +© 2011 Adam Spiers Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission @@ -24,9 +23,8 @@ program for managing the installation of software packages. Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for - modified versions, except that this permission notice may be - stated in a translation approved by the Free Software Foundation. - + modified versions, except that this permission notice may be stated + in a translation approved by the Free Software Foundation. INFO-DIR-SECTION System administration START-INFO-DIR-ENTRY * Stow: (stow). GNU Stow. @@ -38,8 +36,10 @@ File: stow.info, Node: Top, Next: Introduction, Up: (dir) Stow **** -This manual describes GNU Stow 2.2.2 (9 November 2015), a program for -managing the installation of software packages. +This manual describes GNU Stow 2.3.2-fixbug56727 (23 October 2023), a +symlink farm manager which takes distinct sets of software and/or data +located in separate directories on the filesystem, and makes them appear +to be installed in a single directory tree. * Menu: @@ -54,14 +54,14 @@ managing the installation of software packages. * Multiple Stow Directories:: Further segregating software. * Target Maintenance:: Cleaning up mistakes. * Resource Files:: Setting default command line options. -* Compile-time vs Install-time:: Faking out `make install'. +* Compile-time vs Install-time:: Faking out 'make install'. * Bootstrapping:: When stow and perl are not yet stowed. * Reporting Bugs:: How, what, where, and when to report. * Known Bugs:: Don't report any of these. * GNU General Public License:: Copying terms. * Index:: Index of concepts. - --- The Detailed Node Listing --- + -- The Detailed Node Listing -- Ignore Lists @@ -76,19 +76,24 @@ Advice on changing compilation and installation parameters * Cygnus Software:: * Perl and Perl 5 Modules:: +  File: stow.info, Node: Introduction, Next: Terminology, Prev: Top, Up: Top 1 Introduction ************** -Stow is a tool for managing the installation of multiple software -packages in the same run-time directory tree. One historical difficulty -of this task has been the need to administer, upgrade, install, and -remove files in independent packages without confusing them with other -files sharing the same file system space. For instance, it is common to -install Perl and Emacs in `/usr/local'. When one does so, one winds up -with the following files(1) in `/usr/local/man/man1': +GNU Stow is a symlink farm manager which takes distinct sets of software +and/or data located in separate directories on the filesystem, and makes +them all appear to be installed in a single directory tree. + + Originally Stow was born to address the need to administer, upgrade, +install, and remove files in independent software packages without +confusing them with other files sharing the same file system space. For +instance, many years ago it used to be common to compile programs such +as Perl and Emacs from source and install them in ‘/usr/local’. When +one does so, one winds up with the following files(1) in +‘/usr/local/man/man1’: a2p.1 ctags.1 @@ -99,7 +104,7 @@ with the following files(1) in `/usr/local/man/man1': s2p.1 Now suppose it's time to uninstall Perl. Which man pages get removed? -Obviously `perl.1' is one of them, but it should not be the +Obviously ‘perl.1’ is one of them, but it should not be the administrator's responsibility to memorize the ownership of individual files by separate packages. @@ -109,25 +114,53 @@ installed in the common tree. Administration can be performed in the package's private tree in isolation from clutter from other packages. Stow can then be used to update the symbolic links. The structure of each private tree should reflect the desired structure in the common -tree; i.e. (in the typical case) there should be a `bin' directory -containing executables, a `man/man1' directory containing section 1 man +tree; i.e. (in the typical case) there should be a ‘bin’ directory +containing executables, a ‘man/man1’ directory containing section 1 man pages, and so on. + While this is useful for keeping track of system-wide and per-user +installations of software built from source, in more recent times +software packages are often managed by more sophisticated package +management software such as ‘rpm’ +(https://en.wikipedia.org/wiki/Rpm_(software)), ‘dpkg’ +(https://en.wikipedia.org/wiki/Dpkg), and Nix +(https://en.wikipedia.org/wiki/Nix_package_manager) / GNU Guix +(https://en.wikipedia.org/wiki/GNU_Guix), or language-native package +managers such as Ruby's ‘gem’ (https://en.wikipedia.org/wiki/RubyGems), +Python's ‘pip’ (https://en.wikipedia.org/wiki/Pip_(package_manager)), +Javascript's ‘npm’ (https://en.wikipedia.org/wiki/Npm_(software)), and +so on. + + However Stow is still used not only for software package management, +but also for other purposes, such as facilitating a more controlled +approach to management of configuration files in the user's home +directory(2), especially when coupled with version control systems(3). + Stow was inspired by Carnegie Mellon's Depot program, but is substantially simpler and safer. Whereas Depot required database files to keep things in sync, Stow stores no extra state between runs, so there's no danger (as there was in Depot) of mangling directories when file hierarchies don't match the database. Also unlike Depot, Stow will never delete any files, directories, or links that appear in a Stow -directory (e.g., `/usr/local/stow/emacs'), so it's always possible to -rebuild the target tree (e.g., `/usr/local'). +directory (e.g., ‘/usr/local/stow/emacs’), so it's always possible to +rebuild the target tree (e.g., ‘/usr/local’). + + Stow is implemented as a combination of a Perl script providing a CLI +interface, and a backend Perl module which does most of the work. For information about the latest version of Stow, you can refer to -`http://www.gnu.org/software/stow/'. +. ---------- Footnotes ---------- - (1) As of Perl 4.036 and Emacs 19.22. + (1) As of Perl 4.036 and Emacs 19.22. These are now ancient releases +but the example still holds valid. + + (2) + + + (3) +  File: stow.info, Node: Terminology, Next: Invoking Stow, Prev: Introduction, Up: Top @@ -135,49 +168,49 @@ File: stow.info, Node: Terminology, Next: Invoking Stow, Prev: Introduction, 2 Terminology ************* - A "package" is a related collection of files and directories that -you wish to administer as a unit -- e.g., Perl or Emacs -- and that -needs to be installed in a particular directory structure -- e.g., with -`bin', `lib', and `man' subdirectories. + A “package” is a related collection of files and directories that you +wish to administer as a unit -- e.g., Perl or Emacs -- and that needs to +be installed in a particular directory structure -- e.g., with ‘bin’, +‘lib’, and ‘man’ subdirectories. - A "target directory" is the root of a tree in which one or more + A “target directory” is the root of a tree in which one or more packages wish to _appear_ to be installed. A common, but by no means -the only such location is `/usr/local'. The examples in this manual -will use `/usr/local' as the target directory. +the only such location is ‘/usr/local’. The examples in this manual +will use ‘/usr/local’ as the target directory. - A "stow directory" is the root of a tree containing separate -packages in private subtrees. When Stow runs, it uses the current -directory as the default stow directory. The examples in this manual -will use `/usr/local/stow' as the stow directory, so that individual -packages will be, for example, `/usr/local/stow/perl' and -`/usr/local/stow/emacs'. + A “stow directory” is the root of a tree containing separate packages +in private subtrees. When Stow runs, it uses the current directory as +the default stow directory. The examples in this manual will use +‘/usr/local/stow’ as the stow directory, so that individual packages +will be, for example, ‘/usr/local/stow/perl’ and +‘/usr/local/stow/emacs’. - An "installation image" is the layout of files and directories + An “installation image” is the layout of files and directories required by a package, relative to the target directory. Thus, the -installation image for Perl includes: a `bin' directory containing -`perl' and `a2p' (among others); an `info' directory containing Texinfo -documentation; a `lib/perl' directory containing Perl libraries; and a -`man/man1' directory containing man pages. +installation image for Perl includes: a ‘bin’ directory containing +‘perl’ and ‘a2p’ (among others); an ‘info’ directory containing Texinfo +documentation; a ‘lib/perl’ directory containing Perl libraries; and a +‘man/man1’ directory containing man pages. - A "package directory" is the root of a tree containing the + A “package directory” is the root of a tree containing the installation image for a particular package. Each package directory must reside in a stow directory -- e.g., the package directory -`/usr/local/stow/perl' must reside in the stow directory -`/usr/local/stow'. The "name" of a package is the name of its -directory within the stow directory -- e.g., `perl'. +‘/usr/local/stow/perl’ must reside in the stow directory +‘/usr/local/stow’. The “name” of a package is the name of its directory +within the stow directory -- e.g., ‘perl’. Thus, the Perl executable might reside in -`/usr/local/stow/perl/bin/perl', where `/usr/local' is the target -directory, `/usr/local/stow' is the stow directory, -`/usr/local/stow/perl' is the package directory, and `bin/perl' within +‘/usr/local/stow/perl/bin/perl’, where ‘/usr/local’ is the target +directory, ‘/usr/local/stow’ is the stow directory, +‘/usr/local/stow/perl’ is the package directory, and ‘bin/perl’ within is part of the installation image. - A "symlink" is a symbolic link. A symlink can be "relative" or -"absolute". An absolute symlink names a full path; that is, one -starting from `/'. A relative symlink names a relative path; that is, -one not starting from `/'. The target of a relative symlink is -computed starting from the symlink's own directory. Stow only creates -relative symlinks. + A “symlink” is a symbolic link. A symlink can be “relative” or +“absolute”. An absolute symlink names a full path; that is, one +starting from ‘/’. A relative symlink names a relative path; that is, +one not starting from ‘/’. The target of a relative symlink is computed +starting from the symlink's own directory. Stow only creates relative +symlinks.  File: stow.info, Node: Invoking Stow, Next: Ignore Lists, Prev: Terminology, Up: Top @@ -185,11 +218,11 @@ File: stow.info, Node: Invoking Stow, Next: Ignore Lists, Prev: Terminology, 3 Invoking Stow *************** -The syntax of the `stow' command is: +The syntax of the ‘stow’ command is: stow [OPTIONS] [ACTION FLAG] PACKAGE ... -Each PACKAGE is the name of a package (e.g., `perl') in the stow +Each PACKAGE is the name of a package (e.g., ‘perl’) in the stow directory that we wish to install into (or delete from) the target directory. The default action is to install the given packages, although alternate actions may be specified by preceding the package @@ -197,41 +230,41 @@ name(s) with an ACTION FLAG. The following options are supported: -`-d DIR' -`--dir=DIR' +‘-d DIR’ +‘--dir=DIR’ Set the stow directory to DIR. Defaults to the value of the - environment variable `STOW_DIR' if set, or the current directory + environment variable ‘STOW_DIR’ if set, or the current directory otherwise. -`-t DIR' -`--target=DIR' +‘-t DIR’ +‘--target=DIR’ Set the target directory to DIR instead of the parent of the stow directory. Defaults to the parent of the stow directory, so it is - typical to execute `stow' from the directory `/usr/local/stow'. + typical to execute ‘stow’ from the directory ‘/usr/local/stow’. -`--ignore=REGEXP' +‘--ignore=REGEXP’ This (repeatable) option lets you suppress acting on files that - match the given perl regular expression. For example, using the + match the given Perl regular expression. For example, using the options - --ignore='*.orig' --ignore='*.dist' + --ignore='.*\.orig' --ignore='.*\.dist' - will cause stow to ignore files ending in `.orig' or `.dist'. + will cause stow to ignore files ending in ‘.orig’ or ‘.dist’. Note that the regular expression is anchored to the end of the filename, because this is what you will want to do most of the time. Also note that by default Stow automatically ignores a "sensible" - built-in list of files and directories such as `CVS', editor - backup files, and so on. *Note Ignore Lists::, for more details. + built-in list of files and directories such as ‘CVS’, editor backup + files, and so on. *Note Ignore Lists::, for more details. -`--defer=REGEXP' +‘--defer=REGEXP’ This (repeatable) option avoids stowing a file matching the given regular expression, if that file is already stowed by another - package. This is effectively the opposite of `--override'. + package. This is effectively the opposite of ‘--override’. - (N.B. the name `--defer' was chosen in the sense that the package + (N.B. the name ‘--defer’ was chosen in the sense that the package currently being stowed is treated with lower precedence than any already installed package, not in the sense that the operation is being postponed to be run at a later point in time; do not confuse @@ -244,17 +277,17 @@ The following options are supported: will cause stow to skip over pre-existing man and info pages. - Equivalently, you could use `--defer='man|info'' since the - argument is just a Perl regex. + Equivalently, you could use ‘--defer='man|info'’ since the argument + is just a Perl regular expression. Note that the regular expression is anchored to the beginning of - the path relative to the target directory, because this is what - you will want to do most of the time. + the path relative to the target directory, because this is what you + will want to do most of the time. -`--override=REGEXP' +‘--override=REGEXP’ This (repeatable) option forces any file matching the regular expression to be stowed, even if the file is already stowed to - another package. For example, the following options + another package. For example, the following options --override=man --override=info @@ -266,93 +299,109 @@ The following options are supported: relative to the target directory, because this is what you will want to do most of the time. -`--no-folding' - This disables any further *note tree folding:: or *note tree - refolding::. If a new subdirectory is encountered whilst stowing - a new package, the subdirectory is created within the target, and - its contents are symlinked, rather than just creating a symlink - for the directory. If removal of symlinks whilst unstowing a - package causes a subtree to be foldable (i.e. only containing - symlinks to a single package), that subtree will not be removed - and replaced with a symlink. +‘--dotfiles’ -`--adopt' - *Warning!* This behaviour is specifically intended to alter the + Enable special handling for _dotfiles_ (files or folders whose name + begins with a period) in the package directory. If this option is + enabled, Stow will add a preprocessing step for each file or folder + whose name begins with ‘dot-’, and replace the ‘dot-’ prefix in the + name by a period ‘.’. This is useful when Stow is used to manage + collections of dotfiles, to avoid having a package directory full + of hidden files. + + For example, suppose we have a package containing two files, + ‘stow/dot-bashrc’ and ‘stow/dot-emacs.d/init.el’. With this + option, Stow will create symlinks from ‘.bashrc’ to + ‘stow/dot-bashrc’ and from ‘.emacs.d/init.el’ to + ‘stow/dot-emacs.d/init.el’. Any other files, whose name does not + begin with ‘dot-’, will be processed as usual. + +‘--no-folding’ + + This disables any further tree folding (*note tree folding::) or + refolding (*note tree refolding::). If a new subdirectory is + encountered whilst stowing a new package, the subdirectory is + created within the target, and its contents are symlinked, rather + than just creating a symlink for the directory. If removal of + symlinks whilst unstowing a package causes a subtree to be foldable + (i.e. only containing symlinks to a single package), that subtree + will not be removed and replaced with a symlink. + +‘--adopt’ + *Warning!* This behaviour is specifically intended to alter the contents of your stow directory. If you do not want that, this option is not for you. When stowing, if a target is encountered which already exists but - is a plain file (and hence not owned by any existing stow - package), then normally Stow will register this as a conflict and - refuse to proceed. This option changes that behaviour so that the - file is moved to the same relative place within the package's - installation image within the stow directory, and then stowing - proceeds as before. So effectively, the file becomes adopted by - the stow package, without its contents changing. + is a plain file (and hence not owned by any existing stow package), + then normally Stow will register this as a conflict and refuse to + proceed. This option changes that behaviour so that the file is + moved to the same relative place within the package's installation + image within the stow directory, and then stowing proceeds as + before. So effectively, the file becomes adopted by the stow + package, without its contents changing. This is particularly useful when the stow package is under the - control of a version control system, because it allows files in - the target tree, with potentially different contents to the - equivalent versions in the stow package's installation image, to - be adopted into the package, then compared by running something - like `git diff ...' inside the stow package, and finally either - kept (e.g. via `git commit ...') or discarded (`git checkout HEAD - ...'). + control of a version control system, because it allows files in the + target tree, with potentially different contents to the equivalent + versions in the stow package's installation image, to be adopted + into the package, then compared by running something like ‘git diff + ...’ inside the stow package, and finally either kept (e.g. via + ‘git commit ...’) or discarded (‘git checkout HEAD ...’). -`-n' -`--no' -`--simulate' +‘-n’ +‘--no’ +‘--simulate’ Do not perform any operations that modify the file system; in - combination with `-v' can be used to merely show what would happen. + combination with ‘-v’ can be used to merely show what would happen. -`-v' -`--verbose[=N]' +‘-v’ +‘--verbose[=N]’ Send verbose output to standard error describing what Stow is - doing. Verbosity levels are 0, 1, 2, and 3; 0 is the default. - Using `-v' or `--verbose' increases the verbosity by one; using - `--verbose=N' sets it to N. + doing. Verbosity levels are from 0 to 5; 0 is the default. Using + ‘-v’ or ‘--verbose’ increases the verbosity by one; using + ‘--verbose=N’ sets it to N. -`-p' -`--compat' +‘-p’ +‘--compat’ Scan the whole target tree when unstowing. By default, only - directories specified in the "installation image" are scanned + directories specified in the “installation image” are scanned during an unstow operation. Scanning the whole tree can be prohibitive if your target tree is very large. This option - restores the legacy behaviour; however, the `--badlinks' option to - the `chkstow' utility may be a better way of ensuring that your + restores the legacy behaviour; however, the ‘--badlinks’ option to + the ‘chkstow’ utility may be a better way of ensuring that your installation does not have any dangling symlinks (*note Target Maintenance::). -`-V' -`--version' +‘-V’ +‘--version’ Show Stow version number, and exit. -`-h' -`--help' +‘-h’ +‘--help’ Show Stow command syntax, and exit. The following ACTION FLAGS are supported: -`-D' -`--delete' +‘-D’ +‘--delete’ Delete (unstow) the package name(s) that follow this option from - the "target directory". This option may be repeated any number of + the “target directory”. This option may be repeated any number of times. -`-R' -`--restow' +‘-R’ +‘--restow’ Restow (first unstow, then stow again) the package names that follow this option. This is useful for pruning obsolete symlinks from the target tree after updating the software in a package. This option may be repeated any number of times. -`-S' - -`--stow' +‘-S’ +‘--stow’ explictly stow the package name(s) that follow this option. May be - omitted if you are not using the `-D' or `-R' options in the same + omitted if you are not using the ‘-D’ or ‘-R’ options in the same invocation. *Note Mixing Operations::, for details of when you - might like to use this feature. This option may be repeated any + might like to use this feature. This option may be repeated any number of times.  @@ -373,27 +422,26 @@ File: stow.info, Node: Motivation For Ignore Lists, Next: Types And Syntax Of 4.1 Motivation For Ignore Lists =============================== -In many situations, there will exist files under the package -directories which it would be undesirable to stow into the target -directory. For example, files related version control such as -`.gitignore', `CVS', `*,v' (RCS files) should typically not have -symlinks from the target tree pointing to them. Also there may be -files or directories relating to the build of the package which are not -needed at run-time. +In many situations, there will exist files under the package directories +which it would be undesirable to stow into the target directory. For +example, files related version control such as ‘.gitignore’, ‘CVS’, +‘*,v’ (RCS files) should typically not have symlinks from the target +tree pointing to them. Also there may be files or directories relating +to the build of the package which are not needed at run-time. - In these cases, it can be rather cumbersome to specify a `--ignore' + In these cases, it can be rather cumbersome to specify a ‘--ignore’ parameter for each file or directory to be ignored. This could be -worked around by ensuring the existence of `~/.stowrc' containing -multiple `--ignore' lines, or if a different set of files/directories +worked around by ensuring the existence of ‘~/.stowrc’ containing +multiple ‘--ignore’ lines, or if a different set of files/directories should be ignored depending on which stow package is involved, a -`.stowrc' file for each stow package, but this would require the user -to ensure that they were in the correct directory before invoking stow, +‘.stowrc’ file for each stow package, but this would require the user to +ensure that they were in the correct directory before invoking stow, which would be tedious and error-prone. Furthermore, since Stow shifts -parameters from `.stowrc' onto ARGV at run-time, it could clutter up -the process table with excessively long parameter lists, or even worse, +parameters from ‘.stowrc’ onto ARGV at run-time, it could clutter up the +process table with excessively long parameter lists, or even worse, exceed the operating system's limit for process arguments. - Therefore in addition to `--ignore' parameters, Stow provides a way + Therefore in addition to ‘--ignore’ parameters, Stow provides a way to specify lists of files and directories to ignore.  @@ -403,76 +451,76 @@ File: stow.info, Node: Types And Syntax Of Ignore Lists, Next: Justification F ==================================== If you put Perl regular expressions, one per line, in a -`.stow-local-ignore' file within any top level package directory, in +‘.stow-local-ignore’ file within any top level package directory, in which case any file or directory within that package matching any of these regular expressions will be ignored. In the absence of this package-specific ignore list, Stow will instead use the contents of -`~/.stow-global-ignore', if it exists. If neither the package-local or +‘~/.stow-global-ignore’, if it exists. If neither the package-local or global ignore list exist, Stow will use its own built-in default ignore list, which serves as a useful example of the format of these ignore list files: # Comments and blank lines are allowed. - + RCS .+,v - + CVS \.\#.+ # CVS conflict files / emacs lock files \.cvsignore - + \.svn _darcs \.hg - + \.git \.gitignore - + .+~ # emacs backup files \#.*\# # emacs autosave files - + ^/README.* ^/LICENSE.* ^/COPYING Stow first iterates through the chosen ignore list (built-in, global, or package-local) as per above, stripping out comments (if you want to -include the `#' symbol in a regular expression, escape it with a +include the ‘#’ symbol in a regular expression, escape it with a blackslash) and blank lines, placing each regular expressions into one -of two sets depending on whether it contains the `/' forward slash +of two sets depending on whether it contains the ‘/’ forward slash symbol. Then in order to determine whether a file or directory should be ignored: 1. Stow calculates its path relative to the top-level package - directory, prefixing that with `/'. If any of the regular - expressions containing a `/' _exactly_(1) match a subpath(2) of + directory, prefixing that with ‘/’. If any of the regular + expressions containing a ‘/’ _exactly_(1) match a subpath(2) of this relative path, then the file or directory will be ignored. - 2. If none of the regular expressions containing a `/' match in the + 2. If none of the regular expressions containing a ‘/’ match in the manner described above, Stow checks whether the _basename_(3) of the file or directory matches _exactly_ against the remaining - regular expressions which do not contain a `/', and if so, ignores + regular expressions which do not contain a ‘/’, and if so, ignores the file or directory. 3. Otherwise, the file or directory is not ignored. - For example, if a file `bazqux' is in the `foo/bar' subdirectory of -the package directory, Stow would use `/foo/bar/bazqux' as the text for -matching against regular expressions which contain `/', and `bazqux' as + For example, if a file ‘bazqux’ is in the ‘foo/bar’ subdirectory of +the package directory, Stow would use ‘/foo/bar/bazqux’ as the text for +matching against regular expressions which contain ‘/’, and ‘bazqux’ as the text for matching against regular expressions which don't contain -`/'. Then regular expressions `bazqux', `baz.*', `.*qux', `bar/.*x', -and `^/foo/.*qux' would all match (causing the file to be ignored), -whereas `bar', `baz', `qux', and `o/bar/b' would not (although `bar' +‘/’. Then regular expressions ‘bazqux’, ‘baz.*’, ‘.*qux’, ‘bar/.*x’, +and ‘^/foo/.*qux’ would all match (causing the file to be ignored), +whereas ‘bar’, ‘baz’, ‘qux’, and ‘o/bar/b’ would not (although ‘bar’ would cause its parent directory to be ignored and prevent Stow from -recursing into that anyway, in which case the file `bazqux' would not +recursing into that anyway, in which case the file ‘bazqux’ would not even be considered for stowing). As a special exception to the above algorithm, any -`.stow-local-ignore' present in the top-level package directory is -_always_ ignored, regardless of the contents of any ignore list, -because this file serves no purpose outside the stow directory. +‘.stow-local-ignore’ present in the top-level package directory is +_always_ ignored, regardless of the contents of any ignore list, because +this file serves no purpose outside the stow directory. ---------- Footnotes ---------- @@ -481,12 +529,12 @@ beginning and end, in contrast to unanchored regular expressions which will match a substring. (2) In this context, "subpath" means a contiguous subset of path -segments; e.g for the relative path `one/two/three', there are six -valid subpaths: `one', `two', `three', `one/two', `two/three', -`one/two/three'. +segments; e.g for the relative path ‘one/two/three’, there are six valid +subpaths: ‘one’, ‘two’, ‘three’, ‘one/two’, ‘two/three’, +‘one/two/three’. (3) The "basename" is the name of the file or directory itself, -excluding any directory path prefix - as returned by the `basename' +excluding any directory path prefix - as returned by the ‘basename’ command.  @@ -496,28 +544,28 @@ File: stow.info, Node: Justification For Yet Another Set Of Ignore Files, Prev ===================================================== The reader may note that this format is very similar to existing ignore -list file formats, such as those for `cvs', `git', `rsync' etc., and +list file formats, such as those for ‘cvs’, ‘git’, ‘rsync’ etc., and wonder if another set of ignore lists is justified. However there are good reasons why Stow does not simply check for the presence of say, -`.cvsignore', and use that if it exists. Firstly, there is no -guarantee that a stow package would contain any version control -meta-data, or permit introducing this if it didn't already exist. +‘.cvsignore’, and use that if it exists. Firstly, there is no guarantee +that a stow package would contain any version control meta-data, or +permit introducing this if it didn't already exist. Secondly even if it did, version control system ignore lists generally reflect _build-time_ ignores rather than _install-time_, and there may be some intermediate or temporary files on those ignore lists generated during development or at build-time which it would be inappropriate to stow, even though many files generated at build-time -(binaries, libraries, documentation etc.) certainly do need to be +(binaries, libraries, documentation etc.) certainly do need to be stowed. Similarly, if a file is _not_ in the version control system's -ignore list, there is no way of knowing whether the file is intended -for end use, let alone whether the version control system is tracking -it or not. +ignore list, there is no way of knowing whether the file is intended for +end use, let alone whether the version control system is tracking it or +not. Therefore it seems clear that ignore lists provided by version control systems do not provide sufficient information for Stow to -determine which files and directories to stow, and so it makes sense -for Stow to support independent ignore lists. +determine which files and directories to stow, and so it makes sense for +Stow to support independent ignore lists.  File: stow.info, Node: Installing Packages, Next: Deleting Packages, Prev: Ignore Lists, Up: Top @@ -536,35 +584,35 @@ directory in the target tree and populate it with symlinks. ================ For example, suppose that no packages have yet been installed in -`/usr/local'; it's completely empty (except for the `stow' -subdirectory, of course). Now suppose the Perl package is installed. -Recall that it includes the following directories in its installation -image: `bin'; `info'; `lib/perl'; `man/man1'. Rather than creating -the directory `/usr/local/bin' and populating it with symlinks to -`../stow/perl/bin/perl' and `../stow/perl/bin/a2p' (and so on), Stow -will create a single symlink, `/usr/local/bin', which points to -`stow/perl/bin'. In this way, it still works to refer to -`/usr/local/bin/perl' and `/usr/local/bin/a2p', and fewer symlinks have -been created. This is called "tree folding", since an entire subtree -is "folded" into a single symlink. +‘/usr/local’; it's completely empty (except for the ‘stow’ subdirectory, +of course). Now suppose the Perl package is installed. Recall that it +includes the following directories in its installation image: ‘bin’; +‘info’; ‘lib/perl’; ‘man/man1’. Rather than creating the directory +‘/usr/local/bin’ and populating it with symlinks to +‘../stow/perl/bin/perl’ and ‘../stow/perl/bin/a2p’ (and so on), Stow +will create a single symlink, ‘/usr/local/bin’, which points to +‘stow/perl/bin’. In this way, it still works to refer to +‘/usr/local/bin/perl’ and ‘/usr/local/bin/a2p’, and fewer symlinks have +been created. This is called “tree folding”, since an entire subtree is +"folded" into a single symlink. To complete this example, Stow will also create the symlink -`/usr/local/info' pointing to `stow/perl/info'; the symlink -`/usr/local/lib' pointing to `stow/perl/lib'; and the symlink -`/usr/local/man' pointing to `stow/perl/man'. +‘/usr/local/info’ pointing to ‘stow/perl/info’; the symlink +‘/usr/local/lib’ pointing to ‘stow/perl/lib’; and the symlink +‘/usr/local/man’ pointing to ‘stow/perl/man’. Now suppose that instead of installing the Perl package into an empty target tree, the target tree is not empty to begin with. Instead, it contains several files and directories installed under a different -system-administration philosophy. In particular, `/usr/local/bin' -already exists and is a directory, as are `/usr/local/lib' and -`/usr/local/man/man1'. In this case, Stow will descend into -`/usr/local/bin' and create symlinks to `../stow/perl/bin/perl' and -`../stow/perl/bin/a2p' (etc.), and it will descend into -`/usr/local/lib' and create the tree-folding symlink `perl' pointing to -`../stow/perl/lib/perl', and so on. As a rule, Stow only descends as +system-administration philosophy. In particular, ‘/usr/local/bin’ +already exists and is a directory, as are ‘/usr/local/lib’ and +‘/usr/local/man/man1’. In this case, Stow will descend into +‘/usr/local/bin’ and create symlinks to ‘../stow/perl/bin/perl’ and +‘../stow/perl/bin/a2p’ (etc.), and it will descend into ‘/usr/local/lib’ +and create the tree-folding symlink ‘perl’ pointing to +‘../stow/perl/lib/perl’, and so on. As a rule, Stow only descends as far as necessary into the target tree when it can create a tree-folding -symlink. However, this behaviour can be changed via the `--no-folding' +symlink. However, this behaviour can be changed via the ‘--no-folding’ option; *note Invoking Stow::. 5.2 Tree unfolding @@ -572,41 +620,41 @@ option; *note Invoking Stow::. The time often comes when a tree-folding symlink has to be undone because another package uses one or more of the folded subdirectories in -its installation image. This operation is called "splitting open" or -"unfolding" a folded tree. It involves removing the original symlink +its installation image. This operation is called “splitting open” or +“unfolding” a folded tree. It involves removing the original symlink from the target tree, creating a true directory in its place, and then populating the new directory with symlinks to the newly-installed package _and_ to the old package that used the old symlink. For -example, suppose that after installing Perl into an empty `/usr/local', -we wish to install Emacs. Emacs's installation image includes a `bin' -directory containing the `emacs' and `etags' executables, among others. -Stow must make these files appear to be installed in `/usr/local/bin', -but presently `/usr/local/bin' is a symlink to `stow/perl/bin'. Stow -therefore takes the following steps: the symlink `/usr/local/bin' is -deleted; the directory `/usr/local/bin' is created; links are made from -`/usr/local/bin' to `../stow/emacs/bin/emacs' and -`../stow/emacs/bin/etags'; and links are made from `/usr/local/bin' to -`../stow/perl/bin/perl' and `../stow/perl/bin/a2p'. +example, suppose that after installing Perl into an empty ‘/usr/local’, +we wish to install Emacs. Emacs's installation image includes a ‘bin’ +directory containing the ‘emacs’ and ‘etags’ executables, among others. +Stow must make these files appear to be installed in ‘/usr/local/bin’, +but presently ‘/usr/local/bin’ is a symlink to ‘stow/perl/bin’. Stow +therefore takes the following steps: the symlink ‘/usr/local/bin’ is +deleted; the directory ‘/usr/local/bin’ is created; links are made from +‘/usr/local/bin’ to ‘../stow/emacs/bin/emacs’ and +‘../stow/emacs/bin/etags’; and links are made from ‘/usr/local/bin’ to +‘../stow/perl/bin/perl’ and ‘../stow/perl/bin/a2p’. 5.3 Ownership ============= When splitting open a folded tree, Stow makes sure that the symlink it is about to remove points inside a valid package in the current stow -directory. _Stow will never delete anything that it doesn't own_. -Stow "owns" everything living in the target tree that points into a -package in the stow directory. Anything Stow owns, it can recompute if -lost: symlinks that point into a package in the stow directory, or -directories that only contain symlinks that stow "owns". Note that by -this definition, Stow doesn't "own" anything _in_ the stow directory or -in any of the packages. +directory. _Stow will never delete anything that it doesn't own_. Stow +"owns" everything living in the target tree that points into a package +in the stow directory. Anything Stow owns, it can recompute if lost: +symlinks that point into a package in the stow directory, or directories +that only contain symlinks that stow "owns". Note that by this +definition, Stow doesn't "own" anything _in_ the stow directory or in +any of the packages. 5.4 Conflicts during installation ================================= If Stow needs to create a directory or a symlink in the target tree and it cannot because that name is already in use and is not owned by Stow, -then a "conflict" has arisen. *Note Conflicts::. +then a “conflict” has arisen. *Note Conflicts::.  File: stow.info, Node: Deleting Packages, Next: Conflicts, Prev: Installing Packages, Up: Top @@ -614,18 +662,18 @@ File: stow.info, Node: Deleting Packages, Next: Conflicts, Prev: Installing P 6 Deleting Packages ******************* -When the `-D' option is given, the action of Stow is to delete a -package from the target tree. Note that Stow will not delete anything -it doesn't "own". Deleting a package does _not_ mean removing it from -the stow directory or discarding the package tree. +When the ‘-D’ option is given, the action of Stow is to delete a package +from the target tree. Note that Stow will not delete anything it +doesn't "own". Deleting a package does _not_ mean removing it from the +stow directory or discarding the package tree. - To delete a package, Stow recursively scans the target tree, -skipping over any directory that is not included in the installation -image.(1) For example, if the target directory is `/usr/local' and the -installation image for the package being deleted has only a `bin' -directory and a `man' directory at the top level, then we only scan -`/usr/local/bin' and `/usr/local/bin/man', and not `/usr/local/lib' or -`/usr/local/share', or for that matter `/usr/local/stow'. Any symlink + To delete a package, Stow recursively scans the target tree, skipping +over any directory that is not included in the installation image.(1) +For example, if the target directory is ‘/usr/local’ and the +installation image for the package being deleted has only a ‘bin’ +directory and a ‘man’ directory at the top level, then we only scan +‘/usr/local/bin’ and ‘/usr/local/man’, and not ‘/usr/local/lib’ or +‘/usr/local/share’, or for that matter ‘/usr/local/stow’. Any symlink it finds that points into the package being deleted is removed. Any directory that contained only symlinks to the package being deleted is removed. @@ -638,7 +686,7 @@ contains only symlinks to a single other package is considered to be a previously "folded" tree that was "split open." Stow will refold the tree by removing the symlinks to the surviving package, removing the directory, then linking the directory back to the surviving package. -However, this behaviour can be prevented via the `--no-folding' option; +However, this behaviour can be prevented via the ‘--no-folding’ option; *note Invoking Stow::. ---------- Footnotes ---------- @@ -649,9 +697,9 @@ explicitly omitted. This became problematic when dealing with very large installations. The only situation where this is useful is if you accidentally delete a directory in the package tree, leaving you with a whole bunch of dangling links. Note that you can enable the old -approach with the `-p' option. Alternatively, you can use the -`--badlinks' option get stow to search for dangling links in your -target tree and remove the offenders manually. +approach with the ‘-p’ option. Alternatively, you can use the +‘--badlinks’ option get stow to search for dangling links in your target +tree and remove the offenders manually.  File: stow.info, Node: Conflicts, Next: Mixing Operations, Prev: Deleting Packages, Up: Top @@ -660,13 +708,13 @@ File: stow.info, Node: Conflicts, Next: Mixing Operations, Prev: Deleting Pac *********** If, during installation, a file or symlink exists in the target tree and -has the same name as something Stow needs to create, and if the -existing name is not a folded tree that can be split open, then a -"conflict" has arisen. A conflict also occurs if a directory exists -where Stow needs to place a symlink to a non-directory. On the other -hand, if the existing name is merely a symlink that already points -where Stow needs it to, then no conflict has occurred. (Thus it is -harmless to install a package that has already been installed.) +has the same name as something Stow needs to create, and if the existing +name is not a folded tree that can be split open, then a “conflict” has +arisen. A conflict also occurs if a directory exists where Stow needs +to place a symlink to a non-directory. On the other hand, if the +existing name is merely a symlink that already points where Stow needs +it to, then no conflict has occurred. (Thus it is harmless to install a +package that has already been installed.) For complex packages, scanning the stow and target trees in tandem, and deciding whether to make directories or links, split-open or fold @@ -677,12 +725,12 @@ take into account all of these operations. 7.1 Deferred Operation ====================== -Since version 2.0, Stow now adopts a two-phase algorithm, first -scanning for any potential conflicts before any stowing or unstowing -operations are performed. If any conflicts are found, they are -displayed and then Stow terminates without making any modifications to -the filesystem. This means that there is much less risk of a package -being partially stowed or unstowed due to conflicts. +Since version 2.0, Stow now adopts a two-phase algorithm, first scanning +for any potential conflicts before any stowing or unstowing operations +are performed. If any conflicts are found, they are displayed and then +Stow terminates without making any modifications to the filesystem. +This means that there is much less risk of a package being partially +stowed or unstowed due to conflicts. Prior to version 2.0, if a conflict was discovered, the stow or unstow operation could be aborted mid-flow, leaving the target tree in @@ -706,8 +754,8 @@ invocation. This is much faster and cleaner than performing two separate invocations of stow, because redundant folding/unfolding operations can be factored out. In addition, all the operations are calculated and -merged before being executed (*note Deferred Operation::), so the -amount of of time in which GNU Emacs is unavailable is minimised. +merged before being executed (*note Deferred Operation::), so the amount +of of time in which GNU Emacs is unavailable is minimised. You can mix and match any number of actions, for example, @@ -723,18 +771,18 @@ File: stow.info, Node: Multiple Stow Directories, Next: Target Maintenance, P If there are two or more system administrators who wish to maintain software separately, or if there is any other reason to want two or more -stow directories, it can be done by creating a file named `.stow' in -each stow directory. The presence of `/usr/local/foo/.stow' informs -Stow that, though `foo' is not the current stow directory, even if it -is a subdirectory of the target directory, nevertheless it is _a_ stow +stow directories, it can be done by creating a file named ‘.stow’ in +each stow directory. The presence of ‘/usr/local/foo/.stow’ informs +Stow that, though ‘foo’ is not the current stow directory, even if it is +a subdirectory of the target directory, nevertheless it is _a_ stow directory and as such Stow doesn't "own" anything in it (*note -Installing Packages::). This will protect the contents of `foo' from a -`stow -D', for instance. +Installing Packages::). This will protect the contents of ‘foo’ from a +‘stow -D’, for instance. When multiple stow directories share a target tree, if a tree-folding symlink is encountered and needs to be split open during an installation, as long as the top-level stow directory into which the -existing symlink points contains `.stow', Stow knows how to split open +existing symlink points contains ‘.stow’, Stow knows how to split open the tree in the correct manner.  @@ -744,38 +792,37 @@ File: stow.info, Node: Target Maintenance, Next: Resource Files, Prev: Multip ********************* From time to time you will need to clean up your target tree. Since -version 2, Stow provides a new utility `chkstow' to help with this. It +version 2, Stow provides a new utility ‘chkstow’ to help with this. It includes three operational modes which performs checks that would generally be too expensive to be performed during normal stow execution. - The syntax of the `chkstow' command is: + The syntax of the ‘chkstow’ command is: chkstow [OPTIONS] The following options are supported: -`-t DIR' -`--target=DIR' +‘-t DIR’ +‘--target=DIR’ Set the target directory to DIR instead of the parent of the stow directory. Defaults to the parent of the stow directory, so it is - typical to execute `stow' from the directory `/usr/local/stow'. + typical to execute ‘stow’ from the directory ‘/usr/local/stow’. -`-b' -`--badlinks' - Checks target directory for bogus symbolic links. That is, links +‘-b’ +‘--badlinks’ + Checks target directory for bogus symbolic links. That is, links that point to non-existent files. -`-a' -`--aliens' +‘-a’ +‘--aliens’ Checks for files in the target directory that are not symbolic - links. The target directory should be managed by stow alone, - except for directories that contain a `.stow' file. - -`-l' -`--list' - Will display the target package for every symbolic link in the - stow target directory. + links. The target directory should be managed by stow alone, + except for directories that contain a ‘.stow’ file. +‘-l’ +‘--list’ + Will display the target package for every symbolic link in the stow + target directory.  File: stow.info, Node: Resource Files, Next: Compile-time vs Install-time, Prev: Target Maintenance, Up: Top @@ -783,28 +830,29 @@ File: stow.info, Node: Resource Files, Next: Compile-time vs Install-time, Pr 11 Resource Files ***************** -Default command line options may be set in `.stowrc' (current -directory) or `~/.stowrc' (home directory). These are parsed in that -order, and effectively prepended to you command line. This feature can -be used for some interesting effects. +Default command line options may be set in ‘.stowrc’ (current directory) +or ‘~/.stowrc’ (home directory). These are parsed in that order, and +are appended together if they both exist. The effect of the options in +the resource file is similar to simply prepending the options to the +command line. This feature can be used for some interesting effects. For example, suppose your site uses more than one stow directory, perhaps in order to share around responsibilities with a number of -systems administrators. One of the administrators might have the -following in their `~/.stowrc' file: +systems administrators. One of the administrators might have the +following in their ‘~/.stowrc’ file: --dir=/usr/local/stow2 --target=/usr/local --ignore='~' --ignore='^CVS' - so that the `stow' command will default to operating on the -`/usr/local/stow2' directory, with `/usr/local' as the target, and + so that the ‘stow’ command will default to operating on the +‘/usr/local/stow2’ directory, with ‘/usr/local’ as the target, and ignoring vi backup files and CVS directories. - If you had a stow directory `/usr/local/stow/perl-extras' that was + If you had a stow directory ‘/usr/local/stow/perl-extras’ that was only used for Perl modules, then you might place the following in -`/usr/local/stow/perl-extras/.stowrc': +‘/usr/local/stow/perl-extras/.stowrc’: --dir=/usr/local/stow/perl-extras --target=/usr/local @@ -814,12 +862,27 @@ only used for Perl modules, then you might place the following in --ignore='\.packlist' --ignore='\.bs' - so that when you are in the `/usr/local/stow/perl-extras' directory, -`stow' will regard any subdirectories as stow packages, with -`/usr/local' as the target (rather than the immediate parent directory -`/usr/local/stow'), overriding any pre-existing links to bin files or + so that when you are in the ‘/usr/local/stow/perl-extras’ directory, +‘stow’ will regard any subdirectories as stow packages, with +‘/usr/local’ as the target (rather than the immediate parent directory +‘/usr/local/stow’), overriding any pre-existing links to bin files or man pages, and ignoring some cruft that gets installed by default. + If an option is provided both on the command line and in a resource +file, the command line option takes precedence. For options that +provide a single value, such as ‘--target’ or ‘--dir’, the command line +option will overwrite any options in the resource file. For options +that can be given more than once, ‘--ignore’ for example, command line +options and resource options are appended together. + + For options that take a file path, environment variables and the +tilde character (‘~’) are expanded. An environment variable can be +given in either the ‘$VAR’ or ‘${VAR}’ form. To prevent expansion, +escape the ‘$’ or ‘~’ with a backslash. + + The options ‘-D’, ‘-S’, and ‘-R’ are ignored in resource files. This +is also true of any package names given in the resource file. +  File: stow.info, Node: Compile-time vs Install-time, Next: Bootstrapping, Prev: Resource Files, Up: Top @@ -827,19 +890,19 @@ File: stow.info, Node: Compile-time vs Install-time, Next: Bootstrapping, Pre ******************************* Software whose installation is managed with Stow needs to be installed -in one place (the package directory, e.g. `/usr/local/stow/perl') but +in one place (the package directory, e.g. ‘/usr/local/stow/perl’) but needs to appear to run in another place (the target tree, e.g., -`/usr/local'). Why is this important? What's wrong with Perl, for -instance, looking for its files in `/usr/local/stow/perl' instead of in -`/usr/local'? +‘/usr/local’). Why is this important? What's wrong with Perl, for +instance, looking for its files in ‘/usr/local/stow/perl’ instead of in +‘/usr/local’? The answer is that there may be another package, e.g., -`/usr/local/stow/perl-extras', stowed under `/usr/local'. If Perl is -configured to find its files in `/usr/local/stow/perl', it will never -find the extra files in the `perl-extras' package, even though they're +‘/usr/local/stow/perl-extras’, stowed under ‘/usr/local’. If Perl is +configured to find its files in ‘/usr/local/stow/perl’, it will never +find the extra files in the ‘perl-extras’ package, even though they're intended to be found by Perl. On the other hand, if Perl looks for its -files in `/usr/local', then it will find the intermingled Perl and -`perl-extras' files. +files in ‘/usr/local’, then it will find the intermingled Perl and +‘perl-extras’ files. This means that when you compile a package, you must tell it the location of the run-time, or target tree; but when you install it, you @@ -851,35 +914,33 @@ must place it in the stow tree. Some software packages allow you to specify, at compile-time, separate locations for installation and for run-time. Perl is one such package; see *note Perl and Perl 5 Modules::. Others allow you to compile the -package, then give a different destination in the `make install' step +package, then give a different destination in the ‘make install’ step without causing the binaries or other files to get rebuilt. Most GNU software falls into this category; Emacs is a notable exception. *Note GNU Emacs::, and *note Other FSF Software::. Still other software packages cannot abide the idea of separate -installation and run-time locations at all. If you try to `make -install prefix=/usr/local/stow/FOO', then first the whole package will -be recompiled to hardwire the `/usr/local/stow/FOO' path. With these -packages, it is best to compile normally, then run `make -n install', +installation and run-time locations at all. If you try to ‘make install +prefix=/usr/local/stow/FOO’, then first the whole package will be +recompiled to hardwire the ‘/usr/local/stow/FOO’ path. With these +packages, it is best to compile normally, then run ‘make -n install’, which should report all the steps needed to install the just-built software. Place this output into a file, edit the commands in the file -to remove recompilation steps and to reflect the Stow-based -installation location, and execute the edited file as a shell script in -place of `make install'. Be sure to execute the script using the same -shell that `make install' would have used. +to remove recompilation steps and to reflect the Stow-based installation +location, and execute the edited file as a shell script in place of +‘make install’. Be sure to execute the script using the same shell that +‘make install’ would have used. (If you use GNU Make and a shell [such as GNU bash] that understands -`pushd' and `popd', you can do the following: +‘pushd’ and ‘popd’, you can do the following: - 1. Replace all lines matching `make[N]: Entering directory DIR' with - `pushd DIR'. + 1. Replace all lines matching ‘make[N]: Entering directory DIR’ with + ‘pushd DIR’. + 2. Replace all lines matching ‘make[N]: Leaving directory DIR’ with + ‘popd’. + 3. Delete all lines matching ‘make[N]: Nothing to be done for RULE’. - 2. Replace all lines matching `make[N]: Leaving directory DIR' with - `popd'. - - 3. Delete all lines matching `make[N]: Nothing to be done for RULE'. - - Then find other lines in the output containing `cd' or `make' + Then find other lines in the output containing ‘cd’ or ‘make’ commands and rewrite or delete them. In particular, you should be able to delete sections of the script that resemble this: @@ -914,10 +975,10 @@ rules. In particular, most GNU software allows you to write: make make install prefix=/usr/local/stow/PACKAGE -If you try this with Emacs, then the new value for PREFIX in the `make -install' step will cause some files to get recompiled with the new -value of PREFIX wired into them. In Emacs 19.23 and later,(1) the way -to work around this problem is: +If you try this with Emacs, then the new value for PREFIX in the ‘make +install’ step will cause some files to get recompiled with the new value +of PREFIX wired into them. In Emacs 19.23 and later,(1) the way to work +around this problem is: make make install-arch-dep install-arch-indep prefix=/usr/local/stow/emacs @@ -939,18 +1000,17 @@ File: stow.info, Node: Other FSF Software, Next: Cygnus Software, Prev: GNU E The Free Software Foundation, the organization behind the GNU project, has been unifying the build procedure for its tools for some time. -Thanks to its tools `autoconf' and `automake', most packages now -respond well to these simple steps, with no other intervention -necessary: +Thanks to its tools ‘autoconf’ and ‘automake’, most packages now respond +well to these simple steps, with no other intervention necessary: ./configure OPTIONS make make install prefix=/usr/local/stow/PACKAGE Hopefully, these tools can evolve to be aware of Stow-managed -packages, such that providing an option to `configure' can allow `make' -and `make install' steps to work correctly without needing to "fool" -the build process. +packages, such that providing an option to ‘configure’ can allow ‘make’ +and ‘make install’ steps to work correctly without needing to "fool" the +build process.  File: stow.info, Node: Cygnus Software, Next: Perl and Perl 5 Modules, Prev: Other FSF Software, Up: Compile-time vs Install-time @@ -961,25 +1021,25 @@ File: stow.info, Node: Cygnus Software, Next: Perl and Perl 5 Modules, Prev: Cygnus is a commercial supplier and supporter of GNU software. It has also written several of its own packages, released under the terms of the GNU General Public License; and it has taken over the maintenance of -other packages. Among the packages released by Cygnus are `gdb', -`gnats', and `dejagnu'. +other packages. Among the packages released by Cygnus are ‘gdb’, +‘gnats’, and ‘dejagnu’. Cygnus packages have the peculiarity that each one unpacks into a directory tree with a generic top-level Makefile, which is set up to compile _all_ of Cygnus' packages, any number of which may reside under the top-level directory. In other words, even if you're only building -`gnats', the top-level Makefile will look for, and try to build, `gdb' -and `dejagnu' subdirectories, among many others. +‘gnats’, the top-level Makefile will look for, and try to build, ‘gdb’ +and ‘dejagnu’ subdirectories, among many others. - The result is that if you try `make -n install -prefix=/usr/local/stow/PACKAGE' at the top level of a Cygnus package, + The result is that if you try ‘make -n install +prefix=/usr/local/stow/PACKAGE’ at the top level of a Cygnus package, you'll get a bewildering amount of output. It will then be very difficult to visually scan the output to see whether the install will proceed correctly. Unfortunately, it's not always clear how to invoke an install from the subdirectory of interest. - In cases like this, the best approach is to run your `make install -prefix=...', but be ready to interrupt it if you detect that it is + In cases like this, the best approach is to run your ‘make install +prefix=...’, but be ready to interrupt it if you detect that it is recompiling files. Usually it will work just fine; otherwise, install manually. @@ -999,15 +1059,15 @@ this ability. The configuration instructions for Perl 4 misleadingly state that some occult means are used under AFS to transport files from their installation tree to their run-time tree. In fact, that confusion arises from the fact that Depot, Stow's predecessor, originated at -Carnegie Mellon University, which was also the birthplace of AFS. CMU's +Carnegie Mellon University, which was also the birthplace of AFS. CMU's need to separate install-time and run-time trees stemmed from its use of Depot, not from AFS. The result of this confusion is that Perl 5's configuration script doesn't even offer the option of separating install-time and run-time -trees _unless_ you're running AFS. Fortunately, after you've entered -all the configuration settings, Perl's setup script gives you the -opportunity to edit those settings in a file called `config.sh'. When +trees _unless_ you're running AFS. Fortunately, after you've entered all +the configuration settings, Perl's setup script gives you the +opportunity to edit those settings in a file called ‘config.sh’. When prompted, you should edit this file and replace occurrences of inst.../usr/local... @@ -1026,22 +1086,22 @@ configuration mechanism. Perl 5 modules--i.e., extensions to Perl 5--generally conform to a set of standards for building and installing them. The standard says -that the package comes with a top-level `Makefile.PL', which is a Perl -script. When it runs, it generates a `Makefile'. +that the package comes with a top-level ‘Makefile.PL’, which is a Perl +script. When it runs, it generates a ‘Makefile’. - If you followed the instructions above for editing `config.sh' when -Perl was built, then when you create a `Makefile' from a `Makefile.PL', -it will contain separate locations for run-time (`/usr/local') and -install-time (`/usr/local/stow/perl'). Thus you can do + If you followed the instructions above for editing ‘config.sh’ when +Perl was built, then when you create a ‘Makefile’ from a ‘Makefile.PL’, +it will contain separate locations for run-time (‘/usr/local’) and +install-time (‘/usr/local/stow/perl’). Thus you can do perl Makefile.PL make make install -and the files will be installed into `/usr/local/stow/perl'. However, +and the files will be installed into ‘/usr/local/stow/perl’. However, you might prefer each Perl module to be stowed separately. In that case, you must edit the resulting Makefile, replacing -`/usr/local/stow/perl' with `/usr/local/stow/MODULE'. The best way to +‘/usr/local/stow/perl’ with ‘/usr/local/stow/MODULE’. The best way to do this is: perl Makefile.PL @@ -1050,18 +1110,18 @@ do this is: make make install -(The use of `find' and `xargs' ensures that all Makefiles in the -module's source tree, even those in subdirectories, get edited.) A -good convention to follow is to name the stow directory for a Perl -MODULE `cpan.MODULE', where `cpan' stands for Comprehensive Perl -Archive Network, a collection of FTP sites that is the source of most -Perl 5 extensions. This way, it's easy to tell at a glance which of -the subdirectories of `/usr/local/stow' are Perl 5 extensions. +(The use of ‘find’ and ‘xargs’ ensures that all Makefiles in the +module's source tree, even those in subdirectories, get edited.) A good +convention to follow is to name the stow directory for a Perl MODULE +‘cpan.MODULE’, where ‘cpan’ stands for Comprehensive Perl Archive +Network, a collection of FTP sites that is the source of most Perl 5 +extensions. This way, it's easy to tell at a glance which of the +subdirectories of ‘/usr/local/stow’ are Perl 5 extensions. When you stow separate Perl 5 modules separately, you are likely to -encounter conflicts (*note Conflicts::) with files named `.exists' and -`perllocal.pod'. One way to work around this is to remove those files -before stowing the module. If you use the `cpan.MODULE' naming +encounter conflicts (*note Conflicts::) with files named ‘.exists’ and +‘perllocal.pod’. One way to work around this is to remove those files +before stowing the module. If you use the ‘cpan.MODULE’ naming convention, you can simply do this: cd /usr/local/stow @@ -1075,20 +1135,20 @@ File: stow.info, Node: Bootstrapping, Next: Reporting Bugs, Prev: Compile-tim **************** Suppose you have a stow directory all set up and ready to go: -`/usr/local/stow/perl' contains the Perl installation, -`/usr/local/stow/stow' contains Stow itself, and perhaps you have other +‘/usr/local/stow/perl’ contains the Perl installation, +‘/usr/local/stow/stow’ contains Stow itself, and perhaps you have other packages waiting to be stowed. You'd like to be able to do this: cd /usr/local/stow stow -vv * -but `stow' is not yet in your `PATH'. Nor can you do this: +but ‘stow’ is not yet in your ‘PATH’. Nor can you do this: cd /usr/local/stow stow/bin/stow -vv * -because the `#!' line at the beginning of `stow' tries to locate Perl -(usually in `/usr/local/bin/perl'), and that won't be found. The +because the ‘#!’ line at the beginning of ‘stow’ tries to locate Perl +(usually in ‘/usr/local/bin/perl’), and that won't be found. The solution you must use is: cd /usr/local/stow @@ -1101,24 +1161,24 @@ File: stow.info, Node: Reporting Bugs, Next: Known Bugs, Prev: Bootstrapping, ***************** Please send bug reports to the current maintainers by electronic mail. -The address to use is `'. Please include: +The address to use is ‘’. Please include: - * the version number of Stow (`stow --version'); + • the version number of Stow (‘stow --version’); - * the version number of Perl (`perl -v'); + • the version number of Perl (‘perl -v’); - * the system information, which can often be obtained with `uname - -a'; + • the system information, which can often be obtained with ‘uname + -a’; - * a description of the bug; + • a description of the bug; - * the precise command you gave; + • the precise command you gave; - * the output from the command (preferably verbose output, obtained by - adding `--verbose=3' to the Stow command line). + • the output from the command (preferably verbose output, obtained by + adding ‘--verbose=3’ to the Stow command line). If you are really keen, consider developing a minimal test case and -creating a new test. See the `t/' directory in the source for lots of +creating a new test. See the ‘t/’ directory in the source for lots of examples. Before reporting a bug, please read the manual carefully, especially @@ -1131,8 +1191,8 @@ File: stow.info, Node: Known Bugs, Next: GNU General Public License, Prev: Re 15 Known Bugs ************* -There are no known bugs in Stow version 2.2.2! If you think you have -found one, please *note Reporting Bugs::. +There are no known bugs in Stow version 2.3.2-fixbug56727! If you think +you have found one, please *note Reporting Bugs::.  File: stow.info, Node: GNU General Public License, Next: Index, Prev: Known Bugs, Up: Top @@ -1140,295 +1200,659 @@ File: stow.info, Node: GNU General Public License, Next: Index, Prev: Known B GNU General Public License ************************** - Version 2, June 1991 + Version 3, 29 June 2007 - Copyright (C) 1989, 1991 Free Software Foundation, Inc. - 675 Mass Ave, Cambridge, MA 02139, USA + Copyright © 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. + Everyone is permitted to copy and distribute verbatim copies of this + license document, but changing it is not allowed. Preamble ======== -The licenses for most software are designed to take away your freedom -to share and change it. By contrast, the GNU General Public License is -intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Library General Public License instead.) You can apply it to +The GNU General Public License is a free, copyleft license for software +and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it in -new free programs; and that you know you can do these things. +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. - We protect your rights with two steps: (1) copyright the software, -and (2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - 0. This License applies to any program or other work which contains a - notice placed by the copyright holder saying it may be distributed - under the terms of this General Public License. The "Program", - below, refers to any such program or work, and a "work based on - the Program" means either the Program or any derivative work under - copyright law: that is to say, a work containing the Program or a - portion of it, either verbatim or with modifications and/or - translated into another language. (Hereinafter, translation is - included without limitation in the term "modification".) Each - licensee is addressed as "you". +TERMS AND CONDITIONS +==================== - Activities other than copying, distribution and modification are - not covered by this License; they are outside its scope. The act - of running the Program is not restricted, and the output from the - Program is covered only if its contents constitute a work based on - the Program (independent of having been made by running the - Program). Whether that is true depends on what the Program does. + 0. Definitions. - 1. You may copy and distribute verbatim copies of the Program's - source code as you receive it, in any medium, provided that you - conspicuously and appropriately publish on each copy an appropriate - copyright notice and disclaimer of warranty; keep intact all the - notices that refer to this License and to the absence of any - warranty; and give any other recipients of the Program a copy of - this License along with the Program. + "This License" refers to version 3 of the GNU General Public + License. - You may charge a fee for the physical act of transferring a copy, - and you may at your option offer warranty protection in exchange - for a fee. + "Copyright" also means copyright-like laws that apply to other + kinds of works, such as semiconductor masks. - 2. You may modify your copy or copies of the Program or any portion - of it, thus forming a work based on the Program, and copy and - distribute such modifications or work under the terms of Section 1 - above, provided that you also meet all of these conditions: + "The Program" refers to any copyrightable work licensed under this + License. Each licensee is addressed as "you". "Licensees" and + "recipients" may be individuals or organizations. - a. You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. + To "modify" a work means to copy from or adapt all or part of the + work in a fashion requiring copyright permission, other than the + making of an exact copy. The resulting work is called a "modified + version" of the earlier work or a work "based on" the earlier work. - b. You must cause any work that you distribute or publish, that - in whole or in part contains or is derived from the Program - or any part thereof, to be licensed as a whole at no charge - to all third parties under the terms of this License. + A "covered work" means either the unmodified Program or a work + based on the Program. - c. If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display - an announcement including an appropriate copyright notice and - a notice that there is no warranty (or else, saying that you - provide a warranty) and that users may redistribute the - program under these conditions, and telling the user how to - view a copy of this License. (Exception: if the Program - itself is interactive but does not normally print such an - announcement, your work based on the Program is not required - to print an announcement.) + To "propagate" a work means to do anything with it that, without + permission, would make you directly or secondarily liable for + infringement under applicable copyright law, except executing it on + a computer or modifying a private copy. Propagation includes + copying, distribution (with or without modification), making + available to the public, and in some countries other activities as + well. - These requirements apply to the modified work as a whole. If - identifiable sections of that work are not derived from the - Program, and can be reasonably considered independent and separate - works in themselves, then this License, and its terms, do not - apply to those sections when you distribute them as separate - works. But when you distribute the same sections as part of a - whole which is a work based on the Program, the distribution of - the whole must be on the terms of this License, whose permissions - for other licensees extend to the entire whole, and thus to each - and every part regardless of who wrote it. + To "convey" a work means any kind of propagation that enables other + parties to make or receive copies. Mere interaction with a user + through a computer network, with no transfer of a copy, is not + conveying. - Thus, it is not the intent of this section to claim rights or - contest your rights to work written entirely by you; rather, the - intent is to exercise the right to control the distribution of - derivative or collective works based on the Program. + An interactive user interface displays "Appropriate Legal Notices" + to the extent that it includes a convenient and prominently visible + feature that (1) displays an appropriate copyright notice, and (2) + tells the user that there is no warranty for the work (except to + the extent that warranties are provided), that licensees may convey + the work under this License, and how to view a copy of this + License. If the interface presents a list of user commands or + options, such as a menu, a prominent item in the list meets this + criterion. - In addition, mere aggregation of another work not based on the - Program with the Program (or with a work based on the Program) on - a volume of a storage or distribution medium does not bring the - other work under the scope of this License. + 1. Source Code. - 3. You may copy and distribute the Program (or a work based on it, - under Section 2) in object code or executable form under the terms - of Sections 1 and 2 above provided that you also do one of the - following: + The "source code" for a work means the preferred form of the work + for making modifications to it. "Object code" means any non-source + form of a work. - a. Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of - Sections 1 and 2 above on a medium customarily used for - software interchange; or, + A "Standard Interface" means an interface that either is an + official standard defined by a recognized standards body, or, in + the case of interfaces specified for a particular programming + language, one that is widely used among developers working in that + language. - b. Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a - medium customarily used for software interchange; or, + The "System Libraries" of an executable work include anything, + other than the work as a whole, that (a) is included in the normal + form of packaging a Major Component, but which is not part of that + Major Component, and (b) serves only to enable use of the work with + that Major Component, or to implement a Standard Interface for + which an implementation is available to the public in source code + form. A "Major Component", in this context, means a major + essential component (kernel, window system, and so on) of the + specific operating system (if any) on which the executable work + runs, or a compiler used to produce the work, or an object code + interpreter used to run it. - c. Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with - such an offer, in accord with Subsection b above.) + The "Corresponding Source" for a work in object code form means all + the source code needed to generate, install, and (for an executable + work) run the object code and to modify the work, including scripts + to control those activities. However, it does not include the + work's System Libraries, or general-purpose tools or generally + available free programs which are used unmodified in performing + those activities but which are not part of the work. For example, + Corresponding Source includes interface definition files associated + with source files for the work, and the source code for shared + libraries and dynamically linked subprograms that the work is + specifically designed to require, such as by intimate data + communication or control flow between those subprograms and other + parts of the work. - The source code for a work means the preferred form of the work for - making modifications to it. For an executable work, complete - source code means all the source code for all modules it contains, - plus any associated interface definition files, plus the scripts - used to control compilation and installation of the executable. - However, as a special exception, the source code distributed need - not include anything that is normally distributed (in either - source or binary form) with the major components (compiler, - kernel, and so on) of the operating system on which the executable - runs, unless that component itself accompanies the executable. + The Corresponding Source need not include anything that users can + regenerate automatically from other parts of the Corresponding + Source. - If distribution of executable or object code is made by offering - access to copy from a designated place, then offering equivalent - access to copy the source code from the same place counts as - distribution of the source code, even though third parties are not - compelled to copy the source along with the object code. + The Corresponding Source for a work in source code form is that + same work. - 4. You may not copy, modify, sublicense, or distribute the Program - except as expressly provided under this License. Any attempt - otherwise to copy, modify, sublicense or distribute the Program is - void, and will automatically terminate your rights under this - License. However, parties who have received copies, or rights, - from you under this License will not have their licenses - terminated so long as such parties remain in full compliance. + 2. Basic Permissions. - 5. You are not required to accept this License, since you have not - signed it. However, nothing else grants you permission to modify - or distribute the Program or its derivative works. These actions - are prohibited by law if you do not accept this License. - Therefore, by modifying or distributing the Program (or any work - based on the Program), you indicate your acceptance of this - License to do so, and all its terms and conditions for copying, - distributing or modifying the Program or works based on it. + All rights granted under this License are granted for the term of + copyright on the Program, and are irrevocable provided the stated + conditions are met. This License explicitly affirms your unlimited + permission to run the unmodified Program. The output from running + a covered work is covered by this License only if the output, given + its content, constitutes a covered work. This License acknowledges + your rights of fair use or other equivalent, as provided by + copyright law. - 6. Each time you redistribute the Program (or any work based on the - Program), the recipient automatically receives a license from the - original licensor to copy, distribute or modify the Program - subject to these terms and conditions. You may not impose any - further restrictions on the recipients' exercise of the rights - granted herein. You are not responsible for enforcing compliance - by third parties to this License. + You may make, run and propagate covered works that you do not + convey, without conditions so long as your license otherwise + remains in force. You may convey covered works to others for the + sole purpose of having them make modifications exclusively for you, + or provide you with facilities for running those works, provided + that you comply with the terms of this License in conveying all + material for which you do not control copyright. Those thus making + or running the covered works for you must do so exclusively on your + behalf, under your direction and control, on terms that prohibit + them from making any copies of your copyrighted material outside + their relationship with you. - 7. If, as a consequence of a court judgment or allegation of patent - infringement or for any other reason (not limited to patent - issues), conditions are imposed on you (whether by court order, - agreement or otherwise) that contradict the conditions of this - License, they do not excuse you from the conditions of this - License. If you cannot distribute so as to satisfy simultaneously - your obligations under this License and any other pertinent - obligations, then as a consequence you may not distribute the - Program at all. For example, if a patent license would not permit - royalty-free redistribution of the Program by all those who - receive copies directly or indirectly through you, then the only - way you could satisfy both it and this License would be to refrain - entirely from distribution of the Program. + Conveying under any other circumstances is permitted solely under + the conditions stated below. Sublicensing is not allowed; section + 10 makes it unnecessary. - If any portion of this section is held invalid or unenforceable - under any particular circumstance, the balance of the section is - intended to apply and the section as a whole is intended to apply - in other circumstances. + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - It is not the purpose of this section to induce you to infringe any - patents or other property right claims or to contest validity of - any such claims; this section has the sole purpose of protecting - the integrity of the free software distribution system, which is - implemented by public license practices. Many people have made - generous contributions to the wide range of software distributed - through that system in reliance on consistent application of that - system; it is up to the author/donor to decide if he or she is - willing to distribute software through any other system and a - licensee cannot impose that choice. + No covered work shall be deemed part of an effective technological + measure under any applicable law fulfilling obligations under + article 11 of the WIPO copyright treaty adopted on 20 December + 1996, or similar laws prohibiting or restricting circumvention of + such measures. - This section is intended to make thoroughly clear what is believed - to be a consequence of the rest of this License. + When you convey a covered work, you waive any legal power to forbid + circumvention of technological measures to the extent such + circumvention is effected by exercising rights under this License + with respect to the covered work, and you disclaim any intention to + limit operation or modification of the work as a means of + enforcing, against the work's users, your or third parties' legal + rights to forbid circumvention of technological measures. - 8. If the distribution and/or use of the Program is restricted in - certain countries either by patents or by copyrighted interfaces, - the original copyright holder who places the Program under this - License may add an explicit geographical distribution limitation - excluding those countries, so that distribution is permitted only - in or among countries not thus excluded. In such case, this - License incorporates the limitation as if written in the body of - this License. + 4. Conveying Verbatim Copies. - 9. The Free Software Foundation may publish revised and/or new - versions of the General Public License from time to time. Such + You may convey verbatim copies of the Program's source code as you + receive it, in any medium, provided that you conspicuously and + appropriately publish on each copy an appropriate copyright notice; + keep intact all notices stating that this License and any + non-permissive terms added in accord with section 7 apply to the + code; keep intact all notices of the absence of any warranty; and + give all recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, + and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to + produce it from the Program, in the form of source code under the + terms of section 4, provided that you also meet all of these + conditions: + + a. The work must carry prominent notices stating that you + modified it, and giving a relevant date. + + b. The work must carry prominent notices stating that it is + released under this License and any conditions added under + section 7. This requirement modifies the requirement in + section 4 to "keep intact all notices". + + c. You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable + section 7 additional terms, to the whole of the work, and all + its parts, regardless of how they are packaged. This License + gives no permission to license the work in any other way, but + it does not invalidate such permission if you have separately + received it. + + d. If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has + interactive interfaces that do not display Appropriate Legal + Notices, your work need not make them do so. + + A compilation of a covered work with other separate and independent + works, which are not by their nature extensions of the covered + work, and which are not combined with it such as to form a larger + program, in or on a volume of a storage or distribution medium, is + called an "aggregate" if the compilation and its resulting + copyright are not used to limit the access or legal rights of the + compilation's users beyond what the individual works permit. + Inclusion of a covered work in an aggregate does not cause this + License to apply to the other parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms + of sections 4 and 5, provided that you also convey the + machine-readable Corresponding Source under the terms of this + License, in one of these ways: + + a. Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b. Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that + product model, to give anyone who possesses the object code + either (1) a copy of the Corresponding Source for all the + software in the product that is covered by this License, on a + durable physical medium customarily used for software + interchange, for a price no more than your reasonable cost of + physically performing this conveying of source, or (2) access + to copy the Corresponding Source from a network server at no + charge. + + c. Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, + and only if you received the object code with such an offer, + in accord with subsection 6b. + + d. Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to + the Corresponding Source in the same way through the same + place at no further charge. You need not require recipients + to copy the Corresponding Source along with the object code. + If the place to copy the object code is a network server, the + Corresponding Source may be on a different server (operated by + you or a third party) that supports equivalent copying + facilities, provided you maintain clear directions next to the + object code saying where to find the Corresponding Source. + Regardless of what server hosts the Corresponding Source, you + remain obligated to ensure that it is available for as long as + needed to satisfy these requirements. + + e. Convey the object code using peer-to-peer transmission, + provided you inform other peers where the object code and + Corresponding Source of the work are being offered to the + general public at no charge under subsection 6d. + + A separable portion of the object code, whose source code is + excluded from the Corresponding Source as a System Library, need + not be included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means + any tangible personal property which is normally used for personal, + family, or household purposes, or (2) anything designed or sold for + incorporation into a dwelling. In determining whether a product is + a consumer product, doubtful cases shall be resolved in favor of + coverage. For a particular product received by a particular user, + "normally used" refers to a typical or common use of that class of + product, regardless of the status of the particular user or of the + way in which the particular user actually uses, or expects or is + expected to use, the product. A product is a consumer product + regardless of whether the product has substantial commercial, + industrial or non-consumer uses, unless such uses represent the + only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, + procedures, authorization keys, or other information required to + install and execute modified versions of a covered work in that + User Product from a modified version of its Corresponding Source. + The information must suffice to ensure that the continued + functioning of the modified object code is in no case prevented or + interfered with solely because modification has been made. + + If you convey an object code work under this section in, or with, + or specifically for use in, a User Product, and the conveying + occurs as part of a transaction in which the right of possession + and use of the User Product is transferred to the recipient in + perpetuity or for a fixed term (regardless of how the transaction + is characterized), the Corresponding Source conveyed under this + section must be accompanied by the Installation Information. But + this requirement does not apply if neither you nor any third party + retains the ability to install modified object code on the User + Product (for example, the work has been installed in ROM). + + The requirement to provide Installation Information does not + include a requirement to continue to provide support service, + warranty, or updates for a work that has been modified or installed + by the recipient, or for the User Product in which it has been + modified or installed. Access to a network may be denied when the + modification itself materially and adversely affects the operation + of the network or violates the rules and protocols for + communication across the network. + + Corresponding Source conveyed, and Installation Information + provided, in accord with this section must be in a format that is + publicly documented (and with an implementation available to the + public in source code form), and must require no special password + or key for unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of + this License by making exceptions from one or more of its + conditions. Additional permissions that are applicable to the + entire Program shall be treated as though they were included in + this License, to the extent that they are valid under applicable + law. If additional permissions apply only to part of the Program, + that part may be used separately under those permissions, but the + entire Program remains governed by this License without regard to + the additional permissions. + + When you convey a copy of a covered work, you may at your option + remove any additional permissions from that copy, or from any part + of it. (Additional permissions may be written to require their own + removal in certain cases when you modify the work.) You may place + additional permissions on material, added by you to a covered work, + for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material + you add to a covered work, you may (if authorized by the copyright + holders of that material) supplement the terms of this License with + terms: + + a. Disclaiming warranty or limiting liability differently from + the terms of sections 15 and 16 of this License; or + + b. Requiring preservation of specified reasonable legal notices + or author attributions in that material or in the Appropriate + Legal Notices displayed by works containing it; or + + c. Prohibiting misrepresentation of the origin of that material, + or requiring that modified versions of such material be marked + in reasonable ways as different from the original version; or + + d. Limiting the use for publicity purposes of names of licensors + or authors of the material; or + + e. Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f. Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified + versions of it) with contractual assumptions of liability to + the recipient, for any liability that these contractual + assumptions directly impose on those licensors and authors. + + All other non-permissive additional terms are considered "further + restrictions" within the meaning of section 10. If the Program as + you received it, or any part of it, contains a notice stating that + it is governed by this License along with a term that is a further + restriction, you may remove that term. If a license document + contains a further restriction but permits relicensing or conveying + under this License, you may add to a covered work material governed + by the terms of that license document, provided that the further + restriction does not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you + must place, in the relevant source files, a statement of the + additional terms that apply to those files, or a notice indicating + where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in + the form of a separately written license, or stated as exceptions; + the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly + provided under this License. Any attempt otherwise to propagate or + modify it is void, and will automatically terminate your rights + under this License (including any patent licenses granted under the + third paragraph of section 11). + + However, if you cease all violation of this License, then your + license from a particular copyright holder is reinstated (a) + provisionally, unless and until the copyright holder explicitly and + finally terminates your license, and (b) permanently, if the + copyright holder fails to notify you of the violation by some + reasonable means prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is + reinstated permanently if the copyright holder notifies you of the + violation by some reasonable means, this is the first time you have + received notice of violation of this License (for any work) from + that copyright holder, and you cure the violation prior to 30 days + after your receipt of the notice. + + Termination of your rights under this section does not terminate + the licenses of parties who have received copies or rights from you + under this License. If your rights have been terminated and not + permanently reinstated, you do not qualify to receive new licenses + for the same material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or + run a copy of the Program. Ancillary propagation of a covered work + occurring solely as a consequence of using peer-to-peer + transmission to receive a copy likewise does not require + acceptance. However, nothing other than this License grants you + permission to propagate or modify any covered work. These actions + infringe copyright if you do not accept this License. Therefore, + by modifying or propagating a covered work, you indicate your + acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically + receives a license from the original licensors, to run, modify and + propagate that work, subject to this License. You are not + responsible for enforcing compliance by third parties with this + License. + + An "entity transaction" is a transaction transferring control of an + organization, or substantially all assets of one, or subdividing an + organization, or merging organizations. If propagation of a + covered work results from an entity transaction, each party to that + transaction who receives a copy of the work also receives whatever + licenses to the work the party's predecessor in interest had or + could give under the previous paragraph, plus a right to possession + of the Corresponding Source of the work from the predecessor in + interest, if the predecessor has it or can get it with reasonable + efforts. + + You may not impose any further restrictions on the exercise of the + rights granted or affirmed under this License. For example, you + may not impose a license fee, royalty, or other charge for exercise + of rights granted under this License, and you may not initiate + litigation (including a cross-claim or counterclaim in a lawsuit) + alleging that any patent claim is infringed by making, using, + selling, offering for sale, or importing the Program or any portion + of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this + License of the Program or a work on which the Program is based. + The work thus licensed is called the contributor's "contributor + version". + + A contributor's "essential patent claims" are all patent claims + owned or controlled by the contributor, whether already acquired or + hereafter acquired, that would be infringed by some manner, + permitted by this License, of making, using, or selling its + contributor version, but do not include claims that would be + infringed only as a consequence of further modification of the + contributor version. For purposes of this definition, "control" + includes the right to grant patent sublicenses in a manner + consistent with the requirements of this License. + + Each contributor grants you a non-exclusive, worldwide, + royalty-free patent license under the contributor's essential + patent claims, to make, use, sell, offer for sale, import and + otherwise run, modify and propagate the contents of its contributor + version. + + In the following three paragraphs, a "patent license" is any + express agreement or commitment, however denominated, not to + enforce a patent (such as an express permission to practice a + patent or covenant not to sue for patent infringement). To "grant" + such a patent license to a party means to make such an agreement or + commitment not to enforce a patent against the party. + + If you convey a covered work, knowingly relying on a patent + license, and the Corresponding Source of the work is not available + for anyone to copy, free of charge and under the terms of this + License, through a publicly available network server or other + readily accessible means, then you must either (1) cause the + Corresponding Source to be so available, or (2) arrange to deprive + yourself of the benefit of the patent license for this particular + work, or (3) arrange, in a manner consistent with the requirements + of this License, to extend the patent license to downstream + recipients. "Knowingly relying" means you have actual knowledge + that, but for the patent license, your conveying the covered work + in a country, or your recipient's use of the covered work in a + country, would infringe one or more identifiable patents in that + country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or + arrangement, you convey, or propagate by procuring conveyance of, a + covered work, and grant a patent license to some of the parties + receiving the covered work authorizing them to use, propagate, + modify or convey a specific copy of the covered work, then the + patent license you grant is automatically extended to all + recipients of the covered work and works based on it. + + A patent license is "discriminatory" if it does not include within + the scope of its coverage, prohibits the exercise of, or is + conditioned on the non-exercise of one or more of the rights that + are specifically granted under this License. You may not convey a + covered work if you are a party to an arrangement with a third + party that is in the business of distributing software, under which + you make payment to the third party based on the extent of your + activity of conveying the work, and under which the third party + grants, to any of the parties who would receive the covered work + from you, a discriminatory patent license (a) in connection with + copies of the covered work conveyed by you (or copies made from + those copies), or (b) primarily for and in connection with specific + products or compilations that contain the covered work, unless you + entered into that arrangement, or that patent license was granted, + prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting + any implied license or other defenses to infringement that may + otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement + or otherwise) that contradict the conditions of this License, they + do not excuse you from the conditions of this License. If you + cannot convey a covered work so as to satisfy simultaneously your + obligations under this License and any other pertinent obligations, + then as a consequence you may not convey it at all. For example, + if you agree to terms that obligate you to collect a royalty for + further conveying from those to whom you convey the Program, the + only way you could satisfy both those terms and this License would + be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have + permission to link or combine any covered work with a work licensed + under version 3 of the GNU Affero General Public License into a + single combined work, and to convey the resulting work. The terms + of this License will continue to apply to the part which is the + covered work, but the special requirements of the GNU Affero + General Public License, section 13, concerning interaction through + a network will apply to the combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new + versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the - Program specifies a version number of this License which applies - to it and "any later version", you have the option of following - the terms and conditions either of that version or of any later - version published by the Free Software Foundation. If the Program - does not specify a version number of this License, you may choose - any version ever published by the Free Software Foundation. + Program specifies that a certain numbered version of the GNU + General Public License "or any later version" applies to it, you + have the option of following the terms and conditions either of + that numbered version or of any later version published by the Free + Software Foundation. If the Program does not specify a version + number of the GNU General Public License, you may choose any + version ever published by the Free Software Foundation. - 10. If you wish to incorporate parts of the Program into other free - programs whose distribution conditions are different, write to the - author to ask for permission. For software which is copyrighted - by the Free Software Foundation, write to the Free Software - Foundation; we sometimes make exceptions for this. Our decision - will be guided by the two goals of preserving the free status of - all derivatives of our free software and of promoting the sharing - and reuse of software generally. + If the Program specifies that a proxy can decide which future + versions of the GNU General Public License can be used, that + proxy's public statement of acceptance of a version permanently + authorizes you to choose that version for the Program. - NO WARRANTY - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO - WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE - LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT - HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT - WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT - NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND - FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE - QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE - PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY - SERVICING, REPAIR OR CORRECTION. + Later license versions may give you additional or different + permissions. However, no additional obligations are imposed on any + author or copyright holder as a result of your choosing to follow a + later version. - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN - WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY - MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE - LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, - INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR - INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF - DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU - OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY - OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN - ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY + APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE + COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" + WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, + INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE + RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. + SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL + NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN + WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES + AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR + DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR + CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE + THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA + BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD + PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER + PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF + THE POSSIBILITY OF SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided + above cannot be given local legal effect according to their terms, + reviewing courts shall apply local law that most closely + approximates an absolute waiver of all civil liability in + connection with the Program, unless a warranty or assumption of + liability accompanies a copy of the Program in return for a fee. + +END OF TERMS AND CONDITIONS +=========================== - END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs ============================================= @@ -1439,61 +1863,52 @@ terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. +state the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. - ONE LINE TO GIVE THE PROGRAM'S NAME AND AN IDEA OF WHAT IT DOES. - Copyright (C) 19YY NAME OF AUTHOR + ONE LINE TO GIVE THE PROGRAM'S NAME AND A BRIEF IDEA OF WHAT IT DOES. + Copyright (C) YEAR NAME OF AUTHOR - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or (at + your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. - If the program is interactive, make it output a short notice like -this when it starts in an interactive mode: + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: - Gnomovision version 69, Copyright (C) 19YY NAME OF AUTHOR - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details - type `show w'. This is free software, and you are welcome - to redistribute it under certain conditions; type `show c' - for details. + PROGRAM Copyright (C) YEAR NAME OF AUTHOR + This program comes with ABSOLUTELY NO WARRANTY; for details type ‘show w’. + This is free software, and you are welcome to redistribute it + under certain conditions; type ‘show c’ for details. - The hypothetical commands `show w' and `show c' should show the -appropriate parts of the General Public License. Of course, the -commands you use may be called something other than `show w' and `show -c'; they could even be mouse-clicks or menu items--whatever suits your -program. + The hypothetical commands ‘show w’ and ‘show c’ should show the +appropriate parts of the General Public License. Of course, your +program's commands might be different; for a GUI interface, you would +use an "about box". You should also get your employer (if you work as a programmer) or -your school, if any, to sign a "copyright disclaimer" for the program, -if necessary. Here is a sample; alter the names: +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. For more information on this, and how to apply and follow +the GNU GPL, see . - Yoyodyne, Inc., hereby disclaims all copyright - interest in the program `Gnomovision' - (which makes passes at compilers) written - by James Hacker. - - SIGNATURE OF TY COON, 1 April 1989 - Ty Coon, President of Vice - - This General Public License does not permit incorporating your + The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the -GNU Library General Public License instead of this License. +GNU Lesser General Public License instead of this License. But first, +please read .  File: stow.info, Node: Index, Prev: GNU General Public License, Up: Top @@ -1505,19 +1920,20 @@ Index * Menu: * absolute symlink: Terminology. (line 43) -* adopting existing files: Invoking Stow. (line 97) +* adopting existing files: Invoking Stow. (line 115) * configuration files: Resource Files. (line 6) -* conflicts <1>: Conflicts. (line 6) * conflicts: Installing Packages. (line 85) -* deferred operation <1>: Mixing Operations. (line 15) +* conflicts <1>: Conflicts. (line 6) * deferred operation: Conflicts. (line 24) +* deferred operation <1>: Mixing Operations. (line 15) * deletion: Deleting Packages. (line 6) * directory folding: Installing Packages. (line 16) -* dry run: Invoking Stow. (line 120) +* dotfiles: Invoking Stow. (line 87) +* dry run: Invoking Stow. (line 137) * folding trees: Installing Packages. (line 16) -* ignore lists <1>: Motivation For Ignore Lists. - (line 26) * ignore lists: Ignore Lists. (line 6) +* ignore lists <1>: Motivation For Ignore Lists. + (line 25) * ignoring files and directories: Ignore Lists. (line 6) * installation: Installing Packages. (line 6) * installation conflicts: Installing Packages. (line 85) @@ -1531,7 +1947,7 @@ Index * refolding trees: Deleting Packages. (line 25) * relative symlink: Terminology. (line 43) * resource files: Resource Files. (line 6) -* simulated run: Invoking Stow. (line 120) +* simulated run: Invoking Stow. (line 137) * splitting open folded trees: Installing Packages. (line 51) * stow directory: Terminology. (line 16) * symlink: Terminology. (line 43) @@ -1541,45 +1957,52 @@ Index * tree unfolding: Installing Packages. (line 51) * tree unsplitting: Installing Packages. (line 51) * unfolding trees: Installing Packages. (line 51) -* verbosity levels: Invoking Stow. (line 126) +* verbosity levels: Invoking Stow. (line 143)  Tag Table: -Node: Top1445 -Node: Introduction2967 -Ref: Introduction-Footnote-15130 -Node: Terminology5172 -Node: Invoking Stow7535 -Node: Ignore Lists14338 -Node: Motivation For Ignore Lists14602 -Node: Types And Syntax Of Ignore Lists16097 -Ref: Types And Syntax Of Ignore Lists-Footnote-119260 -Ref: Types And Syntax Of Ignore Lists-Footnote-219426 -Ref: Types And Syntax Of Ignore Lists-Footnote-319642 -Node: Justification For Yet Another Set Of Ignore Files19787 -Node: Installing Packages21385 -Ref: tree folding21947 -Ref: Tree unfolding23825 -Node: Deleting Packages25893 -Ref: tree refolding26925 -Ref: Deleting Packages-Footnote-127470 -Node: Conflicts28058 -Ref: Deferred Operation29044 -Node: Mixing Operations29645 -Node: Multiple Stow Directories30637 -Node: Target Maintenance31697 -Node: Resource Files32927 -Node: Compile-time vs Install-time34533 -Node: GNU Emacs37943 -Ref: GNU Emacs-Footnote-138928 -Node: Other FSF Software38992 -Node: Cygnus Software39753 -Node: Perl and Perl 5 Modules41232 -Node: Bootstrapping44787 -Node: Reporting Bugs45568 -Node: Known Bugs46547 -Node: GNU General Public License46795 -Node: Index65935 +Node: Top1427 +Node: Introduction3088 +Ref: Introduction-Footnote-16570 +Ref: Introduction-Footnote-26679 +Ref: Introduction-Footnote-36777 +Node: Terminology6854 +Node: Invoking Stow9349 +Node: Ignore Lists17276 +Node: Motivation For Ignore Lists17540 +Node: Types And Syntax Of Ignore Lists19071 +Ref: Types And Syntax Of Ignore Lists-Footnote-122368 +Ref: Types And Syntax Of Ignore Lists-Footnote-222534 +Ref: Types And Syntax Of Ignore Lists-Footnote-322778 +Node: Justification For Yet Another Set Of Ignore Files22927 +Node: Installing Packages24542 +Ref: tree folding25104 +Ref: Tree unfolding27102 +Node: Deleting Packages29241 +Ref: tree refolding30304 +Ref: Deleting Packages-Footnote-130853 +Node: Conflicts31449 +Ref: Deferred Operation32439 +Node: Mixing Operations33039 +Node: Multiple Stow Directories34031 +Node: Target Maintenance35115 +Node: Resource Files36398 +Node: Compile-time vs Install-time38993 +Node: GNU Emacs42502 +Ref: GNU Emacs-Footnote-143491 +Node: Other FSF Software43555 +Node: Cygnus Software44336 +Node: Perl and Perl 5 Modules45847 +Node: Bootstrapping49476 +Node: Reporting Bugs50285 +Node: Known Bugs51300 +Node: GNU General Public License51560 +Node: Index89114  End Tag Table + + +Local Variables: +coding: utf-8 +End: diff --git a/local/share/man/man8/stow.8 b/local/share/man/man8/stow.8 index ff4542f..780d997 100644 --- a/local/share/man/man8/stow.8 +++ b/local/share/man/man8/stow.8 @@ -1,4 +1,5 @@ -.\" Automatically generated by Pod::Man 2.28 (Pod::Simple 3.28) +.\" -*- mode: troff; coding: utf-8 -*- +.\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -15,29 +16,12 @@ .ft R .fi .. -.\" Set up some character translations and predefined strings. \*(-- will -.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left -.\" double quote, and \*(R" will give a right double quote. \*(C+ will -.\" give a nicer C++. Capital omega is used to do unbreakable dashes and -.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, -.\" nothing in troff, for use with C<>. -.tr \(*W- -.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' +.\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ -. ds -- \(*W- -. ds PI pi -. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch -. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch -. ds L" "" -. ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ -. ds -- \|\(em\| -. ds PI \(*p -. ds L" `` -. ds R" '' . ds C` . ds C' 'br\} @@ -46,7 +30,7 @@ .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" -.\" If the F register is turned on, we'll generate index entries on stderr for +.\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. @@ -56,122 +40,61 @@ .. .nr rF 0 .if \n(.g .if rF .nr rF 1 -.if (\n(rF:(\n(.g==0)) \{ -. if \nF \{ +.if (\n(rF:(\n(.g==0)) \{\ +. if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. -. if !\nF==2 \{ +. if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF -.\" -.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2). -.\" Fear. Run. Save yourself. No user-serviceable parts. -. \" fudge factors for nroff and troff -.if n \{\ -. ds #H 0 -. ds #V .8m -. ds #F .3m -. ds #[ \f1 -. ds #] \fP -.\} -.if t \{\ -. ds #H ((1u-(\\\\n(.fu%2u))*.13m) -. ds #V .6m -. ds #F 0 -. ds #[ \& -. ds #] \& -.\} -. \" simple accents for nroff and troff -.if n \{\ -. ds ' \& -. ds ` \& -. ds ^ \& -. ds , \& -. ds ~ ~ -. ds / -.\} -.if t \{\ -. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" -. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' -. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' -. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' -. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' -. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' -.\} -. \" troff and (daisy-wheel) nroff accents -.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V' -.ds 8 \h'\*(#H'\(*b\h'-\*(#H' -.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#] -.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H' -.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u' -.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#] -.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#] -.ds ae a\h'-(\w'a'u*4/10)'e -.ds Ae A\h'-(\w'A'u*4/10)'E -. \" corrections for vroff -.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u' -.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u' -. \" for low resolution devices (crt and lpr) -.if \n(.H>23 .if \n(.V>19 \ -\{\ -. ds : e -. ds 8 ss -. ds o a -. ds d- d\h'-1'\(ga -. ds D- D\h'-1'\(hy -. ds th \o'bp' -. ds Th \o'LP' -. ds ae ae -. ds Ae AE -.\} -.rm #[ #] #H #V #F C .\" ======================================================================== .\" -.IX Title "IO::FILE=IO(0X81D9F0) 1" -.TH IO::FILE=IO(0X81D9F0) 1 "2015-11-09" "perl v5.20.1" "User Contributed Perl Documentation" +.IX Title "stow 8" +.TH stow 8 2023-10-23 "perl v5.38.0" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh -.SH "NAME" -stow \- software package installation manager -.SH "SYNOPSIS" +.SH NAME +stow \- manage farms of symbolic links +.SH SYNOPSIS .IX Header "SYNOPSIS" stow [ options ] package ... -.SH "DESCRIPTION" +.SH DESCRIPTION .IX Header "DESCRIPTION" -This manual page describes \s-1GNU\s0 Stow 2.2.2, a program for managing -the installation of software packages. This is not the definitive -documentation for stow; for that, see the info manual. +This manual page describes GNU Stow 2.3.2. This is not the +definitive documentation for Stow; for that, see the accompanying info +manual, e.g. by typing \f(CW\*(C`info stow\*(C'\fR. .PP -Stow is a tool for managing the installation of multiple software -packages in the same run-time directory tree. One historical -difficulty of this task has been the need to administer, upgrade, -install, and remove files in independent packages without confusing -them with other files sharing the same filesystem space. For instance, -it is common to install Perl and Emacs in \fI/usr/local\fR. When one -does so, one winds up (as of Perl 4.036 and Emacs 19.22) with the -following files in \fI/usr/local/man/man1\fR: \fIa2p.1\fR; \fIctags.1\fR; -\&\fIemacs.1\fR; \fIetags.1\fR; \fIh2ph.1\fR; \fIperl.1\fR; and \fIs2p.1\fR. Now -suppose it's time to uninstall Perl. Which man pages get removed? -Obviously \fIperl.1\fR is one of them, but it should not be the -administrator's responsibility to memorize the ownership of individual -files by separate packages. +Stow is a symlink farm manager which takes distinct sets of software +and/or data located in separate directories on the filesystem, and +makes them all appear to be installed in a single directory tree. .PP -The approach used by Stow is to install each package into its own -tree, then use symbolic links to make it appear as though the files -are installed in the common tree. Administration can be performed in -the package's private tree in isolation from clutter from other -packages. Stow can then be used to update the symbolic links. The -structure of each private tree should reflect the desired structure in -the common tree; i.e. (in the typical case) there should be a \fIbin\fR -directory containing executables, a \fIman/man1\fR directory containing -section 1 man pages, and so on. +Originally Stow was born to address the need to administer, upgrade, +install, and remove files in independent software packages without +confusing them with other files sharing the same file system space. +For instance, many years ago it used to be common to compile programs +such as Perl and Emacs from source. By using Stow, \fI/usr/local/bin\fR +could contain symlinks to files within \fI/usr/local/stow/emacs/bin\fR, +\&\fI/usr/local/stow/perl/bin\fR etc., and likewise recursively for any +other subdirectories such as \fI.../share\fR, \fI.../man\fR, and so on. +.PP +While this is useful for keeping track of system-wide and per-user +installations of software built from source, in more recent times +software packages are often managed by more sophisticated package +management software such as rpm, dpkg, and Nix / GNU Guix, or +language-native package managers such as Ruby's gem, Python's pip, +Javascript's npm, and so on. +.PP +However Stow is still used not only for software package management, +but also for other purposes, such as facilitating a more controlled +approach to management of configuration files in the user's home +directory, especially when coupled with version control systems. .PP Stow was inspired by Carnegie Mellon's Depot program, but is substantially simpler and safer. Whereas Depot required database files @@ -181,38 +104,41 @@ file hierarchies don't match the database. Also unlike Depot, Stow will never delete any files, directories, or links that appear in a Stow directory (e.g., \fI/usr/local/stow/emacs\fR), so it's always possible to rebuild the target tree (e.g., \fI/usr/local\fR). -.SH "TERMINOLOGY" +.PP +Stow is implemented as a combination of a Perl script providing a CLI +interface, and a backend Perl module which does most of the work. +.SH TERMINOLOGY .IX Header "TERMINOLOGY" -A \*(L"package\*(R" is a related collection of files and directories that -you wish to administer as a unit \*(-- e.g., Perl or Emacs \*(-- and that -needs to be installed in a particular directory structure \*(-- e.g., +A "package" is a related collection of files and directories that +you wish to administer as a unit \-\- e.g., Perl or Emacs \-\- and that +needs to be installed in a particular directory structure \-\- e.g., with \fIbin\fR, \fIlib\fR, and \fIman\fR subdirectories. .PP -A \*(L"target directory\*(R" is the root of a tree in which one or more +A "target directory" is the root of a tree in which one or more packages wish to \fBappear\fR to be installed. A common, but by no means the only such location is \fI/usr/local\fR. The examples in this manual page will use \fI/usr/local\fR as the target directory. .PP -A \*(L"stow directory\*(R" is the root of a tree containing separate +A "stow directory" is the root of a tree containing separate packages in private subtrees. When Stow runs, it uses the current directory as the default stow directory. The examples in this manual page will use \fI/usr/local/stow\fR as the stow directory, so that individual packages will be, for example, \fI/usr/local/stow/perl\fR and \&\fI/usr/local/stow/emacs\fR. .PP -An \*(L"installation image\*(R" is the layout of files and directories +An "installation image" is the layout of files and directories required by a package, relative to the target directory. Thus, the installation image for Perl includes: a \fIbin\fR directory containing \&\fIperl\fR and \fIa2p\fR (among others); an \fIinfo\fR directory containing Texinfo documentation; a \fIlib/perl\fR directory containing Perl libraries; and a \fIman/man1\fR directory containing man pages. .PP -A \*(L"package directory\*(R" is the root of a tree containing the +A "package directory" is the root of a tree containing the installation image for a particular package. Each package directory -must reside in a stow directory \*(-- e.g., the package directory +must reside in a stow directory \-\- e.g., the package directory \&\fI/usr/local/stow/perl\fR must reside in the stow directory -\&\fI/usr/local/stow\fR. The \*(L"name\*(R" of a package is the name of its -directory within the stow directory \*(-- e.g., \fIperl\fR. +\&\fI/usr/local/stow\fR. The "name" of a package is the name of its +directory within the stow directory \-\- e.g., \fIperl\fR. .PP Thus, the Perl executable might reside in \&\fI/usr/local/stow/perl/bin/perl\fR, where \fI/usr/local\fR is the target @@ -220,13 +146,13 @@ directory, \fI/usr/local/stow\fR is the stow directory, \&\fI/usr/local/stow/perl\fR is the package directory, and \fIbin/perl\fR within is part of the installation image. .PP -A \*(L"symlink\*(R" is a symbolic link. A symlink can be \*(L"relative\*(R" or -\&\*(L"absolute\*(R". An absolute symlink names a full path; that is, one +A "symlink" is a symbolic link. A symlink can be "relative" or +"absolute". An absolute symlink names a full path; that is, one starting from \fI/\fR. A relative symlink names a relative path; that is, one not starting from \fI/\fR. The target of a relative symlink is computed starting from the symlink's own directory. Stow only creates relative symlinks. -.SH "OPTIONS" +.SH OPTIONS .IX Header "OPTIONS" The stow directory is assumed to be the value of the \f(CW\*(C`STOW_DIR\*(C'\fR environment variable or if unset the current directory, and the target @@ -236,69 +162,71 @@ Each \fIpackage\fR given on the command line is the name of a package in the stow directory (e.g., \fIperl\fR). By default, they are installed into the target directory (but they can be deleted instead using \&\f(CW\*(C`\-D\*(C'\fR). -.IP "\-n" 4 +.IP \-n 4 .IX Item "-n" .PD 0 -.IP "\-\-no" 4 +.IP \-\-no 4 .IX Item "--no" +.IP \-\-simulate 4 +.IX Item "--simulate" .PD Do not perform any operations that modify the filesystem; merely show what would happen. -.IP "\-d \s-1DIR\s0" 4 +.IP "\-d DIR" 4 .IX Item "-d DIR" .PD 0 -.IP "\-\-dir=DIR" 4 +.IP \-\-dir=DIR 4 .IX Item "--dir=DIR" .PD Set the stow directory to \f(CW\*(C`DIR\*(C'\fR instead of the current directory. This also has the effect of making the default target directory be the parent of \f(CW\*(C`DIR\*(C'\fR. -.IP "\-t \s-1DIR\s0" 4 +.IP "\-t DIR" 4 .IX Item "-t DIR" .PD 0 -.IP "\-\-target=DIR" 4 +.IP \-\-target=DIR 4 .IX Item "--target=DIR" .PD Set the target directory to \f(CW\*(C`DIR\*(C'\fR instead of the parent of the stow directory. -.IP "\-v" 4 +.IP \-v 4 .IX Item "-v" .PD 0 -.IP "\-\-verbose[=N]" 4 +.IP \-\-verbose[=N] 4 .IX Item "--verbose[=N]" .PD Send verbose output to standard error describing what Stow is -doing. Verbosity levels are 0, 1, 2, 3, and 4; 0 is the default. +doing. Verbosity levels are from 0 to 5; 0 is the default. Using \f(CW\*(C`\-v\*(C'\fR or \f(CW\*(C`\-\-verbose\*(C'\fR increases the verbosity by one; using `\-\-verbose=N' sets it to N. -.IP "\-S" 4 +.IP \-S 4 .IX Item "-S" .PD 0 -.IP "\-\-stow" 4 +.IP \-\-stow 4 .IX Item "--stow" .PD Stow the packages that follow this option into the target directory. This is the default action and so can be omitted if you are only stowing packages rather than performing a mixture of stow/delete/restow actions. -.IP "\-D" 4 +.IP \-D 4 .IX Item "-D" .PD 0 -.IP "\-\-delete" 4 +.IP \-\-delete 4 .IX Item "--delete" .PD Unstow the packages that follow this option from the target directory rather than installing them. -.IP "\-R" 4 +.IP \-R 4 .IX Item "-R" .PD 0 -.IP "\-\-restow" 4 +.IP \-\-restow 4 .IX Item "--restow" .PD Restow packages (first unstow, then stow again). This is useful for pruning obsolete symlinks from the target tree after updating the software in a package. -.IP "\-\-adopt" 4 +.IP \-\-adopt 4 .IX Item "--adopt" \&\fBWarning!\fR This behaviour is specifically intended to alter the contents of your stow directory. If you do not want that, this option @@ -312,32 +240,47 @@ same relative place within the package's installation image within the stow directory, and then stowing proceeds as before. So effectively, the file becomes adopted by the stow package, without its contents changing. -.IP "\-\-no\-folding" 4 +.IP \-\-no\-folding 4 .IX Item "--no-folding" Disable folding of newly stowed directories when stowing, and refolding of newly foldable directories when unstowing. -.IP "\-\-ignore=REGEX" 4 +.IP \-\-ignore=REGEX 4 .IX Item "--ignore=REGEX" Ignore files ending in this Perl regex. -.IP "\-\-defer=REGEX" 4 +.IP \-\-defer=REGEX 4 .IX Item "--defer=REGEX" Don't stow files beginning with this Perl regex if the file is already stowed to another package. -.IP "\-\-override=REGEX" 4 +.IP \-\-override=REGEX 4 .IX Item "--override=REGEX" Force stowing files beginning with this Perl regex if the file is already stowed to another package. -.IP "\-V" 4 +.IP \-\-dotfiles 4 +.IX Item "--dotfiles" +Enable special handling for "dotfiles" (files or folders whose name +begins with a period) in the package directory. If this option is +enabled, Stow will add a preprocessing step for each file or folder +whose name begins with "dot\-", and replace the "dot\-" prefix in the +name by a period (.). This is useful when Stow is used to manage +collections of dotfiles, to avoid having a package directory full of +hidden files. +.Sp +For example, suppose we have a package containing two files, +\&\fIstow/dot\-bashrc\fR and \fIstow/dot\-emacs.d/init.el\fR. With this option, +Stow will create symlinks from \fI.bashrc\fR to \fIstow/dot\-bashrc\fR and +from \fI.emacs.d/init.el\fR to \fIstow/dot\-emacs.d/init.el\fR. Any other +files, whose name does not begin with "dot\-", will be processed as usual. +.IP \-V 4 .IX Item "-V" .PD 0 -.IP "\-\-version" 4 +.IP \-\-version 4 .IX Item "--version" .PD Show Stow version number, and exit. -.IP "\-h" 4 +.IP \-h 4 .IX Item "-h" .PD 0 -.IP "\-\-help" 4 +.IP \-\-help 4 .IX Item "--help" .PD Show Stow command syntax, and exit. @@ -360,8 +303,8 @@ symlinks to \fI../stow/perl/bin/perl\fR and \fI../stow/perl/bin/a2p\fR (and so on), Stow will create a single symlink, \fI/usr/local/bin\fR, which points to \fIstow/perl/bin\fR. In this way, it still works to refer to \&\fI/usr/local/bin/perl\fR and \fI/usr/local/bin/a2p\fR, and fewer symlinks -have been created. This is called \*(L"tree folding\*(R", since an entire -subtree is \*(L"folded\*(R" into a single symlink. +have been created. This is called "tree folding", since an entire +subtree is "folded" into a single symlink. .PP To complete this example, Stow will also create the symlink \&\fI/usr/local/info\fR pointing to \fIstow/perl/info\fR; the symlink @@ -383,7 +326,7 @@ tree-folding symlink. .PP The time often comes when a tree-folding symlink has to be undone because another package uses one or more of the folded subdirectories -in its installation image. This operation is called \*(L"splitting open\*(R" +in its installation image. This operation is called "splitting open" a folded tree. It involves removing the original symlink from the target tree, creating a true directory in its place, and then populating the new directory with symlinks to the newly-installed @@ -405,34 +348,55 @@ it is about to remove points inside a valid package in the current stow directory. .SS "Stow will never delete anything that it doesn't own." .IX Subsection "Stow will never delete anything that it doesn't own." -Stow \*(L"owns\*(R" everything living in the target tree that points into a +Stow "owns" everything living in the target tree that points into a package in the stow directory. Anything Stow owns, it can recompute if -lost. Note that by this definition, Stow doesn't \*(L"own\*(R" anything +lost. Note that by this definition, Stow doesn't "own" anything \&\fBin\fR the stow directory or in any of the packages. .PP If Stow needs to create a directory or a symlink in the target tree and it cannot because that name is already in use and is not owned by -Stow, then a conflict has arisen. See the \*(L"Conflicts\*(R" section in the +Stow, then a conflict has arisen. See the "Conflicts" section in the info manual. .SH "DELETING PACKAGES" .IX Header "DELETING PACKAGES" When the \f(CW\*(C`\-D\*(C'\fR option is given, the action of Stow is to delete a package from the target tree. Note that Stow will not delete anything -it doesn't \*(L"own\*(R". Deleting a package does \fBnot\fR mean removing it from +it doesn't "own". Deleting a package does \fBnot\fR mean removing it from the stow directory or discarding the package tree. .PP To delete a package, Stow recursively scans the target tree, skipping over the stow directory (since that is usually a subdirectory of the target tree) and any other stow directories it encounters (see -\&\*(L"Multiple stow directories\*(R" in the info manual). Any symlink it +"Multiple stow directories" in the info manual). Any symlink it finds that points into the package being deleted is removed. Any directory that contained only symlinks to the package being deleted is removed. Any directory that, after removing symlinks and empty subdirectories, contains only symlinks to a single other package, is -considered to be a previously \*(L"folded\*(R" tree that was \*(L"split open.\*(R" +considered to be a previously "folded" tree that was "split open." Stow will re-fold the tree by removing the symlinks to the surviving package, removing the directory, then linking the directory back to the surviving package. +.SH "RESOURCE FILES" +.IX Header "RESOURCE FILES" +\&\fIStow\fR searches for default command line options at \fI.stowrc\fR (current +directory) and \fI~/.stowrc\fR (home directory) in that order. If both +locations are present, the files are effectively appended together. +.PP +The effect of options in the resource file is similar to simply prepending +the options to the command line. For options that provide a single value, +such as \fI\-\-target\fR or \fI\-\-dir\fR, the command line option will overwrite any +options in the resource file. For options that can be given more than once, +\&\fI\-\-ignore\fR for example, command line options and resource options are +appended together. +.PP +Environment variables and the tilde character (\fI~\fR) will be expanded for +options that take a file path. +.PP +The options \fI\-D\fR, \fI\-R\fR, \fI\-S\fR, and any packages listed in the resource +file are ignored. +.PP +See the info manual for more information on how stow handles resource +file. .SH "SEE ALSO" .IX Header "SEE ALSO" The full documentation for \fIstow\fR is maintained as a Texinfo manual. @@ -443,46 +407,46 @@ If the \fIinfo\fR and \fIstow\fR programs are properly installed at your site, t .Ve .PP should give you access to the complete manual. -.SH "BUGS" +.SH BUGS .IX Header "BUGS" Please report bugs in Stow using the Debian bug tracking system. .PP Currently known bugs include: -.IP "\(bu" 4 +.IP \(bu 4 The empty-directory problem. .Sp -If package \fIfoo\fR includes an empty directory \*(-- say, \fIfoo/bar\fR \*(-- +If package \fIfoo\fR includes an empty directory \-\- say, \fIfoo/bar\fR \-\- then if no other package has a \fIbar\fR subdirectory, everything's fine. If another stowed package \fIquux\fR, has a \fIbar\fR subdirectory, then -when stowing, \fItargetdir/bar\fR will be \*(L"split open\*(R" and the contents +when stowing, \fItargetdir/bar\fR will be "split open" and the contents of \fIquux/bar\fR will be individually stowed. So far, so good. But when unstowing \fIquux\fR, \fItargetdir/bar\fR will be removed, even though \&\fIfoo/bar\fR needs it to remain. A workaround for this problem is to create a file in \fIfoo/bar\fR as a placeholder. If you name that file \&\fI.placeholder\fR, it will be easy to find and remove such files when this bug is fixed. -.IP "\(bu" 4 -When using multiple stow directories (see \*(L"Multiple stow directories\*(R" -in the info manual), Stow fails to \*(L"split open\*(R" tree-folding symlinks -(see \*(L"Installing packages\*(R" in the info manual) that point into a stow +.IP \(bu 4 +When using multiple stow directories (see "Multiple stow directories" +in the info manual), Stow fails to "split open" tree-folding symlinks +(see "Installing packages" in the info manual) that point into a stow directory which is not the one in use by the current Stow command. Before failing, it should search the target of the link to see whether any element of the path contains a \fI.stow\fR file. If it -finds one, it can \*(L"learn\*(R" about the cooperating stow directory to +finds one, it can "learn" about the cooperating stow directory to short-circuit the \fI.stow\fR search the next time it encounters a tree-folding symlink. -.SH "AUTHOR" +.SH AUTHOR .IX Header "AUTHOR" This man page was originally constructed by Charles Briscoe-Smith from -parts of Stow's info manual, and then converted to \s-1POD\s0 format by Adam +parts of Stow's info manual, and then converted to POD format by Adam Spiers. The info manual contains the following notice, which, as it says, applies to this manual page, too. The text of the section -entitled \*(L"\s-1GNU\s0 General Public License\*(R" can be found in the file +entitled "GNU General Public License" can be found in the file \&\fI/usr/share/common\-licenses/GPL\fR on any Debian GNU/Linux system. If -you don't have access to a Debian system, or the \s-1GPL\s0 is not there, +you don't have access to a Debian system, or the GPL is not there, write to the Free Software Foundation, Inc., 59 Temple Place, Suite -330, Boston, \s-1MA, 02111\-1307, USA.\s0 -.SH "COPYRIGHT" +330, Boston, MA, 02111\-1307, USA. +.SH COPYRIGHT .IX Header "COPYRIGHT" Copyright (C) 1993, 1994, 1995, 1996 by Bob Glickstein ; @@ -497,7 +461,7 @@ preserved on all copies. .PP Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided also that -the section entitled \*(L"\s-1GNU\s0 General Public License\*(R" is included with the +the section entitled "GNU General Public License" is included with the modified manual, and provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one.