BLIS is a portable software framework for instantiating high-performance BLAS-like dense linear algebra libraries. The framework was designed to isolate essential kernels of computation that, when optimized, immediately enable optimized implementations of most of its commonly used and computationally intensive operations. BLIS is written in ISO C99 and available under a BSD3CLAUSE. While BLIS exports a new BLAS-like API, it also includes a BLAS compatibility layer which gives application developers access to BLIS implementations via traditional BLAS routine calls. (from their github)
Reviewed by: swills (mentor)
Approved by: swills (mentor)
Differential Revision: https://reviews.freebsd.org/D10811
This is caused by the recent release of configargparse version 0.12.0.
The variable ACTION_TYPES_THAT_DONT_NEED_A_VALUE was changed from a set
to a tuple in that release.
Traceback (most recent call last):
File "/usr/local/bin/certbot", line 11, in <module>
load_entry_point('certbot==0.13.0', 'console_scripts', 'certbot')()
File "/usr/local/lib/python2.7/site-packages/certbot/main.py", line 738, in main
args = cli.prepare_and_parse_args(plugins, cli_args)
File "/usr/local/lib/python2.7/site-packages/certbot/cli.py", line 1072, in prepare_and_parse_args
helpful.add_deprecated_argument("--agree-dev-preview", 0)
File "/usr/local/lib/python2.7/site-packages/certbot/cli.py", line 726, in add_deprecated_argument
self.parser.add_argument, argument_name, num_args)
File "/usr/local/lib/python2.7/site-packages/certbot/util.py", line 440, in add_deprecated_argument
configargparse.ACTION_TYPES_THAT_DONT_NEED_A_VALUE.add(ShowWarning)
AttributeError: 'tuple' object has no attribute 'add'
PR: 219306
Reported by: GKK <netbackup.gs@gmail.com>
Approved by: koobs (maintainer)
Obtained from: 42d07d756d
* fix shebang for vigra-config (a python script, therefore, also add python as a run-depends).
* add LIB_DPENDS to make qa happy
* add patch-CMakeLists.txt to add toggles for the imageformats JPEG, TIFF and PNG aswell as for FFTW
* modernize option handling
Reviewed by: rakuco
Approved by: rakuco (mentor)
Differential Revision: https://reviews.freebsd.org/D10668
* Convert SOUND from OPTIONS_MULTI to OPTIONS_SINGLE. The arguments show that it is meant to be exclusive.
* Add options for FFMPEG and MPG123 as they are picked up if installed. Further patch in toggleability for FFMPEG.
Reviewed by: rakuco
Approved by: rakuco (mentor, implicit)
Differential Revision: https://reviews.freebsd.org/D10836
- Direct3D command stream runs asynchronously.
- Better serial and parallel ports autodetection.
- Still more fixes for high DPI settings.
- Various bug fixes.
linked with the base OpenSSL, if some other implementation
is merely installed, but that seems like a common problem...
PR: 216174
Submitted by: gahr
Sponsored by: Unemployment Insurance
- application translated to English and Italian languages
- completely rewritten configuration subsystem
- code separated into two subprojects: libqnapi and gui
- selecting target format/extension from command line interface - #65
- fixed problem with color information loss during subtitles conversion - #100
- Linux x86_64 AppImage binary available
KDE has moved distfiles for applications 16.12.3 to Attic/ on their mirros.
Reported by: Matthias Apitz <guru@unixarea.de>
Reviewed by: rakuco
Approved by: rakuco (mentor, implicit)
Differential Revision: https://reviews.freebsd.org/D10830
present in the source tree which, with -I. option passed to the compiler,
would sometimes be picked up instead of expected `/usr/include/limits.h'.
Fix this by renaming local header file with a `${PORTNAME}_' prefix;
- Convert CPPFLAGS/LDFLAGS/MAKE_ENV variables to USES+=localbase;
- Rewrite condition expression in standard syntax to get rid of dependency
on `shells/bash', and wrap an overly long line while I'm here.