Commit graph

11 commits

Author SHA1 Message Date
bjs
6b2d528243 Update to version 0.12.1+1. Removed patches, as I believe autoconf
should automagically handle the features stuff (or at least other packages
that I look at don't seem to need this if they use autoconf, haven't looked
extensively, though).  This release brings lots of bug fixes.  Among
them are:


2008-01-10  Tatsuhiro Tsujikawa  <tujikawa at rednoah dot com>

	Fixed the bug that EX_TOO_LONG_PAYLOAD exception is thrown if just
	payload length(4bytes) are received. This happens because
	lenbufLength
	is not updated in this particular case and successive call of
	receiveMessage() overwrites payload length with bytes recieved which
	are payload body.

2007-12-22  Tatsuhiro Tsujikawa  <tujikawa at rednoah dot com>

	Fixed the bug that causes aria2 not to finish download. BUG#1855875.
	I could reproduce this bug in following procedure:
	1. Stop the download at the very beginning(1% or 100KB downloaded).
	2. Restart aria2.
	3. You see the download stopped around 99%.
	If timeout is reached, then _nextCommand is unused and it may
	contains
	segments and they won't be canceled. Actually, timeout is not needed
	here because if the server dropped connection, then retry is made.

2007-12-22  Tatsuhiro Tsujikawa  <tujikawa at rednoah dot com>

	Fixed the bug that returns incomplete data when it contains null
	character. A convenient constructor was also added.

2007-12-15  Tatsuhiro Tsujikawa  <tujikawa at rednoah dot com>

	Fixed the bug that prevents aria2 from loading cookie file when
	expire
	value is greater than 2^31-1. BUG#1851066

2007-12-14  Tatsuhiro Tsujikawa  <tujikawa at rednoah dot com>

	Fixed possible memory leak when an exception is thrown.

2007-12-10  Tatsuhiro Tsujikawa  <tujikawa at rednoah dot com>

	Fixed the bug: only first announce URL is tried in AnnounceTier,
	in stopped and completed event.

2007-12-09  Tatsuhiro Tsujikawa  <tujikawa at rednoah dot com>

	Removed unnecessary string copy. Updated doc and corrected
	indentation.
