Commit graph

361442 commits

Author SHA1 Message Date
wiz
8080ca7b85 py-zipp: update distinfo
From Oskar
2022-08-02 16:06:01 +00:00
leot
4e8c5b06d4 doc: Updated devel/conftest to 0.34.0 2022-08-02 12:15:32 +00:00
leot
8345a401ff conftest: Update to 0.34.0
Changes:
## 0.34.0
### New Features
- Add `parse_config` and `parse_config_file` Rego functions to allow unit
  testing using config file snippets. Find out how to use these at
  <https://www.conftest.dev/#writing-unit-tests>.

## 0.33.2
### Other improvements
- Bump OPA to v0.42.2

## 0.33.1
### Other improvements
- Bump OPA to v0.42.1

## 0.33.0
### Bug fixes
- Fix 404 error when using conftest push

### Other improvements
- Bump OPA to v0.42.0
- Bump Go to v1.18.3
2022-08-02 12:15:24 +00:00
adam
4601bb6564 Updated textproc/py-validate-pyproject, devel/py-importlib-metadata 2022-08-02 11:20:42 +00:00
adam
24f70042c4 py-importlib-metadata: updated to 4.12.0
v4.12.0
* py-93259: Now raise ``ValueError`` when ``None`` or an empty
  string are passed to ``Distribution.from_name`` (and other
  callers).
2022-08-02 11:20:02 +00:00
pin
6a41720ecf doc: Updated net/yaydl to 0.11.3 2022-08-02 11:18:41 +00:00
pin
2c1f91ce0a net/yaydl: update to 0.11.3
yaydl 0.11.3
-Updated dependencies, fixed file name generation for videos that contain
 question marks.

yaydl 0.11.2
-Fixed youtube regex error #11
-Added .gitignore

yaydl 0.11.1
-getting rid of unsafe { }.

yaydl 0.11
-Added spankbang handler (cheers, @egdv from GitHub), updated dependencies.
2022-08-02 11:18:20 +00:00
pin
e64eaa1252 doc: Updated www/wiki-tui to 0.5.1 2022-08-02 11:17:34 +00:00
pin
f5f6c95387 www/wiki-tui: update to 0.5.1
What's Changed
Exciting New Features
  Add toc position setting by @Builditluc in #65
  Add more toc settings by @Builditluc in #66

Bug Fixes
  Fix toc not having scrollbars by @Builditluc in #64
  Fix Word Spacing by @Builditluc in #68
  Fix the crash that occurs when no links or headers exist by @Builditluc in #70
2022-08-02 11:17:11 +00:00
adam
3e404765d8 py-validate-pyproject: updated to 0.9
Version 0.9
- Use ``tomllib`` from the standard library in Python 3.11+

Version 0.8.1
- Workaround typecheck inconsistencies between different Python versions
- Publish :pep:`561` type hints

Version 0.8
- New :pypi:`pre-commit` hook
- Allow multiple TOML files to be validated at once via **CLI**
  (*no changes regarding the Python API*).
2022-08-02 11:16:48 +00:00
leot
16b7bb927c doc: Updated devel/opa to 0.43.0 2022-08-02 11:16:29 +00:00
pin
e4032dc3cb doc: Updated audio/termusic to 0.7.1 2022-08-02 11:16:24 +00:00
leot
9a59a49805 opa: Update to 0.43.0
pkgsrc changes:
 - Remove patches/patch-runtime_check__user__unix.go that was shared
   and applied upstream

Changes:
## 0.43.0

This release contains a number of fixes, enhancements, and performance
improvements.

### Object Insertion Optimization

Rego Object insertion operations did not scale linearly in the past,
and experienced noticeable reallocation/memory movement overheads once
the Object grew past 120k-150k keys in size.

This release introduces different handling of Object internals during
insert operations to avoid pathological reallocation behavior, and
allows linear performance scaling up into the 500k key range and
beyond.

