Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
0.13.0 13 Jun 2024 00:21:05 |
Jose Alonso Cardenas Marquez (acm) |
x11-wm/lxqt: Update to 2.0.0
- Update mostly lxqt ports to 2.0.x
- Update some lxqt dependencies to latest version
- Update Mk/Uses/lxqt.mk file for support some legacy and new lxqt ports
- Add devel/libdbusmenu-lxqt
- Add x11/libfm-qt6
- Add devel/libqt6xdg
- Add sysutils/libsysstat-qt6
- Add devel/lxqt2-build-tools
- Add sysutils/lxqt-qt6plugin
- Add deskutils/xdg-desktop-portal-lxqt
- Add x11-toolkits/qtermwidget-qt5 for no break x11/coreterminal
- Pass maintainership to new lxqt@ group
- Few other modifications
PR: 278905
Approved by: jsm |
0.13.0 20 Jun 2023 17:51:44 |
Jesper Schmitz Mouridsen (jsm) Author: Wen Heping |
x11-wm/lxqt: Update to 1.3.0
PR: 271509 |
0.12.0 07 Dec 2022 18:34:17 |
Jesper Schmitz Mouridsen (jsm) Author: Simon Peter |
devel/lxqt-build-tools: Update to 0.12.0
Differential Revision: https://reviews.freebsd.org/D37378 |
0.11.0_1 19 Sep 2022 06:28:42 |
Dima Panov (fluffy) |
devel/lxqt-build-tools: FindGLIB.cmake: Use gdesktopappinfo.h to find
gio-unix-2.0 (+)
In glib2 2.73.1 gunixfdlist have been moved into glib-2.0
Chase it in preparation of devel/glib20 update
With hat: desktop
PR: 266466 |
0.11.0 11 Sep 2022 10:20:14 |
Felix Palmen (zirias) |
Mk/Uses: always use colon for build/run suffix
Most USES use a colon for build/run(/test) suffixes. Change kde.mk,
qt.mk and pyqt.mk to do the same, and update all ports using that.
Document in CHANGES.
PR: 266034
Exp-run by: antoine
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D36349 |
07 Sep 2022 21:58:51 |
Stefan Eßer (se) |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
0.11.0 07 Sep 2022 21:10:59 |
Stefan Eßer (se) |
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above ) |
0.11.0 20 Jul 2022 14:21:35 |
Tobias C. Berner (tcberner) |
devel: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* "Waitman Gobble" <uzimac@da3m0n8t3r.com>
* <jkoshy@FreeBSD.org>
* Aaron Dalton <aaron@FreeBSD.org>
* Aaron Dalton <aaron@daltons.ca>
* Aaron H. K. Diep <ahkdiep@gmail.com>
* Aaron Hurt <ahurt@anbcs.com>
* Abel Chow <abel_chow@yahoo.com>
* Adam McLaurin
* Adam Saponara <as@php.net>
* Adam Weinberger <adamw@FreeBSD.org>
* Ade Lovett <ade@FreeBSD.org> (Only the first 15 lines of the commit message are shown above ) |
0.11.0 30 Apr 2022 09:12:21 |
Jesper Schmitz Mouridsen (jsm) |
devel/lxqt-build-tools: Update to 0.11.0 |
0.10.0 10 Nov 2021 18:25:26 |
Jesper Schmitz Mouridsen (jsm) |
devel/lxqt-build-tools: Update to 0.10.0 |
0.9.0 08 May 2021 16:51:57 |
Jesper Schmitz Mouridsen (jsm) |
devel/lxqt-build-tools: Update to 0.9.0 |
0.8.0 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
0.8.0 21 Nov 2020 11:21:06 |
jsm |
devel/lxqt-build-tools Update to 0.8.0 |
0.7.0 20 Jun 2020 07:48:54 |
jsm |
Upgrade to 0.7.0
Approved by: swills (mentor)
Differential Revision: https://reviews.freebsd.org/D24698 |
0.6.0 28 Mar 2019 17:59:34 |
jsm |
Upgrade the LXQt desktop environment to 0.14.0
Upstream announcement https://forum.lxqt.org/t/release-lxqt-0-14-0/572
Approved by: miwi (mentor)
Differential Revision: https://reviews.freebsd.org/D19056 |
0.5.0_1 16 Jan 2019 11:13:45 |
tijl |
Fix Qt5 symbol version scripts to put the catch-all clause first. When
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 (Only the first 15 lines of the commit message are shown above ) |
0.5.0 25 Dec 2018 20:25:40 |
tcberner |
Change cmake default behaviour to outsource.
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 |
0.5.0 09 Jul 2018 18:03:15 |
jsm |
Changing maintainer email address (same maintainer, new address)
Approved by: swills (mentor)
Differential Revision: https://reviews.freebsd.org/D16200 |
0.5.0 28 Jun 2018 17:39:55 |
tcberner |
Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mk
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 |
0.5.0 30 May 2018 18:17:13 |
swills |
devel/lxqt-build-tools: update to 0.5.0
PR: 228505
Submitted by: Jesper Schmitz Mouridsen <jesper@schmitz.computer> (maintainer) |
0.4.0 27 Oct 2017 15:31:57 |
swills |
devel/lxqt-build-tools: Update to 0.4.0
PR: 223210
Submitted by: Olivier Duchateau <duchateau.olivier@gmail.com>
Approved by: Jesper Schmitz Mouridsen <jesper@schmitz.computer> (maintainer) |
0.3.2 19 May 2017 10:09:57 |
joneum |
Pass MAINTAINER'ship to submitter
- Pass MAINTAINER'ship to submitter
PR: 219361
Reported by: Jesper Schmitz Mouridsen <jesper@schmitz.computer>
Approved by: miwi (mentor)
Differential Revision: https://review.freebsd.org/D10812 |
0.3.2 19 Mar 2017 14:02:24 |
rene |
Take in olivierd@'s commit bit on his request.
Submitted by: olivierd@
With hat: portmgr-secretary |
0.3.2 16 Jan 2017 17:24:39 |
olivierd |
Update to 0.3.2 |
0.3.1 11 Jan 2017 10:08:38 |
amdmi3 |
- Remove always-true/false conditions after FreeBSD 9, 10.1, 10.2 EOL
Approved by: portmgr blanket |
0.3.1 02 Jan 2017 07:52:14 |
olivierd |
Update to 0.3.1 |
0.3.0 12 Dec 2016 17:45:01 |
olivierd |
Several helpers CMake modules needed to build LXQt itself as well as other
components.
WWW: https://github.com/lxde/lxqt-build-tools
Obtained from: LXQt devel repo |