summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2018-07-13x11/fltk13: update to fltk-1.3.4dbj19-414/+79
CHANGES IN FLTK 1.3.4 RELEASED: Nov 11 2016 Bug fixes and other improvements - Fix test/native-filechooser help display artifact (STR #3349). - MacOS: fix a crash when closing a fullscreen window. - Accept empty Fl_Pixmap in Fl_RGB_Image c'tor (STR #3348). - MacOS: fix drawing error when a window containing a hidden subwindow is changed to fullscreen (error visible with the tabs test program). - MacOS: fix possible crash when enabling fullscreen in test/scroll. - Add a snapshot of known STR's and RFE's (KNOWN_BUGS.html). CHANGES IN FLTK 1.3.4rc3 RELEASED: Oct 31 2016 Bug fixes and other improvements - Fix string truncation in fluid (STR #2722 continued). - MacOS: fix a small problem where the Command-Quit menu hotkey may not work if Fl_Native_File_Chooser is used before any window is shown. CHANGES IN FLTK 1.3.4rc2 RELEASED: Oct 24 2016 Bug fixes and other improvements - Make sure the "File Systems" menu item of Fl_File_Chooser lists "/" as the first mounted file system (Linux/Unix platform). - Added line numbers to fluid Edit -> Show Source Code viewer. - Improved fluid's template handling (STR #3335). CHANGES IN FLTK 1.3.4rc1 RELEASED: Oct 17 2016 New features and extensions - Added support for Mac OS 10.11 "El Capitan" and 10.12 "Sierra". - Added full support of true subwindows to the Mac OS X platform. Window nesting to any depth is possible. An Fl_Gl_Window window or subwindow can contain Fl_Window's as subwindows. - Fluid now supports external editors (STR#3213) See: Edit -> GUI Settings -> Use external editor - Added method Fl_Widget::is_label_copied(). - Added methods Fl_Copy_Surface::w(), Fl_Copy_Surface::h(), and Fl_Copy_Surface::draw_decorated_window(). - Added method Fl_Image_Surface::draw_decorated_window(). - Added method Fl_Shared_Image *Fl_Image_Surface::highres_image() to draw into a high-resolution bitmap image (Mac OS X only). - Added support for OpenGL version 3 and later. - Added method Fl_Mac_App_Menu::custom_application_menu_items() allowing customization of the application menu (Mac OS X only). - Added 'fluid -u' command-line switch to upgrade fluid files in batch mode. This option opens a fluid ('.fl') file and saves it overwriting the old file with the current syntax and library version number. Use with care (input file is overwritten unconditionally). - Added FL_ZOOM_GESTURE gesture for OS X (only). Needs implementation on other platforms. - Added FL_ABI_VERSION, FL_API_VERSION, Fl::abi_version(), and Fl::api_version(). Constants can be used to determine the compiled FLTK version. Functions can be used to find the linked library version. - Added Fl::abi_check() method to test if the runtime (linked) ABI version is correct. - Added Fl_Image::fail() to test if an image was loaded successfully to allow for easier error detection when loading images (STR #2873). - Added line numbers to fluid's source code viewer for New -> Code New configuration options (ABI version) - FLTK's ABI version can now be configured with 'configure', CMake, or by editing a supplied file when using the bundled IDE projects. See documentation in README.abi-version.txt. 1.3.4 ABI FEATURES - Added deactivated user icon to Fl_Tree. - Added Fl_Shared_Image::scale(width, height) which gives a shared image its own drawing size, independently of the size of the underlying image. This improves image drawing on high resolution surfaces such as Laser printers, PDF files, and Apple retina displays. Other improvements - Configure now correctly sets HAVE_* variables only if both the library and the header files were found. The configuration process is aborted if Xft was requested explicitly with --enable-xft and Xft was not found. The configuration summary now shows _found_ options as opposed to requested options. - Improved drawing of rounded box (STR #2943). - Full support of Apple 'retina' displays for which one drawing unit corresponds to two pixels. - The Mac OS X platform no longer uses the deprecated AGL (Apple GL library) to draw OpenGL data. Instead, it uses standard Cocoa APIs. This allows FLTK to support drawing GL scenes at high resolution when an Fl_Gl_Window is mapped to a 'retina' display. - Added Fl_Gl_Window::pixel_w(), Fl_Gl_Window::pixel_h(), and Fl_Gl_Window::pixels_per_unit() useful for high resolution OpenGL windows. - fl_read_image() now captures all pixels within the rectangle described by its arguments, whether they belong to a GL scene or not (STR #3142). It also captures subwindows of GL windows. - Fl::delete_widget() now hides the widget or window immediately (i.e. when called) - only destruction is delayed as before. - FLTK header files don't expose X11 definitions in user code any more unless requested by including FL/x.H explicitly or implicitly. - The PostScript code output when printing images under Linux/Unix is now much smaller by using lossless compression techniques. - The Linux/Unix printer dialog now uses BSD-style printing commands (lpr/lpq) when SystemV-style commands (lp/lpstat) are not available. - Drawing alpha-blended images under X11 is now accelerated with Xrender. - The font used for the FL_COURIER font family was changed on the Mac OS X platform from 'Courier New' to 'Courier' because it was too thin. - Text drawing on the Mac platform supports Unicode 'variation selectors' in the range [0xFE00-0xFE0F]. - Added a Mac OS implementation of Fl_Window::wait_for_expose() that became necessary with Mac OS 10.10 "Yosemite". - Added the libfltk target to the Xcode project producing a static version of the FLTK library (Mac OS X). - Restored the possibility to call Fl::set_font() before main() starts. - Allow using the --enable-x11 configure option on the Mac OS platform which produces an X11 version of the FLTK library (don't use unless you know what you're doing). - FLTK code and fluid-generated code can be used in static initializers. - Added light gray separator line to fluid's widget browser (STR #2997). - Improved tooltip behavior for huge tooltips: remove flicker, support key/mouse dismiss (STR #2650). - Modifier key names displayed in shortcut labels can now be localized. See documentation of fl_shortcut_label(). You can set modifier key names for Ctrl, Alt, Shift, and Meta by assigning global string pointers to your translated modifier key names. - Many documentation improvements and fixes. - Fixed many compiler warnings (STR #2988). - Fluid now generates code with less compiler warnings (STR #2813). - Many CMake improvements and fixes. Note: CMake is mostly operating now, but not yet recommended for production use. Please test and report issues. - Updated bundled zlib from 1.2.5 to 1.2.8. - Updated bundled libjpeg from jpeg-8c to jpeg-9a. Bug fixes - Fix potential crash when using keyboard navigation on Fl_Tabs widget without children (STR #3333). - Fix potential crash if Fl_Window::icon(NULL) was called to clear (reset) a window icon. This is now legal and documented behavior. The same applies to Fl_Window::default_icon(). - Allow widget callback to be NULL, i.e. no callback (STR #2835). - Fixed Fl_Help_View buffer overflow (STR #3275). - Fl_Browser now correctly adjusts its scrollbars when the default text size is changed with textsize(int) (STR #3057). - Fixed Fl_Text_Display/Fl_Text_Editor slow scrolling, line number display, wrap mode "hiding" text behind scrollbars, and more scrollbar handling (alignment) (STR #3272). - Fixed valgrind warning (uninitialized variable) in Fl_Window. Visible only with FLTK_ABI_VERSION >= 10303, since FLTK 1.3.3. - Fixed Windows drag'n'drop not showing insert position if the drop target is inside the same window or process (STR #3209). - Fixed undefined reference building shared cairo library (STR #3276). - Fixed Fl_Browser if text argument to some methods is NULL (STR #3269). - Fixed missing image release in fluid (STR #2840). - Fixed out-of-bounds memory access in fluid (STR #3263). - Fixed trailing white space in fluid .fl files (STR #3239). - Several box types were not drawn correctly when deactivated. The background color for deactivated widgets is now correct: fl_inactive(color()) (STR #2907). - Fix inconsistent interpretation of ld() in image handling (STR #3308). This is a minor issue since ld() is usually 0 or w()*d(). Documentation has been fixed, and ld() handling is now consistent in Fl_(RGB_)Image and fl_draw_image() and friends. See documentation of Fl_Image and Fl_RGB_Image for more information. - Fixed Fl_Pixmap (background) drawing to respect the clip region (STR #3206). - Fixed reading .pbm image files: 1 is now interpreted as black, and images whose width are a multiple of 8 are correctly read. Note: if you relied on the faulty behavior you may need to fix your image files. - Restored window background drawing, particularly the 'plastic' scheme's background (STR #3059). This was a regression since FLTK 1.3.0. - Prevent sending (FL_SHORTCUT) events to inactive widgets (STR #3216). - Fixed button label clipping (STR #3237). - Fixed Fl_Menu_::item_pathname() handling of descending submenu pointers (STR #3177). - Fl_Text_Display: style buffer colors are no longer manipulated by fl_contrast() for normal text drawing (fltk.coredev thread started 04/08/15, Subject: "RFC: Fl_Text_Display style buffer color weirdness") - Fl_Tree::deactivate() now affects draw color of items (must have ABI 1.3.3 or higher enabled). For icons to draw deactivated, enable ABI 1.3.4. (test/tree has a 'deactivate tree' button) - Fl_Tree::find_item() did not find items if the pathname contained identical strings (STR #3234). - Fixed possible bad border effect when a set of radio menu items is located first in its menu (STR #3176): Fl_Menu_Item::set_only() is deprecated and replaced by Fl_Menu_::set_only(Fl_Menu_item*). - Restore the correct state of mouse buttons and keyboard modifier keys after closing a file or printer dialog (STR #3221). - Fix for deactivate colors issue with Fl_Text_Display/Editor (STR #3219). - Fixed issue with MSWindows platform where the program kept running after closing all its windows (STR #3165). - Fix potential buffer overflow (MSWindows: BEX64 error) and problem with MSWindows environment variables "HOME"(MinGW) vs. "UserProfile"(DOS) - Fix issue with MSWindows platform where a window would decrease in size after each close/open (STR #3167). - Fix undefined reference XGetUtf8FontAndGlyph (STR #3191). - Fix potential keyboard hangup (STR #3192). - Fix for: .xbm images were not previewed (STR #3131). - Fixed crash on Mac platform when resizing a not yet shown() Fl_Gl_Window. - Fixed potential Windows GDI leak (STR #3254). - Fixed Linux/Unix potential program hang when dialog pops up while a menu is open (STR #3179). - Fixed a crash when a Unix/Linux program calls take_focus() before any window has been show()n. - Fixed an error on the Mac platform when drawing to an Fl_Image_Surface object without using the Fl_Image_Surface::draw() method. - Fixed STR #3268 where a fullscreen window could become relocated behind the menu bar and dock (Mac OS only). - Fixed STR #3207: ^C not working when numlock or capslock is on. - Fixed code editor in Fluid (STR #3184). - Fixed a potential hangup of the Fl::awake() queue under Windows if a window is resized or moved while the Fl::awake() message is sent (STR #3143). - Fixed a regression: restore the possibility to call fl_draw_image(buf,X,Y,W,H,D,L) with negative D and/or L arguments. - Fixed overflow in Fl_Valuator::precision(int) to 0...9 (STR #3280).
2018-07-13ham/fldigi: fix crash loading hamlibdbj3-3/+25
The c++ std::sort comparator was being used incorrectly
2018-07-13zoneminder: avoid %ld for time_t (int64_t, not long on arm)gdt6-8/+133
zoneinder uses %ld to print tv.tv_sec, which is of type time_t. On NetBSD, that's int64_t, which happens to match long on amd64, but not on arm, and hence printf often segfaults. Kludge around this by casting to long, which should work for about 20 years, by which time a proper fix should have arrived in a zoneminder release. Not yet raised upstream, because our package is 1.28.1 and upstream has released 1.30.4.
2018-07-13doc: Added www/go-gogs-client version 0.0.20171114minskim1-1/+2
2018-07-13www/Makefile: Add go-gogs-clientminskim1-1/+2
2018-07-13www/go-gogs-client: Import version 0.0.20171114minskim5-0/+69
Gogs API client in Go.
2018-07-12doc: Updated pkgtools/pkglint to 5.5.13rillig1-1/+2
2018-07-12pkgtools/pkglint: Update to 5.5.13rillig29-107/+259
Changes since 5.5.12: * Allow underscore in package version. * Warn about SUBST in post-patch and pre-patch phases. * Allow multiple SUBST blocks per paragraph. * Code cleanup.
2018-07-12doc: Updated graphics/krita to 4.1.0maya2-3/+3
2018-07-12krita: update to 4.1.0, take maintainership.maya3-64/+63
This release includes the following major new features: A new reference images tool that replaces the old reference images docker. You can now save and load sessions: the set of images and views on images you were working on You can create multi-monitor workspace layouts An improved workflow for working with animation frames An improved animation timeline display Krita can now handle larger animation by buffering rendered frames to disk The color picker now has a mixing option Improved vanishing point assistant — and assistants can be painted with custom colors Krita’s scripting module can now be built with Python 2 The first part of Ivan Yossi’s Google Summer of Code work on improving the performance of brush masks through vectorization is included as well! Full release notes: https://krita.org/en/krita-4-1-release-notes/
2018-07-12Fix PR pkg/53428. Regen distinfo with changed PKGNAMEryoon1-377/+377
2018-07-12add and enable go19jnemeth1-1/+2
2018-07-12doc: Added devel/py-typing-extensions version 3.6.5minskim1-1/+2
2018-07-12devel/Makefile: Add py-typing-extensionsminskim1-1/+2
2018-07-12devel/py-typing-extensions: Import version 3.6.5minskim4-0/+38
The typing_extensions module contains both backports of these changes as well as experimental types that will eventually be added to the typing module, such as Protocol.
2018-07-11doc: Updated net/ucspi-ssl to 0.99eschmonz1-1/+2
2018-07-11Update to 0.99e. From the changelog:schmonz2-7/+7
- Fixed missing 'return 0' in ssl_params.c for ECDH handshake (tx. J.W.).
2018-07-11Updated devel/libdatrie, www/curladam1-1/+3
2018-07-11curl: updated to 7.61.0adam3-8/+18
Curl and libcurl 7.61.0 This release includes the following changes: * getinfo: add microsecond precise timers for seven intervals * curl: show headers in bold, switch off with --no-styled-output * httpauth: add support for Bearer tokens * Add CURLOPT_TLS13_CIPHERS and CURLOPT_PROXY_TLS13_CIPHERS * curl: --tls13-ciphers and --proxy-tls13-ciphers * Add CURLOPT_DISALLOW_USERNAME_IN_URL * curl: --disallow-username-in-url This release includes the following bugfixes: * CVE-2018-0500: smtp: fix SMTP send buffer overflow * schannel: disable client cert option if APIs not available * schannel: disable manual verify if APIs not available * tests/libtest/Makefile: Do not unconditionally add gcc-specific flags * openssl: acknowledge --tls-max for default version too * stub_gssapi: fix 'unused parameter' warnings * examples/progressfunc: make it build on both new and old libcurls * docs: mention it is HA Proxy protocol "version 1" * curl_fnmatch: only allow two asterisks for matching * docs: clarify CURLOPT_HTTPGET * configure: replace a AC_TRY_RUN with CURL_RUN_IFELSE * configure: do compile-time SIZEOF checks instead of run-time * checksrc: make sure sizeof() is used *with* parentheses * CURLOPT_ACCEPT_ENCODING.3: add brotli and clarify a bit * schannel: make CAinfo parsing resilient to CR/LF * tftp: make sure error is zero terminated before printfing it * http resume: skip body if http code 416 (range error) is ignored * configure: add basic test of --with-ssl prefix * cmake: set -d postfix for debug builds * multi: provide a socket to wait for in Curl_protocol_getsock * content_encoding: handle zlib versions too old for Z_BLOCK * winbuild: only delete OUTFILE if it exists * winbuild: In MakefileBuild.vc fix typo DISTDIR->DIRDIST * schannel: add failf calls for client certificate failures * cmake: Fix the test for fsetxattr and strerror_r * curl.1: Fix cmdline-opts reference errors * cmdline-opts/gen.pl: warn if mutexes: or see-also: list non-existing options * cmake: check for getpwuid_r * configure: fix ssh2 linking when built with a static mbedtls * psl: use latest psl and refresh it periodically * fnmatch: insist on escaped bracket to match * KNOWN_BUGS: restore text regarding 2101 * INSTALL: LDFLAGS=-Wl,-R/usr/local/ssl/lib * configure: override AR_FLAGS to silence warning * os400: implement mime api EBCDIC wrappers * curl.rc: embed manifest for correct Windows version detection * strictness: correct {infof, failf} format specifiers * tests: update .gitignore for libtests * configure: check for declaration of getpwuid_r * fnmatch: use the system one if available * CURLOPT_RESOLVE: always purge old entry first * multi: remove a potentially bad DEBUGF() * curl_addrinfo: use same #ifdef conditions in source as header * build: remove the Borland specific makefiles * axTLS: not considered fit for use * cmdline-opts/cert-type.d: mention "p12" as a recognized type * system.h: add support for IBM xlc C compiler * tests/libtest: Add lib1521 to nodist_SOURCES * mk-ca-bundle.pl: leave certificate name untouched * boringssl + schannel: undef X509_NAME in lib/schannel.h * openssl: assume engine support in 1.0.1 or later * cppcheck: fix warnings * test 46: make test pass after year 2025 * schannel: support selecting ciphers * Curl_debug: remove dead printhost code * test 1455: unflakified * Curl_init_do: handle NULL connection pointer passed in * progress: remove a set of unused defines * mk-ca-bundle.pl: make -u delete certdata.txt if found not changed * GOVERNANCE.md: explains how this project is run * configure: use pkg-config for c-ares detection * configure: enhance ability to build with static openssl * maketgz: fix sed issues on OSX * multi: fix memory leak when stopped during name resolve * CURLOPT_INTERFACE.3: interface names not supported on Windows * url: fix dangling conn->data pointer * cmake: allow multiple SSL backends * system.h: fix for gcc on 32 bit OpenServer * ConnectionExists: make sure conn->data is set when "taking" a connection * multi: fix crash due to dangling entry in connect-pending list * CURLOPT_SSL_VERIFYPEER.3: Add performance note * netrc: use a larger buffer to support longer passwords * url: check Curl_conncache_add_conn return code * configure: Add dependent libraries after crypto * easy_perform: faster local name resolves by using *multi_timeout() * getnameinfo: not used, removed all configure checks * travis: add a build using the synchronous name resolver * CURLINFO_TLS_SSL_PTR.3: improve the example * openssl: allow TLS 1.3 by default * openssl: make the requested TLS version the *minimum* wanted * openssl: Remove some dead code * telnet: fix clang warnings * DEPRECATE: new doc describing planned item removals * example/crawler.c: simple crawler based on libxml2 * libssh: goto DISCONNECT state on error, not SESSION_FREE * CMake: Remove unused functions * darwinssl: allow High Sierra users to build the code using GCC * scripts: include _curl as part of CLEANFILES * examples: fix -Wformat warnings * curl_setup: include <winerror.h> before <windows.h> * schannel: make more cipher options conditional * CMake: remove redundant and old end-of-block syntax * post303.d: clarify that this is an RFC violation
2018-07-11libdatrie: updated to 0.2.12adam2-7/+7
0.2.12: - More C90 (ANSI C) compliance. - Prevent some compiling conflicts with other sources. - Fix miscellaneous compiler warnings. - Prevent trimming on extremely long dictionary path names.
2018-07-11Updated graphics/py-matplotlib to 2.2.2nb1gson1-1/+2
2018-07-11py-matplotlib: fix PR 53425gson5-5/+37
Don't call fflush() on a read-only file pointer; it is an error on BSD systems and causes the import of matplotlib.pyplot to fail.
2018-07-11doc: Updated devel/ocaml-extlib to 1.7.5jaapb1-1/+2
2018-07-11Updated devel/ocaml-extlib to version 1.7.5.jaapb3-9/+9
Most importantly, this version adds support for OCaml 4.07. There are some other minor extensions as well.
2018-07-11doc: Updated multimedia/adobe-flash-player to 30.0.0.134tsutsui1-1/+2
2018-07-11adobe-flash-player: update to 30.0.0.134.tsutsui2-11/+11
Upstream announcement: https://helpx.adobe.com/security/products/flash-player/apsb18-24.html Adobe Security Bulletin Security updates available for Flash Player | APSB18-24 Summary Adobe has released security updates for Adobe Flash Player for Windows, macOS, Linux and Chrome OS. These updates address critical vulnerabilities in Adobe Flash Player 30.0.0.113 and earlier versions. Successful exploitation could lead to arbitrary code execution in the context of the current user.
2018-07-11doc: Updated lang/gcc49-libs to 4.9.4nb8jperkin1-1/+2
2018-07-11gcc49-libs: Make this function correctly on Darwin.jperkin2-3/+17
Firstly we need to modify the copied libraries so that their install_name matches the new location, otherwise check-shlibs thinks that they still come from the main gcc49 package. Secondly we need to avoid the stub libgcc_ext libraries that are used by default as we are unable to modify their install_name, just link directly to libgcc. Bump PKGREVISION.
2018-07-11mk/compiler/gcc.mk: Darwin needs _USE_GCC_SHLIB too.jperkin1-2/+3
2018-07-11mk/ocaml.mk now handles ulimit commands properlyjaapb1-5/+7
2018-07-11Updated databases/py-asyncpgadam1-1/+2
2018-07-11py-asyncpg: updated to 0.17.0adam3-8/+9
asyncpg v0.17.0: Improvements Official support for Python 3.7. Bug Fixes Fix garbage collection of connections and emit a ResourceWarning if an unclosed connection is garbage collected. Raise a clear error if there's a race in pool intialization. Channel names in Connection.add_listener() and Connection.remove_listener() are now quoted properly. Fixed endianness detection on *BSD systems. Fixed handling of large type OIDs.
2018-07-11Updated devel/distcc, security/py-cryptodomeadam1-1/+3
2018-07-11py-cryptodome: updated to 3.6.4adam3-11/+11
3.6.4: New features * Build Python 3.7 wheels on Linux, Windows and Mac. Resolved issues * Rename _cpuid module to make upgrades more robust. * More meaningful exceptions in case of mismatch in IV length (CBC/OFB/CFB modes). * Fix compilation issues on Solaris 10/11.
2018-07-11distcc: updated to 3.3adam9-47/+50
3.3 - Charlie the unicorn * Use masquerade as compiler white-list. * New --allow-private (the default) which allows non-global * IP and IPv6 addresses. * Cross-compilation support. * Fix parsing of IPv6 addresses. * Python 3, not python 2. * Can build without python (and without pump mode or tests). For those upgrading: you must run update-distcc-symlinks on every server machine, and add manually (see MASQUERADING of distcc(1)) those compilers it does not detect.
2018-07-11doc: Updated ham/uhd to 3.11.1.0dbj1-1/+2
2018-07-11ham/uhd: updated from 3.11.0.0 to 3.11.1.0dbj3-9/+10
includes fixes for build breakage introduced by boost 1.67 ## 003.011.001.000 * N310: fix compiler warnings * N310: Implement digital loopback * N3xx: Add N3xx devtest * X300: Properly coerce master clock rate (tick rate) * X300: handle bad weak_ptr during pcie discovery * X300: handle bad weak_ptr during pcie discovery * X300: Fix check_radio_config() to fix errors when using a single dboard in slot A * B200: docs: Suggest modifying recv_frame_size for more stability * B200: Fix bandwidth warnings and ranges * N2xx: Fix regression issue that limited tuning range * UBX: Change antenna functions to coercers on antenna/value properties * adf4002: Fix register programming for power down bit * UHD: Fix config file path for some Windows builds * UHD: Add operators == and != for uhd::dict * UHD: Add device_addr_t constructor from map * UHD: Fix range of gain group to skip gains with zero step * UHD: Changes to support Boost 1.67 * UHD: Correctly set end of burst flag in RX metadata * UHD: Reduce usage of boost::assign, boost::this_thread::sleep, and boost:bind * UHD: Update multi_usrp::get_usrp_?x_info() for MPM devices * UHD: Refactor static const values to fix linker errors in niusrprio * mpm: cmake: Add git hash and version info to Python module * mpm: Add reference counters to UIO * mpm: Add offset to EEPROM reads * mpm: Disable PPS out during initialization * mpm: Update cmake to find the correct python3 * mpm: Bump maximum supported revision to 5 (Rev F) * mpm: Fixed db slot typo in db-id * mpm: Increased claim timeout, made a separate RPC connection for claim, and added asyn calls for long RPC executions * mpm: Improve xport<->SFP mapping algorithm * mpmd: Improved find routine to fail fast and verify correct device is reachable * mpmd: Add missing virtual destructors * rfnoc/x300: Make sure peek32() and peek64() are called with actual addresses * rfnoc: ctrl_iface cleanup * rfnoc radio: Improve warning for too many samples requested * rfnoc radio: get_rx_stream resets sequence num * examples: Increase settling time, increase buffer fill time, and fix subdevice selection in txrx_loopback_to_file * examples: Improvements to benchmark_rate * utils: downloader supports multiple RegExs * utils: Added code to handle underruns during self calibration * utils: Fix 30s tiemout in query_gpsdo_sensors * logging: Improve style consistency and demote some messages * logging: Fix UHD_LOG_FILE cmake variable * Docs: Add Known Issues section to USRP1, B100, and USRP2/N2x0 * Docs: Hide dependencies directory from Doxygen * Docs: Clarify subdev specs and magnesium driver usage for N300/N310 * cmake: Improve warning for missing requests * cmake: update NSIS template * cmake: Remove images downloader section (replaced by manifest) ## 003.011.000.001 * N300: Added driver support (includes some refactoring of N3xx codebase) * MPM: Fix PyLint warnings, Fix error handling for TCA communication errors, Fix printout of AD9371 version * uhd_images_downloader: Create unique archive names for images archives (now include git hashes in the filename) * uhd_images_downloader: Fix SHA256 check * utils: Add support for N3xx filesystem images to images downloader * UHD: Minor logging fixes * UHD: fix legacy compat to work with 2TX radio block * X300: improve lvbitx bitstream md5 read time * examples: Enhance benchmark_rate with more stats and timestamps for errors * cmake: Correctly fail when an unavailable component is requested * debian: Add UHDConfig.cmake to install list for libuhd-dev
2018-07-11doc: Added devel/go-godef version 0.0.20170920minskim1-1/+2
2018-07-11devel/Makefile: Add go-godefminskim1-1/+2
2018-07-11devel/go-godef: Import version 0.0.20170920minskim4-0/+99
Godef, given an expression or a location in a source file, prints the location of the definition of the symbol referred to.
2018-07-10doc: Updated lang/nodejs to 10.6.0fhajny1-1/+2
2018-07-10lang/nodejs: Update to 10.6.0.fhajny2-7/+7
- dns: An experimental promisified version of the dns module is now available. Give it a try with `require('dns').promises`. - fs: `fs.lchown` has been undeprecated now that libuv supports it. - lib: `Atomics.wake` is being renamed to `Atomics.notify` in the ECMAScript specification. Since Node.js now has experimental support for worker threads, we are being proactive and added a `notify` alias, while emitting a warning if `wake` is used. - n-api: Add API for asynchronous functions. - util: `util.inspect` is now able to return a result instead of throwing when the maximum call stack size is exceeded during inspection. - vm: Add `script.createCachedData()`. This API replaces the `produceCachedData` option of the `Script` constructor that is now deprecated. - worker: Support for relative paths has been added to the `Worker` constructor. Paths are interpreted relative to the current working directory.
2018-07-10doc: Updated lang/npm to 6.1.0nb1jperkin1-1/+2
2018-07-10npm: Switch to regular DEPENDS.jperkin1-2/+4
This needs to be able to be installed against any nodejs version, and can be as no native modules are used. Bump PKGREVISION.
2018-07-10doc: Updated sysutils/rsyslog to 8.36.0fhajny1-1/+2
2018-07-10sysutils/rsyslog*: Update to 8.36.0.fhajny3-11/+8
- This version disables liblogging-stdlog by default. We now also emit a warning message ("liblogging-stdlog will go away") so that users know what is going on and my react. - add openssl driver alongside GnuTLS one for TLS (experimental) - GnuTLS TLS driver: support intermediate certificates - omelasticsearch: write op types; bulk rejection retries - lookup tables: reload message now with "info" severity (was "error") - imptcp: add support for regex-based framing - imjournal: add statistics counter - config: permit 4-digit file creation modes - ommongodb: add possibility to ignore some insertion error code - omprog: simplify 'plugin-with-feedback.py' example - core: misadressing when writing disk queue files - core: fix message loss on target unavailibility during shutdown - imrelp bugfix: error message "librelp too old" is always emitted ... - imrelp: segfault on startup when cert without priv key is configured - omrelp bugfix: segfault on first message sent when authmode was wrong - imfile bugfix: double-free on module shutdown - imfile/core bugfix: potential misadressing in string copy routine - imfile bugfix: if freshStartTail is set some initial file lines missing - core: fix undefined behaviour (unsigned computation may lead to value < 0)
2018-07-10Update PLIST for gtk-doc changeskhorben2-4/+3
Bumps PKGREVISION.
2018-07-10Updated devel/libuv, devel/wafadam1-1/+3
2018-07-10Updated devel/p5-Test-POE-Client-TCP to 1.18wen1-1/+2
2018-07-10Update to 1.18wen2-7/+7
Upstream changes: version 1.18 at 2018-07-02 09:18:10 +0000 ----------------------------------------- Change: 58133ae09a1087d1d0cf6e5eac3767961b2e2577 Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk> Date : 2018-07-02 10:18:10 +0000 Added usessl option to enable SSL/TLS