Hello community, here is the log from the commit of package aria2 for openSUSE:Factory checked in at Tue Sep 20 09:28:16 CEST 2011.
-------- --- aria2/aria2.changes 2011-03-18 22:05:48.000000000 +0100 +++ /mounts/work_src_done/STABLE/aria2/aria2.changes 2011-09-17 14:13:06.000000000 +0200 @@ -1,0 +2,108 @@ +Sat Sep 17 12:13:00 UTC 2011 - [email protected] + +- Remove redundant tags/sections from specfile + +------------------------------------------------------------------- +Wed Aug 03 23:27:09 UTC 2011 - [email protected] + +- update to 1.12.1: + * adds RFC 6249 Metalink/HTTP support + * current implementation only uses rel=duplicate links + * --enable-direct-io option was deprecated because of performance issue + * since recent GnuTLS uses libnettle as default instead of libgcrypt, this + release added initialization code for libgcrypt + * Initialize libgcrypt. We relied initialization of libgcrypt on + gnutls_global_init(), but recent change in gnutls, which changes default + crypto backend from libgcrypt to libnettle, leaves libgcrypt uninitialized + if it uses libnettle as backend (and this is likely because libnettle is + chosen by default). To fix this issue, we simply initialize libgcrypt on our + own. + * Throw exception with error message if gnutls_global_init() failed. + * Implemented Metalink/HTTP. Link header fields from first Metalink server is + utilized as described in rfc6249. We only set digest from Digest header + field to DownloadContext only when PieceStorage is not initialized(in other + words, before file size is known). After PieceStorage is initialized, Digest + header field is used to check the value is the same in digest in + DownloadContext. Current implementation only handles rel=duplicate. + * Remove Metalink content-type after first server response. + * Updated Russian translation of aria2 man page. + * Fixed the bug due to dangling pointers in RequestGroup. + * Added log message to clarify error for BitTorrent server socket. + * Added #deprecated help tag. + * Removed deprecated options: --enable-xml-rpc, --xml-rpc-listen-all, + --xml-rpc-listen-port, --xml-rpc-max-request-size, --xml-rpc-user, + --xml-rpc-passwd. + * Removed use of O_DIRECT because of performance issue. Deprecated + --enable-direct-io option. + * Increased the maximum number of in-flight request in BitTorrent. + * Added --log option to aria2rpc + +------------------------------------------------------------------- +Thu Jun 30 21:52:54 UTC 2011 - [email protected] + +- update to 1.12.0: + * Use ServerStat to find faster server. This is useful when several downloads + were started in parallel, but one download is slow and the other downloads + have completed. Then aria2 knows which servers are fast by the results of + completed downloads, and check the available URIs of slow downloads to see + faster server is available there. If so, use it instead of current slow one + to make download faster. + * Added Russian translation of man page and HTML manual. + * Added aria2.getGlobalStat RPC method. It returns overall download/upload + speed and the number of active/stopped/waiting downloads. + * Added --pause option. This option pauses download after added. This option + is effective only when --enable-rpc=true is given. When --save-session + option is used and there are paused downloads, they are saved with + --pause=true so that it will become paused state when the session is + recovered. + * Abort aria2 if it could not setup any RPC server. + * Added --truncate-console-readout option. This option truncates console + readout to fit in a single line. This is default. Give false value to this + option to tell aria2 not to truncate console readout. + * Cache and reuse RpcMethod objects. + * Allowed missing params in system.multicall RPC method. + * Added --stream-piece-selector option. This option specifies piece selection + algorithm used in HTTP/FTP download. Piece means fixed length segment which + is downloaded in parallel in segmented download. If 'default' is given, + aria2 selects piece so that it reduces the number of establishing + connection. This is reasonable default behaviour because establishing + connection is an expensive operation. If 'inorder' is given, aria2 selects + piece which has minimum index. Index=0 means first of the file. This will + be useful to view movie while downloading it. --enable-http-pipelining + option may be useful to reduce reconnection overhead. Please note that + aria2 honors --min-split-size option, so it will be necessary to specify a + reasonable value to --min-split-size option. + * Removed unnecessary template parameter from std::make_pair call. + * Only percent-encode non-printable ASCII chars(0x00-0x1f), non-ASCII + chars(>0x7f), ' ', '"', '<' and '>' for URIs supplied by user and remote + server(usually Location header field). + * Don't throw exception if Z_BUF_ERROR is encountered in GZipEncoder. This + fixed the bug that compressed RPC request failed. + * Don't save removed download in --save-session text file. Now stat column of + removed downloads in Download Results is 'RM' instead of INPR. + +------------------------------------------------------------------- +Sun May 22 10:51:15 UTC 2011 - [email protected] + +- update to 1.11.2: + * Updated Japanese, Spanish and Simplified Chinese translation + * Eliminated few seconds delay when downloads stop or pause + * Added --metalink-base-uri option. --metalink-uri option specifies + base URI to resolve relative URI in metalink file stored in local + disk. If URI points to a directory, URI must end with '/'. + * Fixed the bug that the message "Loaded cookies from ..." appears + when loading cookies from that file failed. + * Support relative URI in Metalink file. If relative URI is found in + Metalink file, aria2 resolves its full URI contatenating the URI + from which Metalink file is retrieved and relative URI in Metalink + file. This feature is not available if Metalink file in local disk + is specified in command line. + * Erase user and password specified in command-line from argv. The + user and password is masked with '*'. + * If no data type tag is used in XML-RPC, treat the data as string. + +- changes from 1.11.1: + * Added --show-console-readout option. This option toggles + appearance of console readout. + +------------------------------------------------------------------- calling whatdependson for head-i586 Old: ---- aria2-1.11.0.tar.bz2 New: ---- aria2-1.12.1.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ aria2.spec ++++++ --- /var/tmp/diff_new_pack.Kxxcdf/_old 2011-09-20 09:28:12.000000000 +0200 +++ /var/tmp/diff_new_pack.Kxxcdf/_new 2011-09-20 09:28:12.000000000 +0200 @@ -15,7 +15,6 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # -# norootforbuild %if 0%{?_with_gnutls:1} %define with_gnutls 1 @@ -38,7 +37,7 @@ %endif Name: aria2 -Version: 1.11.0 +Version: 1.12.1 Release: 1 Summary: Parallelizing Multi-Protocol Utility for Downloading Files Source: http://prdownloads.sourceforge.net/aria2/aria2-%{version}.tar.bz2 @@ -114,13 +113,6 @@ aria2 currently supports HTTP, FTP, and BitTorrent. - - - -Authors: --------- - Tatsuhiro Tsujikawa <[email protected]> - %if %with_bashcomp %package bash-completion @@ -211,9 +203,6 @@ #check #__make check -%clean -%{?buildroot:%__rm -rf "%{buildroot}"} - %files -f "aria2.lang" %defattr(-,root,root) %doc AUTHORS ChangeLog COPYING NEWS README @@ -221,6 +210,11 @@ %doc doc/aria2c.1.html %{_bindir}/aria2c %doc %{_mandir}/man1/aria2c.1%{ext_man} +%if 0%{?suse_version} <= 1120 +%dir %{_mandir}/*/man1 +%dir %{_mandir}/?? +%endif +%doc %{_mandir}/*/man1/aria2c.1%{ext_man} %if %with_bashcomp ++++++ aria2-1.11.0.tar.bz2 -> aria2-1.12.1.tar.bz2 ++++++ ++++ 79529 lines of diff (skipped) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
