summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2019-07-19cmake: updated to 3.15.0adam7-23/+92
3.15.0: New Features ============ Generators ---------- * The "Xcode" generator now supports per-target schemes. See the "CMAKE_XCODE_GENERATE_SCHEME" variable and "XCODE_GENERATE_SCHEME" target property. * The "Green Hills MULTI" generator has been updated: * It now supports the "add_custom_command()" and "add_custom_target()" commands. * It is now available on Linux. Languages --------- * Preliminary support for the "Swift" language was added to the "Ninja" generator: * Use the "SWIFTC" environment variable to specify a compiler. * The "Swift_DEPENDENCIES_FILE" target property and "Swift_DEPENDENCIES_FILE" source file property were added to customize dependency files. * The "Swift_MODULE_NAME" target property was added to customize the Swift module name. * The "Swift_DIAGNOSTICS_FILE" source property was added to indicate where to write the serialised Swift diagnostics. The Swift support is experimental, not considered stable, and may change in future releases of CMake. Compilers --------- * The "Clang" compiler variant on Windows that targets the MSVC ABI but has a GNU-like command line is now supported. * Support for the Clang-based ARM compiler was added with compiler id "ARMClang". * Support was added for the IAR compiler architectures Renesas RX, RL78, RH850 and Texas Instruments MSP430. * Support was added for the IAR compilers built for Linux (IAR BuildLx). Command-Line ------------ * The "CMAKE_GENERATOR" environment variable was added to specify a default generator to use when "cmake(1)" is run without a "-G" option. Additionally, environment variables "CMAKE_GENERATOR_PLATFORM", "CMAKE_GENERATOR_TOOLSET", and "CMAKE_GENERATOR_INSTANCE" were created to configure the generator. * The "cmake(1)" "--build" tool "--target" parameter gained support for multiple targets, e.g. "cmake --build . --target Library1 Library2". It now also has a short form "-t" alias, e.g. "cmake --build . -t Library1 Library2". * The "cmake(1)" command gained a new "--install" option. This may be used after building a project to run installation without using the generated build system or the native build tool. * The "cmake(1)" command learned a new CLI option "--loglevel". * The "cmake(1)" "-E remove_directory" command-line tool learned to support removing multiple directories. * The "cmake(1)" "-E tar" tool has been improved: * It now continues adding files to an archive even if some of the files are not readable. This behavior is more consistent with the classic "tar" tool. * It now parses all flags, and if an invalid flag was provided, a warning is issued. * It now displays an error if no action flag was specified, along with a list of possible actions: "t" (list), "c" (create) or "x" (extract). * It now supports extracting ("-x") or listing ("-t") only specific files or directories. * It now supports Zstandard compression with a "--zstd" option. Zstandard was designed to give a compression ratio comparable to that of the DEFLATE (zip) algorithm, but faster, especially for decompression. Commands -------- * The "add_custom_command()" and "add_custom_target()" commands gained a new "JOB_POOL" option that works with the "Ninja" generator to set the pool variable on the build statement. * The "add_library()" command "ALIAS" option learned to support import libraries of the "UNKNOWN" type. * The "cmake_parse_arguments()" command gained an additional "_KEYWORDS_MISSING_VALUES" output variable to report keyword arguments that were given by the caller with no values. * The "execute_process()" command gained a "COMMAND_ECHO" option and supporting "CMAKE_EXECUTE_PROCESS_COMMAND_ECHO" variable to enable echoing of the command-line string before execution. * The "file(INSTALL)" command learned a new argument, "FOLLOW_SYMLINK_CHAIN", which can be used to recursively resolve and install symlinks. * "list()" learned new sub-commands: "PREPEND", "POP_FRONT" and "POP_BACK". * The "message()" command learned new types: "NOTICE", "VERBOSE", "DEBUG" and "TRACE". * The "string()" learned a new sub-command "REPEAT". Variables --------- * The "CMAKE_CROSSCOMPILING_EMULATOR" variable and corresponding "CROSSCOMPILING_EMULATOR" target property learned to support arguments to the emulator. * The "CMAKE_FIND_PACKAGE_PREFER_CONFIG" variable was added to tell "find_package()" calls to look for a package configuration file first even if a find module is available. * The "CMAKE_FRAMEWORK" variable was added to initialize the "FRAMEWORK" property on all targets. * The "CMAKE_VS_JUST_MY_CODE_DEBUGGING" variable and "VS_JUST_MY_CODE_DEBUGGING" target property were added to enable the Just My Code feature of the Visual Studio Debugger when compiling with MSVC cl 19.05 and higher. * The "CMAKE_MSVC_RUNTIME_LIBRARY" variable and "MSVC_RUNTIME_LIBRARY" target property were introduced to select the runtime library used by compilers targeting the MSVC ABI. See policy "CMP0091". * The "CMAKE_PROJECT_INCLUDE" and "CMAKE_PROJECT_INCLUDE_BEFORE" variables were added to allow injection of custom code at the sites of "project()" calls without knowing the project name a priori. Properties ---------- * The "ADDITIONAL_CLEAN_FILES" target property and "ADDITIONAL_CLEAN_FILES" directory property were added. They allow to register additional files that should be removed during the clean stage. * The "PUBLIC_HEADER" and "PRIVATE_HEADER" properties may now be set on Interface Libraries. The headers specified by those properties can be installed using the "install(TARGETS)" command by passing the "PUBLIC_HEADER" and "PRIVATE_HEADER" arguments respectively. * The "VS_PACKAGE_REFERENCES" target property was added to tell Visual Studio Generators to add references to "nuget" packages. * The "VS_PROJECT_IMPORT" target property was added to allow managed Visual Studio project files to import external ".props" files. * The "VS_NO_SOLUTION_DEPLOY" target property was added to tell Visual Studio Generators whether to deploy an artifact to the WinCE or Windows Phone target device. Modules ------- * The "FindBoost" module was reworked to expose a more consistent user experience between its “Config” and “Module” modes and with other find modules in general. * A new imported target "Boost::headers" is now defined (same as "Boost::boost"). * New output variables "Boost_VERSION_MACRO", "Boost_VERSION_MAJOR", "Boost_VERSION_MINOR", "Boost_VERSION_PATCH", and "Boost_VERSION_COUNT" were added. * The "QUIET" argument passed to "find_package()" is no longer ignored in config mode. Note that the CMake package shipped with Boost "1.70.0" ignores the "QUIET" argument passed to "find_package()". This is fixed in the next Boost release. * The input switch "Boost_DETAILED_FAILURE_MSG" was removed. * "Boost_VERSION" now reports the version in "x.y.z" format in module mode. See policy "CMP0093". * The "FindCups" module now provides imported targets. * The "FindEnvModules" module was added to use Lua- and TCL-based environment modules in CTest Scripts. * The "FindGLEW" module now provides an interface more consistent with what upstream GLEW provides in its own CMake package files. * The "FindPkgConfig" now populates "INTERFACE_LINK_OPTIONS" property of imported targets with other (non-library) linker flags. * The "FindPostgreSQL" module learned to find debug and release variants separately. * Modules "FindPython3", "FindPython2" and "FindPython" gained additional lookup strategies and controls, and a new default. See policy "CMP0094". * Modules "FindPython", "FindPython2" and "FindPython3" gain a new target (respectively "Python::Module", "Python2::Module" and "Python3::Module") which can be used to develop Python modules. * Modules "FindPython3", "FindPython2" and "FindPython" gain capability to control how virtual environments are handled. * The "UseSWIG" module learned to manage alternate library names by passing "-interface " for "python" language or "-dllimport " for "CSharp" language to the "SWIG" compiler. Generator Expressions --------------------- * The "generator expressions" "C_COMPILER_ID", "CXX_COMPILER_ID", "CUDA_COMPILER_ID", "Fortran_COMPILER_ID", "COMPILE_LANGUAGE", "COMPILE_LANG_AND_ID", and "PLATFORM_ID" learned to support matching one value from a comma-separated list. CTest ----- * The "ctest_submit()" command learned a new option: "BUILD_ID". This can be used to store the ID assigned to this build by CDash to a variable. * The "ctest_update()" command learned to honor a new variable: "CTEST_UPDATE_VERSION_OVERRIDE". This can be used to specify the current version of your source tree rather than using the update command to discover the current version that is checked out. CPack ----- * The "CPack IFW Generator" gained a new "CPACK_IFW_PACKAGE_STYLE_SHEET" variable to customize the installer stylesheet. Deprecated and Removed Features =============================== * The "cmake-server(7)" mode has been deprecated and will be removed from a future version of CMake. Please port clients to use the "cmake-file-api(7)" instead. * The "ADDITIONAL_MAKE_CLEAN_FILES" directory property is now deprecated. Use the "ADDITIONAL_CLEAN_FILES" directory property instead. * The variable "CMAKE_AUTOMOC_RELAXED_MODE" is considered deprecated. Support still exists but will be removed in future versions. * The "export(PACKAGE)" command now does nothing unless enabled via "CMAKE_EXPORT_PACKAGE_REGISTRY". See policy "CMP0090". * The "Xcode" generator now requires at least Xcode 5. * An explicit deprecation diagnostic was added for policy "CMP0066" ("CMP0065" and below were already deprecated). The "cmake- policies(7)" manual explains that the OLD behaviors of all policies are deprecated and that projects should port to the NEW behaviors. Other Changes ============= * CMake learned how to compile C++14 with the IBM AIX XL compiler and the SunPro compiler and to compile C++20 with the AppleClang compiler. * With MSVC-like compilers the value of "CMAKE__FLAGS" no longer contains warning flags like "/W3" by default. See policy "CMP0092". * IBM Clang-based XL compilers that define "__ibmxl__" now use the compiler id "XLClang" instead of "XL". See policy "CMP0089". * The "file(REMOVE)" and "file(REMOVE_RECURSE)" commands were changed to ignore empty arguments with a warning instead of treating them as a relative path and removing the contents of the current directory.
2019-07-18PKGBASE != atspi Hopefully fix pbulk.prlw11-2/+2
2019-07-18Update py-at-spi2 to 2.33.2prlw12-9/+7
Unstable branch chosen for: * Add support for ROLE_CONTENT_DELETION and ROLE_CONTENT_INSERTION. ChangeLog: * Fix arguments in text.addSelection. * Fix default kind value for registerKeystrokeListener. * Document that extents are only meaningful when the accessible is both visible and showing. * Add accessibleId property. * Add text.notifyReadingPosition. * Fix print usage in example, for python 3 compatibility. What's new in pyatspi 2.31.2: * Add ScrollSubstringTo and ScrollSubstringToPoint text interfaces. What's new in pyatspi 2.31.1: * Add support for locking/unlocking modifiers. What's new in pyatspi 2.29.1: * Add ScrollTo and ScrollToPoint component interfaces. What's new in pyatspi 2.25.90: * registry: Rename async keyword for compatibility with Python 3.7. * Add missing XY_PARENT export. What's new in pyatspi 2.25.3: * Add error-message, error-for, details, and details-for relation types What's new in pyatspi 2.25.2: * Add some missing roles to correspond with atk (description list, description term, description value, and footnote).
2019-07-18Update at-spi2-atk to 2.33.2prlw16-34/+57
Unstable branch chosen for: * Add support for ROLE_CONTENT_DELETION and ROLE_CONTENT_INSERTION ChangeLog: * Add support for ROLE_CONTENT_DELETION and ROLE_CONTENT_INSERTION * Fix a build issue where libgobject might not have been linked, resulting in undefined symbols. What's new in at-spi2-atk 2.33.1: * Document atk_bridge_adaptor_init error messages. * Add atk_bridge_set_event_context. * Add AccessibleId property. What's new in at-spi2-atk 2.31.92: * Fix a crash when retrieveing headers from table cells. What's new in at-spi2-atk 2.31.2: * Add ScrollSubstringTo and ScrollSubstringToPoint interfaces. What's new in at-spi2-atk 2.29.1: * Fix a case where we could return without unlocking a mutex (bgo#793625). * Add ScrollTo and ScrollToPoint interfaces. * Fix various compiler warnings and build issues.
2019-07-18Update at-spi2-core to 2.33.2prlw14-87/+27
Unstable branch chosen for: * Add ATSPI_ROLE_CONTENT_DELETION and ATSPI_ROLE_CONTENT_INSERTION. Many other bug fixes and translation updates including: * Add atspi_accessible_get_accessible_id. * Add atspi_text_notify_reading_position. * Fix a compiler warning on BSD. * Fix atspi_table_cell_get_(row_column)_header_cells. * Add ScrollTo and ScrollToPoint component interfaces. * Fix a potential buffer overflow in at-spi-bus-launcher (bgo#791124). Full list at: https://gitlab.gnome.org/GNOME/at-spi2-core/blob/AT_SPI2_CORE_2_33_2/NEWS
2019-07-18Update atk to 2.33.3prlw13-80/+18
Unstable branch chosen for: * New Roles: * Issue #2: Add ATK_ROLE_CONTENT_INSERTION and ATK_ROLE_CONTENT_DELETION (MR!19) Many other bug fixes and translation updates including: * AtkText * Fix failure value for atk_text_get_caret_offset * Add ScrollTo and ScrollToPoint methods to AtkComponent Full list at: https://gitlab.gnome.org/GNOME/atk/blob/ATK_2_33_3/NEWS
2019-07-18Update to 1.302164wen2-7/+7
Upstream changes: 1.302164 2019-04-27 01:43:44-07:00 America/Los_Angeles 1.302163 2019-04-25 05:45:47-07:00 America/Los_Angeles (TRIAL RELEASE) - Do not use threads::Shared in Test::Tester::Capture (#826) - Add missing version info to Info/Table - Fix event in global destruction bug (#827) - Proper fix for todo = '' (#812, #829)
2019-07-18Update to 0.10wen2-8/+7
Upstream changes: 0.10 2019-06-26 11:28:13 [BUGFIXES] * Fix unit tests to handle when both Devel::MAT and Devel::FindRef are available (RT129908) (No module code changes, purely tests) 0.09 2019-06-25 21:06:57 [CHANGES] * Add a `refcount()` function that callers can use to build refcount-preserving tests * Adjust docs to explain more about the Devel::MAT use-case * General build file style updates
2019-07-18Update to 2.2.2wen2-8/+7
Upstream changes: v2.2.2 2019-07-11 - Fix cpan-test failures on mswin32 v2.2.1 2019-07-09 - Ooops, the module still depends on UNIVERSAL::require - Oh, and the subprocess function now requires perl 5.10.0 v2.2.0 2019-07-08 - RT-118530: Capture (and optionally suppress) all output from subcommands - RT-102817: Change the default value for 'verbose', from 1 to undef - RT-118419: pm and pl files are now both checked using 'perl -c' - Changes to POD: fixes to escaping, update for new functionality, simplify it - The module no longer depends on UNIVERSAL::require v2.1.2 2019-07-03 - More corrections to the POD - More tests, try specifying specific files to all_pX_files() - Use the correct method in all_pl_files_ok() (Noel Maddy) v2.1.1 2019-07-01 (Evan Giles <egiles@cpan.org>) - Correct the POD v2.1.0 2019-06-29 (Evan Giles <egiles@cpan.org>) - Update copyright - Add all_pm_files_ok() and all_pl_files_ok() methods to the internal class v2.0.1 2019-06-18 (Evan Giles <egiles@cpan.org>) - Export most of the old functions (CPAN-RT 129888) v2.0_0 2019-06-18 Łukasz Hejnak <lehack@lehack.pl> - Replaced import() with Exporter usage. - Added all_files_ok to the procedural mode. - Added .git to list of directories ignored when looking for pm/pl files. - Added an else clause for pl_file_compiles so that it catches file not found errors. Evan Giles <egiles@cpan.org> - Remove 'exported_to' function - Remove cleanup steps from the Build.PL file - Bump version number for backwards incompatible changes (semver.org)
2019-07-18py-virtualenv: updated to 16.6.2adam2-7/+7
v16.6.2: Bugfixes - Extend the LICESNE search paths list by lib64/pythonX.Y to support Linux vendors who install their Python to /usr/lib64/pythonX.Y (Gentoo, Fedora, openSUSE, RHEL and others)
2019-07-18Use https for xfce.org subdomains.nia1-2/+2
2019-07-18waf: updated to 2.0.18adam2-7/+7
NEW IN WAF 2.0.18 ----------------- * Fix a deadlock with cython and subst tasks * Fix rpath processing so that it no longer breaks dependency chains * Fix fast_partial.py failures on configuration tests * Fix duplicate -fno-strict-aliasing flags in Python compilation flags detection * Fix annoying PIE errors in demos/asm/ * Improve configuration tests cache accuracy * Improve extras/fast_partial.py compatibility * Improve extras/doxygen.py outdir parameter settings * Add a dependency scanner for assembly files (Gas/Yasm) * Add executable arguments for configuration tests / execute=True * Add a QtTest example to demos/qt5/ * Add a cross-compilation option to extras/objcopy.py
2019-07-17reset maintainer.wiz1-2/+2
2019-07-17devel/git: Drop git-gitk from git metapakagegdt2-7/+9
As discussed at length on pkgsrc-users: A number of people believe that the git metapackage should contain all of what is in git's release tarball, and that people should read DESCR. A number of people believe that the package named git should contain less (not gitk), and sometimes even less than that. As a compromise where each group is merely grumbling a little, drop gitk from the metapackage, because it is a component that some are bothered by (because it depends on tk, tcl and X, mostly), and because it is easy for those that want it to install it separately.
2019-07-17libextractor: needs openssl for -lcryptonia1-1/+2
2019-07-17Recursive revbump for graphics/exiv2 update.nia1-2/+2
2019-07-16devIL: Disable jp2 support by defaultnia3-5/+22
Re-enable it with the 'jasper' option. Part of the process of trying to minimize the potential impact of a vulnerable jasper. While here, define LICENSE. Bump PKGREVISION
2019-07-16Install a few manpages to alternate names to avoid conflicting with libtai.schmonz7-9/+91
2019-07-16Don't conflict with sufficiently new libowfat.schmonz1-3/+3
2019-07-16makespz3-3/+28
INSTALLVENDORMAN1DIR => "@PREFIX@/@PKGMANDIR@/man1" INSTALLVENDORMAN3DIR => "@PREFIX@/@PKGMANDIR@/man3" and INSTALLVENDORARCH located with the rest of the plugin instead of hardwiring them to /usr/share/man/*
2019-07-15Apply patches from /usr/pkg/lib/python3.7/site-packages/mesonbuild/envconfig.pyprlw13-2/+22
to fix e.g. File "/usr/pkg/lib/python3.7/site-packages/mesonbuild/dependencies/base.py", line 1966, in from_entry return ExternalProgram(name, command=command, silent=True) File "/usr/pkg/lib/python3.7/site-packages/mesonbuild/dependencies/base.py", line 1929, in __init__ self.path = self.command[-1] IndexError: list index out of range *** Error code 2 Stop. make[1]: stopped in /usr/pkgsrc/devel/at-spi2-atk *** Error code 1
2019-07-15SDL: sync options with SDL2nia2-6/+16
as discussed at pkgsrccon, this was pretty much the only thing still using or supporting esound. the esound website doesn't even exist any more. NAS might still be useful, but maybe only if you're using IRIX or something i'm especially worried about libaudiofile and spidermonkey52 being pulled in by esound and pulseaudio respectively - the maintainance status of these libraries is very unclear and their security record is quite problematic. also: - Linux gets ALSA. - explicitly disable support for PlayStation video outputs if you get pkgsrc to work on the PlayStation OS please submit a talk - add pkg-config to USE_TOOLS, it seems to be used in some circumstances.
2019-07-15Updated devel/ocaml-ppx_deriving to version 4.4.jaapb5-92/+118
This adds support for dune and OCaml 4.08, and has some other minor improvements and bugfixes as well.
2019-07-15Added ocaml-ppxfind to Makefile SUBDIRsjaapb1-1/+2
2019-07-15Added devel/ocaml-ppxfind, an ocamlfind tool for ppxjaapb5-0/+49
Needed as a dependency for a new version of devel/ocaml-ppx_deriving.
2019-07-14py-mercurial: update to 5.0.2.wiz3-11/+9
As a bonus, changes for 5.0.1 which were not available at the time of the release. Mercurial 5.0.2 A regularly scheduled bugfix release. 1. commands Help fixes on hg mv and hg cp 2. unsorted debugrevlog: fix average size computation for empty data (issue6167) Fix an obscure data corruption bug with musl libc (and presumably others). See https://www.mercurial-scm.org/repo/hg-committed/rev/97ada9b8d51b the fix for more details. Mercurial 5.0.1 A regularly scheduled bugfix release. 1. commands bookmark: also make bookmark cache depends of the changelog commit: allow --interactive to work again when naming a directory (issue6131) 2. unsorted manifest: avoid corruption by dropping removed files with pure (issue5801) sslutil: fsencode path returned by certifi (issue6132)
2019-07-13yarn: updated to 1.17.3adam2-7/+7
1.17.3 Enforces https for the Yarn and npm registries. 1.17.2 Adds support for reading yarnPath from v2-produced .yarnrc.yml files. 1.17.0 Adds prereleases flags and prerelease identifier to yarn version. Fixes audits when used with yarn add & yarn upgrade Adds support for the --offline flag to yarn global add Yarn will tolerate Yaml at parse time. Full support isn't ready yet and will only come at the next major. Fixes a bug when using the link: protocol with a folder that doesn't contain a package.json
2019-07-13xfce4-conf: update to 4.13.8gutteridge3-8/+9
XXX GObject introspection and Vala support has not yet been enabled in pkgsrc. This is probably an optional dependency, TBD. Change log: 4.13.8 ====== - Add support for GObject introspection and vala - Tests: Explicitly handle error reply from Ping method call - Disable perl bindings by default - Translation Updates: Danish, Armenian (Armenia)
2019-07-12xfce4-dev-tools: update to 4.13.0gutteridge3-15/+10
Change log: 4.13.0 ====== - Merge exo-csource modifications in xdt-csource - xdt-csource will replace exo-csource (projects using exo-csource needs to be updated) - The work started in issue #6449 but the full migration has never been done. - Remove svn support in xdt-autogen - Simplify a bit the XDT_AUTOGEN_REQUIRED_VERSION detection - Remove the check of the unused doc submodule - Remove useless macros: m4macros/xdt-python.m4 and m4macros/xdt-xfce.m4 are not used - Remove xdt-commit, used to generate Changelog, now done via make distcheck - No -Wshadow flag for enable_debug=full (bug #11637). Use it only for enable_debug=yes.
2019-07-12py-protobuf: updated to 3.9.0adam3-8/+11
Protocol Buffers v3.9.0 Python Change implementation of Name() for enums that allow aliases in proto2 in Python to be in line with claims in C++ implementation (to return first value). Explicitly say what field cannot be set when the new value fails a type check. Duplicate register in descriptor pool will raise errors Add slots to all well_known_types classes, custom attributes are not allowed anymore. text_format only present 8 valid digits for float fields by default
2019-07-12protobuf: updated to 3.9.0adam3-23/+7
Protocol Buffers v3.9.0 C++ Optimize and simplify implementation of RepeatedPtrFieldBase Don't create unnecessary unknown field sets. Remove branch from accessors to repeated field element array. Added delimited parse and serialize util. Reduce size by not emitting constants for fieldnumbers Fix a bug when comparing finite and infinite field values with explicit tolerances. TextFormat::Parser should use a custom Finder to look up extensions by number if one is provided. Add MessageLite::Utf8DebugString() to make MessageLite more compatible with Message. Fail fast for better performance in DescriptorPool::FindExtensionByNumber() if descriptor has no defined extensions. Adding the file name to help debug colliding extensions Added FieldDescriptor::PrintableNameForExtension() and DescriptorPool::FindExtensionByPrintableName(). The latter will replace Reflection::FindKnownExtensionByName(). Replace NULL with nullptr Created a new Add method in repeated field that allows adding a range of elements all at once. Enabled enum name-to-value mapping functions for C++ lite Avoid dynamic initialization in descriptor.proto generated code Move stream functions to MessageLite from Message. Move all zero_copy_stream functionality to io_lite. Do not create array of matched fields for simple repeated fields Enabling silent mode by default to reduce make compilation noise.
2019-07-12py-meson: updated to 0.51.1adam2-7/+7
0.51.1: Unknown changes
2019-07-12sqlite3: updated to 3.29.0adam1-5/+5
SQLite Release 3.29.0: Added the SQLITE_DBCONFIG_DQS_DML and SQLITE_DBCONFIG_DQS_DDL actions to sqlite3_db_config() for activating and deactivating the double-quoted string literal misfeature. Both default to "on" for legacy compatibility, but developers are encouraged to turn them "off", perhaps using the -DSQLITE_DQS=0 compile-time option. -DSQLITE_DQS=0 is now a recommended compile-time option. Improvements to the query planner: Improved optimization of AND and OR operators when one or the other operand is a constant. Enhancements to the LIKE optimization for cases when the left-hand side column has numeric affinity. Added the "sqlite_dbdata" virtual table for extracting raw low-level content from an SQLite database, even a database that is corrupt. Enhancements to the CLI: Add the ".recover" command which tries to recover as much content as possible from a corrupt database file. Add the ".filectrl" command useful for testing. Add the long-standing ".testctrl" command to the ".help" menu. Added the ".dbconfig" command
2019-07-11devel/git: Clarify DESCR and hint at git-basegdt1-2/+4
2019-07-11Remove devel/xulrunner192 and devel/swt.nia110-7672/+1
xulrunner192 was the last remains of Firefox 3.6 in pkgsrc. The last package depending on xulrunner192 was devel/swt. swt isn't used by anything in pkgsrc (old versions of eclipse which weren't imported, maybe), and was originally added by jmcneill, who says it can be removed now.
2019-07-11More strnlen(3) users - from Joyentsevan1-1/+2
2019-07-11Use https for pango.org.nia2-4/+4
2019-07-10dconf: PKGREVISION bump for sysconfdir fix in py-meson/build.mkmarkd1-11/+2
also remove no longer used SUBST for /etc -> ${PKG_SYSCONFDIR}
2019-07-10py-meson: make sure meson called with correct sysconfdir.markd1-2/+2
2019-07-10Use https for haskell.org.nia1-2/+2
2019-07-10Update to go-protobuf version 1.3.2.he3-9/+10
Pkgsrc changes: * Update PLIST Upstream notable changes: * #785: grpc code generation: add an UnimplementedServer type implementing each server interface, returning an unimplemented error for each method * #851: convert prints to `os.Stderr` to use `log.Printf` * #883: jsonpb: fix marshaling of Duration with negative nanoseconds
2019-07-10devel/librdkafka: Update to 1.0.1minskim3-12/+11
Notable changes in 1.0: - Idempotent producer - guaranteed ordering, exactly-once producing. - Sparse/on-demand connections - connections are no longer maintained to all brokers in the cluster. - KIP-62 - max.poll.interval.ms for high-level consumers.
2019-07-09Update the Python HOMEPAGEs that I missed earlier.nia1-2/+2
2019-07-09Update to 0.66ryoon2-8/+7
Changelog: 0.66 User-visible changes since 0.65 are as follows: - Add support for lzip archives and patches - Document QUILT_PC as user-settable - configure: Don't require md5sum - Test suite: Allow keeping the working directory on failure - Test suite: Fix regex for recent versions of perl ... 0.65 User-visible changes since 0.64 are as follows: - Translation fixes - Project settings have priority - Reject binary files in patches - Fix a race condition in diff_file - Performance: Optimizations to the setup command - Performance: Optimizations to the bash completion script ...
2019-07-09Use https for readthedocs.io.nia5-10/+10
2019-07-09Use https for pythonhosted.org.nia1-2/+2
2019-07-09py-flake8: updated to 3.7.8adam2-7/+7
3.7.8: Bugs Fixed - Fix handling of Application.parse_preliminary_options_and_args when argv is an empty list - Fix crash when a file parses but fails to tokenize - Log the full traceback on plugin exceptions - Fix # noqa: ... comments with multi-letter codes
2019-07-08Obtain strnlen implementation via libnbcompat using USE_FEATURES, instead ofsevan2-23/+2
patching in an implementation.
2019-07-08py-typing-extensions: updated to 3.7.4adam2-7/+7
3.7.4: Match with Python 3.7.4
2019-07-08py-typing: updated to 3.7.4adam2-8/+8
3.7.4: Match with Python 3.7.4.