Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

ghc-vty-5.39-1.1 RPM for s390x

From OpenSuSE Ports Tumbleweed for s390x

Name: ghc-vty Distribution: openSUSE:Factory:zSystems
Version: 5.39 Vendor: openSUSE
Release: 1.1 Build date: Sat Nov 25 11:34:10 2023
Group: Unspecified Build host: s390zl25
Size: 214670024 Source RPM: ghc-vty-5.39-1.1.src.rpm
Packager: https://bugs.opensuse.org
Url: https://hackage.haskell.org/package/vty
Summary: A simple terminal UI library
Vty is terminal GUI library in the niche of ncurses. It is intended to be easy
to use and to provide good support for common terminal types.

See the 'vty-examples' package as well as the program
'examples/interactive_terminal_test.hs' included in the 'vty' repository for
examples on how to use the library.

Import the 'Graphics.Vty' convenience module to get access to the core parts of
the library.

© 2006-2007 Stefan O'Rear; BSD3 license.

© Corey O'Connor; BSD3 license.

© Jonathan Daugherty; BSD3 license.

Provides

Requires

License

BSD-3-Clause

Changelog

* Mon Oct 09 2023 Peter Simons <psimons@suse.com>
  - Update vty to version 5.39.
    5.39
    - ---
    Package changes:
    * Now builds with `mtl-2.3.*`.
    Bug fixes:
    * Fixed a long-standing issue where unused input on stdin could cause a
      memory error and a crash when Vty was being initialized. (#266)
* Thu Mar 30 2023 Peter Simons <psimons@suse.com>
  - Updated spec file to conform with ghc-rpm-macros-2.5.2.
* Sun Jan 22 2023 Peter Simons <psimons@suse.com>
  - Update vty to version 5.38.
    5.38
    - ---
    This release includes numerous API changes, although none of them should
    break your programs. If so, please open a ticket on the Vty issue
    tracker.
    Package changes:
    * Support mtl 2.3 (thanks Daniel Firth)
    * The test and example collections got completely overhauled to clean up
      bit rot.
    * Moved example programs into examples/ under a new vty-examples
      package.
    * Moved test suite programs out of vty.cabal and into tests/ under a
      new vty-tests package.
    * Cleaned up all build-depends lists in all three packages to remove
      unused deps.
    * Consolidated the test suite library modules into the vty-tests
      library to avoid redundant compilation.
    * Added build.sh to build everything in the development process to
      help ensure that examples and tests don't get forgotten.
    * Removeed lots of stale/unused modules in old test/ directory.
    * Got vty-examples building again and resolved various warnings and
      issues.
    API changes:
    * All modules got explicit export lists. Prior to this release, many
      modules exported everything they contained, making it difficult to
      know what was really intended to be part of the public API. The new
      export lists should contain everything that applications need; the
      risk of breakage exists but should be minor. Please open a ticket if
      you were using something that is no longer exported. It might be that
      it was never supposed to be exported to begin with, or it might be
      just something we need to export once again.
    * Moved the `attributeControl` function from `Graphics.Vty.Input.Loop`
      to `Graphics.Vty.Input`.
    * Removed the `Graphics.Vty.Image.DisplayText` alias for `Text`.
    * Unified the `Image` cropping constructors (thanks Fraser Tweedale)
* Sat Sep 17 2022 Peter Simons <psimons@suse.com>
  - Update vty to version 5.37.
    5.37
    - ---
    * The Xterm backend is now used when `TERM` matches `rxvt` or `tmux`.
    * PictureToSpans now uses `error`, not `fail`, to avoid dependence on
      soon-to-be-removed `MonadFail` instance for `ST` (#248)
* Mon Jul 04 2022 Peter Simons <psimons@suse.com>
  - Update vty to version 5.36.
    5.36
    - ---
    * Raised `microlens` upper bound to allow building with 0.4.13.
    * Replaced incomplete `Show` output for `Picture` with a derived
      instance; derived `Show` for `Cursor` and `Background`, too.
* Mon Mar 21 2022 Peter Simons <psimons@suse.com>
  - Update vty to version 5.35.1.
    5.35.1
    - -----
    Bug fixes:
    * Fixed a build issue with a test program.
    5.35
    - ---
    New features:
    * Add support for 24-bit color (thanks @u-quark). This change
      updates Vty to look at the `COLORTERM` environment variable that is
      conventionally used to advertise support for truecolor escape
      sequences. The change also updates the Vty demo to demonstrate
      24-bit colors. This change also adds a new data type, `ColorMode`,
      to represent the color mode in use, as well as an `Output` interface
      field, `outputColorMode`, to track the active color mode and use it
      to clamp emitted color escape sequences to the active color range.
    API changes:
    * All types in `Graphics.Vty.Input.Events` now have strict constructor
      fields.
    * Internal events are now wrapped in a new `InternalEvent` type to
      improve how signal handling is done. This change modifies the `Input`
      type's event channel API to produce `InternalEvents`, not `Events`.
      The new `InternalEvent` either wraps `Event` with the `InputEvent`
      constructor (the previous behavior) or indicates that Vty resumed
      after handling a signal using the `ResumeAfterSignal` constructor.
      This change avoids the previous use of `EvResize` with lazy exception
      arguments as a sentinel value for `ResumeAfterSignal`.
    Other enhancements:
    * Bracketed paste parsing performance has been greatly improved thanks
      to benchmarking and optimization work by @iphydf. As part of that
      work, Vty now uses bytestrings rather than Strings internally when
      parsing input to look for events.
    * The `\b` value is now interpreted as `KBS` (thanks @vglfr)
* Sun Feb 27 2022 Peter Simons <psimons@suse.com>
  - Update vty to version 5.34.
    5.34
    - ---
    API changes:
    * Added an `NFData` instance for `Event` (thanks Mario Lang)
    * Removed `Monoid` and `Semigroup` instances for `Attr` and
      `MaybeDefault`. This change removed the instances because they were
      misbehaved; merging `Attr` and `MaybeDefault` values with these
      instances resulted in field value losses. For example, before this
      change,
    ```
    (defAttr `withForeColor` blue) <> (defAttr `withBackColor` green)
    ```
      would result in just
    ```
      (defAttr `withBackColor` green)
    ```
      because the instances were designed to favor the right-hand
      arguments' fields even if they had not been explicitly set
      (a consequence of the `MaybeDefault` `Semigroup` instance).
      While that behavior was sensible specifically in the context of
      `Graphics.Vty.Inline`, it wasn't a useful user-facing API and it made
      for surprising instance behavior. Since there is actually no good way
      to handle this in a `Semigroup` instance for `Attr` -- some choices
      have to be made about how to merge two attributes' foreground colors,
      and that won't be much better than what we had -- the instance was
      just removed.
* Wed Feb 24 2021 psimons@suse.com
  - Update vty to version 5.33 revision 1.
    Upstream has revised the Cabal build instructions on Hackage.
* Tue Feb 23 2021 psimons@suse.com
  - Update vty to version 5.33.
    5.33
    - ---
    API changes:
    * The `Cursor` type got a new `PositionOnly` constructor for cursor
      placement without visibility.
    Package changes:
    * Relaxed upper bound for `random`
    * Updated `microlens` bounds to allow 0.4.12
    Other improvements:
    * Various hlint-driven improvements (thanks Willem Van Onsem)
    * The implementation of `color240` was improved (thanks (Willem Van
      Onsem)
* Thu Dec 17 2020 Ondřej Súkup <mimi.vx@gmail.com>
  - disable %{ix86} build
* Tue Nov 17 2020 Ondřej Súkup <mimi.vx@gmail.com>
  -  relax overspecified constraints on microlens
* Mon Nov 09 2020 psimons@suse.com
  - Update vty to version 5.32.
    5.32
    - ---
    New features:
    * Meta-PageUp and Meta-PageDown are now supported (#193)
    * Added `supportsItalics` and `supportsStrikethrough` functions to
      check for feature support in terminfo
    Bug fixes:
    * Detect utf-8 mode in `LANG` regardless of case (thanks Emeka
      Nkurumeh)
* Tue Oct 06 2020 psimons@suse.com
  - Update vty to version 5.31.
    5.31
    - ---
    New features and API changes:
    * Added support for strikethrough mode. This change adds a new
      `strikethrough` `Style` value and uses the `smxx` and `rmxx`
      Terminfo capabilities to activate and deactivate strikethrough mode,
      respectively. If the terminfo does not report those capabilities,
      this style is ignored.
    * `Output`: added the `setDisplayBounds` field to set the output
      dimensions of the output handle; added an implementation of this for
      the `TerminfoBased` backend.
    Other changes:
    * The C prototype for `vty_c_get_window_size` in `gwinsz.h` was fixed.
* Tue Aug 18 2020 Peter Simons <psimons@suse.com>
  - Replace %setup -q with the more modern %autosetup macro.
* Thu Jul 16 2020 psimons@suse.com
  - Update vty to version 5.30.
    5.30
    - ---
    New features:
    * Added `Graphics.Vty.setWindowTitle` to emit an escape
      sequence to set the window title, provide the terminal emulator
      accepts Xterm-style title sequences. For details, see:
      https://tldp.org/HOWTO/Xterm-Title-3.html
* Fri Jul 10 2020 psimons@suse.com
  - Update vty to version 5.29.
    5.29
    - ---
    API changes:
    * The Input type got a new field, 'restoreInputState'. This field
      allows the end user to have direct access to the logic needed to
      restore the terminal's input state flags. Prior to having this field,
      this state restoration logic could only be invoked as part of calling
      'shutdownInput', but since that function does other things (like
      killing threads) it is not advisable to call it repeatedly (which is
      necessary in the use case this change is intended to support). This
      can be called directly to restore the input state flags as needed,
      although this is not required if 'shutdown' (or 'shutdownInput') is
      called.
    Other changes:
    * attributeControl: explicitly enable the ICRNL terminal mode flag (see
      [#187] and c572ad).
* Tue Jun 09 2020 psimons@suse.com
  - Add vty at version 5.28.2.

Files

/usr/bin/vty-build-width-table
/usr/bin/vty-crash-fix
/usr/bin/vty-crash-test
/usr/bin/vty-demo
/usr/bin/vty-mode-demo
/usr/lib64/ghc-9.6.3/lib
/usr/lib64/ghc-9.6.3/lib/libHSvty-5.39-FjJRxmjOZUMI4hgAE5HpRH-ghc9.6.3.so
/usr/share/licenses/ghc-vty
/usr/share/licenses/ghc-vty/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Sat Mar 9 12:50:11 2024