pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/math Changes 0.9.4:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/82d999ad424e
branches:  trunk
changeset: 514597:82d999ad424e
user:      adam <adam%pkgsrc.org@localhost>
date:      Wed Jun 14 20:14:21 2006 +0000

description:
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

diffstat:

 math/qalculate-bases/Makefile       |    5 +-
 math/qalculate-bases/PLIST          |    3 +-
 math/qalculate-bases/distinfo       |    8 +-
 math/qalculate-currency/Makefile    |    5 +-
 math/qalculate-currency/PLIST       |    3 +-
 math/qalculate-currency/distinfo    |    8 +-
 math/qalculate-gtk/Makefile         |    7 +-
 math/qalculate-gtk/PLIST            |    8 +-
 math/qalculate-gtk/distinfo         |   10 +-
 math/qalculate-gtk/patches/patch-aa |    6 +-
 math/qalculate-kde/Makefile         |    5 +-
 math/qalculate-kde/PLIST            |    8 +-
 math/qalculate-kde/distinfo         |    8 +-
 math/qalculate-units/Makefile       |    5 +-
 math/qalculate-units/PLIST          |    3 +-
 math/qalculate-units/distinfo       |    8 +-
 math/qalculate/Makefile             |    7 +-
 math/qalculate/PLIST                |  194 +++++++++++++++++++++++++++++++++++-
 math/qalculate/distinfo             |   12 +-
 math/qalculate/patches/patch-aa     |    6 +-
 math/qalculate/patches/patch-ab     |   12 +-
 21 files changed, 265 insertions(+), 66 deletions(-)

diffs (truncated from 567 to 300 lines):

diff -r 2d8e3796beb8 -r 82d999ad424e math/qalculate-bases/Makefile
--- a/math/qalculate-bases/Makefile     Wed Jun 14 19:24:15 2006 +0000
+++ b/math/qalculate-bases/Makefile     Wed Jun 14 20:14:21 2006 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.8 2006/05/11 14:21:35 joerg Exp $
+# $NetBSD: Makefile,v 1.9 2006/06/14 20:14:21 adam Exp $
 
-DISTNAME=      qalculate-bases-0.9.3
-PKGREVISION=   2
+DISTNAME=      qalculate-bases-0.9.4
 CATEGORIES=    math
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=qalculate/}
 
diff -r 2d8e3796beb8 -r 82d999ad424e math/qalculate-bases/PLIST
--- a/math/qalculate-bases/PLIST        Wed Jun 14 19:24:15 2006 +0000
+++ b/math/qalculate-bases/PLIST        Wed Jun 14 20:14:21 2006 +0000
@@ -1,4 +1,5 @@
-@comment $NetBSD: PLIST,v 1.4 2006/04/28 18:35:06 joerg Exp $
+@comment $NetBSD: PLIST,v 1.5 2006/06/14 20:14:21 adam Exp $
 bin/qalculate-bases
 share/applications/qalculate-bases.desktop
+share/locale/nl/LC_MESSAGES/qalculate-bases.mo
 share/locale/sv/LC_MESSAGES/qalculate-bases.mo
diff -r 2d8e3796beb8 -r 82d999ad424e math/qalculate-bases/distinfo
--- a/math/qalculate-bases/distinfo     Wed Jun 14 19:24:15 2006 +0000
+++ b/math/qalculate-bases/distinfo     Wed Jun 14 20:14:21 2006 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.3 2006/04/17 07:48:51 adam Exp $
+$NetBSD: distinfo,v 1.4 2006/06/14 20:14:21 adam Exp $
 
-SHA1 (qalculate-bases-0.9.3.tar.gz) = 7de833fc0f64cd72f06ad558f8a052c4b41b9796
-RMD160 (qalculate-bases-0.9.3.tar.gz) = 1e04adc17a077bdf4786ae2afb7ed4c35b2e8a22
-Size (qalculate-bases-0.9.3.tar.gz) = 362602 bytes
+SHA1 (qalculate-bases-0.9.4.tar.gz) = 71f4071bfd6217eb30788c41e95c531cca55b610
+RMD160 (qalculate-bases-0.9.4.tar.gz) = be0c2e11eaca3dfce064b751903249486264f857
+Size (qalculate-bases-0.9.4.tar.gz) = 368685 bytes
diff -r 2d8e3796beb8 -r 82d999ad424e math/qalculate-currency/Makefile
--- a/math/qalculate-currency/Makefile  Wed Jun 14 19:24:15 2006 +0000
+++ b/math/qalculate-currency/Makefile  Wed Jun 14 20:14:21 2006 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.8 2006/05/11 14:21:35 joerg Exp $
+# $NetBSD: Makefile,v 1.9 2006/06/14 20:14:21 adam Exp $
 
