mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-10 07:04:03 +00:00
- Update to 0.16.15
- Remove obsolete patches, changed by Upstream
This commit is contained in:
parent
c9699bcce3
commit
7d4bd5dedb
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=344541
@ -2,7 +2,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= libtorrent-rasterbar
|
||||
PORTVERSION= 0.16.14
|
||||
PORTVERSION= 0.16.15
|
||||
CATEGORIES?= net-p2p ipv6
|
||||
MASTER_SITES= SF/${PORTNAME:S/-rasterbar//}/${PORTNAME:S/-rasterbar//}/
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (libtorrent-rasterbar-0.16.14.tar.gz) = 4c54207850c32c0a65c7b5bb089731e50285024e0992fe6e29f831249c198e68
|
||||
SIZE (libtorrent-rasterbar-0.16.14.tar.gz) = 3012772
|
||||
SHA256 (libtorrent-rasterbar-0.16.15.tar.gz) = 820fdfeca3f45a58ec2fc5de138887e890637b3d62fe5717eb8dcd072f249f75
|
||||
SIZE (libtorrent-rasterbar-0.16.15.tar.gz) = 3014808
|
||||
|
@ -1,11 +0,0 @@
|
||||
--- ./src/disk_io_thread.cpp.orig 2013-09-26 03:30:20.000000000 +0200
|
||||
+++ ./src/disk_io_thread.cpp 2014-02-13 21:36:20.000000000 +0100
|
||||
@@ -1765,7 +1765,7 @@
|
||||
#endif
|
||||
TORRENT_ASSERT(j.buffer);
|
||||
session_settings const* s = ((session_settings*)j.buffer);
|
||||
- TORRENT_ASSERT(s->cache_size >= 0);
|
||||
+ TORRENT_ASSERT(s->cache_size >= -1);
|
||||
TORRENT_ASSERT(s->cache_expiry > 0);
|
||||
|
||||
#if defined TORRENT_WINDOWS
|
@ -1,11 +0,0 @@
|
||||
--- ./src/storage.cpp.orig 2014-01-24 11:05:39.000000000 +0100
|
||||
+++ ./src/storage.cpp 2014-02-13 21:33:49.000000000 +0100
|
||||
@@ -1223,7 +1223,7 @@
|
||||
// if the file has priority 0, don't allocate it
|
||||
int file_index = files().file_index(*file_iter);
|
||||
if (m_allocate_files && (op.mode & file::rw_mask) != file::read_only
|
||||
- && (m_file_priority.size() < file_index || m_file_priority[file_index] > 0))
|
||||
+ && (m_file_priority.size() <= file_index || m_file_priority[file_index] > 0))
|
||||
{
|
||||
TORRENT_ASSERT(m_file_created.size() == files().num_files());
|
||||
if (m_file_created[file_index] == false)
|
Loading…
Reference in New Issue
Block a user