pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/net/libtorrent-rasterbar



Module Name:    pkgsrc
Committed By:   adam
Date:           Mon Oct 24 17:58:14 UTC 2022

Modified Files:
        pkgsrc/net/libtorrent-rasterbar: Makefile PLIST distinfo

Log Message:
libtorrent-rasterbar: updated to 2.0.8

libtorrent-2.0.8

fix uTP streams timing out instead of closing cleanly
add write_torrent_file_buf() overload for generating .torrent files
add create_torrent::generate_buf() function to generate into a buffer
fix copy_file when the file ends with a sparse region
uTP performance, fix packet loss when sending is stalled
fix trackers being stuck after session pause/resume
fix bug in hash_picker with empty files
uTP performance, prevent premature timeouts/resends
add option to not memory map files below a certain size
settings_pack now returns default values when queried for missing settings
fix copy_file fall-back when SEEK_HOL/SEEK_DATA is not supported
improve error reporting from file copy and move
tweak pad file placement to match reference implementation (tail-padding)
uTP performance, more lenient nagle's algorithm to always allow one outstanding undersized packet
uTP performance, piggy-back held back undersized packet with ACKs
uTP performance, don't send redundant deferred ACKs
support incoming SOCKS5 packets with hostnames as source address, for UDP trackers
ignore duplicate network interface change notifications on linux
fix total_want/want accounting when forcing a recheck
fix merging metadata with magnet links added on top of existing torrents
add torrent_flag to default all file priorities to dont_download
fix &so= feature in magnet links
improve compatibility of SOCKS5 UDP ASSOCIATE
fix madvise range for flushing cache in mmap_storage
open files with no_cache set in O_SYNC mode


To generate a diff of this commit:
cvs rdiff -u -r1.26 -r1.27 pkgsrc/net/libtorrent-rasterbar/Makefile
cvs rdiff -u -r1.7 -r1.8 pkgsrc/net/libtorrent-rasterbar/PLIST
cvs rdiff -u -r1.18 -r1.19 pkgsrc/net/libtorrent-rasterbar/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/net/libtorrent-rasterbar/Makefile
diff -u pkgsrc/net/libtorrent-rasterbar/Makefile:1.26 pkgsrc/net/libtorrent-rasterbar/Makefile:1.27
--- pkgsrc/net/libtorrent-rasterbar/Makefile:1.26       Sat Sep 24 08:43:45 2022
+++ pkgsrc/net/libtorrent-rasterbar/Makefile    Mon Oct 24 17:58:14 2022
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.26 2022/09/24 08:43:45 nia Exp $
+# $NetBSD: Makefile,v 1.27 2022/10/24 17:58:14 adam Exp $
 
-DISTNAME=      libtorrent-rasterbar-2.0.7
+DISTNAME=      libtorrent-rasterbar-2.0.8
 CATEGORIES=    net
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=arvidn/}
 GITHUB_PROJECT=        libtorrent

Index: pkgsrc/net/libtorrent-rasterbar/PLIST
diff -u pkgsrc/net/libtorrent-rasterbar/PLIST:1.7 pkgsrc/net/libtorrent-rasterbar/PLIST:1.8
--- pkgsrc/net/libtorrent-rasterbar/PLIST:1.7   Mon Jul 18 07:30:43 2022
+++ pkgsrc/net/libtorrent-rasterbar/PLIST       Mon Oct 24 17:58:14 2022
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.7 2022/07/18 07:30:43 adam Exp $
+@comment $NetBSD: PLIST,v 1.8 2022/10/24 17:58:14 adam Exp $
 include/libtorrent/add_torrent_params.hpp
 include/libtorrent/address.hpp
 include/libtorrent/alert.hpp
@@ -35,10 +35,12 @@ include/libtorrent/aux_/disk_buffer_pool
 include/libtorrent/aux_/disk_io_thread_pool.hpp
 include/libtorrent/aux_/disk_job_fence.hpp
 include/libtorrent/aux_/disk_job_pool.hpp
