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 (30m)  pkgsrc-2024Q1 (14d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (74d)  pkgsrc-2023Q3 (154d) 

2024-05-13 01:13:58 UTC Now

2022-02-11 20:14:14 UTC MAIN commitmail json YAML

Update to mmorph-1.2.0

1.2.0
    BREAKING CHANGE: Remove instances for ErrorT and ListT
        These types are deprecated

(pho)

2022-02-11 19:59:02 UTC MAIN commitmail json YAML

doc: Updated devel/hs-optparse-applicative to 0.17.0.0

(pho)

2022-02-11 19:58:54 UTC MAIN commitmail json YAML

Update to optparse-applicative-

Version 0.17.0.0 (1 Feb 2022)
* Make tabulation width configurable in usage texts.
* Separate program name and description in ParserHelp type.
* Add helperWith function, which can be easily used to localize the help
  flag.
* Improve usage texts when command names are long.
* Improve Documentation.

(pho)

2022-02-11 19:55:41 UTC MAIN commitmail json YAML

doc: Updated devel/hs-storable-record to 0.0.6

(pho)

2022-02-11 19:55:33 UTC MAIN commitmail json YAML

2022-02-11 19:49:31 UTC MAIN commitmail json YAML

doc: Updated math/hs-semigroups to 0.20

(pho)

2022-02-11 19:49:22 UTC MAIN commitmail json YAML

Update to semigroups-0.20

0.20 [2021.11.15]
* Support hashable-1.4. The Hashable1 instances added in 0.19.2 are removed
  for all types except NonEmpty, in accordance with the corresponding
  changes from hashable-1.4.

0.19.2 [2021.08.30]
* Backport Hashable1 instances for NonEmpty, Min, Max, First, Last,
  WrappedMonoid, and Option.

(pho)

2022-02-11 19:47:58 UTC MAIN commitmail json YAML

2022-02-11 19:47:44 UTC MAIN commitmail json YAML

2022-02-11 18:02:42 UTC MAIN commitmail json YAML

doc: Updated devel/hs-vector-th-unbox to 0.2.2

(pho)

2022-02-11 18:02:34 UTC MAIN commitmail json YAML

Update to vector-th-unbox-0.2.2

0.2.2
    Fixed the build failure on GHC 9.2
    Dropped the support for GHC older than 8.0

(pho)

2022-02-11 17:52:09 UTC MAIN commitmail json YAML

doc: Updated textproc/hs-megaparsec to 9.2.0

(pho)

2022-02-11 17:51:59 UTC MAIN commitmail json YAML

Update to megaparsec-

Megaparsec 9.2.0
* Added parsers for binary representations (little/big endian) of numbers
  in Text.Megaparsec.Byte.Binary.

Megaparsec 9.1.0
* Added dbg' in Text.Megaparsec.Debug for debugging parsers that have
  unshowable return values.
* Documentation improvements.

(pho)

2022-02-11 17:49:13 UTC MAIN commitmail json YAML

doc: Updated misc/cabal-install to 3.6.2.0

(pho)

2022-02-11 17:49:05 UTC MAIN commitmail json YAML

2022-02-11 17:46:20 UTC MAIN commitmail json YAML

doc: Updated security/hs-x509 to 1.7.6

(pho)

2022-02-11 17:46:11 UTC MAIN commitmail json YAML

2022-02-11 16:14:12 UTC MAIN commitmail json YAML

doc: Updated sysutils/hs-fast-logger to 3.1.1

(pho)

2022-02-11 16:14:03 UTC MAIN commitmail json YAML

Update to fast-logger-3.1.1

3.1.1
* More time-ordered logging functions
  [#199](https://github.com/kazu-yamamoto/logger/pull/199

3.1.0
* Having a single Buffer in LoggerSet for locking
  [#197](https://github.com/kazu-yamamoto/logger/pull/197. This would have
  performance penalty. So, the major version bumps up. If you see
  performance regression, please register an issue on github.

(pho)

2022-02-11 15:57:26 UTC MAIN commitmail json YAML

doc: Updated wm/xmonad to 0.17.0

(pho)

2022-02-11 15:57:01 UTC MAIN commitmail json YAML

Update to xmonad-0.17.0

0.17.0 (October 27, 2021)
Enhancements
* Migrated X.L.LayoutCombinators.(|||) into XMonad.Layout, providing the
  ability to directly jump to a layout with the JumpToLayout message.
* Recompilation now detects stack.yaml (can be a symlink) alongside
  xmonad.hs and switches to using stack ghc. We also updated INSTALL.md
  with instructions for cabal-install that lead to correct recompilation.
* Deprecation warnings during recompilation are no longer suppressed to
  make it easier for us to clean up the codebase. These can still be
  suppressed manually using an OPTIONS_GHC pragma with -Wno-deprecations.
* Improve handling of XDG directories.
  * If all three of xmonad's environment variables (XMONAD_DATA_DIR,
    XMONAD_CONFIG_DIR, and XMONAD_CACHE_DIR) are set, use them.
  * If there is a build script called build (see these build scripts for
    usage examples) or configuration xmonad.hs in ~/.xmonad, set all three
    directories to ~/.xmonad.
  * Otherwise, use the xmonad directory in XDG_DATA_HOME, XDG_CONFIG_HOME,
    and XDG_CACHE_HOME (or their respective fallbacks). These directories
    are created if necessary.
* In the cases of 1. and 3., the build script or executable is expected to
  be in the config dir.
* Additionally, the xmonad config binary and intermediate object files were
  moved to the cache directory (only relevant if using XDG or
  XMONAD_CACHE_DIR).
* Added Foldable, Functor, and Traversable instances for Stack.
* Added Typeable layout constraint to LayoutClass, making it possible to
  cast Layout back into a concrete type and extract current layout state
  from it.
* Export constructor for Choose and CLR from Module.Layout to allow
  pattern-matching on the left and right sub-layouts of Choose l r a.
* Added withUnfocused function to XMonad.Operations, allowing for X
  operations to be applied to unfocused windows.

Bug Fixes
* Fixed a bug when using multiple screens with different dimensions,
  causing some floating windows to be smaller/larger than the size they
  requested.
* Compatibility with GHC 9.0
* Fixed dunst notifications being obscured when moving
  floats. https://github.com/xmonad/xmonad/issues/208

Breaking Changes
* Made (<&&>) and (<||>) non-strict in their right operand; i.e., these
  operators now implement short-circuit evaluation so the right operand is
  evaluated only if the left operand does not suffice to determine the
  result.
* Change ScreenDetail to a newtype and make RationalRect strict in its
  contents.
* Added the extensibleConf field to XConfig which makes it easier for
  contrib modules to have composable configuration (custom hooks, …).
* util/GenerateManpage.hs is no longer distributed in the tarball. Instead,
  the manpage source is regenerated and manpage rebuilt automatically in
  CI.
* DestroyWindowEvent is now broadcasted to layouts to let them know
  window-specific resources can be discarded.

(pho)

2022-02-11 15:53:43 UTC MAIN commitmail json YAML

doc: Updated x11/hs-X11 to 1.10.2

(pho)

2022-02-11 15:53:34 UTC MAIN commitmail json YAML

Update to X11-1.10.2

1.10.2 (2021-10-24)
* Restored compatibility with GHC 7.10 (and possibly even older) (#80)

1.10.1 (2021-08-15)
* Fixed possible high CPU usage of some blocking calls with the threaded
  RTS (#78)

1.10 (2021-05-31)
* Added setClientMessageEvent' (#71)
* Fixed type of xrrUpdateConfiguration (#72)
* Fixed bottom when deserializing XRRNotifyEvent in getEvent (#72)
* Added xrrGetMonitors and XRRMonitorInfo (#42)
* Added setClassHint (#76)
* Added a few missing event mask fields to WindowAttributes (#77)

(pho)

2022-02-11 15:43:35 UTC MAIN commitmail json YAML

games/prboom-plus: Install XDG desktop and icon files

Bump PKGREVISION.

(micha)

2022-02-11 15:20:14 UTC MAIN commitmail json YAML

games/woof: Documentation fix

Variable in INSTALL.pkgsrc was not replaced.
Bump PKGREVISION.

(micha)

2022-02-11 15:13:50 UTC MAIN commitmail json YAML

doc: Updated games/prboom-plus to 2.6.2

(micha)

2022-02-11 15:12:42 UTC MAIN commitmail json YAML

games/prboom-plus: Update to 2.6.2

PrBoom-Plus 2.6.2 @ 11 Feb 2022
- added a prospective fix for OpenGL rendering: don't bleed walls
  through sky floors
- account for proper crosshair offsets when locked on to monsters
- relaxed "IWAD tag not present" error to a warning, which allows
  loading REKKR IWAD
- fixed processing of multiple DEHs
- UMAPINFO: fixed error reporting if token == TK_NoToken
- fixed intermission screen for E0Mx
- fixed Alt+Tabbing on Windows, broken in new SDL2 version
- UMAPINFO: fixed using_FMI reset * no more crashes at textscreens
  (e.g. after MAP06, MAP11 or MAP20) after viewing finale picture upon
  finishing a level with UMAPINFO 'endpic' property
- fixed freezing at TITLEPIC while using mousewheel in menus
- fixed looping forever in G_NextWeapon()
- UMAPINFO: fix 'entering' and 'enterpic' shown on exit levels
- GL: adjust sky offsets for non-standard FOVs
- fixed stuttering with uncapped framerate
- added support for widescreen low resolutions
- added REKKR to launcher string list
- let G_GotoNextLevel() close the circle for maps with an endpic
- Launcher: identify IWADs either by IWAD tag, or by PWAD tag and
  matching filename
- Portmidi: fix freeze after song change
- fixed scaled time interpolation when changing game speed
- fixed wrong pitch of SFX when MIDI Player is set to SDL
- v1.2 compat:
  * do not use sfx_getpow for powerups
  * do not render powerups and attacking Spiderdemon fullbright
- UMAPINFO: fixed par times not showing
- fixed demo playback warp consistency
- added SKILL cheat to display current skill level
- fixed calculation of interpolation frac value
- guard against screen buffer underflow
- fixed crash at startup by properly closing IWAD file handle
- added vanilla_keymap option à la Chocolate Doom
- added 'run' as a mouse-settable control (mouseb_speed)

PrBoom-Plus 2.6.1um @ 16 Aug 2021
- fixed MOD playback with DUMB 2.x
- added TNTCLxx cheat, e.g. TNTCL04 sets complevel 4 (Final DOOM)
- draw crosshair before messages, draw crosshair for fist/chainsaw and
  during on-screen messages
- fixed crosshair locking on target for melee weapons
- more consistently check for ammo instead of weapon type
- fixed odd strafe values (vanilla allows even values only)
- added TNTSHORT cheat to toggle shorttics on and off while in game
- fixed typo in ZDoom-style Actor name (Slalagtite -> Stalagtite)
- fixed Windows Alt-Tab
- fixed a memory leak on SDL_Quit()
- preserve automap position/scale when toggling overlay mode
- allow binding weapon selection to mouse buttons
- add a `-pistolstart` command-line parameter
- fixed crashes on WADs with empty music lumps, e.g. Nihility.wad
- enabled loading 16 bit RIFF wavs in WADs
- make low-pass sound filter (introduced by the previous change)
  optional
- if executable directory appears not writable, fall back to `.`
- made pitch-shift range independent of target samplerate
- fixed bogus condition preventing automap lines from being drawn
- fixed saving of mouse button bindings
- fixed interpolated z-coordinate after teleporting
- added a new option "Disable sound cutoffs" to allow removed map
  objects to finish playing their sounds and to make seesounds
  uninterruptible
- allow deleting savegames from menu
- fixed automap crash when `USE_VERTEX_ARRAYS` and `GL_VBO` are
  undefined
- fluidsynth: reset all controllers when looping a song
- fixed hanging notes on exit when using Portmidi
- show current and next levels when typing IDCLEV cheat
- added a config key for "exclusive" i.e. mode-changing fullscreen
- UMAPINFO: if interbackdrop does not specify a valid flat, draw it as
  a patch instead
- appended revision tracker to UMAPINFO spec document
- ALSA sequencer API backend for ALSA MIDI support (Linux only)
- extended range of maps reachable via `-warp` and IDCLEV:
  * from E1M1-E4M9 to E1M0-E9M99 for D1
  * from MAP01-MAP33 to MAP00-MAP99
  * Limitations:
    * E0My doesn't work, since episode must always be > 0
    * `-warp x 0`, because zero passed to `-warp` as map number is used
        to warping to first changed map in PWAD
- evaluate mouse motion only once per tick
- show Time/STS widgets above status bar
- removed lowpass-filter item from menu
- fixed `P_SetMobjState()` stack, fixes crash on
  mayhem18p.wad/m18p31-1509.lmp
- fixed crash in automap on certain maps (e.g. Sunlust MAP01) when using
  GL renderer, Thing Appearance = Icons and 2xIDDT
- fixed menu intermission desync
- fixed crash when leaving menu in Chex Quest
- initialize the map title widget with the generic map lump name
- make "Next Level" key simply increase map number if already outside
  regular level transition range
- check for next level in IDCLEV cheat before announcing it
- make sure "Next Level" key never warps to a non-existent map
- reformatted umapinfo.txt so that it is easier to read in plaintext
- fixed custom episode select for Doom 2
- fixed shifting automap markers
- allow translucent sprites on all complevels
- allow disabling predefined translucency on all complevels
- fixed flood HOM on certain maps (e.g. Plutonia MAP11, HR MAP01) (GL)
- fixed sky walls for cases with sky vs. sky toptextures (e.g. E4M6)
  (GL)
- fixed transparent spites being rendered incorrectly with transparent
  walls in view (GL)
- generate a default save-slot name when saving to an empty slot
- added mouse button binds for turn left/right
- fixed sky scaling for non-standard sky sizes, e.g. Eviternity and
  Ancient Aliens (GL)
- added new advanced HUD layout by Fireb3rt+
- added slice_samplecount config option
- added manifest to declare app as DPI aware, so that Windows will not
  apply DPI virtualization
- added support for widescreen assets
- added ZDoom's names for the new Crispy Doom/DEHEXTRA things to
  ActorNames[], so they can be used with BossAction() if needed
- fixed UMAPINFO music restarting issue
- skip the 'entering level' screen if one of endgame, endpic, endbunny
  or endcast is set (UMAPINFO)
- fixed endbunny and endgame UMAPINFO fields
- reset mlook on demo recording
- added OpenGL sprite fuzz options ("darken", "shadow", "transparent",
  "ghostly")
- properly check for the CreateFileMapping() symbol (build)
- always precache sound lumps
- replace W_SafeGetNumForName() with W_CheckNumForName()
- removed defunct lump locking warnings
- removed obsolete SFX usefulness references
- allow colored blood to get set/overridden by DEHACKED, implemented
  Eternity's coloredblood spec, added three additional color translation
  tables for black, purple and white
- made the Ouch Face fix available on all complevels
- added the autoload directory feature from Chocolate Doom
- implemented custom atexit() sequence, ported over from Chocolate Doom,
  fixing crashes during shutdown e.g. on Linux using Wayland
- fixed switching weapons when reaching zero ammo with
  boom_autoswitch == 0
- made Doom sound quirk fixes available on all complevels
- UMAPINFO: introduced the new 'label' field
- do not cast degenmobj_t as mobj_t, breaks aliasing rules on platforms
  where mobj_t pointers are 64-bit aligned and degenmobj_t pointers are
  only 32-bit aligned
- fixed `-solo-net` for demo restart
- fixed levelstat crash for MAP33 and above
- added autoload per PWAD feature, further enhancing the autoload
  directory feature
- UMAPINFO: fixed 'episode' field parsing, 'label' is single-line
- removed obsolete weapon toggle setting
- added ftell() and fseek() implementations for DEHACKED lumps, allowing
  the DEH parser to roll back to the start of a line following a blank
  line and re-process it with the last valid block code handler
- added mouse look / vertical mouse movement toggle notifications
- fixed forcing aspect ratio correction only for the canonical 16:10
  (i.e. 320x200 and 640x400) modes
- do not even attempt to play DEMO4 if it is not available
- only apply palette changes when inside a level
- fixed 32-bit widescreen pain palette
- added a `-coop_spawns` parameter for using "coop in single-player" mode
- fixed OpenGL effect palettes
- added support for non-latin paths and filenames on Windows
- made sure to always autoload prboom-plus.wad
- introduced a supplemental data directory "PRBOOMDATADIR" to install
  prboom-plus.wad into (build)
- prepared for different autoload base directories, respecting the
  `-noload` parameter
- fixed playback of complevel 11 demo with UMAPINFO
- fixed attempted playback of a UMAPINFO demo without UMAPINFO loaded
- never exceed desktop resolution in fullscreen desktop mode
- UMAPINFO: entries without defined 'levelname' fall back to default
- UMAPINFO: fixed default intermission
- fixed setting 'finaleflat' in FMI_StartFinale (UMAPINFO)
- fixed load game during multiplayer demo playback
- fixed OpenGL backfill

PrBoom-Plus 2.6um @ 09 Feb 2021
- fixed episode selection when playing Doom 2
- fixed Doom 1 level progression
- print a blinking arrow next to the currently highlighted menu item
- print another blinking arrow to the right of the currently selected
  menu setting
- support the DOOMWADPATH environment variable
- add some extra states, sprites and mobjtypes from Doom Retro and
  Crispy Doom
- fullscreen desktop for the software renderer
- improved v1.2 compat:
  - fixed a desync on the internal demo in DTH1.WAD
  - fixed the walkways to the BFG rising a little too high on 1_ON_1.WAD
  - moving floors (except plats) should not make the floor stop sound
- fixed infinite loop in macOS launcher
- added CMake build system
- fixed the mainfest to allow 64 bit builds
- fixed PortMidi support on 64-bit Windows
- disabled the "popping skull player death" easter egg
- do not wait for VSync if running a timedemo
- added -statdump parameter from Chocolate Doom
- added mouse-strafe divisor setting
- removed and/or replace all non-free data lumps
- improved Boom random seed
- added -stroller param
- include secret exit in -levelstat
- added configurable quickstart window
- disallow 180-turn with strafe on
- fixed endianess for 32-bit ZDoom nodes
- show Extended Help screen when pressing the Help key
- made armor color depend on type, not amount
- added Chocolate Doom mouse behavior option
- fixed Boom autoswitch behavior
- reinstated the "WEAPON ATTACK ALIGNMENT" menu option
- changed "SECRET AREAS" menu option to "REPORT REVEALED SECRETS"
- fixed endianess for DeePBSP V4 nodes
- show error message boxes on Windows, except when video-dumping a demo
- unbind game speed changing keys in default config
- fixed heap buffer overflows in UDP multiplayer code
- fixed -longtics having no effect
- changed video capture to an ffmpeg-based approach
- track demo joins for TAS-detection purposes
- fixed some episode transition issues when using UMAPINFO
- added automap rotate and overlay keybindings to menus
- fixed a bug in DeHackEd string replacements with a length of exactly
  four
- added "Dropped Item" menu support
- enabled automap Follow Mode by default
- disabled chorus and reverb for Fluidsynth by default
- fix segfault with -viewangle parameter
- next levels no longer reset if endscreen is disabled in UMAPINFO
- added 200 Sounds for DEHEXTRA
- respawn when using IDDQD while dead
- fixes for empty DeHackEd lumps and entries
- restrict "next level" button usage to in-level only
- added adaptations for fluidsynth 2.0
- added "No Vertical Mouse" setting and keybind
- save / load -complevel 9 friction
- added extensible demo format + "PR+UM" signature
- made canonical resolutions (320x200, 320x240, 640x400 and 640x480)
  always available in menu, regardless of what video driver/SDL report
- fixed aspect ratio for canonical resolutions; be sure to set
  "Aspect Ratio" to "Auto" and "Status Bar and Menu Appearance" to
  "Not Adjusted" for both 320x200 and 640x400
- set minimum windows size to prevent window from shrinking when
  changing video modes
- "Screen Multiple Factor" now functions like a "window size factor"
  (i.e. like "-1", "-2", "-3" in Chocolate Doom) and has no effect in
  fullscreen modes
- added "Integer Screen Scaling" option (à la Crispy Doom), which
  restricts the screen size to integer multiples of the game resolution,
  under Options -> General, page 5
- both executables now share the same config file "prboom-plus.cfg",
  with all config keys always preserved - including the GL-related ones
- switched to the unified executable "prboom-plus" with optional OpenGL
  rendering
- portmidi: pitch bends are now reset when stopping song
- added support for more mouse buttons
- fixed resolution-independent mouse sensitivity
- added demo restart functionality - record a new demo on map restart
- setup menus remember last active item
- fixed the KFA cheat sting not read from .bex patches
- UMAPINFO docs updated re: "bossaction" field
- fixed a crash when running out of space while typing in a file path
  into the autoload fields (Options -> General, page 2)
- fixed the "Garbage lines at the top of weapon sprites" issue (#95)
- add support for named complevels on command line:
  -complevel 1.9      = -complevel 2
  -complevel doom2    = -complevel 2
  -complevel ultimate = -complevel 3
  -complevel udoom    = -complevel 3
  -complevel final    = -complevel 4
  -complevel tnt      = -complevel 4
  -complevel plutonia = -complevel 4
  -complevel boom    = -complevel 9
  -complevel mbf      = -complevel 11
  -complevel vanilla  = complevel autodetected according to IWAD loaded
- allow MBF sky transfers in all complevels
- add support for colored blood and gibs
- fixed key-bindings unusable after mouse-wheel up/down

PrBoom-Plus 2.5.1.7um @ 16 Jun 2019
- adds a special marker to demos recorded with UMAPINFO
- addes support for ZDBSP's compressed node format
- fixes the rendering problems in OpenGL
- fixes TRANMAP caching

PrBoom-Plus 2.5.1.6um @ 11 Jun 2019
This fixes a major bug with the episode selection menu not working and
adds IDCLEV checks for maps outside the standard range.

PrBoom-Plus 2.5.1.5um @ 10 Jun 2019
First official release with UMAPINFO support

2.5.1.4.umapinfo_test @ 22 Apr 2017
Beta version with UMAPINFO support.
Note that this is for testing as the newly added MAPINFO feature has
not seen thorough testing yet.

(micha)

2022-02-11 14:56:15 UTC MAIN commitmail json YAML

2022-02-11 13:46:02 UTC MAIN commitmail json YAML

doc: Updated devel/hs-data-fix to 0.3.2

(pho)

2022-02-11 13:45:53 UTC MAIN commitmail json YAML

2022-02-11 13:45:53 UTC MAIN commitmail json YAML

doc: Added wm/mmutils version 1.4.1

(pin)

2022-02-11 13:45:26 UTC MAIN commitmail json YAML

Add mmutils

(pin)

2022-02-11 13:44:45 UTC MAIN commitmail json YAML

wm/mmutils: import package

mmutils (multi-monitor utilities) is a set of utilities for querying xrandr
monitor information.

Their main purpose is to be used alongside wmutils, but they will probably
work with pretty much anything runs on top of Xorg.

(pin)

2022-02-11 13:44:05 UTC MAIN commitmail json YAML

doc: Updated devel/hs-unordered-containers to 0.2.16.0

(pho)

2022-02-11 13:43:57 UTC MAIN commitmail json YAML

Update to unordered-containers-0.2.16.0

0.2.16.0
* Increase maximum branching factor from 16 to 32
* Tweak union.goDifferentHash
* Fix debug mode bounds check in cloneM
* Remove some old internal compatibility code

0.2.15.0
* Add security advisory regarding hash collision attacks
* Add support for hashable 1.4
* Drop support for GHC < 8

0.2.14.0
* Add HashMap.mapKeys. Thanks, Marco Perone!
* Add instances for NFData1 and NFData2. Thanks, Isaac Elliott and Oleg
  Grenrus!
* Fix @since-annotation for compose. Thanks, @Mathnerd314!

(pho)

2022-02-11 13:42:42 UTC MAIN commitmail json YAML

doc: Updated devel/hs-uuid-types to 1.0.5

(pho)

2022-02-11 13:42:30 UTC MAIN commitmail json YAML

2022-02-11 13:40:59 UTC MAIN commitmail json YAML

doc: Updated devel/hs-vector to 0.12.3.1

(pho)

2022-02-11 13:40:50 UTC MAIN commitmail json YAML

Update to vector-0.12.3.1

Changes in version 0.12.3.1
* Bugfix for ghcjs and Double memset for Storable vector: #410
* Avoid haddock bug: #383
* Improve haddock and doctests
* Disable problematic tests with -boundschecks #407

Changes in version 0.12.3.0
* Fix performance regression due to introduction of keepAlive# primop in
  ghc-9.0: #372
* Add monadic functions for mutable vectors: #338
  * Added folds for monadic functions: mapM_, imapM_, forM_, iforM_, foldl,
    foldl', foldM, foldM', ifoldl, ifoldl', ifoldM, ifoldM'
  * Added modifyM and unsafeModifyM for mutable vectors
  * Added generate and generateM for mutable vectors

Changes in version 0.12.2.0
* Add MINIMAL pragma to Vector & MVector type classes: #11
* Export unstreamM fromfrom Data.Vector.Generic: #70
* New functions: unfoldrExactN and unfoldrExactNM: #140
* Added iforM and iforM_: #262
* Added MonadFix instance for boxed vectors: #178
* Added uncons and unsnoc: #212
* Added foldMap and foldMap': #263
* Added isSameVector for storable vectors
* Added toArray, fromArray, toMutableArray and fromMutableArray
* Added iscanl, iscanl', iscanr, iscanr' to Primitive, Storable and Unboxed
* Added izipWithM, izipWithM_, imapM and imapM_ to Primitive and Storable
* Added ifoldM, ifoldM', ifoldM_ and ifoldM'_ to Primitive and Storable
* Added eqBy and cmpBy
* Added findIndexR to Generic: #172
* Added catMaybes: #329
* Added mapMaybeM and imapMaybeM: #183

Changes in version 0.12.1.2
* Fix for lost function Data.Vector.Generic.mkType: #287

Changes in version 0.12.1.1 (deprecated)
* add semigrioups dep to test suite so CI actually runs again on GHC < 8

Changes in version 0.12.1.0 (deprecated)
* Fix integer overflows in specializations of Bundle/Stream enumFromTo on
  Integral types
* Fix possibility of OutOfMemory with take and very large arguments.
* Fix slice function causing segfault and not checking the bounds properly.
* updated specialization rule for EnumFromTo on Float and Double to make
  sure it always matches the version in GHC Base (which changed as of 8.6)
  Thanks to Aleksey Khudyakov @Shimuuar for this fix.
* fast rejection short circuiting in eqBy operations
* the O2 test suite now has reasonable memory usage on every GHC version,
  special thanks to Alexey Kuleshevich (@lehins).
* The Mutable type family is now injective on GHC 8.0 or later.
* Using empty Storable vectors no longer results in division-by-zero
  errors.
* The Data instances for Vector types now have well defined implementations
  for toConstr, gunfold, and dataTypeOf.
* New function: partitionWith.
* Add Unbox instances for Identity, Const, Down, Dual, Sum, Product, Min,
  Max, First, Last, WrappedMonoid, Arg, Any, All, Alt, and Compose.
* Add NFData1 instances for applicable Vector types.

(pho)

2022-02-11 13:40:25 UTC MAIN commitmail json YAML

doc: Updated wm/wmutils-libwm to 1.2

(pin)

2022-02-11 13:39:59 UTC MAIN commitmail json YAML

Add wmutils-libwm

(pin)

2022-02-11 13:39:09 UTC MAIN commitmail json YAML

wm/wmutils-libwm: import packaage

A small library for X window manipulation

Features
-Wrappers for all window management operations
-Built-in checks for off-screen operations

(pin)

2022-02-11 13:37:30 UTC MAIN commitmail json YAML

doc: Updated math/hs-scientific to 0.3.7.0

(pho)

2022-02-11 13:37:21 UTC MAIN commitmail json YAML

Update to scientific-0.3.7.0

0.3.7.0
* Make division (/) on Scientifics slightly more efficient.
* Fix the Show instance to surround negative numbers with parentheses when
  necessary.
* Add (Template Haskell) Lift Scientific instance
* Mark modules as Safe or Trustworthy (Safe Haskell).

(pho)

2022-02-11 13:36:25 UTC MAIN commitmail json YAML

2022-02-11 13:36:00 UTC MAIN commitmail json YAML

doc: Updated devel/hs-hslua-module-system to 1.0.1

(pho)

2022-02-11 13:35:51 UTC MAIN commitmail json YAML

Update to hslua-module-system-1.0.1

hslua-module-system-1.0.1 - Released 29-01-2022.
* Relaxed upper bound of hslua-core, hslua-marshalling, and
  hslua-packaging, allowing their respective version 2.1.

hslua-module-system-1.0.0 - Released 2021-10-21.
* Use hslua 2.0.

(pho)

2022-02-11 13:35:02 UTC MAIN commitmail json YAML

doc: Updated sysutils/hs-hslua-module-path to 1.0.1

(pho)

2022-02-11 13:34:54 UTC MAIN commitmail json YAML

Update to hslua-module-path-1.0.1

hslua-module-path-1.0.1
* Bumped upper bound of hslua-core and hslua-marshalling to allow their
  respective version 2.1.

hslua-module-path-1.0.0
* Updated to hslua 2.0.

(pho)

2022-02-11 13:34:12 UTC MAIN commitmail json YAML

doc: Updated textproc/hs-Glob to 0.10.2

(pho)

2022-02-11 13:34:01 UTC MAIN commitmail json YAML

Update to Glob-0.10.2

0.10.2, 2021-11-10:
* Relaxed transformers-compat version bound.
* Supported Win32 2.12.0.0 or higher.

(pho)

2022-02-11 13:32:22 UTC MAIN commitmail json YAML

doc: Updated textproc/hs-commonmark-extensions to 0.2.3

(pho)

2022-02-11 13:32:14 UTC MAIN commitmail json YAML

Update to commonmark-extensions-

0.2.3
* Allow bare word attribute in fenced_divs (#84). This follows a similar
  change in pandoc (jgm/pandoc#7242).

0.2.2.1
* Fix commonmark-extensions to build with GHC 9.2 (#81, Joseph
  C. Sible). Currently --allow-newer is needed.

0.2.2
* Add footnote to gfmExtensions. Note that this also requires additional
  type constraints on gfmExtensions [API change].

0.2.1.2
* Fix bug with absolute paths in rebase_relative_paths extension on
  Windows.

0.2.1.1
* Fix bug in wikilinks extensions.

0.2.1
* Add rebase_relative_paths extension. New exported module
  Commonmark.Extensions.RebaseRelativePaths [API change].
* Add wikilinks_title_before_pipe and wikilinks_title_after_pipe extensions
  (#69). New exported module Commonmark.Extensions.Wikilinks [API change].

(pho)

2022-02-11 13:30:42 UTC MAIN commitmail json YAML

doc: Updated textproc/hs-doclayout to 0.3.1.1

(pho)

2022-02-11 13:30:32 UTC MAIN commitmail json YAML

Update to doclayout-0.3.1.1

0.3.1.1
* Fix the end of the block of zero width characters which contains the
  zero-width joiners and directional markings (Stephen Morgan, #5). This
  fixes a regression introduced in 0.3.1, affecting code points 0x2010 to
  0x2030.

0.3.1
* Improved handling of emojis. Emojis are double-wide, but previously this
  library did not treat them as such. We now have comprehensive support of
  emojis, including variation modifiers and zero-width joiners, verified by
  a test suite. Performance has been confirmed to be no worse for text
  without emojis. (Stephen Morgan, #1). API changes: export
  realLengthNoShortcut, isEmojiModifier, isEmojiVariation, isEmojiJoiner.

(pho)

2022-02-11 13:29:30 UTC MAIN commitmail json YAML

doc: Updated textproc/hs-hslua-module-text to 1.0.1

(pho)

2022-02-11 13:29:21 UTC MAIN commitmail json YAML

Update to hslua-module-text-1.0.1

hslua-module-text-1.0.1 - Released 29-01-2022.
* Relaxed upper bound of hslua-core, hslua-marshalling, and
  hslua-packaging, allowing their respective version 2.1.

hslua-module-text-1.0.0 - Released 2021-10-22.
* Use hslua 2.0.

(pho)

2022-02-11 13:28:20 UTC MAIN commitmail json YAML

2022-02-11 13:28:05 UTC MAIN commitmail json YAML

2022-02-11 13:27:52 UTC MAIN commitmail json YAML

doc: Updated devel/hs-transformers-compat to 0.7.1

(pho)

2022-02-11 13:27:44 UTC MAIN commitmail json YAML

Update to transformers-compat-0.7.1

0.7.1 [2021.10.30]
* Backport new instances from GHC 9.2/base-4.16
  * Eq1, Read1, and Show1 instances for Complex
  * Eq{1,2}, Ord{1,2}, Show{1,2}, and Read{1,2} instances for (,,) and
    (,,,)

0.7 [2021.07.25]
* Backport changes from transformers-0.6.*:
  * Remove the long-deprecated selectToCont function from
    Control.Monad.Trans.Select.
  * Backport various Generic, Generic1, and Data instances.
  * Backport handleE, tryE, and finallyE to Control.Monad.Trans.Except.
  * Backport explicit implementations of (<$), liftA2, (*>), and (<*) for
    Control.Applicative.Backwards.
  * Backport a lazier implementation of (<*>) for Control.Applicative.Lift.

(pho)

2022-02-11 13:26:24 UTC MAIN commitmail json YAML

doc: Updated devel/hs-async to 2.2.4

(pho)

2022-02-11 13:26:15 UTC MAIN commitmail json YAML

2022-02-11 13:25:39 UTC MAIN commitmail json YAML

doc: Updated devel/hs-resourcet to 1.2.4.3

(pho)

2022-02-11 13:25:31 UTC MAIN commitmail json YAML

Update to resourcet-1.2.4.3

1.2.4.3
    Fix a space leak when using forever with ResourceT. #470

(pho)

2022-02-11 13:24:54 UTC MAIN commitmail json YAML

doc: Updated devel/hs-foundation to 0.0.26.1

(pho)

2022-02-11 13:24:46 UTC MAIN commitmail json YAML

Update to foundation-0.0.26.1

No changelogs are provided by the upstream.

(pho)

2022-02-11 13:24:04 UTC MAIN commitmail json YAML

doc: Updated devel/hs-generic-deriving to 1.14.1

(pho)

2022-02-11 13:23:55 UTC MAIN commitmail json YAML

Update to generic-deriving-1.14.1

1.14.1 [2021.08.30]
* Backport the Generic(1) instances introduced for tuples (8 through 15) in
  base-4.16.
* Make the test suite compile on GHC 9.2 or later.
* Always import Data.List qualified to fix the build with recent GHCs.

(pho)

2022-02-11 13:22:45 UTC MAIN commitmail json YAML

doc: Updated textproc/hs-prettyprinter-ansi-terminal to 1.1.3

(pho)

2022-02-11 13:22:37 UTC MAIN commitmail json YAML

Update to prettyprinter-ansi-terminal-1.1.3

1.1.3
    Deprecate the Data.Text.Prettyprint.* modules
        Users should migrate to the new Prettyprinter module hierarchy.
        The old modules will be removed no sooner than September 2022.

(pho)

2022-02-11 13:20:07 UTC MAIN commitmail json YAML

doc: Updated devel/hs-psqueues to 0.2.7.3

(pho)

2022-02-11 13:19:59 UTC MAIN commitmail json YAML

Update to psqueues-0.2.7.3

- 0.2.7.3 (2021-11-05)
    * Relax hashable, tasty and QuickCheck upper bounds
    * Bump Cabal-version to 1.10

(pho)

2022-02-11 13:19:08 UTC MAIN commitmail json YAML

2022-02-11 13:17:33 UTC MAIN commitmail json YAML

doc: Updated devel/pointfree to 1.1.1.8

(pho)

2022-02-11 13:17:21 UTC MAIN commitmail json YAML

2022-02-11 13:15:46 UTC MAIN commitmail json YAML

Fix build with GHC 9.2

(pho)

2022-02-11 13:15:31 UTC MAIN commitmail json YAML

2022-02-11 13:15:17 UTC MAIN commitmail json YAML

doc: Updated security/hs-hackage-security to 0.6.2.0

(pho)

2022-02-11 13:15:07 UTC MAIN commitmail json YAML

Update to hackage-security-0.6.2.0

0.6.2.0
* Safely prepare for when cabal factors out Cabal-syntax

0.6.1.0
* Support basic auth in package-indices (#252)
* Fix tests due to new aeson handling of unescaped control sequences (#256)
* Bump a lot of bounds on packages we depend on

(pho)

2022-02-11 13:14:07 UTC MAIN commitmail json YAML

+hs-Cabal-syntax

(pho)

2022-02-11 13:13:35 UTC MAIN commitmail json YAML

doc: Added devel/hs-Cabal-syntax version 3.6.0.0

(pho)

2022-02-11 13:13:24 UTC MAIN commitmail json YAML

devel/hs-Cabal-syntax: import hs-Cabal-syntax-3.6.0.0

This library provides tools for reading and manipulating the .cabal file
format.

(pho)

2022-02-11 13:13:02 UTC MAIN commitmail json YAML

doc: Updated textproc/hs-regex-posix to 0.96.0.1

(pho)

2022-02-11 13:12:51 UTC MAIN commitmail json YAML

Update to regex-posix-0.96.0.1

0.96.0.1 (2021-07-19)
* Compatibility with base-4.16 (GHC 9.2)
* Fix stack installation problems on Windows around flag _regex-posix-clib
  (issues #4 and #7).

(pho)

2022-02-11 13:11:41 UTC MAIN commitmail json YAML

doc: Updated net/hs-iproute to 1.7.12

(pho)

2022-02-11 13:11:34 UTC MAIN commitmail json YAML

Update to iproute-1.7.12

No changelogs are provided by the upstream.

(pho)

2022-02-11 13:10:25 UTC MAIN commitmail json YAML

doc: Updated security/hs-cryptonite to 0.29

(pho)

2022-02-11 13:10:15 UTC MAIN commitmail json YAML

2022-02-11 13:08:59 UTC MAIN commitmail json YAML

doc: Updated textproc/hs-text-short to 0.1.5

(pho)

2022-02-11 13:08:44 UTC MAIN commitmail json YAML

Update to text-short-0.1.5

0.1.5
* text-2.0 support

0.1.4
* Fix fromString for single character
  strings. https://github.com/haskell-hvr/text-short/issues/20
* Add Template Haskell Lift ShortText instance.

(pho)

2022-02-11 13:04:58 UTC MAIN commitmail json YAML

2022-02-11 13:04:39 UTC MAIN commitmail json YAML

doc: Updated time/hs-timezone-olson to 0.2.1

(pho)

2022-02-11 13:04:31 UTC MAIN commitmail json YAML

2022-02-11 13:03:52 UTC MAIN commitmail json YAML

2022-02-11 13:03:40 UTC MAIN commitmail json YAML

2022-02-11 13:03:16 UTC MAIN commitmail json YAML

doc: Updated security/hs-digest to 0.0.1.3

(pho)

2022-02-11 13:03:04 UTC MAIN commitmail json YAML

2022-02-11 13:02:08 UTC MAIN commitmail json YAML

doc: Updated devel/hs-base-compat-batteries to 0.12.1

(pho)

2022-02-11 13:02:00 UTC MAIN commitmail json YAML

Update to base-compat-batteries-0.12.1

Changes in 0.12.1 [2021.10.30]
* Backport Solo to the Data.Tuple.Compat module. If using ghc-prim-0.7.0 or
  later, Solo is taken from ghc-prim. If using an older version of
  ghc-prim, Solo is taken from the OneTuple compatibility library.
* This coincides with the base-compat-0.12.1 release. Refer to the
  base-compat changelog for more details.

Changes in 0.12.0 [2021.08.29]
* Data.Semigroup.Compat{.Repl.Batteries} no longer re-exports the Option
  data type or the option function, as both have been removed in base-4.16.
* This coincides with the base-compat-0.12.0 release. Refer to the
  base-compat changelog for more details.

(pho)

2022-02-11 13:00:47 UTC MAIN commitmail json YAML

doc: Updated devel/hs-hashable to 1.4.0.2

(pho)

2022-02-11 13:00:38 UTC MAIN commitmail json YAML

Update to hashable-1.4.0.2

Version 1.4.0.2
* Restore older GHC support
* Support GHC-9.0.2

Version 1.4.0.1
* text-2.0 compatibility

Version 1.4.0.0
* Eq is now a superclass of Hashable. Also Eq1 is a superclass of Hashable1
  and Eq2 is a superclass of Hashable2 when exists.
* Remove Hashable1 Fixed instance
* Remove Hashable1 Semi.Min/Max/... instances as they don't have Eq1
  instance.

Version 1.3.5.0
* Add Solo instance (base-4.15+, GHC-9+)

Version 1.3.4.1
* Fix compilation on 32 bit platforms
* Fix Tree instance

Version 1.3.4.0
* Text and ByteString hashes include length. This fixes a variant of
  https://github.com/haskell-unordered-containers/hashable/issues/74 for
  texts and
  bytestrings. https://github.com/haskell-unordered-containers/hashable/pull/223
* Use correct prime in combine. This should improve the hash quality of
  compound structures on 64bit
  systems. https://github.com/haskell-unordered-containers/hashable/pull/224
* Add instance for types in containers package
  https://github.com/haskell-unordered-containers/hashable/pull/226
* Change Int, Int64 and Word64 hashWithSalt
  slightly. https://github.com/haskell-unordered-containers/hashable/pull/227

Version 1.3.3.0
* Text hashing uses 64-bit FNV prime
* Don't truncate Text hashvalues on 64bit Windows:
  https://github.com/haskell-unordered-containers/hashable/pull/211

Version 1.3.2.0
* Add Hashable (Fixed a) for base <4.7 versions.
* Add documentation:
  * hashable is not a stable hash
  * hashWithSalt may return negative values
  * there is time-compat with Hashable instances for time types.
* Add random-initial-seed flag causing the initial seed to be randomized on
  each start of an executable using hashable.

(pho)

2022-02-11 12:58:37 UTC MAIN commitmail json YAML

doc: Updated devel/hs-primitive to 0.7.3.0

(pho)

2022-02-11 12:58:29 UTC MAIN commitmail json YAML

Update to primitive-0.7.3.0

Changes in version 0.7.3.0
* Correct implementations of *> for Array and SmallArray.
* Drop support for GHC < 7.10
* Export runByteArray and runPrimArray.
* Export createArray and createSmallArray.
* Export emptyByteArray, emptyPrimArray, emptyArray and emptySmallArray.

Changes in version 0.7.2.0
* Add thawByteArray and thawPrimArray.
* Changed the Show instance of ByteArray, so that all 8-bit words are
  rendered as two digits. For example, display 0x0D instead of 0xD.

(pho)

2022-02-11 12:56:57 UTC MAIN commitmail json YAML

2022-02-11 12:56:38 UTC MAIN commitmail json YAML

doc: Updated devel/hs-th-abstraction to 0.4.3.0

(pho)

2022-02-11 12:56:30 UTC MAIN commitmail json YAML

Update to th-abstraction-0.4.3.0

0.4.3.0 -- 2021.08.30
* Make applySubstitution avoid capturing type variable binders when
  substituting into foralls.
* Fix a bug in which resolveTypeSynonyms would incorrectly expand type
  synonyms that are not applied to enough arguments.
* Allow the test suite to build with GHC 9.2.

(pho)

2022-02-11 12:55:22 UTC MAIN commitmail json YAML

doc: Updated devel/hs-base-compat to 0.12.1

(pho)

2022-02-11 12:55:14 UTC MAIN commitmail json YAML

Update to base-compat-0.12.1

Changes in 0.12.1 [2021.10.30]
* Backport Solo to Data.Tuple.Compat when building with ghc-prim-0.7.0 or
  later

Changes in 0.12.0 [2021.08.29]
* Sync with base-4.16/GHC 9.2
* Data.Semigroup.Compat{.Repl} no longer re-exports the Option data type or
  the option function, as both have been removed in base-4.16.
* Backport readBin and showBin to Numeric.Compat
* Backport readBinP to Text.Read.Lex.Compat

(pho)

2022-02-11 12:53:29 UTC MAIN commitmail json YAML

doc: Updated converters/hs-base16-bytestring to 1.0.2.0

(pho)

2022-02-11 12:53:20 UTC MAIN commitmail json YAML

Update to base16-bytestring-1.0.2.0

1.0.2.0
    Support sized primitive types in GHC 9.2 (#16 - thanks Bodigrim!)

(pho)

2022-02-11 12:45:53 UTC MAIN commitmail json YAML

editors/xnedit: Build fix for libiconv

On Darwin and SunOS libiconv was still not found.

(micha)

2022-02-11 12:20:01 UTC MAIN commitmail json YAML

doc: Updated converters/hs-base64-bytestring to 1.2.1.0

(pho)

2022-02-11 12:19:53 UTC MAIN commitmail json YAML

Update to base64-bytestring-1.2.1.0

1.2.1.0
    Bugfix for GHC 9.0.1 memory corruption bug (#46)
        Thanks to Fraser Tweedale and Andrew Lelechenko for logging and
        helping with this fix.

(pho)

2022-02-11 12:18:47 UTC MAIN commitmail json YAML

doc: Updated converters/hs-emojis to 0.1.2

(pho)

2022-02-11 12:18:39 UTC MAIN commitmail json YAML

Update to emojis-0.1.2

0.1.2
* Update emoji data (Unicode 14.0) and aliases from gemoji.
* Export baseEmojis and zwjEmojis, generated directly from Unicode emoji
  data files, so that the library contains a complete list of emojis,
  including emojis for which gemoji provides no alias (Stephen Morgan).

0.1.1
* Update emoji data.

(pho)

2022-02-11 12:15:16 UTC MAIN commitmail json YAML

doc: Updated devel/hs-file-embed to 0.0.15.0

(pho)

2022-02-11 12:15:07 UTC MAIN commitmail json YAML

Update to file-embed-0.0.15.0

0.0.15.0
    Add makeRelativeToLocationPredicate

0.0.14.0
    Add embedFileIfExists

(pho)

2022-02-11 12:14:20 UTC MAIN commitmail json YAML

tio: update HOMEPAGE.

(fcambus)

2022-02-11 12:13:55 UTC MAIN commitmail json YAML

doc: Updated devel/hs-random to 1.2.1

(pho)

2022-02-11 12:13:47 UTC MAIN commitmail json YAML

Update to random-1.2.1

1.2.1
* Fix support for ghc-9.2 #99
* Fix performance regression for ghc-9.0 #101
* Add uniformEnumM and uniformEnumRM
* Add initStdGen #103
* Add globalStdGen #117
* Add runStateGenST_
* Ensure that default implementation of ShortByteString generation uses
  unpinned memory. #116
* Fix #54 with #68 - if exactly one value in the range of floating point is
  infinite, then uniformRM/randomR returns that value.
* Add default implementation of uniformM that uses Generic #70
* Random instance for CBool #77
* Addition of TGen and TGenM #95
* Addition of tuple instances for Random up to 7-tuple #72

(pho)

2022-02-11 12:12:41 UTC MAIN commitmail json YAML

multimail: update HOMEPAGE.

(fcambus)

2022-02-11 12:12:03 UTC MAIN commitmail json YAML

doc: Updated lang/hs-hslua to 2.1.0

(pho)

2022-02-11 12:11:55 UTC MAIN commitmail json YAML

Update to hslua-2.1.0

hslua-2.1.0 - Released 29-01-2022.
* Update to hslua-objectorientation 2.1.0. This entails changes to deftype'
  and deftypeGeneric, switching the order of item pusher and list-extractor
  function in the tuple passed as the last argument.
* Update to hslua-core 2.1.0, hslua-marshalling 2.1.0, and hslua-classes
  2.1.0.

hslua-2.0.1 - Released 2021-11-04.
* Updated lower bounds of hslua packages:
  hslua >= 2.0.0.2,
  hslua-marshalling >= 2.0.1, and
  hslua-objectorientation >= 2.0.1.
* This fixes a number of smaller issues; see the respective package
  changelogs for details.

hslua-2.0.0 - Released 2021-10-21.
* Move module hierarchy from Foreign.Lua to HsLua.
* Error handling has been reworked completely. The type of exceptions used
  and handled by HsLua is now exposed to the type system. The type Lua
  makes use of a default error type. Custom error handling can be
  implemented by using the LuaE type with an exception type that is an
  instance of class LuaError.
* Renamed stack index helpers to nth, nthTop, nthBottom, top. The following
  have been removed: stackTop, nthFromTop, nthFromBottom.
* Extracted raw Lua bindings into new package lua. This means that all
  cabal flags have been moved to package lua as well. Version lua-1.0.0
  contained the Foreign.Lua.Raw hierarchy as present in hslua-1.3.0. See
  that package窶冱 changelog for info on the additional modifications since
  then.
* The module Foreign.Lua.Raw.Error was merged into the HsLua.Core.Error
  module.
* The functions getglobal and gettable now return the Lua Type of the
  pushed value.
* Extracted new packages:
  * hslua-core: the package contains all modules from the Core sub-hierarchy.
  * hslua-classes: typclasses Peekable and Pushable for pushing and
    pulling, as well as function calling.
  * tasty-hslua: makes testing helpers available for reuse.
* Moved run functions from Util to Core.Run.
* Moved module Utf8 from the base level into Core.
* Refactored code to expose Haskell functions to Lua:
* Removed functions newCFunction, freeCFunction. Use pushHaskellFunction
  instead, it takes care of garbage collection.
* Renamed typeclass ToHaskellFunction to Exposable, function callFunc to
  invoke. All these have been moved to hslua-classes.
* The type PreCFunction is now defined in package lua; HaskellFunction is
  defined in hslua-core.
* Changed pushHaskellFunction to only accept HaskellFunction arguments,
  move it to hslua-core.
* Removed helper functions addfunction and addfield from Module. Use
  documented functions and fields instead.
* Added support for a 窶徭ince窶� tag on documented functions; allows to mark
  the library version when a function was introduced in its present form.

(pho)

2022-02-11 12:08:49 UTC MAIN commitmail json YAML

+hs-hslua-packaging

(pho)

2022-02-11 12:08:38 UTC MAIN commitmail json YAML

coma: update HOMEPAGE.

(fcambus)

2022-02-11 12:08:25 UTC MAIN commitmail json YAML

doc: Added lang/hs-hslua-packaging version 2.1.0

(pho)

2022-02-11 12:08:17 UTC MAIN commitmail json YAML

lang/hs-hslua-packaging: import hs-hslua-packaging-2.1.0

Utilities to package up Haskell functions and values into a Lua module.

This package is part of HsLua, a Haskell framework built around the
embeddable scripting language Lua.

(pho)

2022-02-11 12:07:46 UTC MAIN commitmail json YAML

+hs-hslua-objectorientation

(pho)

2022-02-11 12:07:25 UTC MAIN commitmail json YAML

doc: Added lang/hs-hslua-objectorientation version 2.1.0

(pho)

2022-02-11 12:07:14 UTC MAIN commitmail json YAML

2022-02-11 12:06:48 UTC MAIN commitmail json YAML

+hs-hslua-classes

(pho)

2022-02-11 12:06:21 UTC MAIN commitmail json YAML

doc: Added lang/hs-hslua-classes version 2.1.0

(pho)

2022-02-11 12:06:12 UTC MAIN commitmail json YAML

lang/hs-hslua-classes: import hs-hslua-classes-2.1.0

Type classes for convenient marshalling and calling of Lua functions.

(pho)

2022-02-11 12:05:41 UTC MAIN commitmail json YAML

+hs-hslua-marshalling

(pho)

2022-02-11 12:05:13 UTC MAIN commitmail json YAML

doc: Added lang/hs-hslua-marshalling version 2.1.0

(pho)

2022-02-11 12:05:02 UTC MAIN commitmail json YAML

lang/hs-hslua-marshalling: import hs-hslua-marshalling-2.1.0

Provides functions to marshal values from Haskell to Lua, and vice versa.

This package is part of HsLua, a Haskell framework built around the
embeddable scripting language Lua.

(pho)

2022-02-11 12:04:05 UTC MAIN commitmail json YAML

+hs-hslua-core

(pho)

2022-02-11 12:03:42 UTC MAIN commitmail json YAML

doc: Added lang/hs-hslua-core version 2.1.0

(pho)

2022-02-11 12:03:30 UTC MAIN commitmail json YAML

lang/hs-hslua-core: import hs-hslua-core-2.1.0

Wrappers and helpers to bridge Haskell and Lua.

It builds upon the lua package, which allows to bundle a Lua interpreter
with a Haskell program.

(pho)

2022-02-11 11:59:51 UTC MAIN commitmail json YAML

2022-02-11 11:59:21 UTC MAIN commitmail json YAML

doc: Added lang/hs-lua version 2.1.0

(pho)

2022-02-11 11:59:11 UTC MAIN commitmail json YAML

2022-02-11 11:55:43 UTC MAIN commitmail json YAML

doc: Updated net/hs-network to 3.1.2.7

(pho)

2022-02-11 11:55:34 UTC MAIN commitmail json YAML

Import network-3.1.2.7

Version 3.1.2.7
* No change from 3.1.2.6 but to take a right procedure to upload "network"
  to Hackage for Windows.

Version 3.1.2.6
* Making IPv4PktInfo on Win the same as that on Posix #522
* Add support for nix/ghcjs #517

Version 3.1.2.5
* Regenerate configure script with autoconf-2.69 to temporarily fix broken
  cabal-3.4.0.0 on Windows. Note that the old one was generated with
  autoconf-2.71. #513

Version 3.1.2.3
* Supporting M1 Mac #510
* Workaround for autoconf on Windows #508
* Fixing building failure on SmartOS #507
* HsNet.h: remove unused fn hsnet_inet_ntoa definition #504
* Use a working define for OpenBSD detection #503

Version 3.1.2.2
* Allow bytestring 0.11 #490
* Export StructLinger #491
* Fix a couple of broken tests on OpenBSD #498

(pho)

2022-02-11 11:53:57 UTC MAIN commitmail json YAML

2022-02-11 11:53:19 UTC MAIN commitmail json YAML

2022-02-11 11:33:23 UTC MAIN commitmail json YAML

2022-02-11 11:31:55 UTC MAIN commitmail json YAML

doc: Updated textproc/hs-commonmark to 0.2.1.1

(pho)

2022-02-11 11:31:47 UTC MAIN commitmail json YAML

Import commonmark-0.2.1.1

0.2.1.1
* Fix bug in prettyShow for SourceRange (#80). The bug led to an infinite
  loop in certain cases.

0.2.1
* Use official 0.30 spec.txt.
* Update HTML block parser for recent spec changes.
* Fix test case from commonmark/cmark#383. We need to index the list of
  stack bottoms not just by the length mod 3 of the closer but by whether
  it can be an opener, since this goes into the calculation of whether the
  delimiters can match.

0.2
* Commonmark.Inlines: export LinkInfo(..) [API change].
* Commonmark.Inlines: export pLink [API chage].
* Comonmark.ReferenceMap: Add linkPos field to LinkInfo [API change].
* Commonmark.Tokens: normalize unicode to NFC before tokenizing
  (#57). Normalization might affect detection of flankingness, recognition
  of reference links, etc.
* Commonmark.Html: add data-prefix to non-HTML5 attributes, as pandoc does.
* Remove unnecessary build-depends.
* Use lightweight tasty-bench instead of criterion for benchmarks.

(pho)

2022-02-11 11:29:44 UTC MAIN commitmail json YAML

2022-02-11 11:29:21 UTC MAIN commitmail json YAML

doc: Updated textproc/hs-jira-wiki-markup to 1.4.0

(pho)

2022-02-11 11:29:12 UTC MAIN commitmail json YAML

Import jira-wiki-markup-1.4.0

1.4.0 - Released 2021-05-25.
    Allow quoted image parameters.
    Added support for "smart links".
    API Change: Add new constructors SmartCard and SmartLink to
    Text.Jira.Markup.LinkType.

1.3.5 - Released 2021-05-24.
    Allow spaces and most unicode characters in attachment links.
    No longer require a newline character after {noformat}.
    Only allow URI path segment characters in bare links.
    The file: schema is no longer allowed in bare links; these rarely make
    sense.

(pho)

2022-02-11 11:24:41 UTC MAIN commitmail json YAML

Updated devel/py-zope.hookable, devel/py-zope.exceptions, www/py-zope.proxy, devel/py-zope.deferredimport

(adam)

2022-02-11 11:24:17 UTC MAIN commitmail json YAML

py-zope.deferredimport: updated to 4.4

4.4
Add support for Python 3.8, 3.9 and 3.10.
Drop support for Python 3.4.

(adam)

2022-02-11 11:23:00 UTC MAIN commitmail json YAML

py-zope.proxy: updated to 4.5.0

4.5.0

Add support for Python 3.10.

4.4.0

Add support for Python 3.9.
Create aarch64 wheels.

(adam)

2022-02-11 11:20:39 UTC MAIN commitmail json YAML

py-zope.exceptions: updated to 4.5

4.5:
Add official support for Python 3.9 and 3.10.
Undo dropping support for Python 3.5.
Drop support for running the tests using python setup.py test.

(adam)

2022-02-11 11:20:07 UTC MAIN commitmail json YAML

py-zope.hookable: updated to 5.1.0

5.1.0:
Add support for Python 3.9.
Create Linux aarch64 wheels.

(adam)

2022-02-11 10:18:59 UTC MAIN commitmail json YAML

doc: Updated wm/wmutils-opt to 1.0

(pin)

2022-02-11 10:18:41 UTC MAIN commitmail json YAML

2022-02-11 10:08:46 UTC MAIN commitmail json YAML

Updated devel/py-prompt_toolkit, net/wireshark

(adam)

2022-02-11 10:08:27 UTC MAIN commitmail json YAML

wireshark: updated to 3.6.2

Wireshark 3.6.2 Release Notes

What’s New

  Bug Fixes

  The following vulnerabilities have been fixed:

    • wnpa-sec-2022-01[1] RTMPT dissector infinite loop. Issue
      17813[2].

    • wnpa-sec-2022-02[3] Large loops in multiple dissectors. Issue
      17829[4], Issue 17842[5], Issue 17847[6], Issue 17855[7], Issue
      17891[8], Issue 17925[9], Issue 17926[10], Issue 17931[11], Issue
      17932[12], Issue 17933[13].

    • wnpa-sec-2022-03[14] PVFS dissector crash. Issue 17840[15].

    • wnpa-sec-2022-04[16] CSN.1 dissector crash. Issue 17882[17].

    • wnpa-sec-2022-05[18] CMS dissector crash. Issue 17935[19].

  The following bugs have been fixed:

    • Support for GSM SMS TPDU in HTTP2 body Issue 17784[20].

    • Wireshark 3.6.1 broke the ABI by removing ws_log_default_writer
      from libwsutil Issue 17822[21].

    • Fedora RPM package build failing with RPATH of /usr/local/lib64
      Issue 17830[22].

    • macos-setup.sh: ftp.pcre.org no longer exists Issue 17834[23].

    • nmap.org/npcap → npcap.com: domain/URL change Issue 17838[24].

    • MPLS ECHO FEC stack change TLV not dissected correctly Issue
      17868[25].

    • Attempting to open a systemd journal export file segfaults Issue
      17875[26].

    • Dissector bug on 802.11ac packets Issue 17878[27].

    • The Info column shows only one NGAP/S1AP packet of several
      packets inside an SCTP packet Issue 17886[28].

    • Uninstalling Wireshark 3.6.1 on Windows 10 fails to remove the
      installation directory because it doesn’t remove the User’s Guide
      subdirectory and all its contents. Issue 17898[29].

    • 3.6 doesn’t build without zlib Issue 17899[30].

    • SIP Statistics no longer properly reporting method type
      accounting Issue 17904[31].

    • Fuzz job crash output: fuzz-2022-01-26-6940.pcap Issue 17909[32].

    • SCTP retransmission detection broken for the first data chunk of
      each association with relative TSN Issue 17917[33].

    • “Show In Folder” doesn’t work correctly for filenames with spaces
      Issue 17927[34].

  New and Updated Features

  New Protocol Support

  There are no new protocols in this release.

  Updated Protocol Support

  AMP, ASN.1 PER, ATN-ULCS, BGP, BP, CFLOW, CMS, CSN.1, GDSDB, GSM RP,
  GTP, HTTP3, IEEE 802.11 Radiotap, IPDC, ISAKMP, Kafka, MP2T, MPEG
  PES, MPEG SECT, MPLS ECHO, NGAP, NTLMSSP, OpenFlow 1.4, OpenFlow 1.5,
  P_MUL, PN-RT, PROXY, PTP, PVFS, RSL, RTMPT, rtnetlink, S1AP, SCTP,
  Signal PDU, SIP, TDS, USB, WAP, and ZigBee ZCL

  New and Updated Capture File Support

  BLF and libpcap

  New File Format Decoding Support

  There is no new or updated file format support in this release.

(adam)

2022-02-11 10:01:12 UTC MAIN commitmail json YAML

py-prompt_toolkit: updated to 3.0.28

3.0.28

New features:
- Support format specifiers for HTML and ANSI formatted text.
- Accept defaults for checkbox and radio list, and their corresponding dialogs.

Fixes:
- Fix resetting of cursor shape after the application terminates.

(adam)

2022-02-11 09:51:24 UTC MAIN commitmail json YAML

doc: Updated textproc/hs-unicode-transforms to 0.4.0

(pho)

2022-02-11 09:51:15 UTC MAIN commitmail json YAML

Import unicode-transform-0.4.0

0.4.0 (November 2021)
    Bump unicode-data to 0.2
    Allow text 2.0
    Update to Unicode version 14.0.0
    Drop support for GHC 7.10

0.3.8
    Allow ghc-prim 0.7
    Extract unicode-data into its own package
    Depend on the latest stable text

(pho)

2022-02-11 09:50:29 UTC MAIN commitmail json YAML

+hs-unicode-data

(pho)

2022-02-11 09:49:16 UTC MAIN commitmail json YAML

doc: Added textproc/hs-unicode-data version 0.3.0

(pho)

2022-02-11 09:47:53 UTC MAIN commitmail json YAML

doc: Updated devel/alex to 3.2.7.1

(pho)

2022-02-11 09:47:45 UTC MAIN commitmail json YAML

Update to alex-3.2.7.1

Change in 3.2.7.1
* Fix bug with repeated numeral characters outside of r{n,m}
  repetitions. This was a regression introduced in 3.2.7.

Changes in 3.2.7
* Allow arbitrary repetitions in regexps. Previously, the r{n,m} and
  related forms were restricted to single digit numbers n and m.
* DFA minimization used to crash on tokens of the form c* which produce
  automata with only accepting states. Considering the empty set of
  non-accepting states as an equivalence class caused minimization to crash
  with exception.
* The small_base flag is removed. Extremely old GHCs will no longer build.
* A number of bug fixes and clearer diagnostics.

(pho)

2022-02-11 09:47:34 UTC MAIN commitmail json YAML

wm/wmutils-core: update to 1.6

Bumping four versions, see upstream for changes,
too many to list here.

(pin)

2022-02-11 09:46:26 UTC MAIN commitmail json YAML

doc: Updated devel/hs-ansi-terminal to 0.11.1

(pho)

2022-02-11 09:46:16 UTC MAIN commitmail json YAML

Update to ansi-terminal-0.11.1

Version 0.11.1
* On Windows, fix compatability with the Windows I/O Manager (WinIO)
  introduced in GHC 9.0.1, by incorporating changes made in package
  Win32-2.13.2.0 in that regard.
* Improvements to Haddock documentation.

(pho)

2022-02-11 09:45:56 UTC MAIN commitmail json YAML

doc: Updated audio/termusic to 0.6.10

(pin)

2022-02-11 09:45:34 UTC MAIN commitmail json YAML

audio/termusic: update to 0.6.10

-Make yt-dlp as default download program for youtube thus remove feature yt-dlp.
-Fix issue #39, repeating one song occasionally hangs.

(pin)

2022-02-11 09:43:46 UTC MAIN commitmail json YAML

2022-02-11 09:42:25 UTC MAIN commitmail json YAML

doc: Updated misc/hs-extra to 1.7.10

(pho)

2022-02-11 09:42:17 UTC MAIN commitmail json YAML

Update to extra-1.7.10

1.7.10, released 2021-08-29
    #81, add assertIO function
    #85, add !? to do !! list indexing returning a Maybe
    #80, add strict Var functions modifyVar', modifyVar_', writeVar'

(pho)

2022-02-11 09:41:07 UTC MAIN commitmail json YAML

doc: Updated devel/hs-splitmix to 0.1.0.4

(pho)

2022-02-11 09:40:59 UTC MAIN commitmail json YAML

2022-02-11 09:37:53 UTC MAIN commitmail json YAML

doc: Updated devel/hs-StateVar to 1.2.2

(pho)

2022-02-11 09:37:45 UTC MAIN commitmail json YAML

2022-02-11 09:37:01 UTC MAIN commitmail json YAML

doc: Updated devel/hs-colour to 2.3.6

(pho)

2022-02-11 09:36:53 UTC MAIN commitmail json YAML

Update to colour-2.3.6

New in version 2.3.6:
- Minimum base of 4.13.
- Locked down non-colour imports.
- Made semigroup instances canonical.
- Updated dependencies (for testing).

(pho)

2022-02-11 09:35:33 UTC MAIN commitmail json YAML

doc: Updated devel/hs-memory to 0.16.0

(pho)

2022-02-11 09:35:09 UTC MAIN commitmail json YAML

2022-02-11 09:31:46 UTC MAIN commitmail json YAML

doc: Updated devel/hs-base-orphans to 0.8.6

(pho)

2022-02-11 09:31:39 UTC MAIN commitmail json YAML

Update to base-orphans-0.8.6

Changes in 0.8.6 [2021.10.29]
* Backport Eq, Ord, Bounded, Enum, and Ix instances for Solo, introduced in
  GHC 9.2/base-4.16
* Remove the backported Eq1 and Ord1 instances for Fixed that were
  introduced in base-orphans-0.8.5. While these briefly appeared in a
  release candidate version of GHC 9.2.1, they were ultimately removed from
  the final 9.2.1 release. This release of base-orphans synchronizes with
  that change.

Changes in 0.8.5 [2021.08.29]
* Backport new instances from GHC 9.2/base-4.16
  * Eq1, Read1, and Show1 instances for Complex
  * Eq1 and Ord1 instances for Fixed
  * Eq{1,2}, Ord{1,2}, Show{1,2}, and Read{1,2} instances for (,,) and (,,,)
  * Semigroup and Monoid instances for Data.Functor.Product and
    Data.Functor.Compose

(pho)

2022-02-11 09:29:59 UTC MAIN commitmail json YAML

Resolve a conflict

(pho)

2022-02-11 09:29:13 UTC MAIN commitmail json YAML

doc: Updated devel/hs-basement to 0.0.12

(pho)

2022-02-11 09:28:53 UTC MAIN commitmail json YAML

Note update of net/unbound to 1.15.0nb1.

(he)

2022-02-11 09:28:47 UTC MAIN commitmail json YAML

2022-02-11 09:28:16 UTC MAIN commitmail json YAML

Apply fix from
https://github.com/NLnetLabs/unbound/commit/5f724da8c57c5a6bf1d589b6651daec2dc39a9d1
Paraphrased:
Fix plain DNS-over-TCP so that it doesn't try to use TLS when
TLS is also configured elsewhere.

Bump PKGREVISION.

(he)

2022-02-11 09:27:45 UTC MAIN commitmail json YAML

doc: Updated devel/hs-blaze-builder to 0.4.2.2

(pho)

2022-02-11 09:27:36 UTC MAIN commitmail json YAML

2022-02-11 09:26:20 UTC MAIN commitmail json YAML

doc: Updated devel/hs-call-stack to 0.4.0

(pho)

2022-02-11 09:26:12 UTC MAIN commitmail json YAML

2022-02-11 09:25:22 UTC MAIN commitmail json YAML

doc: Updated devel/hs-cereal to 0.5.8.2

(pho)

2022-02-11 09:25:14 UTC MAIN commitmail json YAML

Update to cereal-0.5.8.2

No changelogs are provided by the upstream.

(pho)

2022-02-11 09:24:09 UTC MAIN commitmail json YAML

2022-02-11 09:23:48 UTC MAIN commitmail json YAML

doc: Updated devel/hs-fingertree to 0.1.5.0nb2

(pho)