### Tooling, SDK, and Runtime

- Add lines covered/not covered counts to test coverage report
- Plugins: Status and logs plugins now accept any HTTP 2xx status code
- Runtime: Generalize OS check for MacOS to other Unix-likes

#### Bundles Fixes

The Bundles system received several bugfixes and performance
improvements in this release:

  - Bundle: `opa bundle` command now supports `.yml` files
  - Plugins/Bundle: Use unique temporary files for persisting activated
    bundles to disk
  - Server: Old policy path is now checked for bundle ownership before update
  - Storage+Bundle: Old bundle data is now cleaned before new bundle activation
  - Bundle: Paths are now normalized before bundle root check occurs to
    ensure checks are os-independent

#### Storage Fixes

The Storage system received mostly bugfixes, with a notable performance
improvement for large bundles in this release:

  - storage/inmem: Speed up bundle activation by avoiding unnecessary read
    operations
  - storage/inmem: Paths are now created during truncate operations if they
    did not exist before
  - storage/disk: Symlinks work with relative paths now

### Rego and Topdown

The Rego compiler and runtime environment received a number of
bugfixes, and a few new features this release, as well as a notable
performance improvement for large Objects (covered above).

- AST/Compiler: New method for obtaining parsed, but otherwise unprocessed modules is now available
- `object.subset`: Support array + set combination
- Compiler: Prevent erasure of `print()` statements in the compiler via
  a `WithEnablePrintStatements` option to `compiler.Compiler` and
  `compiler.optimizer`
- Topdown fixes:
  - AST/Builtins: `type_name` builtin now has more precise type metadata and
    improved docs
  - Topdown/copypropagation: Ref-based tautologies like `input.a == input.a`
    are no longer eliminated during the copy-propagation pass
  - Topdown/parse_units: Use big.Rat for units parsing to avoid floating-point
    rounding issues on fractional units.
  - Topdown: `is_valid` builtins no longer error, and should always return
    booleans
  - Topdown: `glob.match` now can be used without delimiters

### Documentation

 - Docs: Add GraphQL API authorization tutorial
 - Docs/bundles: Add bundle CLI command documentation
 - Docs/policy-reference: Remove extra quote in Grammar to fix formatting
 - Docs/policy-testing: Add missing future.keywords imports
 - Docs: Add note about counter_server_query_cache_hit metric
 - Docs: Kube tutorial includes updated cert install procedure
 - Docs: GraphQL builtins section now includes a note about framework-specific
   `@directive` definitions in GraphQL schemas
 - Docs: Add warning about name collisions in older policies from importing
   'future.keywords'

### Miscellaneous

- Dependency bumps, notably:
  - aquasecurity/trivy-action from 0.5.1 to 0.6.1
  - github.com/sirupsen/logrus from 1.8.1 to 1.9.0
  - github.com/vektah/gqlparser/v2 from 2.4.5 to 2.4.6
  - google.golang.org/grpc from 1.47.0 to 1.48.0
  - terser in /docs/website/scripts/live-blocks
  - glob-parent in /docs/website/scripts/live-blocks
- Added GKE Policy Automation to ADOPTERS.md
- Fix minor code unreachability error
2022-08-02 11:16:21 +00:00
pin
a436e8430c audio/termusic: update to 0.7.1
[v0.7.1]
Released on: July 28th, 2022.
    Fix: invalid main_data offset error from symphonia 0.5.1.
    Fix: invalid color for key config.
    Fix: losing focus when popup mounted.
    Fix: improve database sync speed.
    Fix: don't output alsa buffer underrun warning.

[v0.7.0]
Released on: July 24th, 2022.
    New: support configure function keys like F1 or f1 in config editor.
    New: add command line option -c to disable cover art, and -d to disable
     discord rpc.
    New: add command line option -m to set max_depth of folder. Default to 4.
    New: configure multiple root directory separated by ; in config editor,
     and o hotkey to switch among them.
    New: a hotkey to add root, A to remove root.
    Fix: improve sync database to speed up loading.
    Fix: improve discord rpc to speed up loading.
    Fix: avoid none error when searching youtube, by fixing invidious error
     return when pressing next page.

