Commit Graph

20 Commits

Author SHA1 Message Date
Stefan Eßer
5bdd626528 vendor/bc: import of version 5.3.0
This version adds support for command line editing and history using
the editline or readline libraries in addition to the line editing
features available in previous versions.
2022-06-11 11:50:28 +02:00
Stefan Eßer
23aff12408 vendor/bc: import release 5.2.0
This version is imported only for documentary purposes since it does
not contain any changes that are relevant for the FreeBSD base system.
2021-11-30 18:26:22 +01:00
Stefan Eßer
5d58a51571 vendor/bc: update to version 5.1.0
This version adds options and functions that allow to print numbers
in the open interval (-1 .. 1) with or without a leading 0 digit.

Additionally, an option has been added to prevent line wrap and
allows to print arbitrarily long results on a single line.
2021-10-04 21:22:35 +02:00
Stefan Eßer
2f57ecae4b vendor/bc: imoport release 5.0.0
This is a new major release with a number of changes and extensions:

- Limited the number of temporary numbers and made the space for them
  static so that allocating more space for them cannot fail.
- Allowed integers with non-zero scale to be used with power, places,
  and shift operators.
- Added greatest common divisor and least common multiple to lib2.bc.
- Made bc and dc UTF-8 capable.
- Added the ability for users to have bc and dc quit on SIGINT.
- Added the ability for users to disable prompt and TTY mode by
  environment variables.
- Added the ability for users to redefine keywords.
- Added dc's modular exponentiation and divmod to bc.
- Added the ability to assign strings to variables and array elements
  and pass them to functions in bc.
- Added dc's asciify command and stream printing to bc.
- Added bitwise and, or, xor, left shift, right shift, reverse,
  left rotate, right rotate, and mod functions to lib2.bc.
- Added the functions s2u(x) and s2un(x,n), to lib2.bc.
2021-08-09 22:32:55 +02:00
Stefan Eßer
7a590c074c Vendor import of Gavin D. Howard's bc version 4.0.0 2021-04-06 10:44:52 +02:00
Stefan Eßer
893ecb52db Vendor import of bc 3.3.4 2021-03-19 09:39:56 +01:00
Stefan Eßer
1fa9712ce0 bc: Vendor import new version 3.3.3 2021-03-05 11:30:11 +01:00
Stefan Eßer
f131090388 Vendor import of Gavin Howard's bc-3.3.0 2021-02-17 22:29:31 +01:00
Stefan Eßer
47a52dc4d4 Vendor import of Gavin Howard's bc version 3.2.6 2021-01-31 20:58:45 +01:00
Stefan Eßer
7fe0a3f208 Import bc 3.2.4 2020-12-27 21:53:09 +01:00
Stefan Eßer
253e722024 Import version 3.2.3 2020-12-06 11:38:46 +00:00
Stefan Eßer
2e4772e823 Import version 3.2.0 2020-11-26 17:27:07 +00:00
Stefan Eßer
907a6834f7 Revert incomplete import of version 3.2.0 2020-11-26 17:18:18 +00:00
Stefan Eßer
04f2650428 Update to version 3.2.0 2020-11-26 16:52:17 +00:00
Stefan Eßer
9fef4b8de3 Update to version 3.1.6 2020-10-01 15:40:24 +00:00
Stefan Eßer
592e97f5f6 Upgrade to version 3.1.5
This version fixes a bug that only occurs when with chinese locale settings.
2020-08-05 10:07:43 +00:00
Stefan Eßer
a68dea2ff9 Import version 3.1.4
This version makes dc exit after processing all commands passed via -e or -f
instead of waiting for more input on STDIN (add "-f -" to the command line
to emulate the behavior of versionm 3.1.3 and earlier, if desired).

The version and copyright message are no longer printed for interactive
sessions as was the case with the prior implementation in the FreeBSD base
system.

Obtained from:	https://git.yzena.com/gavin/bc
2020-08-03 18:55:39 +00:00
Stefan Eßer
ee177a09be Upgrade to version 3.1.3
This version fixes an incompatibility with GNU bc.
2020-07-10 11:00:40 +00:00
Stefan Eßer
3960d8924a Update to release 3.1.1
This release fixes a regression from traditional bc behavior in FreeBSD
with regard to "-e quit" being passed on the command line and add Spanish
message catalogs.
2020-07-07 07:02:33 +00:00
Stefan Eßer
1f958cfad7 Import new 2-clause BSD licenced implementation of the bc and dc commands
These implementations of the bc and dc programs offer a number of advantages
compared to the current implementations in the FreeBSD base system:

- They do not depend on external large number functions (i.e. no dependency
  on OpenSSL or any other large number library)

- They implements all features found in GNU bc/dc (with the exception of
  the forking of sub-processes, which the author of this version considers
  as a security issue).

- They are significantly faster than the current code in base (more than
  2 orders of magnitude in some of my tests, e.g. for 12345^100000).

- They should be fully compatible with all features and the behavior of the
  current implementations in FreeBSD (not formally verified).

- They support POSIX message catalogs and come with localized messages in
  Chinese, Dutch, English, French, German, Japanese, Polish, Portugueze,
  and Russian.

- They offer very detailed man-pages that provide far more information than
  the current ones.

Approved by:	imp
Obtained from:	https://git.yzena.com/gavin/bc
Differential Revision:	https://reviews.freebsd.org/D19982
2020-06-27 15:03:19 +00:00