-DISTNAME=      qalculate-currency-0.9.3
-PKGREVISION=   2
+DISTNAME=      qalculate-currency-0.9.4
 CATEGORIES=    math
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=qalculate/}
 
diff -r 2d8e3796beb8 -r 82d999ad424e math/qalculate-currency/PLIST
--- a/math/qalculate-currency/PLIST     Wed Jun 14 19:24:15 2006 +0000
+++ b/math/qalculate-currency/PLIST     Wed Jun 14 20:14:21 2006 +0000
@@ -1,4 +1,5 @@
-@comment $NetBSD: PLIST,v 1.4 2006/04/28 18:35:06 joerg Exp $
+@comment $NetBSD: PLIST,v 1.5 2006/06/14 20:14:21 adam Exp $
 bin/qalculate-currency
 share/applications/qalculate-currency.desktop
+share/locale/nl/LC_MESSAGES/qalculate-currency.mo
 share/locale/sv/LC_MESSAGES/qalculate-currency.mo
diff -r 2d8e3796beb8 -r 82d999ad424e math/qalculate-currency/distinfo
--- a/math/qalculate-currency/distinfo  Wed Jun 14 19:24:15 2006 +0000
+++ b/math/qalculate-currency/distinfo  Wed Jun 14 20:14:21 2006 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.3 2006/04/17 07:48:52 adam Exp $
+$NetBSD: distinfo,v 1.4 2006/06/14 20:14:21 adam Exp $
 
-SHA1 (qalculate-currency-0.9.3.tar.gz) = 09218aa3a6606c0488459280f78130202c849211
-RMD160 (qalculate-currency-0.9.3.tar.gz) = 6dbe1f36abd52b67e8731b6c72bd6ce618ce7349
-Size (qalculate-currency-0.9.3.tar.gz) = 364071 bytes
+SHA1 (qalculate-currency-0.9.4.tar.gz) = 8352fd1bc8434299e4c3a1111f1b6b275246ee0f
+RMD160 (qalculate-currency-0.9.4.tar.gz) = fa7a52c922ed0c01494e43b6a9c971124a9856cb
+Size (qalculate-currency-0.9.4.tar.gz) = 370506 bytes
diff -r 2d8e3796beb8 -r 82d999ad424e math/qalculate-gtk/Makefile
--- a/math/qalculate-gtk/Makefile       Wed Jun 14 19:24:15 2006 +0000
+++ b/math/qalculate-gtk/Makefile       Wed Jun 14 20:14:21 2006 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.12 2006/05/11 14:21:35 joerg Exp $
+# $NetBSD: Makefile,v 1.13 2006/06/14 20:14:21 adam Exp $
 
-DISTNAME=      qalculate-gtk-0.9.3
-PKGREVISION=   2
+DISTNAME=      qalculate-gtk-0.9.4
 CATEGORIES=    math
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=qalculate/}
 
@@ -18,7 +17,7 @@
 GNU_CONFIGURE=         yes
 
 .include "../../devel/libglade2/buildlink3.mk"
-.include "../../devel/libgnome/buildlink3.mk"
+.include "../../devel/libgnomeui/buildlink3.mk"
 .include "../../math/qalculate/buildlink3.mk"
 .include "../../textproc/scrollkeeper/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r 2d8e3796beb8 -r 82d999ad424e math/qalculate-gtk/PLIST
--- a/math/qalculate-gtk/PLIST  Wed Jun 14 19:24:15 2006 +0000
+++ b/math/qalculate-gtk/PLIST  Wed Jun 14 20:14:21 2006 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.5 2006/04/28 18:35:06 joerg Exp $
+@comment $NetBSD: PLIST,v 1.6 2006/06/14 20:14:21 adam Exp $
 bin/qalculate-gtk
 share/applications/qalculate-gtk.desktop
 share/gnome/help/qalculate-gtk/C/appendixa.xml
@@ -24,13 +24,16 @@
 share/gnome/help/qalculate-gtk/C/figures/mainwindow.png
 share/gnome/help/qalculate-gtk/C/figures/plot-data.png
 share/gnome/help/qalculate-gtk/C/figures/plot-settings.png
