While here, chase some KDE4 ports and functionality, these are scheduled for
removal on 2018-12-31. Change the default option/flavor to QT5 where applicable
or use alternative toolkits like GTK.
Submitted by: tcberner
Reviewed by: adridg, jhale, rene, tcberner
Approved by: portmgr (implicit, flavor hook)
Differential Revision: https://reviews.freebsd.org/D17741
Also, switched to Qt5 because net/qt4-network is required by dependency
however it fails to build with OpenSSL 1.1.1. FreeBSD base OpenSSL has been
switched to 1.1.1 since FreeBSD 12.
PR: 233201
Submitted by: Chad Jacob Milios <milios@ccsys.com> (maintainer)
Approved by: mentors (implicit)
* PyQt could not be installed for multiple Python versions at
the same time, as there were conflicting files.
This patch creates Python-version versioned directories for
all these, and further installs binaries with a version number.
* Note, there might be some hickups for software that depends on
on of the .so's provided by PyQt5, which might not be found
anymore autmotically, and maybe need some LD-flaggery.
* Update PyQt5 to 5.10.1
* Mark www/py-qt5-webengine broken. It is unforuntately no longer
compatible with the old qt5-webengine-5.9.4 we ship.
PR: 232745
Exp-run by: antoine
Differential Revision: https://reviews.freebsd.org/D8714
Changelog:
- Security fix with btsync:// protocol
- Fixed crashes when reading damaged database
- Removed false positive "Cannot get list of trackers" error message
- Fixed joining multicasts on 172.16.0.0/12 networks
- Fixed showing duplicated peers and devices on OS X
- Fixed failure to save settings in WebUI sometimes
- Fixed decrypting files on encrypted peer
Changelog: https://help.resilio.com/hc/en-us/articles/206216855-Sync-2-x-change-log
PR: 232345
Reported by: Volodymyr Kostyrko <arcade@b1t.name> (maintainer)
MFH: 2018Q4
Sponsored by: Netzkommune GmbH
Remove unused patches.
While here, fix build with OpenSSL 1.1.x
PR: 231274
Submitted by: Henry David Bartholomew <PopularMoment@protonmail.com>
MFH: 2018Q4
Simplify some ports where DragonFlyBSD no longer needs to be special-cased.
Submitted by: rene
Reviewed by: bapt, jbeich
Differential Revision: https://reviews.freebsd.org/D17724
src/cryptonote_basic/miner.cpp:640:25: error: assigning to 'bool' from incompatible type 'boost::logic::tribool'
on_ac_power = !battery_powered;
^~~~~~~~~~~~~~~~
PR: 232525
In file included from include/libtorrent/chained_buffer.hpp:37:
include/libtorrent/disk_io_job.hpp:78:12: error: expected class name
, boost::noncopyable
^
In file included from src/http_stream.cpp:33:
In file included from include/libtorrent/http_stream.hpp:44:
include/libtorrent/proxy_base.hpp:49:20: error: unknown class name 'noncopyable'; did you mean 'boost::asio::noncopyable'?
class proxy_base : boost::noncopyable
^~~~~~~~~~~~~~~~~~
boost::asio::noncopyable
/usr/local/include/boost/asio/detail/noncopyable.hpp:38:28: note: 'boost::asio::noncopyable' declared here
using boost::asio::detail::noncopyable;
^
In file included from src/session.cpp:58:
include/libtorrent/tracker_manager.hpp:274:5: error: unknown class name 'noncopyable'; did you mean 'boost::asio::noncopyable'?
, boost::noncopyable
^~~~~~~~~~~~~~~~~~
boost::asio::noncopyable
/usr/local/include/boost/asio/detail/noncopyable.hpp:38:28: note: 'boost::asio::noncopyable' declared here
using boost::asio::detail::noncopyable;
^
In file included from src/session.cpp:58:
include/libtorrent/tracker_manager.hpp:363:5: error: unknown class name 'noncopyable'; did you mean 'boost::asio::noncopyable'?
, boost::noncopyable
^~~~~~~~~~~~~~~~~~
boost::asio::noncopyable
/usr/local/include/boost/asio/detail/noncopyable.hpp:38:28: note: 'boost::asio::noncopyable' declared here
using boost::asio::detail::noncopyable;
^
src/kademlia/dht_storage.cpp:186:74: error: unknown class name 'noncopyable'; did you mean 'boost::asio::noncopyable'?
class dht_default_storage TORRENT_FINAL : public dht_storage_interface, boost::noncopyable
^~~~~~~~~~~~~~~~~~
boost::asio::noncopyable
/usr/local/include/boost/asio/detail/noncopyable.hpp:38:28: note: 'boost::asio::noncopyable' declared here
using boost::asio::detail::noncopyable;
^
In file included from include/libtorrent/kademlia/rpc_manager.hpp:56:
include/libtorrent/kademlia/observer.hpp:60:40: error: unknown class name 'noncopyable'; did you mean 'boost::asio::noncopyable'?
struct TORRENT_EXTRA_EXPORT observer : boost::noncopyable
^~~~~~~~~~~~~~~~~~
boost::asio::noncopyable
/usr/local/include/boost/asio/detail/noncopyable.hpp:38:28: note: 'boost::asio::noncopyable' declared here
using boost::asio::detail::noncopyable;
^
PR: 232525
Several missing symbol problems are worked around by adding a define to CFLAGS, and adding libraries to LDFLAGS.
Also fix a typo in pkg-descr.
Reported by: TJ <tj@mrsk.me>
Port changes for net-p2p/libtorrent-rasterbar:
* Change to cmake
* Add LICENSE_FILE
* Add USES=compiler:c++14-lang
* Remove the TEST option, add the cmake-based do-test target, but it is broken upstream
Port changes for net-p2p/libtorrent-rasterbar-python:
* Complete redesign, made it an individual port instead of a slave
Bump 5 dependencies.
Reported by: TJ <tj@mrsk.me>