Commit graph

335231 commits

Author SHA1 Message Date
gutteridge
0ebfd75129 lxhotkey: add version 0.1.1
LXHotkey is a universal application for the Lightweight X11 Desktop
Environment (LXDE) which allows viewing and changing global keyboard
shortcuts for window manager actions, including ones to start applications.
2021-03-18 00:21:26 +00:00
gutteridge
c759ce60ee Adjust libfm bl3 to include libexif, and rev bump dependencies
Packages that depend on libfm and use libtool need to link against
libexif, so reflect that in libfm's buildlink3.mk. (This will be more
relevant when lxhotkey is added. lxpanel does not directly depend on
libexif, so that's corrected here, too.)
2021-03-18 00:12:23 +00:00
markd
087652f5cf purpose: not in wip 2021-03-17 22:41:06 +00:00
markd
b052897830 kde: note use of kf5.mk by devel/purpose 2021-03-17 22:39:00 +00:00
markd
3b8318741b add purpose 2021-03-17 22:36:53 +00:00
markd
cb2799edd4 devel: +purpose 2021-03-17 22:35:21 +00:00
markd
961469f5fa purpose: add version 5.70.0
This framework offers the possibility to create integrate services and actions
on any application without having to implement them specifically. Purpose will
offer them mechanisms to list the different alternatives to execute given the
requested action type and will facilitate components so that all the plugins
can receive all the information they need.
2021-03-17 22:33:37 +00:00
wiz
b0cac0fe65 unifraktur-ttf: remove
This is already in pkgsrc as UnifrakturMaguntia-ttf.
And I imported it there last year.
Seems I liked this font so much I thought it should be in pkgsrc twice!
2021-03-17 21:33:41 +00:00
wiz
5396c68da0 UnifrakturMaguntia-ttf: merge improvements from unifraktur-ttf 2021-03-17 21:32:25 +00:00
prlw1
c7a86c33ac doc: Updated biology/openbabel to 3.1.1nb5 2021-03-17 18:59:24 +00:00
prlw1
ab78acfaf5 openbabel: make buildlink3.mk match Makefile and require eigen3
The dependency is visible for packages using the LBFGS solver.
2021-03-17 18:58:57 +00:00
prlw1
3fb9b1c967 doc: Updated math/eigen3 to 3.3.9 2021-03-17 17:20:33 +00:00
prlw1
4d41895019 Update eigen3 to 3.3.9
Many fixes including a gcc10 compilation issue. Full list at
https://eigen.tuxfamily.org/index.php?title=ChangeLog#Eigen_3.3.9
2021-03-17 17:20:00 +00:00
nia
32d2d68734 doc: Updated chat/srain to 1.2.0 2021-03-17 15:33:02 +00:00
nia
91ee2cee2f srain: update to 1.2.0
2021-02-28 Version 1.2.0
========================

- Features:

  - Switch build system from Make to Meson
  - Add FreeBSD implementations for ``srn_get_executable_{path,dir}``,
    thanks to :people:`wahjava`
  - Add ``/quote`` command for sending special IRC commands,
    thanks to :people:`hno`
  - Add support for hiding server buffer


- Bug fixes:

   - Fix an use-after-free BUG
   - Fix implicit declaration error on some systems,
     thanks to :people:`lgbaldoni`
2021-03-17 15:32:24 +00:00
nia
780a46ccc3 doc: Updated emulators/libretro-stella to 6.5.2 2021-03-17 15:20:50 +00:00
wiz
8a29b4c585 jpeg: improve DESCR 2021-03-17 15:18:40 +00:00
nia
144cce4400 doc: Updated emulators/stella to 6.5.2 2021-03-17 15:17:34 +00:00
nia
3040611fdc stella: Update to 6.5.2
6.5.1 to 6.5.2 (February 25, 2021)

  * Fixed broken Driving Controller support for Stelladaptor/2600-daptor
    devices.

  * Fixed missing QuadTari option in UI.

  * Improved QuadTari timing.

  * Added CPU usage stats to ARM cart classes debug widgets.
2021-03-17 15:17:03 +00:00
ryoon
0d58b56a0c msmtp: Update DESCR
msmtp-1.8.15 supports XOATH2 too. And it works for me.
2021-03-17 14:20:16 +00:00
ryoon
ee4e495a97 doc: Updated mail/msmtp to 1.8.15 2021-03-17 14:12:29 +00:00
ryoon
399fe09c8e msmtp: Update to 1.8.15
Changelog:
Version 1.8.15:
- Added support for SCRAM-SHA-256 authentication via GNU SASL