+share/gnome/help/qalculate-gtk/C/figures/rpn-mode.png
 share/gnome/help/qalculate-gtk/C/figures/store-variable.png
 share/gnome/help/qalculate-gtk/C/figures/unit-manager.png
 share/gnome/help/qalculate-gtk/C/figures/variable-manager.png
 share/gnome/help/qalculate-gtk/C/legal.xml
 share/gnome/help/qalculate-gtk/C/qalculate-gtk.xml
+share/locale/nl/LC_MESSAGES/qalculate-gtk.mo
 share/locale/sv/LC_MESSAGES/qalculate-gtk.mo
 share/omf/qalculate-gtk/qalculate-gtk-C.omf
+share/pixmaps/qalculate.png
 share/qalculate-gtk/glade/about.glade
 share/qalculate-gtk/glade/argumentrules.glade
 share/qalculate-gtk/glade/csvexport.glade
@@ -41,14 +44,15 @@
 share/qalculate-gtk/glade/functionedit.glade
 share/qalculate-gtk/glade/functions.glade
 share/qalculate-gtk/glade/main.glade
+share/qalculate-gtk/glade/matrix.glade
 share/qalculate-gtk/glade/matrixedit.glade
 share/qalculate-gtk/glade/namesedit.glade
 share/qalculate-gtk/glade/nbases.glade
-share/qalculate-gtk/glade/nbexpression.glade
 share/qalculate-gtk/glade/periodictable.glade
 share/qalculate-gtk/glade/plot.glade
 share/qalculate-gtk/glade/precision.glade
 share/qalculate-gtk/glade/preferences.glade
+share/qalculate-gtk/glade/setbase.glade
 share/qalculate-gtk/glade/unit.glade
 share/qalculate-gtk/glade/unitedit.glade
 share/qalculate-gtk/glade/units.glade
diff -r 2d8e3796beb8 -r 82d999ad424e math/qalculate-gtk/distinfo
--- a/math/qalculate-gtk/distinfo       Wed Jun 14 19:24:15 2006 +0000
+++ b/math/qalculate-gtk/distinfo       Wed Jun 14 20:14:21 2006 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.5 2006/04/17 07:48:52 adam Exp $
+$NetBSD: distinfo,v 1.6 2006/06/14 20:14:21 adam Exp $
 
-SHA1 (qalculate-gtk-0.9.3.tar.gz) = d12aaaee539cffc3b1c606ea60444753206e5364
-RMD160 (qalculate-gtk-0.9.3.tar.gz) = 10ff107609d66a2737426d45247d1826c0e86a18
-Size (qalculate-gtk-0.9.3.tar.gz) = 1474039 bytes
-SHA1 (patch-aa) = 11907cc8a8dcb6242687f108ca982b7368b0a4f3
+SHA1 (qalculate-gtk-0.9.4.tar.gz) = 1cf5219d7f5c5375468e521a0784eb186ebe1253
+RMD160 (qalculate-gtk-0.9.4.tar.gz) = 3cf72bc37e04548f7174909648dcee43c1c18dff
+Size (qalculate-gtk-0.9.4.tar.gz) = 1546220 bytes
+SHA1 (patch-aa) = a8f186eb76a16d6f2b6329da50a2bbd07994414c
diff -r 2d8e3796beb8 -r 82d999ad424e math/qalculate-gtk/patches/patch-aa
--- a/math/qalculate-gtk/patches/patch-aa       Wed Jun 14 19:24:15 2006 +0000
+++ b/math/qalculate-gtk/patches/patch-aa       Wed Jun 14 20:14:21 2006 +0000
@@ -1,8 +1,8 @@
-$NetBSD: patch-aa,v 1.3 2006/04/17 07:48:52 adam Exp $
+$NetBSD: patch-aa,v 1.4 2006/06/14 20:14:21 adam Exp $
 
---- src/Makefile.in.orig       2006-03-11 11:58:48.000000000 +0100
+--- src/Makefile.in.orig       2006-06-01 22:56:34.000000000 +0200
 +++ src/Makefile.in
-@@ -531,7 +531,6 @@ uninstall-am: uninstall-binPROGRAMS unin
+@@ -536,7 +536,6 @@ uninstall-am: uninstall-binPROGRAMS unin
  
  
  install-exec-local:
diff -r 2d8e3796beb8 -r 82d999ad424e math/qalculate-kde/Makefile
--- a/math/qalculate-kde/Makefile       Wed Jun 14 19:24:15 2006 +0000
+++ b/math/qalculate-kde/Makefile       Wed Jun 14 20:14:21 2006 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.8 2006/05/07 13:51:20 joerg Exp $
+# $NetBSD: Makefile,v 1.9 2006/06/14 20:14:21 adam Exp $
 
