aboutsummaryrefslogtreecommitdiff
path: root/net-p2p/torrent-file-editor
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* net-p2p/torrent-file-editor turn off PCH (pre-compiled headers)Adriaan de Groot2020-04-051-1/+2
| | | | | | | | | | | This is prep-work to landing CMake 3.17 -- something has changed in dependency handling, and the configure step fails. This is the last fall-out item before a new exp-run. PR: 245356 Notes: svn path=/head/; revision=530765
* Unbreak against Clang 10. Upstream is notified.Alexey Dokuchaev2020-03-141-0/+2
| | | | | | | Reported by: pkg-fallout Notes: svn path=/head/; revision=528400
* - Update to version 0.3.17Alexey Dokuchaev2020-01-073-10/+13
| | | | | | | | | - Augment port description Reported by: portscout Notes: svn path=/head/; revision=522324
* - Update to version 0.3.16Alexey Dokuchaev2019-11-163-13/+10
| | | | | | | | - Shorten the COMMENT, adjust LICENSE - Project had moved to GitHub Notes: svn path=/head/; revision=517755
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2019-07-261-0/+1
| | | | | | | | | | | | | | | | | | as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330 Notes: svn path=/head/; revision=507372
* net-p2p/torrent-file-editor: prepare for Qt 5.13Tobias C. Berner2019-07-131-3/+13
| | | | | | | PR: 238782 Notes: svn path=/head/; revision=506540
* Update `torrent-file-editor' to version 0.3.14.Alexey Dokuchaev2019-05-012-5/+7
| | | | Notes: svn path=/head/; revision=500600
* With Qt 4.x sadly going away in less than two weeks, use Qt 5 by defaultAlexey Dokuchaev2019-03-051-23/+6
| | | | | | | | and remove QT5 option earlier to ease the deprecation process and reduce repo churn when the time comes. Notes: svn path=/head/; revision=494684
* net-p2p/torrent-file-editor: unbreak with libc++ 8Jan Beich2019-03-041-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | In file included from application.cpp:24: In file included from application.h:24: In file included from /usr/local/include/qt4/QtGui/QApplication:1: In file included from /usr/local/include/qt4/QtGui/qapplication.h:45: In file included from /usr/local/include/qt4/QtCore/qcoreapplication.h:45: In file included from /usr/local/include/qt4/QtCore/qobject.h:47: In file included from /usr/local/include/qt4/QtCore/qobjectdefs.h:45: In file included from /usr/local/include/qt4/QtCore/qnamespace.h:45: In file included from /usr/local/include/qt4/QtCore/qglobal.h:68: In file included from /usr/include/c++/v1/algorithm:640: In file included from /usr/include/c++/v1/initializer_list:47: In file included from /usr/include/c++/v1/cstddef:38: ./version:1:1: error: expected unqualified-id 0.3.13 ^ PR: 236192 Approved by: portmgr blanket Notes: svn path=/head/; revision=494587
* Fix Qt5 symbol version scripts to put the catch-all clause first. WhenTijl Coosemans2019-01-161-1/+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
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-12-121-0/+1
| | | | | | | | | | | | | | | | | | defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590 Notes: svn path=/head/; revision=487272
* Mark QT4 ports/functionality for removal on 2019-03-15Rene Ladan2018-12-021-0/+7
| | | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=486467
* Update `net-p2p/torrent-file-editor' to version 0.3.13.Alexey Dokuchaev2018-10-272-4/+4
| | | | | | | Reported by: portscout Notes: svn path=/head/; revision=483140
* Update `net-p2p/torrent-file-editor' to version 0.3.12.Alexey Dokuchaev2018-08-172-5/+4
| | | | | | | | Found out via: repology.org Ignored by: portscout :( Notes: svn path=/head/; revision=477432
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-07-291-0/+1
| | | | | | | | | | | | | | | | | in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which has now moved from GCC 6 to GCC 7 by default. This includes ports - featuring USE_GCC=yes or USE_GCC=any, - featuring USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and those - with USES=compiler specifying one of openmp, nestedfct, c11, c++0x, c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib. PR: 222542 Notes: svn path=/head/; revision=475857
* - Update `net-p2p/torrent-file-editor' to version 0.3.11Alexey Dokuchaev2018-07-182-9/+6
| | | | | | | | | | - Request C++11-capable compiler to unbreak the build on PowerPC - Really force correct Qt version (depending on the option) Reported by: portscout Notes: svn path=/head/; revision=474864
* Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mkTobias C. Berner2018-06-281-2/+4
| | | | | | | | | | | | | | | | | | From now on, ports that depend on Qt4 will have to set USES= qt:4 USE_QT= foo bar ports depending on Qt5 will use USES= qt:5 USE_QT= foo bar PR: 229225 Exp-run by: antoine Reviewed by: mat Approved by: portmgr (antoine) Differential Revision: →https://reviews.freebsd.org/D15540 Notes: svn path=/head/; revision=473503
* Mark ports broken on powerpc64, categories g-n.Mark Linimon2018-06-181-0/+2
| | | | | | | | | While here, pet portlint and do some other cleanup. Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=472693
* devel/qjson, devel-qjson-qt5 create flavorsTobias C. Berner2018-04-141-1/+2
| | | | | | | | | | * additionally, give the maintainership to kde@. Approved by: portmgr (mat), avilla (timeout) Differential Revision: https://reviews.freebsd.org/D14650 Notes: svn path=/head/; revision=467317
* Update to version 0.3.10.Alexey Dokuchaev2018-01-222-4/+4
| | | | Notes: svn path=/head/; revision=459674
* - Update `net-p2p/torrent-file-editor' to version 0.3.9, which fixesAlexey Dokuchaev2017-12-113-14/+5
| | | | | | | | | | creating torrents which contain files larger than 2 GB in size - TIMESTAMP (torrent-file-editor-0.3.9.tar.gz) = 1512986548 Reported by: portscout Notes: svn path=/head/; revision=456022
* - Update `net-p2p/torrent-file-editor' to version 0.3.8Alexey Dokuchaev2017-12-082-4/+4
| | | | | | | | | | - TIMESTAMP (torrent-file-editor-0.3.8.tar.gz) = 1512039438 Found out via: repology.org Didn't report: portscout (again) Notes: svn path=/head/; revision=455778
* - Update `net-p2p/torrent-file-editor' to version 0.3.7Alexey Dokuchaev2017-10-313-8/+17
| | | | | | | | | | - TIMESTAMP (torrent-file-editor-0.3.7.tar.gz) = 1506418597 Found out via: repology.org Didn't report: portscout :( Notes: svn path=/head/; revision=453222
* - Add missing `desktop-file-utils' to USES as reported by `stage-qa'Alexey Dokuchaev2017-06-011-2/+7
| | | | | | | - Allow to optionally inhibit donation text in the About dialog Notes: svn path=/head/; revision=442330
* Add a port of Qt-based GUI tool designed to create and edit .torrent files.Alexey Dokuchaev2017-05-315-0/+61
WWW: https://sourceforge.net/projects/torrent-file-editor/ Notes: svn path=/head/; revision=442260