| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Saturday, 10 April 2021
KDE today announces the release of KDE Frameworks 5.81.0.
KDE Frameworks are 83 addon libraries to Qt which provide a wide variety
of commonly needed functionality in mature, peer reviewed and well
tested libraries with friendly licensing terms. For an introduction see
the KDE Frameworks release announcement.
This release is part of a series of planned monthly releases making
improvements available to developers in a quick and predictable manner.
Full Announcement:
https://kde.org/announcements/frameworks/5/5.81.0/
PR: 254978
Exp-run by: antoine
|
|
|
|
|
|
|
| |
$ make MASTER_SITE_BACKUP= checksum
=> pijul-0.12.0.tar.gz doesn't seem to exist in /home/tobias/distfiles/.
=> Attempting to fetch https://pijul.org/releases/pijul-0.12.0.tar.gz
fetch: https://pijul.org/releases/pijul-0.12.0.tar.gz: Not Found
|
| |
|
| |
|
|
|
|
| |
Changelog: https://software.intel.com/content/www/us/en/develop/articles/intel-oneapi-threading-building-blocks-release-notes.html
|
|
|
|
| |
Reported by: portscout
|
|
|
|
|
| |
PR: 255042
Approved by: Alessandro Sagratini <ale_sagra@hotmail.com> (maintainer)
|
|
|
|
| |
Reported by: portscout
|
|
|
|
| |
Sponsored by: The FreeBSD Foundation
|
|
|
|
|
|
|
|
|
|
| |
Rename devel/sd-mux to devel/sd-mux-ctrl and remove dupplicate port
sysutils/sd-mux-ctrl added recently. As the port names were different
`addport -y` didn't catch the duplicate when looking at the catalog tree
INDEX. Also add entries into MOVED.
Approved by: swills
Differential Revision: https://reviews.freebsd.org/D29732
|
|
|
|
|
|
|
| |
GNU grep is required for build.
PR: 255022 [1]
Reported by: Jack <xxjack12xx@gmail.com> [1], pkg-fallout
|
|
|
|
| |
Update, fix pkg-message and reset maintainer
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
Until newer boost is ported, this fixes compilation of client code with errors like
async_result.hpp: error: concept cannot have associated constraints
See https://github.com/boostorg/asio/issues/312 for details.
PR: 255016
Submitted by: amdmi3
MFH: 2021Q2
|
|
|
|
| |
ChangeLog: https://github.com/pyeve/cerberus/blob/1.3.3/CHANGES.rst
|
|
|
|
|
|
| |
Release notes:
https://github.com/catchorg/Catch2/releases/tag/v2.13.4
https://github.com/catchorg/Catch2/releases/tag/v2.13.5
|
|
|
|
|
| |
PR: 255006
Submitted by: Christian Ullrich <chris@chrullrich.net>
|
|
|
|
|
| |
PR: 253752
Reported by: Yasuhiro Kimura <yasu@utahime.org> (maintainer)
|
|
|
|
| |
Reported by: portscout
|
| |
|
| |
|
| |
|
|
|
|
| |
Reported by: portscout
|
|
|
|
|
| |
It doesn't compile (may also be broken on other 32-bit platforms, but
I don't have reports one way or the other).
|
|
|
|
|
|
|
| |
This flavor includes clang and lld and has no runtime dependencies.
Add a new STATIC_LIBS option to toggle instalation of non-sanitizer static
libraries. This saves a substantial amount of space.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
platform/x11/detect.py actually forces builtin libpng if builtin freetype or zlib is used.
Use the system ones.
This also fixes build on powerpc64le, since builtin libpng is not built with
VSX.
PR: 254703
Approved by: FreeBSD@ShaneWare.Biz (maintainer)
|
|
|
|
| |
Changes: https://rust-analyzer.github.io/thisweek/2021/04/12/changelog-72.html
|
|
|
|
|
|
|
|
|
|
|
| |
Interface to the 'libgit2' library, which is a pure C implementation of the
'Git' core methods. Provides access to 'Git' repositories to extract data and
running some basic 'Git' commands.
WWW: https://CRAN.R-project.org/package=git2r
PR: 243627
Submitted by: jpbeconne@free.fr
|
|
|
|
|
| |
Changes: https://github.com/intel/intel-graphics-compiler/releases/tag/igc-1.0.6909
Reported by: GitHub (watch releases)
|
|
|
|
|
|
|
| |
While here:
- remove 3.6+ from USES=python since it is now the default
Reported by: portscout
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Changes: https://fossil-scm.org/home/doc/041c3d1fa7e08434/www/changes.wiki
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Does not compile on the cluster or 13- locally, because base SSL:
hmac384.cpp:56:14: error: variable has incomplete type 'HMAC_CTX' (aka 'hmac_ctx_st')
HMAC_CTX ctx;
/usr/include/openssl/ossl_typ.h:102:16: note: forward declaration of 'hmac_ctx_st'
typedef struct hmac_ctx_st HMAC_CTX;
There is no definition of that type anywhere in /usr/include.
The only consumer of this library is -- or was -- net/opal,
and the use of this library was .if 0'ed out. Remove that
non-use of the library as well.
The library should also be marked BROKEN because the code is, well,
broken. Clang rightfully complains:
ZrtpPacketCommit.h:124:42: warning: 'memcpy' will always overflow; destination buffer has size 0, but size argument is 8 [-Wfortify-source]
void setHMACMulti(uint8_t* hash) { memcpy(commitHeader->hmac-4*ZRTP_WORD_SIZE, hash, sizeof(commitHeader->hmac)); };
ZrtpQueue.cpp:147:9: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
delete buffer;
ZrtpQueue.cpp:144:29: note: allocated with 'new[]' here
unsigned char* buffer = new unsigned char[nextSize];
The first warning is *possibly* spurious: it's doing memcpy() into
a struct intended for bit-banging, and is overwriting part of a
previous field. Since there's no member there, there's no size
information for fortify-source to use.
The other two warnings are plain old UB, they were UB when this
library was last released / updated in 2013, they're still UB, now.
There **are** newer releases of this project, but not entirely under
the GNU banner; https://github.com/wernerd/ZRTPCPP seems to be the
right source for that, but I'm not going to chase updating this.
|
|
|
|
|
|
|
| |
PR: 254985
Reported by: Derek Schrock <dereks@lifeofadishwasher.com> (maintainer)
Relnotes: https://github.com/universal-ctags/ctags/compare/p5.9.20210404.0...p5.9.20210411.0
Sponsored by: HAW International
|
|
|
|
|
|
|
|
|
| |
Relnotes: https://github.com/jesseduffield/lazygit/releases/tag/v0.27
Relnotes: https://github.com/jesseduffield/lazygit/releases/tag/v0.27.1
Relnotes: https://github.com/jesseduffield/lazygit/releases/tag/v0.27.2
Relnotes: https://github.com/jesseduffield/lazygit/releases/tag/v0.27.3
Relnotes: https://github.com/jesseduffield/lazygit/releases/tag/v0.27.4
Sponsored by: HAW International
|
|
|
|
|
| |
Changelog:
https://github.com/libgit2/pygit2/blob/master/CHANGELOG.rst
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
Changes https://confluence.jetbrains.com/display/WI/WebStorm+2021.1+Release+Notes
PR: 254960
Approved by: Dmitry Wagin <dmitry.wagin@ya.ru> (maintainer)
|
|
|
|
|
|
|
| |
Changes https://confluence.jetbrains.com/display/PhpStorm/PhpStorm+2021.1+Release+Notes
PR: 254959
Approved by: Dmitry Wagin <dmitry.wagin@ya.ru> (maintainer)
|
|
|
|
|
|
|
| |
Changes https://confluence.jetbrains.com/display/GOLAND/GoLand%2B2021.1%2BRelease%2BNotes
PR: 254960
Approved by: Dmitry Wagin <dmitry.wagin@ya.ru> (maintainer)
|
|
|
|
|
|
| |
Changes https://confluence.jetbrains.com/pages/viewpage.action?pageId=211354095
PR: 254957
Approved by: Dmitry Wagin <dmitry.wagin@ya.ru> (maintainer)
|
| |
|