- java/openjdk7* has been removed from the tree since 2022-09-03 however
the relevant codebases in bsd.java.mk has not been removed and the
consumers has also not been updated to use the next jdk version. This
commit updates all relevant consumers to use JAVA_VERSION=8 instead of
JAVA_VERSION=1.7
- Since the introduction of jdk version 18 it looks like similar with
jdk version 8(java version string 1.8). This is prone to error as it
looks similar and is only seperated by a '.'. Remove using
JAVA_VERSION with dotted fomat of java version string and update all
consumers to utilize version 8 instead of 1.8.
Approved by: portmgr (blanket)
Bump golang.org/x/sys dependency to a version new enough
to support riscv64-freebsd.
Sponsored by: Berliner Linux User Group e.V.
Approved by: portmgr (build fix blanket)
Bump golang.org/x/sys dependency to a version new enough to support
riscv64-freebsd.
Sponsored by: Berliner Linux User Group e.V.
Approved by: portmgr (build fix blanket)
Differential Revision: https://reviews.freebsd.org/D39044
../../src/xstd/Endian.h:34:17: error: 'uint64_t uint64_t(uint64_t)' redeclared as different kind of entity
34 | inline uint64_t htobe64(uint64_t x) {
| ^~~~~~~
In file included from /usr/include/stdint.h:38,
from /usr/local/lib/gcc12/gcc/powerpc-portbld-freebsd13.2/12.2.0/include/stdint.h:9,
from ../../src/xstd/h/stdint.h:7,
from ../../src/base/polygraph.h:17:
/usr/include/sys/_stdint.h:71:33: note: previous declaration 'typedef __uint64_t uint64_t'
71 | typedef __uint64_t uint64_t;
| ^~~~~~~~
ChangeLog: https://github.com/ddosify/ddosify/releases/tag/v0.15.0
Introducing engine modes:
engine_mode is optional in the config file.
* distinct-user mode simulates a new user for every iteration.
* repeated-user mode can use pre-used user in subsequent iterations.
* ddosify mode is the default mode of the engine. In this mode, the engine
runs in its max capacity, and does not show user simulation behavior.
Add breaking changes to UPDATING
PR: 270078
Reported by: 0xdutra@gmail.com (maintainer)
Bump portrevision of all dependent ports.
Mark broken math/octave-forge-database, math/octave-forge-mechanics,
math/octave-forge-mpi math/octave-forge-nlwing2,
math/octave-forge-parallel, math/octave-forge-specfun
Set to default off these ports in math/octave-forge.
Clean up indentation in Mk/Uses/octave.mk.
What's new in at-spi2-core 2.46.0:
* Fix GetInterfaces documentation on org.a11y.atspi.Accessible
interface.
What's new in at-spi2-core 2.45.91:
* Send device event controller events using the same signature as other
events.
* Document the Accessible, Action, and Cache dbus interfaces.
* Fix license of atspi-gmain.c (#87).
What's new in at-spi2-core 2.45.90:
* xml: Add some documentation.
* xml: Fix event arguments.
* xml: Add some missing DeviceEventController methods.
* Bind the AT-SPI bus to the graphical session.
* Mark bus service as belonging to the session slice.
* Add ATSPI_ROLE_PUSH_BUTTON_MENU.
* Add an "announcement" event/signal to allow objects to send
notifications (!63).
* Various code clean-ups and test improvements.
What's new in at-spi2-core 2.45.1:
* Atk and at-spi2-atk are now merged into this project.
* Now requires meson 0.56.2 and glib 2.67.4.
* at-spi2-atk: Expose the accessible hierarchy via dbus introspection.
* Properly escape the AT-SPI bus address; fixes warnings about the address
not containing a colon (!55).
* Add a text value to AtspiValue, so that a value can expose a textual
description, as in the new Atk value API.
* Add atspi_event_listener_register_with_app, to allow an event listener
to be registered only for a given application (!52).
- accessibility/atk and accessibility/at-spi2-atk have been merged into
accessibility/at-spi2-core
- accessibility/at-spi2-core: bump consumers of removed ports atk and at-spi2-atk
PR: 269704
Exp-run by: antoine
---
- Now uses the Meson build system for the most common
build flavors (X11, Wayland, DRM)
- Add new option for GBM offscreen rendering (not sure
how useful it is though)
- Move `gl' and `localbase' from global USES to those
options which actually require them
Reported by: portscout
PR: 269776 (independent)
VT_PROCESS fails with EPERM because open(2) with a terminal device
on BSDs (unlike Linux/Solaris) implies O_NOCTTY.
$ vidcontrol -s 1 </dev/ttyv0
$ vkmark
Error: Failed to set VT process control mode: Operation not permitted
This reverts commit a8f179d5f2.
www/writefreely had a stray duplicate MAINTAINER block
from an earlier botched commit. I did intentionally not
touch the entry in UPDATING.
Reviewed by: eduardo, flo
Differential Revision: https://reviews.freebsd.org/D38435
vkoverhead is a tool for evaluating CPU-based overhead of Vulkan
drivers. It was inspired heavily by drawoverhead from piglit.
## Features
* extreme granularity for profiling specific scenarios
* simple to use
* CSV output for ease of script parsing
* zero dependencies
https://github.com/zmike/vkoverhead
ChangeLog: https://github.com/ddosify/ddosify/releases/tag/v0.13.0
* Merge remote-tracking branch 'origin/develop' into feat/concat-variables
* Update README.md
* change captureEnv to snake case
* change csv parameters to snake case
* change jsonPath to json_path
* fix done channel send place in stdoutJson
* get profile data from pprof package
* inject both typed and concatenated vars
* regexp, xpath, header_key
* remove unnecessary comment
* update benchmark jenkins file
* update jenkinsfile
* use atomic instead of mutex
PR: 269216
Reported by: 0xdutra@gmail.com (maintainer)
Switch from Mk/bsd.ruby.mk to Mk/Uses/ruby.mk
Notable changes are.
- Mk/bsd.ruby.mk is moved to Mk/Uses/ruby.mk.
- USE_RUBY=yes is replaced with USES=ruby.
- USE_RUBY_EXTCONF is replaced with USES=ruby:extconf.
- USE_RUBY_RDOC is replaced with USES=ruby:rdoc.
- USE_RUBY_SETUP is replaces with USES=ruby:setup.
- RUBY_NO_BUILD_DEPENDS and RUBY_NO_RUN_DEPENDS are replaced with
USES=ruby:{build,none,run}.
- RUBY_REQUIRE isn't used anywhere, so removed.
- USES=gem now implies USES=ruby.
This is mainly the work of yasu@ at https://reviews.freebsd.org/D27863
I have just made some cosmetic changes and ran exp-run to test that the
tree is not in a BROKEN state.
Approved by: portmgr
Differential Revision: https://reviews.freebsd.org/D37925