+include/libtorrent/aux_/drive_info.hpp
 include/libtorrent/aux_/ed25519.hpp
 include/libtorrent/aux_/escape_string.hpp
 include/libtorrent/aux_/export.hpp
 include/libtorrent/aux_/ffs.hpp
+include/libtorrent/aux_/file_descriptor.hpp
 include/libtorrent/aux_/file_pointer.hpp
 include/libtorrent/aux_/file_progress.hpp
 include/libtorrent/aux_/file_view_pool.hpp
@@ -58,6 +60,7 @@ include/libtorrent/aux_/merkle.hpp
 include/libtorrent/aux_/merkle_tree.hpp
 include/libtorrent/aux_/mmap.hpp
 include/libtorrent/aux_/mmap_disk_job.hpp
+include/libtorrent/aux_/netlink_utils.hpp
 include/libtorrent/aux_/noexcept_movable.hpp
 include/libtorrent/aux_/numeric_cast.hpp
 include/libtorrent/aux_/open_mode.hpp
@@ -102,6 +105,7 @@ include/libtorrent/aux_/utp_stream.hpp
 include/libtorrent/aux_/vector.hpp
 include/libtorrent/aux_/win_cng.hpp
 include/libtorrent/aux_/win_crypto_provider.hpp
+include/libtorrent/aux_/win_file_handle.hpp
 include/libtorrent/aux_/win_util.hpp
 include/libtorrent/aux_/windows.hpp
 include/libtorrent/bdecode.hpp
@@ -132,6 +136,7 @@ include/libtorrent/extensions/smart_ban.
 include/libtorrent/extensions/ut_metadata.hpp
 include/libtorrent/extensions/ut_pex.hpp
 include/libtorrent/file.hpp
+include/libtorrent/file_layout.hpp
 include/libtorrent/file_storage.hpp
 include/libtorrent/fingerprint.hpp
 include/libtorrent/flags.hpp

Index: pkgsrc/net/libtorrent-rasterbar/distinfo
diff -u pkgsrc/net/libtorrent-rasterbar/distinfo:1.18 pkgsrc/net/libtorrent-rasterbar/distinfo:1.19
--- pkgsrc/net/libtorrent-rasterbar/distinfo:1.18       Mon Jul 18 07:30:43 2022
+++ pkgsrc/net/libtorrent-rasterbar/distinfo    Mon Oct 24 17:58:14 2022
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.18 2022/07/18 07:30:43 adam Exp $
+$NetBSD: distinfo,v 1.19 2022/10/24 17:58:14 adam Exp $
 
-BLAKE2s (libtorrent-rasterbar-2.0.7.tar.gz) = 9fb9513a2a7d19d947a0350653196f6629bd772ad50fe18c4ecd0039ff48f375
-SHA512 (libtorrent-rasterbar-2.0.7.tar.gz) = 30e558245a261ccf3f23815a037477ae6da1a02da0b7b3aa40383058c5782a341a11ae684f959efc1c9b39e31475ec31451b9ff4b2db3c0bfccc4d42bd6d69c1
-Size (libtorrent-rasterbar-2.0.7.tar.gz) = 4453469 bytes
+BLAKE2s (libtorrent-rasterbar-2.0.8.tar.gz) = b5a0c83add1e8f16b6c261d4dfde90234168db706c5adac59a123d867abc43b8
+SHA512 (libtorrent-rasterbar-2.0.8.tar.gz) = 697988feae149876745097bedfbfb4cceae00ffe1cd4ba2063dcb93a8eee9e99344f772b8364e3df1986a50105e386e56b75fe362707d58ba3272139d9beb98f
+Size (libtorrent-rasterbar-2.0.8.tar.gz) = 4562750 bytes
 SHA1 (patch-src_platform__util.cpp) = d1e316ab7a6925fb7050845aaf30ead3f67f0fd9



Home | Main Index | Thread Index | Old Index