3 * Changes in version 2.1.0
4 ** Major refactoring of code into separate Stow and Stow::Util Perl modules.
5 ** Added support for ignore list files.
6 ** Added support for CPAN-style installation and distribution via Module::Build.
7 ** Introduced `make test' target and significantly tightened up test suite.
8 ** Very large number of code and documentation fixes (over 80 commits since version 2.0.1).
9 ** The '--conflicts' option has been removed.
11 Stow will always show conflicts if they are found during the scanning
14 ** Improved debugging output.
15 ** Converted man page to POD format.
16 ** Include PDF, and both split- and single-page HTML versions of manual in the distribution.
17 ** Fixed code style consistency issues.
18 ** Running configure from outside the source tree now works.
19 ** `make distcheck' now works.
20 * Changes in version 2.0.1
21 ** Defer operations until all potential conflicts have been assessed.
23 We do this by traversing the installation image(s) and recording the
24 actions that need to be performed. Redundant actions are factored out,
25 e.g., we don't want to create a link that we will later remove in order to
26 create a directory. Benefits of this approach
28 1. Get to see _all_ the conflicts that are blocking an installation:
29 you don't have to deal with them one at a time.
30 2. No operations are be performed if _any_ conflicts are detected:
31 a failed stow will not leave you with a partially installed
33 3. Minimises the set of operations that need to be performed.
34 4. Operations are executed as a batch which is much faster
35 This can be an advantage when upgrading packages on a live system
36 where you want to minimise the amount of time when the package is
39 ** The above fixes the false conflict problem mentioned in the info file.
41 ** It also fixes the two bugs mentioned in the man page.
43 ** Multiple stow directories will now cooperate in folding/unfolding.
45 ** Conflict messages are more uniform and informative.
47 ** Verbosity and tracing is more extensive and uniform.
49 ** Implemented option parsing via Getopt::Long.
51 ** Default command line arguments set via '.stowrc' and '~/.stowrc' files.
53 Contents of these files are parsed as though they occurred first on the
56 ** Support multiple actions per invocation.
58 In order for this to work, we had to add a new (optional) command line arg
59 (-S) to specify packages to stow. For example, to update an installation
60 of emacs you can now do
62 stow -D emacs-21.3 -S emacs-21.4a
64 which will replace emacs-21.3 with emacs-21.4a.
65 You can mix and match any number of actions, e.g.,
67 stow -S p1 p2 -D p3 p4 -S p5 -R p6
69 will unstow p3, p4 and p6, then stow p1, p2, p5 and p6.
71 ** New (repeatable) command line arg: --ignore='<regex>'
73 This suppresses operating on a file matching the regex (suffix), e.g.,
75 --ignore='~' --ignore='\.#.*'
77 will ignore emacs and CVS backup files (suitable for ~/.stowrc file).
79 (I opted for Perl regular expressions because they are more powerful and
82 ** New (repeatable) command line arg: --defer='<regex>'
84 This defers stowing a file matching the regex (prefix) if that file is
85 already stowed to a different package, e.g.,
87 --defer='man' --defer='info'
89 will cause stow to skip over pre-existing man and info pages.
91 Equivalently, you could use --defer='man|info' since the argument is just
94 ** New (repeatable) command line arg: --override='<regex>'
96 This forces a file matching the regex (prefix) to be stowed even if the
97 file is already stowed to a different package, e.g.,
99 --override='man' --override='info'
101 will unstow any pre-existing man and info pages that would conflict with
102 the file we are trying to stow.
104 Equivalently, you could use --override='man|info' since the argument is
107 ** The above gives the ability to manage packages with common content.
109 For example, man pages that are shared by a number of CPAN packages.
110 Using multiple stow directories and .stowrc files can also simplify
111 things. In our setup we use the standard /usr/local/stow directory for
112 packages to be installed in /usr/local. Since we install a large number
113 of extra Perl packages (currently about 300) we use an additional stow
114 directory: /usr/local/stow/perl-5.8.8-extras. Both stow directories
115 contain a '.stow' file so that they collaborate appropriately. I then use
116 the following .stowrc file in /usr/local/stow/perl-5.8.8-extras
118 --dir=/usr/local/stow/perl-5.8.8-extras
122 --ignore='perllocal\.pod'
123 --ignore='\.packlist'
126 When I stow packages from there, they automatically override any man pages
127 and binaries that may already have been stowed by another package or by
128 the core perl-5.8.8 installation. For example, if you want to upgrade the
129 Test-Simple package, you need to override all the man pages that would
130 have been installed by the core package. If you are upgrading CPAN, you
131 will also have to override the pre-existing cpan executable.
133 ** By default, search less aggressively for invalid symlinks when unstowing.
135 That is, we only search for bad symlinks in the directories explicitly
136 mentioned in the installation image, and do not dig down into other
137 subdirs. Digging down into other directories can be very time consuming
138 if you have a really big tree (like with a couple of Oracle installations
139 lying around). In general the old behaviour is only necessary when you
140 have really stuffed up your installation by deleting a directory that has
141 already been stowed. Doing that on a live system is somewhat crazy and
142 hopefully rare. We provide an option '-p|--compat' to enable the old
143 behaviour for those needing to patch up mistakes.
145 ** New chkstow utility for checking the integrity of the target directory.
147 ** Implement a test suite and support code.
149 This was built before implementing any of the extra features so I could
150 more easily check for equivalent functionality. The initial code base had
151 to be refactored substantially to allow for testing. The test suite is
152 not exhaustive, but it should provide enough to check for regressions.
154 * Changes in version 1.3.3
155 ** Now requires Perl 5.005 or later
156 ** Initially empty directories are not removed anymore
157 ** Removed buggy fastcwd (we use POSIX::getcwd instead)
158 ** Fixed bug when the common Parent of Target dir and Stow dir was "/"
159 ** Fixed bug when handling directories named "0"
160 ** Stow now only warns the user if a directory is unreadable during unstowing.
161 * Changes in version 1.3:
162 ** Added --restow option.
163 ** Fixed handling of slashes in package names.
164 ** Expanded configure-time search for Perl binary.
165 * Changes in version 1.2:
166 ** Dependency on `pwd' removed.
167 ** Perl 4 compatibility fixes.
168 ** Manual expanded even more.
169 * Changes in version 1.1:
170 ** Long and short options now accepted.
172 ** `make clean' removes stow (which is generated from stow.in).
173 * Initial public release (v1.0) of Stow.
174 * emacs local variables