-DISTNAME=      qalculate-kde-0.9.3.1
-PKGREVISION=   1
+DISTNAME=      qalculate-kde-0.9.4
 CATEGORIES=    math
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=qalculate/}
 
diff -r 2d8e3796beb8 -r 82d999ad424e math/qalculate-kde/PLIST
--- a/math/qalculate-kde/PLIST  Wed Jun 14 19:24:15 2006 +0000
+++ b/math/qalculate-kde/PLIST  Wed Jun 14 20:14:21 2006 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2006/02/24 21:09:13 adam Exp $
+@comment $NetBSD: PLIST,v 1.3 2006/06/14 20:14:21 adam Exp $
 bin/qalculate-kde
 share/kde/applnk/Utilities/qalculate_kde.desktop
 share/kde/apps/qalculate_kde/qalculate_kdeui.rc
@@ -22,14 +22,20 @@
 share/kde/doc/HTML/en/qalculate_kde/mainwindow.png
 share/kde/doc/HTML/en/qalculate_kde/plot-data.png
 share/kde/doc/HTML/en/qalculate_kde/plot-settings.png
+share/kde/doc/HTML/en/qalculate_kde/rpn-mode.png
 share/kde/doc/HTML/en/qalculate_kde/store-variable.png
 share/kde/doc/HTML/en/qalculate_kde/unit-manager.png
 share/kde/doc/HTML/en/qalculate_kde/units.docbook
 share/kde/doc/HTML/en/qalculate_kde/variable-manager.png
 share/kde/doc/HTML/en/qalculate_kde/variables.docbook
+share/kde/icons/hicolor/128x128/apps/qalculate_kde.png
 share/kde/icons/hicolor/16x16/apps/qalculate_kde.png
+share/kde/icons/hicolor/22x22/apps/qalculate_kde.png
 share/kde/icons/hicolor/32x32/actions/qalculate_convert.png
 share/kde/icons/hicolor/32x32/apps/qalculate_kde.png
+share/kde/icons/hicolor/48x48/apps/qalculate_kde.png
+share/kde/icons/hicolor/64x64/apps/qalculate_kde.png
+share/kde/locale/nl/LC_MESSAGES/qalculate_kde.mo
 share/kde/locale/sv/LC_MESSAGES/qalculate_kde.mo
 @dirrm share/kde/doc/HTML/en/qalculate_kde
 @dirrm share/kde/apps/qalculate_kde
diff -r 2d8e3796beb8 -r 82d999ad424e math/qalculate-kde/distinfo
--- a/math/qalculate-kde/distinfo       Wed Jun 14 19:24:15 2006 +0000
+++ b/math/qalculate-kde/distinfo       Wed Jun 14 20:14:21 2006 +0000
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.5 2006/05/07 13:51:20 joerg Exp $
+$NetBSD: distinfo,v 1.6 2006/06/14 20:14:21 adam Exp $
 
-SHA1 (qalculate-kde-0.9.3.1.tar.gz) = 4e911c282babaf64dcafb958900682317320acbd
-RMD160 (qalculate-kde-0.9.3.1.tar.gz) = d087a3565af3ef7f27af1e66a48a41afbfb6509b
-Size (qalculate-kde-0.9.3.1.tar.gz) = 1486268 bytes
+SHA1 (qalculate-kde-0.9.4.tar.gz) = 2646a7d53a741e43422de4f973392f54e995d785
+RMD160 (qalculate-kde-0.9.4.tar.gz) = 98e888a602aef74560e1f6fcd324cb50de8e237b
+Size (qalculate-kde-0.9.4.tar.gz) = 1575881 bytes
 SHA1 (patch-aa) = a9738cdb6ce9e27a7202e6c415af739a2fab3ef5
 SHA1 (patch-ab) = 602c47ba0bb574e4d66e86fffc8129ed41c7b4f7
diff -r 2d8e3796beb8 -r 82d999ad424e math/qalculate-units/Makefile
--- a/math/qalculate-units/Makefile     Wed Jun 14 19:24:15 2006 +0000
+++ b/math/qalculate-units/Makefile     Wed Jun 14 20:14:21 2006 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.8 2006/05/11 14:21:35 joerg Exp $
+# $NetBSD: Makefile,v 1.9 2006/06/14 20:14:21 adam Exp $
 
