Link [ pkgsrc | NetBSD | pkgsrc git mirror | PR fulltext-search | netbsd commit viewer ]


   
        usage: [branch:branch] [user:user] [path[@revision]] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN pkgtools/pkg)




switch to index mode

recent branches: MAIN (58m)  pkgsrc-2024Q1 (14d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (74d)  pkgsrc-2023Q3 (154d) 

2024-05-12 20:51:48 UTC Now

2023-03-02 06:24:33 UTC MAIN commitmail json YAML

emulators/hatari: Update to 2.4.1

Changes from 2.3.1:

Version 2.4.1 (2022-08-03)
--------------------------

Emulation improvements:
- Sound:
  - Much more precise function to convert CPU clocks to YM2149 clocks
    in the case where YM2149 doesn't use the same source clock as the CPU
    (fixes e.g. some STE sound glitches in BLSPLAY.TTP)
- Video:
  - Fix regression in TT mode: Update video counter again on each HBL
    (fixes e.g. Hextracker when run in TT mode)

Emulator improvements:
- DSP:
  - Avoid small extra overhead on non-Falcon machines when DSP config
    option is set
- Misc:
  - Fix memory leaks on PNG save and GEMDOS HD program load
  - All Hatari output (outside of debugger) uses now appropriate
    logging and trace functions so that they can be controlled
- VDI mode:
  - Fix: VDI width needs to be aligned to (at least) 16-pixels
  - Fix: a possible crash with (default) SMALL_MEM build config
    (when ST program sets a bad video base address)
- Statusbar:
  - Show "Linux" when running Linux directly with --lilo
- Debugger:
  - Fix: to duplicate symbol name removal
  - Fix: all IDE trace output did not go to trace file
  - Like with rest of debugger, profiler responses go
    now to stderr (not stdout)

Documentation:
- Document Hatari outputs and their controls in debugger manual

Version 2.4.0 (2022-07-09)
--------------------------

Removed features (that were marked as deprecated in earlier releases):
- Support for the SDL 1.2 library (i.e. SDL 2.x should be used instead)
- Support for building Hatari for Windows CE has been removed, too, since
  this was relying on version 1.2 of the SDL library.
- The old UAE CPU core (i.e. the new WinUAE CPU core is now always used)
- Python v2 support in Python scripts (Python 2 was end of life in 2020)

Emulation improvements:
- Internal timers:
  - Rewrite the internal timers used to emulate delays/events/mfp timers
    (gain ~10% on average, up to 60% in very specific cases)
- CPU:
  - Improve FPU emulation (exceptions, unimplemeted instructions, fsincos)
  - Improve FPU emulation in softfloat mode
  - Improve IPL timing update in various opcodes
  - Faster emulation of 68000 in cycle exact mode (gain ~7%)
- MFP:
  - Use the new internal timers for MFP timers
  - Improve accuracy when reading MFP's Timer Data Register
  - More accurate emulation by processing all internal timers first before
    reading/writing any MFP register (was previously delayed after processing
    the current CPU instruction, which was too late in some cases)
- Video:
- Fix position for detecting when VBLANK should be disabled in 50 Hz and 60 Hz
- DSP:
  - Improved interrupts handling and SSI (from Previous NeXT emulator)
- Sound:
  - Improve accuracy of YM2149's sample generation by using the main
    CPU clock as a reference for all timings (syncsquare effect as used
    in recent maxYMiser v1.53)
  - Use specific memory functions when doing DMA for STE and Falcon sound
    (don't generate bus error when pointed memory is not present)
  - Improve value of MFP GPIP bit 7 for DMA sound in the case of STE/TT
    (video mono XOR dma sound xsint)
  - Use 2 different signals SOUNDINT and SNDINT for Falcon (connected to
    MFP GPIP7 and MFP Timer A input)
- FDC:
  - Stall the CPU during 32 cycles when DMA FIFO is filled/transferred
- SCSI:
  - Improve MODE SENSE, add REPORT LUNS support
- IKBD:
  - support deltax/deltay in command $A (set mouse keycode mode)
    and threshold x/y in command $B (set mouse threshold)

Emulator improvements:
- TOS support:
  - Support 1024k EmuTOS images also on TT & Falcon
  - Add country code option to select EmuTOS language, keyboard
    layout and screen refresh rate on Mega/ST/STe machines (ones
    lacking NVRAM)
- MIDI support:
  - Fix: PortMidi rejects Hatari MIDI events
  - Fix: MIDI IRQ needs to be re-enabled on MIDI device change
    even when there's no reset
  - Support for matching PortMidi device name by prefix when
    there's no exact full match
- RS232:
  - The RS232 receiver code has been rewritten to use polling instead
    of using a thread. This should avoid deadlocks on BSD/macOS systems
    when shutting down or reconfiguring the RS232 settings.
- TT/Falcon:
  - Increase max TT-RAM amount to 1024 MiB
  - Separate config + CLI options to override NVRAM language and
    keyboard layout settings
  - NVRAM language default is taken from the LANG env variable
- Falcon:
  - Fix: restore zoom mode correctly when loading snapshots
  - Correct also smaller specified memory amounts to valid ones
  - Microphone emulation now uses SDL2 instead of PortAudio
- MegaSTE/TT:
  - Add VME/SCU registers "--vme <none|dummy>" access option
    (Linux needs "none" option and TOS v2 / v3 need "dummy" one
    until Hatari implements real VME/SCU register emulation)
- VDI mode:
  - Relax VDI mode width alignment from 128/planes to
    16/planes, and height alignment from 16 to 8 pixels
- SDL GUI:
  - Fix: ignore unrecognized events in file selector
    (buttons could be incorrectly shown as selected)
  - Fix: avoid key release event from SDL GUI closing leaking to emulation
  - Do VDI mode size changes in (faster) 16 pix increments,
    and prevent user seeing invalid VDI mode sizes
  - Fine-tune CPU dialog texts and keyboard shortcuts
- GEMDOS HD:
  - Fix: clear GEMDOS Fread / Fwrite errors
  - Fix: Allow GEMDOS tasks to use other tasks' file handles
- Command line:
  - Support "off" as alias for "none" when disabling DSP, FPU,
    Joysticks and VME, for consistency with HW on/off options
- NatFeats:
  - Fix: freeze with NF_STDERR when string is empty or unterminated
- Debugger:
  - Fix: profile header so that profile data post-processor knows how
    to parse built-in WinAUE CPU core ("uae") disassembly output, not
    just "ext" disassembler output
  - Repeat CPU & DSP "step" and "next" commands on Enter
  - Output PC location in CPU & DSP disassembly
  - More readable "variables" command output
  - Add "PConSymbol" variable for breaking on symbol addresses
  - Add "mmu" and "vme" options for "info" command
  - Add "scc" and "vme" (VME/SCU reg access) tracing support
  - Setting trace to "none" disables also xconout console output
    enabled by "os_base" trace option
  - "next subreturn" will run until current function returns,
    even if function calls other functions before that
  - Symbol loadind code is now shared between debugger "symbols"
    command & "gst2ascii" tool, and it can now read also long
    symbol names from Pure-C debug information
  - Auto-detection for whether section offsets should be used
    when loading symbol information
  - MIDI trace options are split to "midi" (device & MIDI events)
    and "midi_raw" (IRQ and register read/write access).  Trace
    logging added also for MIDI byte writes, not just reads
  - Trace options are listed in alphabetical order
  - Show loaded symbols in CPU core disassembly
- Windows:
  - Next/prev drive change buttons added to SDL GUI file select dialog

Build/configure:
- SMALL_MEM option is enabled by default

Tools:
- Add (SDL2 specific) "listkeys" key mapping helper back
- TOS boot tester: support 1024k EmuTOS images, misc fixes

Documentation:
- Compatibility updates, especially for 060 programs that need
  FPSP060.PRG for missing instructions emulation

Fixed demos:
- Hackabonds Demo (wrong vblank detection)
- We Were @ HD version under GEMDOS HD (file handle access)

Fixed programs:
- maxYMiser FM v1.53 by gwEn (support for syncsquare effect)

Fixed games:
- Chambers of Shaolin : DMA sound was wrong in STE mode with 1 MB RAM
  (mfp gpip bit 7)
- Super Hang On : fix flickering raster colors (bclr #0,$fffffa0f sometimes
  happened at the same time timer C expired)

(charlotte)

2023-03-02 06:21:07 UTC MAIN commitmail json YAML

devel/Makefile: sort

(wiz)

2023-03-02 06:20:33 UTC MAIN commitmail json YAML

py-maturin: not for python 2

(wiz)

2023-03-02 05:51:17 UTC MAIN commitmail json YAML

doc: Updated lang/qbe to 1.1

(charlotte)

2023-03-02 05:50:05 UTC MAIN commitmail json YAML

lang/qbe: Update to 1.1

Changes from 1.0:

- support for Apple ARM-based hardware (arm64_apple target)
- support for thread-local storage
- a new blit instruction to copy small aggregates
- a new hlt instruction to flag non-termination
- a new stack slot coalescing optimization

(charlotte)

2023-03-02 04:47:43 UTC MAIN commitmail json YAML

doc: Added games/cromagrally version 3.0.0

(charlotte)

2023-03-02 04:46:39 UTC MAIN commitmail json YAML

games/Makefile: + cromagrally

(charlotte)

2023-03-02 04:45:57 UTC MAIN commitmail json YAML

games/cromagrally: Import package

This is Pangea Software's Cro-Mag Rally updated to run on modern systems.

In Cro-Mag Rally you are a speed-hungry caveman named Brog who races through
the Stone, Bronze, and Iron Ages in primitive vehicles such as the Geode
Cruiser, Bone Buggy, Logmobile, Trojan Horse, and many others.  Brog has at
his disposal an arsenal of primitive weaponry ranging from Bone Bombs to
Chinese Bottle Rockets and Heat Seeking Homing Pigeons.

In addition to single-player racing where one player races against the
computer, there are also several different multi-player modes including Tag,
Capture the Flag, and Survival. Up to four players can play on a single
computer in split-screen mode.

(charlotte)

2023-03-02 04:15:49 UTC MAIN commitmail json YAML

doc: Added games/ottomatic version 4.0.1

(charlotte)

2023-03-02 04:14:53 UTC MAIN commitmail json YAML

games/Makefile: + ottomatic

(charlotte)

2023-03-02 04:14:15 UTC MAIN commitmail json YAML

games/ottomatic: Import package

This is Pangea Software's Otto Matic updated to run on modern desktop
platforms.

The year is 1957 and a fleet of flying saucers from Planet X have come to
Earth. These saucers are under the control of the evil Brain Aliens who are
abducting helpless human beings to become slaves of The Giant Brain.

You are Otto Matic, the robot who is given the job of saving Earth from the
clutches of The Giant Brain from Planet X. You must rescue as many humans as
you can while defeating the Brain Aliens and all of their evil followers.
Your mission will take you to strange and fantastic alien worlds which are
often treacherous and will require Otto to perform amazing feats.

(charlotte)

2023-03-02 03:46:51 UTC MAIN commitmail json YAML

doc: Added games/openjazz version 20190106

(charlotte)

2023-03-02 03:45:26 UTC MAIN commitmail json YAML

games/Makefile: + openjazz

(charlotte)

2023-03-02 03:44:39 UTC MAIN commitmail json YAML

games/openjazz: Import package

OpenJazz is a free, open-source version of the classic Jazz Jackrabbit
games.

OpenJazz can be compiled on a wide range of operating systems, including
Windows, macOS, GNU/Linux and *BSD. Also ports are available for some
homebrew platforms, for example Wii and PSP.

To play, you will need the files from one of the original games.

(charlotte)

2023-03-02 03:13:54 UTC MAIN commitmail json YAML

2023-03-02 01:13:38 UTC MAIN commitmail json YAML

2023-03-01 23:49:41 UTC MAIN commitmail json YAML

doc: Updated devel/mgdiff to 1.0.1

(vins)

2023-03-01 23:48:00 UTC MAIN commitmail json YAML

devel/mgdiff: update to mgdiff 1.0.1.

Update package using Debian's patches.

## Changes (local)

* Introduce a couple useful scripts based on mgdiff (also pulled from
  Debian):

  - rmgdiff allows the user to recursively diff two directories using
    any graphical diff viewer -- including mgdiff.

  - cvsmgdiff allows the user to compare a revision in a CVS archive
    with what is currently checked out.

* Switch to an internally managed install target.
* Make sure package links against libXpm.
* Add a mgdiff.desktop application file and a suitable pixmap.
* Address compiler warnings when building on Linux.
* Update DESCR.
* Add README.

## Changes (upstream)

* Add file menu entries for "Save as Left..."
  and "Save as Right...". Includes increment of APP_DEFAULTS_VERSION
  number, mods to Mgdiff.ad and checks for correct app-default value.
* Allow saving files with unselected blocks.
* Add ability to select both sides by clicking with the middle button.
  When both sides are selected the two blocks are written to the output
  file using markings similar to the markings CVS palces in a file when
  a merge goes wrong.
* Update the man page to reflect the above changes.
* Fix Ctrl-U/Ctrl-P handling.
* Fix UTF8 handling.
* Replace all usage of sprintf() with snprintf().
* Fix a couple of missing includes.
* Fix building on SUN Solaris.
* Clean compiler warnings.

(vins)

2023-03-01 20:47:47 UTC MAIN commitmail json YAML

doc: Updated chat/matrix-synapse to 1.77.0

(js)

2023-03-01 20:47:37 UTC MAIN commitmail json YAML

Update chat/matrix-synapse to 1.77.0

Synapse 1.77.0 (2023-02-14)
===========================

No significant changes since 1.77.0rc2.

Synapse 1.77.0rc2 (2023-02-10)
==============================

Bugfixes
--------

- Fix bug where retried replication requests would return a failure. Introduced in v1.76.0. ([\#15024](https://github.com/matrix-org/synapse/issues/15024))

Internal Changes
----------------

- Prepare for future database schema changes. ([\#15036](https://github.com/matrix-org/synapse/issues/15036))

Synapse 1.77.0rc1 (2023-02-07)
==============================

Features
--------

- Experimental support for [MSC3952](https://github.com/matrix-org/matrix-spec-proposals/pull/3952): intentional mentions. ([\#14823](https://github.com/matrix-org/synapse/issues/14823), [\#14943](https://github.com/matrix-org/synapse/issues/14943), [\#14957](https://github.com/matrix-org/synapse/issues/14957), [\#14958](https://github.com/matrix-org/synapse/issues/14958))
- Experimental support to suppress notifications from message edits ([MSC3958](https://github.com/matrix-org/matrix-spec-proposals/pull/3958)). ([\#14960](https://github.com/matrix-org/synapse/issues/14960), [\#15016](https://github.com/matrix-org/synapse/issues/15016))
- Add profile information, devices and connections to the command line [user data export tool](https://matrix-org.github.io/synapse/v1.77/usage/administration/admin_faq.html#how-can-i-export-user-data). ([\#14894](https://github.com/matrix-org/synapse/issues/14894))
- Improve performance when joining or sending an event in large rooms. ([\#14962](https://github.com/matrix-org/synapse/issues/14962))
- Improve performance of joining and leaving large rooms with many local users. ([\#14971](https://github.com/matrix-org/synapse/issues/14971))

Bugfixes
--------

- Fix a bug introduced in Synapse 1.53.0 where `next_batch` tokens from `/sync` could not be used with the `/relations` endpoint. ([\#14866](https://github.com/matrix-org/synapse/issues/14866))
- Fix a bug introduced in Synapse 1.35.0 where the module API's `send_local_online_presence_to` would fail to send presence updates over federation. ([\#14880](https://github.com/matrix-org/synapse/issues/14880))
- Fix a bug introduced in Synapse 1.70.0 where the background updates to add non-thread unique indexes on receipts could fail when upgrading from 1.67.0 or earlier. ([\#14915](https://github.com/matrix-org/synapse/issues/14915))
- Fix a regression introduced in Synapse 1.69.0 which can result in database corruption when database migrations are interrupted on sqlite. ([\#14926](https://github.com/matrix-org/synapse/issues/14926))
- Fix a bug introduced in Synapse 1.68.0 where we were unable to service remote joins in rooms with `@room` notification levels set to `null` in their (malformed) power levels. ([\#14942](https://github.com/matrix-org/synapse/issues/14942))
- Fix a bug introduced in Synapse 1.64.0 where boolean power levels were erroneously permitted in [v10 rooms](https://spec.matrix.org/v1.5/rooms/v10/). ([\#14944](https://github.com/matrix-org/synapse/issues/14944))
- Fix a long-standing bug where sending messages on servers with presence enabled would spam "Re-starting finished log context" log lines. ([\#14947](https://github.com/matrix-org/synapse/issues/14947))
- Fix a bug introduced in Synapse 1.68.0 where logging from the Rust module was not properly logged. ([\#14976](https://github.com/matrix-org/synapse/issues/14976))
- Fix various long-standing bugs in Synapse's config, event and request handling where booleans were unintentionally accepted where an integer was expected. ([\#14945](https://github.com/matrix-org/synapse/issues/14945))

Internal Changes
----------------

- Add missing type hints. ([\#14879](https://github.com/matrix-org/synapse/issues/14879), [\#14886](https://github.com/matrix-org/synapse/issues/14886), [\#14887](https://github.com/matrix-org/synapse/issues/14887), [\#14904](https://github.com/matrix-org/synapse/issues/14904), [\#14927](https://github.com/matrix-org/synapse/issues/14927), [\#14956](https://github.com/matrix-org/synapse/issues/14956), [\#14983](https://github.com/matrix-org/synapse/issues/14983), [\#14984](https://github.com/matrix-org/synapse/issues/14984), [\#14985](https://github.com/matrix-org/synapse/issues/14985), [\#14987](https://github.com/matrix-org/synapse/issues/14987), [\#14988](https://github.com/matrix-org/synapse/issues/14988), [\#14990](https://github.com/matrix-org/synapse/issues/14990), [\#14991](https://github.com/matrix-org/synapse/issues/14991), [\#14992](https://github.com/matrix-org/synapse/issues/14992), [\#15007](https://github.com/matrix-org/synapse/issues/15007))
- Use `StrCollection` to avoid potential bugs with `Collection[str]`. ([\#14922](https://github.com/matrix-org/synapse/issues/14922))
- Allow running the complement tests suites with the asyncio reactor enabled. ([\#14858](https://github.com/matrix-org/synapse/issues/14858))
- Improve performance of `/sync` in a few situations. ([\#14908](https://github.com/matrix-org/synapse/issues/14908), [\#14970](https://github.com/matrix-org/synapse/issues/14970))
- Document how to handle Dependabot pull requests. ([\#14916](https://github.com/matrix-org/synapse/issues/14916))
- Fix typo in release script. ([\#14920](https://github.com/matrix-org/synapse/issues/14920))
- Update build system requirements to allow building with poetry-core 1.5.0. ([\#14949](https://github.com/matrix-org/synapse/issues/14949), [\#15019](https://github.com/matrix-org/synapse/issues/15019))
- Add an [lnav](https://lnav.org) config file for Synapse logs to `/contrib/lnav`. ([\#14953](https://github.com/matrix-org/synapse/issues/14953))
- Faster joins: Refactor internal handling of servers in room to never store an empty list. ([\#14954](https://github.com/matrix-org/synapse/issues/14954))
- Faster joins: tag `v2/send_join/` requests to indicate if they served a partial join response. ([\#14950](https://github.com/matrix-org/synapse/issues/14950))
- Allow running `cargo` without the `extension-module` option. ([\#14965](https://github.com/matrix-org/synapse/issues/14965))
- Preparatory work for adding a denormalised event stream ordering column in the future. Contributed by Nick @ Beeper (@fizzadar). ([\#14979](https://github.com/matrix-org/synapse/issues/14979), [9cd7610](https://github.com/matrix-org/synapse/commit/9cd7610f86ab5051c9365dd38d1eec405a5f8ca6), [f10caa7](https://github.com/matrix-org/synapse/commit/f10caa73eee0caa91cf373966104d1ededae2aee); see [\#15014](https://github.com/matrix-org/synapse/issues/15014))
- Add tests for `_flatten_dict`. ([\#14981](https://github.com/matrix-org/synapse/issues/14981), [\#15002](https://github.com/matrix-org/synapse/issues/15002))

<details><summary>Locked dependency updates</summary>

- Bump dtolnay/rust-toolchain from e645b0cf01249a964ec099494d38d2da0f0b349f to 9cd00a88a73addc8617065438eff914dd08d0955. ([\#14968](https://github.com/matrix-org/synapse/issues/14968))
- Bump docker/build-push-action from 3 to 4. ([\#14952](https://github.com/matrix-org/synapse/issues/14952))
- Bump ijson from 3.1.4 to 3.2.0.post0. ([\#14935](https://github.com/matrix-org/synapse/issues/14935))
- Bump types-pyyaml from 6.0.12.2 to 6.0.12.3. ([\#14936](https://github.com/matrix-org/synapse/issues/14936))
- Bump types-jsonschema from 4.17.0.2 to 4.17.0.3. ([\#14937](https://github.com/matrix-org/synapse/issues/14937))
- Bump types-pillow from 9.4.0.3 to 9.4.0.5. ([\#14938](https://github.com/matrix-org/synapse/issues/14938))
- Bump hiredis from 2.0.0 to 2.1.1. ([\#14939](https://github.com/matrix-org/synapse/issues/14939))
- Bump hiredis from 2.1.1 to 2.2.1. ([\#14993](https://github.com/matrix-org/synapse/issues/14993))
- Bump types-setuptools from 65.6.0.3 to 67.1.0.0. ([\#14994](https://github.com/matrix-org/synapse/issues/14994))
- Bump prometheus-client from 0.15.0 to 0.16.0. ([\#14995](https://github.com/matrix-org/synapse/issues/14995))
- Bump anyhow from 1.0.68 to 1.0.69. ([\#14996](https://github.com/matrix-org/synapse/issues/14996))
- Bump serde_json from 1.0.91 to 1.0.92. ([\#14997](https://github.com/matrix-org/synapse/issues/14997))
- Bump isort from 5.11.4 to 5.11.5. ([\#14998](https://github.com/matrix-org/synapse/issues/14998))
- Bump phonenumbers from 8.13.4 to 8.13.5. ([\#14999](https://github.com/matrix-org/synapse/issues/14999))
</details>

(js)

2023-03-01 18:36:02 UTC MAIN commitmail json YAML

Added security/py-bandit, devel/py-maturin

(adam)

2023-03-01 18:35:30 UTC MAIN commitmail json YAML

py-maturin: updated to 0.14.14

Build and publish crates with pyo3, rust-cpython and cffi bindings
as well as rust binaries as python packages.

This project is meant as a zero configuration replacement for
setuptools-rust and milksnake. It supports building wheels for
python 3.5+ on windows, linux, mac and freebsd, can upload them to
pypi and has basic pypy support.

(adam)

2023-03-01 18:20:23 UTC MAIN commitmail json YAML

py-bandit: added version 1.7.4

Bandit is a tool designed to find common security issues in Python code. To do
this Bandit processes each file, builds an AST from it, and runs appropriate
plugins against the AST nodes. Once Bandit has finished scanning all the files
it generates a report.

(adam)

2023-03-01 16:57:12 UTC MAIN commitmail json YAML

doc: Updated net/sayaka to 3.5.5

(tsutsui)

2023-03-01 16:56:57 UTC MAIN commitmail json YAML

sayaka: update to 3.5.5.

Upstream changes:

* 3.5.5 (2023/02/28)
- support gif images

(tsutsui)

2023-03-01 13:37:26 UTC MAIN commitmail json YAML

procmail: Add comment with link to new release

(gdt)

2023-03-01 13:36:41 UTC MAIN commitmail json YAML

doc: Updated x11/qt5ct to 1.7

(pin)

2023-03-01 13:36:19 UTC MAIN commitmail json YAML

x11/qt5ct: update to 1.7

Version 1.7
* added keywords entry to desktop file (Mateusz Łukasik)
* changed minimal Qt version to 5.15 for cmake build system
* fixed qmake build

Version 1.6
* added XDG desktop portal dialogs support (Marco Genasci)
* added qt6ct compatibility
* improved warning about incorrect environment variable
* improved icon loader
* only prepend our stylesheet if it has changed (Carlo Teubner)
* changed minimal required Qt version from 5.4 to 5.9
* fixed compatibility with applications that use own stylesheet (John Lindgren)
* fixed some clazy and clang-tidy warnings
* changed font configuration format
* updated Bulgarian translation (Kiril Kirilov)
* updated Catalan translation (Toni Estévez)
* updated Chinese (Traditional) translation (s8321414)
* updated Czech translation (fri)
* updated Dutch translation (Heimen Stoffels)
* updated Greek translation (Dimitrios Glentadakis)
* updated Japanese translation (UTUMI Hirosi)
* updated Polish translation (Marek Adamski)
* updated Russian translation (Ilya Kotov)
* updated Spanish translation (Toni Estévez)
* updated Ukrainian translation (Denys Nykula)

(pin)

2023-03-01 13:14:24 UTC MAIN commitmail json YAML

mail/procmail: Update HOMEPAGE

Now on github, with a recent release.

(gdt)

2023-03-01 11:28:53 UTC MAIN commitmail json YAML

Updated devel/py-aiofiles, devel/py-prompt_toolkit

(adam)

2023-03-01 11:28:34 UTC MAIN commitmail json YAML

py-prompt_toolkit: updated to 3.0.38

3.0.38: 2023-02-28
------------------

Fixes:
- Fix regression in filters. (Use of `WeakValueDictionary` caused filters to
  not be cached).

New features:
- Use 24-bit true color now by default on Windows 10/11.

(adam)

2023-03-01 11:27:01 UTC MAIN commitmail json YAML

py-aiofiles: updated to 23.1.0

23.1.0 (2023-02-09)

Added aiofiles.os.access.
Removed aiofiles.tempfile.temptypes.AsyncSpooledTemporaryFile.softspace.
Added aiofiles.stdin, aiofiles.stdin_bytes, and other stdio streams.
Transition to asyncio.get_running_loop (vs asyncio.get_event_loop) internally.

22.1.0 (2022-09-04)

Added aiofiles.os.path.islink.
Added aiofiles.os.readlink.
Added aiofiles.os.symlink.
Added aiofiles.os.unlink.
Added aiofiles.os.link.
Added aiofiles.os.renames.
Added aiofiles.os.{listdir, scandir}.
Switched to CalVer.
Dropped Python 3.6 support. If you require it, use version 0.8.0.
aiofiles is now tested on Python 3.11.

(adam)

2023-03-01 10:59:16 UTC MAIN commitmail json YAML

Updated math/py-simpleeval, devel/py-more-itertools

(adam)

2023-03-01 10:58:59 UTC MAIN commitmail json YAML

py-more-itertools: updated to 9.1.0

Version 9.1.0

See PR 678 for details.

(adam)

2023-03-01 10:56:24 UTC MAIN commitmail json YAML

py-simpleeval: updated to 0.9.13

0.9.13

Better handling of empty strings passed as input.
Fix the shift safe number issue from 0.9.12
More minor pylint / etc fixes / cleanups (general code quality)
separate .parse
Allow setting up completely empty {} operators / functions
Add extra bit-ops
Add @daxamin to contributors ?
Version bump stuff.
other readme tweaks
star expressions, eg x = {"a": 1, "b": 2, **c}

(adam)

2023-03-01 10:40:54 UTC MAIN commitmail json YAML

Updated archivers/py-zipp, net/py-zeroconf

(adam)

2023-03-01 10:40:37 UTC MAIN commitmail json YAML

py-zeroconf: updated to 0.47.3

v0.47.3 (2023-02-14)

Fix

Hold a strong reference to the query sender start task
v0.47.2 (2023-02-14)

Fix

Missing c extensions with newer poetry
v0.47.1 (2022-12-24)

Fix

The equality checks for DNSPointer and DNSService should be case insensitive
v0.47.0 (2022-12-22)

Feature

Optimize equality checks for DNS records
v0.46.0 (2022-12-21)

Feature

Optimize the dns cache
v0.45.0 (2022-12-20)

Feature

Optimize construction of outgoing packets
v0.44.0 (2022-12-18)

Feature

Optimize dns objects by adding pxd files
v0.43.0 (2022-12-18)

Feature

Optimize incoming parser by reducing call stack
v0.42.0 (2022-12-18)

Feature

Optimize incoming parser by using unpack_from
v0.41.0 (2022-12-18)

Feature

Optimize incoming parser by adding pxd files
v0.40.1 (2022-12-18)

Fix

Fix project name in pyproject.toml
v0.40.0 (2022-12-17)

Feature

Drop async_timeout requirement for python 3.11+

(adam)

2023-03-01 10:37:41 UTC MAIN commitmail json YAML

py-zipp: updated to 3.15.0

v3.15.0
* gh-102209: ``test_implied_dirs_performance`` now tests
  measures the time complexity experimentally.

v3.14.0
* Minor cleanup in tests

(adam)

2023-03-01 08:37:38 UTC MAIN commitmail json YAML

Updated net/qbittorrent, devel/py-tenacity

(adam)

2023-03-01 08:36:33 UTC MAIN commitmail json YAML

py-tenacity: updated to 8.2.2

8.2.2
Unknown changes

(adam)

2023-03-01 08:34:44 UTC MAIN commitmail json YAML

qbittorrent: updated to 4.5.2

v4.5.2
- BUGFIX: Don't unexpectedly activate queued torrents when prefetching metadata for added magnets (glassez)
- BUGFIX: Update the cached torrent state once recheck is started (glassez)
- BUGFIX: Be more likely to allow the system to use power saving modes (glassez)
- WEBUI: Migrate away from unsafe function (Chocobo1)
- WEBUI: Blacklist bad ciphers for TLS in the server (sledgehammer999)
- WEBUI: Allow only TLS 1.2+ in the server (sledgehammer999)
- WEBUI: Allow to set read-only directory as torrent location (glassez)
- WEBUI: Reject requests that contain backslash in path (glassez)
- RSS: Prevent RSS folder from being moved into itself (glassez)
- WINDOWS: NSIS: Update Turkish, Uzbek translation (Burak Yavuz, shitcod3r)

(adam)

2023-03-01 08:09:17 UTC MAIN commitmail json YAML

doc: Updated net/dbip-country-lite to 2023.03

(fcambus)

2023-03-01 08:09:06 UTC MAIN commitmail json YAML

dbip-country-lite: update to 2023.03.

No upstream ChangeLog.

(fcambus)

2023-03-01 08:08:37 UTC MAIN commitmail json YAML

doc: Updated net/dbip-city-lite to 2023.03

(fcambus)

2023-03-01 08:08:09 UTC MAIN commitmail json YAML

dbip-city-lite: update to 2023.03.

No upstream ChangeLog.

(fcambus)

2023-03-01 08:07:41 UTC MAIN commitmail json YAML

doc: Updated net/dbip-asn-lite to 2023.03

(fcambus)

2023-03-01 08:07:29 UTC MAIN commitmail json YAML

dbip-asn-lite: update to 2023.03.

No upstream ChangeLog.

(fcambus)

2023-03-01 07:58:15 UTC MAIN commitmail json YAML

Updated databases/redis, textproc/ugrep

(adam)

2023-03-01 07:57:56 UTC MAIN commitmail json YAML

ugrep: updated to 3.10.0

ugrep v3.10.0

New option --tree to output directory trees of files for options -l (--files-with-matches), -L (--files-without-match) and -c (--count). Updated option --pretty to enable --tree when output is sent to a terminal. Disable with --no-tree to output a traditional grep flat list.

(adam)

2023-03-01 07:51:09 UTC MAIN commitmail json YAML

redis: updated to 7.0.9

Redis 7.0.9

Upgrade urgency: SECURITY, contains fixes to security issues.

Security Fixes:
* (CVE-2023-25155) Specially crafted SRANDMEMBER, ZRANDMEMBER, and HRANDFIELD
  commands can trigger an integer overflow, resulting in a runtime assertion
  and termination of the Redis server process.
* (CVE-2022-36021) String matching commands (like SCAN or KEYS) with a specially
  crafted pattern to trigger a denial-of-service attack on Redis, causing it to
  hang and consume 100% CPU time.

Bug Fixes
=========
* Fix a crash when reaching the maximum invalidations limit of client-side tracking
* Fix a crash when SPUBLISH is used after passing the cluster-link-sendbuf-limit
* Fix possible memory corruption in FLUSHALL when a client watches more than one key
* Fix cluster inbound link keepalive time
* Flush propagation list in active-expire of writable replicas to fix an assertion
* Avoid propagating DEL of lazy expire from SCAN and RANDOMKEY as MULTI-EXEC

Performance and resource utilization improvements
=================================================
* Avoid realloc to reduce size of strings when it is unneeded
* Improve CLUSTER SLOTS reply efficiency for non-continuous slots

(adam)

2023-03-01 07:18:07 UTC MAIN commitmail json YAML

php81: do not override DIST_SUBDIR

Some extensions want to set it for themselves.

(wiz)

2023-03-01 06:40:24 UTC MAIN commitmail json YAML

doc: Updated devel/libgit2 to 1.6.2

(wiz)

2023-03-01 06:40:14 UTC MAIN commitmail json YAML

libgit2: update to 1.6.2.

Bug fixes

    remote: always populate old id in update tips by @ethomson in #6506
    The update tips callback would not always be properly provided with an empty (0000000...) OID for new refs.

    Revert #6503 by @ethomson in #6511
    The certificate callback added port information for callbacks in #6503, but the format was ambiguous with IPv6 addresses. Revert this change temporarily.

    Add git_odb_backend_loose back by @ethomson in #6512
    During SHA256 refactoring, the git_odb_backend_loose API was accidentally removed. Add it back.

    meta: configure pkg-config .pc correctly by @ethomson in #6514
    During SHA256 refactoring, the pkg-config .pc file was erroneously renamed to git2 instead of libgit2. Repair this.

(wiz)

2023-02-28 22:55:40 UTC MAIN commitmail json YAML

ncdu*: both have same PKGBASE, so no CONFLICTS necessary

They conflict automatically

(wiz)

2023-02-28 22:40:17 UTC MAIN commitmail json YAML

doc: Updated sysutils/xcp to 0.9.4

(pin)

2023-02-28 22:39:58 UTC MAIN commitmail json YAML

sysutils/xcp: update to 0.9.4

- Add NetBSD package info (thanks @0323pin)
- Fix infinite-recusrsion scenario (thanks @fine-simple)
- Large dependency update

(pin)

2023-02-28 22:39:03 UTC MAIN commitmail json YAML

doc: Updated textproc/tuc to 1.0.0

(pin)

2023-02-28 22:38:42 UTC MAIN commitmail json YAML

textproc/tuc: update to 1.0.0

[0.11.0] - 2022-06-20

- fix: --lines could throw out of bounds with -f 1: in some situations
- chore: dependency updates
- doc: fixed typos
- doc: new section about community-managed install methods (macports)
- doc: man page generated using the mode modern pandoc 2.5

(pin)

2023-02-28 22:37:44 UTC MAIN commitmail json YAML

doc: Updated shells/starship to 1.13.1

(pin)

2023-02-28 22:37:24 UTC MAIN commitmail json YAML

shells/starship: update to 1.13.1

[1.13.1] (2023-02-26)

Bug Fixes
* trigger release

[1.13.0] (2023-02-24)

Features
* add pijul_channel module
* config: Adds support for --profile &lt;custom profile name&gt;
* env_var: Add support for env_var.VAR in format
* fennel: add fennel module
* fossil_branch: add fossil_branch module
* gradle: add gradle module
* hg_branch: Add support for mercurial topics and find hg root dir
* java: Add '.sdkmanrc' for Java
* logger: delete old logs & avoid more dup logs
* nix: support new 'nix shell' command

Bug Fixes
* 'to to' -&gt; 'to'
* container: reduce docker, podman and systemd confusion
* fish: enable transient prompt when in vi mode
* git_commit: fix potential test failure
* Improve regex for extracting gradle package version from gradle.properties
* let-env warning when using nushell
* nodejs: apply 'style' even if node version is unavailable
* package: Improve regex for extracting gradle version from gradle.properties
* Remove vulnerable time-0.1.x chrono dependency

(pin)

2023-02-28 22:36:25 UTC MAIN commitmail json YAML

doc: Updated net/sniffnet to 1.1.1

(pin)

2023-02-28 22:36:04 UTC MAIN commitmail json YAML

net/sniffnet: update to 1.1.1

[1.1.1] - 2023-02-25

- Added new translations of the GUI!
  * French, Spanish and Polish
- The last successfully sniffed network adapter is now remembered on application
  closure, so that users don't have to manually select it again when restarting
  Sniffnet
- Implemented possibility to quit the application pressing crtl+Q keys
- The last opened settings page is now remembered within a given session
- Fixed bug that caused settings configuration not to be permanently saved
  across different sessions when closing settings from the 'x' button on the
  top right corner
- Textual report is now saved in a fixed directory, instead of using the
  directory where the execution was started. The output is now saved in the
  same folder containing configuration files storing Sniffnet settings.
  The directory is automatically chosen by confy depending on your architecture,
  and can be seen hovering on the "Open full report" button.
- When multiple favorite connections are featured per time interval, now it's
  possible to receive more than one favorite notification referred to the same
  timestamp
- Fixed problem that was causing the Application Protocol picklist placeholder
  not being translated

(pin)

2023-02-28 22:35:02 UTC MAIN commitmail json YAML

doc: Updated sysutils/parallel-disk-usage to 0.8.5

(pin)

2023-02-28 22:34:43 UTC MAIN commitmail json YAML

2023-02-28 22:33:39 UTC MAIN commitmail json YAML

doc: Updated audio/gospt to 0.0.37

(pin)

2023-02-28 22:33:17 UTC MAIN commitmail json YAML

audio/gospt: update to 0.0.37

0.0.37
- Improved add status to cache

0.0.36
- CI: add & fix compleations

0.0.35
- CI: add gitea urls
- CI: remove windows 386 build
- CI: update goreleaser

(pin)

2023-02-28 22:32:17 UTC MAIN commitmail json YAML

doc: Updated shells/elvish to 0.19.0

(pin)

2023-02-28 22:31:53 UTC MAIN commitmail json YAML

shells/elvish: update to 0.19.0

Notable new features
-  A new `doc` module provides access to the documentation of builtin modules.
-  A new `conj` command "appends" values to a list, and has a guaranteed time
    complexity independent of the size of the list.
-  A new `inexact-num` converts its argument to an inexact number.
    It is functionally identical to the now deprecated `float64` command since
    the Go float64 type is the only underlying inexact number type for now. Its
    behavior may change in future if there are more underlying types for inexact
    numbers.
-  A new type of interactive abbreviation: `edit:command-abbr`
    ([#1472](https://b.elv.sh/1472)).
-  The `order` and `compare` commands now support boolean values
    ([#1585](https://b.elv.sh/1585)).
-  A new `path:join` command and `path:separator` and `path:list-separator`
    variables ([#1562](https://b.elv.sh/1562)).
-  A new `runtime:` module that contains paths important for the Elvish runtime
    ([#1385](https://b.elv.sh/1385), [#1423](https://b.elv.sh/1423)).
-  A new `compact` command that replaces consecutive runs of equal values with
    a single copy, similar to the Unix `uniq` command.
-  The `order` command has a new `&key` option
    ([#1570](https://b.elv.sh/1570)).
-  A new `benchmark` command has been added ([#1586](https://b.elv.sh/1586)).
-  When checking compilation errors, Elvish no longer stops after the first
    error found. For example, if `$a` and `$b` are both not defined,
    `echo $a $b` now yields two errors. This applies to both the interactive
    REPL and `elvish -compile-only`.
-  When using an unimported builtin modules from the REPL, the REPL now shows
    the `use` command needed to import it, which can be executed from a key
    binding. This functionality is bound to Ctrl-A by default.
-  New variables exposing the terminal and null device in an OS-agnostic
    fashion: `$path:dev-tty` and `$path:dev-null`. They are `/dev/tty` and
    `/dev/null` on Unix, and `CON` and `NUL` on Windows
    ([#1633](https://b.elv.sh/1633)).

Breaking changes
-  When a `styled` or `styled-segment` is printed to terminal, the resulting
    sequence will now always ignore any existing SGR state.
-  Symbolic links are now always treated as ordinary files by the global
    modifiers `type:dir` and `type:regular` in wildcard expansions.
-  Support for shared vars has been removed, along with its API
    (`store:shared-var`, `store:set-shared-var` and `store:del-shared-var`).

Deprecated features

Deprecated features will be removed in 0.20.0.

The following deprecated features trigger a warning whenever the code is parsed
and compiled, even if it is not executed:
-  The `float64` command is now deprecated. Use `num` for constructing a typed
    number, or `inexact-num` for constructing an inexact number.
    The documentation has advertised it as deprecated since the 0.16.0 release,
    but deprecation warnings were never added.

Notable bugfixes
-  Temporary assignment on an unset environment variables no longer leave it
    set to an empty string ([#1448](https://b.elv.sh/1448)).
-  Broken symbolic links no longer terminate a wildcard expansion prematurely
    ([#1240](https://b.elv.sh/1240)).
-  On Windows, command completion for executables now also works for local
    files

(pin)

2023-02-28 22:30:55 UTC MAIN commitmail json YAML

doc: Updated sysutils/dua-cli to 2.19.2

(pin)

2023-02-28 22:30:32 UTC MAIN commitmail json YAML

sysutils/dua-cli: update to 2.19.2

2.19.2 (2023-02-23)
Bug Fixes
- -x is applied to traversal as well.
  Previously dua would cross filesystems for traversal and simply not
  yield them, which somewhat defeated the purpose.

  Now it will avoid traversing into filesystem entries that are on a different
  filesystem, which should improve its performance visibly whenever multiple
  filesystems are involved.

Other
- don't recurse on cross-device filesystems
  Like it says in the title. Right now, if you pass -x, dua doesn't
  count files on other devices, but it still enumerates them. However, a
  good reason to use -x is if you have network mounts that are slow, so
  this fixes that.

(pin)

2023-02-28 22:29:29 UTC MAIN commitmail json YAML

doc: Updated textproc/csvlens to 0.1.12

(pin)

2023-02-28 22:29:06 UTC MAIN commitmail json YAML

textproc/csvlens: update to 0.1.12

v0.1.12

* Add --version option
* Add --echo-column option to print column's value at selected row to stdout
* Use stderr as tui buffer to support piping from csvlens

(pin)

2023-02-28 21:10:28 UTC MAIN commitmail json YAML

ncdu: +conflicts for ncdu-2.x

(nikita)

2023-02-28 21:08:09 UTC MAIN commitmail json YAML

doc: Added sysutils/ncdu2 version 2.2.2

(nikita)

2023-02-28 21:07:43 UTC MAIN commitmail json YAML

sysutils/ncdu2: import as ncdu2 version 2.2.2

Imported from wip.

ncdu (NCurses Disk Usage) is a curses-based version of the well-known
'du', and provides a fast way to see what directories are using
your disk space. This is a complete rewrite in zig, with lower memory
usage and better performance.

(nikita)

2023-02-28 20:56:27 UTC MAIN commitmail json YAML

zig: changes and todo notes for application.mk, build with baseline cpu

(nikita)

2023-02-28 20:34:03 UTC MAIN commitmail json YAML

openjdk8: restore checksums

(tnn)

2023-02-28 20:23:13 UTC MAIN commitmail json YAML

some UTF-8 attachement filename can cause mimedefang to crash;
fix it by rewriting the filename with ascii characters, using code which
was present upstream at some point.
See patches/patch-modules_lib_Mail_MIMEDefang_MIME.pm for details.
Bump PKGREVISION

(bouyer)

2023-02-28 20:05:03 UTC MAIN commitmail json YAML

2023-02-28 17:50:07 UTC MAIN commitmail json YAML

openjdk17: restore checksums

(tnn)

2023-02-28 16:24:01 UTC MAIN commitmail json YAML

Remove comment -- upstream has dropped support for openssl 1.0 APIs.

No functional changes.

(hauke)

2023-02-28 15:34:12 UTC MAIN commitmail json YAML

doc: Updated net/netatalk22 to 2.2.8

(hauke)

2023-02-28 15:33:59 UTC MAIN commitmail json YAML

Update net/netatalk22 to v2.2.8.

Changes in 2.2.8
================
* NEW: asip-status.pl: IPv6 support; show GSS-UAM SPNEGO blob;
      improved layout of output. (3.1 backport)
* NEW: apple_dump: support for EA meta data. (3.1 backport)
* NEW: Import netatalk-doc into the main repo, and overhaul
      scripts, man pages and html manual sources.
* UPD: Display the Netatalk Daemon icon with the '-icon' afpd.conf
      option for all platforms. GH #214
* UPD: Remove OpenSSL 1.0 backwards compatibility header.
      Please use OpenSSL 1.1 or later.
* UPD: configure: Enable DDP, timelord, and a2boot by default. GH #215
* UPD: configure: Disable Quota by default. GH #198
* FIX: afpd: Create tmp files in /tmp rather than / and clean up
      after use. Regression in 2.2.7. GH #188
* FIX: Provide MNTTYPE_NFS for Solaris descendents to enable
      compiling with Quota. GH #117
* FIX: afpd: reading from file may fail. SF Bug #619 (3.1 backport)
* FIX: timelord: Fall back to timezone when tm_gmtoff is unavailable.
      Makes it work on Solaris descendents. GH #194
* FIX: fix largefile-check macro for largefile with clang 16.
* FIX: Typo fixes in user facing strings.

(hauke)

2023-02-28 14:51:39 UTC MAIN commitmail json YAML

doc: Updated lang/openjdk11 to 1.11.0.18.10nb1

(ryoon)

2023-02-28 14:51:18 UTC MAIN commitmail json YAML

openjdk11: Fix per-pixel translucency

* Per-pixel translucency problem is reported and analyzed by abs@.
  Thank you.
* Bump PKGREVISION.

(ryoon)

2023-02-28 14:50:57 UTC MAIN commitmail json YAML

doc: Updated lang/openjdk17 to 1.17.0.6.10nb1

(ryoon)

2023-02-28 14:50:05 UTC MAIN commitmail json YAML

openjdk17: Fix per-pixel translucency

* Per-pixel translucency problem is reported and analyzed by abs@.
  Thank you.
* Bump PKGREVISION.

(ryoon)

2023-02-28 14:47:21 UTC MAIN commitmail json YAML

doc: Updated security/sudo to 1.9.13p2

(taca)

2023-02-28 14:46:59 UTC MAIN commitmail json YAML

security/sudo: update to 1.9.13p2

1.9.13.p2 (2023-02-27)

What's new in Sudo 1.9.13p2

* Fixed the --enable-static-sudoers option, broken in sudo 1.9.13.
  GitHub issue #245.

* Fixed a potential double-free bug when matching a sudoers rule
  that contains a per-command chroot directive (CHROOT=dir).  This
  bug was introduced in sudo 1.9.8.

(taca)

2023-02-28 13:54:00 UTC MAIN commitmail json YAML

Remove stray sizecalc.h file from PLIST.

Restore bootstrap kits for aarch64 arm and i386 to distinfo.

(rjs)

2023-02-28 11:33:51 UTC MAIN commitmail json YAML

Updated mail/mimedefang to 3.3

(bouyer)

2023-02-28 11:33:03 UTC MAIN commitmail json YAML

Update mimedefang to 3.3. Main changes from 2.78:
        * add is_public_ip6_address to check if an ipv6 address
  is local
        * add md_authres method to generate a basic Authentication-Results
          header for the message
        * add md_arc_sign method to sign email messages
          with DKIM ARC signatures
        * add md_dkim_verify method to verify DKIM signatures
        * add md_dkim_sign method to sign email messages
          with DKIM signatures
        * add anonymize_uri to remove utm_* parameters
          from uris.
        * split mimedefang.pl code in Perl modules
        * add re_match_in_7zip_directory to check for files
          inside 7zip archives
        * fallback to plaintext when md_check_against_smtp_server
          fails SSL connection for unknown reasons
        * add experimental support to scan emails with Rspamd antispam
        * Obtain the Queue-ID as early as possible in the SMTP
          session. Requires the "-y" command-line option to mimedefang.
        * mimedefang.pl: Add support for a configuration file
          to separate data from code
        * mimedefang.pl: Add support to scan messages for viruses on a remote
          Clamav server using clamdscan client.
        * mimedefang.pl: Add re_match_in_rar_directory function to match
          unwanted file names extensions inside a rar archive file.
        * mimedefang.pl: Added TLS support to md_check_against_smtp_server
        * mimedefang-multiplexor: Make "workerinfo nnn" show how long ago
          the last state change was for a given worker.
        * mimedefang.pl: Do not add a Message-ID: header when handing a
          message to SpamAssassin if the original message lacks such a
          header.
        * Add a new -V maxLifetime option to mimedefang-multiplexor that
          terminates worker processes after maxLifetime seconds (approximately).
          This is in addition to the -r maxRequests option.
        * Log the lifetime and number of requests processed when we terminate
          a worker process.
        * Make mimedefang and mimedefang-multiplexor write their PID files
          as root to avoid an unprivileged user tampering with the pidfiles.
          Thanks to Michael Orlitzky for pointing this issue out.
        * mimedefang.pl: Add an extra level of subdirectories in the quarantine
          to avoid 32K subdirectory limit on ext3.  Idea by Kevin McGrail.
        * Add the --data-dump option to scripts/mimedefang-util

And various bug fixes and minor improvements.
pkgsrc changes: make the rc.d script use the new -o option and move the pid
files to $VARBASE/run/, keeping the lock and socket files in
$VARBASE/spool/MIMEdefang/

(bouyer)

2023-02-28 10:37:34 UTC MAIN commitmail json YAML

doc: Updated emulators/tcl-hp-15c to 4.5.00.6308

(hauke)

2023-02-28 10:37:22 UTC MAIN commitmail json YAML

Update emulators/tcl-hp-15c to v4.5.00

From upstream's changelog:

Version 4.5.00, Build 6308

    Bug fixes

        When stepping into an error with SST in Run mode, the display
        did not show "Error #"
        DM15: Reading and writing worked only when option "Ask for
        each operation" was activated.
        When writing the stack to the DM15, an application error could
        occur under certain conditions.
        When writing to the DM15, Complex mode was deactivated for
        devices with firmware version V.23 and higher.
        macOS: The program menu did not open at the mouse position,
        when clicking GTO with the right mouse button.

    Changes

        NEW: Preferences setting to save the last screen position
        More Preferences settings are accessible directly from the
        main menu bar.
        Program description dialogue:
            A Search and Replace window is available for the program
            description.
            The preference setting "Show resources in tabs" was moved
            to the "Preferences" dialogue.
            The "Search/Replace" and the "Resource" window can be
            switched on and off.
            The toolbar buttons in edit mode can now show icons as an
            alternative to the tag text.
            A context menu (right mouse click) for HTML tagging was
            added.
            New submenu for Superscript/subscript Unicode characters
            in the 'Symbols' menu.
            The 'Symbols' menu is now available as context menu in the
            entry fields for labels, storage registers and flags.
            Improved rendering of lists in preview mode
            The renderer now uses the parameter 'start' of an <ol>
            tag. This is needed in lists with labels, storage
            registers or flags that do not start at 1.
            When reloading a description, the user is asked whether to discard any changes
        macOS: The native macOS "USB to UART" driver, introduces with
        Big Sur, is now supported.
        Improved layout and behaviour of the Mnemonic Converter.
        In PRGM mode programs can now be pasted directly from the
        clipboard into the Simulator.

        New short-cuts
? : [g] F?, query the status of a flag.
        ctrl-F2 : Menu bar on/off on Windows and Linux. On macOS the
        menu bar is always on.

        Executables are packed with tclkits based on Tcl/Tk 8.6.12 for
        all operating systems.

    Known issues
        macOS

            When minimising the description dialogue, it becomes
            immediately maximised again
            Artifacts along the top and bottom edge of the simulator
            keys for some font sets
            Some users got errors when they installed the HP-15C
            Simulator Font. It is recommended to deinstall all
            versions of the font before installing it again.

        Linux, macOS:
            The behaviour described on page 144 of the Owner's
            Handbook when a letter key is 'held down for longer than
            about 3 seconds', works on all systems when you use the
            mouse. When you use the keyboard, it works on Windows, but
            not on macOS and Linux.

Version 4.4.00, Build 6211

    Bug fixes
        SOLVE failed in some cases, when "Strict HP-15 behaviour" was
        enabled.

    Changes
        Memory and history file:
            Starting with this version, only ".mme" (matrix memory)
            memory files are loaded. Older memory files with the
            extension ".mem" are ignored, even if no ".mme" file is
            found.
            Linux and macOS: The memory and the history file are now
            in a (hidden) subdirectory ~/.HP-15C. Existing files are
            moved to the new location.
            The file names of the memory file, HP-15C.mme and the
            recent file history, HP-15C.hst, are now the same on all
            systems.

        Program description dialogue:

            The "Symbols" menu now inserts Unicode characters by
            default instead of HTML Entities (except for &lt; and
            &gt;). This can be deactivated in the Preferences.
            The <img> is now also rendered. Supported graphic formats
            are PNG and GIF.
            New Preferences setting to automatically open the dialogue
            after loading a program.
            Improved preview for nested lists.
            Additional keyboard short-cuts (see section "Programs |
            Program Documentation" in the HTML help).

        HTML export:
            Preformatted text, i.e. <pre>\u2026</pre>, has a light
            grey background.
            Most keys have the same width, except some with long
            labels such as MATRIX. Previously the width was defined by
            the label.
            Optimised layout for Labels and Storage Register
            descriptions

        Preferences: New option to show descriptions in the storage
        register menus.
        DM15 support: New entry in the DM15 menu to read the system
        information, e.g. firmware type, version etc.
        Program labels where the description starts with a "#" are not
        in the GSB menu. This allows it to hide subprograms.
        Updated all URLs from "http" to "https" when supported by the
        web site.
        Harmonised titels of all windows, message boxes and dialogue
        boxes.
        Added a "Keyboard Usage" table to the "Keyboard" section in
        the documentation.
        Windows 11 support added.
        New short-cuts

? : [g] F?, query tthe status of a flag.
A : Computes the absolute value of the number in the X-register.
shift-D : Converts the number in the X-register from radians to degrees.
shift-F : Computes the decimal fraction of the number in the X-register.
shift-M : Converts the number in the X-register from a decimal hours into an hours-minutes-seconds-decimal seconds format.
shift-H : Converts the number in the X-register from hours-minutes-seconds-decimal seconds format into decimal hours.
shift-R : Converts the number in the X-register from degrees to radians.

    Known issues
        macOS
            When minimising the description dialogue, it becomes
            immediately maximised again
            Artifacts along the top and bottom edge of the simulator
            keys for some font sets
            Some users got errors when they installed the HP-15C
            Simulator Font. It is recommended to deinstall all
            versions of the font before installing it again.

        Linux, macOS:

        The behaviour described on page 144 of the Owner's Handbook
        when a letter key is 'held down for longer than about 3
        seconds', works on all systems when you use the mouse. When
        you use the keyboard, it works on Windows, but not on macOS
        and Linux.

Version 4.3.00, Build 6111

    Bug fixes
        Improved interrupt handling while running a program
            Only mouse clicks on a simulator key will interrupt a
            program. Previously any mouse click interrupted a program.

            The program now stops immediately and more
            reliable. Previously, especially when the program uses
            SOLVE or [integral]xy, it could take a few seconds, or you
            even had to press or click multiple times, to actually
            stop the program.

        When both SOLVE and [integral]xy were used in a program,
            the display did not flash "running" but showed it permanently
            the return stack could overflow resulting in "Error 5"
            interrupting the program could result in an invalid return
            stack. Resulting in "Error 5" with the next GSB command

        Program description dialogue:
            When inserting a new tag or after undo, the new or
            restored text was not highlighted
            When inserting a tag or a symbol into unchanged
            documentation, the change status was not set.
            In specific multi display configurations, reloading the
            dialogue could result in an application error

        When opening a faulty program file, the error message was incorrect
        Linux: On screens with high DPI values, the simulator display
        and the function labels were misaligned
        Linux: On systems with extreme scaling, no valid font set was
        found

    Changes
        Program description dialogue:
            Links in the description can now be clicked
            <pre> is now used instead of <code> for formatted code,
            e.g. formulas
            Short-cuts for HTML tags <sup> and <sub> added
            Enhanced and optimised "Symbols" menu
            Switching between "Show resources in tabs" and list mode
            does not change the size of the dialogue (unless it is to
            small for list mode)
            Dialogues to warn about unsaved changes are more consistent

        Depending on the functions used in an HP-15C program,
        execution time has been reduced by 30% to 70%
        Windows: The font sets for normal and high DPI values have
        been merged.
        Linux package support: The environment variable HP15Cdocdir
        can be used to install the simulator documentation separate
        from the program binary file.
        Mnemonic Converter: The Unicode 'Latin Letter Small Capital
        \u1d07' is accepted as exponent character , e.g. 1\u1d077, to
        support Free42 output conversion.
        The oldest supported Tcl version is now 8.6.6 (was: 8.5.12)

    Known issues
        macOS Big Sur:
        The following issues are incompatibilities between the Tcl/Tk
        runtime and macOS Big Sur. Earlier versions of macOS are not
        affected.
            Active buttons on dialogues have white text on white
            background, the active button text turns black if you
            change the focus back to the main window
            When minimising the description dialogue, it becomes
            immediately maximised again
            Fonts in the menus are a bit blurry on some systems
            Artifacts along the top and bottom edge of the simulator
            keys on some displays (>24 inch?)

        Linux, macOS:
        The behaviour described on page 144 of the Owner's Handbook
        when a letter key is 'held down for longer than about 3
        seconds', works on all systems when you use the mouse. When
        you use the keyboard, it works on Windows, but not on
        MacOS X and Linux.

        macOS:
            Some users got errors when they installed the new HP-15C
            Simulator Font version under macOS El Capitan and
            newer. The macOS Sierra font validation program reports no
            warnings or errors. It is recommended to deinstall any
            older version of the font before installing the new
            version. Despite the errors, the font can be installed and
            used.
            The "Emoji and Symbols" menu does not work. This is a
            known Tcl/Tk bug.

Version 4.2.00, Build 6026

    Bug fixes
        SOLVE could fail, when the two initial estimates were
        identical.
        STO or RCL followed by g (i), to set or get the value of a
        matrix element, did not work.
        x<-> failed when the X-register contained a matrix
        descriptor.
        In ENG 0 display format, numbers with 3 digits in the mantissa
        were displayed with only 2 digits.
        Writing the LU form of a matrix of dimension n to the DM15
        failed, when the number of permutations was smaller then n-1.
        When the display was blinking due to an overflow, the blinking
        was erroneously stopped by switching the PRGM mode on/off.

    Changes
        Program description dialogue:
            New preferences setting: "Automatic preview". Important
            note: The setting is 'On' by default.
            If set to 'On' and the "Usage" field of the program
            description contains HTML tags or entities, the program
            description dialogue opens in preview mode.
            The HTML tag buttons layout was optimised. The effect is
            most visible under macOS.
            Short-cuts are now defined for the supported HTML tags and
            the HP-15C specific css classes
            The labels for the tag buttons for bold and italic are now
            in the language of the UI.
            New menu to add HTML Entities, i.e. Greek letters,
            mathematical symbols and arrows.
            Improved rendering of the HP-15C specific css classes in
            preview mode.
            HTML Entities, e.g. "&pi;", are now rendered using the
            corresponding Unicode character, e.g. pi.
            The initial width of the dialogue is now always appx. 40% of the screen.
            The initial height on large screens has been increased.
            When switching "Show resources in tabs" on or off, only
            this section is redrawn and not the whole window.
            Resources are now always shown in at least two columns if
            more then one of each type is used in a program.
            The "Author Information" is now inserted into an empty
            "Usage" field, when the program description dialogue is
            openend.

        Reading and writing files:
            With the HTML export, "Keys in black and white" now also
            affect the program description and not only the program
            listing.
            With the HTML export and "Structure in English" activated,
            the decimal point is now always a dot and the thousands
            seperator a comma. Previously the current display settings
            where used.
            When opening program files, key sequences with a decimal
            point, e.g. STO . 3, can now be formatted as { 45 ,3 } or
            { 45 .3 } in addition to { 45 48 3 }. The additional
            format is more common in the Web.

        New short-cut

[N] : Computes the integer of the number in the X-register, i.e. makes it a natural number.
Alt-F3 : Show GSB menu.

        The documentation was reviewed and standardised with regard to
        spelling, grammar and presentation.
        Only 64-bit executables are provided from now on. For 32-bit
        operating systems the source code version can be used, if
        Tcl/Tk is available on that system.
        Only macOS 10.15 and newer versions are supported from now
        on. The executables may run on older versions, but this has
        not been tested.
        Executables are now packed with tclkits based on Tcl/Tk 8.6.10
        for all operating systems.
        In the 'About' dialogue, the Tcl/Tk shell program and the
        Tcl/Tk version are now only shown in the source code version.

    Known issues
        Linux, macOS:
        The behaviour described on page 144 of the Owner's Handbook
        when a letter key is 'held down for longer than about 3
        seconds', works on all systems when you use the mouse. When
        you use the keyboard, it works on Windows, but not on
        MacOS X and Linux.
        macOS:
            Some users got errors when they installed the new HP-15C
            Simulator Font version under macOS El Capitan and
            newer. The macOS Sierra font validation program reports no
            warnings or errors. It is recommended to deinstall any
            older version of the font before installing the new
            version. Despite the errors, the font can be installed and
            used.
            The "Emoji and Symbols" menu does not work. This is a
            known Tcl/Tk bug.

Version 4.1.00, Build 5914

    Bug fixes
        It was possible to close the simuator with an invalid number
        in the X register. The memory file had to be deleted, before
        the Simulator would start again.
        Source code version: The simulator could be started only from
        the directory with the source code.
        The Mnemonic Converter created invalid Key Codes for STO and
        RCL in USER mode.
        On some Linux systems with 4k displays the area around the
        display could be corrupted.

    Changes
        NEW: A "Recent programs" history is now available as a submenu
        to the context or ON popup menu and in the "Files" menu of the
        main menu bar.
        Like the real HP-15C, the Simulator now uses the Romberg
        method for numerical integration. Previous versions used the
        Simpson method and the implementation - over 15 years old -
        failed for some integrals.
        Improved layout of the backside, especially for larger font sets.
        Revised and improved program description dialogue:
            The "Highlight tags" check box has been moved from the
            Program Description dialogue to the Preferences dialogue.
            The preview mode now supports the HTML tags "<sup>" and "<sub>".
            When an HTML tag range is highlighted, e.g. "<bold>some
            text</bold>", clicking the corresponding tag-button now
            removes the tag.
            The blank part of indented text did not have the correct
            background colour.
            The last position on the screen is stored. The position is
            discarded when the program is closed.

        Executables are now packed with tclkits based on Tcl/Tk 8.6.9
        for Windows and Linux, 8.6.8 for macOS HighSierra and 8.6.7
        macOS prior to macOS HighSierra.

    Known issues
        Linux, macOS:
        The behaviour described on page 144 of the Owner's Handbook
        when a letter key is 'held down for longer than about 3
        seconds', works on all systems when you use the mouse. When
        you use the keyboard, it works on Windows, but not on
        MacOS X and Linux.
        macOS:
            Some users got errors when they installed the new HP-15C
            Simulator Font version under macOS El Capitan and
            newer. The macOS Sierra font validation program reports no
            warnings or errors. It is recommended to deinstall any
            older version of the font before installing the new
            version. Despite the errors, the font can be installed and
            used.
            A user reported that the Simulator does not run on
            MacOS X 10.6 "Snow Leopard". It seems that at
            least MacOS X 10.7 "Lion" is needed.
            The "Emoji and Symbols" menu does not work. This is a
            known Tcl/Tk bug.

(hauke)

2023-02-28 07:20:46 UTC MAIN commitmail json YAML

doc: Updated fonts/font-xfree86-type1 to 1.0.5

(wiz)

2023-02-28 07:20:30 UTC MAIN commitmail json YAML

font-xfree86-type1: update to 1.0.5.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient.

Alan Coopersmith (9):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      font-xfree86-type1 1.0.5

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 07:19:56 UTC MAIN commitmail json YAML

doc: Updated fonts/font-winitzki-cyrillic to 1.0.4

(wiz)

2023-02-28 07:19:47 UTC MAIN commitmail json YAML

font-winitzki-cyrillic: update to 1.0.4.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient
and using the -n flag to gzip to improve build reproducibility.

Alan Coopersmith (10):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      Use COMPRESS_FLAGS to improve build reproducibility
      font-winitzki-cyrillic 1.0.4

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 07:19:19 UTC MAIN commitmail json YAML

doc: Updated fonts/font-sun-misc to 1.0.4

(wiz)

2023-02-28 07:19:05 UTC MAIN commitmail json YAML

font-sun-misc: update to 1.0.4.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient
and using the -n flag to gzip to improve build reproducibility.

Alan Coopersmith (11):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      Use COMPRESS_FLAGS to improve build reproducibility
      Remove "All rights reserved" from Oracle copyright notices.
      font-sun-misc 1.0.4

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 07:18:17 UTC MAIN commitmail json YAML

doc: Updated fonts/font-sony-misc to 1.0.4

(wiz)

2023-02-28 07:18:09 UTC MAIN commitmail json YAML

font-sony-misc: update to 1.0.4.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient
and using the -n flag to gzip to improve build reproducibility.

Alan Coopersmith (10):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      Use COMPRESS_FLAGS to improve build reproducibility
      font-sony-misc 1.0.4

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 07:17:41 UTC MAIN commitmail json YAML

doc: Updated fonts/font-screen-cyrillic to 1.0.5

(wiz)

2023-02-28 07:17:25 UTC MAIN commitmail json YAML

font-screen-cyrillic: update to 1.0.5.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient
and using the -n flag to gzip to improve build reproducibility.

Alan Coopersmith (10):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      Use COMPRESS_FLAGS to improve build reproducibility
      font-screen-cyrillic 1.0.5

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 07:16:42 UTC MAIN commitmail json YAML

doc: Updated fonts/font-schumacher-misc to 1.1.3

(wiz)

2023-02-28 07:16:34 UTC MAIN commitmail json YAML

font-schumacher-misc: update to 1.1.3.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient
and using the -n flag to gzip to improve build reproducibility.

Alan Coopersmith (10):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      Use COMPRESS_FLAGS to improve build reproducibility
      font-schumacher-misc 1.1.3

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 07:16:03 UTC MAIN commitmail json YAML

doc: Updated fonts/font-mutt-misc to 1.0.4

(wiz)

2023-02-28 07:15:48 UTC MAIN commitmail json YAML

font-mutt-misc: update to 1.0.4.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient
and using the -n flag to gzip to improve build reproducibility.

Alan Coopersmith (10):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      Use COMPRESS_FLAGS to improve build reproducibility
      font-mutt-misc 1.0.4

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 07:14:53 UTC MAIN commitmail json YAML

doc: Updated fonts/font-misc-misc to 1.1.3

(wiz)

2023-02-28 07:14:43 UTC MAIN commitmail json YAML

2023-02-28 07:13:41 UTC MAIN commitmail json YAML

font-misc-misc: update to 1.1.3.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient
and using the -n flag to gzip to improve build reproducibility.

It also corrects an incorrectly drawn glyph for a Japanese character
in the k14 font.

Alan Coopersmith (10):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      Use COMPRESS_FLAGS to improve build reproducibility
      font-misc-misc 1.1.3

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

KISHIMOTO, Makoto (1):
      fix k14 imouto(younger sister) glyph bug

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 07:13:12 UTC MAIN commitmail json YAML

doc: Updated fonts/font-misc-meltho to 1.0.4

(wiz)

2023-02-28 07:12:58 UTC MAIN commitmail json YAML

font-misc-meltho: update to 1.0.4.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient.

Alan Coopersmith (9):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      font-misc-meltho 1.0.4

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 07:12:24 UTC MAIN commitmail json YAML

doc: Updated fonts/font-misc-ethiopic to 1.0.5

(wiz)

2023-02-28 07:12:02 UTC MAIN commitmail json YAML

font-misc-ethiopic: update to 1.0.5.

This release bundles up the last two years worth of build system
improvements, including making the configure script more efficient.

Alan Coopersmith (5):
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      font-misc-ethiopic 1.0.5

Gaetan Nadon (1):
      config: update AC_PREREQ statement to 2.60

(wiz)

2023-02-28 07:11:31 UTC MAIN commitmail json YAML

doc: Updated fonts/font-micro-misc to 1.0.4

(wiz)

2023-02-28 07:11:23 UTC MAIN commitmail json YAML

font-micro-misc: update to 1.0.4.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient
and using the -n flag to gzip to improve build reproducibility.

Alan Coopersmith (10):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      Use COMPRESS_FLAGS to improve build reproducibility
      font-micro-misc 1.0.4

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 07:10:35 UTC MAIN commitmail json YAML

doc: Updated fonts/font-misc-cyrillic to 1.0.4

(wiz)

2023-02-28 07:10:27 UTC MAIN commitmail json YAML

font-misc-cyrillic: update to 1.0.4.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient
and using the -n flag to gzip to improve build reproducibility.

Alan Coopersmith (10):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      Use COMPRESS_FLAGS to improve build reproducibility
      font-misc-cyrillic 1.0.4

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 07:09:17 UTC MAIN commitmail json YAML

font-jis-misc: update to 1.0.4.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient
and using the -n flag to gzip to improve build reproducibility.

Alan Coopersmith (10):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      Use COMPRESS_FLAGS to improve build reproducibility
      font-jis-misc 1.0.4

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 07:08:50 UTC MAIN commitmail json YAML

doc: Updated fonts/font-isas-misc to 1.0.4

(wiz)

2023-02-28 07:08:42 UTC MAIN commitmail json YAML

font-isas-misc: update to 1.0.4.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient
and using the -n flag to gzip to improve build reproducibility.

Alan Coopersmith (10):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      Use COMPRESS_FLAGS to improve build reproducibility
      font-isas-misc 1.0.4

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 07:08:10 UTC MAIN commitmail json YAML

doc: Updated fonts/font-ibm-type1 to 1.0.4

(wiz)

2023-02-28 07:08:02 UTC MAIN commitmail json YAML

font-ibm-type1: update to 1.0.4.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient.

Alan Coopersmith (9):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      font-ibm-type1 1.0.4

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 07:07:30 UTC MAIN commitmail json YAML

doc: Updated fonts/encodings to 1.0.7

(wiz)

2023-02-28 07:07:16 UTC MAIN commitmail json YAML

encodings: update to 1.0.7.

This release bundles up the last six months worth of build system
improvements, including making the configure script more efficient
and using the -n flag to gzip to improve build reproducibility.

Alan Coopersmith (5):
      gitlab CI: stop requiring Signed-off-by in commits
      configure: replace deprecated AC_HELP_STRING with AS_HELP_STRING
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      configure: Add COMPRESS_FLAGS to pass options to compression command
      font-encodings 1.0.7

(wiz)

2023-02-28 07:06:57 UTC MAIN commitmail json YAML

doc: Updated fonts/font-dec-misc to 1.0.4

(wiz)

2023-02-28 07:06:29 UTC MAIN commitmail json YAML

font-dec-misc: update to 1.0.4.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient
and using the -n flag to gzip to improve build reproducibility.

Alan Coopersmith (10):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      Use COMPRESS_FLAGS to improve build reproducibility
      font-dec-misc 1.0.4

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 07:05:55 UTC MAIN commitmail json YAML

doc: Updated fonts/font-daewoo-misc to 1.0.4

(wiz)

2023-02-28 07:05:47 UTC MAIN commitmail json YAML

font-daewoo-misc: update to 1.0.4.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient
and using the -n flag to gzip to improve build reproducibility.

Alan Coopersmith (10):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      Use COMPRESS_FLAGS to improve build reproducibility
      font-daewoo-misc 1.0.4

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 07:05:08 UTC MAIN commitmail json YAML

doc: Updated fonts/font-cursor-misc to 1.0.4

(wiz)

2023-02-28 07:05:00 UTC MAIN commitmail json YAML

font-cursor-misc: update to 1.0.4.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient
and using the -n flag to gzip to improve build reproducibility.

Alan Coopersmith (10):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      Use COMPRESS_FLAGS to improve build reproducibility
      font-cursor-misc 1.0.4

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 07:04:21 UTC MAIN commitmail json YAML

doc: Updated fonts/font-cronyx-cyrillic to 1.0.4

(wiz)

2023-02-28 07:04:07 UTC MAIN commitmail json YAML

font-cronyx-cyrillic: update to 1.0.4.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient
and using the -n flag to gzip to improve build reproducibility.

Alan Coopersmith (10):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      Use COMPRESS_FLAGS to improve build reproducibility
      font-cronyx-cyrillic 1.0.4

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 07:03:33 UTC MAIN commitmail json YAML

doc: Updated fonts/font-bitstream-type1 to 1.0.4

(wiz)

2023-02-28 07:03:24 UTC MAIN commitmail json YAML

font-bitstream-type1: update to 1.0.4.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient.

Alan Coopersmith (9):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      font-bitstream-type1 1.0.4

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 07:02:42 UTC MAIN commitmail json YAML

doc: Updated fonts/font-bitstream-75dpi to 1.0.4

(wiz)

2023-02-28 07:02:34 UTC MAIN commitmail json YAML

font-bitstream: update to 1.0.4.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient
and using the -n flag to gzip to improve build reproducibility.

Alan Coopersmith (10):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      Use COMPRESS_FLAGS to improve build reproducibility
      font-bitstream-75dpi 1.0.4

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 07:01:56 UTC MAIN commitmail json YAML

doc: Updated fonts/font-bitstream-100dpi to 1.0.4

(wiz)

2023-02-28 07:01:47 UTC MAIN commitmail json YAML

font-bitstream: update to 1.0.4.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient
and using the -n flag to gzip to improve build reproducibility.

Alan Coopersmith (10):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      Use COMPRESS_FLAGS to improve build reproducibility
      font-bitstream-100dpi 1.0.4

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 07:01:08 UTC MAIN commitmail json YAML

doc: Updated fonts/font-bh-type1 to 1.0.4

(wiz)

2023-02-28 07:00:07 UTC MAIN commitmail json YAML

doc: Updated fonts/font-bh-ttf to 1.0.4

(wiz)

2023-02-28 07:00:00 UTC MAIN commitmail json YAML

font-bh-ttf: update to 1.0.4.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient.

Alan Coopersmith (9):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      font-bh-ttf 1.0.4

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 06:58:55 UTC MAIN commitmail json YAML

doc: Updated fonts/font-bh-lucidatypewriter-75dpi to 1.0.4

(wiz)

2023-02-28 06:58:47 UTC MAIN commitmail json YAML

font-bh-lucidatypewriter: update to 1.0.4.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient
and using the -n flag to gzip to improve build reproducibility.

Alan Coopersmith (10):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      Update README for gitlab migration
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      Use COMPRESS_FLAGS to improve build reproducibility
      font-bh-lucidatypewriter-75dpi 1.0.4

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 06:58:00 UTC MAIN commitmail json YAML

doc: Updated fonts/font-bh-lucidatypewriter-100dpi to 1.0.4

(wiz)

2023-02-28 06:57:45 UTC MAIN commitmail json YAML

font-bh-lucidatypewriter-100dpi: update to 1.0.4.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient
and using the -n flag to gzip to improve build reproducibility.

Alan Coopersmith (10):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      Use COMPRESS_FLAGS to improve build reproducibility
      font-bh-lucidatypewriter-100dpi 1.0.4

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 06:56:53 UTC MAIN commitmail json YAML

doc: Updated fonts/font-bh-75dpi to 1.0.4

(wiz)

2023-02-28 06:56:37 UTC MAIN commitmail json YAML

font-bh-75dpi: update to 1.0.4.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient
and using the -n flag to gzip to improve build reproducibility.

Alan Coopersmith (10):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      Use COMPRESS_FLAGS to improve build reproducibility
      font-bh-75dpi 1.0.4

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 06:55:46 UTC MAIN commitmail json YAML

doc: Updated fonts/font-bh-100dpi to 1.0.4

(wiz)

2023-02-28 06:55:37 UTC MAIN commitmail json YAML

font-bh: update to 1.0.4.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient
and using the -n flag to gzip to improve build reproducibility.

Alan Coopersmith (10):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      Use COMPRESS_FLAGS to improve build reproducibility
      font-bh-100dpi 1.0.4

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 06:54:30 UTC MAIN commitmail json YAML

doc: Updated fonts/font-arabic-misc to 1.0.4

(wiz)

2023-02-28 06:54:22 UTC MAIN commitmail json YAML

font-arabic-misc: update to 1.0.4.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient
and using the -n flag to gzip to improve build reproducibility.

Alan Coopersmith (10):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      Use COMPRESS_FLAGS to improve build reproducibility
      font-arabic-misc 1.0.4

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 06:53:39 UTC MAIN commitmail json YAML

doc: Updated fonts/font-alias to 1.0.5

(wiz)

2023-02-28 06:53:31 UTC MAIN commitmail json YAML

font-alias: update to 1.0.5.

This release bundles up the last two years worth of build system
improvements, including making the configure script more efficient.

Alan Coopersmith (6):
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      configure: replace deprecated AC_HELP_STRING with AS_HELP_STRING
      configure: Switch to XORG_DEFAULT_NOCODE_OPTIONS
      font-alias 1.0.5

Gaetan Nadon (1):
      configure: update AC_PREREQ statement to 2.60

(wiz)

2023-02-28 06:52:40 UTC MAIN commitmail json YAML

doc: Updated fonts/font-adobe-utopia-75dpi to 1.0.5

(wiz)

2023-02-28 06:52:32 UTC MAIN commitmail json YAML

font-adobe-utopia: update to 1.0.5.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient
and using the -n flag to gzip to improve build reproducibility.

Alan Coopersmith (10):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      Use COMPRESS_FLAGS to improve build reproducibility
      font-adobe-utopia-75dpi 1.0.5

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 06:51:31 UTC MAIN commitmail json YAML

doc: Updated fonts/font-adobe-utopia-type1 to 1.0.5

(wiz)

2023-02-28 06:51:22 UTC MAIN commitmail json YAML

font-adobe-utopia-type1: update to 1.0.5.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient.

Alan Coopersmith (9):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      font-adobe-utopia-type1 1.0.5

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 06:50:10 UTC MAIN commitmail json YAML

doc: Updated fonts/font-adobe-utopia-100dpi to 1.0.5

(wiz)

2023-02-28 06:50:02 UTC MAIN commitmail json YAML

font-adobe-utopia: update to 1.0.5.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient
and using the -n flag to gzip to improve build reproducibility.

Alan Coopersmith (10):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      Use COMPRESS_FLAGS to improve build reproducibility
      font-adobe-utopia-100dpi 1.0.5

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 06:49:14 UTC MAIN commitmail json YAML

font-adobe: update to 1.0.4.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient
and using the -n flag to gzip to improve build reproducibility.

Alan Coopersmith (10):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      Use COMPRESS_FLAGS to improve build reproducibility
      font-adobe-75dpi 1.0.4

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo: font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-28 06:16:43 UTC MAIN commitmail json YAML

Updated games/scummvm, textproc/py-natsort

(adam)

2023-02-28 06:16:23 UTC MAIN commitmail json YAML

py-natsort: updated to 8.3.0

8.3.0

Added
- The `PRESORT` option to the `ns` enum to attain consistent
  sort order in certain corner cases
- Logic to ensure `None` and NaN are sorted in a consistent order
- Explict Python 3.11 support

Changed
- Only convert to `str` if necessary in `os_sorted`
- Attempt to use new `fastnumbers` functionality if available
- Move non-API documentation to the GitHub wiki

Removed
- Support for EOL Python 3.6

(adam)

2023-02-28 06:13:57 UTC MAIN commitmail json YAML

scummvm: updated to 2.7.0

2.7.0 (2023-02-26)

New games:
  - Added support for Soldier Boyz.
  - Added support for C64 and ZX Spectrum versions of GLK Scott Adams
    Interactive Fiction games.
  - Added support for GLK Scott Adams adventures 1-12 in the TI99/4A format.
  - Added support for Obsidian.
  - Added support for Pink Panther: Passport to Peril.
  - Added support for Pink Panther: Hokus Pokus Pink.
  - Added support for Adibou 2 "Environment", "Read/Count 4 & 5" and "Read/Count 6 & 7".
  - Added support for Driller/Space Station Oblivion (DOS/EGA/CGA, Amiga, AtariST, ZX Spectrum and Amstrad CPC versions).
  - Added support for Halls of the Dead: Faery Tale Adventure II.

New platforms:
  - Added support for the RetroMini RS90 under OpenDingux beta.
  - Added support for the 1st generation Miyoo (New BittBoy, Pocket Go and PowKiddy Q90-V90-Q20) under TriForceX MiyooCFW.
  - Added support for the Miyoo Mini.
  - Added support for KolibriOS.

General:
  - Reduced amount of false positives in Mass Add.
  - Updated the Roland MT-32 emulation code to Munt mt32emu 2.7.0.
  - Added support for shader-based scalers.
  - Added option for mono sound output (via --output-channels=CHANNELS command
    line option).
  - Improved cursor scaling in OpenGL mode.
  - Fix crash when browsing folders containing files with \1 in the names.
  - Added possibility to specify RNG seed via GUI or command line option.
  - Added possibility to run ScummVM in autodetection mode by renaming the
    executable starting with 'scummvm-auto' or by providing an empty file
    named 'scummvm-autorun' next to the ScummVM executable.
  - Added possibility to supply command line parameters which will be picked
    up automatically. Put them one per line in a file named 'scummvm-autorun'.
  - Added possibility to customize the default settings by specifying an initial
    configuration file to load if no configuration file exists in the usual
    location (via --initial-cfg=FILE or -i command line option).
  - Added support for loading game resources which are bigger than 2GB on more
    platforms.

AGI:
  - Improved support for French translations.

AGOS:
  - Added option to disable the fade-out effects on room transition for
    Simon1 and 2.

AGS:
  - Added support for the original installer files for Maniac Mansion Deluxe and
    The New Adventures of Zak McKracken.

Director:
  - Support for Pippin version of L-Zone.
  - Fix a bug caused by use of slash in filename.

Dreamweb:
  - Support playing from the original installer floppies.

Hadesch:
  - Added support for a 1997 release.

Kyra:
  - Added support for the Korean version of Legend of Kyrandia 1.
  - Support multi-floppy mac kyra1 both as installer floppies and as installed directory.
  - Added support for the Hebrew version of Legend of Kyrandia 3.

MADS:
  - Added support for original floppy installer file layout for Rex Nebular.

Neverhood:
  - Added support for Japanese version of Neverhood.
  - Support localizations by -=CHE@TER=- & Rigel.

Plumbers:
  - Fixed crash with windows version.

Private:
  - Allow playing mac version directly from installer CD.
  - Added support for Japanese/Mac version

Queen:
  - Added option for using a better font in Hebrew version.

SAGA:
  - Added support for Chinese Inherit the Earth.
  - Added support for Chinese I Have no Mouth and I Must Scream.
  - Added support for Korean I Have no Mouth and I Must Scream.
  - Added support for playing directly from floppy installer for ITE.
  - Support for Amiga (AGA/ECS, Retail/Demo, English/German) Inherit the Earth.

SCI:
  - Improved text rendering for Macintosh titles.
  - Added support for Casio MT-540, CT-460 and CSM-1 MIDI devices for the SCI0
    games that originally supported it.

SCUMM:
  - Added support for CGA, CGA Composite, CGA black & white and Hercules modes
    for SCUMM 1 versions of Zak McKracken and Maniac Mansion.
  - Improved accuracy of CGA and Hercules modes for SCUMM 2 (enhanced) versions of
    Zak McKracken and Maniac Mansion.
  - Improved accuracy of CGA and Hercules modes for Monkey Island 1 (EGA version
    only - the VGA version does not have CGA and Hercules modes).
  - Fixed some minor glitches for the CGA mode of Loom.
  - Added EGA dithering mode for VGA versions of Loom, Monkey Island 1 and 2 and
    Indiana Jones 4.
  - Fixed a possible dead-end in the Ultimate Talkie Edition of Monkey Island 2,
    if one doesn't pick up a required item before Captain Dread brings Guybrush
    back to Scabb Island, at the end of Part II.
  - Fixed various original game bugs, oversights and continuity errors (only
    when using the "Enable game-specific enhancements" setting).
  - Improved the decoding of some Western European game strings when they're
    displayed through ScummVM's interface, such as when pausing a game.
  - Fixed the navigator head not pointing to some directions in Monkey
    Island 1, in the original releases without the enhanced verb interface.
  - Fixed slightly inaccurate text position in v4 games and in Loom v3.
  - For Sam & Max, it is now possible to shoot down the text lines of the
    final credits with the crosshair mouse cursor, just like in the original.
  - Fixed lipsync issues in the final scene of Freddi Fish 4.
  - Fixed The Dig and COMI loading cursors not being shown when they should.
  - Improved the accuracy of some audio drivers, which was notably impacting
    the pitch bending effect in the DOTT intro music.
  - In COMI, only let Guybrush read the clock of Puerto Pollo in the English,
    Italian and (fan-made) Russian versions of the game, matching the behavior
    of the original interpreters (probably because of the poor results in the
    other languages).
  - Improved support for Hebrew HE game localizations.
  - Fixed Roland MT-32 support in Sam & Max.
  - Implemented original GUI and save menus for LucasArts games (DOS, Windows,
    Amiga, Macintosh, FM-Towns, SegaCD, Atari ST, NES and Commodore 64 versions).
    Also activate the general "Ask for confirmation on exit" option for a more
    authentic '90s experience!
  - Fixed minor timing issues for the SMUSH video engine, mostly affecting
    Full Throttle.
  - Added a low latency audio mode to Full Throttle, The Dig and The Curse of
    Monkey Island; this can improve audio performance expecially in non-desktop
    devices, but it is also a little less accurate than the original.
  - Implemented reloading CD audio for Monkey Island 1 and Loom (CD versions),
    when reloading a save state.

Sherlock:
  - Added support for Chinese Rose Tattoo.

Sky:
  - Added support for Chinese Beneath a Steel Sky.

Sword1:
  - Support Novy Disk Russian translation.
  - Fixed launching various demos.
  - Switched detection to md5-based. Submit your unrecognized versions!

Sword2:
  - Switched detection to md5-based. Submit your unrecognized versions!

Tinsel:
  - Fixed Discworld II subtitle colors on big-endian ports.

Toon:
  - Made game menus behave like in the original.

TwinE:
  - Fixed rendering issue with doors.
  - Fixed invalid music pause in behaviour and inventory menu.
  - Fixed giving kashes instead of hearts as fallback.
  - Fixed item flashing when they drop.
  - Fixed meca penguin angle at spawn.
  - Fixed background redraw when watching cutscenes at the television.
  - Fixed recenter the screen on activating an inventory item.
  - Fixed pressing W to talk to people also makes you jump.

Ultima8:
  - Added support for saving and resizing of minimap.
  - Adjust cursor to behave closer to the original.
  - Adjust item quantity slider to behave closer to the original.

Xeen:
  - Several crash fixes for Clouds of Xeen.
  - Wait until farewell finishes before leaving shops.
  - Don't reload map after leaving character creation.
  - Implement correct clouds falling logic for Swords of Xeen.
  - Fix GateMaster monster in Underworld map.

3DS port:
  - Update relocation parser to support PREL31 that are emitted by new compiler.
  - Do more autoconfiguration in ./configure.

Android port:
  - Added Storage Access Framework support.
  - Improved support for game controllers.

iOS port:
  - Added pointer device support.
  - Improved suppport for touchpad mode.
  - Added support for games that use 32 bit pixel formats.

Nintendo DS port:
  - Added a splash screen to the top screen when the launcher is active.

OpenDingux port:
  - Added support for dynamic plugins.

PS Vita port:
  - Added support for dynamic plugins.

PSP port:
  - Improved support for games that use 32 bit pixel formats.

RISC OS port:
  - Added support for 26-bit versions of RISC OS.

(adam)

2023-02-27 21:58:18 UTC MAIN commitmail json YAML

userspace-rcu: fix pattern

NetBSD 10 is supposed to be supported

(wiz)

2023-02-27 21:29:37 UTC MAIN commitmail json YAML

poke: add myself as MAINTAINER.

I somehow forgot to do it when importing the package.

(fcambus)

2023-02-27 20:35:35 UTC MAIN commitmail json YAML

osv-scanner: allow use of the C compiler

With Go 1.20, some code now needs to compile some cgo code that didn't in
older versions.

(bsiegert)

2023-02-27 20:32:39 UTC MAIN commitmail json YAML

oauth2c: allow using the C compiler

With Go 1.20, which no longer delivers a compiled version of the standard
library, some code that did not need it now needs to compile some cgo code,
which needs a compiler.

(bsiegert)

2023-02-27 20:21:24 UTC MAIN commitmail json YAML

doc: Updated fonts/font-adobe-100dpi to 1.0.4

(wiz)

2023-02-27 20:21:12 UTC MAIN commitmail json YAML

font-adobe: update to 1.0.4.

This release bundles up the last twelve years worth of build system
improvements, including making the configure script more efficient
and using the -n flag to gzip to improve build reproducibility.

Alan Coopersmith (10):
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      gitlab CI: stop requiring Signed-off-by in commits
      Switch to XORG_DEFAULT_NOCODE_OPTIONS
      Use COMPRESS_FLAGS to improve build reproducibility
      font-adobe-100dpi 1.0.4

Emil Velikov (1):
      autogen.sh: use quoted string variables

Gaetan Nadon (2):
      config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
      config: update AC_PREREQ statement to 2.60

Matthieu Herrb (1):
      Typo font.dir -> fonts.dir

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2023-02-27 20:18:40 UTC MAIN commitmail json YAML

ipget: allow use of the C compiler

Sometimes, compiling ipget needs to rebuild a cgo package, which needs a C
compiler.

(bsiegert)

2023-02-27 20:08:37 UTC MAIN commitmail json YAML

mail/alpine: package revision.

* Add kerberos and pam build options (enabled by default).
* Add inet6 and pthread build options (enabled by default if supported).
* Remove tcl support from options.mk until an install target for web alpine
  files isn't implemented.
* Pull upstream patch providing additional compose subcommands.
* Bump revision.

(vins)

2023-02-27 19:53:46 UTC MAIN commitmail json YAML

doc: Updated www/libmicrohttpd to 0.9.76

(nikita)

2023-02-27 19:53:33 UTC MAIN commitmail json YAML

libmicrohttpd: update to version 0.9.76

ChangeLog:

Sun Feb 26 05:49:30 PM CET 2023
    Fix potential DoS vector in MHD_PostProcessor discovered
    by Gynvael Coldwind and Dejan Alvadzijevic. -CG
    Releasing GNU libmicrohttpd 0.9.76 hotfix. -CG

(nikita)

2023-02-27 19:49:33 UTC MAIN commitmail json YAML

kalker: recognize 7455 and 7447 powerpc variants in gmp vendor module.

Fixes build problem on my particular macppc hosts.

(he)

2023-02-27 19:43:30 UTC MAIN commitmail json YAML

doc: Added devel/rust-bindgen version 0.64.0

(nikita)

2023-02-27 19:43:13 UTC MAIN commitmail json YAML

devel/rust-bindgen: import rust-bindgen version 0.64.0

Imported from wip.

Bindgen automatically generates Rust FFI bindings to C (and some C++)
libraries.
It produces Rust FFI code allowing you to call into the C or C++
library's functions and use its types.

(nikita)

2023-02-27 18:55:13 UTC MAIN commitmail json YAML

doc: Added devel/py-pip2pi version 0.8.2

(nikita)

2023-02-27 18:54:52 UTC MAIN commitmail json YAML

devel/pip2pi: import as pip2pi version 0.8.2

Imported from wip.

pip2pi builds a PyPI-compatible package repository from pip
requirements.

(nikita)

2023-02-27 18:14:05 UTC MAIN commitmail json YAML

doc: Added www/p5-Mojolicious-Plugin-OAuth2-Server version 0.47

(nikita)

2023-02-27 18:13:34 UTC MAIN commitmail json YAML

www/p5-Mojolicious-Plugin-OAuth2-Server: import as p5-Mojolicious-Plugin-OAuth2-Server version 0.47

Imported from wip, packaged by coypu.

    This plugin implements the various OAuth2 grant types flow as
    described at http://tools.ietf.org/html/rfc6749. It is a complete
    implementation of RFC6749, with the exception of the "Extension
    Grants" as the description of that grant type is rather hand-wavy.

    The bulk of the functionality is implemented in the
    Net::OAuth2::AuthorizationServer distribution, you should see that
    for more comprehensive documentation and examples of usage.

    The examples here use the "Authorization Code Grant" flow as that
    is considered the most secure and most complete form of OAuth2.

(nikita)

2023-02-27 18:02:12 UTC MAIN commitmail json YAML

doc: Added www/p5-Mojo-JWT version 0.08

(nikita)

2023-02-27 18:00:43 UTC MAIN commitmail json YAML

www/p5-Mojo-JWT: import as p5-Mojo-JWT version 0.08

Import from wip, packaged by coypu.

    JSON Web Token is described in https://tools.ietf.org/html/rfc7519.
    Mojo::JWT implements that standard with an API that should feel
    familiar to Mojolicious users (though of course it is useful
    elsewhere). Indeed, JWT is much like Mojolicious::Sessions except
    that the result is a url-safe text string rather than a cookie.

    In JWT, the primary payload is called the claims, and a few claims
    are reserved, as seen in the IETF document. The header and the
    claims are signed when stringified to guard against tampering. Note
    that while signed, the data is not encrypted, so don't use it to
    send secrets over clear channels.

(nikita)

2023-02-27 13:59:14 UTC MAIN commitmail json YAML

cad/kicad: Require C++17 and GCC 8

The new version uses <charconv>, and fails to build with gcc 7.  kicad
builds with gcc10, and likely builds with 8 (based on nodejs building
with 8, after showing the same charconv failure).  Therefore this
commit is an improvment, and if 8 fails we can reassess.

(gdt)

2023-02-27 13:58:25 UTC MAIN commitmail json YAML

Updated devel/py-mulpyplexer, net/py-scp

(adam)

2023-02-27 13:58:06 UTC MAIN commitmail json YAML

py-scp: updated to 0.14.5

0.14.5 (2023-01-30)
- Update docstrings to clarify sanitation and use of wildcards
- Make sure to close the local file on errors

(adam)

2023-02-27 13:56:17 UTC MAIN commitmail json YAML

py-mulpyplexer: updated to 0.09

0.09
Unknown changes

(adam)

2023-02-27 13:52:03 UTC MAIN commitmail json YAML

lang/nodejs: Require GCC 8

GCC 7 fails due to <charconv>, even if gcc's page says 7 supports C++17.
(Build tested on netbsd-9 amd64.)

(gdt)

2023-02-27 13:07:56 UTC MAIN commitmail json YAML

doc: Updated math/py-pythran to 0.12.1nb1

(jperkin)

2023-02-27 13:07:47 UTC MAIN commitmail json YAML

2023-02-27 12:38:45 UTC MAIN commitmail json YAML

Updated security/gnupg2, multimedia/libass

(adam)

2023-02-27 12:38:05 UTC MAIN commitmail json YAML

libass: updated to 0.17.1

libass (0.17.1)
* Fix buffer overread if soft-wrapping occurred and
  ASS_FEATURE_WHOLE_TEXT_LAYOUT was enabled via API or due to Encoding -1
  (bug introduced in 0.16.0)
* x86: detect GNU Hurd and configure NASM appropriately

(adam)

2023-02-27 12:35:36 UTC MAIN commitmail json YAML

gnupg2: updated to 2.4.0

Noteworthy changes in version 2.4.0 (2022-12-16)
------------------------------------------------

* gpg: New command --quick-update-pref.  [rGd40d23b233]

* gpg: New list-options show-pref and show-pref-verbose.
  [rG811cfa34cb]

* gpg: New option --list-filter to restrict key listings like
    gpg -k --list-filter 'select=revoked-f && sub/algostr=ed25519'
  [rG1324dc3490]

* gpg: New --export-filter export-revocs.  [rGc985b52e71]

* gpg: Also import stray revocation certificates.  [rG7aaedfb107]

* gpg: Add a notation to encryption subkeys in de-vs mode.  [T6279]

* gpg: Improve signature verification speed by a factor of more than
  four.  Double detached signing speed.  [T5826]

* gpg: Allow only OCB for AEAD encryption.  [rG5a2cef801d]

* gpg: Fix trusted introducer for mbox only user-ids.  [T6238]

* gpg: Report an error via status-fd for receiving a key from the
  agent.  [T5151]

* gpg: Make --require-compliance work without the --status-fd
  option.  [rG2aacd843ad]

* gpg: Fix verification of cleartext signatures with overlong lines.
  [T6272]

* agent: Fix import of protected OpenPGP v5 keys.  [T6294]

* gpgsm: Change the default cipher algorithm from AES128 to AES256.
  Also announce support for this in signatures.  [rG2d8ac55d26]

* gpgsm: Always use the chain validation model if the root-CA
  requests this.  [rG7fa1d3cc82]

* gpgsm: Print OCSP revocation date and reason in cert listings.
  [rGb6abaed2b5]

* agent: Support Win32-OpenSSH emulation by gpg-agent.  [T3883]

* scd: Support the Telesec Signature Card v2.0.  [T6252]

* scd: Redact --debug cardio output of a VERIFY APDU.  [T5085]

* scd: Skip deleted pkcs#15 records in CARDOS 5.  [rG061efac03f]

* dirmngr: Fix build with no LDAP support.  [T6239]

* dirmngr: Fix verification of ECDSA signed CRLs.  [rG868dabb402]

* wkd: New option --add-revocs for gpg-wks-client.  [rGc3f9f2d497]

* wkd: Ignore expired user-ids in gpg-wks-client.  [T6292]

* card: New commands "gpg" and "gpgsm".  [rG9c4691c73e]

(adam)

2023-02-27 11:23:23 UTC MAIN commitmail json YAML

2023-02-27 11:14:11 UTC MAIN commitmail json YAML

wireshark: when compiling with qt6, use GCC 9

qt6 also requires gcc 9 and using 8 here doesn't work

(wiz)

2023-02-27 11:09:41 UTC MAIN commitmail json YAML

2023-02-27 10:45:10 UTC MAIN commitmail json YAML

dav1d: SunOS needs -D__EXTENSIONS__

(jperkin)

2023-02-27 10:44:34 UTC MAIN commitmail json YAML

libproxy: Fix SunOS ld args.

(jperkin)

2023-02-27 10:23:37 UTC MAIN commitmail json YAML