[v0.6.19]
Released on: July 15th, 2022.
    New: replace color editor and key editor with new config editor.
    New: duplicate keys will not be saved.
2022-08-02 11:15:56 +00:00
pin
afcd4241b9 doc: Updated time/heliocron to 0.8.1 2022-08-02 11:15:09 +00:00
pin
75692fd7ab time/heliocron: update to 0.8.1
[v0.8.1] - 2022-08-01
Added
   add --watch and --json to an overall much enhanced poll subcommand.

[v0.8.0] - 2022-07-31
Added
   poll subcommand - when executed, will return whether it is day, night or
    twilight (#54).

Fixed
   More time zone errors... more tests added to prove correctness (#53).
   Errors when running integration tests using rust-cross (#58)

Changed
   Switched from pseudo-decimal degrees (e.g. "5.1N") to actual decimal
    degrees (e.g. 5.1) for coordinates (#56).
   Refactored Github Actions workflows

[v0.7.0] - 2022-06-12
Fixed
   Fixed handling of time zones so that they are now implemented properly (#41).

Changed
   Migrated from old version of structopt to clap for command line argument
    parsing.

Removed
   --date-format flag has been removed as it adds additional complexity when
    validating command line args for no real benefit.

[v0.6.1] - 2022-06-11

Cut a new release specifically for crates.io to bump tokio-walltime to v0.1.2.
Previous versions of tokio-walltime failed to compile on the Raspberry Pi
architectures. v0.6.0 of heliocron has been yanked from crates.io.
2022-08-02 11:14:49 +00:00
adam
39bc9db285 Updated textproc/py-yamllint, comms/py-colorama, sysutils/py-ansible-compat, devel/py-jaraco.classes 2022-08-02 09:57:51 +00:00
adam
242d2214e4 py-jaraco.classes: updated to 3.2.2
v3.2.2
======
Refreshed package metadata.
Enrolled with Tidelift.
2022-08-02 09:56:13 +00:00
adam
ee4a7dd31c py-ansible-compat: updated to 2.2.0
v2.2.0

Minor Changes

Allow installation of pre-released collections
Add support for python 3.11

Bugfixes

Refactor schema testing
Use jsonschema 4.6.0
Avoid CryptographyDeprecationWarning from paramiko
2022-08-02 09:51:23 +00:00
adam
98efb26a46 py-colorama: updated to 0.4.5
0.4.5
* Catch a racy ValueError that could occur on exit.
* Create README-hacking.md, for Colorama contributors.
* Tweak some README unicode characters that don't render correctly on PyPI.
* Fix some tests that were failing on some operating systems.
* Add support for Python 3.9.
* Add support for PyPy3.
* Add support for pickling with the ``dill`` module.
2022-08-02 09:48:51 +00:00
adam
7ebe1b965a py-yamllint: updated to 1.27.1
1.27.1 (2022-07-08)

Fix failing test on key-duplicates for old PyYAML versions

1.27.0 (2022-07-08)

Add support for Python 3.10, drop Python 3.5
Fix GitHub Actions workflow
Refactor --format=auto logic
Update GitHub format output to use groups
Rule comments: allow whitespace after the shebang marker
Multiple minor fixes in documetation
Configure Sphinx to make man page show up in apropos
Attempt to clarify configuration file location in documentation
Rule key-duplicates: don't crash on redundant closing brackets or braces
Use rstcheck to lint documentation on the CI
Remove UTF-8 headers in Python files, since Python 2 isn't supported
Add various tests to increase coverage
Rule octal-values: pre-compile regex for performance
Add sections for Visual Studio Code and IntelliJ in documentation
Rule new-lines: add the type: platform config option
Add the new rule float-values
2022-08-02 09:45:58 +00:00
ast
cca9f943ce Updated net/p5-Net-DNS to 1.34 and net/p5-Net to 3.14 2022-08-02 09:31:57 +00:00
ast
3479ca0041 net/p5-Net update to 3.14
- Remove broken link in Net::FTP manpage.  [Mike Blackwell]
    - Fix EBCDIC detection.  [Karl Williamson, PR#45]
    - Fix non-deterministic output in libnet.cfg.  [Sergei Trofimovich, PR#44]
    - Fix TLS session reuse for dataconn with TLS 1.3 when using passive mode.
      [Steffen Ullrich, PR#41]
2022-08-02 09:29:50 +00:00
ast
087bf05c94 net/p5-Net-DNS update to 1.34
. Improve robustness of EDNS option compose/decompose functions.
 . Simplify code in Makefile.PL.
2022-08-02 09:25:56 +00:00
adam
c2aa21a408 Updated databases/ldb, games/scummvm 2022-08-02 09:21:40 +00:00
adam
fa429924c0 scummvm: updated to 2.6.0
2.6.0 "Insane Escapism" (2022-08-01)

New games:

Added support for Sanitarium.
Added support for Hades Challenge.
Added support for Marvel Comics Spider-Man: The Sinister Six.
Added support for The 11th Hour.
Added support for Clandestiny.
Added support for Tender Loving Care (CD-ROM Editions).
Added support for Uncle Henry's Playhouse.
Added support for Wetlands.
Added support for Chewy: Esc from F5.
General:

The project license has been upgraded to GPLv3+.
Now ScummVM requires C++11 for building.
Removed support for VS2008, as it doesn't support C++11.
Implemented enhanced filtering in the Search box. See "Understanding the search box" in the documentation for details.
Implemented Icon view in GUI (GSoC task).
Added support for the RetroWave OPL3 sound card.
Added OpenDingux beta port.
Removed Symbian port.
Added the create_engine tool to aid when creating new engines.
Fixed mouse capture in HiDPI mode.
The GUI Options dialog now marks settings overridden via command lines in red.
In GUI launcher it is now possible to group games by different categories.
GUI launcher has new game icons grid look.
AGI:

Added support for Macintosh versions of Manhunter 1-2.
AGS:

Synced changes from upstream AGS.
AGOS:

Elvira 1: Added support for Casio MT-540/CT-460/CSM-1 and CMS/GameBlaster.
Elvira 1 & 2, Waxworks, Simon the Sorcerer: Added AdLib OPL3 mode. Depending on the game, this will prevent cut-off notes, add extra notes or instruments and/or add stereo.
Elvira 2, Waxworks: Added support for AdLib and MT-32 sound effects.
Elvira 2, Waxworks, Simon the Sorcerer floppy: Added Mixed MIDI support (MT-32 music with AdLib sound effects).
Simon the Sorcerer floppy: Improved AdLib sound effects accuracy.
Simon the Sorcerer: DOS version music tempos are now accurate. Both DOS and Windows versions now offer the choice of the DOS music tempos or the faster Windows tempos.
Simon the Sorcerer 2: Improved AdLib and GM support.
Simon the Sorcerer 2: Added workaround for the missing MT-32 tracks in the intro.
BBVS:

Fixed the size of the main menu buttons being incorrect in some cases.
Fixed crash at the end of the Hock-A-Loogie mini game.
Buried:

Added support for skipping synchronous audio and video.
The mouse pointer is now hidden during cutscenes.
Implemented game pausing via Control-P.
After saving, the player returns back to the game instead of the Biochip menu.
The game is now always paused when the Biochip menu or the save/restore dialogs are open.
Added metadata to saved games, including thumbnails, creation date and play time.
Saved games are now sorted by slot, like in other engines, instead of being sorted alphabetically.
The currently selected item is now stored in saved games.
Comments from Arthur that play in the background can now be stopped with the space key (the same key that replays Arthur's last comment).
The agent evaluation (current points) can now be shown with Control-D.
Fixed global flag corruption in death screens.
Dreamweb:

Added text to speech for dialogs and object descriptions.
Glk:

Added support for ZX Spectrum games with graphics in the Scott sub-engine.
Kyra:

Added support for the Traditional Chinese versions of Legend of Kyrandia 1 - 3.
Added sound support for the Macintosh version of Legend of Kyrandia.
Added support for playing the Macintosh non-talkie version of Legend of Kyrandia 1 directly from the files on the CD. This means you no longer have to run the installer to extract the data files.
NGI:

Fixed the rolling bridge state in scene 13.
Fixed getting stuck when teleporting to the foot in scene 30.
Fixed inconsistent cactus state.
Private:

Refactored code to allow rendering using the original 256 color palette.
Fixed endianness issues.
Added support for the Korean release.
Supernova:

Added text to speech for dialogs and object descriptions.
SCI:

Added support for Text To Speech in SCI floppy games.
Allow saving from the ScummVM Global Game Menu in the following games: BRAIN1, BRAIN2, ECOQUEST1, ECOQUEST2, FAIRYTALES, PHARKAS, GK1, GK2, ICEMAN, KQ1, KQ4, KQ5, KQ6, KQ7, LB1, LB2, LIGHTHOUSE, LONGBOW, LSL1, LSL2, LSL3, LSL5, LSL6, LSL6HIRES, LSL7, PEPPER, PHANT2, PQ1, PQ2, PQ3, PQ4, PQSWAT, QFG1, QFG1VGA, QFG2, QFG3, QFG4, SHIVERS, SQ1, SQ3, SQ4, SQ5, SQ6, TORIN.
Fixed many script bugs in KQ6, KQ7, GK2, QFG3, QFG4, Hoyle4.
Fixed loading autosaves in Shivers and Phantasmagoria 2.
Added support for Korean fan translations from the scummkor project: EcoQuest 2 and Gabriel Knight 2.
SCUMM:

New Digital iMUSE engine. Support for re-compressed audio files dropped in Full Throttle, The Dig and The Curse of Monkey Island.
Rewrote music player for Amiga versions of Indy3 and Loom in accordance to the original code.
Fix missing cursor in the 16-color Macintosh versions of Loom and Indiana Jones and the Last Crusade after loading a savegame.
It is now possible to replace the music in the floppy versions of Loom with audio tracks. The ScummVM Wiki has a list of which parts of the Swan Lake ballet the game uses: https://wiki.scummvm.org/index.php/Loom.
Fixed some MIDI music looping when it shouldn't in EGA/VGA floppy versions of The Secret of Monkey Island.
Fixed the lava flowing in the wrong direction in the VGA floppy version of The Secret of Monkey Island.
Fixed Full Throttle distorted graphics when Ben runs past the Corley Motors entrance.
Fixed the dissolve effect, and Bobbin's palette when leaving the darkened tent in the TurboGrafx-16 version of Loom, to match the original behavior.
Fixed incorrect dark rooms colors in MM NES on strict-alignment ports such as Dreamcast, Apple silicon and various handheld devices.
Rewrote text rendering routines for Full Throttle, The Dig and The Curse of Monkey Island in accordance to the original interpreters.
Rewrote timer handling routines to better approximate both the original hardware behavior and the intepreters' quirks.
Fix lip syncing in Backyard Baseball 2003.
Fixed various original game bugs and oversights in most of the LucasArts titles: https://wiki.scummvm.org/index.php?title=SCUMM/Game_Enhancements. Most of these enhancements can now be disabled in the game's settings if one prefers playing with the original behavior.
Added sliders for tweaking the CD audio playback in the MI1 CD intro, as well as VGA CD Loom in general. Loom is particularly sensitive to the amount of silence at the start of the track, and the CD version of MI1 never synced the music as well to the intro as previous versions. See the Wiki for more details.
Detect and reject the EGA floppy version of Monkey Island 1 that Limited Run Games sold in their Monkey Island 30th Anniversary Anthology, if using the default DISK4 image, which is corrupted. It's possible to recover a working image from the KryoFlux dumps they also provided.
Fixed random number generation which fixes throwing in Backyard Baseball.
Marked a workaround in Monkey Island 2 (FM-Towns version) as an enhancement; this workaround originally restored a portion of the map chasing puzzle in Booty Island which had been cut in the FM-Towns version of the game.
Made the sentence line in Maniac Mansion work like the manual says, i.e. you can click on it to execute the command.
Sherlock:

Fixed slowdown in Serrated Scalpel intro when playing the game from a small installation.
Fixed UI glitches in Serrated Scalpel.
Titanic:

Fixed not being able to see House in Starfield puzzle.
TwinE:

Fixed a bug in the collision code that made the game unfinishable due to the tank not moving any further in scene 63.
Fixed light angle calculation which produced rendering artifacts in a few scenes.
Fixed polygon rendering method for the boat windows.
Fixed wrong shooting direction for some actors.
Fixed door movement in some situations.
Android port:

Added hardware acceleration for 3D graphics.
Improved touch controls.
macOS port:

Added support for displaying OSD messages on the Touch Bar.
Windows port:

Added "Portable Mode" in which the executable's directory is used to store application files if a scummvm.ini file is present, instead of the user's profile directory.
Fixed detection of the Application Data path on Windows 95/98/ME.
RISC OS port:

Added support for dynamic plugins.
Added a native MIDI driver.
Nintendo DS port:

Fixed screen scrolling when using the Load and Save dialogs.
2022-08-02 09:21:24 +00:00
adam
1509f21103 ldb: updated to 2.5.2
2.5.2:
Unknown changes
2022-08-02 09:20:43 +00:00
ast
657b012ce9 doc: Updated time/p5-Test-Time to 0.092 and time/p5-DateTime-Locale 1.35 2022-08-02 09:18:12 +00:00
ast
c04f8b77ab time/p5-Test-Time update to 0.092
. Fix x_authority (No change in the code)
  . Fix prototype attributes for older perl versions
  . Avoid subroutine redefine warning when using with Devel::Cover (nanto #15)
2022-08-02 09:11:51 +00:00
ast
dac44f10a6 time/p5-DateTime-Locale: update to 1.35
- The code passed to DateTime::Locale->load is now validated and untainted
  before using it to load and eval data from the filesystem.
- Rebuilt all locale data with the data from CLDR 40.0.0.
2022-08-02 09:08:07 +00:00
ast
4216c60617 math/p5-Math-BigInt: reset PKGREVISION after update 2022-08-02 08:50:15 +00:00
ast
3f9909ebeb math/p5-Math-GMP: reset PKGREVISION after update 2022-08-02 08:47:40 +00:00
wiz
1c150b57be p5-Math-BigInt-Pari: reset PKGREVISION after update 2022-08-02 08:40:20 +00:00
wiz
d8a53ddb5d p5-Math-Pari: reset PKGREVISION after update 2022-08-02 08:39:47 +00:00
wiz
4f570f078e p5-Math-BigInt-GMP: reset PKGREVISION after update 2022-08-02 08:39:08 +00:00
ast
3e60b60822 doc: Updated math/p5-Math-BigInt-Pari to 1.3009 2022-08-02 08:35:42 +00:00
ast
c86df080bb math/p5-Math-BigInt-Pari: update to 1.3009 from 1.3008
* Sync test files with Math-BigInt.
 * Depend on updated versions of p5-Math-Pari and p5-Bigint
2022-08-02 08:33:24 +00:00
ast
c553a17934 math/p5-Math-Pari: Add missing PKGNAME with prefix p5- 2022-08-02 08:26:51 +00:00
ast
03202cbe09 doc: Updated math/p5-Math-Pari to 2.030523 2022-08-02 08:06:16 +00:00
ast
5b95cf5342 math/p5-Math-Par: fix mangled patch file due to keyword substitution 2022-08-02 08:01:46 +00:00
wiz
22e3c954c6 inkscape: adapt patch to version submitted upstream 2022-08-02 07:31:05 +00:00
ast
d0b39474d3 math/p5-Math-Pari: Update to 2.030523 (from 2.01080900)
Way too many changes since 2.01080900 to re-mention here, for details
  see https://metacpan.org/release/ILYAZ/Math-Pari-2.030523/changes

  That said, a lot of work seems to have been into the modules own
  patch handling and fixing/adding tests. In fact, for 2.030523 we
  have now:
  All tests PASS:
    Files=7, Tests=591
  Up from
    Files=5, Tests=564
  for 2.01080900 albeit with the exact same five Binary and
  Hexadecimal "non-portable number" warnings in test t/00_Pari.t

  By skipping GNUPlot and Math::PariBuild by re-using the earlier
  Makefile.PL we can avoid a lot of the apparent grief the build
  would otherwise encounter.
2022-08-02 07:22:00 +00:00
ast
2dfeec0d6b doc: Updated math/p5-Math-GMP to 2.25 2022-08-02 06:00:13 +00:00
ast
0952d15d91 math/p5-Math-GMP: update to Math-GMP-2.25 (from 2.20)
- Refactoring.
    - Test::Builder workaround
    - tests+better docs for bnok() (Binomial)
    - Eliminate warning about not_here() in GMP.xs.
    - add support for bmulf() to multiply by a floating point number
    - add support for bnok() (Binomial)
    - Signature files are generated unreliably and are an ongoing source of
      bug reports. As a result, we decided to axe them altogether.
        - https://github.com/turnstep/Math-GMP/issues/6
    - Apply doc patch from @hvds documenting the pitfalls of division by zero.
2022-08-02 05:58:10 +00:00
ast
da8fdba860 doc: Updated math/p5-Math-BigInt-GMP to 1.6011 2022-08-02 05:51:52 +00:00
ast
1c4ebd9581 math/p5-Math-BigInt-GMP: Updated to 1.6011
* Sync test files with Math-BigInt.
* Add static gmp_version() function (code provided by FGasper on GitHub).
* Make t/01load.t display the output from gmp_version().
2022-08-02 05:49:59 +00:00
ast
9aa6a48db4 doc: Updated math/p5-Math-BigInt to 1.999837 2022-08-02 05:40:16 +00:00
ast
98f980a155 PR category/123
math/p5-Math-BigInt: update to 1.999837 (from 1.999827)
 * Improve compatibility with older versions of the Math-BigRat distribution.
 * Re-enable upgrading in Math::BigFloat->bdiv().
 * Improvements to upgrading, downgrading, and rounding:
   . Fix bug related to upgrading in Math::BigInt->brsft() in Perl <= 5.16.
   . Fix Math::BigFloat->bpi().
   .  Improve as_int(), as_float(), and as_rat().
 * Improve methods div_scale() and round_mode() so they work better with
   subclasses. This fixes CPAN RT #125430.
 * Make div_scale() accept a Math::Big(Int|Float|Rat) object as input. This
   fixes CPAN RT #140599.
 * Add new methods numerator(), denominator(), and fparts().
 * Fix bug in to_ieee754(). Avoid that the significand overflows.
2022-08-02 05:35:57 +00:00
gutteridge
76ab350ca5 fvwm3: this version conflicts with other fvwm-related packages 2022-08-02 01:08:13 +00:00
gutteridge
73a7d0e81e fvwm: this package also conflicts with fvwm3 2022-08-02 01:05:02 +00:00