-DISTNAME=      qalculate-units-0.9.3
-PKGREVISION=   2
+DISTNAME=      qalculate-units-0.9.4
 CATEGORIES=    math
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=qalculate/}
 
diff -r 2d8e3796beb8 -r 82d999ad424e math/qalculate-units/PLIST
--- a/math/qalculate-units/PLIST        Wed Jun 14 19:24:15 2006 +0000
+++ b/math/qalculate-units/PLIST        Wed Jun 14 20:14:21 2006 +0000
@@ -1,4 +1,5 @@
-@comment $NetBSD: PLIST,v 1.4 2006/04/28 18:35:06 joerg Exp $
+@comment $NetBSD: PLIST,v 1.5 2006/06/14 20:14:21 adam Exp $
 bin/qalculate-units
 share/applications/qalculate-units.desktop
+share/locale/nl/LC_MESSAGES/qalculate-units.mo
 share/locale/sv/LC_MESSAGES/qalculate-units.mo
diff -r 2d8e3796beb8 -r 82d999ad424e math/qalculate-units/distinfo
--- a/math/qalculate-units/distinfo     Wed Jun 14 19:24:15 2006 +0000
+++ b/math/qalculate-units/distinfo     Wed Jun 14 20:14:21 2006 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.3 2006/04/17 07:48:52 adam Exp $
+$NetBSD: distinfo,v 1.4 2006/06/14 20:14:21 adam Exp $
 
-SHA1 (qalculate-units-0.9.3.tar.gz) = 7307e18bd41da20bca31c064173c13dd3fbff30d
-RMD160 (qalculate-units-0.9.3.tar.gz) = 7012b481d030abf906ca300db86ec1a3816f68d8
-Size (qalculate-units-0.9.3.tar.gz) = 369369 bytes
+SHA1 (qalculate-units-0.9.4.tar.gz) = 1a6c124e572671973be9d249aba682e745f01f91
+RMD160 (qalculate-units-0.9.4.tar.gz) = 621636ecc487b71a85f7e6f9785e275ed2ac2e17
+Size (qalculate-units-0.9.4.tar.gz) = 375642 bytes
diff -r 2d8e3796beb8 -r 82d999ad424e math/qalculate/Makefile
--- a/math/qalculate/Makefile   Wed Jun 14 19:24:15 2006 +0000
+++ b/math/qalculate/Makefile   Wed Jun 14 20:14:21 2006 +0000
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.23 2006/06/08 12:00:03 joerg Exp $
+# $NetBSD: Makefile,v 1.24 2006/06/14 20:14:21 adam Exp $
 
-DISTNAME=      libqalculate-0.9.3
-PKGNAME=       qalculate-0.9.3
-PKGREVISION=   3
+DISTNAME=      libqalculate-0.9.4
+PKGNAME=       qalculate-0.9.4
 CATEGORIES=    math
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=qalculate/}
 
diff -r 2d8e3796beb8 -r 82d999ad424e math/qalculate/PLIST
--- a/math/qalculate/PLIST      Wed Jun 14 19:24:15 2006 +0000
+++ b/math/qalculate/PLIST      Wed Jun 14 20:14:21 2006 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.11 2006/06/08 12:00:04 joerg Exp $
+@comment $NetBSD: PLIST,v 1.12 2006/06/14 20:14:21 adam Exp $
 bin/qalc
 include/libqalculate/BuiltinFunctions.h
 include/libqalculate/Calculator.h
@@ -15,6 +15,195 @@
 include/libqalculate/util.h
 lib/libqalculate.la
 lib/pkgconfig/libqalculate.pc
+share/doc/lib${PKGNAME}/reference/html/Calculator_8h.html
+share/doc/lib${PKGNAME}/reference/html/DataSet_8h.html
+share/doc/lib${PKGNAME}/reference/html/ExpressionItem_8h.html
+share/doc/lib${PKGNAME}/reference/html/Function_8h.html
+share/doc/lib${PKGNAME}/reference/html/MathStructure_8h.html
+share/doc/lib${PKGNAME}/reference/html/Number_8h.html
+share/doc/lib${PKGNAME}/reference/html/Prefix_8h.html
+share/doc/lib${PKGNAME}/reference/html/Unit_8h.html
+share/doc/lib${PKGNAME}/reference/html/Variable_8h.html
+share/doc/lib${PKGNAME}/reference/html/annotated.html
+share/doc/lib${PKGNAME}/reference/html/classAliasUnit-members.html



Home | Main Index | Thread Index | Old Index