AUTHORS 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. Stow was originally written by Bob Glickstein <bobg+stow@zanshin.com>,
  2. Zanshin Software, Inc.
  3. Gord Matzigkeit <gord@enci.ucalgary.ca> made some early contributions.
  4. John Bazik wrote `fastcwd', the Perl subroutine for computing the
  5. current working directory (later removed in 1.3.3).
  6. Charles Briscoe-Smith <cpbs@debian.org> wrote the fix to prevent
  7. stow -D / stow -R removing initially-empty directories (mentioned
  8. in 1.3.3 section of NEWS).
  9. Adam Lackorzynski <al10@inf.tu-dresden.de> wrote the fix to prevent
  10. the generation of wrong links if there are links in the stow directory.
  11. Stow was maintained by Guillaume Morin <gmorin@gnu.org> up to November
  12. 2007. Guillaume originally imported the source code into the Savannah
  13. CVS repository on 2001/12/24 with the tag "v1_3_2". This history was
  14. later imported into git as described below.
  15. 1.3.3 was the last release of the 1.x series. The CVS history
  16. contains a few commits after 1.3.3 preparing for a 1.3.4 release which
  17. was never published (see the "import-cvs" tag in git).
  18. Between 2007 and 2009, a small team of people collaborated on a
  19. private in-house project on Stow:
  20. https://lists.gnu.org/archive/html/stow-devel/2011-11/msg00003.html
  21. Kahlil (Kal) Hodgson <kahlil@internode.on.net> performed a major
  22. rewrite in order to implement:
  23. 1. deferred operations,
  24. 2. option parsing via Getopt::Long,
  25. 3. options to support shared files,
  26. 4. support for multiple operations per invocation,
  27. 5. default command line arguments via '.stowrc' and '~/.stowrc' files,
  28. 6. better cooperation between multiple stow directories,
  29. 7. a test suite (and support code) to ensure that everything still works.
  30. As these changes required a dramatic reorganisation of the code, very
  31. little was left untouched, and so Stow's major version number was
  32. bumped up to 2. Austin Wood <austin.wood@rmit.edu.au> and Chris
  33. Hoobin <christopher.hoobin@rmit.edu.au> helped clean up the
  34. documentation for the new 2.x.y series, and created the texi2man
  35. script.
  36. Kahlil obtained permission to donate these changes back to GNU. The
  37. Subversion history from this period is no longer accessible, so the
  38. breakdown of the individual changes to the source code between 1.3.3
  39. and the unreleased 2.0.2 version have been lost; however some details
  40. are still visible in ChangeLog.OLD, which also acknowledges the
  41. contributions of Geoffrey Giesemann and Emil Mikulc.
  42. Sometime after this, Troy Will took over maintainership and imported
  43. the unreleased 2.0.2 code base as the original root commit into
  44. Savannah git repository.
  45. On 25th November 2011, Adam Spiers <stow@adamspiers.org> took over
  46. maintainership. He imported the CVS history into the Savannah git
  47. repository, grafting it onto the previous root commit imported by
  48. Troy, and tagged this as v2.0.2:
  49. https://lists.gnu.org/archive/html/stow-devel/2011-11/msg00001.html
  50. https://lists.gnu.org/archive/html/stow-devel/2011-11/msg00002.html
  51. refactored the backend code into new Stow.pm and Stow/Util.pm modules
  52. providing an OO interface, tightened up the test suite, added support
  53. for ignore lists, `make test', and distribution via CPAN, and cleaned
  54. up numerous other minor issues.
  55. These changes were included in 2.1.0, which was the first official
  56. release since 1.3.3 in 2002.
  57. Stow is currently maintained by Adam Spiers.