• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

BitTorrent/H03-May-2022-8768

READMEH A D03-May-20222.5 KiB6650

TODOH A D03-May-20221 KiB3721

torrentsniffH A D03-May-20229.2 KiB370264

README

1TorrentSniff:
2
3TorrentSniff reports status information for a given torrent including the
4current number of complete copies (seeds) and incomplete copies (leeches)
5currently active.  TorrentSniff is derived from TorrentSpy 0.1.0.3-BETA.
6
7TorrentSniff home page:
8http://www.highprogrammer.com/alan/perl/torrentsniff.html
9
10TorrentSniff comes AS IS with NO WARRANTY OF ANY SORT.  See the COPYRIGHT
11section below for more details.
12
13---------------------------------------------------------------------------
14REQUIREMENTS:
15
16- Digest::SHA1
17	Version 2.02 works fine:
18	http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Digest-SHA1-2.02.tar.gz
19
20	On Unix-like systems if you've installed TorrentSniff in its own
21	directory, something like the following should install Digest::SHA1 for
22	TorrentSniff only.  Be sure to replace PATH_TO_TORRENTSNIFF_INSTALL!
23	(Use common sense while running the below!  This documentation is
24	provided AS IS with no warranty!)
25
26	cd /tmp
27	wget http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Digest-SHA1-2.02.tar.gz
28	tar -xvzf Digest-SHA1-2.02.tar.gz
29	rm Digest-SHA1-2.02.tar.gz
30	cd Digest-SHA1-2.02
31	perl Makefile.PL PREFIX=PATH_TO_TORRENTSNIFF_INSTALL
32	make
33	make test
34	make install
35	cd ..
36	\rm -rf Digest-SHA1-2.02/
37
38
39
40---------------------------------------------------------------------------
41COPYRIGHT:
42
43- Copyright 2003 Alan De Smet.  Released under MIT License.
44- Derived from TorrentSpy 0.1.0.3, Copyright 2003 "knowbuddy" at
45  users.sourceforge.net.  Released under MIT License.
46
47The MIT License:
48
49Permission is hereby granted, free of charge, to any person obtaining a
50copy of this software and associated documentation files (the "Software"),
51to deal in the Software without restriction, including without limitation
52the rights to use, copy, modify, merge, publish, distribute, sublicense,
53and/or sell copies of the Software, and to permit persons to whom the
54Software is furnished to do so, subject to the following conditions:
55
56The above copyright notice and this permission notice shall be included in
57all copies or substantial portions of the Software.
58
59THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
60IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
61FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
62AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
63LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
64FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
65DEALINGS IN THE SOFTWARE.
66