This patch was previously reviewed and accepted by the maintainer in D32266
- Add SYNCTEX port option.
- Enable meson build option for SyncTeX support (fixes
non-working feature configuration).
- Improve clarity and remove ambiguity from pkg-descr and pkg-message.
- Removed PATCHFILES: no longer required.
Approved by: Quentin Stiévenart <quentin.stievenart AT gmail DOT com> (maintainer)
Reviewd by: koobs@
MFH: 2022Q2 (broken use of a library dependency)
Differential Revision: https://reviews.freebsd.org/D34851
Note: with LLVM 14, there will now be a series of .1 - .6 releases
cut about ever two weeks rather than a single .1 release after a series
of release candidates.
Add a link for libclang.so.14 to reduce the need to modify build system
that assume the libclang version and LLVM version are the same.
Fix an incorrect coinmp-related dependency that was causing spurious
rebuilds. It was also reported to break the build of openoffice-4,
though I was unable to reproduce the problem, and it did not seem to
break the official package build. Add another missing dependency.
Both issues were reported by stage-qa.
PR: 263238
Running ${STRIP_CMD} on non-binary file can left zero-length
temporary file.
Strip all binaries explicitly, with list of them and loop, instead
of calling ${STRIP_CMD} with '*'.
Running ${STRIP_CMD} on non-binary file can left zero-length
temporary file.
Strip all binaries explicitly, with list of them and loop, instead
of calling ${STRIP_CMD} with '*'.
- Mention important changes related to the upgrade to UPDATING
- Update the dependency constraints
Co-authored-by: Sascha Biberhofer <ports at skyforge dot at>
PR: 263193
Approved by: Sascha Biberhofer <ports at skyforge dot at> (maintainer)
comms/wsjtx: patch configure instead of configure.ac to avoid autotools.
The build runs autoconf to regenerate configure but forgets to run
libtoolize to update ltmain.sh.
PR: 263151
Exp-run by: antoine
Switch from security/ca_root_nss to base system certificate store.
Disable obsolete TPM 1.2 support.
PR: 257995, 260723, 263107, 263131
Exp-run by: antoine
Fails to compile with the following errors:
/wrkdirs/usr/ports/net-p2p/monero-cli/work/monero-0.17.3.0/src/crypto/slow-hash.c:1118:22: warning: implicit declaration of function 'getauxval' is invalid in C99 [-Wimplicit-function-declaration]
supported = (getauxval(AT_HWCAP) & HWCAP_AES) != 0;
^
/wrkdirs/usr/ports/net-p2p/monero-cli/work/monero-0.17.3.0/src/crypto/slow-hash.c:1118:32: error: use of undeclared identifier 'AT_HWCAP'
supported = (getauxval(AT_HWCAP) & HWCAP_AES) != 0;
^
/wrkdirs/usr/ports/net-p2p/monero-cli/work/monero-0.17.3.0/src/crypto/slow-hash.c:1118:44: error: use of undeclared identifier 'HWCAP_AES'
supported = (getauxval(AT_HWCAP) & HWCAP_AES) != 0;
^
plist changes that were landed for the update in documentation-
generation were missing options flags; some X11-stuff was listed
unconditionally.
(driesm@ already fixed this in the meantime, now I'm just sorting
the files in the %%X11%% option part)
PR: 263199
Reported by: driesm
There is documentation possible with glib, using gtk-doc.
Add a knob and the plist bits. The documentation depends
on the tests, though: see glib issue
https://gitlab.gnome.org/GNOME/glib/-/issues/2430
Futz a bit with the options and dependencies; TEST only needs
dbus for the build, and the docs need the tests.
PR: 258624
Reported by: Hodong@nimfsoft.art
glib-networking and glib (glib20) should be kept in sync
with major.minor versions. Update to catch up with glib.
Bump PORTREVISION on direct consumers, but not transitively.
Note that the PR has a newer patch, but that bumps glib
by a minor revision as well, to 2.72, which is tricky in itself.
Transitive consumers of libsoup and libsoup3 all build,
except for net-im/libnice, but that fails locally without this
change as well, so I'm going to choose to ignore that.
PR: 262389
Obtained from: yzrh@noema.org
From [1]:
Today we are releasing GCompris version 2.4.
We optimized the size of all the packages for all platforms and of the
external word images set (~30% smaller).
If you disabled the automatic download and want to have the full images
set, you should go to the configuration and click on "Download full word
image set".
The text "Full word image set is installed" is displayed below when you
have the latest version.
Norwegian Nynorsk introduction voices have been added by Karl Ove
Hufthammer and Øystein Steffensen-Alværvik. Malayalam voices have been
completed by Aiswarya Kaitheri Kandoth.
Many images have been updated for several activities.
We have also fixed a few bugs in Renewable energy, Watercycle and
Logical associations activities.
You can find packages of this new version for GNU/Linux, Windows,
Raspberry Pi and macOS on the download page. This update will be
available soon in the Android Play store, the F-Droid repository and the
Windows store.
Thank you all,
Timothée & Johnny
[1] https://gcompris.net/news/2022-04-13-en.html
This pre-commit hook looks for newly added files matching
foo/bar/Makefile
For these files, it is checking that a SUBDIR+=bar entry is
present in foo/Makefile.
Example run output:
> mkdir -p graphics/test_port
> touch graphics/test_port/Makefile
> git add graphics/test_port/Makefile
> git commit -m "graphics/test_port: not hooked into the build"
[pre-commit] ERROR: Missing 'SUBDIR += test_port' in graphics/Makefile
This should hopefully help reduce the number of index breakages.
Differential Revision: https://reviews.freebsd.org/D34015
Fix an incorrect coinmp-related dependency that was causing spurious
rebuilds. It was also reported to break the build, though I was unable
to reproduce the problem, and it did not seem to break the official
package build. Add another missing dependency. Both issues were
reported by stage-qa.
PR: 263238
* Add backwards-compatibilty flags to the core library to match
original behavior of the the c++ library. Fixes reading of certain
files by the new core.
* Documentation refers to primary branch as "main"
* Update the CI workflow matrix to VFX-CY2022
Specific OSS-fuzz issues addressed:
* OSS-fuzz 46309 Heap-buffer-overflow in Imf_3_1::memstream_read
* OSS-fuzz 46083 Out-of-memory in openexr_exrcheck_fuzzer
* OSS-fuzz 45899 Integer-overflow in internal_exr_compute_chunk_offset_size
* OSS-fuzz 44084 Out-of-memory in openexr_exrcheck_fuzzer
MFH: 2022Q2