notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

non port: deskutils/kdepim-apps-libs/Makefile

Number of commits found: 18

Friday, 13 Nov 2020
18:53 tcberner search for other commits by this committer
deskutils/kdepim-apps-libs:  mark deprecated

- with the update to release-service 20.12 in december, this port will be
removed,
  as there are no KDE consumers left
Original commitRevision:555040 
Thursday, 23 Apr 2020
17:00 tcberner search for other commits by this committer
Update KDE Applications (release-service) to 20.04

KDE's April 2020 Apps Update

A new bundle of KDE applications is here! In these releases, you can expect to
find more features, stability improvements, and more user-friendly tools that
will help you work more effectively.

There are dozens of changes to look forward to in most of your favorite
applications. Take Dolphin, for example. Windows Samba shares are now fully
discoverable.

On the topic of playing music: the Elisa music player is adding features by
leaps and bounds. This release brings a new "Now Playing" view, easy
accessibility through the system tray, and an option to minimize the playlist
whenever you want. Thanks to the recently-added visual shuffle mode, it's much
easier to rearrange your music in the playlists.

These are just the highlights of what's new in KDE's applications this month.
Read on to find out about everything we've prepared for you.

Announcement:
	https://kde.org/announcements/releases/2020-04-apps-update/
Original commitRevision:532696 
Friday, 20 Dec 2019
19:10 tcberner search for other commits by this committer
devel/grantlee: update to 5.2.0

- While here, remove the patches to install the headers in a prefix;
  there currently is only one grantlee version in the tree, so no
  reason to make life harder for ourselves.
Original commitRevision:520520 
Thursday, 12 Dec 2019
23:24 tcberner search for other commits by this committer
KDE's December 2019 Apps Update

New versions of KDE applications landing in December

The release of new versions for KDE applications is part of KDE's continued
effort to bring you a complete and up-to-date catalog of fully-featured,
beautiful and useful programs for your system.

Available now are new versions of KDE's file browser Dolphin; Kdenlive, one of
the most complete open source video editors; the document viewer Okular; KDE's
image viewer, Gwenview; and all of your other favorite KDE apps and utilities.
All of these applications have been improved, making them faster and more
stable and they boast exciting new features. The new versions of KDE
applications let you be productive and creative, while at the same time making
use of KDE software easy and fun.

We hope you enjoy all the novel features and improvements worked into all of
KDE's apps!

Announcement: https://kde.org/announcements/releases/2019-12-apps-update/
Original commitRevision:519955 
Thursday, 17 Oct 2019
18:13 tcberner search for other commits by this committer
Follow-up to r514669: bump consumers of moved ports

In r514669 the two ports were moved in the following way:
- net/kcontacts -> net/kf5-kcontacts
- net/kcalcore -> net/kf5-kcalendarcore

Force rebuild of their consumers.
Original commitRevision:514672 
Thursday, 15 Aug 2019
15:38 adridg search for other commits by this committer
Update KDE Applications to latest upstream release, 19.08

Release announcement
	https://kde.org/announcements/announce-applications-19.08.0.php

Thanks to tcberner for doing most of the prep-work.
Original commitRevision:509000 
Friday, 26 Jul 2019
20:46 gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
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
Original commitRevision:507372 
Sunday, 23 Jun 2019
15:39 tcberner search for other commits by this committer
KDE Applications: complete dependency lists

This has been on the TODO list for forever...

PR:		238764
Reported by:	yuri
Original commitRevision:504959 
Friday, 8 Feb 2019
05:11 tcberner search for other commits by this committer
Update KDE Applications to 18.12.2

[1] https://www.kde.org/announcements/announce-applications-18.12.2.php
[2]
https://www.kde.org/announcements/fulllog_applications-aether.php?version=18.12.2
Original commitRevision:492409 
Wednesday, 16 Jan 2019
11:13 tijl search for other commits by this committer
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
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)
Original commitRevision:490472 
Tuesday, 25 Dec 2018
20:25 tcberner search for other commits by this committer
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
Original commitRevision:488341 
Friday, 14 Dec 2018
05:07 tcberner search for other commits by this committer
Update KDE Applications to 18.12.0

https://www.kde.org/announcements/announce-applications-18.12.0.php
Original commitRevision:487405 
Wednesday, 12 Dec 2018
01:35 gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
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
Original commitRevision:487272 
Monday, 10 Sep 2018
13:14 mat search for other commits by this committer
Add DOCS options to ports that should have one.

Also various fixes related to said option.

PR:		230864
Submitted by:	mat
exp-runs by:	antoine
Original commitRevision:479406 
Saturday, 25 Aug 2018
05:15 tcberner search for other commits by this committer
Update KDE Applications to 18.08

Changelog: https://www.kde.org/announcements/announce-applications-18.08.0.php
Original commitRevision:478003 
Sunday, 29 Jul 2018
22:18 gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
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
Original commitRevision:475857 
Thursday, 28 Jun 2018
17:39 tcberner search for other commits by this committer
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
Original commitRevision:473503 
Tuesday, 10 Apr 2018
19:09 tcberner search for other commits by this committer
New ports: KDE Applications net/ and dependencies

* deskutils/grantleetheme
* deskutils/kdepim
* deskutils/kdepim-apps-libs
* deskutils/libkdepim
* net/akonadi-calendar
* net/akonadi-contacts
* net/akonadi-mime
* net/akonadi-notes
* net/akonadi-search
* net/calendarsupport
* net/eventviews
* net/incidenceeditor
* net/kalarmcal
(Only the first 15 lines of the commit message are shown above View all of this commit message)
Original commitRevision:467007 

Number of commits found: 18