summaryrefslogtreecommitdiff
path: root/net/libtorrent-rasterbar
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2021-12-06 19:19:45 +0000
committeradam <adam@pkgsrc.org>2021-12-06 19:19:45 +0000
commit1456359c1e757033ec25fe8c6939b39f68ca3092 (patch)
tree3006146c4581d3327f076eaef510b75e80726166 /net/libtorrent-rasterbar
parent9c713330ab3b2822f2332077bdba05c99c500a74 (diff)
downloadpkgsrc-1456359c1e757033ec25fe8c6939b39f68ca3092.tar.gz
libtorrent-rasterbar: updated to 1.2.15
1.2.15 released cache DNS lookups for SOCKS5 proxy fix stalled pieces on disk-full errors fix build configuration issue on NetBSD, OpenBSD and DragonFly make UTF-8 sanitization a bit stricter. This will re-write invalid UTF-8 code points encoding surrogate pairs fix restoring last_seen_complete from resume data fix issue on MacOS where the DHT was not restarted on a network-up notification make remove_torrent flags be treated as flags (instead of an enum)
Diffstat (limited to 'net/libtorrent-rasterbar')
-rw-r--r--net/libtorrent-rasterbar/Makefile5
-rw-r--r--net/libtorrent-rasterbar/distinfo8
-rw-r--r--net/libtorrent-rasterbar/patches/patch-include_libtorrent_buffer.hpp24
3 files changed, 6 insertions, 31 deletions
diff --git a/net/libtorrent-rasterbar/Makefile b/net/libtorrent-rasterbar/Makefile
index bc8c4a97df6..b2d8db7fb94 100644
--- a/net/libtorrent-rasterbar/Makefile
+++ b/net/libtorrent-rasterbar/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.21 2021/09/29 19:00:10 adam Exp $
+# $NetBSD: Makefile,v 1.22 2021/12/06 19:19:45 adam Exp $
-DISTNAME= libtorrent-rasterbar-1.2.14
-PKGREVISION= 1
+DISTNAME= libtorrent-rasterbar-1.2.15
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_GITHUB:=arvidn/}
GITHUB_PROJECT= libtorrent
diff --git a/net/libtorrent-rasterbar/distinfo b/net/libtorrent-rasterbar/distinfo
index 11cc216e71f..18d154253e9 100644
--- a/net/libtorrent-rasterbar/distinfo
+++ b/net/libtorrent-rasterbar/distinfo
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.15 2021/10/26 11:05:57 nia Exp $
+$NetBSD: distinfo,v 1.16 2021/12/06 19:19:45 adam Exp $
-BLAKE2s (libtorrent-rasterbar-1.2.14.tar.gz) = 1156456614c08f4f743545133b7b07504821a17afa68a44c90f0583883396f94
-SHA512 (libtorrent-rasterbar-1.2.14.tar.gz) = 9d23184785597a11f96e9d68ac7bd2ba73a9dbc0568c3fd81ba2f1ef2381f6ee290b48a77f1db6f7ee82aa1f6640a6a54dbfbfa7b236bb3be8a6e083dce6cd69
-Size (libtorrent-rasterbar-1.2.14.tar.gz) = 4161627 bytes
+BLAKE2s (libtorrent-rasterbar-1.2.15.tar.gz) = 654b6249bbab71754fe8f4a2bfe8fd351841369e21a7394c489fa53f3f88e2fb
+SHA512 (libtorrent-rasterbar-1.2.15.tar.gz) = c409c53ec9c299a05b51ab61d7df1209803cbd6070f0a014dd6fb42c30f6f5230ea90848330f901c61816bc70901e618409acacc95bb0e5acb7f81211d001fa2
+Size (libtorrent-rasterbar-1.2.15.tar.gz) = 4163049 bytes
SHA1 (patch-include_libtorrent_buffer.hpp) = 365f04a6a4b63f86288119201bfec0b9d9e67bee
SHA1 (patch-include_libtorrent_config.hpp) = 20d887a755935cdc23bdc80fcfbc8f07a89ec1e1
diff --git a/net/libtorrent-rasterbar/patches/patch-include_libtorrent_buffer.hpp b/net/libtorrent-rasterbar/patches/patch-include_libtorrent_buffer.hpp
deleted file mode 100644
index 1ac8f4721ad..00000000000
--- a/net/libtorrent-rasterbar/patches/patch-include_libtorrent_buffer.hpp
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD: patch-include_libtorrent_buffer.hpp,v 1.2 2020/01/10 11:52:05 nia Exp $
-
-On second thought, let's not peek into internal malloc properties.
-
---- include/libtorrent/buffer.hpp.orig 2019-12-19 00:51:16.000000000 +0000
-+++ include/libtorrent/buffer.hpp
-@@ -49,8 +49,6 @@ POSSIBILITY OF SUCH DAMAGE.
- #include <malloc.h>
- #elif defined __FreeBSD__
- #include <malloc_np.h>
--#elif defined TORRENT_BSD
--#include <malloc/malloc.h>
- #endif
-
- namespace libtorrent {
-@@ -89,8 +87,6 @@ public:
- m_size = static_cast<difference_type>(::malloc_usable_size(m_begin));
- #elif defined _MSC_VER
- m_size = static_cast<difference_type>(::_msize(m_begin));
--#elif defined TORRENT_BSD
-- m_size = static_cast<difference_type>(::malloc_size(m_begin));
- #else
- m_size = size;
- #endif