2008-02-18 00:00:18 +00:00
tnn
ad6ceadd25 Per the process outlined in revbump(1), perform a recursive revbump
on packages that are affected by the switch from the openssl 0.9.7
branch to the 0.9.8 branch. ok jlam@
2008-01-18 05:06:18 +00:00
bjs
5b691bc753 Update to version 0.12.0. Also, fix nbcompat includes (they were missing
<nbconfig/config.h>.  Partial list of changes:


2007-12-09  Tatsuhiro Tsujikawa  <tujikawa at rednoah dot com>

	Removed unnecessary string copy. Updated doc and corrected indentation.
	* src/Base64.cc

	Fixed compilation warnings
	* test/DataTest.cc
	* test/HttpRequestTest.cc
	* test/MetaFileUtilTest.cc
	* test/RequestTest.cc

	* Release 0.12.0

	Added Brazilian Portuguese, Catalan, Italian, Spanish, Swedish
	translations. Many thanks to translators.
	* po/{ca,es,it,pt_BR,sv}.po
	* po/LINGUAS

	Fixed the bug#1845750; CTRL+C does not stop torrent.
	aria2 repeatedly sends stopped request when tracker returns error code.

	Added a message when ctrl-c is hit.
	Now second ctrl-c is also handled in signal handler.


	Changed Direct/IO enable/disable procesure in file allocation routine.
	Disable directIO if offset is not multiple of 512.
	(~SingleFileAllocationIterator): Removed a call to disableDirectIO.
	* src/MultiFileAllocationIterator.cc (allocateChunk):
	Enable created SingleFileAllocationIterator's directIO.
	* src/FileAllocationEntry.cc
	(FileAllocationEntry): Enable directIO here.
	(~FileAllocationEntry): Disable directIO here.

	Fixed the bug: aria2 doesn't utilize fast set index offered by peer.

	Rewritten direct I/O support routine

	Fixed compile error without message digest support.

	Enable direct I/O support in checksum checking.


	Added --allow-piece-length-change option.

	Fixed: duplicated result entry appears when exception is thrown in
	RequestGroup::createInitiateConnectionCommand().
	* src/RequestGroupMan.cc (fillRequestGroupFromReserver):
	Add RequestGroup to _requestGroup after RequetGroup::
	createInitiateConnectionCommand() succeeds.

	Externalized  message


	Forced download abort when received negative response from http/ftp
	server.

	Added XML2SAXMetalinkProcessor class, which is a lot faster than
	the predecessor, Xml2MetalinkParser class.
	I tested them against 94KB metalink file with 1234 chunk checksums.
	The new one parsed it in 22msec, while it took 6000msec with old one.

	Rewritten Base64 class for better performance.

	Fixed the bug#1841757: aria2 will connect to server to only get
	file size.

	Suppressed wrong message when finding PreDownloadHandler


	Eliminated g++-4.2 warning
	Fixed bug: --check-integrity doesn't work for multi file torrent.


	Added direct I/O support. The current implementation uses O_DIRECT,
	which is not posix standard and is tested on linux 2.6.21.
	Currently only file allocation uses direct I/O.
2007-12-14 12:46:21 +00:00
bjs
5503c5a98c Update to version 0.11.5. Remove interim patches from SVN.
Changes (patches took us to ~2007-11-11):

2007-11-17  Tatsuhiro Tsujikawa  <tujikawa at rednoah dot com>

	Synchronized translation files with launchpad.
	* po/fr.po
	* po/ru.po
	* po/de.po: Now utf-8 encoding
	* po/ja.po: Now utf-8 encoding

	* Release 0.11.5

2007-11-11  Tatsuhiro Tsujikawa  <tujikawa at rednoah dot com>

	urlencode the given url inside Request::parseUrl(...)
	* src/Request.{h, cc}
	* src/Util.{h, cc}
	* test/RequestTest.cc

	Removed #!metalink3! notation support because it is deleted from
	the metalink specification.
	* src/Request.{h, cc}
	* test/RequestTest.cc

2007-11-10  Tatsuhiro Tsujikawa  <tujikawa at rednoah dot com>

	* src/SocketCore.cc (writeData): Fixed send error with GnuTLS.

2007-10-29  Tatsuhiro Tsujikawa  <tujikawa at rednoah dot com>

	* src/HttpRequest.cc (createProxyRequest): Removed urlencode from
	user-agent.
	* test/HttpRequestTest.cc (testUserAgent): Added.
2007-11-23 07:46:34 +00:00
bjs
24cd7e68e8 Sync with stable-0.11 branch. Bump rev. 2007-11-16 08:06:33 +00:00
bjs
a774c57ff4 Employ USE_FEATURES for getopt_long and snpritnf. Remove devel/libgetopt dependency. Bump rev. 2007-11-07 08:08:18 +00:00
bjs
c424663663 Update to version 0.11.4. This is almost entirely a bug-fix release.
Please see ChangeLog for changes (it's too verbose to list them here).
2007-11-02 18:27:59 +00:00
bjs
8ed291ca0f Oops, let's try that again ... now pkglint is happy. ;) 2007-10-17 09:51:14 +00:00
bjs
19daf391c0 Change libares/libcares options to ares/cares. 2007-10-17 09:50:14 +00:00
bjs
e0800a2a31 Kill PKGREVISION which remained from pkgsrc-wip. 2007-10-17 09:44:44 +00:00
bjs
0ca60cabd3 Import aria2 0.11.3 (patched to stable-0.11 branch).
aria2 is a download utility with resuming and segmented downloading.
	Supported protocols are HTTP/HTTPS/FTP/BitTorrent; it also supports
	MetaLink 3.0.

	Some of its features:

	* Command-line interface
	* Download files through HTTP/HTTPS/FTP/BitTorrent
	* HTTP Proxy support
	* FTP through HTTP Proxy
	* HTTP BASIC authentication support
	* HTTP Proxy authentication support
	* Segmented downloading
	* Download speed throttling
	* Upload speed throttling in BitTorrent
	* Cookie support
	* Load Cookies from file whose format is one used by Netscape and
	  Mozilla.
	* Run as a daemon process.
	* Selective download in multi-file torrent/metalink
	* BitTorrent Fast extension support
	* Multi-tracker support
	* Metalink version 3.0 support(HTTP/FTP/BitTorrent)
	* Chunk checksum validation in Metalink
	* Can disable segmented downloading in Metalink
	* netrc support
	* Configuration file support
	* Download URIs found in a text file or stdin
	* Parameterized URI support
2007-10-17 09:42:39 +00:00