./textproc/hs-unicode-data, Access Unicode character database

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 0.6.0nb1, Package name: hs-unicode-data-0.6.0nb1, Maintainer: pkgsrc-users

unicode-data provides Haskell APIs to efficiently access the Unicode
character database. Performance is the primary goal in the design of this
package.

The Haskell data structures are generated programmatically from the UCD files.
The latest Unicode version supported by this library is 15.1.0
(https://www.unicode.org/versions/Unicode15.1.0/).


Required to run:
[lang/ghc94]

Master sites:

Filesize: 169.288 KB

Version history: (Expand)


CVS history: (Expand)


   2025-02-02 14:06:08 by Masatake Daimon | Files touched by this commit (1173)
Log message:
Bump all Haskell packages after switching the default compiler.
   2025-01-30 13:02:07 by Masatake Daimon | Files touched by this commit (5) | Package updated
Log message:
textproc/hs-unicode-data: update to unicode-data-0.6.0

## 0.6.0 (July 2024)

- Updated to [Unicode 15.1.0](https://www.unicode.org/versions/Unicode15.1.0/).
- Added `showCodePoint` to `Unicode.Char`.
- Added `intToDigiT` to `Unicode.Char.Numeric`.

### Removed

- Removed deprecated `isLetter` and `isSpace` from `Unicode.Char.General`.
  Use the corresponding functions from `Unicode.Char.General.Compat` instead.
- Remove deprecated `isLower` and `isUpper` from `Unicode.Char.Case`.
  Use the corresponding functions from `Unicode.Char.Case.Compat` instead.
- Removed deprecated `Unicode.Char.Numeric.isNumber`.
  Use `Unicode.Char.Numeric.Compat.isNumber` instead.

### Deprecations

- `Unicode.Char.General.isAlphaNum`.
  Use `Unicode.Char.General.Compat.isAlphaNum` instead.

## 0.5.0 (July 2024)

- Fix the inlining of `Addr#` literals and reduce their size. This results in
  a sensible decrease of the executable size.
- Changed `integerValue` from `Char -> Maybe Int` to `(Integral a) => Char \ 
-> Maybe a`.
   2024-05-09 03:32:57 by Masatake Daimon | Files touched by this commit (1137)
Log message:
Recursive revbump after changing the default Haskell compiler
   2024-04-28 13:04:00 by Masatake Daimon | Files touched by this commit (1)
Log message:
textproc/hs-unicode-data: Fix build with GHC 9.8

This breaks build with the currently default GHC 9.6. Please bear with me
until I switch the default compiler.
   2023-11-02 07:37:49 by Masatake Daimon | Files touched by this commit (1141)
Log message:
Revbump all Haskell after updating lang/ghc96
   2023-10-24 09:54:20 by Masatake Daimon | Files touched by this commit (2)
Log message:
textproc/hs-unicode-data: Fix build on GHC 9.6
   2023-10-09 06:55:01 by Masatake Daimon | Files touched by this commit (988)
Log message:
Bump Haskell packages after updating lang/ghc94
   2023-01-24 13:12:11 by Masatake Daimon | Files touched by this commit (4)
Log message:
textproc/hs-unicode-data: Update to 0.4.0.1

0.4.0.1 (December 2022)
* Fix Unicode blocks handling on big-endian architectures.

0.4.0 (September 2022)
* Update to Unicode 15.0.0.

0.3.1 (September 2022)
* Added full case conversions to Unicode.Char.Case:
  - Case folding: caseFoldMapping and toCaseFoldString.
  - Lower case: lowerCaseMapping and toLowerString.
  - Upper case: upperCaseMapping and toUpperString.
  - Title case: titleCaseMapping and toTitleString.
  - Stream mechanism: Unfold and Step.
  - Added isNumeric, numericValue and integerValue to Unicode.Char.Numeric.
  - Added the module Unicode.Char.General.Blocks.
  - Add compatibility module:
    * Unicode.Char.Numeric.Compat
* Deprecations
  - Unicode.Char.Numeric.isNumber: it will be replaced by isNumeric in a
    future version of this package. Use the function in
    Unicode.Char.Numeric.Compat instead.