- 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
As part of the improvements of USES infrastructure Mk/bsd.octave.mk has
been converted to Mk/Uses/octave.mk. This also declutters some old
stuffs in the octave-* ports and makes it simpler to add more
octave-forge ports easily.
While I am here make all the ports portclippy/portfmt compliant. And use
USES macros whenever possible.
Reviewed by: portmgr
Approved by: tcberner
Differential Revision: https://reviews.freebsd.org/D37887
Traceback (most recent call last):
File "waflib/Scripting.py", line 104, in waf_entry_point
set_main_module(os.path.normpath(os.path.join(Context.run_dir,Context.WSCRIPT_FILE)))
File "waflib/Scripting.py", line 135, in set_main_module
Context.g_module=Context.load_module(file_path)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "waflib/Context.py", line 343, in load_module
code=Utils.readf(path,m='rU',encoding=encoding)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "waflib/Utils.py", line 117, in readf
f=open(fname,m)
^^^^^^^^^^^^^
ValueError: invalid mode: 'rUb'