| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
| |
Updates to cutelyst and the SQL driver, release notes at
https://github.com/cutelyst/cutelyst/releases/tag/v3.3.0
https://github.com/cutelyst/asql/releases/tag/v0.51.0
There are some fixes that might be relevant for us, the systemd
fixes not-so-much.
|
|
|
|
|
|
|
|
| |
Release notes are here:
https://github.com/cutelyst/cutelyst/releases/tag/v3.2.0
https://dantti.wordpress.com/2021/12/01/cutelyst-3-2-and-asql-0-50-are-out/
Bugfixes, more use of std::shared_ptry (over QSharedPointer, which
pre-dates most C++ standardization in that area).
|
|
|
|
|
| |
Release notes are at
https://github.com/cutelyst/cutelyst/releases/tag/v3.1.0
|
|
|
|
|
|
|
| |
New release of Cutelyst, the C++/Qt web framework. Anouncement at:
https://dantti.wordpress.com/2021/06/17/cutelyst-3-is-out/
Bump cutelyst-asql, as the only consumer in the ports tree.
|
|
|
|
| |
Reported by: lwhsu
|
| |
|
|
|
|
|
|
|
|
|
|
| |
Release notes are at
https://dantti.wordpress.com/2021/01/19/cutelyst-2-14-2-and-asql-0-27-released/
There were patches from FreeBSD upstreamed, and some tidying-up,
and there's a bunch of patches and benchmark improvements.
Notes:
svn path=/head/; revision=562253
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Cutelyst is a Qt5-based web application framework. It gives you C++
for application logic and WSGI server and plugins for the webby bits.
This update adds a GRANTLEE option, enabled by default: it turns out
I hadn't enabled **any** templating in Cutelyst, which is a bit
of an annoying restriction. Grantlee is a Qt5-only templating
engine, so the additional default dependencies are fairly light.
While here, simplify some of the CMake options handling;
one thing I'm not sure about is how OPTIONs should be handled
in the ordering of pkg-plist: the Porter's Handbook section 8.1
does not offer any guidance. I've collected them at the end.
Reported by: portscout
Notes:
svn path=/head/; revision=559840
|
|
|
|
|
|
|
|
|
|
|
| |
Release notes are at
https://github.com/cutelyst/cutelyst/releases/tag/v2.13.0
Since we skipped 2.12, here's the 2.12 changes as well:
* Add Listen Queue backlog option
Notes:
svn path=/head/; revision=553355
|
|
|
|
|
|
|
|
|
|
| |
Release notes at
https://dantti.wordpress.com/2020/05/13/cutelyst-2-11-and-simplemail-2-1-released-and-a-fork-called-cutelee/
Nothing spectacular, though it might have some performance improvements.
Notes:
svn path=/head/; revision=535234
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Release announcement is at
https://dantti.wordpress.com/2020/02/17/cutelyst-2-10-0-and-simplemail-v2-released/
It just says "many important bugfixes", though. No details.
While here, I've enabled two plugins in cutelyst, CSRF protection
and static compression support. This isn't at the BUILD_ALL level,
but should make cutelyst more useful in its default package state.
Notes:
svn path=/head/; revision=526459
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Release notes are here:
https://dantti.wordpress.com/2019/09/26/cutelyst-2-9-0-and-simple-mail-qt-1-4-0-released/
With highlight:
Cutelyst has got many bug fixes, a few API additions, some
docs fixes, and most importantly it fixed a memory leak introduced
in 2.8.0 that makes applications using chained actions leak.
Notes:
svn path=/head/; revision=521497
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
| |
produce the translation files added in previous commit.
Notes:
svn path=/head/; revision=505281
|
|
|
|
|
|
|
|
|
|
| |
Release announcement at
https://dantti.wordpress.com/2019/06/27/cutelyst-2-8-0-released/
cpack support, deflate support, and other bugfixes. One FreeBSD
patch has been incorporated upstream.
Notes:
svn path=/head/; revision=505280
|
|
|
|
|
|
|
|
|
| |
target_compile_features The compiler feature "cxx_auto_type" is not known to CXX compiler
Approved by: portmgr (tier-2 blanket)
Notes:
svn path=/head/; revision=495438
|
|
|
|
|
|
|
|
|
|
|
| |
https://dantti.wordpress.com/2019/02/18/cutelyst-2-7-0-released-async-is-back/
Main new feature is support for async calls.
While here, pet portlint and add a PLIST_SUB.
Notes:
svn path=/head/; revision=493359
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
used to write standalone web-applications with a small footprint, yet
with powerful templating -- and share code and logic with desktop apps.
Notes:
svn path=/head/; revision=471246
|