pkgsrc-Changes archive

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

CVS commit: pkgsrc/net



Module Name:    pkgsrc
Committed By:   adam
Date:           Sun May  4 13:12:44 UTC 2025

Modified Files:
        pkgsrc/net/libtorrent: Makefile PLIST distinfo
        pkgsrc/net/rtorrent: Makefile distinfo
Removed Files:
        pkgsrc/net/libtorrent/patches: patch-scripts_common.m4
        pkgsrc/net/rtorrent/patches: patch-configure

Log Message:
libtorrent rtorrent: updated to 0.15.3

0.15.3

Fixed slow SCGI replies.
Cleaned up thread/scheduler code.
Improved example configs.
Code bug fixes and cleanup.


To generate a diff of this commit:
cvs rdiff -u -r1.67 -r1.68 pkgsrc/net/libtorrent/Makefile
cvs rdiff -u -r1.15 -r1.16 pkgsrc/net/libtorrent/PLIST
cvs rdiff -u -r1.47 -r1.48 pkgsrc/net/libtorrent/distinfo
cvs rdiff -u -r1.1 -r0 pkgsrc/net/libtorrent/patches/patch-scripts_common.m4
cvs rdiff -u -r1.104 -r1.105 pkgsrc/net/rtorrent/Makefile
cvs rdiff -u -r1.43 -r1.44 pkgsrc/net/rtorrent/distinfo
cvs rdiff -u -r1.1 -r0 pkgsrc/net/rtorrent/patches/patch-configure

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/Makefile
diff -u pkgsrc/net/libtorrent/Makefile:1.67 pkgsrc/net/libtorrent/Makefile:1.68
--- pkgsrc/net/libtorrent/Makefile:1.67 Tue Apr  1 09:37:04 2025
+++ pkgsrc/net/libtorrent/Makefile      Sun May  4 13:12:44 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.67 2025/04/01 09:37:04 adam Exp $
+# $NetBSD: Makefile,v 1.68 2025/05/04 13:12:44 adam Exp $
 
-DISTNAME=      libtorrent-0.15.2
+DISTNAME=      libtorrent-0.15.3
 CATEGORIES=    net
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=rakshasa/}
 GITHUB_TAG=    v${PKGVERSION_NOREV}

Index: pkgsrc/net/libtorrent/PLIST
diff -u pkgsrc/net/libtorrent/PLIST:1.15 pkgsrc/net/libtorrent/PLIST:1.16
--- pkgsrc/net/libtorrent/PLIST:1.15    Tue Apr  1 09:37:04 2025
+++ pkgsrc/net/libtorrent/PLIST Sun May  4 13:12:44 2025
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.15 2025/04/01 09:37:04 adam Exp $
+@comment $NetBSD: PLIST,v 1.16 2025/05/04 13:12:44 adam Exp $
 include/torrent/bitfield.h
 include/torrent/chunk_manager.h
 include/torrent/common.h
@@ -61,6 +61,7 @@ include/torrent/tracker/tracker_state.h
 include/torrent/tracker/wrappers.h
 include/torrent/tracker_controller.h
 include/torrent/tracker_list.h
+include/torrent/utils/chrono.h
 include/torrent/utils/directory_events.h
 include/torrent/utils/extents.h
 include/torrent/utils/log.h
@@ -68,9 +69,9 @@ include/torrent/utils/log_buffer.h
 include/torrent/utils/option_strings.h
 include/torrent/utils/ranges.h
 include/torrent/utils/resume.h
+include/torrent/utils/scheduler.h
 include/torrent/utils/signal_bitfield.h
 include/torrent/utils/thread.h
-include/torrent/utils/thread_interrupt.h
 include/torrent/utils/uri_parser.h
 lib/libtorrent.la
 lib/pkgconfig/libtorrent.pc

Index: pkgsrc/net/libtorrent/distinfo
diff -u pkgsrc/net/libtorrent/distinfo:1.47 pkgsrc/net/libtorrent/distinfo:1.48
--- pkgsrc/net/libtorrent/distinfo:1.47 Tue Apr  1 09:37:04 2025
+++ pkgsrc/net/libtorrent/distinfo      Sun May  4 13:12:44 2025
@@ -1,9 +1,8 @@
-$NetBSD: distinfo,v 1.47 2025/04/01 09:37:04 adam Exp $
+$NetBSD: distinfo,v 1.48 2025/05/04 13:12:44 adam Exp $
 
