Rebuild stow based on v2.3.2-fixbug56727
This commit is contained in:
parent
d7da96382f
commit
23daff4a9f
42 changed files with 8741 additions and 5290 deletions
File diff suppressed because it is too large
Load diff
202
local/share/doc/stow/INSTALL.md
Normal file
202
local/share/doc/stow/INSTALL.md
Normal file
|
@ -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.
|
|
@ -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).
|
101
local/share/doc/stow/README.md
Normal file
101
local/share/doc/stow/README.md
Normal file
|
@ -0,0 +1,101 @@
|
|||
[](https://travis-ci.org/aspiers/stow)
|
||||
[](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.
|
File diff suppressed because it is too large
Load diff
|
@ -1,89 +1,104 @@
|
|||
<html lang="en">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<title>Bootstrapping - Stow</title>
|
||||
<meta http-equiv="Content-Type" content="text/html">
|
||||
<meta name="description" content="Stow">
|
||||
<meta name="generator" content="makeinfo 4.13">
|
||||
<link title="Top" rel="start" href="index.html#Top">
|
||||
<link rel="prev" href="Compile_002dtime-vs-Install_002dtime.html#Compile_002dtime-vs-Install_002dtime" title="Compile-time vs Install-time">
|
||||
<link rel="next" href="Reporting-Bugs.html#Reporting-Bugs" title="Reporting Bugs">
|
||||
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
|
||||
<!--
|
||||
This manual describes GNU Stow version 2.2.2
|
||||
(9 November 2015), a program for managing the installation of software
|
||||
packages.
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!-- 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 <bobg+stow@zanshin.com>
|
||||
© 1993, 1994, 1995, 1996 Bob Glickstein <bobg+stow@zanshin.com>
|
||||
|
||||
(C) 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
© 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of
|
||||
this manual provided the copyright notice and this permission
|
||||
notice are preserved on all copies.
|
||||
© 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
|
||||
|
||||
© 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of this
|
||||
manual provided the copyright notice and this permission notice are
|
||||
preserved on all copies.
|
||||
|
||||
|
||||
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. -->
|
||||
<title>Bootstrapping (Stow)</title>
|
||||
|
||||
<meta name="description" content="Bootstrapping (Stow)">
|
||||
<meta name="keywords" content="Bootstrapping (Stow)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
<link href="index.html" rel="start" title="Top">
|
||||
<link href="Index.html" rel="index" title="Index">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="index.html" rel="up" title="Top">
|
||||
<link href="Reporting-Bugs.html" rel="next" title="Reporting Bugs">
|
||||
<link href="Compile_002dtime-vs-Install_002dtime.html" rel="prev" title="Compile-time vs Install-time">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
|
||||
div.example {margin-left: 3.2em}
|
||||
span:hover a.copiable-link {visibility: visible}
|
||||
-->
|
||||
</style>
|
||||
|
||||
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.
|
||||
-->
|
||||
<meta http-equiv="Content-Style-Type" content="text/css">
|
||||
<style type="text/css"><!--
|
||||
pre.display { font-family:inherit }
|
||||
pre.format { font-family:inherit }
|
||||
pre.smalldisplay { font-family:inherit; font-size:smaller }
|
||||
pre.smallformat { font-family:inherit; font-size:smaller }
|
||||
pre.smallexample { font-size:smaller }
|
||||
pre.smalllisp { font-size:smaller }
|
||||
span.sc { font-variant:small-caps }
|
||||
span.roman { font-family:serif; font-weight:normal; }
|
||||
span.sansserif { font-family:sans-serif; font-weight:normal; }
|
||||
--></style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="node">
|
||||
<a name="Bootstrapping"></a>
|
||||
<p>
|
||||
Next: <a rel="next" accesskey="n" href="Reporting-Bugs.html#Reporting-Bugs">Reporting Bugs</a>,
|
||||
Previous: <a rel="previous" accesskey="p" href="Compile_002dtime-vs-Install_002dtime.html#Compile_002dtime-vs-Install_002dtime">Compile-time vs Install-time</a>,
|
||||
Up: <a rel="up" accesskey="u" href="index.html#Top">Top</a>
|
||||
<hr>
|
||||
</div>
|
||||
|
||||
<h2 class="chapter">13 Bootstrapping</h2>
|
||||
<body lang="en">
|
||||
<div class="chapter-level-extent" id="Bootstrapping">
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a href="Reporting-Bugs.html" accesskey="n" rel="next">Reporting Bugs</a>, Previous: <a href="Compile_002dtime-vs-Install_002dtime.html" accesskey="p" rel="prev">Compile-time vs Install-time</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<h2 class="chapter" id="Bootstrapping-1"><span>13 Bootstrapping<a class="copiable-link" href="#Bootstrapping-1"> ¶</a></span></h2>
|
||||
|
||||
<p>Suppose you have a stow directory all set up and ready to go:
|
||||
<samp><span class="file">/usr/local/stow/perl</span></samp> contains the Perl installation,
|
||||
<samp><span class="file">/usr/local/stow/stow</span></samp> contains Stow itself, and perhaps you have
|
||||
other packages waiting to be stowed. You'd like to be able to do this:
|
||||
<samp class="file">/usr/local/stow/perl</samp> contains the Perl installation,
|
||||
<samp class="file">/usr/local/stow/stow</samp> contains Stow itself, and perhaps you have
|
||||
other packages waiting to be stowed. You’d like to be able to do this:
|
||||
</p>
|
||||
<div class="example">
|
||||
<pre class="example-preformatted">cd /usr/local/stow
|
||||
stow -vv *
|
||||
</pre></div>
|
||||
|
||||
<pre class="example"> cd /usr/local/stow
|
||||
stow -vv *
|
||||
</pre>
|
||||
<p class="noindent">but <samp><span class="command">stow</span></samp> is not yet in your <samp><span class="env">PATH</span></samp>. Nor can you do this:
|
||||
<p>but <code class="command">stow</code> is not yet in your <code class="env">PATH</code>. Nor can you do this:
|
||||
</p>
|
||||
<div class="example">
|
||||
<pre class="example-preformatted">cd /usr/local/stow
|
||||
stow/bin/stow -vv *
|
||||
</pre></div>
|
||||
|
||||
<pre class="example"> cd /usr/local/stow
|
||||
stow/bin/stow -vv *
|
||||
</pre>
|
||||
<p class="noindent">because the ‘<samp><span class="samp">#!</span></samp>’ line at the beginning of <samp><span class="command">stow</span></samp> tries to
|
||||
locate Perl (usually in <samp><span class="file">/usr/local/bin/perl</span></samp>), and that won't be
|
||||
<p>because the ‘<samp class="samp">#!</samp>’ line at the beginning of <code class="command">stow</code> tries to
|
||||
locate Perl (usually in <samp class="file">/usr/local/bin/perl</samp>), and that won’t be
|
||||
found. The solution you must use is:
|
||||
</p>
|
||||
<div class="example">
|
||||
<pre class="example-preformatted">cd /usr/local/stow
|
||||
perl/bin/perl stow/bin/stow -vv *
|
||||
</pre></div>
|
||||
|
||||
<pre class="example"> cd /usr/local/stow
|
||||
perl/bin/perl stow/bin/stow -vv *
|
||||
</pre>
|
||||
<!-- =========================================================================== -->
|
||||
</body></html>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,144 +1,162 @@
|
|||
<html lang="en">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<title>Compile-time vs Install-time - Stow</title>
|
||||
<meta http-equiv="Content-Type" content="text/html">
|
||||
<meta name="description" content="Stow">
|
||||
<meta name="generator" content="makeinfo 4.13">
|
||||
<link title="Top" rel="start" href="index.html#Top">
|
||||
<link rel="prev" href="Resource-Files.html#Resource-Files" title="Resource Files">
|
||||
<link rel="next" href="Bootstrapping.html#Bootstrapping" title="Bootstrapping">
|
||||
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
|
||||
<!--
|
||||
This manual describes GNU Stow version 2.2.2
|
||||
(9 November 2015), a program for managing the installation of software
|
||||
packages.
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!-- 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 <bobg+stow@zanshin.com>
|
||||
© 1993, 1994, 1995, 1996 Bob Glickstein <bobg+stow@zanshin.com>
|
||||
|
||||
(C) 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
© 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of
|
||||
this manual provided the copyright notice and this permission
|
||||
notice are preserved on all copies.
|
||||
© 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
|
||||
|
||||
© 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of this
|
||||
manual provided the copyright notice and this permission notice are
|
||||
preserved on all copies.
|
||||
|
||||
|
||||
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. -->
|
||||
<title>Compile-time vs Install-time (Stow)</title>
|
||||
|
||||
<meta name="description" content="Compile-time vs Install-time (Stow)">
|
||||
<meta name="keywords" content="Compile-time vs Install-time (Stow)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
<link href="index.html" rel="start" title="Top">
|
||||
<link href="Index.html" rel="index" title="Index">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="index.html" rel="up" title="Top">
|
||||
<link href="Bootstrapping.html" rel="next" title="Bootstrapping">
|
||||
<link href="Resource-Files.html" rel="prev" title="Resource Files">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
|
||||
div.example {margin-left: 3.2em}
|
||||
span.r {font-family: initial; font-weight: normal; font-style: normal}
|
||||
span:hover a.copiable-link {visibility: visible}
|
||||
-->
|
||||
</style>
|
||||
|
||||
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.
|
||||
-->
|
||||
<meta http-equiv="Content-Style-Type" content="text/css">
|
||||
<style type="text/css"><!--
|
||||
pre.display { font-family:inherit }
|
||||
pre.format { font-family:inherit }
|
||||
pre.smalldisplay { font-family:inherit; font-size:smaller }
|
||||
pre.smallformat { font-family:inherit; font-size:smaller }
|
||||
pre.smallexample { font-size:smaller }
|
||||
pre.smalllisp { font-size:smaller }
|
||||
span.sc { font-variant:small-caps }
|
||||
span.roman { font-family:serif; font-weight:normal; }
|
||||
span.sansserif { font-family:sans-serif; font-weight:normal; }
|
||||
--></style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="node">
|
||||
<a name="Compile-time-vs-Install-time"></a>
|
||||
<a name="Compile_002dtime-vs-Install_002dtime"></a>
|
||||
<p>
|
||||
Next: <a rel="next" accesskey="n" href="Bootstrapping.html#Bootstrapping">Bootstrapping</a>,
|
||||
Previous: <a rel="previous" accesskey="p" href="Resource-Files.html#Resource-Files">Resource Files</a>,
|
||||
Up: <a rel="up" accesskey="u" href="index.html#Top">Top</a>
|
||||
<hr>
|
||||
</div>
|
||||
|
||||
<h2 class="chapter">12 Compile-time vs Install-time</h2>
|
||||
<body lang="en">
|
||||
<div class="chapter-level-extent" id="Compile_002dtime-vs-Install_002dtime">
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a href="Bootstrapping.html" accesskey="n" rel="next">Bootstrapping</a>, Previous: <a href="Resource-Files.html" accesskey="p" rel="prev">Resource Files</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<h2 class="chapter" id="Compile_002dtime-vs-Install_002dtime-1"><span>12 Compile-time vs Install-time<a class="copiable-link" href="#Compile_002dtime-vs-Install_002dtime-1"> ¶</a></span></h2>
|
||||
|
||||
<p>Software whose installation is managed with Stow needs to be installed
|
||||
in one place (the package directory, e.g. <samp><span class="file">/usr/local/stow/perl</span></samp>)
|
||||
in one place (the package directory, e.g. <samp class="file">/usr/local/stow/perl</samp>)
|
||||
but needs to appear to run in another place (the target tree, e.g.,
|
||||
<samp><span class="file">/usr/local</span></samp>). Why is this important? What's wrong with Perl, for
|
||||
instance, looking for its files in <samp><span class="file">/usr/local/stow/perl</span></samp> instead
|
||||
of in <samp><span class="file">/usr/local</span></samp>?
|
||||
|
||||
<p>The answer is that there may be another package, e.g.,
|
||||
<samp><span class="file">/usr/local/stow/perl-extras</span></samp>, stowed under <samp><span class="file">/usr/local</span></samp>. If
|
||||
Perl is configured to find its files in <samp><span class="file">/usr/local/stow/perl</span></samp>, it
|
||||
will never find the extra files in the ‘<samp><span class="samp">perl-extras</span></samp>’ package, even
|
||||
though they're intended to be found by Perl. On the other hand, if Perl
|
||||
looks for its files in <samp><span class="file">/usr/local</span></samp>, then it will find the
|
||||
intermingled Perl and ‘<samp><span class="samp">perl-extras</span></samp>’ files.
|
||||
|
||||
<p>This means that when you compile a package, you must tell it the
|
||||
<samp class="file">/usr/local</samp>). Why is this important? What’s wrong with Perl, for
|
||||
instance, looking for its files in <samp class="file">/usr/local/stow/perl</samp> instead
|
||||
of in <samp class="file">/usr/local</samp>?
|
||||
</p>
|
||||
<p>The answer is that there may be another package, e.g.,
|
||||
<samp class="file">/usr/local/stow/perl-extras</samp>, stowed under <samp class="file">/usr/local</samp>. If
|
||||
Perl is configured to find its files in <samp class="file">/usr/local/stow/perl</samp>, it
|
||||
will never find the extra files in the ‘<samp class="samp">perl-extras</samp>’ package, even
|
||||
though they’re intended to be found by Perl. On the other hand, if Perl
|
||||
looks for its files in <samp class="file">/usr/local</samp>, then it will find the
|
||||
intermingled Perl and ‘<samp class="samp">perl-extras</samp>’ files.
|
||||
</p>
|
||||
<p>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.
|
||||
|
||||
<h3 class="section">12.1 Advice on changing compilation and installation parameters</h3>
|
||||
|
||||
</p>
|
||||
<ul class="mini-toc">
|
||||
<li><a href="#Advice-on-changing-compilation-and-installation-parameters" accesskey="1">Advice on changing compilation and installation parameters</a></li>
|
||||
<li><a href="GNU-Emacs.html" accesskey="2">GNU Emacs</a></li>
|
||||
<li><a href="Other-FSF-Software.html" accesskey="3">Other FSF Software</a></li>
|
||||
<li><a href="Cygnus-Software.html" accesskey="4">Cygnus Software</a></li>
|
||||
<li><a href="Perl-and-Perl-5-Modules.html" accesskey="5">Perl and Perl 5 Modules</a></li>
|
||||
</ul>
|
||||
<div class="section-level-extent" id="Advice-on-changing-compilation-and-installation-parameters">
|
||||
<h3 class="section"><span>12.1 Advice on changing compilation and installation parameters<a class="copiable-link" href="#Advice-on-changing-compilation-and-installation-parameters"> ¶</a></span></h3>
|
||||
<p>Some software packages allow you to specify, at compile-time, separate
|
||||
locations for installation and for run-time. Perl is one such package;
|
||||
see <a href="Perl-and-Perl-5-Modules.html#Perl-and-Perl-5-Modules">Perl and Perl 5 Modules</a>. Others allow you to compile the
|
||||
package, then give a different destination in the ‘<samp><span class="samp">make install</span></samp>’
|
||||
see <a class="ref" href="Perl-and-Perl-5-Modules.html">Perl and Perl 5 Modules</a>. Others allow you to compile the
|
||||
package, then give a different destination in the ‘<samp class="samp">make install</samp>’
|
||||
step without causing the binaries or other files to get rebuilt. Most
|
||||
GNU software falls into this category; Emacs is a notable exception.
|
||||
See <a href="GNU-Emacs.html#GNU-Emacs">GNU Emacs</a>, and <a href="Other-FSF-Software.html#Other-FSF-Software">Other FSF Software</a>.
|
||||
|
||||
<p>Still other software packages cannot abide the idea of separate
|
||||
installation and run-time locations at all. If you try to ‘<samp><span class="samp">make
|
||||
install prefix=/usr/local/stow/</span><var>foo</var></samp>’, then first the whole package
|
||||
will be recompiled to hardwire the <samp><span class="file">/usr/local/stow/</span><var>foo</var></samp>
|
||||
GNU software falls into this category; Emacs is a notable exception.
|
||||
See <a class="xref" href="GNU-Emacs.html">GNU Emacs</a>, and <a class="ref" href="Other-FSF-Software.html">Other FSF Software</a>.
|
||||
</p>
|
||||
<p>Still other software packages cannot abide the idea of separate
|
||||
installation and run-time locations at all. If you try to ‘<samp class="samp">make
|
||||
install prefix=/usr/local/stow/<var class="var">foo</var></samp>’, then first the whole package
|
||||
will be recompiled to hardwire the <samp class="file">/usr/local/stow/<var class="var">foo</var></samp>
|
||||
path. With these packages, it is best to compile normally, then run
|
||||
‘<samp><span class="samp">make -n install</span></samp>’, which should report all the steps needed to
|
||||
‘<samp class="samp">make -n install</samp>’, 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 ‘<samp><span class="samp">make install</span></samp>’. Be sure to execute the
|
||||
script using the same shell that ‘<samp><span class="samp">make install</span></samp>’ would have used.
|
||||
shell script in place of ‘<samp class="samp">make install</samp>’. Be sure to execute the
|
||||
script using the same shell that ‘<samp class="samp">make install</samp>’ would have used.
|
||||
</p>
|
||||
<p>(If you use GNU Make and a shell [such as GNU bash] that understands
|
||||
<code class="command">pushd</code> and <code class="command">popd</code>, you can do the following:
|
||||
</p>
|
||||
<ol class="enumerate">
|
||||
<li> Replace all lines matching ‘<samp class="samp">make[<var class="var">n</var>]: Entering directory
|
||||
<var class="var">dir</var></samp>’ with ‘<samp class="samp">pushd <var class="var">dir</var></samp>’.
|
||||
</li><li> Replace all lines matching ‘<samp class="samp">make[<var class="var">n</var>]: Leaving directory
|
||||
<var class="var">dir</var></samp>’ with ‘<samp class="samp">popd</samp>’.
|
||||
</li><li> Delete all lines matching ‘<samp class="samp">make[<var class="var">n</var>]: Nothing to be done for
|
||||
<var class="var">rule</var></samp>’.
|
||||
</li></ol>
|
||||
|
||||
<p>(If you use GNU Make and a shell [such as GNU bash] that understands
|
||||
<samp><span class="command">pushd</span></samp> and <samp><span class="command">popd</span></samp>, you can do the following:
|
||||
|
||||
<ol type=1 start=1>
|
||||
<li>Replace all lines matching ‘<samp><span class="samp">make[</span><var>n</var><span class="samp">]: Entering directory
|
||||
</span><var>dir</var></samp>’ with ‘<samp><span class="samp">pushd </span><var>dir</var></samp>’.
|
||||
<li>Replace all lines matching ‘<samp><span class="samp">make[</span><var>n</var><span class="samp">]: Leaving directory
|
||||
</span><var>dir</var></samp>’ with ‘<samp><span class="samp">popd</span></samp>’.
|
||||
<li>Delete all lines matching ‘<samp><span class="samp">make[</span><var>n</var><span class="samp">]: Nothing to be done for
|
||||
</span><var>rule</var></samp>’.
|
||||
</ol>
|
||||
|
||||
<p>Then find other lines in the output containing <samp><span class="command">cd</span></samp> or <samp><span class="command">make</span></samp>
|
||||
<p>Then find other lines in the output containing <code class="command">cd</code> or <code class="command">make</code>
|
||||
commands and rewrite or delete them. In particular, you should be able
|
||||
to delete sections of the script that resemble this:
|
||||
</p>
|
||||
<div class="example">
|
||||
<pre class="example-preformatted">for i in <var class="var">dir_1</var> <var class="var">dir_2</var> <span class="r">...</span>; do \
|
||||
(cd $i; make <var class="var">args</var> <span class="r">...</span>) \
|
||||
done
|
||||
</pre></div>
|
||||
|
||||
<pre class="example"> for i in <var>dir_1</var> <var>dir_2</var> <span class="roman">...</span>; do \
|
||||
(cd $i; make <var>args</var> <span class="roman">...</span>) \
|
||||
done
|
||||
</pre>
|
||||
<p class="noindent">Note, that's “should be able to,” not “can.” Be sure to modulate
|
||||
<p>Note, that’s “should be able to,” not “can.” Be sure to modulate
|
||||
these guidelines with plenty of your own intelligence.
|
||||
|
||||
<p>The details of stowing some specific packages are described in the
|
||||
</p>
|
||||
<p>The details of stowing some specific packages are described in the
|
||||
following sections.
|
||||
</p>
|
||||
|
||||
<ul class="menu">
|
||||
<li><a accesskey="1" href="GNU-Emacs.html#GNU-Emacs">GNU Emacs</a>
|
||||
<li><a accesskey="2" href="Other-FSF-Software.html#Other-FSF-Software">Other FSF Software</a>
|
||||
<li><a accesskey="3" href="Cygnus-Software.html#Cygnus-Software">Cygnus Software</a>
|
||||
<li><a accesskey="4" href="Perl-and-Perl-5-Modules.html#Perl-and-Perl-5-Modules">Perl and Perl 5 Modules</a>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a href="Bootstrapping.html">Bootstrapping</a>, Previous: <a href="Resource-Files.html">Resource Files</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
|
||||
<!-- -->
|
||||
</body></html>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,100 +1,117 @@
|
|||
<html lang="en">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<title>Conflicts - Stow</title>
|
||||
<meta http-equiv="Content-Type" content="text/html">
|
||||
<meta name="description" content="Stow">
|
||||
<meta name="generator" content="makeinfo 4.13">
|
||||
<link title="Top" rel="start" href="index.html#Top">
|
||||
<link rel="prev" href="Deleting-Packages.html#Deleting-Packages" title="Deleting Packages">
|
||||
<link rel="next" href="Mixing-Operations.html#Mixing-Operations" title="Mixing Operations">
|
||||
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
|
||||
<!--
|
||||
This manual describes GNU Stow version 2.2.2
|
||||
(9 November 2015), a program for managing the installation of software
|
||||
packages.
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!-- 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 <bobg+stow@zanshin.com>
|
||||
© 1993, 1994, 1995, 1996 Bob Glickstein <bobg+stow@zanshin.com>
|
||||
|
||||
(C) 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
© 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of
|
||||
this manual provided the copyright notice and this permission
|
||||
notice are preserved on all copies.
|
||||
© 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
|
||||
|
||||
© 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of this
|
||||
manual provided the copyright notice and this permission notice are
|
||||
preserved on all copies.
|
||||
|
||||
|
||||
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. -->
|
||||
<title>Conflicts (Stow)</title>
|
||||
|
||||
<meta name="description" content="Conflicts (Stow)">
|
||||
<meta name="keywords" content="Conflicts (Stow)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
<link href="index.html" rel="start" title="Top">
|
||||
<link href="Index.html" rel="index" title="Index">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="index.html" rel="up" title="Top">
|
||||
<link href="Mixing-Operations.html" rel="next" title="Mixing Operations">
|
||||
<link href="Deleting-Packages.html" rel="prev" title="Deleting Packages">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
|
||||
span:hover a.copiable-link {visibility: visible}
|
||||
-->
|
||||
</style>
|
||||
|
||||
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.
|
||||
-->
|
||||
<meta http-equiv="Content-Style-Type" content="text/css">
|
||||
<style type="text/css"><!--
|
||||
pre.display { font-family:inherit }
|
||||
pre.format { font-family:inherit }
|
||||
pre.smalldisplay { font-family:inherit; font-size:smaller }
|
||||
pre.smallformat { font-family:inherit; font-size:smaller }
|
||||
pre.smallexample { font-size:smaller }
|
||||
pre.smalllisp { font-size:smaller }
|
||||
span.sc { font-variant:small-caps }
|
||||
span.roman { font-family:serif; font-weight:normal; }
|
||||
span.sansserif { font-family:sans-serif; font-weight:normal; }
|
||||
--></style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="node">
|
||||
<a name="Conflicts"></a>
|
||||
|
||||
<body lang="en">
|
||||
<div class="chapter-level-extent" id="Conflicts">
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a rel="next" accesskey="n" href="Mixing-Operations.html#Mixing-Operations">Mixing Operations</a>,
|
||||
Previous: <a rel="previous" accesskey="p" href="Deleting-Packages.html#Deleting-Packages">Deleting Packages</a>,
|
||||
Up: <a rel="up" accesskey="u" href="index.html#Top">Top</a>
|
||||
<hr>
|
||||
Next: <a href="Mixing-Operations.html" accesskey="n" rel="next">Mixing Operations</a>, Previous: <a href="Deleting-Packages.html" accesskey="p" rel="prev">Deleting Packages</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<h2 class="chapter" id="Conflicts-1"><span>7 Conflicts<a class="copiable-link" href="#Conflicts-1"> ¶</a></span></h2>
|
||||
|
||||
<h2 class="chapter">7 Conflicts</h2>
|
||||
|
||||
<p><a name="index-conflicts-31"></a>If, during installation, a file or symlink exists in the target tree and
|
||||
<a class="index-entry-id" id="index-conflicts-1"></a>
|
||||
<p>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
|
||||
<dfn>conflict</dfn> has arisen. A conflict also occurs if a directory exists
|
||||
<em class="dfn">conflict</em> 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.)
|
||||
|
||||
<p>For complex packages, scanning the stow and target trees in tandem,
|
||||
</p>
|
||||
<p>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.
|
||||
</p>
|
||||
<a class="anchor" id="Deferred-Operation"></a><ul class="mini-toc">
|
||||
<li><a href="#Deferred-Operation-1" accesskey="1">Deferred Operation</a></li>
|
||||
</ul>
|
||||
<div class="section-level-extent" id="Deferred-Operation-1">
|
||||
<h3 class="section"><span>7.1 Deferred Operation<a class="copiable-link" href="#Deferred-Operation-1"> ¶</a></span></h3>
|
||||
<a class="index-entry-id" id="index-deferred-operation"></a>
|
||||
|
||||
<p><a name="Deferred-Operation"></a>
|
||||
|
||||
<h3 class="section">7.1 Deferred Operation</h3>
|
||||
|
||||
<p><a name="index-deferred-operation-32"></a>
|
||||
Since version 2.0, Stow now adopts a two-phase algorithm, first
|
||||
<p>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.
|
||||
|
||||
<p>Prior to version 2.0, if a conflict was discovered, the stow or unstow
|
||||
</p>
|
||||
<p>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.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a href="Mixing-Operations.html">Mixing Operations</a>, Previous: <a href="Deleting-Packages.html">Deleting Packages</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
|
||||
<!-- =========================================================================== -->
|
||||
</body></html>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,95 +1,103 @@
|
|||
<html lang="en">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<title>Cygnus Software - Stow</title>
|
||||
<meta http-equiv="Content-Type" content="text/html">
|
||||
<meta name="description" content="Stow">
|
||||
<meta name="generator" content="makeinfo 4.13">
|
||||
<link title="Top" rel="start" href="index.html#Top">
|
||||
<link rel="up" href="Compile_002dtime-vs-Install_002dtime.html#Compile_002dtime-vs-Install_002dtime" title="Compile-time vs Install-time">
|
||||
<link rel="prev" href="Other-FSF-Software.html#Other-FSF-Software" title="Other FSF Software">
|
||||
<link rel="next" href="Perl-and-Perl-5-Modules.html#Perl-and-Perl-5-Modules" title="Perl and Perl 5 Modules">
|
||||
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
|
||||
<!--
|
||||
This manual describes GNU Stow version 2.2.2
|
||||
(9 November 2015), a program for managing the installation of software
|
||||
packages.
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!-- 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 <bobg+stow@zanshin.com>
|
||||
© 1993, 1994, 1995, 1996 Bob Glickstein <bobg+stow@zanshin.com>
|
||||
|
||||
(C) 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
© 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of
|
||||
this manual provided the copyright notice and this permission
|
||||
notice are preserved on all copies.
|
||||
© 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
|
||||
|
||||
© 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of this
|
||||
manual provided the copyright notice and this permission notice are
|
||||
preserved on all copies.
|
||||
|
||||
|
||||
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. -->
|
||||
<title>Cygnus Software (Stow)</title>
|
||||
|
||||
<meta name="description" content="Cygnus Software (Stow)">
|
||||
<meta name="keywords" content="Cygnus Software (Stow)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
<link href="index.html" rel="start" title="Top">
|
||||
<link href="Index.html" rel="index" title="Index">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="Compile_002dtime-vs-Install_002dtime.html" rel="up" title="Compile-time vs Install-time">
|
||||
<link href="Perl-and-Perl-5-Modules.html" rel="next" title="Perl and Perl 5 Modules">
|
||||
<link href="Other-FSF-Software.html" rel="prev" title="Other FSF Software">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
|
||||
span.r {font-family: initial; font-weight: normal; font-style: normal}
|
||||
span:hover a.copiable-link {visibility: visible}
|
||||
-->
|
||||
</style>
|
||||
|
||||
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.
|
||||
-->
|
||||
<meta http-equiv="Content-Style-Type" content="text/css">
|
||||
<style type="text/css"><!--
|
||||
pre.display { font-family:inherit }
|
||||
pre.format { font-family:inherit }
|
||||
pre.smalldisplay { font-family:inherit; font-size:smaller }
|
||||
pre.smallformat { font-family:inherit; font-size:smaller }
|
||||
pre.smallexample { font-size:smaller }
|
||||
pre.smalllisp { font-size:smaller }
|
||||
span.sc { font-variant:small-caps }
|
||||
span.roman { font-family:serif; font-weight:normal; }
|
||||
span.sansserif { font-family:sans-serif; font-weight:normal; }
|
||||
--></style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="node">
|
||||
<a name="Cygnus-Software"></a>
|
||||
<p>
|
||||
Next: <a rel="next" accesskey="n" href="Perl-and-Perl-5-Modules.html#Perl-and-Perl-5-Modules">Perl and Perl 5 Modules</a>,
|
||||
Previous: <a rel="previous" accesskey="p" href="Other-FSF-Software.html#Other-FSF-Software">Other FSF Software</a>,
|
||||
Up: <a rel="up" accesskey="u" href="Compile_002dtime-vs-Install_002dtime.html#Compile_002dtime-vs-Install_002dtime">Compile-time vs Install-time</a>
|
||||
<hr>
|
||||
</div>
|
||||
|
||||
<h3 class="section">12.4 Cygnus Software</h3>
|
||||
<body lang="en">
|
||||
<div class="section-level-extent" id="Cygnus-Software">
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a href="Perl-and-Perl-5-Modules.html" accesskey="n" rel="next">Perl and Perl 5 Modules</a>, Previous: <a href="Other-FSF-Software.html" accesskey="p" rel="prev">Other FSF Software</a>, Up: <a href="Compile_002dtime-vs-Install_002dtime.html" accesskey="u" rel="up">Compile-time vs Install-time</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<h3 class="section" id="Cygnus-Software-1"><span>12.4 Cygnus Software<a class="copiable-link" href="#Cygnus-Software-1"> ¶</a></span></h3>
|
||||
|
||||
<p>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 ‘<samp><span class="samp">gdb</span></samp>’,
|
||||
‘<samp><span class="samp">gnats</span></samp>’, and ‘<samp><span class="samp">dejagnu</span></samp>’.
|
||||
|
||||
<p>Cygnus packages have the peculiarity that each one unpacks into a
|
||||
other packages. Among the packages released by Cygnus are ‘<samp class="samp">gdb</samp>’,
|
||||
‘<samp class="samp">gnats</samp>’, and ‘<samp class="samp">dejagnu</samp>’.
|
||||
</p>
|
||||
<p>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 <em>all</em> of Cygnus' packages, any number of which may reside
|
||||
under the top-level directory. In other words, even if you're only
|
||||
building ‘<samp><span class="samp">gnats</span></samp>’, the top-level Makefile will look for, and try to
|
||||
build, <samp><span class="file">gdb</span></samp> and <samp><span class="file">dejagnu</span></samp> subdirectories, among many others.
|
||||
|
||||
<p>The result is that if you try ‘<samp><span class="samp">make -n install
|
||||
prefix=/usr/local/stow/</span><var>package</var></samp>’ at the top level of a Cygnus
|
||||
package, you'll get a bewildering amount of output. It will then be
|
||||
compile <em class="emph">all</em> of Cygnus’ packages, any number of which may reside
|
||||
under the top-level directory. In other words, even if you’re only
|
||||
building ‘<samp class="samp">gnats</samp>’, the top-level Makefile will look for, and try to
|
||||
build, <samp class="file">gdb</samp> and <samp class="file">dejagnu</samp> subdirectories, among many others.
|
||||
</p>
|
||||
<p>The result is that if you try ‘<samp class="samp">make -n install
|
||||
prefix=/usr/local/stow/<var class="var">package</var></samp>’ 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.
|
||||
|
||||
<p>In cases like this, the best approach is to run your ‘<samp><span class="samp">make install
|
||||
prefix=...</span></samp>’, but be ready to interrupt it if you detect that it
|
||||
</p>
|
||||
<p>In cases like this, the best approach is to run your ‘<samp class="samp">make install
|
||||
prefix=<span class="r">…</span></samp>’, but be ready to interrupt it if you detect that it
|
||||
is recompiling files. Usually it will work just fine; otherwise,
|
||||
install manually.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- -->
|
||||
</body></html>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1 +1,55 @@
|
|||
<meta http-equiv="refresh" content="0; url=Conflicts.html#Deferred%20Operation">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!-- 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:
|
||||
|
||||
© 1993, 1994, 1995, 1996 Bob Glickstein <bobg+stow@zanshin.com>
|
||||
|
||||
|
||||
© 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
|
||||
© 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
|
||||
|
||||
© 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of this
|
||||
manual provided the copyright notice and this permission notice are
|
||||
preserved on all copies.
|
||||
|
||||
|
||||
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. -->
|
||||
<title>Deferred Operation (Stow)</title>
|
||||
|
||||
<meta name="description" content="Deferred Operation (Stow)">
|
||||
<meta name="keywords" content="Deferred Operation (Stow)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Conflicts.html#Deferred-Operation">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Conflicts.html#Deferred-Operation">Deferred Operation</a>.</p>
|
||||
</body>
|
||||
|
|
|
@ -1,112 +1,126 @@
|
|||
<html lang="en">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<title>Deleting Packages - Stow</title>
|
||||
<meta http-equiv="Content-Type" content="text/html">
|
||||
<meta name="description" content="Stow">
|
||||
<meta name="generator" content="makeinfo 4.13">
|
||||
<link title="Top" rel="start" href="index.html#Top">
|
||||
<link rel="prev" href="Installing-Packages.html#Installing-Packages" title="Installing Packages">
|
||||
<link rel="next" href="Conflicts.html#Conflicts" title="Conflicts">
|
||||
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
|
||||
<!--
|
||||
This manual describes GNU Stow version 2.2.2
|
||||
(9 November 2015), a program for managing the installation of software
|
||||
packages.
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!-- 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 <bobg+stow@zanshin.com>
|
||||
© 1993, 1994, 1995, 1996 Bob Glickstein <bobg+stow@zanshin.com>
|
||||
|
||||
(C) 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
© 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of
|
||||
this manual provided the copyright notice and this permission
|
||||
notice are preserved on all copies.
|
||||
© 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
|
||||
|
||||
© 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of this
|
||||
manual provided the copyright notice and this permission notice are
|
||||
preserved on all copies.
|
||||
|
||||
|
||||
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. -->
|
||||
<title>Deleting Packages (Stow)</title>
|
||||
|
||||
<meta name="description" content="Deleting Packages (Stow)">
|
||||
<meta name="keywords" content="Deleting Packages (Stow)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
<link href="index.html" rel="start" title="Top">
|
||||
<link href="Index.html" rel="index" title="Index">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="index.html" rel="up" title="Top">
|
||||
<link href="Conflicts.html" rel="next" title="Conflicts">
|
||||
<link href="Installing-Packages.html" rel="prev" title="Installing Packages">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
|
||||
span:hover a.copiable-link {visibility: visible}
|
||||
-->
|
||||
</style>
|
||||
|
||||
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.
|
||||
-->
|
||||
<meta http-equiv="Content-Style-Type" content="text/css">
|
||||
<style type="text/css"><!--
|
||||
pre.display { font-family:inherit }
|
||||
pre.format { font-family:inherit }
|
||||
pre.smalldisplay { font-family:inherit; font-size:smaller }
|
||||
pre.smallformat { font-family:inherit; font-size:smaller }
|
||||
pre.smallexample { font-size:smaller }
|
||||
pre.smalllisp { font-size:smaller }
|
||||
span.sc { font-variant:small-caps }
|
||||
span.roman { font-family:serif; font-weight:normal; }
|
||||
span.sansserif { font-family:sans-serif; font-weight:normal; }
|
||||
--></style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="node">
|
||||
<a name="Deleting-Packages"></a>
|
||||
|
||||
<body lang="en">
|
||||
<div class="chapter-level-extent" id="Deleting-Packages">
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a rel="next" accesskey="n" href="Conflicts.html#Conflicts">Conflicts</a>,
|
||||
Previous: <a rel="previous" accesskey="p" href="Installing-Packages.html#Installing-Packages">Installing Packages</a>,
|
||||
Up: <a rel="up" accesskey="u" href="index.html#Top">Top</a>
|
||||
<hr>
|
||||
Next: <a href="Conflicts.html" accesskey="n" rel="next">Conflicts</a>, Previous: <a href="Installing-Packages.html" accesskey="p" rel="prev">Installing Packages</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<h2 class="chapter" id="Deleting-Packages-1"><span>6 Deleting Packages<a class="copiable-link" href="#Deleting-Packages-1"> ¶</a></span></h2>
|
||||
|
||||
<h2 class="chapter">6 Deleting Packages</h2>
|
||||
|
||||
<p><a name="index-deletion-28"></a>When the <samp><span class="option">-D</span></samp> option is given, the action of Stow is to
|
||||
<a class="index-entry-id" id="index-deletion"></a>
|
||||
<p>When the <samp class="option">-D</samp> 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 <em>not</em>
|
||||
delete anything it doesn’t “own”. Deleting a package does <em class="emph">not</em>
|
||||
mean removing it from the stow directory or discarding the package
|
||||
tree.
|
||||
|
||||
<p>To delete a package, Stow recursively scans the target tree, skipping over any
|
||||
directory that is not included in the installation image.<a rel="footnote" href="#fn-1" name="fnd-1"><sup>1</sup></a>
|
||||
For example, if the target directory is <samp><span class="file">/usr/local</span></samp> and the
|
||||
installation image for the package being deleted has only a <samp><span class="file">bin</span></samp>
|
||||
directory and a <samp><span class="file">man</span></samp> directory at the top level, then we only scan
|
||||
<samp><span class="file">/usr/local/bin</span></samp> and <samp><span class="file">/usr/local/bin/man</span></samp>, and not
|
||||
<samp><span class="file">/usr/local/lib</span></samp> or <samp><span class="file">/usr/local/share</span></samp>, or for that matter
|
||||
<samp><span class="file">/usr/local/stow</span></samp>. Any symlink it finds that points into the package
|
||||
</p>
|
||||
<p>To delete a package, Stow recursively scans the target tree, skipping over any
|
||||
directory that is not included in the installation image.<a class="footnote" id="DOCF7" href="#FOOT7"><sup>7</sup></a>
|
||||
For example, if the target directory is <samp class="file">/usr/local</samp> and the
|
||||
installation image for the package being deleted has only a <samp class="file">bin</samp>
|
||||
directory and a <samp class="file">man</samp> directory at the top level, then we only scan
|
||||
<samp class="file">/usr/local/bin</samp> and <samp class="file">/usr/local/man</samp>, and not
|
||||
<samp class="file">/usr/local/lib</samp> or <samp class="file">/usr/local/share</samp>, or for that matter
|
||||
<samp class="file">/usr/local/stow</samp>. 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.
|
||||
</p>
|
||||
<a class="anchor" id="tree-refolding"></a><ul class="mini-toc">
|
||||
<li><a href="#Refolding-_0060_0060foldable_0027_0027-trees_002e" accesskey="1">Refolding “foldable” trees.</a></li>
|
||||
</ul>
|
||||
<div class="section-level-extent" id="Refolding-_0060_0060foldable_0027_0027-trees_002e">
|
||||
<h3 class="section"><span>6.1 Refolding “foldable” trees.<a class="copiable-link" href="#Refolding-_0060_0060foldable_0027_0027-trees_002e"> ¶</a></span></h3>
|
||||
<a class="index-entry-id" id="index-refolding-trees"></a>
|
||||
<a class="index-entry-id" id="index-tree-refolding"></a>
|
||||
|
||||
<p><a name="tree-refolding"></a>
|
||||
|
||||
<h3 class="section">6.1 Refolding “foldable” trees.</h3>
|
||||
|
||||
<p><a name="index-refolding-trees-29"></a><a name="index-tree-refolding-30"></a>
|
||||
After removing symlinks and empty subdirectories, any directory that
|
||||
<p>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
|
||||
<samp><span class="option">--no-folding</span></samp> option; see <a href="Invoking-Stow.html#Invoking-Stow">Invoking Stow</a>.
|
||||
|
||||
<!-- =========================================================================== -->
|
||||
<div class="footnote">
|
||||
<samp class="option">--no-folding</samp> option; see <a class="pxref" href="Invoking-Stow.html">Invoking Stow</a>.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footnotes-segment">
|
||||
<hr>
|
||||
<h4>Footnotes</h4><p class="footnote"><small>[<a name="fn-1" href="#fnd-1">1</a>]</small> This
|
||||
<h4 class="footnotes-heading">Footnotes</h4>
|
||||
|
||||
<h5 class="footnote-body-heading"><a id="FOOT7" href="#DOCF7">(7)</a></h5>
|
||||
<p>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 <samp><span class="option">-p</span></samp> option. Alternatively, you can
|
||||
use the <samp><span class="option">--badlinks</span></samp> option get stow to search for dangling links in your target tree and remove the offenders manually.</p>
|
||||
you can enable the old approach with the <samp class="option">-p</samp> option. Alternatively, you can
|
||||
use the <samp class="option">--badlinks</samp> option get stow to search for dangling links in your target tree and remove the offenders manually.</p>
|
||||
</div>
|
||||
|
||||
<hr></div>
|
||||
|
||||
</body></html>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,97 +1,112 @@
|
|||
<html lang="en">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<title>GNU Emacs - Stow</title>
|
||||
<meta http-equiv="Content-Type" content="text/html">
|
||||
<meta name="description" content="Stow">
|
||||
<meta name="generator" content="makeinfo 4.13">
|
||||
<link title="Top" rel="start" href="index.html#Top">
|
||||
<link rel="up" href="Compile_002dtime-vs-Install_002dtime.html#Compile_002dtime-vs-Install_002dtime" title="Compile-time vs Install-time">
|
||||
<link rel="prev" href="Compile_002dtime-vs-Install_002dtime.html#Compile_002dtime-vs-Install_002dtime" title="Compile-time vs Install-time">
|
||||
<link rel="next" href="Other-FSF-Software.html#Other-FSF-Software" title="Other FSF Software">
|
||||
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
|
||||
<!--
|
||||
This manual describes GNU Stow version 2.2.2
|
||||
(9 November 2015), a program for managing the installation of software
|
||||
packages.
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!-- 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 <bobg+stow@zanshin.com>
|
||||
© 1993, 1994, 1995, 1996 Bob Glickstein <bobg+stow@zanshin.com>
|
||||
|
||||
(C) 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
© 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of
|
||||
this manual provided the copyright notice and this permission
|
||||
notice are preserved on all copies.
|
||||
© 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
|
||||
|
||||
© 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of this
|
||||
manual provided the copyright notice and this permission notice are
|
||||
preserved on all copies.
|
||||
|
||||
|
||||
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. -->
|
||||
<title>GNU Emacs (Stow)</title>
|
||||
|
||||
<meta name="description" content="GNU Emacs (Stow)">
|
||||
<meta name="keywords" content="GNU Emacs (Stow)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
<link href="index.html" rel="start" title="Top">
|
||||
<link href="Index.html" rel="index" title="Index">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="Compile_002dtime-vs-Install_002dtime.html" rel="up" title="Compile-time vs Install-time">
|
||||
<link href="Other-FSF-Software.html" rel="next" title="Other FSF Software">
|
||||
<link href="Compile_002dtime-vs-Install_002dtime.html" rel="prev" title="Compile-time vs Install-time">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
|
||||
div.example {margin-left: 3.2em}
|
||||
span:hover a.copiable-link {visibility: visible}
|
||||
-->
|
||||
</style>
|
||||
|
||||
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.
|
||||
-->
|
||||
<meta http-equiv="Content-Style-Type" content="text/css">
|
||||
<style type="text/css"><!--
|
||||
pre.display { font-family:inherit }
|
||||
pre.format { font-family:inherit }
|
||||
pre.smalldisplay { font-family:inherit; font-size:smaller }
|
||||
pre.smallformat { font-family:inherit; font-size:smaller }
|
||||
pre.smallexample { font-size:smaller }
|
||||
pre.smalllisp { font-size:smaller }
|
||||
span.sc { font-variant:small-caps }
|
||||
span.roman { font-family:serif; font-weight:normal; }
|
||||
span.sansserif { font-family:sans-serif; font-weight:normal; }
|
||||
--></style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="node">
|
||||
<a name="GNU-Emacs"></a>
|
||||
<p>
|
||||
Next: <a rel="next" accesskey="n" href="Other-FSF-Software.html#Other-FSF-Software">Other FSF Software</a>,
|
||||
Previous: <a rel="previous" accesskey="p" href="Compile_002dtime-vs-Install_002dtime.html#Compile_002dtime-vs-Install_002dtime">Compile-time vs Install-time</a>,
|
||||
Up: <a rel="up" accesskey="u" href="Compile_002dtime-vs-Install_002dtime.html#Compile_002dtime-vs-Install_002dtime">Compile-time vs Install-time</a>
|
||||
<hr>
|
||||
</div>
|
||||
|
||||
<h3 class="section">12.2 GNU Emacs</h3>
|
||||
<body lang="en">
|
||||
<div class="section-level-extent" id="GNU-Emacs">
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a href="Other-FSF-Software.html" accesskey="n" rel="next">Other FSF Software</a>, Previous: <a href="Compile_002dtime-vs-Install_002dtime.html" accesskey="p" rel="prev">Compile-time vs Install-time</a>, Up: <a href="Compile_002dtime-vs-Install_002dtime.html" accesskey="u" rel="up">Compile-time vs Install-time</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<h3 class="section" id="GNU-Emacs-1"><span>12.2 GNU Emacs<a class="copiable-link" href="#GNU-Emacs-1"> ¶</a></span></h3>
|
||||
|
||||
<p>Although the Free Software Foundation has many enlightened practices
|
||||
regarding Makefiles and software installation (see see <a href="Other-FSF-Software.html#Other-FSF-Software">Other FSF Software</a>), Emacs, its flagship program, doesn't quite follow the
|
||||
regarding Makefiles and software installation (see see <a class="pxref" href="Other-FSF-Software.html">Other FSF Software</a>), Emacs, its flagship program, doesn’t quite follow the
|
||||
rules. In particular, most GNU software allows you to write:
|
||||
</p>
|
||||
<div class="example">
|
||||
<pre class="example-preformatted">make
|
||||
make install prefix=/usr/local/stow/<var class="var">package</var>
|
||||
</pre></div>
|
||||
|
||||
<pre class="example"> make
|
||||
make install prefix=/usr/local/stow/<var>package</var>
|
||||
</pre>
|
||||
<p class="noindent">If you try this with Emacs, then the new value for <var>prefix</var> in the
|
||||
‘<samp><span class="samp">make install</span></samp>’ step will cause some files to get recompiled with
|
||||
the new value of <var>prefix</var> wired into them. In Emacs 19.23 and
|
||||
later,<a rel="footnote" href="#fn-1" name="fnd-1"><sup>1</sup></a>
|
||||
<p>If you try this with Emacs, then the new value for <var class="var">prefix</var> in the
|
||||
‘<samp class="samp">make install</samp>’ step will cause some files to get recompiled with
|
||||
the new value of <var class="var">prefix</var> wired into them. In Emacs 19.23 and
|
||||
later,<a class="footnote" id="DOCF8" href="#FOOT8"><sup>8</sup></a>
|
||||
the way to work around this problem is:
|
||||
</p>
|
||||
<div class="example">
|
||||
<pre class="example-preformatted">make
|
||||
make install-arch-dep install-arch-indep prefix=/usr/local/stow/emacs
|
||||
</pre></div>
|
||||
|
||||
<pre class="example"> make
|
||||
make install-arch-dep install-arch-indep prefix=/usr/local/stow/emacs
|
||||
</pre>
|
||||
<p>In 19.22 and some prior versions of Emacs, the workaround was:
|
||||
<p>In 19.22 and some prior versions of Emacs, the workaround was:
|
||||
</p>
|
||||
<div class="example">
|
||||
<pre class="example-preformatted">make
|
||||
make do-install prefix=/usr/local/stow/emacs
|
||||
</pre></div>
|
||||
|
||||
<pre class="example"> make
|
||||
make do-install prefix=/usr/local/stow/emacs
|
||||
</pre>
|
||||
<!-- -->
|
||||
<div class="footnote">
|
||||
</div>
|
||||
<div class="footnotes-segment">
|
||||
<hr>
|
||||
<h4>Footnotes</h4><p class="footnote"><small>[<a name="fn-1" href="#fnd-1">1</a>]</small> As I write this, the current version of Emacs is 19.31.</p>
|
||||
<h4 class="footnotes-heading">Footnotes</h4>
|
||||
|
||||
<hr></div>
|
||||
<h5 class="footnote-body-heading"><a id="FOOT8" href="#DOCF8">(8)</a></h5>
|
||||
<p>As I write this, the current version of Emacs is 19.31.</p>
|
||||
</div>
|
||||
|
||||
</body></html>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,77 +1,86 @@
|
|||
<html lang="en">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<title>Ignore Lists - Stow</title>
|
||||
<meta http-equiv="Content-Type" content="text/html">
|
||||
<meta name="description" content="Stow">
|
||||
<meta name="generator" content="makeinfo 4.13">
|
||||
<link title="Top" rel="start" href="index.html#Top">
|
||||
<link rel="prev" href="Invoking-Stow.html#Invoking-Stow" title="Invoking Stow">
|
||||
<link rel="next" href="Installing-Packages.html#Installing-Packages" title="Installing Packages">
|
||||
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
|
||||
<!--
|
||||
This manual describes GNU Stow version 2.2.2
|
||||
(9 November 2015), a program for managing the installation of software
|
||||
packages.
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!-- 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 <bobg+stow@zanshin.com>
|
||||
© 1993, 1994, 1995, 1996 Bob Glickstein <bobg+stow@zanshin.com>
|
||||
|
||||
(C) 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
© 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of
|
||||
this manual provided the copyright notice and this permission
|
||||
notice are preserved on all copies.
|
||||
© 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
|
||||
|
||||
© 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of this
|
||||
manual provided the copyright notice and this permission notice are
|
||||
preserved on all copies.
|
||||
|
||||
|
||||
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. -->
|
||||
<title>Ignore Lists (Stow)</title>
|
||||
|
||||
<meta name="description" content="Ignore Lists (Stow)">
|
||||
<meta name="keywords" content="Ignore Lists (Stow)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
<link href="index.html" rel="start" title="Top">
|
||||
<link href="Index.html" rel="index" title="Index">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="index.html" rel="up" title="Top">
|
||||
<link href="Installing-Packages.html" rel="next" title="Installing Packages">
|
||||
<link href="Invoking-Stow.html" rel="prev" title="Invoking Stow">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
|
||||
span:hover a.copiable-link {visibility: visible}
|
||||
-->
|
||||
</style>
|
||||
|
||||
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.
|
||||
-->
|
||||
<meta http-equiv="Content-Style-Type" content="text/css">
|
||||
<style type="text/css"><!--
|
||||
pre.display { font-family:inherit }
|
||||
pre.format { font-family:inherit }
|
||||
pre.smalldisplay { font-family:inherit; font-size:smaller }
|
||||
pre.smallformat { font-family:inherit; font-size:smaller }
|
||||
pre.smallexample { font-size:smaller }
|
||||
pre.smalllisp { font-size:smaller }
|
||||
span.sc { font-variant:small-caps }
|
||||
span.roman { font-family:serif; font-weight:normal; }
|
||||
span.sansserif { font-family:sans-serif; font-weight:normal; }
|
||||
--></style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="node">
|
||||
<a name="Ignore-Lists"></a>
|
||||
|
||||
<body lang="en">
|
||||
<div class="chapter-level-extent" id="Ignore-Lists">
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a rel="next" accesskey="n" href="Installing-Packages.html#Installing-Packages">Installing Packages</a>,
|
||||
Previous: <a rel="previous" accesskey="p" href="Invoking-Stow.html#Invoking-Stow">Invoking Stow</a>,
|
||||
Up: <a rel="up" accesskey="u" href="index.html#Top">Top</a>
|
||||
Next: <a href="Installing-Packages.html" accesskey="n" rel="next">Installing Packages</a>, Previous: <a href="Invoking-Stow.html" accesskey="p" rel="prev">Invoking Stow</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<h2 class="chapter" id="Ignore-Lists-1"><span>4 Ignore Lists<a class="copiable-link" href="#Ignore-Lists-1"> ¶</a></span></h2>
|
||||
|
||||
<a class="index-entry-id" id="index-ignore-lists"></a>
|
||||
<a class="index-entry-id" id="index-ignoring-files-and-directories"></a>
|
||||
|
||||
|
||||
<ul class="mini-toc">
|
||||
<li><a href="Motivation-For-Ignore-Lists.html" accesskey="1">Motivation For Ignore Lists</a></li>
|
||||
<li><a href="Types-And-Syntax-Of-Ignore-Lists.html" accesskey="2">Types And Syntax Of Ignore Lists</a></li>
|
||||
<li><a href="Justification-For-Yet-Another-Set-Of-Ignore-Files.html" accesskey="3">Justification For Yet Another Set Of Ignore Files</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<h2 class="chapter">4 Ignore Lists</h2>
|
||||
|
||||
<p><a name="index-ignore-lists-14"></a><a name="index-ignoring-files-and-directories-15"></a>
|
||||
|
||||
<ul class="menu">
|
||||
<li><a accesskey="1" href="Motivation-For-Ignore-Lists.html#Motivation-For-Ignore-Lists">Motivation For Ignore Lists</a>
|
||||
<li><a accesskey="2" href="Types-And-Syntax-Of-Ignore-Lists.html#Types-And-Syntax-Of-Ignore-Lists">Types And Syntax Of Ignore Lists</a>
|
||||
<li><a accesskey="3" href="Justification-For-Yet-Another-Set-Of-Ignore-Files.html#Justification-For-Yet-Another-Set-Of-Ignore-Files">Justification For Yet Another Set Of Ignore Files</a>
|
||||
</ul>
|
||||
|
||||
<!-- =========================================================================== -->
|
||||
</body></html>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,156 +1,187 @@
|
|||
<html lang="en">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<title>Installing Packages - Stow</title>
|
||||
<meta http-equiv="Content-Type" content="text/html">
|
||||
<meta name="description" content="Stow">
|
||||
<meta name="generator" content="makeinfo 4.13">
|
||||
<link title="Top" rel="start" href="index.html#Top">
|
||||
<link rel="prev" href="Ignore-Lists.html#Ignore-Lists" title="Ignore Lists">
|
||||
<link rel="next" href="Deleting-Packages.html#Deleting-Packages" title="Deleting Packages">
|
||||
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
|
||||
<!--
|
||||
This manual describes GNU Stow version 2.2.2
|
||||
(9 November 2015), a program for managing the installation of software
|
||||
packages.
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!-- 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 <bobg+stow@zanshin.com>
|
||||
© 1993, 1994, 1995, 1996 Bob Glickstein <bobg+stow@zanshin.com>
|
||||
|
||||
(C) 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
© 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of
|
||||
this manual provided the copyright notice and this permission
|
||||
notice are preserved on all copies.
|
||||
© 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
|
||||
|
||||
© 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of this
|
||||
manual provided the copyright notice and this permission notice are
|
||||
preserved on all copies.
|
||||
|
||||
|
||||
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. -->
|
||||
<title>Installing Packages (Stow)</title>
|
||||
|
||||
<meta name="description" content="Installing Packages (Stow)">
|
||||
<meta name="keywords" content="Installing Packages (Stow)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
<link href="index.html" rel="start" title="Top">
|
||||
<link href="Index.html" rel="index" title="Index">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="index.html" rel="up" title="Top">
|
||||
<link href="Deleting-Packages.html" rel="next" title="Deleting Packages">
|
||||
<link href="Ignore-Lists.html" rel="prev" title="Ignore Lists">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
|
||||
span:hover a.copiable-link {visibility: visible}
|
||||
-->
|
||||
</style>
|
||||
|
||||
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.
|
||||
-->
|
||||
<meta http-equiv="Content-Style-Type" content="text/css">
|
||||
<style type="text/css"><!--
|
||||
pre.display { font-family:inherit }
|
||||
pre.format { font-family:inherit }
|
||||
pre.smalldisplay { font-family:inherit; font-size:smaller }
|
||||
pre.smallformat { font-family:inherit; font-size:smaller }
|
||||
pre.smallexample { font-size:smaller }
|
||||
pre.smalllisp { font-size:smaller }
|
||||
span.sc { font-variant:small-caps }
|
||||
span.roman { font-family:serif; font-weight:normal; }
|
||||
span.sansserif { font-family:sans-serif; font-weight:normal; }
|
||||
--></style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="node">
|
||||
<a name="Installing-Packages"></a>
|
||||
|
||||
<body lang="en">
|
||||
<div class="chapter-level-extent" id="Installing-Packages">
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a rel="next" accesskey="n" href="Deleting-Packages.html#Deleting-Packages">Deleting Packages</a>,
|
||||
Previous: <a rel="previous" accesskey="p" href="Ignore-Lists.html#Ignore-Lists">Ignore Lists</a>,
|
||||
Up: <a rel="up" accesskey="u" href="index.html#Top">Top</a>
|
||||
<hr>
|
||||
Next: <a href="Deleting-Packages.html" accesskey="n" rel="next">Deleting Packages</a>, Previous: <a href="Ignore-Lists.html" accesskey="p" rel="prev">Ignore Lists</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<h2 class="chapter" id="Installing-Packages-1"><span>5 Installing Packages<a class="copiable-link" href="#Installing-Packages-1"> ¶</a></span></h2>
|
||||
|
||||
<h2 class="chapter">5 Installing Packages</h2>
|
||||
|
||||
<p><a name="index-installation-17"></a>The default action of Stow is to install a package. This means creating
|
||||
<a class="index-entry-id" id="index-installation"></a>
|
||||
<p>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.
|
||||
|
||||
<p><a name="tree-folding"></a>
|
||||
|
||||
<h3 class="section">5.1 Tree folding</h3>
|
||||
|
||||
<p><a name="index-tree-folding-18"></a><a name="index-directory-folding-19"></a><a name="index-folding-trees-20"></a>For example, suppose that no packages have yet been installed in
|
||||
<samp><span class="file">/usr/local</span></samp>; it's completely empty (except for the <samp><span class="file">stow</span></samp>
|
||||
subdirectory, of course). Now suppose the Perl package is installed.
|
||||
</p>
|
||||
<a class="anchor" id="tree-folding"></a><ul class="mini-toc">
|
||||
<li><a href="#Tree-folding" accesskey="1">Tree folding</a></li>
|
||||
<li><a href="#Tree-unfolding-1" accesskey="2">Tree unfolding</a></li>
|
||||
<li><a href="#Ownership" accesskey="3">Ownership</a></li>
|
||||
<li><a href="#Conflicts-during-installation" accesskey="4">Conflicts during installation</a></li>
|
||||
</ul>
|
||||
<div class="section-level-extent" id="Tree-folding">
|
||||
<h3 class="section"><span>5.1 Tree folding<a class="copiable-link" href="#Tree-folding"> ¶</a></span></h3>
|
||||
<a class="index-entry-id" id="index-tree-folding"></a>
|
||||
<a class="index-entry-id" id="index-directory-folding"></a>
|
||||
<a class="index-entry-id" id="index-folding-trees"></a>
|
||||
<p>For example, suppose that no packages have yet been installed in
|
||||
<samp class="file">/usr/local</samp>; it’s completely empty (except for the <samp class="file">stow</samp>
|
||||
subdirectory, of course). Now suppose the Perl package is installed.
|
||||
Recall that it includes the following directories in its installation
|
||||
image: <samp><span class="file">bin</span></samp>; <samp><span class="file">info</span></samp>; <samp><span class="file">lib/perl</span></samp>; <samp><span class="file">man/man1</span></samp>.
|
||||
Rather than creating the directory <samp><span class="file">/usr/local/bin</span></samp> and populating
|
||||
it with symlinks to <samp><span class="file">../stow/perl/bin/perl</span></samp> and
|
||||
<samp><span class="file">../stow/perl/bin/a2p</span></samp> (and so on), Stow will create a
|
||||
single symlink, <samp><span class="file">/usr/local/bin</span></samp>, which points to
|
||||
<samp><span class="file">stow/perl/bin</span></samp>. In this way, it still works to refer to
|
||||
<samp><span class="file">/usr/local/bin/perl</span></samp> and <samp><span class="file">/usr/local/bin/a2p</span></samp>, and fewer
|
||||
symlinks have been created. This is called <dfn>tree folding</dfn>, since an
|
||||
image: <samp class="file">bin</samp>; <samp class="file">info</samp>; <samp class="file">lib/perl</samp>; <samp class="file">man/man1</samp>.
|
||||
Rather than creating the directory <samp class="file">/usr/local/bin</samp> and populating
|
||||
it with symlinks to <samp class="file">../stow/perl/bin/perl</samp> and
|
||||
<samp class="file">../stow/perl/bin/a2p</samp> (and so on), Stow will create a
|
||||
single symlink, <samp class="file">/usr/local/bin</samp>, which points to
|
||||
<samp class="file">stow/perl/bin</samp>. In this way, it still works to refer to
|
||||
<samp class="file">/usr/local/bin/perl</samp> and <samp class="file">/usr/local/bin/a2p</samp>, and fewer
|
||||
symlinks have been created. This is called <em class="dfn">tree folding</em>, since an
|
||||
entire subtree is “folded” into a single symlink.
|
||||
|
||||
<p>To complete this example, Stow will also create the symlink
|
||||
<samp><span class="file">/usr/local/info</span></samp> pointing to <samp><span class="file">stow/perl/info</span></samp>; the symlink
|
||||
<samp><span class="file">/usr/local/lib</span></samp> pointing to <samp><span class="file">stow/perl/lib</span></samp>; and the symlink
|
||||
<samp><span class="file">/usr/local/man</span></samp> pointing to <samp><span class="file">stow/perl/man</span></samp>.
|
||||
|
||||
<p>Now suppose that instead of installing the Perl package into an empty
|
||||
</p>
|
||||
<p>To complete this example, Stow will also create the symlink
|
||||
<samp class="file">/usr/local/info</samp> pointing to <samp class="file">stow/perl/info</samp>; the symlink
|
||||
<samp class="file">/usr/local/lib</samp> pointing to <samp class="file">stow/perl/lib</samp>; and the symlink
|
||||
<samp class="file">/usr/local/man</samp> pointing to <samp class="file">stow/perl/man</samp>.
|
||||
</p>
|
||||
<p>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, <samp><span class="file">/usr/local/bin</span></samp>
|
||||
already exists and is a directory, as are <samp><span class="file">/usr/local/lib</span></samp> and
|
||||
<samp><span class="file">/usr/local/man/man1</span></samp>. In this case, Stow will descend into
|
||||
<samp><span class="file">/usr/local/bin</span></samp> and create symlinks to
|
||||
<samp><span class="file">../stow/perl/bin/perl</span></samp> and <samp><span class="file">../stow/perl/bin/a2p</span></samp> (etc.),
|
||||
and it will descend into <samp><span class="file">/usr/local/lib</span></samp> and create the
|
||||
tree-folding symlink <samp><span class="file">perl</span></samp> pointing to
|
||||
<samp><span class="file">../stow/perl/lib/perl</span></samp>, and so on. As a rule, Stow only
|
||||
system-administration philosophy. In particular, <samp class="file">/usr/local/bin</samp>
|
||||
already exists and is a directory, as are <samp class="file">/usr/local/lib</samp> and
|
||||
<samp class="file">/usr/local/man/man1</samp>. In this case, Stow will descend into
|
||||
<samp class="file">/usr/local/bin</samp> and create symlinks to
|
||||
<samp class="file">../stow/perl/bin/perl</samp> and <samp class="file">../stow/perl/bin/a2p</samp> (etc.),
|
||||
and it will descend into <samp class="file">/usr/local/lib</samp> and create the
|
||||
tree-folding symlink <samp class="file">perl</samp> pointing to
|
||||
<samp class="file">../stow/perl/lib/perl</samp>, 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 <samp><span class="option">--no-folding</span></samp> option; see <a href="Invoking-Stow.html#Invoking-Stow">Invoking Stow</a>.
|
||||
|
||||
<p><a name="Tree-unfolding"></a>
|
||||
|
||||
<h3 class="section">5.2 Tree unfolding</h3>
|
||||
|
||||
<p><a name="index-splitting-open-folded-trees-21"></a><a name="index-unfolding-trees-22"></a><a name="index-tree-unfolding-23"></a><a name="index-tree-unsplitting-24"></a>The time often comes when a tree-folding symlink has to be undone
|
||||
the <samp class="option">--no-folding</samp> option; see <a class="pxref" href="Invoking-Stow.html">Invoking Stow</a>.
|
||||
</p>
|
||||
<a class="anchor" id="Tree-unfolding"></a></div>
|
||||
<div class="section-level-extent" id="Tree-unfolding-1">
|
||||
<h3 class="section"><span>5.2 Tree unfolding<a class="copiable-link" href="#Tree-unfolding-1"> ¶</a></span></h3>
|
||||
<a class="index-entry-id" id="index-splitting-open-folded-trees"></a>
|
||||
<a class="index-entry-id" id="index-unfolding-trees"></a>
|
||||
<a class="index-entry-id" id="index-tree-unfolding"></a>
|
||||
<a class="index-entry-id" id="index-tree-unsplitting"></a>
|
||||
<p>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 <dfn>splitting open</dfn> or
|
||||
<dfn>unfolding</dfn> a folded tree. It involves removing the original symlink from
|
||||
its installation image. This operation is called <em class="dfn">splitting open</em> or
|
||||
<em class="dfn">unfolding</em> 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 <em>and</em> to
|
||||
new directory with symlinks to the newly-installed package <em class="emph">and</em> to
|
||||
the old package that used the old symlink. For example, suppose that
|
||||
after installing Perl into an empty <samp><span class="file">/usr/local</span></samp>, we wish to
|
||||
install Emacs. Emacs's installation image includes a <samp><span class="file">bin</span></samp>
|
||||
directory containing the <samp><span class="file">emacs</span></samp> and <samp><span class="file">etags</span></samp> executables,
|
||||
after installing Perl into an empty <samp class="file">/usr/local</samp>, we wish to
|
||||
install Emacs. Emacs’s installation image includes a <samp class="file">bin</samp>
|
||||
directory containing the <samp class="file">emacs</samp> and <samp class="file">etags</samp> executables,
|
||||
among others. Stow must make these files appear to be installed
|
||||
in <samp><span class="file">/usr/local/bin</span></samp>, but presently <samp><span class="file">/usr/local/bin</span></samp> is a
|
||||
symlink to <samp><span class="file">stow/perl/bin</span></samp>. Stow therefore takes the
|
||||
following steps: the symlink <samp><span class="file">/usr/local/bin</span></samp> is deleted; the
|
||||
directory <samp><span class="file">/usr/local/bin</span></samp> is created; links are made from
|
||||
<samp><span class="file">/usr/local/bin</span></samp> to <samp><span class="file">../stow/emacs/bin/emacs</span></samp> and
|
||||
<samp><span class="file">../stow/emacs/bin/etags</span></samp>; and links are made from
|
||||
<samp><span class="file">/usr/local/bin</span></samp> to <samp><span class="file">../stow/perl/bin/perl</span></samp> and
|
||||
<samp><span class="file">../stow/perl/bin/a2p</span></samp>.
|
||||
|
||||
<h3 class="section">5.3 Ownership</h3>
|
||||
|
||||
<p><a name="index-ownership-25"></a>When splitting open a folded tree, Stow makes sure that the
|
||||
in <samp class="file">/usr/local/bin</samp>, but presently <samp class="file">/usr/local/bin</samp> is a
|
||||
symlink to <samp class="file">stow/perl/bin</samp>. Stow therefore takes the
|
||||
following steps: the symlink <samp class="file">/usr/local/bin</samp> is deleted; the
|
||||
directory <samp class="file">/usr/local/bin</samp> is created; links are made from
|
||||
<samp class="file">/usr/local/bin</samp> to <samp class="file">../stow/emacs/bin/emacs</samp> and
|
||||
<samp class="file">../stow/emacs/bin/etags</samp>; and links are made from
|
||||
<samp class="file">/usr/local/bin</samp> to <samp class="file">../stow/perl/bin/perl</samp> and
|
||||
<samp class="file">../stow/perl/bin/a2p</samp>.
|
||||
</p>
|
||||
</div>
|
||||
<div class="section-level-extent" id="Ownership">
|
||||
<h3 class="section"><span>5.3 Ownership<a class="copiable-link" href="#Ownership"> ¶</a></span></h3>
|
||||
<a class="index-entry-id" id="index-ownership"></a>
|
||||
<p>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. <em>Stow will never delete anything
|
||||
that it doesn't own</em>. Stow “owns” everything living in the
|
||||
current stow directory. <em class="emph">Stow will never delete anything
|
||||
that it doesn’t own</em>. 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
|
||||
<em>in</em> the stow directory or in any of the packages.
|
||||
|
||||
<h3 class="section">5.4 Conflicts during installation</h3>
|
||||
|
||||
<p><a name="index-conflicts-26"></a><a name="index-installation-conflicts-27"></a>If Stow needs to create a directory or a symlink in the target
|
||||
“owns”. Note that by this definition, Stow doesn’t “own” anything
|
||||
<em class="emph">in</em> the stow directory or in any of the packages.
|
||||
</p>
|
||||
</div>
|
||||
<div class="section-level-extent" id="Conflicts-during-installation">
|
||||
<h3 class="section"><span>5.4 Conflicts during installation<a class="copiable-link" href="#Conflicts-during-installation"> ¶</a></span></h3>
|
||||
<a class="index-entry-id" id="index-conflicts"></a>
|
||||
<a class="index-entry-id" id="index-installation-conflicts"></a>
|
||||
<p>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 <dfn>conflict</dfn> has arisen. See <a href="Conflicts.html#Conflicts">Conflicts</a>.
|
||||
by Stow, then a <em class="dfn">conflict</em> has arisen. See <a class="xref" href="Conflicts.html">Conflicts</a>.
|
||||
</p>
|
||||
|
||||
<!-- =========================================================================== -->
|
||||
</body></html>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a href="Deleting-Packages.html">Deleting Packages</a>, Previous: <a href="Ignore-Lists.html">Ignore Lists</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,119 +1,170 @@
|
|||
<html lang="en">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<title>Introduction - Stow</title>
|
||||
<meta http-equiv="Content-Type" content="text/html">
|
||||
<meta name="description" content="Stow">
|
||||
<meta name="generator" content="makeinfo 4.13">
|
||||
<link title="Top" rel="start" href="index.html#Top">
|
||||
<link rel="prev" href="index.html#Top" title="Top">
|
||||
<link rel="next" href="Terminology.html#Terminology" title="Terminology">
|
||||
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
|
||||
<!--
|
||||
This manual describes GNU Stow version 2.2.2
|
||||
(9 November 2015), a program for managing the installation of software
|
||||
packages.
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!-- 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 <bobg+stow@zanshin.com>
|
||||
© 1993, 1994, 1995, 1996 Bob Glickstein <bobg+stow@zanshin.com>
|
||||
|
||||
(C) 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
© 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of
|
||||
this manual provided the copyright notice and this permission
|
||||
notice are preserved on all copies.
|
||||
© 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
|
||||
|
||||
© 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of this
|
||||
manual provided the copyright notice and this permission notice are
|
||||
preserved on all copies.
|
||||
|
||||
|
||||
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. -->
|
||||
<title>Introduction (Stow)</title>
|
||||
|
||||
<meta name="description" content="Introduction (Stow)">
|
||||
<meta name="keywords" content="Introduction (Stow)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
<link href="index.html" rel="start" title="Top">
|
||||
<link href="Index.html" rel="index" title="Index">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="index.html" rel="up" title="Top">
|
||||
<link href="Terminology.html" rel="next" title="Terminology">
|
||||
<link href="index.html" rel="prev" title="Top">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
|
||||
div.example {margin-left: 3.2em}
|
||||
span:hover a.copiable-link {visibility: visible}
|
||||
-->
|
||||
</style>
|
||||
|
||||
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.
|
||||
-->
|
||||
<meta http-equiv="Content-Style-Type" content="text/css">
|
||||
<style type="text/css"><!--
|
||||
pre.display { font-family:inherit }
|
||||
pre.format { font-family:inherit }
|
||||
pre.smalldisplay { font-family:inherit; font-size:smaller }
|
||||
pre.smallformat { font-family:inherit; font-size:smaller }
|
||||
pre.smallexample { font-size:smaller }
|
||||
pre.smalllisp { font-size:smaller }
|
||||
span.sc { font-variant:small-caps }
|
||||
span.roman { font-family:serif; font-weight:normal; }
|
||||
span.sansserif { font-family:sans-serif; font-weight:normal; }
|
||||
--></style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="node">
|
||||
<a name="Introduction"></a>
|
||||
|
||||
<body lang="en">
|
||||
<div class="chapter-level-extent" id="Introduction">
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a rel="next" accesskey="n" href="Terminology.html#Terminology">Terminology</a>,
|
||||
Previous: <a rel="previous" accesskey="p" href="index.html#Top">Top</a>,
|
||||
Up: <a rel="up" accesskey="u" href="index.html#Top">Top</a>
|
||||
<hr>
|
||||
Next: <a href="Terminology.html" accesskey="n" rel="next">Terminology</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<h2 class="chapter" id="Introduction-1"><span>1 Introduction<a class="copiable-link" href="#Introduction-1"> ¶</a></span></h2>
|
||||
|
||||
<h2 class="chapter">1 Introduction</h2>
|
||||
<p>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.
|
||||
</p>
|
||||
<p>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
|
||||
<samp class="file">/usr/local</samp>. When one does so, one winds up with the following
|
||||
files<a class="footnote" id="DOCF1" href="#FOOT1"><sup>1</sup></a> in
|
||||
<samp class="file">/usr/local/man/man1</samp>:
|
||||
</p>
|
||||
<div class="example">
|
||||
<pre class="example-preformatted">a2p.1
|
||||
ctags.1
|
||||
emacs.1
|
||||
etags.1
|
||||
h2ph.1
|
||||
perl.1
|
||||
s2p.1
|
||||
</pre></div>
|
||||
|
||||
<p>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 <samp><span class="file">/usr/local</span></samp>. When one does so, one
|
||||
winds up with the following files<a rel="footnote" href="#fn-1" name="fnd-1"><sup>1</sup></a> in <samp><span class="file">/usr/local/man/man1</span></samp>:
|
||||
|
||||
<pre class="example"> a2p.1
|
||||
ctags.1
|
||||
emacs.1
|
||||
etags.1
|
||||
h2ph.1
|
||||
perl.1
|
||||
s2p.1
|
||||
</pre>
|
||||
<p class="noindent">Now suppose it's time to uninstall Perl. Which man pages
|
||||
get removed? Obviously <samp><span class="file">perl.1</span></samp> is one of them, but it should not
|
||||
be the administrator's responsibility to memorize the ownership of
|
||||
<p>Now suppose it’s time to uninstall Perl. Which man pages
|
||||
get removed? Obviously <samp class="file">perl.1</samp> is one of them, but it should not
|
||||
be the administrator’s responsibility to memorize the ownership of
|
||||
individual files by separate packages.
|
||||
|
||||
<p>The approach used by Stow is to install each package into its own
|
||||
</p>
|
||||
<p>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 <samp><span class="file">bin</span></samp> directory
|
||||
containing executables, a <samp><span class="file">man/man1</span></samp> directory containing section 1
|
||||
tree; i.e. (in the typical case) there should be a <samp class="file">bin</samp> directory
|
||||
containing executables, a <samp class="file">man/man1</samp> directory containing section 1
|
||||
man pages, and so on.
|
||||
</p>
|
||||
<p>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
|
||||
<a class="uref" href="https://en.wikipedia.org/wiki/Rpm_(software)"><code class="command">rpm</code></a>,
|
||||
<a class="uref" href="https://en.wikipedia.org/wiki/Dpkg"><code class="command">dpkg</code></a>, and
|
||||
<a class="uref" href="https://en.wikipedia.org/wiki/Nix_package_manager">Nix</a> /
|
||||
<a class="uref" href="https://en.wikipedia.org/wiki/GNU_Guix">GNU Guix</a>, or
|
||||
language-native package managers such as
|
||||
<a class="uref" href="https://en.wikipedia.org/wiki/RubyGems">Ruby’s <code class="command">gem</code></a>,
|
||||
<a class="uref" href="https://en.wikipedia.org/wiki/Pip_(package_manager)">Python’s
|
||||
<code class="command">pip</code></a>, <a class="uref" href="https://en.wikipedia.org/wiki/Npm_(software)">Javascript’s <code class="command">npm</code></a>, and so on.
|
||||
</p>
|
||||
<p>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<a class="footnote" id="DOCF2" href="#FOOT2"><sup>2</sup></a>,
|
||||
especially when coupled with version control
|
||||
systems<a class="footnote" id="DOCF3" href="#FOOT3"><sup>3</sup></a>.
|
||||
</p>
|
||||
<p>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., <samp class="file">/usr/local/stow/emacs</samp>), so it’s always
|
||||
possible to rebuild the target tree (e.g., <samp class="file">/usr/local</samp>).
|
||||
</p>
|
||||
<p>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.
|
||||
</p>
|
||||
<p>For information about the latest version of Stow, you can refer to
|
||||
<a class="uref" href="http://www.gnu.org/software/stow/">http://www.gnu.org/software/stow/</a>.
|
||||
</p>
|
||||
|
||||
<p>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., <samp><span class="file">/usr/local/stow/emacs</span></samp>), so it's always possible
|
||||
to rebuild the target tree (e.g., <samp><span class="file">/usr/local</span></samp>).
|
||||
|
||||
<p>For information about the latest version of Stow, you can refer to
|
||||
<a href="http://www.gnu.org/software/stow/">http://www.gnu.org/software/stow/</a>.
|
||||
|
||||
<!-- =========================================================================== -->
|
||||
<div class="footnote">
|
||||
</div>
|
||||
<div class="footnotes-segment">
|
||||
<hr>
|
||||
<h4>Footnotes</h4><p class="footnote"><small>[<a name="fn-1" href="#fnd-1">1</a>]</small> As of Perl 4.036 and Emacs
|
||||
19.22.</p>
|
||||
<h4 class="footnotes-heading">Footnotes</h4>
|
||||
|
||||
<hr></div>
|
||||
<h5 class="footnote-body-heading"><a id="FOOT1" href="#DOCF1">(1)</a></h5>
|
||||
<p>As of Perl 4.036 and Emacs 19.22. These are now
|
||||
ancient releases but the example still holds valid.</p>
|
||||
<h5 class="footnote-body-heading"><a id="FOOT2" href="#DOCF2">(2)</a></h5>
|
||||
<p><a class="uref" href="http://brandon.invergo.net/news/2012-05-26-using-gnu-stow-to-manage-your-dotfiles.html">http://brandon.invergo.net/news/2012-05-26-using-gnu-stow-to-manage-your-dotfiles.html</a></p>
|
||||
<h5 class="footnote-body-heading"><a id="FOOT3" href="#DOCF3">(3)</a></h5>
|
||||
<p><a class="uref" href="http://lists.gnu.org/archive/html/info-stow/2011-12/msg00000.html">http://lists.gnu.org/archive/html/info-stow/2011-12/msg00000.html</a></p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a href="Terminology.html">Terminology</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
|
||||
</body></html>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,206 +1,290 @@
|
|||
<html lang="en">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<title>Invoking Stow - Stow</title>
|
||||
<meta http-equiv="Content-Type" content="text/html">
|
||||
<meta name="description" content="Stow">
|
||||
<meta name="generator" content="makeinfo 4.13">
|
||||
<link title="Top" rel="start" href="index.html#Top">
|
||||
<link rel="prev" href="Terminology.html#Terminology" title="Terminology">
|
||||
<link rel="next" href="Ignore-Lists.html#Ignore-Lists" title="Ignore Lists">
|
||||
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
|
||||
<!--
|
||||
This manual describes GNU Stow version 2.2.2
|
||||
(9 November 2015), a program for managing the installation of software
|
||||
packages.
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!-- 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 <bobg+stow@zanshin.com>
|
||||
© 1993, 1994, 1995, 1996 Bob Glickstein <bobg+stow@zanshin.com>
|
||||
|
||||
(C) 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
© 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of
|
||||
this manual provided the copyright notice and this permission
|
||||
notice are preserved on all copies.
|
||||
© 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
|
||||
|
||||
© 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of this
|
||||
manual provided the copyright notice and this permission notice are
|
||||
preserved on all copies.
|
||||
|
||||
|
||||
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. -->
|
||||
<title>Invoking Stow (Stow)</title>
|
||||
|
||||
<meta name="description" content="Invoking Stow (Stow)">
|
||||
<meta name="keywords" content="Invoking Stow (Stow)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
<link href="index.html" rel="start" title="Top">
|
||||
<link href="Index.html" rel="index" title="Index">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="index.html" rel="up" title="Top">
|
||||
<link href="Ignore-Lists.html" rel="next" title="Ignore Lists">
|
||||
<link href="Terminology.html" rel="prev" title="Terminology">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
|
||||
div.example {margin-left: 3.2em}
|
||||
span:hover a.copiable-link {visibility: visible}
|
||||
-->
|
||||
</style>
|
||||
|
||||
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.
|
||||
-->
|
||||
<meta http-equiv="Content-Style-Type" content="text/css">
|
||||
<style type="text/css"><!--
|
||||
pre.display { font-family:inherit }
|
||||
pre.format { font-family:inherit }
|
||||
pre.smalldisplay { font-family:inherit; font-size:smaller }
|
||||
pre.smallformat { font-family:inherit; font-size:smaller }
|
||||
pre.smallexample { font-size:smaller }
|
||||
pre.smalllisp { font-size:smaller }
|
||||
span.sc { font-variant:small-caps }
|
||||
span.roman { font-family:serif; font-weight:normal; }
|
||||
span.sansserif { font-family:sans-serif; font-weight:normal; }
|
||||
--></style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="node">
|
||||
<a name="Invoking-Stow"></a>
|
||||
|
||||
<body lang="en">
|
||||
<div class="chapter-level-extent" id="Invoking-Stow">
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a rel="next" accesskey="n" href="Ignore-Lists.html#Ignore-Lists">Ignore Lists</a>,
|
||||
Previous: <a rel="previous" accesskey="p" href="Terminology.html#Terminology">Terminology</a>,
|
||||
Up: <a rel="up" accesskey="u" href="index.html#Top">Top</a>
|
||||
<hr>
|
||||
Next: <a href="Ignore-Lists.html" accesskey="n" rel="next">Ignore Lists</a>, Previous: <a href="Terminology.html" accesskey="p" rel="prev">Terminology</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<h2 class="chapter" id="Invoking-Stow-1"><span>3 Invoking Stow<a class="copiable-link" href="#Invoking-Stow-1"> ¶</a></span></h2>
|
||||
|
||||
<h2 class="chapter">3 Invoking Stow</h2>
|
||||
<p>The syntax of the <code class="command">stow</code> command is:
|
||||
</p>
|
||||
<div class="example">
|
||||
<pre class="example-preformatted">stow [<var class="var">options</var>] [<var class="var">action flag</var>] <var class="var">package ...</var>
|
||||
</pre></div>
|
||||
|
||||
<p>The syntax of the <samp><span class="command">stow</span></samp> command is:
|
||||
|
||||
<pre class="example"> stow [<var>options</var>] [<var>action flag</var>] <var>package <small class="dots">...</small></var>
|
||||
</pre>
|
||||
<p class="noindent">Each <var>package</var> is the name of a package (e.g., ‘<samp><span class="samp">perl</span></samp>’) in the stow
|
||||
directory that we wish to install into (or delete from) the target directory.
|
||||
<p>Each <var class="var">package</var> is the name of a package (e.g., ‘<samp class="samp">perl</samp>’) 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 <var>action flag</var>.
|
||||
|
||||
<p class="noindent">The following options are supported:
|
||||
|
||||
<dl>
|
||||
<dt>‘<samp><span class="samp">-d </span><var>dir</var></samp>’<dt>‘<samp><span class="samp">--dir=</span><var>dir</var></samp>’<dd>Set the stow directory to <var>dir</var>. Defaults to the value of the environment
|
||||
variable <samp><span class="env">STOW_DIR</span></samp> if set, or the current directory otherwise.
|
||||
|
||||
<br><dt>‘<samp><span class="samp">-t </span><var>dir</var></samp>’<dt>‘<samp><span class="samp">--target=</span><var>dir</var></samp>’<dd>Set the target directory to <var>dir</var> instead of the parent of the stow
|
||||
may be specified by preceding the package name(s) with an <var class="var">action flag</var>.
|
||||
</p>
|
||||
<p>The following options are supported:
|
||||
</p>
|
||||
<dl class="table">
|
||||
<dt>‘<samp class="samp">-d <var class="var">dir</var></samp>’</dt>
|
||||
<dt>‘<samp class="samp">--dir=<var class="var">dir</var></samp>’</dt>
|
||||
<dd><p>Set the stow directory to <var class="var">dir</var>. Defaults to the value of the environment
|
||||
variable <code class="env">STOW_DIR</code> if set, or the current directory otherwise.
|
||||
</p>
|
||||
</dd>
|
||||
<dt>‘<samp class="samp">-t <var class="var">dir</var></samp>’</dt>
|
||||
<dt>‘<samp class="samp">--target=<var class="var">dir</var></samp>’</dt>
|
||||
<dd><p>Set the target directory to <var class="var">dir</var> instead of the parent of the stow
|
||||
directory. Defaults to the parent of the stow directory, so it is typical to
|
||||
execute <samp><span class="command">stow</span></samp> from the directory <samp><span class="file">/usr/local/stow</span></samp>.
|
||||
execute <code class="command">stow</code> from the directory <samp class="file">/usr/local/stow</samp>.
|
||||
</p>
|
||||
</dd>
|
||||
<dt>‘<samp class="samp">--ignore=<var class="var">regexp</var></samp>’</dt>
|
||||
<dd><p>This (repeatable) option lets you suppress acting on files that match the
|
||||
given Perl regular expression. For example, using the options
|
||||
</p>
|
||||
<div class="example">
|
||||
<pre class="example-preformatted">--ignore='.*\.orig' --ignore='.*\.dist'
|
||||
</pre></div>
|
||||
|
||||
<br><dt>‘<samp><span class="samp">--ignore=</span><var>regexp</var></samp>’<dd>This (repeatable) option lets you suppress acting on files that match the
|
||||
given perl regular expression. For example, using the options
|
||||
|
||||
<pre class="example"> --ignore='*.orig' --ignore='*.dist'
|
||||
</pre>
|
||||
<p class="noindent">will cause stow to ignore files ending in <samp><span class="file">.orig</span></samp> or <samp><span class="file">.dist</span></samp>.
|
||||
|
||||
<p>Note that the regular expression is anchored to the end of the filename,
|
||||
<p>will cause stow to ignore files ending in <samp class="file">.orig</samp> or <samp class="file">.dist</samp>.
|
||||
</p>
|
||||
<p>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.
|
||||
|
||||
<p>Also note that by default Stow automatically ignores a “sensible”
|
||||
built-in list of files and directories such as <samp><span class="file">CVS</span></samp>, editor
|
||||
backup files, and so on. See <a href="Ignore-Lists.html#Ignore-Lists">Ignore Lists</a>, for more details.
|
||||
|
||||
<br><dt>‘<samp><span class="samp">--defer=</span><var>regexp</var></samp>’<dd>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 <samp><span class="option">--override</span></samp>.
|
||||
|
||||
<p>(N.B. the name <samp><span class="option">--defer</span></samp> was chosen in the sense that the package
|
||||
</p>
|
||||
<p>Also note that by default Stow automatically ignores a “sensible”
|
||||
built-in list of files and directories such as <samp class="file">CVS</samp>, editor
|
||||
backup files, and so on. See <a class="xref" href="Ignore-Lists.html">Ignore Lists</a>, for more details.
|
||||
</p>
|
||||
</dd>
|
||||
<dt>‘<samp class="samp">--defer=<var class="var">regexp</var></samp>’</dt>
|
||||
<dd><p>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 <samp class="option">--override</samp>.
|
||||
</p>
|
||||
<p>(N.B. the name <samp class="option">--defer</samp> 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 <a href="Deferred-Operation.html#Deferred-Operation">Deferred Operation</a>.)
|
||||
this nomenclature with the wording used in <a class="ref" href="Conflicts.html#Deferred-Operation">Deferred Operation</a>.)
|
||||
</p>
|
||||
<p>For example, the following options
|
||||
</p>
|
||||
<div class="example">
|
||||
<pre class="example-preformatted">--defer=man --defer=info
|
||||
</pre></div>
|
||||
|
||||
<p>For example, the following options
|
||||
|
||||
<pre class="example"> --defer=man --defer=info
|
||||
</pre>
|
||||
<p class="noindent">will cause stow to skip over pre-existing man and info pages.
|
||||
|
||||
<p>Equivalently, you could use ‘<samp><span class="samp">--defer='man|info'</span></samp>’ since the
|
||||
argument is just a Perl regex.
|
||||
|
||||
<p>Note that the regular expression is anchored to the beginning of the path
|
||||
<p>will cause stow to skip over pre-existing man and info pages.
|
||||
</p>
|
||||
<p>Equivalently, you could use ‘<samp class="samp">--defer='man|info'</samp>’ since the
|
||||
argument is just a Perl regular expression.
|
||||
</p>
|
||||
<p>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.
|
||||
|
||||
<br><dt>‘<samp><span class="samp">--override=</span><var>regexp</var></samp>’<dd>This (repeatable) option forces any file matching the regular expression to be
|
||||
</p>
|
||||
</dd>
|
||||
<dt>‘<samp class="samp">--override=<var class="var">regexp</var></samp>’</dt>
|
||||
<dd><p>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
|
||||
</p>
|
||||
<div class="example">
|
||||
<pre class="example-preformatted">--override=man --override=info
|
||||
</pre></div>
|
||||
|
||||
<pre class="example"> --override=man --override=info
|
||||
</pre>
|
||||
<p class="noindent">will permit stow to overwrite links that point to pre-existing man and info
|
||||
<p>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.
|
||||
|
||||
<p>The regular expression is anchored to the beginning of the path relative to
|
||||
</p>
|
||||
<p>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.
|
||||
|
||||
<br><dt>‘<samp><span class="samp">--no-folding</span></samp>’<dd>
|
||||
This disables any further <a href="tree-folding.html#tree-folding">tree folding</a> or <a href="tree-refolding.html#tree-refolding">tree refolding</a>.
|
||||
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.
|
||||
|
||||
<p><a name="index-adopting-existing-files-10"></a><br><dt>‘<samp><span class="samp">--adopt</span></samp>’<dd><strong>Warning!</strong> This behaviour is specifically intended to alter the
|
||||
</p>
|
||||
</dd>
|
||||
<dt><a id="index-dotfiles"></a><span>‘<samp class="samp">--dotfiles</samp>’<a class="copiable-link" href="#index-dotfiles"> ¶</a></span></dt>
|
||||
<dd>
|
||||
<p>Enable special handling for <em class="emph">dotfiles</em> (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 ‘<samp class="samp">dot-</samp>’, and replace the ‘<samp class="samp">dot-</samp>’ prefix
|
||||
in the name by a period ‘<samp class="samp">.</samp>’. This is useful when Stow is used to
|
||||
manage collections of dotfiles, to avoid having a package directory
|
||||
full of hidden files.
|
||||
</p>
|
||||
<p>For example, suppose we have a package containing two files,
|
||||
<samp class="file">stow/dot-bashrc</samp> and <samp class="file">stow/dot-emacs.d/init.el</samp>. With this
|
||||
option, Stow will create symlinks from <samp class="file">.bashrc</samp> to
|
||||
<samp class="file">stow/dot-bashrc</samp> and from <samp class="file">.emacs.d/init.el</samp> to
|
||||
<samp class="file">stow/dot-emacs.d/init.el</samp>. Any other files, whose name does not
|
||||
begin with ‘<samp class="samp">dot-</samp>’, will be processed as usual.
|
||||
</p>
|
||||
</dd>
|
||||
<dt>‘<samp class="samp">--no-folding</samp>’</dt>
|
||||
<dd>
|
||||
<p>This disables any further tree folding (see <a class="pxref" href="Installing-Packages.html#tree-folding">tree folding</a>) or
|
||||
refolding (see <a class="pxref" href="Deleting-Packages.html#tree-refolding">tree refolding</a>). 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.
|
||||
</p>
|
||||
</dd>
|
||||
<dt><a id="index-adopting-existing-files"></a><span>‘<samp class="samp">--adopt</samp>’<a class="copiable-link" href="#index-adopting-existing-files"> ¶</a></span></dt>
|
||||
<dd><p><strong class="strong">Warning!</strong> 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.
|
||||
|
||||
<p>When stowing, if a target is encountered which already exists but is a
|
||||
</p>
|
||||
<p>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.
|
||||
|
||||
<p>This is particularly useful when the stow package is under the control
|
||||
</p>
|
||||
<p>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 ‘<samp><span class="samp">git diff ...</span></samp>’
|
||||
inside the stow package, and finally either kept (e.g. via ‘<samp><span class="samp">git
|
||||
commit ...</span></samp>’) or discarded (‘<samp><span class="samp">git checkout HEAD ...</span></samp>’).
|
||||
|
||||
<p><a name="index-dry-run-11"></a><a name="index-simulated-run-12"></a><br><dt>‘<samp><span class="samp">-n</span></samp>’<dt>‘<samp><span class="samp">--no</span></samp>’<dt>‘<samp><span class="samp">--simulate</span></samp>’<dd>Do not perform any operations that modify the file system; in combination with
|
||||
<samp><span class="option">-v</span></samp> can be used to merely show what would happen.
|
||||
|
||||
<p><a name="index-verbosity-levels-13"></a><br><dt>‘<samp><span class="samp">-v</span></samp>’<dt>‘<samp><span class="samp">--verbose[=</span><var>n</var><span class="samp">]</span></samp>’<dd>Send verbose output to standard error describing what Stow is
|
||||
doing. Verbosity levels are 0, 1, 2, and 3; 0 is the default. Using
|
||||
<samp><span class="option">-v</span></samp> or <samp><span class="option">--verbose</span></samp> increases the verbosity by one; using
|
||||
‘<samp><span class="samp">--verbose=</span><var>n</var></samp>’ sets it to <var>n</var>.
|
||||
|
||||
<br><dt>‘<samp><span class="samp">-p</span></samp>’<dt>‘<samp><span class="samp">--compat</span></samp>’<dd>Scan the whole target tree when unstowing. By default, only
|
||||
directories specified in the <dfn>installation image</dfn> are scanned
|
||||
in the stow package’s installation image, to be adopted into the
|
||||
package, then compared by running something like ‘<samp class="samp">git diff ...</samp>’
|
||||
inside the stow package, and finally either kept (e.g. via ‘<samp class="samp">git
|
||||
commit ...</samp>’) or discarded (‘<samp class="samp">git checkout HEAD ...</samp>’).
|
||||
</p>
|
||||
</dd>
|
||||
<dt><a class="index-entry-id" id="index-simulated-run"></a>
|
||||
<a id="index-dry-run"></a><span>‘<samp class="samp">-n</samp>’<a class="copiable-link" href="#index-dry-run"> ¶</a></span></dt>
|
||||
<dt>‘<samp class="samp">--no</samp>’</dt>
|
||||
<dt>‘<samp class="samp">--simulate</samp>’</dt>
|
||||
<dd><p>Do not perform any operations that modify the file system; in combination with
|
||||
<samp class="option">-v</samp> can be used to merely show what would happen.
|
||||
</p>
|
||||
</dd>
|
||||
<dt><a id="index-verbosity-levels"></a><span>‘<samp class="samp">-v</samp>’<a class="copiable-link" href="#index-verbosity-levels"> ¶</a></span></dt>
|
||||
<dt>‘<samp class="samp">--verbose[=<var class="var">n</var>]</samp>’</dt>
|
||||
<dd><p>Send verbose output to standard error describing what Stow is
|
||||
doing. Verbosity levels are from 0 to 5; 0 is the default. Using
|
||||
<samp class="option">-v</samp> or <samp class="option">--verbose</samp> increases the verbosity by one; using
|
||||
‘<samp class="samp">--verbose=<var class="var">n</var></samp>’ sets it to <var class="var">n</var>.
|
||||
</p>
|
||||
</dd>
|
||||
<dt>‘<samp class="samp">-p</samp>’</dt>
|
||||
<dt>‘<samp class="samp">--compat</samp>’</dt>
|
||||
<dd><p>Scan the whole target tree when unstowing. By default, only
|
||||
directories specified in the <em class="dfn">installation image</em> 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 <samp><span class="option">--badlinks</span></samp> option to the
|
||||
<samp><span class="command">chkstow</span></samp> utility may be a better way of ensuring that your
|
||||
installation does not have any dangling symlinks (see <a href="Target-Maintenance.html#Target-Maintenance">Target Maintenance</a>).
|
||||
|
||||
<br><dt>‘<samp><span class="samp">-V</span></samp>’<dt>‘<samp><span class="samp">--version</span></samp>’<dd>Show Stow version number, and exit.
|
||||
|
||||
<br><dt>‘<samp><span class="samp">-h</span></samp>’<dt>‘<samp><span class="samp">--help</span></samp>’<dd>Show Stow command syntax, and exit.
|
||||
the legacy behaviour; however, the <samp class="option">--badlinks</samp> option to the
|
||||
<code class="command">chkstow</code> utility may be a better way of ensuring that your
|
||||
installation does not have any dangling symlinks (see <a class="pxref" href="Target-Maintenance.html">Target Maintenance</a>).
|
||||
</p>
|
||||
</dd>
|
||||
<dt>‘<samp class="samp">-V</samp>’</dt>
|
||||
<dt>‘<samp class="samp">--version</samp>’</dt>
|
||||
<dd><p>Show Stow version number, and exit.
|
||||
</p>
|
||||
</dd>
|
||||
<dt>‘<samp class="samp">-h</samp>’</dt>
|
||||
<dt>‘<samp class="samp">--help</samp>’</dt>
|
||||
<dd><p>Show Stow command syntax, and exit.
|
||||
</p></dd>
|
||||
</dl>
|
||||
|
||||
<p>The following <var>action flags</var> are supported:
|
||||
|
||||
<dl>
|
||||
<dt>‘<samp><span class="samp">-D</span></samp>’<dt>‘<samp><span class="samp">--delete</span></samp>’<dd>Delete (unstow) the package name(s) that follow this option from the <dfn>target
|
||||
directory</dfn>. This option may be repeated any number of times.
|
||||
|
||||
<br><dt>‘<samp><span class="samp">-R</span></samp>’<dt>‘<samp><span class="samp">--restow</span></samp>’<dd>Restow (first unstow, then stow again) the package names that follow this
|
||||
<p>The following <var class="var">action flags</var> are supported:
|
||||
</p>
|
||||
<dl class="table">
|
||||
<dt>‘<samp class="samp">-D</samp>’</dt>
|
||||
<dt>‘<samp class="samp">--delete</samp>’</dt>
|
||||
<dd><p>Delete (unstow) the package name(s) that follow this option from the <em class="dfn">target
|
||||
directory</em>. This option may be repeated any number of times.
|
||||
</p>
|
||||
</dd>
|
||||
<dt>‘<samp class="samp">-R</samp>’</dt>
|
||||
<dt>‘<samp class="samp">--restow</samp>’</dt>
|
||||
<dd><p>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.
|
||||
|
||||
<br><dt>‘<samp><span class="samp">-S</span></samp>’<br><dt>‘<samp><span class="samp">--stow</span></samp>’<dd>explictly stow the package name(s) that follow this option. May be
|
||||
omitted if you are not using the <samp><span class="option">-D</span></samp> or <samp><span class="option">-R</span></samp> options in the
|
||||
same invocation. See <a href="Mixing-Operations.html#Mixing-Operations">Mixing Operations</a>, for details of when you
|
||||
</p>
|
||||
</dd>
|
||||
<dt>‘<samp class="samp">-S</samp>’</dt>
|
||||
<dt>‘<samp class="samp">--stow</samp>’</dt>
|
||||
<dd><p>explictly stow the package name(s) that follow this option. May be
|
||||
omitted if you are not using the <samp class="option">-D</samp> or <samp class="option">-R</samp> options in the
|
||||
same invocation. See <a class="xref" href="Mixing-Operations.html">Mixing Operations</a>, for details of when you
|
||||
might like to use this feature. This option may be repeated any number
|
||||
of times.
|
||||
of times.
|
||||
</p></dd>
|
||||
</dl>
|
||||
|
||||
<!-- =========================================================================== -->
|
||||
</body></html>
|
||||
|
||||
</div>
|
||||
<hr>
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a href="Ignore-Lists.html">Ignore Lists</a>, Previous: <a href="Terminology.html">Terminology</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,93 +1,101 @@
|
|||
<html lang="en">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<title>Justification For Yet Another Set Of Ignore Files - Stow</title>
|
||||
<meta http-equiv="Content-Type" content="text/html">
|
||||
<meta name="description" content="Stow">
|
||||
<meta name="generator" content="makeinfo 4.13">
|
||||
<link title="Top" rel="start" href="index.html#Top">
|
||||
<link rel="up" href="Ignore-Lists.html#Ignore-Lists" title="Ignore Lists">
|
||||
<link rel="prev" href="Types-And-Syntax-Of-Ignore-Lists.html#Types-And-Syntax-Of-Ignore-Lists" title="Types And Syntax Of Ignore Lists">
|
||||
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
|
||||
<!--
|
||||
This manual describes GNU Stow version 2.2.2
|
||||
(9 November 2015), a program for managing the installation of software
|
||||
packages.
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!-- 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 <bobg+stow@zanshin.com>
|
||||
© 1993, 1994, 1995, 1996 Bob Glickstein <bobg+stow@zanshin.com>
|
||||
|
||||
(C) 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
© 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of
|
||||
this manual provided the copyright notice and this permission
|
||||
notice are preserved on all copies.
|
||||
© 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
|
||||
|
||||
© 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of this
|
||||
manual provided the copyright notice and this permission notice are
|
||||
preserved on all copies.
|
||||
|
||||
|
||||
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. -->
|
||||
<title>Justification For Yet Another Set Of Ignore Files (Stow)</title>
|
||||
|
||||
<meta name="description" content="Justification For Yet Another Set Of Ignore Files (Stow)">
|
||||
<meta name="keywords" content="Justification For Yet Another Set Of Ignore Files (Stow)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
<link href="index.html" rel="start" title="Top">
|
||||
<link href="Index.html" rel="index" title="Index">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="Ignore-Lists.html" rel="up" title="Ignore Lists">
|
||||
<link href="Types-And-Syntax-Of-Ignore-Lists.html" rel="prev" title="Types And Syntax Of Ignore Lists">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
|
||||
span:hover a.copiable-link {visibility: visible}
|
||||
-->
|
||||
</style>
|
||||
|
||||
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.
|
||||
-->
|
||||
<meta http-equiv="Content-Style-Type" content="text/css">
|
||||
<style type="text/css"><!--
|
||||
pre.display { font-family:inherit }
|
||||
pre.format { font-family:inherit }
|
||||
pre.smalldisplay { font-family:inherit; font-size:smaller }
|
||||
pre.smallformat { font-family:inherit; font-size:smaller }
|
||||
pre.smallexample { font-size:smaller }
|
||||
pre.smalllisp { font-size:smaller }
|
||||
span.sc { font-variant:small-caps }
|
||||
span.roman { font-family:serif; font-weight:normal; }
|
||||
span.sansserif { font-family:sans-serif; font-weight:normal; }
|
||||
--></style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="node">
|
||||
<a name="Justification-For-Yet-Another-Set-Of-Ignore-Files"></a>
|
||||
<p>
|
||||
Previous: <a rel="previous" accesskey="p" href="Types-And-Syntax-Of-Ignore-Lists.html#Types-And-Syntax-Of-Ignore-Lists">Types And Syntax Of Ignore Lists</a>,
|
||||
Up: <a rel="up" accesskey="u" href="Ignore-Lists.html#Ignore-Lists">Ignore Lists</a>
|
||||
<hr>
|
||||
</div>
|
||||
|
||||
<h3 class="section">4.3 Justification For Yet Another Set Of Ignore Files</h3>
|
||||
<body lang="en">
|
||||
<div class="section-level-extent" id="Justification-For-Yet-Another-Set-Of-Ignore-Files">
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Previous: <a href="Types-And-Syntax-Of-Ignore-Lists.html" accesskey="p" rel="prev">Types And Syntax Of Ignore Lists</a>, Up: <a href="Ignore-Lists.html" accesskey="u" rel="up">Ignore Lists</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<h3 class="section" id="Justification-For-Yet-Another-Set-Of-Ignore-Files-1"><span>4.3 Justification For Yet Another Set Of Ignore Files<a class="copiable-link" href="#Justification-For-Yet-Another-Set-Of-Ignore-Files-1"> ¶</a></span></h3>
|
||||
|
||||
<p>The reader may note that this format is very similar to existing
|
||||
ignore list file formats, such as those for <samp><span class="command">cvs</span></samp>, <samp><span class="command">git</span></samp>,
|
||||
<samp><span class="command">rsync</span></samp> etc., and wonder if another set of ignore lists is
|
||||
ignore list file formats, such as those for <code class="command">cvs</code>, <code class="command">git</code>,
|
||||
<code class="command">rsync</code> 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, <samp><span class="file">.cvsignore</span></samp>, and use that if it
|
||||
check for the presence of say, <samp class="file">.cvsignore</samp>, 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.
|
||||
|
||||
<p>Secondly even if it did, version control system ignore lists generally
|
||||
reflect <em>build-time</em> ignores rather than <em>install-time</em>, and
|
||||
it didn’t already exist.
|
||||
</p>
|
||||
<p>Secondly even if it did, version control system ignore lists generally
|
||||
reflect <em class="emph">build-time</em> ignores rather than <em class="emph">install-time</em>, 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 <em>not</em> in the version control
|
||||
system's ignore list, there is no way of knowing whether the file is
|
||||
stowed. Similarly, if a file is <em class="emph">not</em> 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.
|
||||
|
||||
<p>Therefore it seems clear that ignore lists provided by version control
|
||||
</p>
|
||||
<p>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.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- =========================================================================== -->
|
||||
</body></html>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,76 +1,81 @@
|
|||
<html lang="en">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<title>Known Bugs - Stow</title>
|
||||
<meta http-equiv="Content-Type" content="text/html">
|
||||
<meta name="description" content="Stow">
|
||||
<meta name="generator" content="makeinfo 4.13">
|
||||
<link title="Top" rel="start" href="index.html#Top">
|
||||
<link rel="prev" href="Reporting-Bugs.html#Reporting-Bugs" title="Reporting Bugs">
|
||||
<link rel="next" href="GNU-General-Public-License.html#GNU-General-Public-License" title="GNU General Public License">
|
||||
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
|
||||
<!--
|
||||
This manual describes GNU Stow version 2.2.2
|
||||
(9 November 2015), a program for managing the installation of software
|
||||
packages.
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!-- 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 <bobg+stow@zanshin.com>
|
||||
© 1993, 1994, 1995, 1996 Bob Glickstein <bobg+stow@zanshin.com>
|
||||
|
||||
(C) 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
© 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of
|
||||
this manual provided the copyright notice and this permission
|
||||
notice are preserved on all copies.
|
||||
© 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
|
||||
|
||||
© 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of this
|
||||
manual provided the copyright notice and this permission notice are
|
||||
preserved on all copies.
|
||||
|
||||
|
||||
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. -->
|
||||
<title>Known Bugs (Stow)</title>
|
||||
|
||||
<meta name="description" content="Known Bugs (Stow)">
|
||||
<meta name="keywords" content="Known Bugs (Stow)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
<link href="index.html" rel="start" title="Top">
|
||||
<link href="Index.html" rel="index" title="Index">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="index.html" rel="up" title="Top">
|
||||
<link href="GNU-General-Public-License.html" rel="next" title="GNU General Public License">
|
||||
<link href="Reporting-Bugs.html" rel="prev" title="Reporting Bugs">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
|
||||
span:hover a.copiable-link {visibility: visible}
|
||||
-->
|
||||
</style>
|
||||
|
||||
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.
|
||||
-->
|
||||
<meta http-equiv="Content-Style-Type" content="text/css">
|
||||
<style type="text/css"><!--
|
||||
pre.display { font-family:inherit }
|
||||
pre.format { font-family:inherit }
|
||||
pre.smalldisplay { font-family:inherit; font-size:smaller }
|
||||
pre.smallformat { font-family:inherit; font-size:smaller }
|
||||
pre.smallexample { font-size:smaller }
|
||||
pre.smalllisp { font-size:smaller }
|
||||
span.sc { font-variant:small-caps }
|
||||
span.roman { font-family:serif; font-weight:normal; }
|
||||
span.sansserif { font-family:sans-serif; font-weight:normal; }
|
||||
--></style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="node">
|
||||
<a name="Known-Bugs"></a>
|
||||
|
||||
<body lang="en">
|
||||
<div class="chapter-level-extent" id="Known-Bugs">
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a rel="next" accesskey="n" href="GNU-General-Public-License.html#GNU-General-Public-License">GNU General Public License</a>,
|
||||
Previous: <a rel="previous" accesskey="p" href="Reporting-Bugs.html#Reporting-Bugs">Reporting Bugs</a>,
|
||||
Up: <a rel="up" accesskey="u" href="index.html#Top">Top</a>
|
||||
Next: <a href="GNU-General-Public-License.html" accesskey="n" rel="next">GNU General Public License</a>, Previous: <a href="Reporting-Bugs.html" accesskey="p" rel="prev">Reporting Bugs</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<h2 class="chapter" id="Known-Bugs-1"><span>15 Known Bugs<a class="copiable-link" href="#Known-Bugs-1"> ¶</a></span></h2>
|
||||
|
||||
<p>There are no known bugs in Stow version 2.3.2-fixbug56727!
|
||||
If you think you have found one, please see <a class="pxref" href="Reporting-Bugs.html">Reporting Bugs</a>.
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
<h2 class="chapter">15 Known Bugs</h2>
|
||||
|
||||
<p>There are no known bugs in Stow version 2.2.2!
|
||||
If you think you have found one, please see <a href="Reporting-Bugs.html#Reporting-Bugs">Reporting Bugs</a>.
|
||||
|
||||
<!-- @itemize @bullet -->
|
||||
<!-- @item -->
|
||||
<!-- Put known bugs here -->
|
||||
<!-- @end itemize -->
|
||||
<!-- =========================================================================== -->
|
||||
</body></html>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,90 +1,104 @@
|
|||
<html lang="en">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<title>Mixing Operations - Stow</title>
|
||||
<meta http-equiv="Content-Type" content="text/html">
|
||||
<meta name="description" content="Stow">
|
||||
<meta name="generator" content="makeinfo 4.13">
|
||||
<link title="Top" rel="start" href="index.html#Top">
|
||||
<link rel="prev" href="Conflicts.html#Conflicts" title="Conflicts">
|
||||
<link rel="next" href="Multiple-Stow-Directories.html#Multiple-Stow-Directories" title="Multiple Stow Directories">
|
||||
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
|
||||
<!--
|
||||
This manual describes GNU Stow version 2.2.2
|
||||
(9 November 2015), a program for managing the installation of software
|
||||
packages.
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!-- 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 <bobg+stow@zanshin.com>
|
||||
© 1993, 1994, 1995, 1996 Bob Glickstein <bobg+stow@zanshin.com>
|
||||
|
||||
(C) 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
© 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of
|
||||
this manual provided the copyright notice and this permission
|
||||
notice are preserved on all copies.
|
||||
© 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
|
||||
|
||||
© 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of this
|
||||
manual provided the copyright notice and this permission notice are
|
||||
preserved on all copies.
|
||||
|
||||
|
||||
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. -->
|
||||
<title>Mixing Operations (Stow)</title>
|
||||
|
||||
<meta name="description" content="Mixing Operations (Stow)">
|
||||
<meta name="keywords" content="Mixing Operations (Stow)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
<link href="index.html" rel="start" title="Top">
|
||||
<link href="Index.html" rel="index" title="Index">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="index.html" rel="up" title="Top">
|
||||
<link href="Multiple-Stow-Directories.html" rel="next" title="Multiple Stow Directories">
|
||||
<link href="Conflicts.html" rel="prev" title="Conflicts">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
|
||||
div.example {margin-left: 3.2em}
|
||||
span:hover a.copiable-link {visibility: visible}
|
||||
-->
|
||||
</style>
|
||||
|
||||
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.
|
||||
-->
|
||||
<meta http-equiv="Content-Style-Type" content="text/css">
|
||||
<style type="text/css"><!--
|
||||
pre.display { font-family:inherit }
|
||||
pre.format { font-family:inherit }
|
||||
pre.smalldisplay { font-family:inherit; font-size:smaller }
|
||||
pre.smallformat { font-family:inherit; font-size:smaller }
|
||||
pre.smallexample { font-size:smaller }
|
||||
pre.smalllisp { font-size:smaller }
|
||||
span.sc { font-variant:small-caps }
|
||||
span.roman { font-family:serif; font-weight:normal; }
|
||||
span.sansserif { font-family:sans-serif; font-weight:normal; }
|
||||
--></style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="node">
|
||||
<a name="Mixing-Operations"></a>
|
||||
|
||||
<body lang="en">
|
||||
<div class="chapter-level-extent" id="Mixing-Operations">
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a rel="next" accesskey="n" href="Multiple-Stow-Directories.html#Multiple-Stow-Directories">Multiple Stow Directories</a>,
|
||||
Previous: <a rel="previous" accesskey="p" href="Conflicts.html#Conflicts">Conflicts</a>,
|
||||
Up: <a rel="up" accesskey="u" href="index.html#Top">Top</a>
|
||||
<hr>
|
||||
Next: <a href="Multiple-Stow-Directories.html" accesskey="n" rel="next">Multiple Stow Directories</a>, Previous: <a href="Conflicts.html" accesskey="p" rel="prev">Conflicts</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<h2 class="chapter" id="Mixing-Operations-1"><span>8 Mixing Operations<a class="copiable-link" href="#Mixing-Operations-1"> ¶</a></span></h2>
|
||||
<a class="index-entry-id" id="index-mixing-operations"></a>
|
||||
|
||||
<h2 class="chapter">8 Mixing Operations</h2>
|
||||
|
||||
<p><a name="index-mixing-operations-33"></a>
|
||||
Since version 2.0, multiple distinct actions can be specified in a single
|
||||
<p>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:
|
||||
</p>
|
||||
<div class="example">
|
||||
<pre class="example-preformatted">stow -D emacs-21.3 -S emacs-21.4a
|
||||
</pre></div>
|
||||
|
||||
<pre class="example"> stow -D emacs-21.3 -S emacs-21.4a
|
||||
</pre>
|
||||
<p class="noindent">which will replace emacs-21.3 with emacs-21.4a using a single invocation.
|
||||
|
||||
<p><a name="index-deferred-operation-34"></a>This is much faster and cleaner than performing two separate
|
||||
<p>which will replace emacs-21.3 with emacs-21.4a using a single invocation.
|
||||
</p>
|
||||
<a class="index-entry-id" id="index-deferred-operation-1"></a>
|
||||
<p>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 <a href="Deferred-Operation.html#Deferred-Operation">Deferred Operation</a>), so the
|
||||
and merged before being executed (see <a class="pxref" href="Conflicts.html#Deferred-Operation">Deferred Operation</a>), so the
|
||||
amount of of time in which GNU Emacs is unavailable is minimised.
|
||||
</p>
|
||||
<p>You can mix and match any number of actions, for example,
|
||||
</p>
|
||||
<div class="example">
|
||||
<pre class="example-preformatted">stow -S pkg1 pkg2 -D pkg3 pkg4 -S pkg5 -R pkg6
|
||||
</pre></div>
|
||||
|
||||
<p>You can mix and match any number of actions, for example,
|
||||
<p>will unstow pkg3, pkg4 and pkg6, then stow pkg1, pkg2, pkg5 and pkg6.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<pre class="example"> stow -S pkg1 pkg2 -D pkg3 pkg4 -S pkg5 -R pkg6
|
||||
</pre>
|
||||
<p class="noindent">will unstow pkg3, pkg4 and pkg6, then stow pkg1, pkg2, pkg5 and pkg6.
|
||||
|
||||
<!-- =========================================================================== -->
|
||||
</body></html>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,94 +1,102 @@
|
|||
<html lang="en">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<title>Motivation For Ignore Lists - Stow</title>
|
||||
<meta http-equiv="Content-Type" content="text/html">
|
||||
<meta name="description" content="Stow">
|
||||
<meta name="generator" content="makeinfo 4.13">
|
||||
<link title="Top" rel="start" href="index.html#Top">
|
||||
<link rel="up" href="Ignore-Lists.html#Ignore-Lists" title="Ignore Lists">
|
||||
<link rel="prev" href="Ignore-Lists.html#Ignore-Lists" title="Ignore Lists">
|
||||
<link rel="next" href="Types-And-Syntax-Of-Ignore-Lists.html#Types-And-Syntax-Of-Ignore-Lists" title="Types And Syntax Of Ignore Lists">
|
||||
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
|
||||
<!--
|
||||
This manual describes GNU Stow version 2.2.2
|
||||
(9 November 2015), a program for managing the installation of software
|
||||
packages.
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!-- 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 <bobg+stow@zanshin.com>
|
||||
© 1993, 1994, 1995, 1996 Bob Glickstein <bobg+stow@zanshin.com>
|
||||
|
||||
(C) 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
© 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of
|
||||
this manual provided the copyright notice and this permission
|
||||
notice are preserved on all copies.
|
||||
© 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
|
||||
|
||||
© 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of this
|
||||
manual provided the copyright notice and this permission notice are
|
||||
preserved on all copies.
|
||||
|
||||
|
||||
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. -->
|
||||
<title>Motivation For Ignore Lists (Stow)</title>
|
||||
|
||||
<meta name="description" content="Motivation For Ignore Lists (Stow)">
|
||||
<meta name="keywords" content="Motivation For Ignore Lists (Stow)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
<link href="index.html" rel="start" title="Top">
|
||||
<link href="Index.html" rel="index" title="Index">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="Ignore-Lists.html" rel="up" title="Ignore Lists">
|
||||
<link href="Types-And-Syntax-Of-Ignore-Lists.html" rel="next" title="Types And Syntax Of Ignore Lists">
|
||||
<link href="Ignore-Lists.html" rel="prev" title="Ignore Lists">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
|
||||
span:hover a.copiable-link {visibility: visible}
|
||||
-->
|
||||
</style>
|
||||
|
||||
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.
|
||||
-->
|
||||
<meta http-equiv="Content-Style-Type" content="text/css">
|
||||
<style type="text/css"><!--
|
||||
pre.display { font-family:inherit }
|
||||
pre.format { font-family:inherit }
|
||||
pre.smalldisplay { font-family:inherit; font-size:smaller }
|
||||
pre.smallformat { font-family:inherit; font-size:smaller }
|
||||
pre.smallexample { font-size:smaller }
|
||||
pre.smalllisp { font-size:smaller }
|
||||
span.sc { font-variant:small-caps }
|
||||
span.roman { font-family:serif; font-weight:normal; }
|
||||
span.sansserif { font-family:sans-serif; font-weight:normal; }
|
||||
--></style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="node">
|
||||
<a name="Motivation-For-Ignore-Lists"></a>
|
||||
<p>
|
||||
Next: <a rel="next" accesskey="n" href="Types-And-Syntax-Of-Ignore-Lists.html#Types-And-Syntax-Of-Ignore-Lists">Types And Syntax Of Ignore Lists</a>,
|
||||
Previous: <a rel="previous" accesskey="p" href="Ignore-Lists.html#Ignore-Lists">Ignore Lists</a>,
|
||||
Up: <a rel="up" accesskey="u" href="Ignore-Lists.html#Ignore-Lists">Ignore Lists</a>
|
||||
<hr>
|
||||
</div>
|
||||
|
||||
<h3 class="section">4.1 Motivation For Ignore Lists</h3>
|
||||
<body lang="en">
|
||||
<div class="section-level-extent" id="Motivation-For-Ignore-Lists">
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a href="Types-And-Syntax-Of-Ignore-Lists.html" accesskey="n" rel="next">Types And Syntax Of Ignore Lists</a>, Previous: <a href="Ignore-Lists.html" accesskey="p" rel="prev">Ignore Lists</a>, Up: <a href="Ignore-Lists.html" accesskey="u" rel="up">Ignore Lists</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<h3 class="section" id="Motivation-For-Ignore-Lists-1"><span>4.1 Motivation For Ignore Lists<a class="copiable-link" href="#Motivation-For-Ignore-Lists-1"> ¶</a></span></h3>
|
||||
|
||||
<p>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
|
||||
<samp><span class="file">.gitignore</span></samp>, <samp><span class="file">CVS</span></samp>, <samp><span class="file">*,v</span></samp> (RCS files) should typically
|
||||
<samp class="file">.gitignore</samp>, <samp class="file">CVS</samp>, <samp class="file">*,v</samp> (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.
|
||||
|
||||
<p>In these cases, it can be rather cumbersome to specify a
|
||||
<samp><span class="option">--ignore</span></samp> parameter for each file or directory to be ignored.
|
||||
</p>
|
||||
<p>In these cases, it can be rather cumbersome to specify a
|
||||
<samp class="option">--ignore</samp> parameter for each file or directory to be ignored.
|
||||
This could be worked around by ensuring the existence of
|
||||
<samp><span class="file">~/.stowrc</span></samp> containing multiple <samp><span class="option">--ignore</span></samp> lines, or if a
|
||||
<samp class="file">~/.stowrc</samp> containing multiple <samp class="option">--ignore</samp> lines, or if a
|
||||
different set of files/directories should be ignored depending on
|
||||
which stow package is involved, a <samp><span class="file">.stowrc</span></samp> file for each stow
|
||||
which stow package is involved, a <samp class="file">.stowrc</samp> 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
|
||||
<samp><span class="file">.stowrc</span></samp> onto ARGV at run-time, it could clutter up the process
|
||||
<samp class="file">.stowrc</samp> 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.
|
||||
|
||||
<p><a name="index-ignore-lists-16"></a>Therefore in addition to <samp><span class="option">--ignore</span></samp> parameters, Stow provides a
|
||||
operating system’s limit for process arguments.
|
||||
</p>
|
||||
<a class="index-entry-id" id="index-ignore-lists-1"></a>
|
||||
<p>Therefore in addition to <samp class="option">--ignore</samp> parameters, Stow provides a
|
||||
way to specify lists of files and directories to ignore.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- =========================================================================== -->
|
||||
</body></html>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,86 +1,94 @@
|
|||
<html lang="en">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<title>Multiple Stow Directories - Stow</title>
|
||||
<meta http-equiv="Content-Type" content="text/html">
|
||||
<meta name="description" content="Stow">
|
||||
<meta name="generator" content="makeinfo 4.13">
|
||||
<link title="Top" rel="start" href="index.html#Top">
|
||||
<link rel="prev" href="Mixing-Operations.html#Mixing-Operations" title="Mixing Operations">
|
||||
<link rel="next" href="Target-Maintenance.html#Target-Maintenance" title="Target Maintenance">
|
||||
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
|
||||
<!--
|
||||
This manual describes GNU Stow version 2.2.2
|
||||
(9 November 2015), a program for managing the installation of software
|
||||
packages.
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!-- 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 <bobg+stow@zanshin.com>
|
||||
© 1993, 1994, 1995, 1996 Bob Glickstein <bobg+stow@zanshin.com>
|
||||
|
||||
(C) 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
© 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of
|
||||
this manual provided the copyright notice and this permission
|
||||
notice are preserved on all copies.
|
||||
© 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
|
||||
|
||||
© 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of this
|
||||
manual provided the copyright notice and this permission notice are
|
||||
preserved on all copies.
|
||||
|
||||
|
||||
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. -->
|
||||
<title>Multiple Stow Directories (Stow)</title>
|
||||
|
||||
<meta name="description" content="Multiple Stow Directories (Stow)">
|
||||
<meta name="keywords" content="Multiple Stow Directories (Stow)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
<link href="index.html" rel="start" title="Top">
|
||||
<link href="Index.html" rel="index" title="Index">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="index.html" rel="up" title="Top">
|
||||
<link href="Target-Maintenance.html" rel="next" title="Target Maintenance">
|
||||
<link href="Mixing-Operations.html" rel="prev" title="Mixing Operations">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
|
||||
span:hover a.copiable-link {visibility: visible}
|
||||
-->
|
||||
</style>
|
||||
|
||||
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.
|
||||
-->
|
||||
<meta http-equiv="Content-Style-Type" content="text/css">
|
||||
<style type="text/css"><!--
|
||||
pre.display { font-family:inherit }
|
||||
pre.format { font-family:inherit }
|
||||
pre.smalldisplay { font-family:inherit; font-size:smaller }
|
||||
pre.smallformat { font-family:inherit; font-size:smaller }
|
||||
pre.smallexample { font-size:smaller }
|
||||
pre.smalllisp { font-size:smaller }
|
||||
span.sc { font-variant:small-caps }
|
||||
span.roman { font-family:serif; font-weight:normal; }
|
||||
span.sansserif { font-family:sans-serif; font-weight:normal; }
|
||||
--></style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="node">
|
||||
<a name="Multiple-Stow-Directories"></a>
|
||||
<p>
|
||||
Next: <a rel="next" accesskey="n" href="Target-Maintenance.html#Target-Maintenance">Target Maintenance</a>,
|
||||
Previous: <a rel="previous" accesskey="p" href="Mixing-Operations.html#Mixing-Operations">Mixing Operations</a>,
|
||||
Up: <a rel="up" accesskey="u" href="index.html#Top">Top</a>
|
||||
<hr>
|
||||
</div>
|
||||
|
||||
<h2 class="chapter">9 Multiple Stow Directories</h2>
|
||||
<body lang="en">
|
||||
<div class="chapter-level-extent" id="Multiple-Stow-Directories">
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a href="Target-Maintenance.html" accesskey="n" rel="next">Target Maintenance</a>, Previous: <a href="Mixing-Operations.html" accesskey="p" rel="prev">Mixing Operations</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<h2 class="chapter" id="Multiple-Stow-Directories-1"><span>9 Multiple Stow Directories<a class="copiable-link" href="#Multiple-Stow-Directories-1"> ¶</a></span></h2>
|
||||
|
||||
<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 <samp><span class="file">.stow</span></samp>
|
||||
in each stow directory. The presence of <samp><span class="file">/usr/local/foo/.stow</span></samp>
|
||||
informs Stow that, though <samp><span class="file">foo</span></samp> is not the current stow
|
||||
stow directories, it can be done by creating a file named <samp class="file">.stow</samp>
|
||||
in each stow directory. The presence of <samp class="file">/usr/local/foo/.stow</samp>
|
||||
informs Stow that, though <samp class="file">foo</samp> is not the current stow
|
||||
directory, even if it is a subdirectory of the target directory,
|
||||
nevertheless it is <em>a</em> stow directory and as such Stow
|
||||
doesn't “own” anything in it (see <a href="Installing-Packages.html#Installing-Packages">Installing Packages</a>). This will
|
||||
protect the contents of <samp><span class="file">foo</span></samp> from a ‘<samp><span class="samp">stow -D</span></samp>’, for instance.
|
||||
nevertheless it is <em class="emph">a</em> stow directory and as such Stow
|
||||
doesn’t “own” anything in it (see <a class="pxref" href="Installing-Packages.html">Installing Packages</a>). This will
|
||||
protect the contents of <samp class="file">foo</samp> from a ‘<samp class="samp">stow -D</samp>’, for instance.
|
||||
</p>
|
||||
|
||||
<!-- There is a test for the following case in t/examples.t: -->
|
||||
<p>When multiple stow directories share a target tree, if a tree-folding
|
||||
<p>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 <samp><span class="file">.stow</span></samp>, Stow knows how to split
|
||||
existing symlink points contains <samp class="file">.stow</samp>, Stow knows how to split
|
||||
open the tree in the correct manner.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- =========================================================================== -->
|
||||
</body></html>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,85 +1,95 @@
|
|||
<html lang="en">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<title>Other FSF Software - Stow</title>
|
||||
<meta http-equiv="Content-Type" content="text/html">
|
||||
<meta name="description" content="Stow">
|
||||
<meta name="generator" content="makeinfo 4.13">
|
||||
<link title="Top" rel="start" href="index.html#Top">
|
||||
<link rel="up" href="Compile_002dtime-vs-Install_002dtime.html#Compile_002dtime-vs-Install_002dtime" title="Compile-time vs Install-time">
|
||||
<link rel="prev" href="GNU-Emacs.html#GNU-Emacs" title="GNU Emacs">
|
||||
<link rel="next" href="Cygnus-Software.html#Cygnus-Software" title="Cygnus Software">
|
||||
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
|
||||
<!--
|
||||
This manual describes GNU Stow version 2.2.2
|
||||
(9 November 2015), a program for managing the installation of software
|
||||
packages.
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!-- 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 <bobg+stow@zanshin.com>
|
||||
© 1993, 1994, 1995, 1996 Bob Glickstein <bobg+stow@zanshin.com>
|
||||
|
||||
(C) 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
© 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of
|
||||
this manual provided the copyright notice and this permission
|
||||
notice are preserved on all copies.
|
||||
© 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
|
||||
|
||||
© 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of this
|
||||
manual provided the copyright notice and this permission notice are
|
||||
preserved on all copies.
|
||||
|
||||
|
||||
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. -->
|
||||
<title>Other FSF Software (Stow)</title>
|
||||
|
||||
<meta name="description" content="Other FSF Software (Stow)">
|
||||
<meta name="keywords" content="Other FSF Software (Stow)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
<link href="index.html" rel="start" title="Top">
|
||||
<link href="Index.html" rel="index" title="Index">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="Compile_002dtime-vs-Install_002dtime.html" rel="up" title="Compile-time vs Install-time">
|
||||
<link href="Cygnus-Software.html" rel="next" title="Cygnus Software">
|
||||
<link href="GNU-Emacs.html" rel="prev" title="GNU Emacs">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
|
||||
div.example {margin-left: 3.2em}
|
||||
span:hover a.copiable-link {visibility: visible}
|
||||
-->
|
||||
</style>
|
||||
|
||||
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.
|
||||
-->
|
||||
<meta http-equiv="Content-Style-Type" content="text/css">
|
||||
<style type="text/css"><!--
|
||||
pre.display { font-family:inherit }
|
||||
pre.format { font-family:inherit }
|
||||
pre.smalldisplay { font-family:inherit; font-size:smaller }
|
||||
pre.smallformat { font-family:inherit; font-size:smaller }
|
||||
pre.smallexample { font-size:smaller }
|
||||
pre.smalllisp { font-size:smaller }
|
||||
span.sc { font-variant:small-caps }
|
||||
span.roman { font-family:serif; font-weight:normal; }
|
||||
span.sansserif { font-family:sans-serif; font-weight:normal; }
|
||||
--></style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="node">
|
||||
<a name="Other-FSF-Software"></a>
|
||||
<p>
|
||||
Next: <a rel="next" accesskey="n" href="Cygnus-Software.html#Cygnus-Software">Cygnus Software</a>,
|
||||
Previous: <a rel="previous" accesskey="p" href="GNU-Emacs.html#GNU-Emacs">GNU Emacs</a>,
|
||||
Up: <a rel="up" accesskey="u" href="Compile_002dtime-vs-Install_002dtime.html#Compile_002dtime-vs-Install_002dtime">Compile-time vs Install-time</a>
|
||||
<hr>
|
||||
</div>
|
||||
|
||||
<h3 class="section">12.3 Other FSF Software</h3>
|
||||
<body lang="en">
|
||||
<div class="section-level-extent" id="Other-FSF-Software">
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a href="Cygnus-Software.html" accesskey="n" rel="next">Cygnus Software</a>, Previous: <a href="GNU-Emacs.html" accesskey="p" rel="prev">GNU Emacs</a>, Up: <a href="Compile_002dtime-vs-Install_002dtime.html" accesskey="u" rel="up">Compile-time vs Install-time</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<h3 class="section" id="Other-FSF-Software-1"><span>12.3 Other FSF Software<a class="copiable-link" href="#Other-FSF-Software-1"> ¶</a></span></h3>
|
||||
|
||||
<p>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 ‘<samp><span class="samp">autoconf</span></samp>’ and ‘<samp><span class="samp">automake</span></samp>’, most packages
|
||||
has been unifying the build procedure for its tools for some time.
|
||||
Thanks to its tools ‘<samp class="samp">autoconf</samp>’ and ‘<samp class="samp">automake</samp>’, most packages
|
||||
now respond well to these simple steps, with no other intervention
|
||||
necessary:
|
||||
</p>
|
||||
<div class="example">
|
||||
<pre class="example-preformatted">./configure <var class="var">options</var>
|
||||
make
|
||||
make install prefix=/usr/local/stow/<var class="var">package</var>
|
||||
</pre></div>
|
||||
|
||||
<pre class="example"> ./configure <var>options</var>
|
||||
make
|
||||
make install prefix=/usr/local/stow/<var>package</var>
|
||||
</pre>
|
||||
<p>Hopefully, these tools can evolve to be aware of Stow-managed packages,
|
||||
such that providing an option to ‘<samp><span class="samp">configure</span></samp>’ can allow ‘<samp><span class="samp">make</span></samp>’
|
||||
and ‘<samp><span class="samp">make install</span></samp>’ steps to work correctly without needing to
|
||||
<p>Hopefully, these tools can evolve to be aware of Stow-managed packages,
|
||||
such that providing an option to ‘<samp class="samp">configure</samp>’ can allow ‘<samp class="samp">make</samp>’
|
||||
and ‘<samp class="samp">make install</samp>’ steps to work correctly without needing to
|
||||
“fool” the build process.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- -->
|
||||
</body></html>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,150 +1,178 @@
|
|||
<html lang="en">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<title>Perl and Perl 5 Modules - Stow</title>
|
||||
<meta http-equiv="Content-Type" content="text/html">
|
||||
<meta name="description" content="Stow">
|
||||
<meta name="generator" content="makeinfo 4.13">
|
||||
<link title="Top" rel="start" href="index.html#Top">
|
||||
<link rel="up" href="Compile_002dtime-vs-Install_002dtime.html#Compile_002dtime-vs-Install_002dtime" title="Compile-time vs Install-time">
|
||||
<link rel="prev" href="Cygnus-Software.html#Cygnus-Software" title="Cygnus Software">
|
||||
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
|
||||
<!--
|
||||
This manual describes GNU Stow version 2.2.2
|
||||
(9 November 2015), a program for managing the installation of software
|
||||
packages.
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!-- 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 <bobg+stow@zanshin.com>
|
||||
© 1993, 1994, 1995, 1996 Bob Glickstein <bobg+stow@zanshin.com>
|
||||
|
||||
(C) 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
© 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of
|
||||
this manual provided the copyright notice and this permission
|
||||
notice are preserved on all copies.
|
||||
© 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
|
||||
|
||||
© 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of this
|
||||
manual provided the copyright notice and this permission notice are
|
||||
preserved on all copies.
|
||||
|
||||
|
||||
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. -->
|
||||
<title>Perl and Perl 5 Modules (Stow)</title>
|
||||
|
||||
<meta name="description" content="Perl and Perl 5 Modules (Stow)">
|
||||
<meta name="keywords" content="Perl and Perl 5 Modules (Stow)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
<link href="index.html" rel="start" title="Top">
|
||||
<link href="Index.html" rel="index" title="Index">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="Compile_002dtime-vs-Install_002dtime.html" rel="up" title="Compile-time vs Install-time">
|
||||
<link href="Cygnus-Software.html" rel="prev" title="Cygnus Software">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
|
||||
div.example {margin-left: 3.2em}
|
||||
span.r {font-family: initial; font-weight: normal; font-style: normal}
|
||||
span:hover a.copiable-link {visibility: visible}
|
||||
-->
|
||||
</style>
|
||||
|
||||
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.
|
||||
-->
|
||||
<meta http-equiv="Content-Style-Type" content="text/css">
|
||||
<style type="text/css"><!--
|
||||
pre.display { font-family:inherit }
|
||||
pre.format { font-family:inherit }
|
||||
pre.smalldisplay { font-family:inherit; font-size:smaller }
|
||||
pre.smallformat { font-family:inherit; font-size:smaller }
|
||||
pre.smallexample { font-size:smaller }
|
||||
pre.smalllisp { font-size:smaller }
|
||||
span.sc { font-variant:small-caps }
|
||||
span.roman { font-family:serif; font-weight:normal; }
|
||||
span.sansserif { font-family:sans-serif; font-weight:normal; }
|
||||
--></style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="node">
|
||||
<a name="Perl-and-Perl-5-Modules"></a>
|
||||
<p>
|
||||
Previous: <a rel="previous" accesskey="p" href="Cygnus-Software.html#Cygnus-Software">Cygnus Software</a>,
|
||||
Up: <a rel="up" accesskey="u" href="Compile_002dtime-vs-Install_002dtime.html#Compile_002dtime-vs-Install_002dtime">Compile-time vs Install-time</a>
|
||||
<hr>
|
||||
</div>
|
||||
|
||||
<h3 class="section">12.5 Perl and Perl 5 Modules</h3>
|
||||
<body lang="en">
|
||||
<div class="section-level-extent" id="Perl-and-Perl-5-Modules">
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Previous: <a href="Cygnus-Software.html" accesskey="p" rel="prev">Cygnus Software</a>, Up: <a href="Compile_002dtime-vs-Install_002dtime.html" accesskey="u" rel="up">Compile-time vs Install-time</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<h3 class="section" id="Perl-and-Perl-5-Modules-1"><span>12.5 Perl and Perl 5 Modules<a class="copiable-link" href="#Perl-and-Perl-5-Modules-1"> ¶</a></span></h3>
|
||||
|
||||
<p>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.
|
||||
|
||||
<p>Unfortunately, the authors of Perl believed that only AFS sites need
|
||||
</p>
|
||||
<p>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.
|
||||
|
||||
<p>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 <em>unless</em> you're running AFS. Fortunately, after you've
|
||||
entered all the configuration settings, Perl's setup script gives you
|
||||
</p>
|
||||
<p>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 <em class="emph">unless</em> 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
|
||||
<samp><span class="file">config.sh</span></samp>. When prompted, you should edit this file and replace
|
||||
<samp class="file">config.sh</samp>. When prompted, you should edit this file and replace
|
||||
occurrences of
|
||||
</p>
|
||||
<div class="example">
|
||||
<pre class="example-preformatted">inst<span class="r">...</span>/usr/local<span class="r">...</span>
|
||||
</pre></div>
|
||||
|
||||
<pre class="example"> inst<span class="roman">...</span>/usr/local<span class="roman">...</span>
|
||||
</pre>
|
||||
<p class="noindent">with
|
||||
<p>with
|
||||
</p>
|
||||
<div class="example">
|
||||
<pre class="example-preformatted">inst<span class="r">...</span>/usr/local/stow/perl<span class="r">...</span>
|
||||
</pre></div>
|
||||
|
||||
<pre class="example"> inst<span class="roman">...</span>/usr/local/stow/perl<span class="roman">...</span>
|
||||
</pre>
|
||||
<p class="noindent">You can do this with the following Unix command:
|
||||
<p>You can do this with the following Unix command:
|
||||
</p>
|
||||
<div class="example">
|
||||
<pre class="example-preformatted">sed 's,^\(inst.*/usr/local\),\1/stow/perl,' config.sh > config.sh.new
|
||||
mv config.sh.new config.sh
|
||||
</pre></div>
|
||||
|
||||
<pre class="example"> sed 's,^\(inst.*/usr/local\),\1/stow/perl,' config.sh > config.sh.new
|
||||
mv config.sh.new config.sh
|
||||
</pre>
|
||||
<p>Hopefully, the Perl authors will correct this deficiency in Perl 5's
|
||||
<p>Hopefully, the Perl authors will correct this deficiency in Perl 5’s
|
||||
configuration mechanism.
|
||||
|
||||
<p>Perl 5 modules—i.e., extensions to Perl 5—generally conform to a set
|
||||
</p>
|
||||
<p>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 <samp><span class="file">Makefile.PL</span></samp>, which is a Perl
|
||||
script. When it runs, it generates a <samp><span class="file">Makefile</span></samp>.
|
||||
|
||||
<p>If you followed the instructions above for editing <samp><span class="file">config.sh</span></samp> when
|
||||
Perl was built, then when you create a <samp><span class="file">Makefile</span></samp> from a
|
||||
<samp><span class="file">Makefile.PL</span></samp>, it will contain separate locations for run-time
|
||||
(<samp><span class="file">/usr/local</span></samp>) and install-time (<samp><span class="file">/usr/local/stow/perl</span></samp>).
|
||||
the package comes with a top-level <samp class="file">Makefile.PL</samp>, which is a Perl
|
||||
script. When it runs, it generates a <samp class="file">Makefile</samp>.
|
||||
</p>
|
||||
<p>If you followed the instructions above for editing <samp class="file">config.sh</samp> when
|
||||
Perl was built, then when you create a <samp class="file">Makefile</samp> from a
|
||||
<samp class="file">Makefile.PL</samp>, it will contain separate locations for run-time
|
||||
(<samp class="file">/usr/local</samp>) and install-time (<samp class="file">/usr/local/stow/perl</samp>).
|
||||
Thus you can do
|
||||
</p>
|
||||
<div class="example">
|
||||
<pre class="example-preformatted">perl Makefile.PL
|
||||
make
|
||||
make install
|
||||
</pre></div>
|
||||
|
||||
<pre class="example"> perl Makefile.PL
|
||||
make
|
||||
make install
|
||||
</pre>
|
||||
<p class="noindent">and the files will be installed into <samp><span class="file">/usr/local/stow/perl</span></samp>.
|
||||
<p>and the files will be installed into <samp class="file">/usr/local/stow/perl</samp>.
|
||||
However, you might prefer each Perl module to be stowed separately. In
|
||||
that case, you must edit the resulting Makefile, replacing
|
||||
<samp><span class="file">/usr/local/stow/perl</span></samp> with <samp><span class="file">/usr/local/stow/</span><var>module</var></samp>.
|
||||
<samp class="file">/usr/local/stow/perl</samp> with <samp class="file">/usr/local/stow/<var class="var">module</var></samp>.
|
||||
The best way to do this is:
|
||||
</p>
|
||||
<div class="example">
|
||||
<pre class="example-preformatted">perl Makefile.PL
|
||||
find . -name Makefile -print | \
|
||||
xargs perl -pi~ -e 's,^(INST.*/stow)/perl,$1/<var class="var">module</var>,;'
|
||||
make
|
||||
make install
|
||||
</pre></div>
|
||||
|
||||
<pre class="example"> perl Makefile.PL
|
||||
find . -name Makefile -print | \
|
||||
xargs perl -pi~ -e 's,^(INST.*/stow)/perl,$1/<var>module</var>,;'
|
||||
make
|
||||
make install
|
||||
</pre>
|
||||
<p class="noindent">(The use of ‘<samp><span class="samp">find</span></samp>’ and ‘<samp><span class="samp">xargs</span></samp>’ ensures that all Makefiles in
|
||||
the module's source tree, even those in subdirectories, get edited.) A
|
||||
<p>(The use of ‘<samp class="samp">find</samp>’ and ‘<samp class="samp">xargs</samp>’ 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
|
||||
<var>module</var> <samp><span class="file">cpan.</span><var>module</var></samp>, where ‘<samp><span class="samp">cpan</span></samp>’ stands for
|
||||
<var class="var">module</var> <samp class="file">cpan.<var class="var">module</var></samp>, where ‘<samp class="samp">cpan</samp>’ 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 <samp><span class="file">/usr/local/stow</span></samp> 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 <samp class="file">/usr/local/stow</samp> are Perl 5
|
||||
extensions.
|
||||
|
||||
<p>When you stow separate Perl 5 modules separately, you are likely to
|
||||
encounter conflicts (see <a href="Conflicts.html#Conflicts">Conflicts</a>) with files named <samp><span class="file">.exists</span></samp>
|
||||
and <samp><span class="file">perllocal.pod</span></samp>. One way to work around this is to remove
|
||||
</p>
|
||||
<p>When you stow separate Perl 5 modules separately, you are likely to
|
||||
encounter conflicts (see <a class="pxref" href="Conflicts.html">Conflicts</a>) with files named <samp class="file">.exists</samp>
|
||||
and <samp class="file">perllocal.pod</samp>. One way to work around this is to remove
|
||||
those files before stowing the module. If you use the
|
||||
<samp><span class="file">cpan.</span><var>module</var></samp> naming convention, you can simply do this:
|
||||
<samp class="file">cpan.<var class="var">module</var></samp> naming convention, you can simply do this:
|
||||
</p>
|
||||
<div class="example">
|
||||
<pre class="example-preformatted">cd /usr/local/stow
|
||||
find cpan.* \( -name .exists -o -name perllocal.pod \) -print | \
|
||||
xargs rm
|
||||
</pre></div>
|
||||
|
||||
<pre class="example"> cd /usr/local/stow
|
||||
find cpan.* \( -name .exists -o -name perllocal.pod \) -print | \
|
||||
xargs rm
|
||||
</pre>
|
||||
<!-- -->
|
||||
</body></html>
|
||||
|
||||
</div>
|
||||
<hr>
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Previous: <a href="Cygnus-Software.html">Cygnus Software</a>, Up: <a href="Compile_002dtime-vs-Install_002dtime.html">Compile-time vs Install-time</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,98 +1,107 @@
|
|||
<html lang="en">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<title>Reporting Bugs - Stow</title>
|
||||
<meta http-equiv="Content-Type" content="text/html">
|
||||
<meta name="description" content="Stow">
|
||||
<meta name="generator" content="makeinfo 4.13">
|
||||
<link title="Top" rel="start" href="index.html#Top">
|
||||
<link rel="prev" href="Bootstrapping.html#Bootstrapping" title="Bootstrapping">
|
||||
<link rel="next" href="Known-Bugs.html#Known-Bugs" title="Known Bugs">
|
||||
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
|
||||
<!--
|
||||
This manual describes GNU Stow version 2.2.2
|
||||
(9 November 2015), a program for managing the installation of software
|
||||
packages.
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!-- 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 <bobg+stow@zanshin.com>
|
||||
© 1993, 1994, 1995, 1996 Bob Glickstein <bobg+stow@zanshin.com>
|
||||
|
||||
(C) 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
© 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of
|
||||
this manual provided the copyright notice and this permission
|
||||
notice are preserved on all copies.
|
||||
© 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
|
||||
|
||||
© 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of this
|
||||
manual provided the copyright notice and this permission notice are
|
||||
preserved on all copies.
|
||||
|
||||
|
||||
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. -->
|
||||
<title>Reporting Bugs (Stow)</title>
|
||||
|
||||
<meta name="description" content="Reporting Bugs (Stow)">
|
||||
<meta name="keywords" content="Reporting Bugs (Stow)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
<link href="index.html" rel="start" title="Top">
|
||||
<link href="Index.html" rel="index" title="Index">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="index.html" rel="up" title="Top">
|
||||
<link href="Known-Bugs.html" rel="next" title="Known Bugs">
|
||||
<link href="Bootstrapping.html" rel="prev" title="Bootstrapping">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
|
||||
span:hover a.copiable-link {visibility: visible}
|
||||
ul.mark-bullet {list-style-type: disc}
|
||||
-->
|
||||
</style>
|
||||
|
||||
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.
|
||||
-->
|
||||
<meta http-equiv="Content-Style-Type" content="text/css">
|
||||
<style type="text/css"><!--
|
||||
pre.display { font-family:inherit }
|
||||
pre.format { font-family:inherit }
|
||||
pre.smalldisplay { font-family:inherit; font-size:smaller }
|
||||
pre.smallformat { font-family:inherit; font-size:smaller }
|
||||
pre.smallexample { font-size:smaller }
|
||||
pre.smalllisp { font-size:smaller }
|
||||
span.sc { font-variant:small-caps }
|
||||
span.roman { font-family:serif; font-weight:normal; }
|
||||
span.sansserif { font-family:sans-serif; font-weight:normal; }
|
||||
--></style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="node">
|
||||
<a name="Reporting-Bugs"></a>
|
||||
<p>
|
||||
Next: <a rel="next" accesskey="n" href="Known-Bugs.html#Known-Bugs">Known Bugs</a>,
|
||||
Previous: <a rel="previous" accesskey="p" href="Bootstrapping.html#Bootstrapping">Bootstrapping</a>,
|
||||
Up: <a rel="up" accesskey="u" href="index.html#Top">Top</a>
|
||||
<hr>
|
||||
</div>
|
||||
|
||||
<h2 class="chapter">14 Reporting Bugs</h2>
|
||||
<body lang="en">
|
||||
<div class="chapter-level-extent" id="Reporting-Bugs">
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a href="Known-Bugs.html" accesskey="n" rel="next">Known Bugs</a>, Previous: <a href="Bootstrapping.html" accesskey="p" rel="prev">Bootstrapping</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<h2 class="chapter" id="Reporting-Bugs-1"><span>14 Reporting Bugs<a class="copiable-link" href="#Reporting-Bugs-1"> ¶</a></span></h2>
|
||||
|
||||
<p>Please send bug reports to the current maintainers by electronic
|
||||
mail. The address to use is ‘<samp><span class="samp"><bug-stow@gnu.org></span></samp>’. Please
|
||||
mail. The address to use is ‘<samp class="samp"><bug-stow@gnu.org></samp>’. Please
|
||||
include:
|
||||
</p>
|
||||
<ul class="itemize mark-bullet">
|
||||
<li>the version number of Stow (‘<samp class="samp">stow --version</samp>’);
|
||||
|
||||
<ul>
|
||||
<li>the version number of Stow (‘<samp><span class="samp">stow --version</span></samp>’);
|
||||
</li><li>the version number of Perl (‘<samp class="samp">perl -v</samp>’);
|
||||
|
||||
<li>the version number of Perl (‘<samp><span class="samp">perl -v</span></samp>’);
|
||||
</li><li>the system information, which can often be obtained with ‘<samp class="samp">uname
|
||||
-a</samp>’;
|
||||
|
||||
<li>the system information, which can often be obtained with ‘<samp><span class="samp">uname
|
||||
-a</span></samp>’;
|
||||
</li><li>a description of the bug;
|
||||
|
||||
<li>a description of the bug;
|
||||
</li><li>the precise command you gave;
|
||||
|
||||
<li>the precise command you gave;
|
||||
</li><li>the output from the command (preferably verbose output, obtained by
|
||||
adding ‘<samp class="samp">--verbose=3</samp>’ to the Stow command line).
|
||||
</li></ul>
|
||||
|
||||
<li>the output from the command (preferably verbose output, obtained by
|
||||
adding ‘<samp><span class="samp">--verbose=3</span></samp>’ to the Stow command line).
|
||||
</ul>
|
||||
|
||||
<p>If you are really keen, consider developing a minimal test case and
|
||||
creating a new test. See the <samp><span class="file">t/</span></samp> directory in the source for
|
||||
<p>If you are really keen, consider developing a minimal test case and
|
||||
creating a new test. See the <samp class="file">t/</samp> directory in the source for
|
||||
lots of examples.
|
||||
</p>
|
||||
<p>Before reporting a bug, please read the manual carefully, especially
|
||||
<a class="ref" href="Known-Bugs.html">Known Bugs</a>, to see whether you’re encountering
|
||||
something that doesn’t need reporting.
|
||||
(see <a class="pxref" href="Conflicts.html">Conflicts</a>).
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<p>Before reporting a bug, please read the manual carefully, especially
|
||||
<a href="Known-Bugs.html#Known-Bugs">Known Bugs</a>, to see whether you're encountering
|
||||
something that doesn't need reporting.
|
||||
(see <a href="Conflicts.html#Conflicts">Conflicts</a>).
|
||||
|
||||
<!-- =========================================================================== -->
|
||||
</body></html>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,108 +1,146 @@
|
|||
<html lang="en">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<title>Resource Files - Stow</title>
|
||||
<meta http-equiv="Content-Type" content="text/html">
|
||||
<meta name="description" content="Stow">
|
||||
<meta name="generator" content="makeinfo 4.13">
|
||||
<link title="Top" rel="start" href="index.html#Top">
|
||||
<link rel="prev" href="Target-Maintenance.html#Target-Maintenance" title="Target Maintenance">
|
||||
<link rel="next" href="Compile_002dtime-vs-Install_002dtime.html#Compile_002dtime-vs-Install_002dtime" title="Compile-time vs Install-time">
|
||||
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
|
||||
<!--
|
||||
This manual describes GNU Stow version 2.2.2
|
||||
(9 November 2015), a program for managing the installation of software
|
||||
packages.
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!-- 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 <bobg+stow@zanshin.com>
|
||||
© 1993, 1994, 1995, 1996 Bob Glickstein <bobg+stow@zanshin.com>
|
||||
|
||||
(C) 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
© 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of
|
||||
this manual provided the copyright notice and this permission
|
||||
notice are preserved on all copies.
|
||||
© 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
|
||||
|
||||
© 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of this
|
||||
manual provided the copyright notice and this permission notice are
|
||||
preserved on all copies.
|
||||
|
||||
|
||||
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. -->
|
||||
<title>Resource Files (Stow)</title>
|
||||
|
||||
<meta name="description" content="Resource Files (Stow)">
|
||||
<meta name="keywords" content="Resource Files (Stow)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
<link href="index.html" rel="start" title="Top">
|
||||
<link href="Index.html" rel="index" title="Index">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="index.html" rel="up" title="Top">
|
||||
<link href="Compile_002dtime-vs-Install_002dtime.html" rel="next" title="Compile-time vs Install-time">
|
||||
<link href="Target-Maintenance.html" rel="prev" title="Target Maintenance">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
|
||||
div.example {margin-left: 3.2em}
|
||||
span:hover a.copiable-link {visibility: visible}
|
||||
-->
|
||||
</style>
|
||||
|
||||
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.
|
||||
-->
|
||||
<meta http-equiv="Content-Style-Type" content="text/css">
|
||||
<style type="text/css"><!--
|
||||
pre.display { font-family:inherit }
|
||||
pre.format { font-family:inherit }
|
||||
pre.smalldisplay { font-family:inherit; font-size:smaller }
|
||||
pre.smallformat { font-family:inherit; font-size:smaller }
|
||||
pre.smallexample { font-size:smaller }
|
||||
pre.smalllisp { font-size:smaller }
|
||||
span.sc { font-variant:small-caps }
|
||||
span.roman { font-family:serif; font-weight:normal; }
|
||||
span.sansserif { font-family:sans-serif; font-weight:normal; }
|
||||
--></style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="node">
|
||||
<a name="Resource-Files"></a>
|
||||
|
||||
<body lang="en">
|
||||
<div class="chapter-level-extent" id="Resource-Files">
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a rel="next" accesskey="n" href="Compile_002dtime-vs-Install_002dtime.html#Compile_002dtime-vs-Install_002dtime">Compile-time vs Install-time</a>,
|
||||
Previous: <a rel="previous" accesskey="p" href="Target-Maintenance.html#Target-Maintenance">Target Maintenance</a>,
|
||||
Up: <a rel="up" accesskey="u" href="index.html#Top">Top</a>
|
||||
<hr>
|
||||
Next: <a href="Compile_002dtime-vs-Install_002dtime.html" accesskey="n" rel="next">Compile-time vs Install-time</a>, Previous: <a href="Target-Maintenance.html" accesskey="p" rel="prev">Target Maintenance</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<h2 class="chapter" id="Resource-Files-1"><span>11 Resource Files<a class="copiable-link" href="#Resource-Files-1"> ¶</a></span></h2>
|
||||
<a class="index-entry-id" id="index-resource-files"></a>
|
||||
<a class="index-entry-id" id="index-configuration-files"></a>
|
||||
|
||||
<h2 class="chapter">11 Resource Files</h2>
|
||||
|
||||
<p><a name="index-resource-files-36"></a><a name="index-configuration-files-37"></a>
|
||||
Default command line options may be set in <samp><span class="file">.stowrc</span></samp> (current directory) or
|
||||
<samp><span class="file">~/.stowrc</span></samp> (home directory). These are parsed in that order, and effectively
|
||||
prepended to you command line. This feature can be used for some interesting
|
||||
effects.
|
||||
|
||||
<p>For example, suppose your site uses more than one stow directory, perhaps in
|
||||
<p>Default command line options may be set in <samp class="file">.stowrc</samp> (current
|
||||
directory) or <samp class="file">~/.stowrc</samp> (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.
|
||||
</p>
|
||||
<p>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
|
||||
<samp><span class="file">~/.stowrc</span></samp> file:
|
||||
<samp class="file">~/.stowrc</samp> file:
|
||||
</p>
|
||||
<div class="example">
|
||||
<pre class="example-preformatted">--dir=/usr/local/stow2
|
||||
--target=/usr/local
|
||||
--ignore='~'
|
||||
--ignore='^CVS'
|
||||
</pre></div>
|
||||
|
||||
<pre class="example"> --dir=/usr/local/stow2
|
||||
--target=/usr/local
|
||||
--ignore='~'
|
||||
--ignore='^CVS'
|
||||
</pre>
|
||||
<p>so that the <samp><span class="command">stow</span></samp> command will default to operating on the
|
||||
<samp><span class="file">/usr/local/stow2</span></samp> directory, with <samp><span class="file">/usr/local</span></samp> as the
|
||||
<p>so that the <code class="command">stow</code> command will default to operating on the
|
||||
<samp class="file">/usr/local/stow2</samp> directory, with <samp class="file">/usr/local</samp> as the
|
||||
target, and ignoring vi backup files and CVS directories.
|
||||
|
||||
<p>If you had a stow directory <samp><span class="file">/usr/local/stow/perl-extras</span></samp> that
|
||||
</p>
|
||||
<p>If you had a stow directory <samp class="file">/usr/local/stow/perl-extras</samp> that
|
||||
was only used for Perl modules, then you might place the following in
|
||||
<samp><span class="file">/usr/local/stow/perl-extras/.stowrc</span></samp>:
|
||||
<samp class="file">/usr/local/stow/perl-extras/.stowrc</samp>:
|
||||
</p>
|
||||
<div class="example">
|
||||
<pre class="example-preformatted">--dir=/usr/local/stow/perl-extras
|
||||
--target=/usr/local
|
||||
--override=bin
|
||||
--override=man
|
||||
--ignore='perllocal\.pod'
|
||||
--ignore='\.packlist'
|
||||
--ignore='\.bs'
|
||||
</pre></div>
|
||||
|
||||
<pre class="example"> --dir=/usr/local/stow/perl-extras
|
||||
--target=/usr/local
|
||||
--override=bin
|
||||
--override=man
|
||||
--ignore='perllocal\.pod'
|
||||
--ignore='\.packlist'
|
||||
--ignore='\.bs'
|
||||
</pre>
|
||||
<p>so that when you are in the <samp><span class="file">/usr/local/stow/perl-extras</span></samp>
|
||||
directory, <samp><span class="command">stow</span></samp> will regard any subdirectories as stow
|
||||
packages, with <samp><span class="file">/usr/local</span></samp> as the target (rather than the
|
||||
immediate parent directory <samp><span class="file">/usr/local/stow</span></samp>), overriding any
|
||||
<p>so that when you are in the <samp class="file">/usr/local/stow/perl-extras</samp>
|
||||
directory, <code class="command">stow</code> will regard any subdirectories as stow
|
||||
packages, with <samp class="file">/usr/local</samp> as the target (rather than the
|
||||
immediate parent directory <samp class="file">/usr/local/stow</samp>), overriding any
|
||||
pre-existing links to bin files or man pages, and ignoring some cruft
|
||||
that gets installed by default.
|
||||
</p>
|
||||
<p>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 <code class="command">--target</code> or <code class="command">--dir</code>, the command line
|
||||
option will overwrite any options in the resource file. For options that can
|
||||
be given more than once, <code class="command">--ignore</code> for example, command line
|
||||
options and resource options are appended together.
|
||||
</p>
|
||||
<p>For options that take a file path, environment variables and the tilde
|
||||
character (<code class="command">~</code>) are expanded. An environment variable can be
|
||||
given in either the <code class="command">$VAR</code> or <code class="command">${VAR}</code> form. To
|
||||
prevent expansion, escape the <code class="command">$</code> or <code class="command">~</code> with a
|
||||
backslash.
|
||||
</p>
|
||||
<p>The options <code class="command">-D</code>, <code class="command">-S</code>, and <code class="command">-R</code> are ignored in
|
||||
resource files. This is also true of any package names given in the
|
||||
resource file.
|
||||
</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a href="Compile_002dtime-vs-Install_002dtime.html">Compile-time vs Install-time</a>, Previous: <a href="Target-Maintenance.html">Target Maintenance</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
|
||||
<!-- =========================================================================== -->
|
||||
</body></html>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,98 +1,122 @@
|
|||
<html lang="en">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<title>Target Maintenance - Stow</title>
|
||||
<meta http-equiv="Content-Type" content="text/html">
|
||||
<meta name="description" content="Stow">
|
||||
<meta name="generator" content="makeinfo 4.13">
|
||||
<link title="Top" rel="start" href="index.html#Top">
|
||||
<link rel="prev" href="Multiple-Stow-Directories.html#Multiple-Stow-Directories" title="Multiple Stow Directories">
|
||||
<link rel="next" href="Resource-Files.html#Resource-Files" title="Resource Files">
|
||||
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
|
||||
<!--
|
||||
This manual describes GNU Stow version 2.2.2
|
||||
(9 November 2015), a program for managing the installation of software
|
||||
packages.
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!-- 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 <bobg+stow@zanshin.com>
|
||||
© 1993, 1994, 1995, 1996 Bob Glickstein <bobg+stow@zanshin.com>
|
||||
|
||||
(C) 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
© 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of
|
||||
this manual provided the copyright notice and this permission
|
||||
notice are preserved on all copies.
|
||||
© 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
|
||||
|
||||
© 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of this
|
||||
manual provided the copyright notice and this permission notice are
|
||||
preserved on all copies.
|
||||
|
||||
|
||||
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. -->
|
||||
<title>Target Maintenance (Stow)</title>
|
||||
|
||||
<meta name="description" content="Target Maintenance (Stow)">
|
||||
<meta name="keywords" content="Target Maintenance (Stow)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
<link href="index.html" rel="start" title="Top">
|
||||
<link href="Index.html" rel="index" title="Index">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="index.html" rel="up" title="Top">
|
||||
<link href="Resource-Files.html" rel="next" title="Resource Files">
|
||||
<link href="Multiple-Stow-Directories.html" rel="prev" title="Multiple Stow Directories">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
|
||||
div.example {margin-left: 3.2em}
|
||||
span:hover a.copiable-link {visibility: visible}
|
||||
-->
|
||||
</style>
|
||||
|
||||
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.
|
||||
-->
|
||||
<meta http-equiv="Content-Style-Type" content="text/css">
|
||||
<style type="text/css"><!--
|
||||
pre.display { font-family:inherit }
|
||||
pre.format { font-family:inherit }
|
||||
pre.smalldisplay { font-family:inherit; font-size:smaller }
|
||||
pre.smallformat { font-family:inherit; font-size:smaller }
|
||||
pre.smallexample { font-size:smaller }
|
||||
pre.smalllisp { font-size:smaller }
|
||||
span.sc { font-variant:small-caps }
|
||||
span.roman { font-family:serif; font-weight:normal; }
|
||||
span.sansserif { font-family:sans-serif; font-weight:normal; }
|
||||
--></style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="node">
|
||||
<a name="Target-Maintenance"></a>
|
||||
|
||||
<body lang="en">
|
||||
<div class="chapter-level-extent" id="Target-Maintenance">
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a rel="next" accesskey="n" href="Resource-Files.html#Resource-Files">Resource Files</a>,
|
||||
Previous: <a rel="previous" accesskey="p" href="Multiple-Stow-Directories.html#Multiple-Stow-Directories">Multiple Stow Directories</a>,
|
||||
Up: <a rel="up" accesskey="u" href="index.html#Top">Top</a>
|
||||
<hr>
|
||||
Next: <a href="Resource-Files.html" accesskey="n" rel="next">Resource Files</a>, Previous: <a href="Multiple-Stow-Directories.html" accesskey="p" rel="prev">Multiple Stow Directories</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<h2 class="chapter" id="Target-Maintenance-1"><span>10 Target Maintenance<a class="copiable-link" href="#Target-Maintenance-1"> ¶</a></span></h2>
|
||||
|
||||
<h2 class="chapter">10 Target Maintenance</h2>
|
||||
|
||||
<p><a name="index-maintenance-35"></a>From time to time you will need to clean up your target tree. Since
|
||||
version 2, Stow provides a new utility <samp><span class="command">chkstow</span></samp> to help with
|
||||
<a class="index-entry-id" id="index-maintenance"></a>
|
||||
<p>From time to time you will need to clean up your target tree. Since
|
||||
version 2, Stow provides a new utility <code class="command">chkstow</code> 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.
|
||||
</p>
|
||||
<p>The syntax of the <code class="command">chkstow</code> command is:
|
||||
</p>
|
||||
<div class="example">
|
||||
<pre class="example-preformatted">chkstow [<var class="var">options</var>]
|
||||
</pre></div>
|
||||
|
||||
<p>The syntax of the <samp><span class="command">chkstow</span></samp> command is:
|
||||
|
||||
<pre class="example"> chkstow [<var>options</var>]
|
||||
</pre>
|
||||
<p class="noindent">The following options are supported:
|
||||
|
||||
<dl>
|
||||
<dt>‘<samp><span class="samp">-t </span><var>dir</var></samp>’<dt>‘<samp><span class="samp">--target=</span><var>dir</var></samp>’<dd>Set the target directory to <var>dir</var> instead of the parent of the stow
|
||||
<p>The following options are supported:
|
||||
</p>
|
||||
<dl class="table">
|
||||
<dt>‘<samp class="samp">-t <var class="var">dir</var></samp>’</dt>
|
||||
<dt>‘<samp class="samp">--target=<var class="var">dir</var></samp>’</dt>
|
||||
<dd><p>Set the target directory to <var class="var">dir</var> instead of the parent of the stow
|
||||
directory. Defaults to the parent of the stow directory, so it is typical to
|
||||
execute <samp><span class="command">stow</span></samp> from the directory <samp><span class="file">/usr/local/stow</span></samp>.
|
||||
|
||||
<br><dt>‘<samp><span class="samp">-b</span></samp>’<dt>‘<samp><span class="samp">--badlinks</span></samp>’<dd>Checks target directory for bogus symbolic links. That is, links that point to
|
||||
execute <code class="command">stow</code> from the directory <samp class="file">/usr/local/stow</samp>.
|
||||
</p>
|
||||
</dd>
|
||||
<dt>‘<samp class="samp">-b</samp>’</dt>
|
||||
<dt>‘<samp class="samp">--badlinks</samp>’</dt>
|
||||
<dd><p>Checks target directory for bogus symbolic links. That is, links that point to
|
||||
non-existent files.
|
||||
|
||||
<br><dt>‘<samp><span class="samp">-a</span></samp>’<dt>‘<samp><span class="samp">--aliens</span></samp>’<dd>Checks for files in the target directory that are not symbolic links. The
|
||||
</p>
|
||||
</dd>
|
||||
<dt>‘<samp class="samp">-a</samp>’</dt>
|
||||
<dt>‘<samp class="samp">--aliens</samp>’</dt>
|
||||
<dd><p>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 <samp><span class="file">.stow</span></samp> file.
|
||||
|
||||
<br><dt>‘<samp><span class="samp">-l</span></samp>’<dt>‘<samp><span class="samp">--list</span></samp>’<dd>Will display the target package for every symbolic link in the stow target
|
||||
contain a <samp class="file">.stow</samp> file.
|
||||
</p>
|
||||
</dd>
|
||||
<dt>‘<samp class="samp">-l</samp>’</dt>
|
||||
<dt>‘<samp class="samp">--list</samp>’</dt>
|
||||
<dd><p>Will display the target package for every symbolic link in the stow target
|
||||
directory.
|
||||
</p>
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
</dl>
|
||||
</div>
|
||||
|
||||
<!-- =========================================================================== -->
|
||||
</body></html>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,113 +1,135 @@
|
|||
<html lang="en">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<title>Terminology - Stow</title>
|
||||
<meta http-equiv="Content-Type" content="text/html">
|
||||
<meta name="description" content="Stow">
|
||||
<meta name="generator" content="makeinfo 4.13">
|
||||
<link title="Top" rel="start" href="index.html#Top">
|
||||
<link rel="prev" href="Introduction.html#Introduction" title="Introduction">
|
||||
<link rel="next" href="Invoking-Stow.html#Invoking-Stow" title="Invoking Stow">
|
||||
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
|
||||
<!--
|
||||
This manual describes GNU Stow version 2.2.2
|
||||
(9 November 2015), a program for managing the installation of software
|
||||
packages.
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!-- 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 <bobg+stow@zanshin.com>
|
||||
© 1993, 1994, 1995, 1996 Bob Glickstein <bobg+stow@zanshin.com>
|
||||
|
||||
(C) 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
© 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of
|
||||
this manual provided the copyright notice and this permission
|
||||
notice are preserved on all copies.
|
||||
© 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
|
||||
|
||||
© 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of this
|
||||
manual provided the copyright notice and this permission notice are
|
||||
preserved on all copies.
|
||||
|
||||
|
||||
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. -->
|
||||
<title>Terminology (Stow)</title>
|
||||
|
||||
<meta name="description" content="Terminology (Stow)">
|
||||
<meta name="keywords" content="Terminology (Stow)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
<link href="index.html" rel="start" title="Top">
|
||||
<link href="Index.html" rel="index" title="Index">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="index.html" rel="up" title="Top">
|
||||
<link href="Invoking-Stow.html" rel="next" title="Invoking Stow">
|
||||
<link href="Introduction.html" rel="prev" title="Introduction">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
|
||||
span:hover a.copiable-link {visibility: visible}
|
||||
-->
|
||||
</style>
|
||||
|
||||
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.
|
||||
-->
|
||||
<meta http-equiv="Content-Style-Type" content="text/css">
|
||||
<style type="text/css"><!--
|
||||
pre.display { font-family:inherit }
|
||||
pre.format { font-family:inherit }
|
||||
pre.smalldisplay { font-family:inherit; font-size:smaller }
|
||||
pre.smallformat { font-family:inherit; font-size:smaller }
|
||||
pre.smallexample { font-size:smaller }
|
||||
pre.smalllisp { font-size:smaller }
|
||||
span.sc { font-variant:small-caps }
|
||||
span.roman { font-family:serif; font-weight:normal; }
|
||||
span.sansserif { font-family:sans-serif; font-weight:normal; }
|
||||
--></style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="node">
|
||||
<a name="Terminology"></a>
|
||||
|
||||
<body lang="en">
|
||||
<div class="chapter-level-extent" id="Terminology">
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a rel="next" accesskey="n" href="Invoking-Stow.html#Invoking-Stow">Invoking Stow</a>,
|
||||
Previous: <a rel="previous" accesskey="p" href="Introduction.html#Introduction">Introduction</a>,
|
||||
Up: <a rel="up" accesskey="u" href="index.html#Top">Top</a>
|
||||
<hr>
|
||||
Next: <a href="Invoking-Stow.html" accesskey="n" rel="next">Invoking Stow</a>, Previous: <a href="Introduction.html" accesskey="p" rel="prev">Introduction</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<h2 class="chapter" id="Terminology-1"><span>2 Terminology<a class="copiable-link" href="#Terminology-1"> ¶</a></span></h2>
|
||||
|
||||
<h2 class="chapter">2 Terminology</h2>
|
||||
|
||||
<p class="indent"><a name="index-package-1"></a>A <dfn>package</dfn> is a related collection of files and directories that
|
||||
<a class="index-entry-id" id="index-package"></a>
|
||||
<p>A <em class="dfn">package</em> 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
|
||||
<samp><span class="file">bin</span></samp>, <samp><span class="file">lib</span></samp>, and <samp><span class="file">man</span></samp> subdirectories.
|
||||
|
||||
<p><a name="index-target-directory-2"></a>A <dfn>target directory</dfn> is the root of a tree in which one or more
|
||||
packages wish to <em>appear</em> to be installed. A common, but by no
|
||||
means the only such location is <samp><span class="file">/usr/local</span></samp>. The examples in this
|
||||
manual will use <samp><span class="file">/usr/local</span></samp> as the target directory.
|
||||
|
||||
<p><a name="index-stow-directory-3"></a>A <dfn>stow directory</dfn> is the root of a tree containing separate
|
||||
<samp class="file">bin</samp>, <samp class="file">lib</samp>, and <samp class="file">man</samp> subdirectories.
|
||||
</p>
|
||||
<a class="index-entry-id" id="index-target-directory"></a>
|
||||
<p>A <em class="dfn">target directory</em> is the root of a tree in which one or more
|
||||
packages wish to <em class="emph">appear</em> to be installed. A common, but by no
|
||||
means the only such location is <samp class="file">/usr/local</samp>. The examples in this
|
||||
manual will use <samp class="file">/usr/local</samp> as the target directory.
|
||||
</p>
|
||||
<a class="index-entry-id" id="index-stow-directory"></a>
|
||||
<p>A <em class="dfn">stow directory</em> 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 <samp><span class="file">/usr/local/stow</span></samp> as the stow directory, so that
|
||||
individual packages will be, for example, <samp><span class="file">/usr/local/stow/perl</span></samp>
|
||||
and <samp><span class="file">/usr/local/stow/emacs</span></samp>.
|
||||
|
||||
<p><a name="index-installation-image-4"></a>An <dfn>installation image</dfn> is the layout of files and directories
|
||||
will use <samp class="file">/usr/local/stow</samp> as the stow directory, so that
|
||||
individual packages will be, for example, <samp class="file">/usr/local/stow/perl</samp>
|
||||
and <samp class="file">/usr/local/stow/emacs</samp>.
|
||||
</p>
|
||||
<a class="index-entry-id" id="index-installation-image"></a>
|
||||
<p>An <em class="dfn">installation image</em> is the layout of files and directories
|
||||
required by a package, relative to the target directory. Thus, the
|
||||
installation image for Perl includes: a <samp><span class="file">bin</span></samp> directory containing
|
||||
<samp><span class="file">perl</span></samp> and <samp><span class="file">a2p</span></samp> (among others); an <samp><span class="file">info</span></samp> directory
|
||||
containing Texinfo documentation; a <samp><span class="file">lib/perl</span></samp> directory containing
|
||||
Perl libraries; and a <samp><span class="file">man/man1</span></samp> directory containing man pages.
|
||||
|
||||
<p><a name="index-package-directory-5"></a><a name="index-package-name-6"></a>A <dfn>package directory</dfn> is the root of a tree containing the
|
||||
installation image for Perl includes: a <samp class="file">bin</samp> directory containing
|
||||
<samp class="file">perl</samp> and <samp class="file">a2p</samp> (among others); an <samp class="file">info</samp> directory
|
||||
containing Texinfo documentation; a <samp class="file">lib/perl</samp> directory containing
|
||||
Perl libraries; and a <samp class="file">man/man1</samp> directory containing man pages.
|
||||
</p>
|
||||
<a class="index-entry-id" id="index-package-directory"></a>
|
||||
<a class="index-entry-id" id="index-package-name"></a>
|
||||
<p>A <em class="dfn">package directory</em> 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
|
||||
<samp><span class="file">/usr/local/stow/perl</span></samp> must reside in the stow directory
|
||||
<samp><span class="file">/usr/local/stow</span></samp>. The <dfn>name</dfn> of a package is the name of its
|
||||
directory within the stow directory — e.g., <samp><span class="file">perl</span></samp>.
|
||||
|
||||
<p>Thus, the Perl executable might reside in
|
||||
<samp><span class="file">/usr/local/stow/perl/bin/perl</span></samp>, where <samp><span class="file">/usr/local</span></samp> is the
|
||||
target directory, <samp><span class="file">/usr/local/stow</span></samp> is the stow directory,
|
||||
<samp><span class="file">/usr/local/stow/perl</span></samp> is the package directory, and
|
||||
<samp><span class="file">bin/perl</span></samp> within is part of the installation image.
|
||||
|
||||
<p><a name="index-symlink-7"></a><a name="index-relative-symlink-8"></a><a name="index-absolute-symlink-9"></a>A <dfn>symlink</dfn> is a symbolic link. A symlink can be <dfn>relative</dfn> or
|
||||
<dfn>absolute</dfn>. An absolute symlink names a full path; that is, one
|
||||
starting from <samp><span class="file">/</span></samp>. A relative symlink names a relative path; that
|
||||
is, one not starting from <samp><span class="file">/</span></samp>. The target of a relative symlink is
|
||||
computed starting from the symlink's own directory. Stow only
|
||||
<samp class="file">/usr/local/stow/perl</samp> must reside in the stow directory
|
||||
<samp class="file">/usr/local/stow</samp>. The <em class="dfn">name</em> of a package is the name of its
|
||||
directory within the stow directory — e.g., <samp class="file">perl</samp>.
|
||||
</p>
|
||||
<p>Thus, the Perl executable might reside in
|
||||
<samp class="file">/usr/local/stow/perl/bin/perl</samp>, where <samp class="file">/usr/local</samp> is the
|
||||
target directory, <samp class="file">/usr/local/stow</samp> is the stow directory,
|
||||
<samp class="file">/usr/local/stow/perl</samp> is the package directory, and
|
||||
<samp class="file">bin/perl</samp> within is part of the installation image.
|
||||
</p>
|
||||
<a class="index-entry-id" id="index-symlink"></a>
|
||||
<a class="index-entry-id" id="index-relative-symlink"></a>
|
||||
<a class="index-entry-id" id="index-absolute-symlink"></a>
|
||||
<p>A <em class="dfn">symlink</em> is a symbolic link. A symlink can be <em class="dfn">relative</em> or
|
||||
<em class="dfn">absolute</em>. An absolute symlink names a full path; that is, one
|
||||
starting from <samp class="file">/</samp>. A relative symlink names a relative path; that
|
||||
is, one not starting from <samp class="file">/</samp>. The target of a relative symlink is
|
||||
computed starting from the symlink’s own directory. Stow only
|
||||
creates relative symlinks.
|
||||
</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a href="Invoking-Stow.html">Invoking Stow</a>, Previous: <a href="Introduction.html">Introduction</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
|
||||
<!-- =========================================================================== -->
|
||||
</body></html>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1 +1,55 @@
|
|||
<meta http-equiv="refresh" content="0; url=Installing-Packages.html#Tree%20unfolding">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!-- 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:
|
||||
|
||||
© 1993, 1994, 1995, 1996 Bob Glickstein <bobg+stow@zanshin.com>
|
||||
|
||||
|
||||
© 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
|
||||
© 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
|
||||
|
||||
© 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of this
|
||||
manual provided the copyright notice and this permission notice are
|
||||
preserved on all copies.
|
||||
|
||||
|
||||
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. -->
|
||||
<title>Tree unfolding (Stow)</title>
|
||||
|
||||
<meta name="description" content="Tree unfolding (Stow)">
|
||||
<meta name="keywords" content="Tree unfolding (Stow)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Installing-Packages.html#Tree-unfolding">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Installing-Packages.html#Tree-unfolding">Tree unfolding</a>.</p>
|
||||
</body>
|
||||
|
|
|
@ -1,167 +1,182 @@
|
|||
<html lang="en">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<title>Types And Syntax Of Ignore Lists - Stow</title>
|
||||
<meta http-equiv="Content-Type" content="text/html">
|
||||
<meta name="description" content="Stow">
|
||||
<meta name="generator" content="makeinfo 4.13">
|
||||
<link title="Top" rel="start" href="index.html#Top">
|
||||
<link rel="up" href="Ignore-Lists.html#Ignore-Lists" title="Ignore Lists">
|
||||
<link rel="prev" href="Motivation-For-Ignore-Lists.html#Motivation-For-Ignore-Lists" title="Motivation For Ignore Lists">
|
||||
<link rel="next" href="Justification-For-Yet-Another-Set-Of-Ignore-Files.html#Justification-For-Yet-Another-Set-Of-Ignore-Files" title="Justification For Yet Another Set Of Ignore Files">
|
||||
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
|
||||
<!--
|
||||
This manual describes GNU Stow version 2.2.2
|
||||
(9 November 2015), a program for managing the installation of software
|
||||
packages.
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!-- 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 <bobg+stow@zanshin.com>
|
||||
© 1993, 1994, 1995, 1996 Bob Glickstein <bobg+stow@zanshin.com>
|
||||
|
||||
(C) 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
© 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of
|
||||
this manual provided the copyright notice and this permission
|
||||
notice are preserved on all copies.
|
||||
© 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
|
||||
|
||||
© 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of this
|
||||
manual provided the copyright notice and this permission notice are
|
||||
preserved on all copies.
|
||||
|
||||
|
||||
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. -->
|
||||
<title>Types And Syntax Of Ignore Lists (Stow)</title>
|
||||
|
||||
<meta name="description" content="Types And Syntax Of Ignore Lists (Stow)">
|
||||
<meta name="keywords" content="Types And Syntax Of Ignore Lists (Stow)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
<link href="index.html" rel="start" title="Top">
|
||||
<link href="Index.html" rel="index" title="Index">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="Ignore-Lists.html" rel="up" title="Ignore Lists">
|
||||
<link href="Justification-For-Yet-Another-Set-Of-Ignore-Files.html" rel="next" title="Justification For Yet Another Set Of Ignore Files">
|
||||
<link href="Motivation-For-Ignore-Lists.html" rel="prev" title="Motivation For Ignore Lists">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
|
||||
div.example {margin-left: 3.2em}
|
||||
span:hover a.copiable-link {visibility: visible}
|
||||
-->
|
||||
</style>
|
||||
|
||||
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.
|
||||
-->
|
||||
<meta http-equiv="Content-Style-Type" content="text/css">
|
||||
<style type="text/css"><!--
|
||||
pre.display { font-family:inherit }
|
||||
pre.format { font-family:inherit }
|
||||
pre.smalldisplay { font-family:inherit; font-size:smaller }
|
||||
pre.smallformat { font-family:inherit; font-size:smaller }
|
||||
pre.smallexample { font-size:smaller }
|
||||
pre.smalllisp { font-size:smaller }
|
||||
span.sc { font-variant:small-caps }
|
||||
span.roman { font-family:serif; font-weight:normal; }
|
||||
span.sansserif { font-family:sans-serif; font-weight:normal; }
|
||||
--></style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="node">
|
||||
<a name="Types-And-Syntax-Of-Ignore-Lists"></a>
|
||||
<p>
|
||||
Next: <a rel="next" accesskey="n" href="Justification-For-Yet-Another-Set-Of-Ignore-Files.html#Justification-For-Yet-Another-Set-Of-Ignore-Files">Justification For Yet Another Set Of Ignore Files</a>,
|
||||
Previous: <a rel="previous" accesskey="p" href="Motivation-For-Ignore-Lists.html#Motivation-For-Ignore-Lists">Motivation For Ignore Lists</a>,
|
||||
Up: <a rel="up" accesskey="u" href="Ignore-Lists.html#Ignore-Lists">Ignore Lists</a>
|
||||
<hr>
|
||||
</div>
|
||||
|
||||
<h3 class="section">4.2 Types And Syntax Of Ignore Lists</h3>
|
||||
<body lang="en">
|
||||
<div class="section-level-extent" id="Types-And-Syntax-Of-Ignore-Lists">
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a href="Justification-For-Yet-Another-Set-Of-Ignore-Files.html" accesskey="n" rel="next">Justification For Yet Another Set Of Ignore Files</a>, Previous: <a href="Motivation-For-Ignore-Lists.html" accesskey="p" rel="prev">Motivation For Ignore Lists</a>, Up: <a href="Ignore-Lists.html" accesskey="u" rel="up">Ignore Lists</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<h3 class="section" id="Types-And-Syntax-Of-Ignore-Lists-1"><span>4.2 Types And Syntax Of Ignore Lists<a class="copiable-link" href="#Types-And-Syntax-Of-Ignore-Lists-1"> ¶</a></span></h3>
|
||||
|
||||
<p>If you put Perl regular expressions, one per line, in a
|
||||
<samp><span class="file">.stow-local-ignore</span></samp> file within any top level package directory,
|
||||
<samp class="file">.stow-local-ignore</samp> 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
|
||||
<samp><span class="file">~/.stow-global-ignore</span></samp>, if it exists. If neither the
|
||||
<samp class="file">~/.stow-global-ignore</samp>, 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:
|
||||
</p>
|
||||
<div class="example">
|
||||
<pre class="verbatim"># Comments and blank lines are allowed.
|
||||
|
||||
<pre class="example"><pre class="verbatim"> # 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
|
||||
</pre></pre>
|
||||
<p>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
|
||||
</pre></div>
|
||||
|
||||
<p>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 ‘<samp><span class="samp">#</span></samp>’ symbol in a regular expression, escape it with a
|
||||
include the ‘<samp class="samp">#</samp>’ 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 ‘<samp><span class="samp">/</span></samp>’ forward
|
||||
of two sets depending on whether it contains the ‘<samp class="samp">/</samp>’ forward
|
||||
slash symbol.
|
||||
|
||||
<p>Then in order to determine whether a file or directory should be
|
||||
</p>
|
||||
<p>Then in order to determine whether a file or directory should be
|
||||
ignored:
|
||||
|
||||
<ol type=1 start=1>
|
||||
<li>Stow calculates its path relative to the top-level package directory,
|
||||
prefixing that with ‘<samp><span class="samp">/</span></samp>’. If any of the regular expressions
|
||||
containing a ‘<samp><span class="samp">/</span></samp>’ <em>exactly</em><a rel="footnote" href="#fn-1" name="fnd-1"><sup>1</sup></a> match
|
||||
a subpath<a rel="footnote" href="#fn-2" name="fnd-2"><sup>2</sup></a> of this relative path, then the file or
|
||||
</p>
|
||||
<ol class="enumerate">
|
||||
<li> Stow calculates its path relative to the top-level package directory,
|
||||
prefixing that with ‘<samp class="samp">/</samp>’. If any of the regular expressions
|
||||
containing a ‘<samp class="samp">/</samp>’ <em class="emph">exactly</em><a class="footnote" id="DOCF4" href="#FOOT4"><sup>4</sup></a> match
|
||||
a subpath<a class="footnote" id="DOCF5" href="#FOOT5"><sup>5</sup></a> of this relative path, then the file or
|
||||
directory will be ignored.
|
||||
|
||||
<li>If none of the regular expressions containing a ‘<samp><span class="samp">/</span></samp>’ match in the
|
||||
</li><li> If none of the regular expressions containing a ‘<samp class="samp">/</samp>’ match in the
|
||||
manner described above, Stow checks whether the
|
||||
<em>basename</em><a rel="footnote" href="#fn-3" name="fnd-3"><sup>3</sup></a> of the file or directory matches
|
||||
<em>exactly</em> against the remaining regular expressions which do not
|
||||
contain a ‘<samp><span class="samp">/</span></samp>’, and if so, ignores the file or directory.
|
||||
<em class="emph">basename</em><a class="footnote" id="DOCF6" href="#FOOT6"><sup>6</sup></a> of the file or directory matches
|
||||
<em class="emph">exactly</em> against the remaining regular expressions which do not
|
||||
contain a ‘<samp class="samp">/</samp>’, and if so, ignores the file or directory.
|
||||
|
||||
<li>Otherwise, the file or directory is not ignored.
|
||||
</ol>
|
||||
</li><li> Otherwise, the file or directory is not ignored.
|
||||
</li></ol>
|
||||
|
||||
<!-- N.B. if you change the examples below, please also consider -->
|
||||
<!-- updating test_examples_in_manual() in t/ignore.t. -->
|
||||
<p>For example, if a file <samp><span class="file">bazqux</span></samp> is in the <samp><span class="file">foo/bar</span></samp>
|
||||
|
||||
<p>For example, if a file <samp class="file">bazqux</samp> is in the <samp class="file">foo/bar</samp>
|
||||
subdirectory of the package directory, Stow would use
|
||||
‘<samp><span class="samp">/foo/bar/bazqux</span></samp>’ as the text for matching against regular
|
||||
expressions which contain ‘<samp><span class="samp">/</span></samp>’, and ‘<samp><span class="samp">bazqux</span></samp>’ as the text for
|
||||
matching against regular expressions which don't contain ‘<samp><span class="samp">/</span></samp>’.
|
||||
Then regular expressions ‘<samp><span class="samp">bazqux</span></samp>’, ‘<samp><span class="samp">baz.*</span></samp>’, ‘<samp><span class="samp">.*qux</span></samp>’,
|
||||
‘<samp><span class="samp">bar/.*x</span></samp>’, and ‘<samp><span class="samp">^/foo/.*qux</span></samp>’ would all match (causing the
|
||||
file to be ignored), whereas ‘<samp><span class="samp">bar</span></samp>’, ‘<samp><span class="samp">baz</span></samp>’, ‘<samp><span class="samp">qux</span></samp>’, and
|
||||
‘<samp><span class="samp">o/bar/b</span></samp>’ would not (although ‘<samp><span class="samp">bar</span></samp>’ would cause its parent
|
||||
‘<samp class="samp">/foo/bar/bazqux</samp>’ as the text for matching against regular
|
||||
expressions which contain ‘<samp class="samp">/</samp>’, and ‘<samp class="samp">bazqux</samp>’ as the text for
|
||||
matching against regular expressions which don’t contain ‘<samp class="samp">/</samp>’.
|
||||
Then regular expressions ‘<samp class="samp">bazqux</samp>’, ‘<samp class="samp">baz.*</samp>’, ‘<samp class="samp">.*qux</samp>’,
|
||||
‘<samp class="samp">bar/.*x</samp>’, and ‘<samp class="samp">^/foo/.*qux</samp>’ would all match (causing the
|
||||
file to be ignored), whereas ‘<samp class="samp">bar</samp>’, ‘<samp class="samp">baz</samp>’, ‘<samp class="samp">qux</samp>’, and
|
||||
‘<samp class="samp">o/bar/b</samp>’ would not (although ‘<samp class="samp">bar</samp>’ would cause its parent
|
||||
directory to be ignored and prevent Stow from recursing into that
|
||||
anyway, in which case the file <samp><span class="file">bazqux</span></samp> would not even be
|
||||
anyway, in which case the file <samp class="file">bazqux</samp> would not even be
|
||||
considered for stowing).
|
||||
|
||||
<p>As a special exception to the above algorithm, any
|
||||
<samp><span class="file">.stow-local-ignore</span></samp> present in the top-level package directory
|
||||
is <em>always</em> ignored, regardless of the contents of any ignore
|
||||
</p>
|
||||
<p>As a special exception to the above algorithm, any
|
||||
<samp class="file">.stow-local-ignore</samp> present in the top-level package directory
|
||||
is <em class="emph">always</em> ignored, regardless of the contents of any ignore
|
||||
list, because this file serves no purpose outside the stow directory.
|
||||
|
||||
<!-- =========================================================================== -->
|
||||
<div class="footnote">
|
||||
</p>
|
||||
</div>
|
||||
<div class="footnotes-segment">
|
||||
<hr>
|
||||
<h4>Footnotes</h4><p class="footnote"><small>[<a name="fn-1" href="#fnd-1">1</a>]</small> Exact matching means the
|
||||
<h4 class="footnotes-heading">Footnotes</h4>
|
||||
|
||||
<h5 class="footnote-body-heading"><a id="FOOT4" href="#DOCF4">(4)</a></h5>
|
||||
<p>Exact matching means the
|
||||
regular expression is anchored at the beginning and end, in contrast
|
||||
to unanchored regular expressions which will match a substring.</p>
|
||||
|
||||
<p class="footnote"><small>[<a name="fn-2" href="#fnd-2">2</a>]</small> In this context, “subpath” means a contiguous
|
||||
<h5 class="footnote-body-heading"><a id="FOOT5" href="#DOCF5">(5)</a></h5>
|
||||
<p>In this context, “subpath” means a contiguous
|
||||
subset of path segments; e.g for the relative path
|
||||
<samp><span class="file">one/two/three</span></samp>, there are six valid subpaths: <samp><span class="file">one</span></samp>,
|
||||
<samp><span class="file">two</span></samp>, <samp><span class="file">three</span></samp>, <samp><span class="file">one/two</span></samp>, <samp><span class="file">two/three</span></samp>,
|
||||
<samp><span class="file">one/two/three</span></samp>.</p>
|
||||
|
||||
<p class="footnote"><small>[<a name="fn-3" href="#fnd-3">3</a>]</small> The “basename” is the name of the file or
|
||||
<samp class="file">one/two/three</samp>, there are six valid subpaths: <samp class="file">one</samp>,
|
||||
<samp class="file">two</samp>, <samp class="file">three</samp>, <samp class="file">one/two</samp>, <samp class="file">two/three</samp>,
|
||||
<samp class="file">one/two/three</samp>.</p>
|
||||
<h5 class="footnote-body-heading"><a id="FOOT6" href="#DOCF6">(6)</a></h5>
|
||||
<p>The “basename” is the name of the file or
|
||||
directory itself, excluding any directory path prefix - as returned by
|
||||
the <samp><span class="command">basename</span></samp> command.</p>
|
||||
the <code class="command">basename</code> command.</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a href="Justification-For-Yet-Another-Set-Of-Ignore-Files.html">Justification For Yet Another Set Of Ignore Files</a>, Previous: <a href="Motivation-For-Ignore-Lists.html">Motivation For Ignore Lists</a>, Up: <a href="Ignore-Lists.html">Ignore Lists</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
|
||||
<hr></div>
|
||||
|
||||
</body></html>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,164 +1,211 @@
|
|||
<html lang="en">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<title>Stow</title>
|
||||
<meta http-equiv="Content-Type" content="text/html">
|
||||
<meta name="description" content="Stow">
|
||||
<meta name="generator" content="makeinfo 4.13">
|
||||
<link title="Top" rel="start" href="#Top">
|
||||
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
|
||||
<!--
|
||||
This manual describes GNU Stow version 2.2.2
|
||||
(9 November 2015), a program for managing the installation of software
|
||||
packages.
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!-- 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 <bobg+stow@zanshin.com>
|
||||
© 1993, 1994, 1995, 1996 Bob Glickstein <bobg+stow@zanshin.com>
|
||||
|
||||
(C) 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
© 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
(C) 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of
|
||||
this manual provided the copyright notice and this permission
|
||||
notice are preserved on all copies.
|
||||
© 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
|
||||
|
||||
© 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of this
|
||||
manual provided the copyright notice and this permission notice are
|
||||
preserved on all copies.
|
||||
|
||||
|
||||
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. -->
|
||||
<title>Index (Stow)</title>
|
||||
|
||||
<meta name="description" content="Index (Stow)">
|
||||
<meta name="keywords" content="Index (Stow)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
<link href="index.html" rel="start" title="Top">
|
||||
<link href="#Index" rel="index" title="Index">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="index.html" rel="up" title="Top">
|
||||
<link href="GNU-General-Public-License.html" rel="prev" title="GNU General Public License">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
|
||||
a.summary-letter-printindex {text-decoration: none}
|
||||
span:hover a.copiable-link {visibility: visible}
|
||||
td.printindex-index-entry {vertical-align: top}
|
||||
td.printindex-index-section {vertical-align: top; padding-left: 1em}
|
||||
th.entries-header-printindex {text-align:left}
|
||||
th.sections-header-printindex {text-align:left; padding-left: 1em}
|
||||
-->
|
||||
</style>
|
||||
|
||||
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.
|
||||
-->
|
||||
<meta http-equiv="Content-Style-Type" content="text/css">
|
||||
<style type="text/css"><!--
|
||||
pre.display { font-family:inherit }
|
||||
pre.format { font-family:inherit }
|
||||
pre.smalldisplay { font-family:inherit; font-size:smaller }
|
||||
pre.smallformat { font-family:inherit; font-size:smaller }
|
||||
pre.smallexample { font-size:smaller }
|
||||
pre.smalllisp { font-size:smaller }
|
||||
span.sc { font-variant:small-caps }
|
||||
span.roman { font-family:serif; font-weight:normal; }
|
||||
span.sansserif { font-family:sans-serif; font-weight:normal; }
|
||||
--></style>
|
||||
</head>
|
||||
<body>
|
||||
<h1 class="settitle">Stow</h1>
|
||||
<div class="contents">
|
||||
<h2>Table of Contents</h2>
|
||||
<ul>
|
||||
<li><a name="toc_Top" href="index.html#Top">Stow</a>
|
||||
<li><a name="toc_Introduction" href="Introduction.html#Introduction">1 Introduction</a>
|
||||
<li><a name="toc_Terminology" href="Terminology.html#Terminology">2 Terminology</a>
|
||||
<li><a name="toc_Invoking-Stow" href="Invoking-Stow.html#Invoking-Stow">3 Invoking Stow</a>
|
||||
<li><a name="toc_Ignore-Lists" href="Ignore-Lists.html#Ignore-Lists">4 Ignore Lists</a>
|
||||
<ul>
|
||||
<li><a href="Motivation-For-Ignore-Lists.html#Motivation-For-Ignore-Lists">4.1 Motivation For Ignore Lists</a>
|
||||
<li><a href="Types-And-Syntax-Of-Ignore-Lists.html#Types-And-Syntax-Of-Ignore-Lists">4.2 Types And Syntax Of Ignore Lists</a>
|
||||
<li><a href="Justification-For-Yet-Another-Set-Of-Ignore-Files.html#Justification-For-Yet-Another-Set-Of-Ignore-Files">4.3 Justification For Yet Another Set Of Ignore Files</a>
|
||||
</li></ul>
|
||||
<li><a name="toc_Installing-Packages" href="Installing-Packages.html#Installing-Packages">5 Installing Packages</a>
|
||||
<ul>
|
||||
<li><a href="Installing-Packages.html#Installing-Packages">5.1 Tree folding</a>
|
||||
<li><a href="Installing-Packages.html#Installing-Packages">5.2 Tree unfolding</a>
|
||||
<li><a href="Installing-Packages.html#Installing-Packages">5.3 Ownership</a>
|
||||
<li><a href="Installing-Packages.html#Installing-Packages">5.4 Conflicts during installation</a>
|
||||
</li></ul>
|
||||
<li><a name="toc_Deleting-Packages" href="Deleting-Packages.html#Deleting-Packages">6 Deleting Packages</a>
|
||||
<ul>
|
||||
<li><a href="Deleting-Packages.html#Deleting-Packages">6.1 Refolding “foldable” trees.</a>
|
||||
</li></ul>
|
||||
<li><a name="toc_Conflicts" href="Conflicts.html#Conflicts">7 Conflicts</a>
|
||||
<ul>
|
||||
<li><a href="Conflicts.html#Conflicts">7.1 Deferred Operation</a>
|
||||
</li></ul>
|
||||
<li><a name="toc_Mixing-Operations" href="Mixing-Operations.html#Mixing-Operations">8 Mixing Operations</a>
|
||||
<li><a name="toc_Multiple-Stow-Directories" href="Multiple-Stow-Directories.html#Multiple-Stow-Directories">9 Multiple Stow Directories</a>
|
||||
<li><a name="toc_Target-Maintenance" href="Target-Maintenance.html#Target-Maintenance">10 Target Maintenance</a>
|
||||
<li><a name="toc_Resource-Files" href="Resource-Files.html#Resource-Files">11 Resource Files</a>
|
||||
<li><a name="toc_Compile_002dtime-vs-Install_002dtime" href="Compile_002dtime-vs-Install_002dtime.html#Compile_002dtime-vs-Install_002dtime">12 Compile-time vs Install-time</a>
|
||||
<ul>
|
||||
<li><a href="Compile_002dtime-vs-Install_002dtime.html#Compile_002dtime-vs-Install_002dtime">12.1 Advice on changing compilation and installation parameters</a>
|
||||
<li><a href="GNU-Emacs.html#GNU-Emacs">12.2 GNU Emacs</a>
|
||||
<li><a href="Other-FSF-Software.html#Other-FSF-Software">12.3 Other FSF Software</a>
|
||||
<li><a href="Cygnus-Software.html#Cygnus-Software">12.4 Cygnus Software</a>
|
||||
<li><a href="Perl-and-Perl-5-Modules.html#Perl-and-Perl-5-Modules">12.5 Perl and Perl 5 Modules</a>
|
||||
</li></ul>
|
||||
<li><a name="toc_Bootstrapping" href="Bootstrapping.html#Bootstrapping">13 Bootstrapping</a>
|
||||
<li><a name="toc_Reporting-Bugs" href="Reporting-Bugs.html#Reporting-Bugs">14 Reporting Bugs</a>
|
||||
<li><a name="toc_Known-Bugs" href="Known-Bugs.html#Known-Bugs">15 Known Bugs</a>
|
||||
<li><a name="toc_GNU-General-Public-License" href="GNU-General-Public-License.html#GNU-General-Public-License">GNU General Public License</a>
|
||||
<ul>
|
||||
<li><a href="GNU-General-Public-License.html#GNU-General-Public-License">Preamble</a>
|
||||
<li><a href="GNU-General-Public-License.html#GNU-General-Public-License">How to Apply These Terms to Your New Programs</a>
|
||||
</li></ul>
|
||||
<li><a name="toc_Index" href="Index.html#Index">Index</a>
|
||||
</li></ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<!-- ========================================================================== -->
|
||||
<div class="node">
|
||||
<a name="Top"></a>
|
||||
<body lang="en">
|
||||
<div class="unnumbered-level-extent" id="Index">
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Next: <a rel="next" accesskey="n" href="Introduction.html#Introduction">Introduction</a>,
|
||||
Up: <a rel="up" accesskey="u" href="../index.html#dir">(dir)</a>
|
||||
Previous: <a href="GNU-General-Public-License.html" accesskey="p" rel="prev">GNU General Public License</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<h2 class="unnumbered" id="Index-1"><span>Index<a class="copiable-link" href="#Index-1"> ¶</a></span></h2>
|
||||
|
||||
<div class="printindex cp-printindex">
|
||||
<table class="cp-letters-header-printindex"><tr><th>Jump to: </th><td><a class="summary-letter-printindex" href="#Index_cp_letter-A"><b>A</b></a>
|
||||
|
||||
<a class="summary-letter-printindex" href="#Index_cp_letter-C"><b>C</b></a>
|
||||
|
||||
<a class="summary-letter-printindex" href="#Index_cp_letter-D"><b>D</b></a>
|
||||
|
||||
<a class="summary-letter-printindex" href="#Index_cp_letter-F"><b>F</b></a>
|
||||
|
||||
<a class="summary-letter-printindex" href="#Index_cp_letter-I"><b>I</b></a>
|
||||
|
||||
<a class="summary-letter-printindex" href="#Index_cp_letter-M"><b>M</b></a>
|
||||
|
||||
<a class="summary-letter-printindex" href="#Index_cp_letter-O"><b>O</b></a>
|
||||
|
||||
<a class="summary-letter-printindex" href="#Index_cp_letter-P"><b>P</b></a>
|
||||
|
||||
<a class="summary-letter-printindex" href="#Index_cp_letter-R"><b>R</b></a>
|
||||
|
||||
<a class="summary-letter-printindex" href="#Index_cp_letter-S"><b>S</b></a>
|
||||
|
||||
<a class="summary-letter-printindex" href="#Index_cp_letter-T"><b>T</b></a>
|
||||
|
||||
<a class="summary-letter-printindex" href="#Index_cp_letter-U"><b>U</b></a>
|
||||
|
||||
<a class="summary-letter-printindex" href="#Index_cp_letter-V"><b>V</b></a>
|
||||
|
||||
</td></tr></table>
|
||||
<table class="cp-entries-printindex" border="0">
|
||||
<tr><td></td><th class="entries-header-printindex">Index Entry</th><th class="sections-header-printindex">Section</th></tr>
|
||||
<tr><td colspan="3"><hr></td></tr>
|
||||
<tr><th id="Index_cp_letter-A">A</th></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Terminology.html#index-absolute-symlink">absolute symlink</a></td><td class="printindex-index-section"><a href="Terminology.html">Terminology</a></td></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Invoking-Stow.html#index-adopting-existing-files">adopting existing files</a></td><td class="printindex-index-section"><a href="Invoking-Stow.html">Invoking Stow</a></td></tr>
|
||||
<tr><td colspan="3"><hr></td></tr>
|
||||
<tr><th id="Index_cp_letter-C">C</th></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Resource-Files.html#index-configuration-files">configuration files</a></td><td class="printindex-index-section"><a href="Resource-Files.html">Resource Files</a></td></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Installing-Packages.html#index-conflicts">conflicts</a></td><td class="printindex-index-section"><a href="Installing-Packages.html">Installing Packages</a></td></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Conflicts.html#index-conflicts-1">conflicts</a></td><td class="printindex-index-section"><a href="Conflicts.html">Conflicts</a></td></tr>
|
||||
<tr><td colspan="3"><hr></td></tr>
|
||||
<tr><th id="Index_cp_letter-D">D</th></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Conflicts.html#index-deferred-operation">deferred operation</a></td><td class="printindex-index-section"><a href="Conflicts.html">Conflicts</a></td></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Mixing-Operations.html#index-deferred-operation-1">deferred operation</a></td><td class="printindex-index-section"><a href="Mixing-Operations.html">Mixing Operations</a></td></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Deleting-Packages.html#index-deletion">deletion</a></td><td class="printindex-index-section"><a href="Deleting-Packages.html">Deleting Packages</a></td></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Installing-Packages.html#index-directory-folding">directory folding</a></td><td class="printindex-index-section"><a href="Installing-Packages.html">Installing Packages</a></td></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Invoking-Stow.html#index-dotfiles">dotfiles</a></td><td class="printindex-index-section"><a href="Invoking-Stow.html">Invoking Stow</a></td></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Invoking-Stow.html#index-dry-run">dry run</a></td><td class="printindex-index-section"><a href="Invoking-Stow.html">Invoking Stow</a></td></tr>
|
||||
<tr><td colspan="3"><hr></td></tr>
|
||||
<tr><th id="Index_cp_letter-F">F</th></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Installing-Packages.html#index-folding-trees">folding trees</a></td><td class="printindex-index-section"><a href="Installing-Packages.html">Installing Packages</a></td></tr>
|
||||
<tr><td colspan="3"><hr></td></tr>
|
||||
<tr><th id="Index_cp_letter-I">I</th></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Ignore-Lists.html#index-ignore-lists">ignore lists</a></td><td class="printindex-index-section"><a href="Ignore-Lists.html">Ignore Lists</a></td></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Motivation-For-Ignore-Lists.html#index-ignore-lists-1">ignore lists</a></td><td class="printindex-index-section"><a href="Motivation-For-Ignore-Lists.html">Motivation For Ignore Lists</a></td></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Ignore-Lists.html#index-ignoring-files-and-directories">ignoring files and directories</a></td><td class="printindex-index-section"><a href="Ignore-Lists.html">Ignore Lists</a></td></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Installing-Packages.html#index-installation">installation</a></td><td class="printindex-index-section"><a href="Installing-Packages.html">Installing Packages</a></td></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Installing-Packages.html#index-installation-conflicts">installation conflicts</a></td><td class="printindex-index-section"><a href="Installing-Packages.html">Installing Packages</a></td></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Terminology.html#index-installation-image">installation image</a></td><td class="printindex-index-section"><a href="Terminology.html">Terminology</a></td></tr>
|
||||
<tr><td colspan="3"><hr></td></tr>
|
||||
<tr><th id="Index_cp_letter-M">M</th></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Target-Maintenance.html#index-maintenance">maintenance</a></td><td class="printindex-index-section"><a href="Target-Maintenance.html">Target Maintenance</a></td></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Mixing-Operations.html#index-mixing-operations">mixing operations</a></td><td class="printindex-index-section"><a href="Mixing-Operations.html">Mixing Operations</a></td></tr>
|
||||
<tr><td colspan="3"><hr></td></tr>
|
||||
<tr><th id="Index_cp_letter-O">O</th></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Installing-Packages.html#index-ownership">ownership</a></td><td class="printindex-index-section"><a href="Installing-Packages.html">Installing Packages</a></td></tr>
|
||||
<tr><td colspan="3"><hr></td></tr>
|
||||
<tr><th id="Index_cp_letter-P">P</th></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Terminology.html#index-package">package</a></td><td class="printindex-index-section"><a href="Terminology.html">Terminology</a></td></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Terminology.html#index-package-directory">package directory</a></td><td class="printindex-index-section"><a href="Terminology.html">Terminology</a></td></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Terminology.html#index-package-name">package name</a></td><td class="printindex-index-section"><a href="Terminology.html">Terminology</a></td></tr>
|
||||
<tr><td colspan="3"><hr></td></tr>
|
||||
<tr><th id="Index_cp_letter-R">R</th></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Deleting-Packages.html#index-refolding-trees">refolding trees</a></td><td class="printindex-index-section"><a href="Deleting-Packages.html">Deleting Packages</a></td></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Terminology.html#index-relative-symlink">relative symlink</a></td><td class="printindex-index-section"><a href="Terminology.html">Terminology</a></td></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Resource-Files.html#index-resource-files">resource files</a></td><td class="printindex-index-section"><a href="Resource-Files.html">Resource Files</a></td></tr>
|
||||
<tr><td colspan="3"><hr></td></tr>
|
||||
<tr><th id="Index_cp_letter-S">S</th></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Invoking-Stow.html#index-simulated-run">simulated run</a></td><td class="printindex-index-section"><a href="Invoking-Stow.html">Invoking Stow</a></td></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Installing-Packages.html#index-splitting-open-folded-trees">splitting open folded trees</a></td><td class="printindex-index-section"><a href="Installing-Packages.html">Installing Packages</a></td></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Terminology.html#index-stow-directory">stow directory</a></td><td class="printindex-index-section"><a href="Terminology.html">Terminology</a></td></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Terminology.html#index-symlink">symlink</a></td><td class="printindex-index-section"><a href="Terminology.html">Terminology</a></td></tr>
|
||||
<tr><td colspan="3"><hr></td></tr>
|
||||
<tr><th id="Index_cp_letter-T">T</th></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Terminology.html#index-target-directory">target directory</a></td><td class="printindex-index-section"><a href="Terminology.html">Terminology</a></td></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Installing-Packages.html#index-tree-folding">tree folding</a></td><td class="printindex-index-section"><a href="Installing-Packages.html">Installing Packages</a></td></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Deleting-Packages.html#index-tree-refolding">tree refolding</a></td><td class="printindex-index-section"><a href="Deleting-Packages.html">Deleting Packages</a></td></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Installing-Packages.html#index-tree-unfolding">tree unfolding</a></td><td class="printindex-index-section"><a href="Installing-Packages.html">Installing Packages</a></td></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Installing-Packages.html#index-tree-unsplitting">tree unsplitting</a></td><td class="printindex-index-section"><a href="Installing-Packages.html">Installing Packages</a></td></tr>
|
||||
<tr><td colspan="3"><hr></td></tr>
|
||||
<tr><th id="Index_cp_letter-U">U</th></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Installing-Packages.html#index-unfolding-trees">unfolding trees</a></td><td class="printindex-index-section"><a href="Installing-Packages.html">Installing Packages</a></td></tr>
|
||||
<tr><td colspan="3"><hr></td></tr>
|
||||
<tr><th id="Index_cp_letter-V">V</th></tr>
|
||||
<tr><td></td><td class="printindex-index-entry"><a href="Invoking-Stow.html#index-verbosity-levels">verbosity levels</a></td><td class="printindex-index-section"><a href="Invoking-Stow.html">Invoking Stow</a></td></tr>
|
||||
<tr><td colspan="3"><hr></td></tr>
|
||||
</table>
|
||||
<table class="cp-letters-footer-printindex"><tr><th>Jump to: </th><td><a class="summary-letter-printindex" href="#Index_cp_letter-A"><b>A</b></a>
|
||||
|
||||
<a class="summary-letter-printindex" href="#Index_cp_letter-C"><b>C</b></a>
|
||||
|
||||
<a class="summary-letter-printindex" href="#Index_cp_letter-D"><b>D</b></a>
|
||||
|
||||
<a class="summary-letter-printindex" href="#Index_cp_letter-F"><b>F</b></a>
|
||||
|
||||
<a class="summary-letter-printindex" href="#Index_cp_letter-I"><b>I</b></a>
|
||||
|
||||
<a class="summary-letter-printindex" href="#Index_cp_letter-M"><b>M</b></a>
|
||||
|
||||
<a class="summary-letter-printindex" href="#Index_cp_letter-O"><b>O</b></a>
|
||||
|
||||
<a class="summary-letter-printindex" href="#Index_cp_letter-P"><b>P</b></a>
|
||||
|
||||
<a class="summary-letter-printindex" href="#Index_cp_letter-R"><b>R</b></a>
|
||||
|
||||
<a class="summary-letter-printindex" href="#Index_cp_letter-S"><b>S</b></a>
|
||||
|
||||
<a class="summary-letter-printindex" href="#Index_cp_letter-T"><b>T</b></a>
|
||||
|
||||
<a class="summary-letter-printindex" href="#Index_cp_letter-U"><b>U</b></a>
|
||||
|
||||
<a class="summary-letter-printindex" href="#Index_cp_letter-V"><b>V</b></a>
|
||||
|
||||
</td></tr></table>
|
||||
</div>
|
||||
|
||||
<h2 class="unnumbered">Stow</h2>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="nav-panel">
|
||||
<p>
|
||||
Previous: <a href="GNU-General-Public-License.html">GNU General Public License</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
|
||||
<ul class="menu">
|
||||
<li><a accesskey="1" href="Introduction.html#Introduction">Introduction</a>: Description of Stow.
|
||||
<li><a accesskey="2" href="Terminology.html#Terminology">Terminology</a>: Terms used by this manual.
|
||||
<li><a accesskey="3" href="Invoking-Stow.html#Invoking-Stow">Invoking Stow</a>: Option summary.
|
||||
<li><a accesskey="4" href="Ignore-Lists.html#Ignore-Lists">Ignore Lists</a>: Controlling what gets stowed.
|
||||
<li><a accesskey="5" href="Installing-Packages.html#Installing-Packages">Installing Packages</a>: Using Stow to install.
|
||||
<li><a accesskey="6" href="Deleting-Packages.html#Deleting-Packages">Deleting Packages</a>: Using Stow to uninstall.
|
||||
<li><a accesskey="7" href="Conflicts.html#Conflicts">Conflicts</a>: When Stow can't stow.
|
||||
<li><a accesskey="8" href="Mixing-Operations.html#Mixing-Operations">Mixing Operations</a>: Multiple actions per invocation.
|
||||
<li><a accesskey="9" href="Multiple-Stow-Directories.html#Multiple-Stow-Directories">Multiple Stow Directories</a>: Further segregating software.
|
||||
<li><a href="Target-Maintenance.html#Target-Maintenance">Target Maintenance</a>: Cleaning up mistakes.
|
||||
<li><a href="Resource-Files.html#Resource-Files">Resource Files</a>: Setting default command line options.
|
||||
<li><a href="Compile_002dtime-vs-Install_002dtime.html#Compile_002dtime-vs-Install_002dtime">Compile-time vs Install-time</a>: Faking out `make install'.
|
||||
<li><a href="Bootstrapping.html#Bootstrapping">Bootstrapping</a>: When stow and perl are not yet stowed.
|
||||
<li><a href="Reporting-Bugs.html#Reporting-Bugs">Reporting Bugs</a>: How, what, where, and when to report.
|
||||
<li><a href="Known-Bugs.html#Known-Bugs">Known Bugs</a>: Don't report any of these.
|
||||
<li><a href="GNU-General-Public-License.html#GNU-General-Public-License">GNU General Public License</a>: Copying terms.
|
||||
<li><a href="Index.html#Index">Index</a>: Index of concepts.
|
||||
|
||||
</li></ul>
|
||||
<p>--- The Detailed Node Listing ---
|
||||
|
||||
<p>Ignore Lists
|
||||
|
||||
</p>
|
||||
<ul class="menu">
|
||||
<li><a href="Motivation-For-Ignore-Lists.html#Motivation-For-Ignore-Lists">Motivation For Ignore Lists</a>
|
||||
<li><a href="Types-And-Syntax-Of-Ignore-Lists.html#Types-And-Syntax-Of-Ignore-Lists">Types And Syntax Of Ignore Lists</a>
|
||||
<li><a href="Justification-For-Yet-Another-Set-Of-Ignore-Files.html#Justification-For-Yet-Another-Set-Of-Ignore-Files">Justification For Yet Another Set Of Ignore Files</a>
|
||||
|
||||
</li></ul>
|
||||
<p>Advice on changing compilation and installation parameters
|
||||
|
||||
</p>
|
||||
<ul class="menu">
|
||||
<li><a href="GNU-Emacs.html#GNU-Emacs">GNU Emacs</a>
|
||||
<li><a href="Other-FSF-Software.html#Other-FSF-Software">Other FSF Software</a>
|
||||
<li><a href="Cygnus-Software.html#Cygnus-Software">Cygnus Software</a>
|
||||
<li><a href="Perl-and-Perl-5-Modules.html#Perl-and-Perl-5-Modules">Perl and Perl 5 Modules</a>
|
||||
|
||||
</ul>
|
||||
|
||||
<!-- =========================================================================== -->
|
||||
</body></html>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1 +1,55 @@
|
|||
<meta http-equiv="refresh" content="0; url=Installing-Packages.html#tree%20folding">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!-- 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:
|
||||
|
||||
© 1993, 1994, 1995, 1996 Bob Glickstein <bobg+stow@zanshin.com>
|
||||
|
||||
|
||||
© 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
|
||||
© 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
|
||||
|
||||
© 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of this
|
||||
manual provided the copyright notice and this permission notice are
|
||||
preserved on all copies.
|
||||
|
||||
|
||||
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. -->
|
||||
<title>tree folding (Stow)</title>
|
||||
|
||||
<meta name="description" content="tree folding (Stow)">
|
||||
<meta name="keywords" content="tree folding (Stow)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Installing-Packages.html#tree-folding">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Installing-Packages.html#tree-folding">tree folding</a>.</p>
|
||||
</body>
|
||||
|
|
|
@ -1 +1,55 @@
|
|||
<meta http-equiv="refresh" content="0; url=Deleting-Packages.html#tree%20refolding">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!-- 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:
|
||||
|
||||
© 1993, 1994, 1995, 1996 Bob Glickstein <bobg+stow@zanshin.com>
|
||||
|
||||
|
||||
© 2000, 2001 Guillaume Morin <gmorin@gnu.org>
|
||||
|
||||
|
||||
© 2007 Kahlil (Kal) Hodgson <kahlil@internode.on.net>
|
||||
|
||||
|
||||
© 2011 Adam Spiers <stow@adamspiers.org>
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of this
|
||||
manual provided the copyright notice and this permission notice are
|
||||
preserved on all copies.
|
||||
|
||||
|
||||
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. -->
|
||||
<title>tree refolding (Stow)</title>
|
||||
|
||||
<meta name="description" content="tree refolding (Stow)">
|
||||
<meta name="keywords" content="tree refolding (Stow)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Deleting-Packages.html#tree-refolding">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Deleting-Packages.html#tree-refolding">tree refolding</a>.</p>
|
||||
</body>
|
||||
|
|
Binary file not shown.
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue