summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2020-09-18Pullup ticket #6320 - requested by hebsiegert1-0/+14
devel/protobuf: PowerPC build fix Revisions pulled up: - devel/protobuf/hacks.mk 1.1 --- Module Name: pkgsrc Committed By: he Date: Tue Sep 8 08:35:23 UTC 2020 Added Files: pkgsrc/devel/protobuf: hacks.mk Log Message: On powerpc, which lacks native 8-byte atomics, use devel/libatomic. Build fix on this platform only, so no revision bump.
2020-06-29Enable lwt option to fix www/ocaml-cohttp build errors.yyamano2-4/+4
Bump PKGREVISION. OK'ed by jaapb and gdt.
2020-06-26svn-bisect: Do not install perllocal.podotis1-2/+1
Do not install perllocal.pod to avoid file conflict.
2020-06-26Fix Illumos build.schmonz4-1/+58
2020-06-26Assign non-default SUBST_FILES.djberrno with =, not += (because itschmonz1-2/+2
doesn't actually append).
2020-06-26Fix PLIST to make this build with JDK 11.yyamano4-1196/+2420
JDK 11 doesn't generate frames. http://www.ki.nu/pkgsrc/reports/current/NetBSD-9.0/20200531.1505/java-jna-5.2.0nb1/install.log
2020-06-25Retire 'djbware-errno-hack' and associated options.mk cleverness.schmonz2-5/+4
Instead: 1. Package makefiles including their own options.mk 2. Packages say "SUBST_CLASSES+=djberrno" to get the hack, if needed 3. Packages adjust SUBST_FILES.djberrno, if needed Should fix bulk build failures due to multiple inclusions of options.mk and/or incorrect definitions of DJB_ERRNO_HACK. Approved during the freeze by wiz@.
2020-06-24go-cmp: bl3 fix to include depency x-errorsnikita1-1/+2
2020-06-24go-tmc: add bl3.nikita1-0/+15
2020-06-24devel/ruby-redmine: fix build problemtaca1-5/+11
Fix build problem with PKG_DEVELOPER=yes. Bump PKGREVISION.
2020-06-24devel/ruby-regexp_parser: fix PLISTtaca1-1/+3
Fix PLIST to build success.
2020-06-23cppcheck: update to 1.90nb2.wiz1-11/+2
The tinyxml2 override (to use the pkgsrc version) stopped working. Having both the pkgsrc version and the included copy used in the build made cppcheck dump core. Stop using the pkgsrc version since patching the build system to avoid using the included copy is a lot of effort.
2020-06-22py-game: Fix X11_TYPE=native and python27 build under NetBSD 9ryoon2-5/+10
* Detect libX11 library in /usr/X11R7 too. * And this change does not break python37 build.
2020-06-22devel/guile-bytestructures: Update to 1.0.7nikita2-7/+7
Changelog: * Includes a cross-compilation fix.
2020-06-21mk/haskell.mk: fix PLIST generation for Haskell packagesrillig2-8/+8
The package textproc/hs-cgrep does not install a Haskell library. This was unexpected to mk/haskell.mk, which generated an obviously wrong PLIST file for that package, and for 3 other packages. Noticed by wiz.
2020-06-20py-ipykernel: updated to 5.3.0adam3-8/+11
5.3.0 Adds support for Trio event loops and has some bug fixes. - Fix ipython display imports - Skip test_unc_paths if OS is not Windows - Allow interrupting input() on Windows, as part of effort to make pdb interruptible - Add Trio Loop - Flush from process even without newline
2020-06-20py-restructuredtext_lint: updated to 1.3.1adam2-10/+7
1.3.1: Removed `.pyc` files from distribution.
2020-06-20py-google-api-core: updated to 1.21.0adam2-7/+7
1.21.0: Features allow credentials files to be passed for channel creation
2020-06-20py-xdis: updated to 4.7.0adam3-8/+11
4.7.0: Routines for extracting line and offset information from code objects was added.
2020-06-20py-hypothesis: updated to 4.57.1adam3-8/+12
4.57.1: This patch improves the type hints and documentation for the django extra. There is no runtime change. 4.57.0: This release improves support for the SupportsOp protocols from the typing module when using on from_type() as outlined in issue 2292. The following types now generate much more varied strategies when called with from_type(): typing.SupportsAbs typing.SupportsBytes typing.SupportsComplex typing.SupportsInt typing.SupportsFloat typing.SupportsRound Note that using from_type() with one of the above strategies will not ensure that the the specified function will execute successfully (ie : the strategy returned for from_type(typing.SupportsAbs) may include NaNs or things which cause the abs() function to error. ) 4.56.3: This release fixes a small internal bug in shrinking which could have caused it to perform slightly more tests than were necessary. Fixing this shouldn’t have much effect but it will make shrinking slightly faster. 4.56.2: This release removes an internal heuristic that was no longer providing much benefit. It is unlikely that there will be any user visible effect. 4.56.1: This release further improves the optimisation algorithm for targeted property-based testing. 4.56.0: This release enables deprecation warnings even when the verbosity setting is quiet, in preparation for Hypothesis 5.0. Warnings can still be filtered by the standard mechanisms provided in the standard-library warnings module. 4.55.4: This release improves Hypothesis’s management of the set of test cases it tracks between runs. It will only do anything if you have Phase.target enabled and an example database set. In those circumstances it should result in a more thorough and faster set of examples that are tried on each run. 4.55.3: This release makes Hypothesis better at generating test cases where generated values are duplicated in different parts of the test case. This will be especially noticeable with reasonably complex values, as it was already able to do this for simpler ones such as integers or floats. 4.55.2: This release expands the set of test cases that Hypothesis saves in its database for future runs to include a representative set of “structurally different” test cases - e.g. it might try to save test cases where a given list is empty or not. Currently this is unlikely to have much user visible impact except to produce slightly more consistent behaviour between consecutive runs of a test suite. It is mostly groundwork for future improvements which will exploit this functionality more effectively. 4.55.1: This patch fixes issue 2257, where from_type() could incorrectly generate bytestrings when passed a generic typing.Sequence such as Sequence[set]. 4.55.0: This release adds database support for targeted property-based testing, so the best examples based on the targeting will be saved and reused between runs. This is mostly laying groundwork for future features in this area, but will also make targeted property-based tests more useful during development, where the same tests tend to get run over and over again. If max_examples is large, this may increase memory usage significantly under some circumstances, but these should be relatively rare. This release also adds a dependency on the sortedcontainers package. 4.54.2: This release improves the optimisation algorithm for targeted property-based testing, so that it will find higher quality results more reliably. Specifically, in cases where it would previously have got near a local optimum, it will now tend to achieve the locally optimal value. 4.54.1: This release is mostly internal changes in support of better testing of the core engine. You are unlikely to see much effect, although some internal heuristics have changed slightly. 4.54.0: This release adds a dedicated phase for targeted property-based testing, and (somewhat) improves the targeting algorithm so that it will find higher quality results more reliably. This comes at a cost of making it more likely to get stuck in a local optimum.
2020-06-19py-requests: updated to 2.24.0adam3-18/+18
2.24.0: Improvements pyOpenSSL TLS implementation is now only used if Python either doesn’t have an ssl module or doesn’t support SNI. Previously pyOpenSSL was unconditionally used if available. This applies even if pyOpenSSL is installed via the requests[security] extra Redirect resolution should now only occur when allow_redirects is True. No longer perform unnecessary Content-Length calculation for requests that won’t use it.
2020-06-19kdiff3: update to 1.8.2gutteridge10-363/+25
Change log (which may be incomplete): Version 1.8.2 - 2020-03-29 =========================== Bug 411472 Allowing editing of blank lines and don't mark newly intserted lines as a confilict 2ba20222 - Remove broken attempt to optimize drawing on horizonal scroll. Bug 418813 - Fix line numbers not shown. Use QString::number directly not through a format string. 11e93232 - Correcly support "Print Current Page" 64804a64 - Don't attempt to free nullptr in SourceData::FileData::reset() f4c66ace - Make Preferance dialog panes scrollable if too large to fit on screen. de06e561 - Fix dialog filter on windows. e8d06774 - Switch to QElapsedTime for timing avoids explictly undefined behavior inside qt if time is changed. 05e2d6fb - Fix sync mode. f9bd88a1 - Make matching in CvsIngnoreList always honor bCaseSensitive setting. 418ea78c - Don't use temporary with QLatin1String constructor strange things will happen. b058c060 - ignore over size cvsignore files Bug 410962 - Fix '-L' parameter handling b4b2c970 - Restore acciedently deleted --auto option Bug 411602 - Fixing missing menu items also resolves a potiential crash in MergeResultWindow::slotUpdateAvailabilities (Bug 407745). d4239b92 - Prevent intermient crash during reload/refresh Bug 410008 - Show diff for empty/missing files. 3bb755c5 - Don't give false error when comparing empty folders Bug 408991 - 4ad69790,0737cc3e,0402f84a - Close files when not in use - Fixes "Too many open files" bug. Bug 407829 - Avoid crash when recieving mouse or key events during earily startup. cc6d76e3 - Don't try to manually build url if parent is not set. 85052379 - Fix crash when canceling by using only one event loop in ProgressDialog. d151f151 - Don't append to already complete url. d3cb2def - Fix manual url building in FileAccess::setFromUdsEntry - scheme should not change now. Bug 405918 - Fix craft install instructions for windows Bug 411586 - Fix crash in OptionDialog::slotApply() Bug 407745 - Fix crash in MergeResultWindow::slotUpdateAvailabilities Bug 407894,399070 - Fixed redraw for horizonal scrolling.
2020-06-19boost: Fix graphics/krita-4.3.0 buildryoon1-1/+2
2020-06-19catch2: update to 2.12.2.wiz2-7/+7
## 2.12.2 ### Fixes * Fixed compilation failure if `is_range` ADL found deleted function (#1929) * Fixed potential UB in `CAPTURE` if the expression contained non-ASCII characters (#1925) ### Improvements * `std::result_of` is not used if `std::invoke_result` is available (#1934) * JUnit reporter writes out `status` attribute for tests (#1899) * Suppresed clang-tidy's `hicpp-vararg` warning (#1921) * Catch2 was already suppressing the `cppcoreguidelines-pro-type-vararg` alias of the warning
2020-06-19sqlite3: updated to 3.32.3adam1-5/+5
3.32.3: Various minor bug fixes
2020-06-18py-faker: updated to 4.1.1adam3-8/+41
4.1.1: * Add ``date_time`` providers for ``cs_CZ``, ``de_AT``, ``es_ES``, ``it_IT``, ``sk_SK``, ``tr_TR``. * Add prefix support to BarcodeProvider. * Fix company format for ``hy_AM`` provider. * Add .uk email providers and TLDs for ``en_GB``. * Add ``language_name`` generator. * Add ``pytimezone`` generator returning ``tzinfo`` objects. * Add ``es_ES`` currency provider.
2020-06-18nss: Update to 3.53.1ryoon2-7/+7
Changelog: Bugs fixed in NSS 3.53.1 - Bug 1631597 (CVE-2020-12402) - Use constant-time GCD and modular inversion in MPI.
2020-06-18Fix off-by-one for last line of input diff.nat1-2/+2
2020-06-18Use secondary buffer as an intermediatory to fix compilation with SSP_FORTIFY.nat1-12/+8
2020-06-18lang/rails60: update to 6.0.3.2taca5-25/+25
Update Ruby on Rails to 6.0.3.2. www/ruby-actionpack60 is the really updated package and other packages have no change except version. CHANGELOG of www/ruby-actionpack60 is here: ## Rails 6.0.3.2 (June 17, 2020) ## * [CVE-2020-8185] Only allow ActionableErrors if show_detailed_exceptions is enabled
2020-06-18bmake: Fix match for bootstrap pdksh.jperkin1-2/+2
When bmake is built during bootstrap it's using a temporary prefix, so matching against LOCALBASE doesn't work.
2020-06-18Avoid writing empty output diffs.nat1-6/+10
2020-06-17Another attempt to fix errors with SSP_FORTIFY set. Limit the size ofnat1-6/+7
copied strings with strncpy(3).
2020-06-17Add extra padding for characters per line. This should avoid errors withnat1-1/+2
gcc 8.4 and SSP.
2020-06-17Exclude lines that are not part of the diff better.nat2-12/+7
Simplify file read function. Bump diffbreaker version.
2020-06-17Fix errors when compiling with __SSP_FORTIFY_LEVEL > 1.nat1-3/+6
Found by wiz@.
2020-06-17Revbump Go packages after Go 1.14.4 update.bsiegert93-176/+186
2020-06-17py-more-itertools: updated to 8.4.0adam2-7/+7
8.4.0 * New itertools * :func:`mark_ends` * :func:`is_sorted` * Changes to existing itertools: * :func:`islice_extended` can now be used with real slices * The implementations for :func:`filter_except` and :func:`map_except` were improved * Other changes * Automated tests now enforce code style (using `black <https://github.com/psf/black>`__) * The various signatures of :func:`islice_extended` and :func:`numeric_range` now appear in the docs * The test configuration for mypy was updated
2020-06-16py-test-cov: updated to 2.10.0adam2-7/+7
2.10.0: Improved the --no-cov warning. Now it's only shown if --no-cov is present before --cov. Removed legacy pytest support. Changed setup.py so that pytest>=4.6 is required.
2020-06-16bump PKGREVISION for default options changescole1-1/+2
2020-06-16py-llvmlite: updated to 0.33.0adam2-7/+7
v0.33.0: This release upgrades to LLVM 9 and drops support for older LLVM versions. Pull requests: * Fix CUDA with LLVM9 * Fix meta.yaml * buildscripts: Unpin wheel * add python_requires to setup.py * Adds override for LLVM version check, re-formats docs. * Add FAQ entry on LLVM version support. * Trove classifiers may be out of date. * llvmlite wheel building fixes * Update the release date * Upgrade to LLVM9 * Allow instructions to be removed from blocks
2020-06-16include examples in default packagescole1-2/+2
2020-06-16include MAKE environment when building docsscole1-2/+2
2020-06-16libmaa: Limit hostname to 64 characters to avoid possible truncationleot3-2/+20
Discussed and ok <cheusov> PKGREVISION++
2020-06-16py-pyutil, passphrase: Add CONFLICTS entry.nikita1-1/+3
2020-06-16libgnt: add missing gtk-doc tool dependencywiz1-1/+3
2020-06-15p5-Moo: remove bsdtar from EXTRACT_USING, not needed any longerwiz1-3/+1
2020-06-15devel/RE-flex: import RE-flex 2.0.1scole11-1/+1083
The regex-centric, fast lexical analyzer generator for C++ with full Unicode support. Faster than Flex and other regex matchers. Accepts Flex specifications. Generates reusable source code that is easy to understand. Easily integrates with Bison and other parsers. Includes a fast stand-alone regex engine and library.
2020-06-14devel/hoe: add USE_LANGUAGEStaca1-1/+3
Add "USE_LANGUAGES= # none".
2020-06-14devel/ruby-thrift_client: update to 0.11.0taca4-18/+13
Update ruby-thrift_client to 0.11.0. pkgsrc changes: * Add "USE_LANGUAGES= # none". * Do not include libthrift/buildlink3.mk. v0.11.0 Update thrift dep to 0.11.0 v0.10.0 Update thrift dep to 0.10.0 and fix broken tests v0.9.3 Remove dependency on Mongrel Allow users to create wrapped exceptions eagerly v0.9.2 simply show the connection string on NoServersAvailable v0.9.1 fix infinite connection retry v0.9.0 upgrade to thrift 0.9.0 v0.8.3 reduce object churn guard against socket misalignment errors v0.8.2 Connect errors now mark servers down for _server_retry_period_. Added support for cached connections to amortize connection costs. v0.8.1 Fixed permissions? v0.8.0 Update to thrift 0.8.0