1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427
|
<!DOCTYPE html>
<html>
<!-- Created by GNU Texinfo 7.0.3, https://www.gnu.org/software/texinfo/ -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!-- This manual describes GNU Stow version 2.4.1
(8 September 2024), 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>Stow</title>
<meta name="description" content="Stow">
<meta name="keywords" content="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="#Top" rel="start" title="Top">
<link href="#Index" rel="index" title="Index">
<link href="#SEC_Contents" rel="contents" title="Table of Contents">
<link href="#Introduction" rel="next" title="Introduction">
<style type="text/css">
<!--
a.summary-letter-printindex {text-decoration: none}
div.center {text-align:center}
div.display {margin-left: 3.2em}
div.example {margin-left: 3.2em}
pre.display-preformatted {font-family: inherit}
span.r {font-family: initial; font-weight: normal; font-style: normal}
td.printindex-index-entry {vertical-align: top}
td.printindex-index-section {vertical-align: top}
th.entries-header-printindex {text-align:left}
th.sections-header-printindex {text-align:left}
ul.mark-bullet {list-style-type: disc}
ul.toc-numbered-mark {list-style: none}
-->
</style>
</head>
<body lang="en">
<div class="top-level-extent" id="Top">
<div class="nav-panel">
<p>
Next: <a href="#Introduction" accesskey="n" rel="next">Introduction</a> [<a href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
</div>
<a class="top" id="SEC_Top"></a>
<p>This manual describes GNU Stow 2.4.1 (8 September 2024), a
symlink farm manager which takes distinct sets of software and/or data
located in separate directories on the filesystem, and makes them
appear to be installed in a single directory tree.
</p>
<div class="element-contents" id="SEC_Contents">
<h2 class="contents-heading">Table of Contents</h2>
<div class="contents">
<ul class="toc-numbered-mark">
<li><a id="toc-Introduction-1" href="#Introduction">1 Introduction</a></li>
<li><a id="toc-Terminology-1" href="#Terminology">2 Terminology</a></li>
<li><a id="toc-Invoking-Stow-1" href="#Invoking-Stow">3 Invoking Stow</a></li>
<li><a id="toc-Ignore-Lists-1" href="#Ignore-Lists">4 Ignore Lists</a>
<ul class="toc-numbered-mark">
<li><a id="toc-Motivation-For-Ignore-Lists-1" href="#Motivation-For-Ignore-Lists">4.1 Motivation For Ignore Lists</a></li>
<li><a id="toc-Types-And-Syntax-Of-Ignore-Lists-1" href="#Types-And-Syntax-Of-Ignore-Lists">4.2 Types And Syntax Of Ignore Lists</a></li>
<li><a id="toc-Justification-For-Yet-Another-Set-Of-Ignore-Files-1" href="#Justification-For-Yet-Another-Set-Of-Ignore-Files">4.3 Justification For Yet Another Set Of Ignore Files</a></li>
</ul></li>
<li><a id="toc-Installing-Packages-1" href="#Installing-Packages">5 Installing Packages</a>
<ul class="toc-numbered-mark">
<li><a id="toc-Tree-folding" href="#Tree-folding">5.1 Tree folding</a></li>
<li><a id="toc-Tree-unfolding-1" href="#Tree-unfolding-1">5.2 Tree unfolding</a></li>
<li><a id="toc-Ownership" href="#Ownership">5.3 Ownership</a></li>
<li><a id="toc-Conflicts-during-installation" href="#Conflicts-during-installation">5.4 Conflicts during installation</a></li>
</ul></li>
<li><a id="toc-Deleting-Packages-1" href="#Deleting-Packages">6 Deleting Packages</a>
<ul class="toc-numbered-mark">
<li><a id="toc-Refolding-_0060_0060foldable_0027_0027-trees_002e" href="#Refolding-_0060_0060foldable_0027_0027-trees_002e">6.1 Refolding “foldable” trees.</a></li>
</ul></li>
<li><a id="toc-Conflicts-1" href="#Conflicts">7 Conflicts</a>
<ul class="toc-numbered-mark">
<li><a id="toc-Deferred-Operation-1" href="#Deferred-Operation-1">7.1 Deferred Operation</a></li>
</ul></li>
<li><a id="toc-Mixing-Operations-1" href="#Mixing-Operations">8 Mixing Operations</a></li>
<li><a id="toc-Multiple-Stow-Directories-1" href="#Multiple-Stow-Directories">9 Multiple Stow Directories</a></li>
<li><a id="toc-Target-Maintenance-1" href="#Target-Maintenance">10 Target Maintenance</a></li>
<li><a id="toc-Resource-Files-1" href="#Resource-Files">11 Resource Files</a></li>
<li><a id="toc-Compile_002dtime-vs_002e-Install_002dtime-1" href="#Compile_002dtime-vs_002e-Install_002dtime">12 Compile-time vs. Install-time</a>
<ul class="toc-numbered-mark">
<li><a id="toc-Advice-on-changing-compilation-and-installation-parameters" href="#Advice-on-changing-compilation-and-installation-parameters">12.1 Advice on changing compilation and installation parameters</a></li>
<li><a id="toc-GNU-Emacs-1" href="#GNU-Emacs">12.2 GNU Emacs</a></li>
<li><a id="toc-Other-FSF-Software-1" href="#Other-FSF-Software">12.3 Other FSF Software</a></li>
<li><a id="toc-Cygnus-Software-1" href="#Cygnus-Software">12.4 Cygnus Software</a></li>
<li><a id="toc-Perl-and-Perl-5-Modules-1" href="#Perl-and-Perl-5-Modules">12.5 Perl and Perl 5 Modules</a></li>
</ul></li>
<li><a id="toc-Bootstrapping-1" href="#Bootstrapping">13 Bootstrapping</a></li>
<li><a id="toc-Reporting-Bugs-1" href="#Reporting-Bugs">14 Reporting Bugs</a></li>
<li><a id="toc-Known-Bugs-1" href="#Known-Bugs">15 Known Bugs</a></li>
<li><a id="toc-GNU-General-Public-License-1" href="#GNU-General-Public-License">GNU General Public License</a></li>
<li><a id="toc-Index-1" href="#Index" rel="index">Index</a></li>
</ul>
</div>
</div>
<hr>
<div class="chapter-level-extent" id="Introduction">
<div class="nav-panel">
<p>
Next: <a href="#Terminology" accesskey="n" rel="next">Terminology</a> [<a href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
</div>
<h2 class="chapter" id="Introduction-1">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>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>
<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.
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 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>
<hr>
</div>
<div class="chapter-level-extent" id="Terminology">
<div class="nav-panel">
<p>
Next: <a href="#Invoking-Stow" accesskey="n" rel="next">Invoking Stow</a>, Previous: <a href="#Introduction" accesskey="p" rel="prev">Introduction</a> [<a href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
</div>
<h2 class="chapter" id="Terminology-1">2 Terminology</h2>
<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 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. <samp class="file">/usr/local</samp> is a
common choice for this, but by no means the only such location. Another
common choice is <samp class="file">~</samp> (i.e. the user’s <code class="code">$HOME</code> directory) in
the case where Stow is being used to manage the user’s configuration
(“dotfiles”) and other files in their <code class="code">$HOME</code>. 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 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 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>
<blockquote class="quotation">
<p><b class="b">Note:</b> This is a <em class="emph">pre-</em>installation image which exists even before Stow
has installed any symlinks into the target directory which point to it.
</p></blockquote>
<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 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="anchor" id="symlink"></a><a class="index-entry-id" id="index-symlink"></a>
<a class="index-entry-id" id="index-symlink-source"></a>
<a class="index-entry-id" id="index-symlink-destination"></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, i.e. an entry on the filesystem
whose path is sometimes called the <em class="dfn">symlink source</em>, which points to
another location on the filesystem called the <em class="dfn">symlink destination</em>.
There is no guarantee that the destination actually exists.
</p>
<p>In general, symlinks can be <em class="dfn">relative</em> or <em class="dfn">absolute</em>. A symlink
is absolute when the destination names a full path; that is, one
starting from <samp class="file">/</samp>. A symlink is relative when the destination
names a relative path; that is, one not starting from <samp class="file">/</samp>. The
destination of a relative symlink is computed starting from the
symlink’s own directory, i.e. the directory containing the symlink
source.
</p>
<blockquote class="quotation">
<p><b class="b">Note:</b> Stow only creates symlinks within the target directory which point to
locations <em class="emph">outside</em> the target directory and inside the stow
directory.
</p>
<p>Consequently, we avoid referring to symlink destinations as symlink
<em class="emph">targets</em>, since this would result in the word “target” having
two different meanings:
</p>
<ol class="enumerate">
<li> the target directory, i.e. the directory into which Stow targets
installation, where symlinks are managed by Stow, and
</li><li> the destinations of those symlinks.
</li></ol>
<p>If we did not avoid the second meaning of “target”, then it would lead
to confusing language, such as describing Stow as installing symlinks
into the target directory which point to targets <em class="emph">outside</em> the
target directory.
</p>
<p>Similarly, the word “source” can have two different meanings in this
context:
</p>
<ol class="enumerate">
<li> the installation image, or some of its contents, and
</li><li> the location of symlinks (the “source” of the link, vs. its
destination).
</li></ol>
<p>Therefore it should also be avoided, or at least care taken to ensure
that the meaning is not ambiguous.
</p>
</blockquote>
<hr>
</div>
<div class="chapter-level-extent" id="Invoking-Stow">
<div class="nav-panel">
<p>
Next: <a href="#Ignore-Lists" accesskey="n" rel="next">Ignore Lists</a>, Previous: <a href="#Terminology" accesskey="p" rel="prev">Terminology</a> [<a href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
</div>
<h2 class="chapter" id="Invoking-Stow-1">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>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 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 <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>
<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>
<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">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 class="ref" href="#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>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.
</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>
<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>
<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.
</p>
<a class="index-entry-id" id="index-dotfiles"></a>
</dd>
<dt>‘<samp class="samp">--dotfiles</samp>’</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>
<p>Note that when this option is enabled, any package file or directory
prefixed with ‘<samp class="samp">dot-</samp>’ is assumed to be named deliberately to be
stowed with a ‘<samp class="samp">.</samp>’ prefix, and therefore will only be ignored if
there is an entry in the ignore list (See <a class="xref" href="#Ignore-Lists">Ignore Lists</a>) which matches
this prefix. So for example, by default <samp class="file">dot-gitignore</samp> would not
be ignored even though ‘<samp class="samp">\.gitignore</samp>’ is in the default ignore list.
</p>
</dd>
<dt>‘<samp class="samp">--no-folding</samp>’</dt>
<dd>
<p>This disables any further tree folding (see <a class="pxref" href="#tree-folding">tree folding</a>) or
refolding (see <a class="pxref" href="#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 class="index-entry-id" id="index-adopting-existing-files"></a>
</dd>
<dt>‘<samp class="samp">--adopt</samp>’</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>
<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.
This option changes that behaviour so that the file is moved to the
same relative place within the package’s installation image within the
stow directory, and then stowing proceeds as before. So effectively,
the file becomes adopted by the stow package, without its contents
changing.
</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 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>
<a class="index-entry-id" id="index-dry-run"></a>
<a class="index-entry-id" id="index-simulated-run"></a>
</dd>
<dt>‘<samp class="samp">-n</samp>’</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>
<a class="index-entry-id" id="index-verbosity-levels"></a>
</dd>
<dt>‘<samp class="samp">-v</samp>’</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. Previously Stow scanned the whole tree, which can be
prohibitive if your target tree is very large, but on the other hand has
the advantage of unstowing previously stowed links which are no longer
present in the installation image and therefore orphaned. This option
restores 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">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 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.
</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">Mixing Operations</a>, for details of when you
might like to use this feature. This option may be repeated any number
of times.
</p></dd>
</dl>
<hr>
</div>
<div class="chapter-level-extent" id="Ignore-Lists">
<div class="nav-panel">
<p>
Next: <a href="#Installing-Packages" accesskey="n" rel="next">Installing Packages</a>, Previous: <a href="#Invoking-Stow" accesskey="p" rel="prev">Invoking Stow</a> [<a href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
</div>
<h2 class="chapter" id="Ignore-Lists-1">4 Ignore Lists</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" accesskey="1">Motivation For Ignore Lists</a></li>
<li><a href="#Types-And-Syntax-Of-Ignore-Lists" accesskey="2">Types And Syntax Of Ignore Lists</a></li>
<li><a href="#Justification-For-Yet-Another-Set-Of-Ignore-Files" accesskey="3">Justification For Yet Another Set Of Ignore Files</a></li>
</ul>
<hr>
<div class="section-level-extent" id="Motivation-For-Ignore-Lists">
<div class="nav-panel">
<p>
Next: <a href="#Types-And-Syntax-Of-Ignore-Lists" accesskey="n" rel="next">Types And Syntax Of Ignore Lists</a>, Previous: <a href="#Ignore-Lists" accesskey="p" rel="prev">Ignore Lists</a>, Up: <a href="#Ignore-Lists" accesskey="u" rel="up">Ignore Lists</a> [<a href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
</div>
<h3 class="section" id="Motivation-For-Ignore-Lists-1">4.1 Motivation For Ignore Lists</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 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>
<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 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 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 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 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>
<hr>
</div>
<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" accesskey="n" rel="next">Justification For Yet Another Set Of Ignore Files</a>, Previous: <a href="#Motivation-For-Ignore-Lists" accesskey="p" rel="prev">Motivation For Ignore Lists</a>, Up: <a href="#Ignore-Lists" accesskey="u" rel="up">Ignore Lists</a> [<a href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
</div>
<h3 class="section" id="Types-And-Syntax-Of-Ignore-Lists-1">4.2 Types And Syntax Of Ignore Lists</h3>
<p>If you put Perl regular expressions, one per line, in a
<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 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.
RCS
.+,v
CVS
\.\#.+ # CVS conflict files / emacs lock files
\.cvsignore
\.svn
_darcs
\.hg
\.git
\.gitignore
\.gitmodules
.+~ # 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 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 class="samp">/</samp>’ forward
slash symbol.
</p>
<p>Then in order to determine whether a file or directory should be
ignored:
</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><li> If none of the regular expressions containing a ‘<samp class="samp">/</samp>’ match in the
manner described above, Stow checks whether the
<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><li> Otherwise, the file or directory is not ignored.
</li></ol>
<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 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 class="file">bazqux</samp> would not even be
considered for stowing).
</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.
</p>
<hr>
</div>
<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" accesskey="p" rel="prev">Types And Syntax Of Ignore Lists</a>, Up: <a href="#Ignore-Lists" accesskey="u" rel="up">Ignore Lists</a> [<a href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
</div>
<h3 class="section" id="Justification-For-Yet-Another-Set-Of-Ignore-Files-1">4.3 Justification For Yet Another Set Of Ignore Files</h3>
<p>The reader may note that this format is very similar to existing
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 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>
<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 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>
<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>
<hr>
</div>
</div>
<div class="chapter-level-extent" id="Installing-Packages">
<div class="nav-panel">
<p>
Next: <a href="#Deleting-Packages" accesskey="n" rel="next">Deleting Packages</a>, Previous: <a href="#Ignore-Lists" accesskey="p" rel="prev">Ignore Lists</a> [<a href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
</div>
<h2 class="chapter" id="Installing-Packages-1">5 Installing Packages</h2>
<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 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">5.1 Tree folding</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 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>
<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 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 class="option">--no-folding</samp> option; see <a class="pxref" href="#Invoking-Stow">Invoking Stow</a>.
</p>
<a class="anchor" id="Tree-unfolding"></a></div>
<div class="section-level-extent" id="Tree-unfolding-1">
<h3 class="section">5.2 Tree unfolding</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 <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 class="emph">and</em> to
the old package that used the old symlink. For example, suppose that
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 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">5.3 Ownership</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 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 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">5.4 Conflicts during installation</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 <em class="dfn">conflict</em> has arisen. See <a class="xref" href="#Conflicts">Conflicts</a>.
</p>
<hr>
</div>
</div>
<div class="chapter-level-extent" id="Deleting-Packages">
<div class="nav-panel">
<p>
Next: <a href="#Conflicts" accesskey="n" rel="next">Conflicts</a>, Previous: <a href="#Installing-Packages" accesskey="p" rel="prev">Installing Packages</a> [<a href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
</div>
<h2 class="chapter" id="Deleting-Packages-1">6 Deleting Packages</h2>
<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 class="emph">not</em>
mean removing it from the stow directory or discarding the package
tree.
</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">6.1 Refolding “foldable” trees.</h3>
<a class="index-entry-id" id="index-refolding-trees"></a>
<a class="index-entry-id" id="index-tree-refolding"></a>
<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 class="option">--no-folding</samp> option; see <a class="pxref" href="#Invoking-Stow">Invoking Stow</a>.
</p>
<hr>
</div>
</div>
<div class="chapter-level-extent" id="Conflicts">
<div class="nav-panel">
<p>
Next: <a href="#Mixing-Operations" accesskey="n" rel="next">Mixing Operations</a>, Previous: <a href="#Deleting-Packages" accesskey="p" rel="prev">Deleting Packages</a> [<a href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
</div>
<h2 class="chapter" id="Conflicts-1">7 Conflicts</h2>
<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
<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>
<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).
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">7.1 Deferred Operation</h3>
<a class="index-entry-id" id="index-deferred-operation"></a>
<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>
<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>
<hr>
</div>
</div>
<div class="chapter-level-extent" id="Mixing-Operations">
<div class="nav-panel">
<p>
Next: <a href="#Multiple-Stow-Directories" accesskey="n" rel="next">Multiple Stow Directories</a>, Previous: <a href="#Conflicts" accesskey="p" rel="prev">Conflicts</a> [<a href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
</div>
<h2 class="chapter" id="Mixing-Operations-1">8 Mixing Operations</h2>
<a class="index-entry-id" id="index-mixing-operations"></a>
<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>
<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 class="pxref" href="#Deferred-Operation">Deferred Operation</a>), so the
amount 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>will unstow pkg3, pkg4 and pkg6, then stow pkg1, pkg2, pkg5 and pkg6.
</p>
<hr>
</div>
<div class="chapter-level-extent" id="Multiple-Stow-Directories">
<div class="nav-panel">
<p>
Next: <a href="#Target-Maintenance" accesskey="n" rel="next">Target Maintenance</a>, Previous: <a href="#Mixing-Operations" accesskey="p" rel="prev">Mixing Operations</a> [<a href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
</div>
<h2 class="chapter" id="Multiple-Stow-Directories-1">9 Multiple Stow Directories</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 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 class="emph">a</em> stow directory and as such Stow
doesn’t “own” anything in it (see <a class="pxref" href="#Installing-Packages">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>
<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 class="file">.stow</samp>, Stow knows how to split
open the tree in the correct manner.
</p>
<hr>
</div>
<div class="chapter-level-extent" id="Target-Maintenance">
<div class="nav-panel">
<p>
Next: <a href="#Resource-Files" accesskey="n" rel="next">Resource Files</a>, Previous: <a href="#Multiple-Stow-Directories" accesskey="p" rel="prev">Multiple Stow Directories</a> [<a href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
</div>
<h2 class="chapter" id="Target-Maintenance-1">10 Target Maintenance</h2>
<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 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 <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.
</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 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>
<hr>
</div>
<div class="chapter-level-extent" id="Resource-Files">
<div class="nav-panel">
<p>
Next: <a href="#Compile_002dtime-vs_002e-Install_002dtime" accesskey="n" rel="next">Compile-time vs. Install-time</a>, Previous: <a href="#Target-Maintenance" accesskey="p" rel="prev">Target Maintenance</a> [<a href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
</div>
<h2 class="chapter" id="Resource-Files-1">11 Resource Files</h2>
<a class="index-entry-id" id="index-resource-files"></a>
<a class="index-entry-id" id="index-configuration-files"></a>
<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 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>
<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>
<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 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>
<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. Since these values are first subject to standard shell
quoting rules, if you want special characters such as <code class="command">\b</code> or
<code class="command">$</code> to be treated as regular expression assertions then they
will need extra escaping, i.e. <code class="command">\\b</code> and <code class="command">\\\$</code>
respectively.
</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>
<hr>
</div>
<div class="chapter-level-extent" id="Compile_002dtime-vs_002e-Install_002dtime">
<div class="nav-panel">
<p>
Next: <a href="#Bootstrapping" accesskey="n" rel="next">Bootstrapping</a>, Previous: <a href="#Resource-Files" accesskey="p" rel="prev">Resource Files</a> [<a href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
</div>
<h2 class="chapter" id="Compile_002dtime-vs_002e-Install_002dtime-1">12 Compile-time vs. Install-time</h2>
<p>Software whose installation is managed with Stow needs to be installed
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 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.
</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" accesskey="2">GNU Emacs</a></li>
<li><a href="#Other-FSF-Software" accesskey="3">Other FSF Software</a></li>
<li><a href="#Cygnus-Software" accesskey="4">Cygnus Software</a></li>
<li><a href="#Perl-and-Perl-5-Modules" 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">12.1 Advice on changing compilation and installation parameters</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 class="ref" href="#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 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 class="xref" href="#GNU-Emacs">GNU Emacs</a>, and <a class="ref" href="#Other-FSF-Software">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 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 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>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>
<p>Note, that’s “should be able to,” not “can.” Be sure to modulate
these guidelines with plenty of your own intelligence.
</p>
<p>The details of stowing some specific packages are described in the
following sections.
</p>
<hr>
</div>
<div class="section-level-extent" id="GNU-Emacs">
<div class="nav-panel">
<p>
Next: <a href="#Other-FSF-Software" accesskey="n" rel="next">Other FSF Software</a>, Previous: <a href="#Compile_002dtime-vs_002e-Install_002dtime" accesskey="p" rel="prev">Compile-time vs. Install-time</a>, Up: <a href="#Compile_002dtime-vs_002e-Install_002dtime" accesskey="u" rel="up">Compile-time vs. Install-time</a> [<a href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
</div>
<h3 class="section" id="GNU-Emacs-1">12.2 GNU Emacs</h3>
<p>Although the Free Software Foundation has many enlightened practices
regarding Makefiles and software installation (see see <a class="pxref" href="#Other-FSF-Software">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>
<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>
<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>
<hr>
</div>
<div class="section-level-extent" id="Other-FSF-Software">
<div class="nav-panel">
<p>
Next: <a href="#Cygnus-Software" accesskey="n" rel="next">Cygnus Software</a>, Previous: <a href="#GNU-Emacs" accesskey="p" rel="prev">GNU Emacs</a>, Up: <a href="#Compile_002dtime-vs_002e-Install_002dtime" accesskey="u" rel="up">Compile-time vs. Install-time</a> [<a href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
</div>
<h3 class="section" id="Other-FSF-Software-1">12.3 Other FSF Software</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 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>
<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>
<hr>
</div>
<div class="section-level-extent" id="Cygnus-Software">
<div class="nav-panel">
<p>
Next: <a href="#Perl-and-Perl-5-Modules" accesskey="n" rel="next">Perl and Perl 5 Modules</a>, Previous: <a href="#Other-FSF-Software" accesskey="p" rel="prev">Other FSF Software</a>, Up: <a href="#Compile_002dtime-vs_002e-Install_002dtime" accesskey="u" rel="up">Compile-time vs. Install-time</a> [<a href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
</div>
<h3 class="section" id="Cygnus-Software-1">12.4 Cygnus Software</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 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 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
invoke an install from the subdirectory of interest.
</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>
<hr>
</div>
<div class="section-level-extent" id="Perl-and-Perl-5-Modules">
<div class="nav-panel">
<p>
Previous: <a href="#Cygnus-Software" accesskey="p" rel="prev">Cygnus Software</a>, Up: <a href="#Compile_002dtime-vs_002e-Install_002dtime" accesskey="u" rel="up">Compile-time vs. Install-time</a> [<a href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
</div>
<h3 class="section" id="Perl-and-Perl-5-Modules-1">12.5 Perl and Perl 5 Modules</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
experience that allows this, though hopefully more packages will adopt
this model.
</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
need to separate install-time and run-time trees stemmed from its use of
Depot, not from AFS.
</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 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>
<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>
<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>
<p>Hopefully, the Perl authors will correct this deficiency in Perl 5’s
configuration mechanism.
</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 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>
<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 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>
<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 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 class="file">/usr/local/stow</samp> are Perl 5
extensions.
</p>
<p>When you stow separate Perl 5 modules separately, you are likely to
encounter conflicts (see <a class="pxref" href="#Conflicts">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 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>
<hr>
</div>
</div>
<div class="chapter-level-extent" id="Bootstrapping">
<div class="nav-panel">
<p>
Next: <a href="#Reporting-Bugs" accesskey="n" rel="next">Reporting Bugs</a>, Previous: <a href="#Compile_002dtime-vs_002e-Install_002dtime" accesskey="p" rel="prev">Compile-time vs. Install-time</a> [<a href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
</div>
<h2 class="chapter" id="Bootstrapping-1">13 Bootstrapping</h2>
<p>Suppose you have a stow directory all set up and ready to go:
<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>
<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>
<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>
<hr>
</div>
<div class="chapter-level-extent" id="Reporting-Bugs">
<div class="nav-panel">
<p>
Next: <a href="#Known-Bugs" accesskey="n" rel="next">Known Bugs</a>, Previous: <a href="#Bootstrapping" accesskey="p" rel="prev">Bootstrapping</a> [<a href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
</div>
<h2 class="chapter" id="Reporting-Bugs-1">14 Reporting Bugs</h2>
<p>You can report bugs to the current maintainers in one of three ways:
</p>
<ol class="enumerate">
<li> Send e-mail to <a class="email" href="mailto:bug-stow@gnu.org">bug-stow@gnu.org</a>.
</li><li> File an issue in <a class="uref" href="https://savannah.gnu.org/bugs/?group=stow">the Savannah bug tracker</a>.
</li><li> File an issue in
<a class="uref" href="https://github.com/aspiers/stow/issues/">the GitHub project</a>.
</li></ol>
<p>While GitHub is arguably the most convenient of these three options, it
<a class="uref" href="https://www.gnu.org/software/repo-criteria-evaluation.html#GitHub">is not the most ethical or freedom-preserving way to host software
projects</a>. Therefore the GitHub project may be
<a class="uref" href="https://github.com/aspiers/stow/issues/43">moved to a more ethical
hosting service</a> in the future.
</p>
<p>Before reporting a bug, it is recommended to check whether it is already
known, so please first see <a class="pxref" href="#Known-Bugs">Known Bugs</a>.
</p>
<p>When reporting a new bug, please include:
</p>
<ul class="itemize mark-bullet">
<li>the version number of Stow (‘<samp class="samp">stow --version</samp>’);
</li><li>the version number of Perl (‘<samp class="samp">perl -v</samp>’);
</li><li>the system information, which can often be obtained with ‘<samp class="samp">uname
-a</samp>’;
</li><li>a description of the bug;
</li><li>the precise command you gave;
</li><li>the output from the command (preferably verbose output, obtained by
adding ‘<samp class="samp">--verbose=5</samp>’ to the Stow command line).
</li></ul>
<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, and the <samp class="file">CONTRIBUTING.md</samp> file for a guide on how to
contribute.
</p>
<p>Before reporting a bug, please read the manual carefully, especially
<a class="ref" href="#Known-Bugs">Known Bugs</a>, to see whether you’re encountering
something that doesn’t need reporting.
(see <a class="pxref" href="#Conflicts">Conflicts</a>).
</p>
<hr>
</div>
<div class="chapter-level-extent" id="Known-Bugs">
<div class="nav-panel">
<p>
Next: <a href="#GNU-General-Public-License" accesskey="n" rel="next">GNU General Public License</a>, Previous: <a href="#Reporting-Bugs" accesskey="p" rel="prev">Reporting Bugs</a> [<a href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
</div>
<h2 class="chapter" id="Known-Bugs-1">15 Known Bugs</h2>
<p>Known bugs can be found in the following locations:
</p>
<ul class="itemize mark-bullet">
<li><a class="uref" href="https://github.com/aspiers/stow/issues/">the GitHub issue tracker</a>
</li><li><a class="uref" href="https://savannah.gnu.org/bugs/?group=stow">the Savannah bug
tracker</a>
</li><li>the <a class="uref" href="https://lists.gnu.org/archive/html/bug-stow/">bug-stow list
archives</a>
</li></ul>
<p>If you think you have found a new bug, please see <a class="pxref" href="#Reporting-Bugs">Reporting Bugs</a>.
</p>
<hr>
</div>
<div class="unnumbered-level-extent" id="GNU-General-Public-License">
<div class="nav-panel">
<p>
Next: <a href="#Index" accesskey="n" rel="next">Index</a>, Previous: <a href="#Known-Bugs" accesskey="p" rel="prev">Known Bugs</a> [<a href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
</div>
<h2 class="unnumbered" id="GNU-General-Public-License-1">GNU General Public License</h2>
<div class="center">Version 3, 29 June 2007
</div>
<div class="display">
<pre class="display-preformatted">Copyright © 2007 Free Software Foundation, Inc. <a class="url" href="https://fsf.org/">https://fsf.org/</a>
Everyone is permitted to copy and distribute verbatim copies of this
license document, but changing it is not allowed.
</pre></div>
<h3 class="heading" id="Preamble">Preamble</h3>
<p>The GNU General Public License is a free, copyleft license for
software and other kinds of works.
</p>
<p>The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom
to share and change all versions of a program—to make sure it remains
free software for all its users. We, the Free Software Foundation,
use the GNU General Public License for most of our software; it
applies also to any other work released this way by its authors. You
can apply it to your programs, too.
</p>
<p>When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
</p>
<p>To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you
have certain responsibilities if you distribute copies of the
software, or if you modify it: responsibilities to respect the freedom
of others.
</p>
<p>For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too,
receive or can get the source code. And you must show them these
terms so they know their rights.
</p>
<p>Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
</p>
<p>For the developers’ and authors’ protection, the GPL clearly explains
that there is no warranty for this free software. For both users’ and
authors’ sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
</p>
<p>Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the
manufacturer can do so. This is fundamentally incompatible with the
aim of protecting users’ freedom to change the software. The
systematic pattern of such abuse occurs in the area of products for
individuals to use, which is precisely where it is most unacceptable.
Therefore, we have designed this version of the GPL to prohibit the
practice for those products. If such problems arise substantially in
other domains, we stand ready to extend this provision to those
domains in future versions of the GPL, as needed to protect the
freedom of users.
</p>
<p>Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish
to avoid the special danger that patents applied to a free program
could make it effectively proprietary. To prevent this, the GPL
assures that patents cannot be used to render the program non-free.
</p>
<p>The precise terms and conditions for copying, distribution and
modification follow.
</p>
<h3 class="heading" id="TERMS-AND-CONDITIONS">TERMS AND CONDITIONS</h3>
<ol class="enumerate" start="0">
<li> Definitions.
<p>“This License” refers to version 3 of the GNU General Public License.
</p>
<p>“Copyright” also means copyright-like laws that apply to other kinds
of works, such as semiconductor masks.
</p>
<p>“The Program” refers to any copyrightable work licensed under this
License. Each licensee is addressed as “you”. “Licensees” and
“recipients” may be individuals or organizations.
</p>
<p>To “modify” a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of
an exact copy. The resulting work is called a “modified version” of
the earlier work or a work “based on” the earlier work.
</p>
<p>A “covered work” means either the unmodified Program or a work based
on the Program.
</p>
<p>To “propagate” a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
</p>
<p>To “convey” a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user
through a computer network, with no transfer of a copy, is not
conveying.
</p>
<p>An interactive user interface displays “Appropriate Legal Notices” to
the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
</p>
</li><li> Source Code.
<p>The “source code” for a work means the preferred form of the work for
making modifications to it. “Object code” means any non-source form
of a work.
</p>
<p>A “Standard Interface” means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
</p>
<p>The “System Libraries” of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
“Major Component”, in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
</p>
<p>The “Corresponding Source” for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work’s
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
</p>
<p>The Corresponding Source need not include anything that users can
regenerate automatically from other parts of the Corresponding Source.
</p>
<p>The Corresponding Source for a work in source code form is that same
work.
</p>
</li><li> Basic Permissions.
<p>All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
</p>
<p>You may make, run and propagate covered works that you do not convey,
without conditions so long as your license otherwise remains in force.
You may convey covered works to others for the sole purpose of having
them make modifications exclusively for you, or provide you with
facilities for running those works, provided that you comply with the
terms of this License in conveying all material for which you do not
control copyright. Those thus making or running the covered works for
you must do so exclusively on your behalf, under your direction and
control, on terms that prohibit them from making any copies of your
copyrighted material outside their relationship with you.
</p>
<p>Conveying under any other circumstances is permitted solely under the
conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
</p>
</li><li> Protecting Users’ Legal Rights From Anti-Circumvention Law.
<p>No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
</p>
<p>When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such
circumvention is effected by exercising rights under this License with
respect to the covered work, and you disclaim any intention to limit
operation or modification of the work as a means of enforcing, against
the work’s users, your or third parties’ legal rights to forbid
circumvention of technological measures.
</p>
</li><li> Conveying Verbatim Copies.
<p>You may convey verbatim copies of the Program’s source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
</p>
<p>You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
</p>
</li><li> Conveying Modified Source Versions.
<p>You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these
conditions:
</p>
<ol class="enumerate" type="a" start="1">
<li> The work must carry prominent notices stating that you modified it,
and giving a relevant date.
</li><li> The work must carry prominent notices stating that it is released
under this License and any conditions added under section 7. This
requirement modifies the requirement in section 4 to “keep intact all
notices”.
</li><li> You must license the entire work, as a whole, under this License to
anyone who comes into possession of a copy. This License will
therefore apply, along with any applicable section 7 additional terms,
to the whole of the work, and all its parts, regardless of how they
are packaged. This License gives no permission to license the work in
any other way, but it does not invalidate such permission if you have
separately received it.
</li><li> If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your work
need not make them do so.
</li></ol>
<p>A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
“aggregate” if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation’s users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
</p>
</li><li> Conveying Non-Source Forms.
<p>You may convey a covered work in object code form under the terms of
sections 4 and 5, provided that you also convey the machine-readable
Corresponding Source under the terms of this License, in one of these
ways:
</p>
<ol class="enumerate" type="a" start="1">
<li> Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium customarily
used for software interchange.
</li><li> Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a written
offer, valid for at least three years and valid for as long as you
offer spare parts or customer support for that product model, to give
anyone who possesses the object code either (1) a copy of the
Corresponding Source for all the software in the product that is
covered by this License, on a durable physical medium customarily used
for software interchange, for a price no more than your reasonable
cost of physically performing this conveying of source, or (2) access
to copy the Corresponding Source from a network server at no charge.
</li><li> Convey individual copies of the object code with a copy of the written
offer to provide the Corresponding Source. This alternative is
allowed only occasionally and noncommercially, and only if you
received the object code with such an offer, in accord with subsection
6b.
</li><li> Convey the object code by offering access from a designated place
(gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to copy
the object code is a network server, the Corresponding Source may be
on a different server (operated by you or a third party) that supports
equivalent copying facilities, provided you maintain clear directions
next to the object code saying where to find the Corresponding Source.
Regardless of what server hosts the Corresponding Source, you remain
obligated to ensure that it is available for as long as needed to
satisfy these requirements.
</li><li> Convey the object code using peer-to-peer transmission, provided you
inform other peers where the object code and Corresponding Source of
the work are being offered to the general public at no charge under
subsection 6d.
</li></ol>
<p>A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
</p>
<p>A “User Product” is either (1) a “consumer product”, which means any
tangible personal property which is normally used for personal,
family, or household purposes, or (2) anything designed or sold for
incorporation into a dwelling. In determining whether a product is a
consumer product, doubtful cases shall be resolved in favor of
coverage. For a particular product received by a particular user,
“normally used” refers to a typical or common use of that class of
product, regardless of the status of the particular user or of the way
in which the particular user actually uses, or expects or is expected
to use, the product. A product is a consumer product regardless of
whether the product has substantial commercial, industrial or
non-consumer uses, unless such uses represent the only significant
mode of use of the product.
</p>
<p>“Installation Information” for a User Product means any methods,
procedures, authorization keys, or other information required to
install and execute modified versions of a covered work in that User
Product from a modified version of its Corresponding Source. The
information must suffice to ensure that the continued functioning of
the modified object code is in no case prevented or interfered with
solely because modification has been made.
</p>
<p>If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
</p>
<p>The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or
updates for a work that has been modified or installed by the
recipient, or for the User Product in which it has been modified or
installed. Access to a network may be denied when the modification
itself materially and adversely affects the operation of the network
or violates the rules and protocols for communication across the
network.
</p>
<p>Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
</p>
</li><li> Additional Terms.
<p>“Additional permissions” are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
</p>
<p>When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
</p>
<p>Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders
of that material) supplement the terms of this License with terms:
</p>
<ol class="enumerate" type="a" start="1">
<li> Disclaiming warranty or limiting liability differently from the terms
of sections 15 and 16 of this License; or
</li><li> Requiring preservation of specified reasonable legal notices or author
attributions in that material or in the Appropriate Legal Notices
displayed by works containing it; or
</li><li> Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
</li><li> Limiting the use for publicity purposes of names of licensors or
authors of the material; or
</li><li> Declining to grant rights under trademark law for use of some trade
names, trademarks, or service marks; or
</li><li> Requiring indemnification of licensors and authors of that material by
anyone who conveys the material (or modified versions of it) with
contractual assumptions of liability to the recipient, for any
liability that these contractual assumptions directly impose on those
licensors and authors.
</li></ol>
<p>All other non-permissive additional terms are considered “further
restrictions” within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
</p>
<p>If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
</p>
<p>Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions; the
above requirements apply either way.
</p>
</li><li> Termination.
<p>You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
</p>
<p>However, if you cease all violation of this License, then your license
from a particular copyright holder is reinstated (a) provisionally,
unless and until the copyright holder explicitly and finally
terminates your license, and (b) permanently, if the copyright holder
fails to notify you of the violation by some reasonable means prior to
60 days after the cessation.
</p>
<p>Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
</p>
<p>Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
</p>
</li><li> Acceptance Not Required for Having Copies.
<p>You are not required to accept this License in order to receive or run
a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
</p>
</li><li> Automatic Licensing of Downstream Recipients.
<p>Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
</p>
<p>An “entity transaction” is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party’s predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
</p>
<p>You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
</p>
</li><li> Patents.
<p>A “contributor” is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor’s “contributor version”.
</p>
<p>A contributor’s “essential patent claims” are all patent claims owned
or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, “control” includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
</p>
<p>Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor’s essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
</p>
<p>In the following three paragraphs, a “patent license” is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To “grant” such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
</p>
<p>If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. “Knowingly relying” means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient’s use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
</p>
<p>If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
</p>
<p>A patent license is “discriminatory” if it does not include within the
scope of its coverage, prohibits the exercise of, or is conditioned on
the non-exercise of one or more of the rights that are specifically
granted under this License. You may not convey a covered work if you
are a party to an arrangement with a third party that is in the
business of distributing software, under which you make payment to the
third party based on the extent of your activity of conveying the
work, and under which the third party grants, to any of the parties
who would receive the covered work from you, a discriminatory patent
license (a) in connection with copies of the covered work conveyed by
you (or copies made from those copies), or (b) primarily for and in
connection with specific products or compilations that contain the
covered work, unless you entered into that arrangement, or that patent
license was granted, prior to 28 March 2007.
</p>
<p>Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
</p>
</li><li> No Surrender of Others’ Freedom.
<p>If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey
a covered work so as to satisfy simultaneously your obligations under
this License and any other pertinent obligations, then as a
consequence you may not convey it at all. For example, if you agree
to terms that obligate you to collect a royalty for further conveying
from those to whom you convey the Program, the only way you could
satisfy both those terms and this License would be to refrain entirely
from conveying the Program.
</p>
</li><li> Use with the GNU Affero General Public License.
<p>Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
</p>
</li><li> Revised Versions of this License.
<p>The Free Software Foundation may publish revised and/or new versions
of the GNU General Public License from time to time. Such new
versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns.
</p>
<p>Each version is given a distinguishing version number. If the Program
specifies that a certain numbered version of the GNU General Public
License “or any later version” applies to it, you have the option of
following the terms and conditions either of that numbered version or
of any later version published by the Free Software Foundation. If
the Program does not specify a version number of the GNU General
Public License, you may choose any version ever published by the Free
Software Foundation.
</p>
<p>If the Program specifies that a proxy can decide which future versions
of the GNU General Public License can be used, that proxy’s public
statement of acceptance of a version permanently authorizes you to
choose that version for the Program.
</p>
<p>Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
</p>
</li><li> Disclaimer of Warranty.
<p>THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT
WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND
PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE
DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR
CORRECTION.
</p>
</li><li> Limitation of Liability.
<p>IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR
CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES
ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT
NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR
LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM
TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER
PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
</p>
</li><li> Interpretation of Sections 15 and 16.
<p>If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
</p>
</li></ol>
<h3 class="heading" id="END-OF-TERMS-AND-CONDITIONS">END OF TERMS AND CONDITIONS</h3>
<h3 class="heading" id="How-to-Apply-These-Terms-to-Your-New-Programs">How to Apply These Terms to Your New Programs</h3>
<p>If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
</p>
<p>To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the “copyright” line and a pointer to where the full notice is found.
</p>
<div class="example smallexample">
<pre class="example-preformatted"><var class="var">one line to give the program's name and a brief idea of what it does.</var>
Copyright (C) <var class="var">year</var> <var class="var">name of author</var>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or (at
your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <a class="url" href="https://www.gnu.org/licenses/">https://www.gnu.org/licenses/</a>.
</pre></div>
<p>Also add information on how to contact you by electronic and paper mail.
</p>
<p>If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
</p>
<div class="example smallexample">
<pre class="example-preformatted"><var class="var">program</var> Copyright (C) <var class="var">year</var> <var class="var">name of author</var>
This program comes with ABSOLUTELY NO WARRANTY; for details type ‘<samp class="samp">show w</samp>’.
This is free software, and you are welcome to redistribute it
under certain conditions; type ‘<samp class="samp">show c</samp>’ for details.
</pre></div>
<p>The hypothetical commands ‘<samp class="samp">show w</samp>’ and ‘<samp class="samp">show c</samp>’ should show
the appropriate parts of the General Public License. Of course, your
program’s commands might be different; for a GUI interface, you would
use an “about box”.
</p>
<p>You should also get your employer (if you work as a programmer) or school,
if any, to sign a “copyright disclaimer” for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<a class="url" href="https://www.gnu.org/licenses/">https://www.gnu.org/licenses/</a>.
</p>
<p>The GNU General Public License does not permit incorporating your
program into proprietary programs. If your program is a subroutine
library, you may consider it more useful to permit linking proprietary
applications with the library. If this is what you want to do, use
the GNU Lesser General Public License instead of this License. But
first, please read <a class="url" href="https://www.gnu.org/licenses/why-not-lgpl.html">https://www.gnu.org/licenses/why-not-lgpl.html</a>.
</p>
<hr>
</div>
<div class="unnumbered-level-extent" id="Index">
<div class="nav-panel">
<p>
Previous: <a href="#GNU-General-Public-License" accesskey="p" rel="prev">GNU General Public License</a> [<a href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
</div>
<h2 class="unnumbered" id="Index-1">Index</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><td> </td><th class="sections-header-printindex"> Section</th></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_cp_letter-A">A</th><td></td><td></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-absolute-symlink">absolute symlink</a>:</td><td> </td><td class="printindex-index-section"><a href="#Terminology">Terminology</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-adopting-existing-files">adopting existing files</a>:</td><td> </td><td class="printindex-index-section"><a href="#Invoking-Stow">Invoking Stow</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_cp_letter-C">C</th><td></td><td></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-configuration-files">configuration files</a>:</td><td> </td><td class="printindex-index-section"><a href="#Resource-Files">Resource Files</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-conflicts">conflicts</a>:</td><td> </td><td class="printindex-index-section"><a href="#Installing-Packages">Installing Packages</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-conflicts-1">conflicts</a>:</td><td> </td><td class="printindex-index-section"><a href="#Conflicts">Conflicts</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_cp_letter-D">D</th><td></td><td></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-deferred-operation">deferred operation</a>:</td><td> </td><td class="printindex-index-section"><a href="#Conflicts">Conflicts</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-deferred-operation-1">deferred operation</a>:</td><td> </td><td class="printindex-index-section"><a href="#Mixing-Operations">Mixing Operations</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-deletion">deletion</a>:</td><td> </td><td class="printindex-index-section"><a href="#Deleting-Packages">Deleting Packages</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-directory-folding">directory folding</a>:</td><td> </td><td class="printindex-index-section"><a href="#Installing-Packages">Installing Packages</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-dotfiles">dotfiles</a>:</td><td> </td><td class="printindex-index-section"><a href="#Invoking-Stow">Invoking Stow</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-dry-run">dry run</a>:</td><td> </td><td class="printindex-index-section"><a href="#Invoking-Stow">Invoking Stow</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_cp_letter-F">F</th><td></td><td></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-folding-trees">folding trees</a>:</td><td> </td><td class="printindex-index-section"><a href="#Installing-Packages">Installing Packages</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_cp_letter-I">I</th><td></td><td></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-ignore-lists">ignore lists</a>:</td><td> </td><td class="printindex-index-section"><a href="#Ignore-Lists">Ignore Lists</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-ignore-lists-1">ignore lists</a>:</td><td> </td><td class="printindex-index-section"><a href="#Motivation-For-Ignore-Lists">Motivation For Ignore Lists</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-ignoring-files-and-directories">ignoring files and directories</a>:</td><td> </td><td class="printindex-index-section"><a href="#Ignore-Lists">Ignore Lists</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-installation">installation</a>:</td><td> </td><td class="printindex-index-section"><a href="#Installing-Packages">Installing Packages</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-installation-conflicts">installation conflicts</a>:</td><td> </td><td class="printindex-index-section"><a href="#Installing-Packages">Installing Packages</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-installation-image">installation image</a>:</td><td> </td><td class="printindex-index-section"><a href="#Terminology">Terminology</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_cp_letter-M">M</th><td></td><td></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-maintenance">maintenance</a>:</td><td> </td><td class="printindex-index-section"><a href="#Target-Maintenance">Target Maintenance</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-mixing-operations">mixing operations</a>:</td><td> </td><td class="printindex-index-section"><a href="#Mixing-Operations">Mixing Operations</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_cp_letter-O">O</th><td></td><td></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-ownership">ownership</a>:</td><td> </td><td class="printindex-index-section"><a href="#Installing-Packages">Installing Packages</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_cp_letter-P">P</th><td></td><td></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-package">package</a>:</td><td> </td><td class="printindex-index-section"><a href="#Terminology">Terminology</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-package-directory">package directory</a>:</td><td> </td><td class="printindex-index-section"><a href="#Terminology">Terminology</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-package-name">package name</a>:</td><td> </td><td class="printindex-index-section"><a href="#Terminology">Terminology</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_cp_letter-R">R</th><td></td><td></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-refolding-trees">refolding trees</a>:</td><td> </td><td class="printindex-index-section"><a href="#Deleting-Packages">Deleting Packages</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-relative-symlink">relative symlink</a>:</td><td> </td><td class="printindex-index-section"><a href="#Terminology">Terminology</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-resource-files">resource files</a>:</td><td> </td><td class="printindex-index-section"><a href="#Resource-Files">Resource Files</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_cp_letter-S">S</th><td></td><td></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-simulated-run">simulated run</a>:</td><td> </td><td class="printindex-index-section"><a href="#Invoking-Stow">Invoking Stow</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-splitting-open-folded-trees">splitting open folded trees</a>:</td><td> </td><td class="printindex-index-section"><a href="#Installing-Packages">Installing Packages</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-stow-directory">stow directory</a>:</td><td> </td><td class="printindex-index-section"><a href="#Terminology">Terminology</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-symlink">symlink</a>:</td><td> </td><td class="printindex-index-section"><a href="#Terminology">Terminology</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-symlink-destination">symlink destination</a>:</td><td> </td><td class="printindex-index-section"><a href="#Terminology">Terminology</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-symlink-source">symlink source</a>:</td><td> </td><td class="printindex-index-section"><a href="#Terminology">Terminology</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_cp_letter-T">T</th><td></td><td></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-target-directory">target directory</a>:</td><td> </td><td class="printindex-index-section"><a href="#Terminology">Terminology</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-tree-folding">tree folding</a>:</td><td> </td><td class="printindex-index-section"><a href="#Installing-Packages">Installing Packages</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-tree-refolding">tree refolding</a>:</td><td> </td><td class="printindex-index-section"><a href="#Deleting-Packages">Deleting Packages</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-tree-unfolding">tree unfolding</a>:</td><td> </td><td class="printindex-index-section"><a href="#Installing-Packages">Installing Packages</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-tree-unsplitting">tree unsplitting</a>:</td><td> </td><td class="printindex-index-section"><a href="#Installing-Packages">Installing Packages</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_cp_letter-U">U</th><td></td><td></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-unfolding-trees">unfolding trees</a>:</td><td> </td><td class="printindex-index-section"><a href="#Installing-Packages">Installing Packages</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_cp_letter-V">V</th><td></td><td></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-verbosity-levels">verbosity levels</a>:</td><td> </td><td class="printindex-index-section"><a href="#Invoking-Stow">Invoking Stow</a></td></tr>
<tr><td colspan="4"> <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>
</div>
</div>
<div class="footnotes-segment">
<hr>
<h4 class="footnotes-heading">Footnotes</h4>
<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>
<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>
<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 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 <code class="command">basename</code> command.</p>
<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 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>
<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>
|