pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/finance/xinvest Update to 2.6.9, requested in PR 28395:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/94ed36501f8f
branches:  trunk
changeset: 484049:94ed36501f8f
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Tue Nov 23 17:21:54 2004 +0000

description:
Update to 2.6.9, requested in PR 28395:
- Ability to print reports using Xprt
- Upgraded currency support : it is now possible to define currency
  conversions with historical data. They look like ordinary accounts,
  but a real account can refer to it via its CTicker.
  The samples directory contains an example that shows how to deal
  with USD to Euro conversion.
- Ability to save quote data received via 'live update' from Xquote
  into the Xinvest *.inv files - this means you can set up your
  tools so they automatically collect historical data.
- Integration with a new utility QuoteFilter which serves a similar
  purpose as the above 'save live update' feature. QuoteFilter takes
  E-mail messages and can store quote information from the E-mail
  into your Xinvest data files. The changes to Xinvest for this
  are that the Xinvest file format has been extended so QuoteFilter
  can use the same files.
- Better integration of the source code with Xquote and QuoteFilter
- Source code cleanup.
- Interpret data feed from Xquote so not only American style data gets
  interpreted correctly. Unfortunately there's no clean way to handle
  this as the formats that we receive are not related to the user's
  settings so the automatic environment dependent standards based
  decoding doesn't work.
- Get the help window to behave more normally (resize is possible, single
  click makes text appear). Also use less widgets and more standard
  constructions (TemplateDialog) for this to make the whole thing simpler.
- Xinvest is now distributed under the BSD license, so it is now
  completely free software.

diffstat:

 finance/xinvest/Makefile         |  13 ++++---------
 finance/xinvest/distinfo         |   9 ++++-----
 finance/xinvest/patches/patch-aa |  18 +++++++++---------
 finance/xinvest/patches/patch-ab |  10 ----------
 4 files changed, 17 insertions(+), 33 deletions(-)

diffs (82 lines):

diff -r 696053a0a1a8 -r 94ed36501f8f finance/xinvest/Makefile
--- a/finance/xinvest/Makefile  Tue Nov 23 17:15:50 2004 +0000
+++ b/finance/xinvest/Makefile  Tue Nov 23 17:21:54 2004 +0000
@@ -1,22 +1,17 @@
-# $NetBSD: Makefile,v 1.9 2004/10/03 00:14:41 tv Exp $
+# $NetBSD: Makefile,v 1.10 2004/11/23 17:21:54 wiz Exp $
 
-DISTNAME=              xinvest-2.6
-PKGREVISION=   1
+DISTNAME=              xinvest-2.6.9
 CATEGORIES=            finance x11
-MASTER_SITES=          http://sunsite.dk/xinvest/ \
-                       ${MASTER_SITE_XCONTRIB:=applications/}
+MASTER_SITES=          http://xinvest.sunsite.dk/
 
 MAINTAINER=            root%garbled.net@localhost
-HOMEPAGE=              http://sunsite.dk/xinvest/xinvest.html
+HOMEPAGE=              http://xinvest.sunsite.dk/xinvest.html
 COMMENT=               Personal finance tracking and performance tool
 
 USE_BUILDLINK3=                YES
 USE_IMAKE=             YES
 NO_INSTALL_MANPAGES=   YES
 
-post-patch:
-       ${TOUCH} ${WRKSRC}/Xinvest.man
-
 .include "../../graphics/xpm/buildlink3.mk"
 .include "../../mk/motif.buildlink3.mk"
 
diff -r 696053a0a1a8 -r 94ed36501f8f finance/xinvest/distinfo
--- a/finance/xinvest/distinfo  Tue Nov 23 17:15:50 2004 +0000
+++ b/finance/xinvest/distinfo  Tue Nov 23 17:21:54 2004 +0000
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.4 2002/10/08 12:33:23 jlam Exp $
+$NetBSD: distinfo,v 1.5 2004/11/23 17:21:54 wiz Exp $
 
-SHA1 (xinvest-2.6.tar.gz) = 6593e1ba8025f17032c8bf3227aad7588a364cd4
-Size (xinvest-2.6.tar.gz) = 262494 bytes
-SHA1 (patch-aa) = c3a26cb5779886112af31661934698cd76979e79
-SHA1 (patch-ab) = 7a1709d68a91e2983c73cd565b24467244e6c4ab
+SHA1 (xinvest-2.6.9.tar.gz) = 1f87a257d89e68525348098ecf8fb88feb2d95f4
+Size (xinvest-2.6.9.tar.gz) = 282748 bytes
+SHA1 (patch-aa) = ddab73c6eb20c2ae8883cf30b528187d40e09611
diff -r 696053a0a1a8 -r 94ed36501f8f finance/xinvest/patches/patch-aa
--- a/finance/xinvest/patches/patch-aa  Tue Nov 23 17:15:50 2004 +0000
+++ b/finance/xinvest/patches/patch-aa  Tue Nov 23 17:21:54 2004 +0000
@@ -1,11 +1,11 @@
-$NetBSD: patch-aa,v 1.1 2001/01/03 00:04:56 wiz Exp $
+$NetBSD: patch-aa,v 1.2 2004/11/23 17:21:54 wiz Exp $
 
---- account.h.orig     Fri Feb  4 23:59:06 2000
-+++ account.h
-@@ -24,4 +24,6 @@
- */
+--- Imakefile.orig     2004-05-01 20:57:42.000000000 +0200
++++ Imakefile
+@@ -29,5 +29,5 @@ OBJS =       account.o askuser.o calendar.o co
+       status.o tooltips.o trans.o util.o xinvest.o xutil.o
  
-+#include <stdio.h>
-+
- int activeAccount();              /* Return index number of current account */
- int numAccounts();                 /* Return number of open accounts */
+ 
+-ComplexProgramTarget(Xinvest)
++ComplexProgramTargetNoMan(Xinvest)
+ InstallAppDefaults(Xinvest)
diff -r 696053a0a1a8 -r 94ed36501f8f finance/xinvest/patches/patch-ab
--- a/finance/xinvest/patches/patch-ab  Tue Nov 23 17:15:50 2004 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,10 +0,0 @@
-$NetBSD: patch-ab,v 1.1 2001/01/03 00:04:56 wiz Exp $
-
---- status.c.orig      Fri Feb  4 23:59:06 2000
-+++ status.c
-@@ -24,4 +24,5 @@
- */
- 
-+#include <stdio.h>
- #include <stdlib.h>
- 



Home | Main Index | Thread Index | Old Index