aboutsummaryrefslogtreecommitdiff
path: root/multimedia/syncplay
Commit message (Collapse)AuthorAgeFilesLines
* One more small cleanup, forgotten yesterday.Mathieu Arnold2021-04-071-1/+0
| | | | Reported by: lwhsu
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* multimedia/syncplay: Update to 1.6.4aKai Knoblich2019-06-264-24/+40
| | | | | | | | PR: 238807 Submitted by: Christian Heckendorf <heckendorfc@gmail.com> (maintainer) Notes: svn path=/head/; revision=505182
* multimedia/syncplay: Update to 1.6.3Kai Knoblich2019-04-045-31/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: * New Syncplay logo * IPv6 support * Initial TLS (SSL) support * Spanish Language support * Automatically copy offer VLC interface script when it is needed * Fixed a VLC bug * Handle non-UTF8 messages to server * Use high-DPI scaling where available * Print error message if Twisted fails * Fixed bug which meant that –max-chat-message-length can’t be used to raise the maximum length * Fixed bug which meant that youtube-dl did not work on macOS https://syncplay.pl/changelog/ PR: 236708 Submitted by: Christian Heckendorf <heckendorfc@gmail.com> (maintainer) Approved by: mentors (implicit) Notes: svn path=/head/; revision=497868
* multimedia/syncplay: Update to 1.6.2Kai Knoblich2019-02-284-15/+26
| | | | | | | | | | | | | | | | | | | | | While I'm here: * Sort variables a bit Changelog: * Switched from Python 2 to Python 3 * For all changes since 1.5.5, see: https://syncplay.pl/changelog/ PR: 235790 Submitted by: Christian Heckendorf <heckendorfc@gmail.com> (maintainer) Approved by: miwi (mentor) Differential Revision: https://reviews.freebsd.org/D19278 Notes: svn path=/head/; revision=494151
* Fix Qt5 symbol version scripts to put the catch-all clause first. WhenTijl Coosemans2019-01-161-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a symbol matches multiple clauses the last one takes precedence. If the catch-all is last it captures everything. In the case of Qt5 libraries this caused all symbols to have a Qt_5 label while some should have Qt_5_PRIVATE_API. This only affects lld because GNU ld always gives the catch-all lowest priority. Older versions of Qt5Webengine exported some memory allocation symbols from the bundled Chromium. Version 5.9 stopped exporting these [1] but the symbols were kept as weak wrappers for the standard allocation functions to maintain binary compatibility. [2][3] The problem is that the call to the standard function in these weak wrappers is only resolved to the standard function if there's a call to this standard function in other parts of Qt5Webengine, because only then is there a non-weak symbol that takes precedence over the weak one. If there's no such non-weak symbol the call in the weak wrapper resolves to the weak wrapper itself creating an infinite call loop that overflows the stack and causes a crash. Some of the allocation functions are variants of C++ new and delete and it probably depends on the compiler whether these variants are used in other parts of Qt5Webengine. Remove the weak wrappers (make them Linux specific). This isn't binary compatible but we are already breaking that with the changes to the symbol versions. [1] https://github.com/qt/qtwebengine/commit/5c2cbfccf9aafb547b0b30914c4056abd25942a4 [2] https://github.com/qt/qtwebengine/commit/2ed5054e3a800fa97c2c9e920ba1e6ea4b6ef2a5 [3] https://github.com/qt/qtwebengine/commit/009f5ebb4bd6e50188671e0815a5dae6afe39db5 Bump all ports that depend on Qt5. PR: 234070 Exp-run by: antoine Approved by: kde (adridg) Notes: svn path=/head/; revision=490472
* multimedia/syncplay update to 1.5.5Steve Wills2018-07-092-4/+4
| | | | | | | | PR: 229621 Submitted by: Christian Heckendorf <heckendorfc@gmail.com> (maintainer) Notes: svn path=/head/; revision=474225
* multimedia/syncplay: Update 1.5.3 -> 1.5.4Yuri Victorovich2018-07-062-4/+4
| | | | | | | | PR: 229556 Submitted by: heckendorfc@gmail.com (maintainer) Notes: svn path=/head/; revision=474033
* multimedia/syncplay: Update 1.5.2 -> 1.5.3Yuri Victorovich2018-04-095-65/+85
| | | | | | | | | | | | | | Port changes: * Add LICENSE_FILE * Add post-patch fixing DATADIR * Change WWW to https * Update patch of makefile PR: 227371 Submitted by: Christian Heckendorf <heckendorfc@gmail.com> (maintainer) Notes: svn path=/head/; revision=466843
* multimedia/syncplay: Update to 1.5.2Yuri Victorovich2018-03-033-5/+10
| | | | | | | | | | | Added _DESC for port options. PR: 226325 Submitted by: Christian Heckendorf <heckendorfc@gmail.com> (maintainer) Approved by: tcberner (mentor, implicit) Notes: svn path=/head/; revision=463519
* Update multimedia/syncplay to 1.5.1Tobias C. Berner2017-12-283-6/+11
| | | | | | | | PR: 224605 Submitted by: Christian Heckendorf <heckendorfc@gmail.com> (maintainer) Notes: svn path=/head/; revision=457469
* Convert Python ports to FLAVORS.Mathieu Arnold2017-11-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ports using USE_PYTHON=distutils are now flavored. They will automatically get flavors (py27, py34, py35, py36) depending on what versions they support. There is also a USE_PYTHON=flavors for ports that do not use distutils but need FLAVORS to be set. A USE_PYTHON=noflavors can be set if using distutils but flavors are not wanted. A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been added to cope with Python ports that did not have the Python PKGNAMEPREFIX but are flavored. USES=python now also exports a PY_FLAVOR variable that contains the current python flavor. It can be used in dependency lines when the port itself is not python flavored. For example, deskutils/calibre. By default, all the flavors are generated. To only generate flavors for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf. In all the ports with Python dependencies, the *_DEPENDS entries MUST end with the flavor so that the framework knows which to build/use. This is done by appending '@${PY_FLAVOR}' after the origin (or @${FLAVOR} if in a Python module with Python flavors, as the content will be the same). For example: RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} PR: 223071 Reviewed by: portmgr, python Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D12464 Notes: svn path=/head/; revision=455210
* Update multimedia/syncplay to 1.5.0Tobias C. Berner2017-11-173-8/+7
| | | | | | | | PR: 223718 Submitted by: Christian Heckendorf <heckendorfc@gmail.com> (maintainer) Notes: svn path=/head/; revision=454381
* Change from USES=twisted to devel/py-twistedSunpoet Po-Chuan Hsieh2017-08-211-2/+4
| | | | | | | | | | | - Bump PORTREVISION for dependency change PR: 221654 Submitted by: sunpoet (myself) Approved by: Christian Heckendorf <heckendorfc@gmail.com> (maintainer) Notes: svn path=/head/; revision=448499
* - Fix plist: don't install unnneded file [1]Dmitry Marakasov2017-02-093-41/+26
| | | | | | | | | | | - While here, add NO_ARCH and clean up plist (sort and remove unneeded @dir's) [2] PR: 216933 Submitted by: tcberner@freebsd.org Approved by: heckendorfc@gmail.com (maintainer) [1], portmgr blanket [2] Notes: svn path=/head/; revision=433766
* Update multimedia/syncplay to 1.4.0Kirill Ponomarev2017-02-034-37/+29
| | | | | | | | | | PR: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=216705 Submitted by: heckendorfc@gmail.com Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D9413 Notes: svn path=/head/; revision=433194
* multimedia/syncplay: remove some lines that are no-opsKurt Jaeger2016-03-281-4/+0
| | | | | | | Submitted by: jbeich Notes: svn path=/head/; revision=412031
* multimedia/syncplay: remove unnecessary GH_TAGNAMEKurt Jaeger2016-03-261-1/+0
| | | | | | | Submitted by: mat Notes: svn path=/head/; revision=411966
* New port: multimedia/syncplayKurt Jaeger2016-03-265-0/+211
Syncplay synchronizes the playback of media files across several remote machines. The Syncplay Client launches a media player on a user's computer, connects to a Syncplay server and join a virtual room on that server. Pauses, unpauses and seeks made within that media player instance are relayed to fellow viewers via the server to allow for these actions to be replicated by the media players of everyone else in the same virtual room. WWW: http://syncplay.pl/ PR: 202013 Submitted by: Christian Heckendorf <heckendorfc@gmail.com> Notes: svn path=/head/; revision=411957