-BLAKE2s (libtorrent-0.15.2.tar.gz) = 126fe033abb0794f59f3e54e081774c71de46dd20cbce80d9988d1171c56098a
-SHA512 (libtorrent-0.15.2.tar.gz) = e944b8e0ce575d443067372a9736a54ccb1181e5640a20ece66233996cb247ccf108f7a52141df109d88f817be1db30609c20f16a2e804e41079f5e26a4ed852
-Size (libtorrent-0.15.2.tar.gz) = 454286 bytes
-SHA1 (patch-scripts_common.m4) = a1c5593dc9569df92cb822d3cf9929edde2630f8
+BLAKE2s (libtorrent-0.15.3.tar.gz) = c486086329eac34e52e4a41f4f86b66f99b8804105c750f8e059d40056476c6d
+SHA512 (libtorrent-0.15.3.tar.gz) = 5850f84c0067aa3d0f306482f5368374e380e3623571a2a8908a956ecd3f803785c5a1fdbb84b5322a7207bbddb27c8150226cf75703dc5a311f32addeda11a9
+Size (libtorrent-0.15.3.tar.gz) = 458390 bytes
 SHA1 (patch-src_data_chunk__list.cc) = 92a5f36d7ae993667123051b39e6033c73169f4e
 SHA1 (patch-src_data_memory__chunk.cc) = 25c1e529223ab4873f61430e922949eeb29637c4
 SHA1 (patch-src_torrent_net_socket__address__key.h) = a50248e4272f413458236730508d5903fdeba53d

Index: pkgsrc/net/rtorrent/Makefile
diff -u pkgsrc/net/rtorrent/Makefile:1.104 pkgsrc/net/rtorrent/Makefile:1.105
--- pkgsrc/net/rtorrent/Makefile:1.104  Sat Apr 19 07:58:14 2025
+++ pkgsrc/net/rtorrent/Makefile        Sun May  4 13:12:44 2025
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.104 2025/04/19 07:58:14 wiz Exp $
+# $NetBSD: Makefile,v 1.105 2025/05/04 13:12:44 adam Exp $
 
-DISTNAME=      rtorrent-0.15.2
-PKGREVISION=   2
+DISTNAME=      rtorrent-0.15.3
 CATEGORIES=    net
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=rakshasa/}
 GITHUB_RELEASE=        v${PKGVERSION_NOREV}

Index: pkgsrc/net/rtorrent/distinfo
diff -u pkgsrc/net/rtorrent/distinfo:1.43 pkgsrc/net/rtorrent/distinfo:1.44
--- pkgsrc/net/rtorrent/distinfo:1.43   Tue Apr  1 09:37:54 2025
+++ pkgsrc/net/rtorrent/distinfo        Sun May  4 13:12:44 2025
@@ -1,9 +1,8 @@
-$NetBSD: distinfo,v 1.43 2025/04/01 09:37:54 adam Exp $
+$NetBSD: distinfo,v 1.44 2025/05/04 13:12:44 adam Exp $
 
-BLAKE2s (rtorrent-0.15.2.tar.gz) = 8d92714f872abc8c09e444ea510648aa29b98d36b83e6cfe6b8f0fdacd59854e
-SHA512 (rtorrent-0.15.2.tar.gz) = 557bb11d2f941a1d880723333bb9d47a3835dae15dc5477495725398fea010191ec6cef63625a6ad8de6b3253b48cede1cf257336c901854de550810ad3717ef
-Size (rtorrent-0.15.2.tar.gz) = 858419 bytes
-SHA1 (patch-configure) = 18c59449e34a3b2dba7d462937a217b5ff676153
+BLAKE2s (rtorrent-0.15.3.tar.gz) = bad0456b98ce534d1ecaadcd8a485a0f2e343626d1c3d3c4a12a0966846902d4
+SHA512 (rtorrent-0.15.3.tar.gz) = 060319e0e4a5563c29d21b41e369e14e37bf5cc949c60cf482432c4cadda82151e0c5fef8f8082fd765b777b758676907eed070840117cac30565406717cf77c
+Size (rtorrent-0.15.3.tar.gz) = 858703 bytes
 SHA1 (patch-src_display_canvas.h) = 56fa7905b3e11c6fd277d64b1209e7207e6a4a8e
 SHA1 (patch-src_utils_directory.cc) = b3b38e1d9d0887711ac54433e948bfc28112b985
 SHA1 (patch-src_utils_directory.h) = 77280b6ab0ba69c77c5bb88eca7beb11954415ad



Home | Main Index | Thread Index | Old Index