forked from Lainports/freebsd-ports
net-p2p/{lib,r}torrent: Update to 0.15.1
* rtorrent: Added radio option to select between TINYXML and XMLRPC wrappers with default to TINYXML as upstream recomendation. ChangeLog: https://github.com/rakshasa/rtorrent/releases/tag/v0.15.1
This commit is contained in:
parent
2ff8da31cc
commit
3bc951be97
5 changed files with 18 additions and 17 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
PORTNAME= libtorrent
|
PORTNAME= libtorrent
|
||||||
DISTVERSION= 0.14.0
|
DISTVERSION= 0.15.1
|
||||||
CATEGORIES= net-p2p
|
CATEGORIES= net-p2p
|
||||||
MASTER_SITES= https://github.com/rakshasa/rtorrent/releases/download/v0.10.0/
|
MASTER_SITES= https://github.com/rakshasa/rtorrent/releases/download/v${DISTVERSION}/
|
||||||
|
|
||||||
MAINTAINER= eduardo@FreeBSD.org
|
MAINTAINER= eduardo@FreeBSD.org
|
||||||
COMMENT= BitTorrent Library written in C++
|
COMMENT= BitTorrent Library written in C++
|
||||||
|
|
@ -10,7 +10,7 @@ WWW= https://github.com/rakshasa/libtorrent
|
||||||
LICENSE= GPLv2+
|
LICENSE= GPLv2+
|
||||||
LICENSE_FILE= ${WRKSRC}/COPYING
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
||||||
|
|
||||||
USES= compiler:c++11-lang cpe libtool localbase:ldflags pathfix \
|
USES= compiler:c++14-lang cpe libtool localbase:ldflags pathfix \
|
||||||
pkgconfig ssl
|
pkgconfig ssl
|
||||||
USE_LDCONFIG= yes
|
USE_LDCONFIG= yes
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
TIMESTAMP = 1727611446
|
TIMESTAMP = 1735748325
|
||||||
SHA256 (libtorrent-0.14.0.tar.gz) = 17b816da5807c7b3455a1a48aae8dacf0f4ef75b1a4372c758948710066fd3ec
|
SHA256 (libtorrent-0.15.1.tar.gz) = ef96bcc1fe8c56108db2f323e562fb982af1e5f3f21086986d133518df874301
|
||||||
SIZE (libtorrent-0.14.0.tar.gz) = 809617
|
SIZE (libtorrent-0.15.1.tar.gz) = 805722
|
||||||
|
|
|
||||||
|
|
@ -68,6 +68,6 @@ include/torrent/utils/thread_base.h
|
||||||
include/torrent/utils/thread_interrupt.h
|
include/torrent/utils/thread_interrupt.h
|
||||||
include/torrent/utils/uri_parser.h
|
include/torrent/utils/uri_parser.h
|
||||||
lib/libtorrent.so
|
lib/libtorrent.so
|
||||||
lib/libtorrent.so.22
|
lib/libtorrent.so.23
|
||||||
lib/libtorrent.so.22.0.0
|
lib/libtorrent.so.23.0.0
|
||||||
libdata/pkgconfig/libtorrent.pc
|
libdata/pkgconfig/libtorrent.pc
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
PORTNAME= rtorrent
|
PORTNAME= rtorrent
|
||||||
DISTVERSION= 0.10.0
|
DISTVERSION= 0.15.1
|
||||||
CATEGORIES= net-p2p
|
CATEGORIES= net-p2p
|
||||||
MASTER_SITES= https://github.com/rakshasa/rtorrent/releases/download/v${DISTVERSION}/
|
MASTER_SITES= https://github.com/rakshasa/rtorrent/releases/download/v${DISTVERSION}/
|
||||||
|
|
||||||
|
|
@ -14,8 +14,7 @@ LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING
|
||||||
LIB_DEPENDS= libcurl.so:ftp/curl \
|
LIB_DEPENDS= libcurl.so:ftp/curl \
|
||||||
libtorrent.so:net-p2p/libtorrent
|
libtorrent.so:net-p2p/libtorrent
|
||||||
|
|
||||||
USES= compiler:c++11-lang ncurses pkgconfig
|
USES= compiler:c++14-lang ncurses pkgconfig
|
||||||
|
|
||||||
GNU_CONFIGURE= yes
|
GNU_CONFIGURE= yes
|
||||||
CONFIGURE_ARGS= --disable-debug
|
CONFIGURE_ARGS= --disable-debug
|
||||||
LDFLAGS+= -lexecinfo -pthread
|
LDFLAGS+= -lexecinfo -pthread
|
||||||
|
|
@ -26,14 +25,16 @@ PLIST_FILES= bin/rtorrent
|
||||||
PORTDOCS= README
|
PORTDOCS= README
|
||||||
PORTEXAMPLES= rtorrent.rc
|
PORTEXAMPLES= rtorrent.rc
|
||||||
|
|
||||||
OPTIONS_DEFINE= DOCS EXAMPLES IPV6 XMLRPC
|
OPTIONS_DEFINE= DOCS EXAMPLES IPV6
|
||||||
OPTIONS_DEFAULT= XMLRPC
|
OPTIONS_DEFAULT= TINYXML
|
||||||
|
OPTIONS_RADIO= XML
|
||||||
|
OPTIONS_RADIO_XML= TINYXML XMLRPC
|
||||||
XMLRPC_DESC= Compile with xmlrpc-c support
|
XMLRPC_DESC= Compile with xmlrpc-c support
|
||||||
|
|
||||||
IPV6_CONFIGURE_ENABLE= ipv6
|
IPV6_CONFIGURE_ENABLE= ipv6
|
||||||
|
TINYXML_CONFIGURE_ON= --with-xmlrpc-tinyxml2
|
||||||
XMLRPC_LIB_DEPENDS= libxmlrpc.so:net/xmlrpc-c
|
XMLRPC_LIB_DEPENDS= libxmlrpc.so:net/xmlrpc-c
|
||||||
XMLRPC_CONFIGURE_ON= --with-xmlrpc-c
|
XMLRPC_CONFIGURE_ON= --with-xmlrpc-c
|
||||||
XMLRPC_CONFIGURE_OFF= --with-xmlrpc-c=no
|
|
||||||
|
|
||||||
post-install-DOCS-on:
|
post-install-DOCS-on:
|
||||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}/
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}/
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
TIMESTAMP = 1727610825
|
TIMESTAMP = 1735748725
|
||||||
SHA256 (rtorrent-0.10.0.tar.gz) = cc65bba7abead24151f10af116eca2342b0c320fdff3cb8d604c0af09215d3aa
|
SHA256 (rtorrent-0.15.1.tar.gz) = 1d5437d7a6828f2f72a6c309f25f136eda1be69b059d250bc52e0d4185420506
|
||||||
SIZE (rtorrent-0.10.0.tar.gz) = 402931
|
SIZE (rtorrent-0.15.1.tar.gz) = 688056
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue