The NetBSD Project

CVS log for pkgsrc/math/qalculate/Makefile

[BACK] Up to [cvs.NetBSD.org] / pkgsrc / math / qalculate

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.75 / (download) - annotate - [select for diffs], Thu Apr 18 07:56:56 2024 UTC (25 hours, 43 minutes ago) by wiz
Branch: MAIN
CVS Tags: HEAD
Changes since 1.74: +3 -4 lines
Diff to previous 1.74 (colored) to selected 1.48 (colored)

qalculate: update to 5.0.0.

2024-03-10 Hanna Knutsson <hanna.knutsson@protonmail.com>

	* Do not apply "read precision" setting to integer exponents for values with units
	* Change from line to point (or dot) plot style for data with many discontinuous points

2024-03-08 Hanna Knutsson <hanna.knutsson@protonmail.com>

	* Replace special colorize values, for selection of Unicode exponents, with different use_unicode_signs values
	* Use Unicode exponents, in MathStructure::print(), if format is false, even if tagtype is not TAG_TYPE_TERMINAL
	* Fix Unicode exponents with number bases < 10

2024-03-01 Hanna Knutsson <hanna.knutsson@protonmail.com>

	* Improve parsing of text arguments - fix quotation mark replaced by feet or inches and % replaced by percent variable, remove quotation marks when parts of argument are quoted separately (a "b" "c" = "a b c"), and do not replace quoted curly brackets in expression unless necessary
	* Do not use sexagesimal output format for very large numbers (when scientific notation is necessary for integer part) and reduce maximal number of decimals (for last position when previous positions is non-zero)
	* Handle case when initial guess results in division by zero, and avoid unnecessary error messages, in newtonsolve()

2024-02-27 Hanna Knutsson <hanna.knutsson@protonmail.com>

	* Fix BTC exchange rate from coinbase, if available from other source, not used before restart after exchange rates update, and do not mark BTC as hidden (places the unit in submenu in GUIs)

2024-02-20 Hanna Knutsson <hanna.knutsson@protonmail.com>

	* Support "where" statements, without "where", before main expression, e.g. "a=2, b=3; a^b"

2024-02-18 Hanna Knutsson <hanna.knutsson@protonmail.com>

	* Change handling of "where" expression (create temporary variables) to allow previously undefined variable names and to avoid confusing output of parsed expression (e.g. redefined "c" was displayed as SpeedOfLight)

2024-02-16 Hanna Knutsson <hanna.knutsson@protonmail.com>

	* Detect spelling errors in qalc options (when using set command)

2024-02-14 Hanna Knutsson <hanna.knutsson@protonmail.com>

	* Change handling a vectors in multiple function arguments (of non-vector type) - return vector instead of matrix, require equal number of elements, and use the same vector index for all argument for each function instance (e.g. atan2([1  2], [3  4]) = [atan2(1, 3)  atan(2 4)]
	* Set handle vector property by default, for text, date, and boolean arguments, and for arguments, in global non-builtin functions, without specified type
	* Enable parsing of vectors for text arguments
	* Add foreach() function (simplified for function, using vector instead of counter)
	* Add setbits() function
	* Add flip() function (changes order of elements in vectors and matrices)
	* Add "binary bits" option in qalc

2024-02-08 Hanna Knutsson <hanna.knutsson@protonmail.com>

	* Add LightSecond, LightMinute, and LightHour units
	* Add integerDigits(), digitGet(), and digitSet() functions
	* Add more rounding methods and replace PrintOptions::round_halfway_to_even (and truncate time zone value hack) with PrintOptions::rounding
	* Add PrintOptions::duodecimal_symbols (replace time zone value hack)
	* Replace PrintOptions::lower_case_e with PrintOptions::exp_display and add option for scientific notation without E (10^x)
	* Add ParseOptions::binary_bits (replaces non-boolean values for twos_complement and hexadecimal_twos_complement)
	* Add keep command, which makes variable or function non-temporary, in qalc

2024-02-02 Hanna Knutsson <hanna.knutsson@protonmail.com>

	* Check for potential spelling mistakes in unrecognized qalc commands
	* Show error messages for command without argument, if not a reasonable expression, even if "/" is not used

2024-01-31 Hanna Knutsson <hanna.knutsson@protonmail.com>

	* Add support for hexadecimal floating-point literals using 0x...p... notation (0x1.4p3 = 0x1.4 * 2^3 = 10)
	* In dsolve(), assume that C is real if y is (fixes dsolve(diff(y, x) = y)), and, if y cannot be isolated completely, return resulting equation in solve() function (e.g. dsolve(diff(y , x) = y)= solve(ln(y) = x + C, y))

2024-01-30 Hanna Knutsson <hanna.knutsson@protonmail.com>

	* Add support for a...b syntax for sequence (vector) of integers
	* Add support for j:k (for sequence of numbers with increment 1), and j:i:k (with increment i) syntax
	* Add colon() function (used by new syntax)
	* Use parentheses for number with scientific notation in more cases

2024-01-29 Hanna Knutsson <hanna.knutsson@protonmail.com>

	* Do not list reactivated global objects when using "list" command (without argument)
	* Recognize function name with parentheses appended in argument of "delete" command (useful for deletion of function with same name as variable or unit)
	* Add bitset() and bitget() functions

2024-01-27 Hanna Knutsson <hanna.knutsson@protonmail.com>

	* Support scientific notation using 10^x instead of e notation for non-html output and in qalc

2024-01-26 Hanna Knutsson <hanna.knutsson@protonmail.com>

	* Allow specification of numbers of bits for two's complement input
	* If number of bits are not enough for output of binary or hexadecimal number, use default, instead of minimal, number of bits

2024-01-22 Hanna Knutsson <hanna.knutsson@protonmail.com>

	* Detect potential spelling errors in suspicious expressions

2024-01-21 Hanna Knutsson <hanna.knutsson@protonmail.com>

	* Fix "set cplxform cis"
	* Fix conversion to angle unit for complex angle, cis and polar forms
	* Improve output of complex angle form in some cases
	* Do not display exact result for dual approximation if parsed expression differs (can occur in some cases with conversion to angle unit), and in some cases where the only differences is how exact numbers in function arguments are

2024-01-18 Hanna Knutsson <hanna.knutsson@protonmail.com>

	* Allow multiple options, separated by semicolon, with a single --set (-s) command line argument

2024-01-14 Hanna Knutsson <hanna.knutsson@protonmail.com>

	* lambertw(x*e^x, 0)=x if x>=-1

2024-01-11 Hanna Knutsson <hanna.knutsson@protonmail.com>

	* Fix -no... command line options when using double dash, e.g. "--nocurrencies"
	* Avoid radian unit missing error message with --nounits command line option
	* Exit with error status code if command line expression generates error

2024-01-03 Hanna Knutsson <hanna.knutsson@protonmail.com>

	* Allow values higher than 1 (true) to specify line width of plot grid

2023-12-28 Hanna Knutsson <hanna.knutsson@protonmail.com>

	* Add support for "decimals" "to"-conversion (display as decimal fraction)
	* log(x, 1) is always zero when x has non-zero imaginary part

2023-12-25 Hanna Knutsson <hanna.knutsson@protonmail.com>

	* Fix log(1, 1)

2023-12-23 Hanna Knutsson <hanna.knutsson@protonmail.com>

	* Improve handling of zero solution and initial guess in newtonsolve() and secantsolve(), and check validity of solution

2023-12-18 Hanna Knutsson <hanna.knutsson@protonmail.com>

	* Fix "to"-conversion to prefix and add "prefix" conversion option (for optimal prefix)
	* Fix parsed expression repeated in result with some functions
	* Allow omission of equals zero in solve() function
	* Convert to simple fraction if value only contains integers, when converting to fixed denominator
	* Improve handling of text arguments with default value consisting of two double quotes (empty string)

2023-12-16 Hanna Knutsson <hanna.knutsson@protonmail.com>

	* Fix segfault in newtonsolve() and secantsolve() when equation does not contain variable
	* Algebra and calculus functions represents scalars if all arguments do

2023-12-14 Hanna Knutsson <hanna.knutsson@protonmail.com>

	* Add support for two's complement input (short settings "twosin" and "hextwosin") in qalc
	* Fix current value of hextwos in mode help

Revision 1.74 / (download) - annotate - [select for diffs], Fri Feb 16 20:25:36 2024 UTC (2 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2024Q1-base, pkgsrc-2024Q1
Changes since 1.73: +5 -7 lines
Diff to previous 1.73 (colored) to selected 1.48 (colored)

qalculate: cleanup

Revision 1.73 / (download) - annotate - [select for diffs], Wed Feb 14 07:14:25 2024 UTC (2 months ago) by markd
Branch: MAIN
Changes since 1.72: +3 -1 lines
Diff to previous 1.72 (colored) to selected 1.48 (colored)

qalculate: don't accidentally find doxygen and therefore build docs

Revision 1.72 / (download) - annotate - [select for diffs], Tue Feb 6 02:54:34 2024 UTC (2 months, 1 week ago) by markd
Branch: MAIN
Changes since 1.71: +3 -4 lines
Diff to previous 1.71 (colored) to selected 1.48 (colored)

qalculate: update to 4.9.0

4 years of updates, see ChangeLog for details

Revision 1.71 / (download) - annotate - [select for diffs], Wed Nov 8 13:20:02 2023 UTC (5 months, 1 week ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2023Q4-base, pkgsrc-2023Q4
Changes since 1.70: +2 -2 lines
Diff to previous 1.70 (colored) to selected 1.48 (colored)

*: recursive bump for icu 74.1

Revision 1.70 / (download) - annotate - [select for diffs], Tue Oct 24 22:09:54 2023 UTC (5 months, 3 weeks ago) by wiz
Branch: MAIN
Changes since 1.69: +2 -2 lines
Diff to previous 1.69 (colored) to selected 1.48 (colored)

*: bump for openssl 3

Revision 1.69 / (download) - annotate - [select for diffs], Wed Apr 19 08:08:30 2023 UTC (12 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2023Q3-base, pkgsrc-2023Q3, pkgsrc-2023Q2-base, pkgsrc-2023Q2
Changes since 1.68: +2 -2 lines
Diff to previous 1.68 (colored) to selected 1.48 (colored)

revbump after textproc/icu update

Revision 1.68 / (download) - annotate - [select for diffs], Wed Nov 23 16:18:52 2022 UTC (16 months, 3 weeks ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2023Q1-base, pkgsrc-2023Q1, pkgsrc-2022Q4-base, pkgsrc-2022Q4
Changes since 1.67: +2 -2 lines
Diff to previous 1.67 (colored) to selected 1.48 (colored)

massive revision bump after textproc/icu update

Revision 1.67 / (download) - annotate - [select for diffs], Wed Oct 26 10:31:04 2022 UTC (17 months, 3 weeks ago) by wiz
Branch: MAIN
Changes since 1.66: +2 -2 lines
Diff to previous 1.66 (colored) to selected 1.48 (colored)

*: bump PKGREVISION for libunistring shlib major bump

Revision 1.66 / (download) - annotate - [select for diffs], Mon Apr 18 19:09:57 2022 UTC (2 years ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2022Q3-base, pkgsrc-2022Q3, pkgsrc-2022Q2-base, pkgsrc-2022Q2
Changes since 1.65: +2 -2 lines
Diff to previous 1.65 (colored) to selected 1.48 (colored)

revbump for textproc/icu update

Revision 1.65 / (download) - annotate - [select for diffs], Wed Dec 8 16:02:20 2021 UTC (2 years, 4 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2022Q1-base, pkgsrc-2022Q1, pkgsrc-2021Q4-base, pkgsrc-2021Q4
Changes since 1.64: +2 -2 lines
Diff to previous 1.64 (colored) to selected 1.48 (colored)

revbump for icu and libffi

Revision 1.64 / (download) - annotate - [select for diffs], Wed Sep 29 19:00:09 2021 UTC (2 years, 6 months ago) by adam
Branch: MAIN
Changes since 1.63: +2 -2 lines
Diff to previous 1.63 (colored) to selected 1.48 (colored)

revbump for boost-libs

Revision 1.63 / (download) - annotate - [select for diffs], Wed Apr 21 13:24:12 2021 UTC (2 years, 11 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2021Q3-base, pkgsrc-2021Q3, pkgsrc-2021Q2-base, pkgsrc-2021Q2
Changes since 1.62: +2 -2 lines
Diff to previous 1.62 (colored) to selected 1.48 (colored)

revbump for boost-libs

Revision 1.62 / (download) - annotate - [select for diffs], Wed Apr 21 11:40:29 2021 UTC (2 years, 11 months ago) by adam
Branch: MAIN
Changes since 1.61: +2 -2 lines
Diff to previous 1.61 (colored) to selected 1.48 (colored)

revbump for textproc/icu

Revision 1.61 / (download) - annotate - [select for diffs], Thu Nov 5 09:06:59 2020 UTC (3 years, 5 months ago) by ryoon
Branch: MAIN
CVS Tags: pkgsrc-2021Q1-base, pkgsrc-2021Q1, pkgsrc-2020Q4-base, pkgsrc-2020Q4
Changes since 1.60: +2 -2 lines
Diff to previous 1.60 (colored) to selected 1.48 (colored)

*: Recursive revbump from textproc/icu-68.1

Revision 1.60 / (download) - annotate - [select for diffs], Tue Jun 2 08:22:47 2020 UTC (3 years, 10 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2020Q3-base, pkgsrc-2020Q3, pkgsrc-2020Q2-base, pkgsrc-2020Q2
Changes since 1.59: +2 -2 lines
Diff to previous 1.59 (colored) to selected 1.48 (colored)

Revbump for icu

Revision 1.59 / (download) - annotate - [select for diffs], Fri May 22 10:55:47 2020 UTC (3 years, 10 months ago) by adam
Branch: MAIN
Changes since 1.58: +2 -2 lines
Diff to previous 1.58 (colored) to selected 1.48 (colored)

revbump after updating security/nettle

Revision 1.58 / (download) - annotate - [select for diffs], Wed May 6 14:04:11 2020 UTC (3 years, 11 months ago) by adam
Branch: MAIN
Changes since 1.57: +2 -2 lines
Diff to previous 1.57 (colored) to selected 1.48 (colored)

revbump after boost update

Revision 1.57 / (download) - annotate - [select for diffs], Sun Apr 12 19:48:40 2020 UTC (4 years ago) by joerg
Branch: MAIN
Changes since 1.56: +2 -3 lines
Diff to previous 1.56 (colored) to selected 1.48 (colored)

Fix build with newer automake.

Revision 1.56 / (download) - annotate - [select for diffs], Sun Apr 12 08:28:00 2020 UTC (4 years ago) by adam
Branch: MAIN
Changes since 1.55: +2 -2 lines
Diff to previous 1.55 (colored) to selected 1.48 (colored)

Recursive revision bump after textproc/icu update

Revision 1.55 / (download) - annotate - [select for diffs], Sun Mar 8 16:47:54 2020 UTC (4 years, 1 month ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2020Q1-base, pkgsrc-2020Q1
Changes since 1.54: +2 -2 lines
Diff to previous 1.54 (colored) to selected 1.48 (colored)

*: recursive bump for libffi

Revision 1.54 / (download) - annotate - [select for diffs], Sat Jan 18 23:32:53 2020 UTC (4 years, 3 months ago) by rillig
Branch: MAIN
Changes since 1.53: +2 -2 lines
Diff to previous 1.53 (colored) to selected 1.48 (colored)

all: migrate several HOMEPAGEs to https

pkglint --only "https instead of http" -r -F

With manual adjustments afterwards since pkglint 19.4.4 fixed a few
indentations in unrelated lines.

This mainly affects projects hosted at SourceForce, as well as
freedesktop.org, CTAN and GNU.

Revision 1.53 / (download) - annotate - [select for diffs], Sat Jan 18 21:48:16 2020 UTC (4 years, 3 months ago) by jperkin
Branch: MAIN
Changes since 1.52: +2 -2 lines
Diff to previous 1.52 (colored) to selected 1.48 (colored)

*: Recursive revision bump for openssl 1.1.1.

Revision 1.52 / (download) - annotate - [select for diffs], Sun Jan 12 20:19:57 2020 UTC (4 years, 3 months ago) by ryoon
Branch: MAIN
Changes since 1.51: +2 -1 lines
Diff to previous 1.51 (colored) to selected 1.48 (colored)

*: Recursive revbump from devel/boost-libs

Revision 1.51 / (download) - annotate - [select for diffs], Mon Dec 9 09:31:06 2019 UTC (4 years, 4 months ago) by nros
Branch: MAIN
CVS Tags: pkgsrc-2019Q4-base, pkgsrc-2019Q4
Changes since 1.50: +6 -1 lines
Diff to previous 1.50 (colored) to selected 1.48 (colored)

Use ICONV_CONST from autotools instead of hardcoding OS versions

Use ICONV_CONST instead of hardcoding osversions, this is more portable.
Fixes build on SmartOS.

Revision 1.50 / (download) - annotate - [select for diffs], Wed Nov 20 22:15:28 2019 UTC (4 years, 4 months ago) by markd
Branch: MAIN
Changes since 1.49: +14 -19 lines
Diff to previous 1.49 (colored) to selected 1.48 (colored)

qalculate: update to 3.5.0

10 years worth of development.

Revision 1.49 / (download) - annotate - [select for diffs], Wed Nov 20 22:07:24 2019 UTC (4 years, 4 months ago) by markd
Branch: MAIN
Changes since 1.48: +2 -2 lines
Diff to previous 1.48 (colored)

qalculate*: change maintainer to pkgsc-users@NetBSD.org OKed adam@

Revision 1.48 / (download) - annotate - [selected], Wed Jul 4 13:40:25 2018 UTC (5 years, 9 months ago) by jperkin
Branch: MAIN
CVS Tags: pkgsrc-2019Q3-base, pkgsrc-2019Q3, pkgsrc-2019Q2-base, pkgsrc-2019Q2, pkgsrc-2019Q1-base, pkgsrc-2019Q1, pkgsrc-2018Q4-base, pkgsrc-2018Q4, pkgsrc-2018Q3-base, pkgsrc-2018Q3
Changes since 1.47: +2 -2 lines
Diff to previous 1.47 (colored)

*: Move SUBST_STAGE from post-patch to pre-configure

Performing substitutions during post-patch breaks tools such as mkpatches,
making it very difficult to regenerate correct patches after making changes,
and often leading to substituted string replacements being committed.

Revision 1.47 / (download) - annotate - [select for diffs], Fri Mar 25 21:08:58 2016 UTC (8 years ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2018Q2-base, pkgsrc-2018Q2, pkgsrc-2018Q1-base, pkgsrc-2018Q1, pkgsrc-2017Q4-base, pkgsrc-2017Q4, pkgsrc-2017Q3-base, pkgsrc-2017Q3, pkgsrc-2017Q2-base, pkgsrc-2017Q2, pkgsrc-2017Q1-base, pkgsrc-2017Q1, pkgsrc-2016Q4-base, pkgsrc-2016Q4, pkgsrc-2016Q3-base, pkgsrc-2016Q3, pkgsrc-2016Q2-base, pkgsrc-2016Q2, pkgsrc-2016Q1-base, pkgsrc-2016Q1
Changes since 1.46: +1 -3 lines
Diff to previous 1.46 (colored) to selected 1.48 (colored)

Drop CVP workaround for Clang, with 3.8 the memory use has gone down
enough.

Revision 1.46 / (download) - annotate - [select for diffs], Mon Mar 2 19:59:07 2015 UTC (9 years, 1 month ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2015Q4-base, pkgsrc-2015Q4, pkgsrc-2015Q3-base, pkgsrc-2015Q3, pkgsrc-2015Q2-base, pkgsrc-2015Q2, pkgsrc-2015Q1-base, pkgsrc-2015Q1
Changes since 1.45: +3 -6 lines
Diff to previous 1.45 (colored) to selected 1.48 (colored)

LLVM's correlated value propagation pass is known to require a lot of
memory and CPU time for certain input. Provide a variable
(CLANG_NO_VALUE_PROPAGATION_PASS) for selectively disabling it in those
places known to trigger it.

Revision 1.45 / (download) - annotate - [select for diffs], Sun Dec 15 19:41:23 2013 UTC (10 years, 4 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2014Q4-base, pkgsrc-2014Q4, pkgsrc-2014Q3-base, pkgsrc-2014Q3, pkgsrc-2014Q2-base, pkgsrc-2014Q2, pkgsrc-2014Q1-base, pkgsrc-2014Q1, pkgsrc-2013Q4-base, pkgsrc-2013Q4
Changes since 1.44: +6 -1 lines
Diff to previous 1.44 (colored) to selected 1.48 (colored)

The Clang 3.4RCs started to use slightly more memory when compiling
Calculator.cpp, but it was enough to push it over 2GB. So disable
optimisation for now.

Revision 1.44 / (download) - annotate - [select for diffs], Wed Aug 21 19:53:42 2013 UTC (10 years, 8 months ago) by jperkin
Branch: MAIN
CVS Tags: pkgsrc-2013Q3-base, pkgsrc-2013Q3
Changes since 1.43: +3 -1 lines
Diff to previous 1.43 (colored) to selected 1.48 (colored)

Add -D_LCONV_C99 on SunOS to pick up extended lconv support.

Revision 1.43 / (download) - annotate - [select for diffs], Mon Jul 15 02:02:26 2013 UTC (10 years, 9 months ago) by ryoon
Branch: MAIN
Changes since 1.42: +1 -2 lines
Diff to previous 1.42 (colored) to selected 1.48 (colored)

* .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes
  are replaced with .include "../../devel/readline/buildlink3.mk", and
  USE_GNU_READLINE are removed,

* .include "../../devel/readline/buildlink3.mk" without USE_GNU_READLINE
  are replaced with .include "../../mk/readline.buildlink3.mk".

Revision 1.42 / (download) - annotate - [select for diffs], Sat Sep 15 10:05:32 2012 UTC (11 years, 7 months ago) by obache
Branch: MAIN
CVS Tags: pkgsrc-2013Q2-base, pkgsrc-2013Q2, pkgsrc-2013Q1-base, pkgsrc-2013Q1, pkgsrc-2012Q4-base, pkgsrc-2012Q4, pkgsrc-2012Q3-base, pkgsrc-2012Q3
Changes since 1.41: +2 -2 lines
Diff to previous 1.41 (colored) to selected 1.48 (colored)

recursive bump from libffi shlib major bump
(additionaly, reset PKGREVISION of qt4-* sub packages from base qt4 update)

Revision 1.41 / (download) - annotate - [select for diffs], Tue Sep 11 23:04:32 2012 UTC (11 years, 7 months ago) by asau
Branch: MAIN
Changes since 1.40: +1 -3 lines
Diff to previous 1.40 (colored) to selected 1.48 (colored)

"user-destdir" is default these days

Revision 1.40 / (download) - annotate - [select for diffs], Thu Jun 14 07:43:09 2012 UTC (11 years, 10 months ago) by sbd
Branch: MAIN
CVS Tags: pkgsrc-2012Q2-base, pkgsrc-2012Q2
Changes since 1.39: +2 -2 lines
Diff to previous 1.39 (colored) to selected 1.48 (colored)

Recursive PKGREVISION bump for libxml2 buildlink addition.

Revision 1.39 / (download) - annotate - [select for diffs], Sat Mar 3 00:11:54 2012 UTC (12 years, 1 month ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2012Q1-base, pkgsrc-2012Q1
Changes since 1.38: +2 -2 lines
Diff to previous 1.38 (colored) to selected 1.48 (colored)

Recursive bump for pcre-8.30* (shlib major change)

Revision 1.38 / (download) - annotate - [select for diffs], Mon Feb 6 12:40:53 2012 UTC (12 years, 2 months ago) by wiz
Branch: MAIN
Changes since 1.37: +2 -2 lines
Diff to previous 1.37 (colored) to selected 1.48 (colored)

Revbump for
a) tiff update to 4.0 (shlib major change)
b) glib2 update 2.30.2 (adds libffi dependency to buildlink3.mk)

Enjoy.

Revision 1.37 / (download) - annotate - [select for diffs], Sun Nov 20 05:41:52 2011 UTC (12 years, 5 months ago) by sbd
Branch: MAIN
CVS Tags: pkgsrc-2011Q4-base, pkgsrc-2011Q4
Changes since 1.36: +2 -2 lines
Diff to previous 1.36 (colored) to selected 1.48 (colored)

Recursive bump for math/cln buildlink addition.

Revision 1.36 / (download) - annotate - [select for diffs], Fri Apr 22 13:42:20 2011 UTC (13 years ago) by obache
Branch: MAIN
CVS Tags: pkgsrc-2011Q3-base, pkgsrc-2011Q3, pkgsrc-2011Q2-base, pkgsrc-2011Q2
Changes since 1.35: +2 -1 lines
Diff to previous 1.35 (colored) to selected 1.48 (colored)

recursive bump from gettext-lib shlib bump.

Revision 1.35 / (download) - annotate - [select for diffs], Tue Apr 13 17:25:22 2010 UTC (14 years ago) by drochner
Branch: MAIN
CVS Tags: pkgsrc-2011Q1-base, pkgsrc-2011Q1, pkgsrc-2010Q4-base, pkgsrc-2010Q4, pkgsrc-2010Q3-base, pkgsrc-2010Q3, pkgsrc-2010Q2-base, pkgsrc-2010Q2
Changes since 1.34: +3 -4 lines
Diff to previous 1.34 (colored) to selected 1.48 (colored)

update to 0.9.7
changes:
-General build updates and bug fixes
-Bug fix for segfaults with some uses of integrate()
-New Simplified Chinese translation
-Fix crash with unsupported operator in RPN syntax
-Fix reduction of vector size

Revision 1.34 / (download) - annotate - [select for diffs], Tue Sep 8 19:29:35 2009 UTC (14 years, 7 months ago) by asau
Branch: MAIN
CVS Tags: pkgsrc-2010Q1-base, pkgsrc-2010Q1, pkgsrc-2009Q4-base, pkgsrc-2009Q4, pkgsrc-2009Q3-base, pkgsrc-2009Q3
Changes since 1.33: +2 -2 lines
Diff to previous 1.33 (colored) to selected 1.48 (colored)

Bump revision after CLN update. Addresses PR pkg/42006.

Revision 1.33 / (download) - annotate - [select for diffs], Sun Sep 6 12:17:17 2009 UTC (14 years, 7 months ago) by asau
Branch: MAIN
Changes since 1.32: +2 -2 lines
Diff to previous 1.32 (colored) to selected 1.48 (colored)


Fix breakage after CLN update.

Revision 1.32 / (download) - annotate - [select for diffs], Mon May 25 15:10:28 2009 UTC (14 years, 10 months ago) by drochner
Branch: MAIN
CVS Tags: pkgsrc-2009Q2-base, pkgsrc-2009Q2
Changes since 1.31: +2 -2 lines
Diff to previous 1.31 (colored) to selected 1.48 (colored)

-make this compile with 64-bit time_t
 The fix is suboptimal because the y2037 problem remains. It would be
 better to either
 -extend the "cln" lib for 64-bit integers (but the code is a mess
  already) or
 -split the time_t into a lower/higher part and convert them seperately,
  which is less than elegant.
-add a MESSAGE telling that gnome-vfs or wget are needed to fetch
 currency exchange rates automatically, so the (wrong) wget dependency
 can be removed from child pkgs
bump PKGREVISION

Revision 1.31 / (download) - annotate - [select for diffs], Wed May 20 00:58:22 2009 UTC (14 years, 11 months ago) by wiz
Branch: MAIN
Changes since 1.30: +2 -1 lines
Diff to previous 1.30 (colored) to selected 1.48 (colored)

Recursive ABI depends update and PKGREVISION bump for readline-6.0 shlib
major change.

Reported by Robert Elz in PR 41345.

Revision 1.30 / (download) - annotate - [select for diffs], Sat Dec 20 18:47:00 2008 UTC (15 years, 4 months ago) by reed
Branch: MAIN
CVS Tags: pkgsrc-2009Q1-base, pkgsrc-2009Q1, pkgsrc-2008Q4-base, pkgsrc-2008Q4
Changes since 1.29: +2 -2 lines
Diff to previous 1.29 (colored) to selected 1.48 (colored)

Improve COMMENT and DESCRiptions.
No longer identical.
Don't say Linux since this is for other platforms too.
Don't mention GUI interface in the description for the console package.

By the way, the gtk version is really GNOME, but upstreams calls it gtk.

Revision 1.29 / (download) - annotate - [select for diffs], Fri Jun 20 01:09:25 2008 UTC (15 years, 10 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2008Q3-base, pkgsrc-2008Q3, pkgsrc-2008Q2-base, pkgsrc-2008Q2, cwrapper, cube-native-xorg-base, cube-native-xorg
Changes since 1.28: +3 -1 lines
Diff to previous 1.28 (colored) to selected 1.48 (colored)

Add DESTDIR support.

Revision 1.28 / (download) - annotate - [select for diffs], Mon Nov 5 20:44:03 2007 UTC (16 years, 5 months ago) by drochner
Branch: MAIN
CVS Tags: pkgsrc-2008Q1-base, pkgsrc-2008Q1, pkgsrc-2007Q4-base, pkgsrc-2007Q4
Changes since 1.27: +3 -3 lines
Diff to previous 1.27 (colored) to selected 1.48 (colored)

update to 0.9.6
changes:
-Use Lambert W to solve more equations and avoid infinite loop when solving
 some equations
-More data on elements
-Fix simplification of (1-1/x)^3 and similar
-Fix clumsy mistakes in with prefixes leading to crashes
-Fix parsing of unit expressions (when converting) such as W/(m K)
-Add more exact values for sin() and cos() and avoid floating point underflow
 by, in approximate mode, checking against the value of pi
-Always input decimal separator sign on keypad separator press
-Fix crash when expression entry reclaims focus if compiled with optimizations
 (GTK+)
-New units: typographic units, pouce, pied du roi, grams of TNT and tons of TNT
-New functions: lambertW(), addDays(), addMonths(), addYear(), addTime(),
 isNumber(), isReal(), isRational(), isInteger(), representsNumber(),
 representsReal(), representsRational(), representsInteger()
-New variable: omega constant
-Other minor fixes and enhancements

also fix wrong inclusion of scrollkeeper/bl3

Revision 1.27 / (download) - annotate - [select for diffs], Thu Feb 22 16:15:14 2007 UTC (17 years, 1 month ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2007Q3-base, pkgsrc-2007Q3, pkgsrc-2007Q2-base, pkgsrc-2007Q2, pkgsrc-2007Q1-base, pkgsrc-2007Q1
Changes since 1.26: +3 -1 lines
Diff to previous 1.26 (colored) to selected 1.48 (colored)

Drop the pthrea check in configure completely and just set
PTHREAD_AUTO_VARS.

Revision 1.26 / (download) - annotate - [select for diffs], Tue Feb 20 15:08:47 2007 UTC (17 years, 2 months ago) by adam
Branch: MAIN
Changes since 1.25: +7 -4 lines
Diff to previous 1.25 (colored) to selected 1.48 (colored)

Changes 0.9.5:
* French translation (not fully complete yet)
* Return value in save() and add "name := value" as shortcut
* Integer factorization
* Interpret 0x[0-9,a-f] as hexadecimal number (do not require first digit to be 0-9)
* Add "Engineering" display mode
* Several fixes to display of units and prefixes
* Show value for variables without title in expression completion
* New functions: cross(), heaviside(), rectangular(), triangular(), ramp() kronecker(), sigmoid(), and logit()
* Use radius as argument for circumference()
* Add optional upper and lower limit arguments to integrate() for definite integrals
* Fix precision in logn()
* Ability to set shortcuts for meta modes (KDE)
* Make separate options for "Sort Minus Last" and "Negative Exponents" in numerical display menu
* Add "Edit Expression", "Edit Result", and "Insert Result Variable" to history context menu (KDE)
* Global shortcut for show/hide (KDE)
* Use localized comma for insert matrix/vector
* Remove use of libgnomeui completely and add --with-libgnome configure option
* Fix parsing of "x!)!"
* Use Julian year for light-year value
* Add several accelerator keys (GTK+)
* Connect "Exp" button Exp RPN operation and add Ctrl+Shift+E shortcut
* Fixes for old KDE and Qt versions
* New command line options for qalc: -terse (-t), -nodefs (-n), -nocurrencies, -nodatasets, -nofunctions, -nounits, -novariables

Revision 1.25 / (download) - annotate - [select for diffs], Wed Jul 5 05:37:43 2006 UTC (17 years, 9 months ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2006Q4-base, pkgsrc-2006Q4, pkgsrc-2006Q3-base, pkgsrc-2006Q3
Changes since 1.24: +2 -3 lines
Diff to previous 1.24 (colored) to selected 1.48 (colored)

Sweep pkgsrc and convert packages that included intltool/buildlink3.mk
to use instead "USE_TOOLS+=intltool".  Remove now unused
intltool/buildlink3.mk

Revision 1.24 / (download) - annotate - [select for diffs], Wed Jun 14 20:14:21 2006 UTC (17 years, 10 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2006Q2-base, pkgsrc-2006Q2
Changes since 1.23: +3 -4 lines
Diff to previous 1.23 (colored) to selected 1.48 (colored)

Changes 0.9.4:
*  True RPN mode with stack manipulation
* Dutch translation (from Jaap Woldringh and the Dutch KDE translation team)
* New application icons (from Thomas Lübking)
* API documentation (approximately halfway)
* Enhanced edit matrix/vector dialogs, with widget for GTK+
* View/edit/insert matrix/vector menu items (GTK+)
* Combined dialog for number bases in result and expression (GTK+)
* Fix comma as decimal sign with KDE GUI
* "Convert to Best Unit" and "Convert to Base Units" was swapped (KDE)
* Ignore commas (with dot as decimal sign) in numbers and option to use dot as
  thousands separator
* Fix removal of factors in simplifaction ("1 kg m/s" was simplified to
  "1000 m/s")
* Fix libqalculate.so unresolved symbols
* Fix bug that caused all number arguments to require numbers to be rational
* Interpret 0x..., 0o... and 0b... as hexadecimal, octal and binary numbers,
  respectively, when base is decimal
* Ability to represent numbers as 0x0feff (for HEX), 0b0011101010 (for BIN)
* Set vectors and matrices as the first argument by default
* New functions
* Fix integration
* New unit: psi
* New name format in data files for more flexible translations
* Change some dubious mathematical wordings

Revision 1.23 / (download) - annotate - [select for diffs], Thu Jun 8 12:00:03 2006 UTC (17 years, 10 months ago) by joerg
Branch: MAIN
Changes since 1.22: +2 -2 lines
Diff to previous 1.22 (colored) to selected 1.48 (colored)

Third attempt to get a correct PLIST for qalculate:
Add locale message for sv. Bump revision.
Fix configure to detect libintl correctly on NetBSD.

Don't remove the entry again, fix the script if necessary!

Revision 1.22 / (download) - annotate - [select for diffs], Fri May 26 23:38:59 2006 UTC (17 years, 10 months ago) by wiz
Branch: MAIN
Changes since 1.21: +2 -4 lines
Diff to previous 1.21 (colored) to selected 1.48 (colored)

Fix PLIST, bump PKGREVISION, remove BROKEN_IN.

Revision 1.21 / (download) - annotate - [select for diffs], Thu May 18 20:29:59 2006 UTC (17 years, 11 months ago) by wiz
Branch: MAIN
Changes since 1.20: +3 -1 lines
Diff to previous 1.20 (colored) to selected 1.48 (colored)

Mark as BROKEN_IN pkgsrc-2006Q1 according to
ftp://ftp.NetBSD.org/pub/pkgsrc/misc/kristerw/pkgstat/i386-3.0/20060501.1050/broken.html

Revision 1.20 / (download) - annotate - [select for diffs], Thu May 11 14:21:35 2006 UTC (17 years, 11 months ago) by joerg
Branch: MAIN
Changes since 1.19: +2 -1 lines
Diff to previous 1.19 (colored) to selected 1.48 (colored)

Uses C++.

Revision 1.19 / (download) - annotate - [select for diffs], Sat Apr 22 16:29:47 2006 UTC (18 years ago) by joerg
Branch: MAIN
Changes since 1.18: +2 -1 lines
Diff to previous 1.18 (colored) to selected 1.48 (colored)

Fix PLIST. Bump revision.

Revision 1.18 / (download) - annotate - [select for diffs], Mon Apr 17 07:48:51 2006 UTC (18 years ago) by adam
Branch: MAIN
Changes since 1.17: +4 -5 lines
Diff to previous 1.17 (colored) to selected 1.48 (colored)

Changes 0.9.3:
* Avoid floating point overflow and underflow
* Do not use "Read Precision" in plot
* cos(x*pi*rad) equals 1 if x is even, not -1
* isodate(), localdate(), timestamp(), stamptodate() functions
* Fix show ending zeroes
* Fix prefixes with automatic simplification/factorization
* Approximate comparison
* ...and some more...

Revision 1.17 / (download) - annotate - [select for diffs], Wed Apr 12 16:37:37 2006 UTC (18 years ago) by joerg
Branch: MAIN
Changes since 1.16: +3 -3 lines
Diff to previous 1.16 (colored) to selected 1.48 (colored)

Fix PLIST. LIBTOOL_OVERRIDE is done by default, remove it as well.
Bump revision.

Revision 1.16 / (download) - annotate - [select for diffs], Sat Mar 11 03:26:05 2006 UTC (18 years, 1 month ago) by rillig
Branch: MAIN
CVS Tags: pkgsrc-2006Q1-base, pkgsrc-2006Q1
Changes since 1.15: +2 -2 lines
Diff to previous 1.15 (colored) to selected 1.48 (colored)

The i18n file is not installed on NetBSD, so removed it from the PLIST.
Bumped PKGREVISION.

Revision 1.15 / (download) - annotate - [select for diffs], Fri Feb 24 21:09:13 2006 UTC (18 years, 1 month ago) by adam
Branch: MAIN
Changes since 1.14: +3 -4 lines
Diff to previous 1.14 (colored) to selected 1.48 (colored)

Changes 0.9.2:
- Enhanced factorization, with square free factorization of rational multivariate polynomials
- New simplification using the enhanced factorization
- Much more efficient determinant and matrix inverse calculation
- Greatly enhanced and reworked solving of equations and inequalities
- More efficient evaluation avoiding recalculations
- Generally enhanced and more correct algebraic functionality
- Faster calculation of powers with large exponent and base close to one
- Option to automatically simplify or factorize
- Option to warn about denominators assumed non-zero
- Fix negative exponents with lower-case e
- Fix fetching of exchange rates with gnome-vfs &lt; 2.10
- Polynomial functions: coeff(), lcoeff(), pcontent(), degree(), etc.
- Fix ln(e^x)
- Display "x &lt; 3 && x &gt; 1" as "1 &lt; x &lt; 3"
- Display "&amp;&amp;" and "||" as "and" and "or" by default
- Fix display of fractions in "Decimal (Try Exact)" mode
- Compile without errors or warnings with -pedantic and -Wextra
- Unicode fixes
- ...and many more minor fixes and enhancements (and probably some new bugs)...

Revision 1.14 / (download) - annotate - [select for diffs], Fri Feb 24 00:05:00 2006 UTC (18 years, 1 month ago) by joerg
Branch: MAIN
Changes since 1.13: +8 -3 lines
Diff to previous 1.13 (colored) to selected 1.48 (colored)

Match PKGCONFIG_OVERRIDE with reality. Replace hard-coded -lpthread
reference to unbreak qalculate subpackages on DragonFly. Bump revision.

Revision 1.13 / (download) - annotate - [select for diffs], Sun Feb 19 12:53:30 2006 UTC (18 years, 2 months ago) by wiz
Branch: MAIN
Changes since 1.12: +2 -2 lines
Diff to previous 1.12 (colored) to selected 1.48 (colored)

Add missing file to PLIST. Bump PKGREVISION.

Revision 1.12 / (download) - annotate - [select for diffs], Sun Feb 5 23:10:04 2006 UTC (18 years, 2 months ago) by joerg
Branch: MAIN
Changes since 1.11: +2 -2 lines
Diff to previous 1.11 (colored) to selected 1.48 (colored)

Recursive revision bump / recommended bump for gettext ABI change.

Revision 1.11 / (download) - annotate - [select for diffs], Tue Jan 24 07:32:20 2006 UTC (18 years, 2 months ago) by wiz
Branch: MAIN
Changes since 1.10: +2 -1 lines
Diff to previous 1.10 (colored) to selected 1.48 (colored)

Bump BUILDLINK_RECOMMENDED of textproc/expat to 2.0.0 because
of the shlib major bump.
PKGREVISION++ for the dependencies.

Revision 1.10 / (download) - annotate - [select for diffs], Tue Jan 3 20:54:15 2006 UTC (18 years, 3 months ago) by joerg
Branch: MAIN
Changes since 1.9: +2 -1 lines
Diff to previous 1.9 (colored) to selected 1.48 (colored)

pthread user => include pthread.b3.mk. Use PTHREAD_* instead of
hard-wired -lpthread. Use sys/wait.h on DragonFly as well.

Revision 1.9 / (download) - annotate - [select for diffs], Tue Oct 11 12:35:06 2005 UTC (18 years, 6 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2005Q4-base, pkgsrc-2005Q4
Changes since 1.8: +5 -5 lines
Diff to previous 1.8 (colored) to selected 1.48 (colored)

Changes 0.8.2:
* Use gnomevfs instead of wget if available
* Allow user to specify wget options
* Update currencies

Revision 1.8 / (download) - annotate - [select for diffs], Sun Sep 11 17:01:14 2005 UTC (18 years, 7 months ago) by minskim
Branch: MAIN
CVS Tags: pkgsrc-2005Q3-base, pkgsrc-2005Q3
Changes since 1.7: +2 -1 lines
Diff to previous 1.7 (colored) to selected 1.48 (colored)

Include intltool/buildlink3.mk to pull in all dependencies required to
run intltool.

Revision 1.7 / (download) - annotate - [select for diffs], Wed Aug 3 13:36:05 2005 UTC (18 years, 8 months ago) by adam
Branch: MAIN
Changes since 1.6: +7 -11 lines
Diff to previous 1.6 (colored) to selected 1.48 (colored)

Changes 0.8.1:
Remove requirement glib-2.0 >= 2.4 and require libxml2 >= 2.3.8
Do not use unicode prefix names for long names
Add even(), odd() and shift() functions and operators "<<" and ">>"
Compile with kdelibs and Qt >= 3.1 (KDE)
Add glib-2.0 and libxml-2.0 to PKG_CHECK_MODULES (KDE)
Display prefix in object info (KDE)
Confirm overwriting result and plot image files (KDE)
Use KIO instead of wget for fetching exchange rates (KDE)
Close gnuplot and disable save button when no series defined (KDE)

Revision 1.6 / (download) - annotate - [select for diffs], Sun May 22 20:08:14 2005 UTC (18 years, 11 months ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2005Q2-base, pkgsrc-2005Q2
Changes since 1.5: +2 -2 lines
Diff to previous 1.5 (colored) to selected 1.48 (colored)

Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:

	USE_GNU_TOOLS	-> USE_TOOLS
	awk		-> gawk
	m4		-> gm4
	make		-> gmake
	sed		-> gsed
	yacc		-> bison

Revision 1.5 / (download) - annotate - [select for diffs], Mon Apr 11 21:46:31 2005 UTC (19 years ago) by tv
Branch: MAIN
Changes since 1.4: +1 -2 lines
Diff to previous 1.4 (colored) to selected 1.48 (colored)

Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.

Revision 1.4 / (download) - annotate - [select for diffs], Tue Feb 1 16:16:16 2005 UTC (19 years, 2 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2005Q1-base, pkgsrc-2005Q1
Changes since 1.3: +2 -2 lines
Diff to previous 1.3 (colored) to selected 1.48 (colored)

Changes 0.7.2:
* Show base (if not decimal, hexadecimal or non-standard) as subscript
* Use singular instead of abbreviated name for completion
* Fix "Convert result" button
* Use the last operator for leftover stack values
* Fix RPN crash and don't add lonely stack value to itself
* Workaround freeze with message dialog without buttons

Revision 1.3 / (download) - annotate - [select for diffs], Fri Dec 17 22:09:51 2004 UTC (19 years, 4 months ago) by minskim
Branch: MAIN
CVS Tags: pkgsrc-2004Q4-base, pkgsrc-2004Q4
Changes since 1.2: +2 -1 lines
Diff to previous 1.2 (colored) to selected 1.48 (colored)

This package uses intltool; include intltool/buildlink3.mk.

Revision 1.2 / (download) - annotate - [select for diffs], Thu Nov 25 10:03:30 2004 UTC (19 years, 4 months ago) by adam
Branch: MAIN
Changes since 1.1: +2 -2 lines
Diff to previous 1.1 (colored) to selected 1.48 (colored)

Changes 0.7.1:
* Only use unicode character if available in the used font
  Fixes plus sign not displayed correctly in keypad, and wide keypad
* Do not round exact integers not in exponential format.
  Fixes display of large numbers in non-decimal number bases * Fix crash on systems, such as amd64, where size_t is not long int
* Do not update plot data when not changed
* Rearrange plot dialog and make x variable separate for each plot
  function
* Generate vector function
* Fix some cases with nested trigonometric functions by adding
  option to set default angle unit to none, to allow angle unit in argument
* Try with assumptions set to unknown in solve function if not successful
* Be more picky in comparisons with units
* Fix comparison of unit with unknown
* Fix 0.5!

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Fri Nov 19 12:30:07 2004 UTC (19 years, 5 months ago) by adam
Branch: TNF
CVS Tags: pkgsrc-base
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored) to selected 1.48 (colored)

Qalculate! is a modern multi-purpose desktop calculator for GNU/Linux.
It is small and simple to use but with much power and versatility underneath.
Features include customizable functions, units, arbitrary precision, plotting,
and a graphical interface (GTK+) that uses a one-line fault-tolerant expression
entry (although it supports optional traditional buttons).

Revision 1.1 / (download) - annotate - [select for diffs], Fri Nov 19 12:30:07 2004 UTC (19 years, 5 months ago) by adam
Branch: MAIN
Diff to selected 1.48 (colored)

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb <webmaster@jp.NetBSD.org>