aboutsummaryrefslogtreecommitdiff
path: root/deskutils/copyq
Commit message (Collapse)AuthorAgeFilesLines
* deskutils/copyq: update to 4.0.0Fernando Apesteguía2021-04-153-8/+16
| | | | | | ChangeLog: https://github.com/hluk/CopyQ/releases/tag/v4.0.0 Reported by: portscout
* 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
|
* deskutils/copyq: update to 3.13.0Fernando Apesteguía2020-10-193-4/+5
| | | | | | | | | ChangeLog: https://github.com/hluk/CopyQ/releases/tag/v3.13.0 Reported by: portscout Notes: svn path=/head/; revision=552720
* Reset MAINTAINERTobias Kortkamp2020-09-281-1/+1
| | | | Notes: svn path=/head/; revision=550400
* deskutils/copyq: Update to v3.12.0Tobias Kortkamp2020-07-173-13/+6
| | | | | | | Changes: https://github.com/hluk/CopyQ/releases/tag/v3.12.0 Notes: svn path=/head/; revision=542421
* deskutils/copyq: Update to v3.11.1Tobias Kortkamp2020-05-092-4/+4
| | | | | | | Changes: https://github.com/hluk/CopyQ/releases/tag/v3.11.1 Notes: svn path=/head/; revision=534704
* deskutils/copyq: Update to v3.11.0Tobias Kortkamp2020-05-023-4/+10
| | | | | | | Changes: https://github.com/hluk/CopyQ/releases/tag/v3.11.0 Notes: svn path=/head/; revision=533659
* deskutils/copyq: Update to v3.10.0Tobias Kortkamp2020-02-022-4/+4
| | | | | | | Changes: https://github.com/hluk/CopyQ/releases/tag/v3.10.0 Notes: svn path=/head/; revision=524972
* deskutils/copyq: Update to v3.9.3Tobias Kortkamp2019-11-162-4/+4
| | | | | | | Changes: https://github.com/hluk/CopyQ/releases/tag/v3.9.3 Notes: svn path=/head/; revision=517737
* Add missing USES to my portsTobias Kortkamp2019-10-311-1/+1
| | | | Notes: svn path=/head/; revision=516140
* deskutils/copyq: Update to v3.9.2Tobias Kortkamp2019-08-272-4/+4
| | | | | | | Changes: https://github.com/hluk/CopyQ/releases/tag/v3.9.2 Notes: svn path=/head/; revision=509987
* deskutils/copyq: Update to v3.9.1Tobias Kortkamp2019-08-182-5/+4
| | | | | | | Changes: https://github.com/hluk/CopyQ/releases/tag/v3.9.1 Notes: svn path=/head/; revision=509233
* 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
* deskutils/copyq: Update to 3.9.0Tobias Kortkamp2019-06-283-5/+6
| | | | | | | | | - Pet portclippy while here Changes: https://github.com/hluk/CopyQ/releases/tag/v3.9.0 Notes: svn path=/head/; revision=505259
* deskutils/copyq: Update to 3.8.0Tobias Kortkamp2019-04-203-14/+27
| | | | | | | | | | - Assign to myself - Improve pkg-descr while here Changes: https://github.com/hluk/CopyQ/releases/tag/v3.8.0 Notes: svn path=/head/; revision=499465
* deskutils/copyq: update to 3.7.3Fernando Apesteguía2019-02-043-7/+6
| | | | | | | | | | | | | | | | | | | | | | | ChangeLog (https://github.com/hluk/CopyQ/releases/tag/v3.7.3) * Search and item selection reset when main window is closed * Updated icons (Font Awesome 5.6.3) * Tray icon animation is not triggered if no automatic commands are run. * Improved color themes on some systems * Omit auto-hiding main window when it has a dialog open * Fix transparency of some icons * Fix size of menu when open on different screen * Fix window geometry restore and rendering issues * Fix auto-hide main window (e.g. on Gnome when using Activities) * X11: Fix small tray icon on Gnome * X11: Fix icon mask file name according to standard ("copyq_mask") Reported by: portscout Notes: svn path=/head/; revision=492143
* 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
* deskutils/copyq: update to 3.7.2Fernando Apesteguía2019-01-063-5/+5
| | | | | | | | | | | | | While here, add USE_LDCONFIG. Too many changes since 3.6.1 to list them here. ChangeLog: https://github.com/hluk/CopyQ/releases/tag/v3.7.2 Reported by: portscout Notes: svn path=/head/; revision=489502
* Change cmake default behaviour to outsource.Tobias C. Berner2018-12-251-1/+1
| | | | | | | | | | | | | | Ports that build out of source now simply can use "USES=cmake" instead of "USES=cmake:outsource". Ports that fail to build out of source now need to specify "USES=cmake:insource". I tried to only set insource where explictely needed. PR: 232038 Exp-run by: antoine Notes: svn path=/head/; revision=488341
* deskutils/copyq: Update to 3.6.1Jason E. Hale2018-10-264-82/+84
| | | | | | | | | | | | | | - Switch to CMake build - Install data (themes, icons, translations) and optional plugins - Fix LICENSE and add LICENSE_FILE - Reset maintainer (no response for 15 months) PR: 221100 Submitted by: <bsd@bontempi.net> (update request); jhale (patch) Approved by: maintainer timeout (15 months) Notes: svn path=/head/; revision=483047
* Fix build with Qt 5.11Jason E. Hale2018-09-071-0/+66
| | | | | | | Obtained from: backported from upstream Notes: svn path=/head/; revision=479193
* Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mkTobias C. Berner2018-06-281-2/+2
| | | | | | | | | | | | | | | | | | 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
* Revision bump of all ports with USE_GL after consolidation of mesa-libsMatthew Rezny2017-05-231-0/+1
| | | | | | | | Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D10845 Notes: svn path=/head/; revision=441503
* Remove BROKEN_FreeBSD_9Sunpoet Po-Chuan Hsieh2017-01-011-2/+0
| | | | | | | Approved by: portmgr (blanket) Notes: svn path=/head/; revision=430235
* - Mark BROKEN on 9.x: does not build:Dmitry Marakasov2016-10-211-0/+2
| | | | | | | | | | | | | | | | | scriptable/fileclass.cpp: In constructor 'FileClass::FileClass(const QString&, QScriptEngine*)': scriptable/fileclass.cpp:27: error: class 'FileClass' does not have any field named 'ScriptableClass' scriptable/fileclass.cpp:28: error: no matching function for call to 'ScriptableClass<QFile, FilePrototype>::ScriptableClass()' scriptable/scriptableclass.h:63: note: candidates are: ScriptableClass<Object, ObjectPrototype>::ScriptableClass(QScriptEngine*) [with Object = QFile, ObjectPrototype = FilePrototype] scriptable/scriptableclass.h:59: note: ScriptableClass<QFile, FilePrototype>::ScriptableClass(const ScriptableClass<QFile, FilePrototype>&) scriptable/fileclass.cpp: In member function 'QScriptValue FileClass::newInstance(const QString&)': scriptable/fileclass.cpp:34: error: 'template<class Object, class ObjectPrototype> class ScriptableClass' used without template parameters scriptable/fileclass.cpp: In member function 'QScriptValue FileClass::newInstance()': scriptable/fileclass.cpp:39: error: 'template<class Object, class ObjectPrototype> class ScriptableClass' used without template parameters Approved by: portmgr blanket Notes: svn path=/head/; revision=424384
* - Cleanup some syntax and white-spaceKris Moore2016-07-221-7/+7
| | | | | | | Submitted by: danfe Notes: svn path=/head/; revision=418919
* CopyQ is advanced clipboard manager with editing and scripting features.Kris Moore2016-07-213-0/+35
WWW: https://github.com/hluk/CopyQ Notes: svn path=/head/; revision=418889