Version 1.8.14:
- Added support for libtls as an alternative to GnuTLS

Version 1.8.13:
- Added support for XOAUTH2, the predecessor of OAUTHBEARER.
- The passwordeval command can now handle very long input, which can be
  necessary for OAUTHBEARER and XOAUTH2.
- GnuTLS >= 3.4 is required
2021-03-17 14:11:39 +00:00
wiz
41103ee9ef doc: Updated devel/py-hypothesis to 6.8.1 2021-03-17 13:13:42 +00:00
wiz
ba48b24523 py-hypothesis: update to 6.8.1.
6.8.1 - 2021-03-14

This patch lays more groundwork for filter rewriting (issue #2701).
There is no user-visible change… yet.

6.8.0 - 2021-03-11

This release registers the remaining builtin types, and teaches
from_type() to try resolving ForwardRef and Type references to
built-in types.

6.7.0 - 2021-03-10

This release teaches RuleBasedStateMachine to avoid checking
invariant()s until all initialize() rules have been run. You can
enable checking of specific invariants for incompletely initialized
machines by using @invariant(check_during_init=True) (issue #2868).

In previous versions, it was possible if awkward to implement this
behaviour using precondition() and an auxiliary variable.

6.6.1 - 2021-03-09

This patch improves the error message when from_type() fails to
resolve a forward-reference inside a typing.Type such as Type["int"]
(issue #2565).

6.6.0 - 2021-03-07

This release makes it an explicit error to apply invariant() to a
rule() or initialize() rule in stateful testing. Such a combination
had unclear semantics, especially in combination with precondition(),
and was never meant to be allowed (issue #2681).

6.5.0 - 2021-03-07

This release adds the explain phase, in which Hypothesis attempts
to explain why your test failed by pointing to suspicious lines of
code (i.e. those which were always, and only, run on failing inputs).
We plan to include “generalising” failing examples in this phase
in a future release (issue #2192).

6.4.3 - 2021-03-04

This patch fixes issue #2794, where nesting deferred() strategies
within recursive() strategies could trigger an internal assertion.
While it was always possible to get the same results from a more
sensible strategy, the convoluted form now works too.

6.4.2 - 2021-03-04

This patch fixes several problems with mypy when –no-implicit-reexport
was activated in user projects.

Thanks to Nikita Sobolev for fixing issue #2884!

6.4.1 - 2021-03-04

This patch fixes an exception that occurs when using type unions
of the typing_extensions Literal backport on Python 3.6.

Thanks to Ben Anhalt for identifying and fixing this bug.

6.4.0 - 2021-03-02

This release fixes stateful testing methods with multiple precondition()
decorators. Previously, only the outer-most precondition was checked
(issue #2681).

6.3.4 - 2021-02-28

This patch refactors some internals of RuleBasedStateMachine. There
is no change to the public API or behaviour.

6.3.3 - 2021-02-26

This patch moves some internal code, so that future work can avoid
creating import cycles. There is no user-visible change.

6.3.2 - 2021-02-25

This patch enables register_type_strategy() for subclasses of
typing.TypedDict. Previously, from_type() would ignore the registered
strategy (issue #2872).

Thanks to Ilya Lebedev for identifying and fixing this bug!

6.3.1 - 2021-02-24

This release lays the groundwork for automatic rewriting of simple
filters, for example converting integers().filter(lambda x: x > 9)
to integers(min_value=10).

Note that this is not supported yet, and we will continue to
recommend writing the efficient form directly wherever possible -
predicate rewriting is provided mainly for the benefit of downstream
libraries which would otherwise have to implement it for themselves
(e.g. pandera and icontract-hypothesis). See issue #2701 for details.

6.3.0 - 2021-02-20

The Hypothesis pytest plugin now requires pytest version 4.6 or
later. If the plugin detects an earlier version of pytest, it will
automatically deactivate itself.

(4.6.x is the earliest pytest branch that still accepts community
bugfixes.)

Hypothesis-based tests should continue to work in earlier versions
of pytest, but enhanced integrations provided by the plugin (such
as --hypothesis-show-statistics and other command-line flags) will
no longer be available in obsolete pytest versions.
2021-03-17 13:13:31 +00:00
wiz
311d04111c doc: Updated lang/mono to 6.12.0.122 2021-03-17 12:49:10 +00:00
wiz
2998f00a95 mono: update to 6.12.0.122.
This is a security release which addresses CVE-2021-24112
2021-03-17 12:48:59 +00:00
wiz
248e9f638e doc: Updated graphics/openexr to 2.5.5 2021-03-17 11:46:30 +00:00
wiz
a5b9893e6a doc: Updated graphics/ilmbase to 2.5.5 2021-03-17 11:46:20 +00:00
wiz
c4917d7080 ilmbase, openexr: update to 2.5.5
## Version 2.5.5 (February 12, 2021)

Patch release with various bug/sanitizer/security fixes, primarily
related to reading corrupted input files, but also a fix for universal
build support on macOS.

Specific OSS-fuzz issues include:

* OSS-fuzz [#30291](https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=30291)
* OSS-fuzz [#29106](https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=29106)
* OSS-fuzz [#28971](https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=28971)
* OSS-fuzz [#29829](https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=29829)
* OSS-fuzz [#30121](https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=30121)

### Merged Pull Requests

* [#914](https://github.com/AcademySoftwareFoundation/openexr/pull/914) additional verification of DWA data sizes
* [#910](https://github.com/AcademySoftwareFoundation/openexr/pull/910) update tileoffset sanitycheck to handle ripmaps
* [#903](https://github.com/AcademySoftwareFoundation/openexr/pull/903) prevent overflows by using Int64 for all vars in DWA initialize
* [#901](https://github.com/AcademySoftwareFoundation/openexr/pull/901) Use size_t for DWA buffersize calculation
* [#897](https://github.com/AcademySoftwareFoundation/openexr/pull/897) prevent overflow in RgbaFile cachePadding
* [#896](https://github.com/AcademySoftwareFoundation/openexr/pull/896) add buffer size validation to FastHuf decode
* [#893](https://github.com/AcademySoftwareFoundation/openexr/pull/893) Include <limits> where required by newer compilers
* [#889](https://github.com/AcademySoftwareFoundation/openexr/pull/889) Add explicit #include <limits> for numeric_limits
* [#854](https://github.com/AcademySoftwareFoundation/openexr/pull/854) Fix Apple Universal 2 (arm64/x86_64) builds
2021-03-17 11:46:08 +00:00
wiz
bff5e76b3f doc: Updated devel/py-hg-evolve to 10.3.0 2021-03-17 11:24:52 +00:00
wiz
e02ccef972 py-hg-evolve: update to 10.3.0.
This is a feature release that comes with a variety of improvements and
bugfixes. Check the changelog for details. The most notable changes
are: improved rewind logic in cases involving folds, an experimental
ability to perform evolution in-memory (only on Mercurial 5.6 and
newer), improved content-divergence resolution logic in cases involving
parent changes.
2021-03-17 11:24:42 +00:00
wiz
87f421407d doc: Updated devel/py-mercurial to 5.7.1 2021-03-17 11:24:02 +00:00
wiz
7d89e56ccc py-mercurial: update to 5.7.1.
Changes not found.
2021-03-17 11:23:52 +00:00
nia
b88e948a5c qmmp: Add LIBOSSAUDIO on NetBSD. Makes OSS output plugin work. 2021-03-17 09:57:54 +00:00
wiz
fa89aaaeb4 doc: Updated x11/xkbcomp to 1.4.5 2021-03-17 08:19:02 +00:00
wiz
d0963df331 xkbcomp: update to 1.4.5.
No exciting changes here. If anything, this release is less exciting than
previous versions.

The default keymaps now all ship with high keycodes which the server won't
support and and they also include keycodes that aren't mapped to any
keysyms. So screaming multiple warnings at every user on every keymap
compile about this is rather pointless and generates unwanted bugs.

These blood-curdling, adrenaline-laden warnings have been downgraded to mere
informational messages. And we all know no-one reads those.

Peter Hutterer (7):
      Remove trailing whitespaces
      gitlab CI: add basic build test
      Replace WARN[1-9], ERROR[1-9], etc. with their unnumbered version
      Downgrade the warning for missing symbols to info
      keycodes: downgrade the >255 keycode warning to an info
      keycodes: compress the high keycode warning
      xkbcomp 1.4.5
2021-03-17 08:18:53 +00:00
adam
683a0d49a2 Updated databases/sqlite3, databases/sqlite3-docs, databases/sqlite3-tcl, devel/lemon 2021-03-17 06:25:20 +00:00
adam
de95ef5a77 sqlite3: updated to 3.35.1
3.35.1:

Fix a bug in the new DROP COLUMN feature when used on columns that are indexed and that are quoted in the index definition.
Documentation improvements.
2021-03-17 06:24:42 +00:00
fox
2227059685 doc: Updated emulators/cannonball to 0.31 2021-03-16 23:52:16 +00:00
fox
c705706aca emulators/cannonball: Updates to 0.31
Changes since 0.3.2019102:

Maintenance Release

This release focuses on upgrading the libraries and compilation tools CannonBall
uses, as I hadn't maintained the codebase in a number of years. Most of these
changes will be invisible to most users. Right now, I'm trying to get the house
in order as opposed to add lots of wild new features! :)

  * [audio] Audio updates at the correct rate and resolves the longstanding
    issue with music and sound being very slightly 'off'
  * [roms] ROMs are now read by CRC 32 value. Filenames no longer matter - so
    long as they are present they can be renamed to anything.
  * [roms] Fixed expected Z80 rom file length
  * [controls] Start Button behaviour less 'sticky' and buggy
  * [controls] Analog axis for accelerate and brake can now be configured via
    the in-built menu system
  * [menu] Reduced delay when scrolling through menu with analog controls
  * [config] ROMs and save data can be relocated to separate locations
  * [bug fix] Time Trial mode no longer crashes if used as the first mode played
  * [timing] Code tries to use V-Sync for timing OR internal timing, as opposed
    to both at once
  * [source] SDL 2 used by default. SDL 1 removed from codebase. This appears to
    have fixed compatibility bugs for some people
  * [source] Added compatibility for upcoming SmartyPi hardware (Pi 4 based) to
    run on original arcade hardware
  * [source] A general clean-up in many areas
2021-03-16 23:51:48 +00:00
adam
9017aafbe6 Updated databases/openldap, databases/lmdb, devel/cmake 2021-03-16 19:51:07 +00:00
adam
e96d78a241 cmake: updated to 3.19.7
CMake 3.19.7
* Revert "Cray: Fix Cray compiler detection on new platforms"
* Xcode: Restore support for spaces in framework names
* cmGlobalVisualStudioVersionedGenerator: Clarify local variable name
* VS: Fix '-T version=14.28' under VS 16.9
* VS: Accept and translate '-T version=' values with three components
* Cray: Enable Cray compiler wrapper detection on all platforms
2021-03-16 19:50:30 +00:00
adam
52866a4eb2 openldap: updated to 2.4.58
OpenLDAP 2.4.58
Fixed slapd validity checks for issuerAndThisUpdateCheck
Fixed slapd to alloc new conn struct after freeing old one
Fixed slapd syncrepl to check all contextCSNs
Fixed slapd-bdb lockdetect config
2021-03-16 19:49:15 +00:00
gdt
19ff3df685 doc: Updated net/unison-snapshot to 2.51.3.72 2021-03-16 17:26:29 +00:00
gdt
6d61ebdf7b net/unison-snapshot: Update to 2.51.4rc2
Upstream NEWS: not actually provided but somehow I know it's bugfixes
and minor improvements since rc1.
2021-03-16 17:26:12 +00:00
fcambus
5c23f66b6e doc: Updated comms/qodem to 1.0.1 2021-03-16 17:00:51 +00:00
fcambus
27af600d45 qodem: update to 1.0.1.
qodem (1.0.1-1) unstable; urgency=low

  * Bug fixes
  * Linux console GPM mouse support
2021-03-16 17:00:40 +00:00
ryoon
098c0be464 qt5-qtlocation: Fix packaging under NetBSD 2021-03-16 16:43:03 +00:00
fcambus
6c18950749 doc: Updated textproc/lowdown to 0.8.3 2021-03-16 16:33:52 +00:00
fcambus
e91512c33d lowdown: update to 0.8.3.
Version 0.8.3, 2021-03-13

Several fixes to -Tlatex smart typography (single quotes and dashes). The
smart typography now handles single quotes within words. Lastly, fix a bug
where footnotes started at two instead of one.
2021-03-16 16:33:39 +00:00