pkgsrc-Changes archive

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

CVS commit: pkgsrc/finance/libofx



Module Name:    pkgsrc
Committed By:   ryoon
Date:           Wed Aug  6 22:09:08 UTC 2025

Modified Files:
        pkgsrc/finance/libofx: Makefile PLIST distinfo
Removed Files:
        pkgsrc/finance/libofx/patches: patch-lib_Makefile.in
            patch-lib_ofx__preproc.cpp

Log Message:
finance/libofx: Update to 0.10.9

* Use cmake to build.

Changelog:
2022-10-03, LibOFX 0.10.9:

- Fix library name on Windows (#88)
- Fix several more memory issues (#90)

2022-09-27, LibOFX 0.10.8:

        - Fix null pointer dereference bugs (#87)
        - Initial support for exporting Config.cmake with targets (#81)
        - Fix version and tools description in vcpkg.json
        - Add cpack rules for "make source_package"
        - Fix installation path of libofx.h (#83)
        - Rename some variables that shadowed others to clarify different meanings #75 (#80)

2022-09-08, LibOFX 0.10.7:

        - autotools: fix LIBOFX_MAJOR_VERSION and friends in libofx.h (#76)
        - CMake: miscellaneous fixes (#73)

2022-09-04, LibOFX 0.10.6:

        - Update FindOpenSP; also allow to forcefully ENABLE SP_MULTI_BYTE (#71)
        - Add support for CMake build system (#63)
        - Minor code cleanup in CharStringtostring function and its header (#65)
        - Ignore SGML parser character error because the char is accepted fine (#60) (#64)
        - Fix find_dtd() when OFX_DTD_PATH env var is used (#66)
        - Add ./configure option to disable CLI tools
        - Only link ofx2qif against C++ STD lib
        - Win32 code fixes for MSVC compilation
        - Don't deconst iconv input buffer under Windows (#51)

2022-04-19, LibOFX 0.10.5:
        - Fix missing include for ptrdiff_t on Homebrew (#57)

2022-04-18, LibOFX 0.10.4:

        - #56: Fix parallel builds by fixing the man-page build
        - #54: Remove all "using namespace std" directives
        - #53: Fix some minor memory leaks
        - Revert #44 (fix "typos" in source code) because it was wrong

2021-09-29, LibOFX 0.10.3:

        - #45: fix gmt offset seconds
        - #44: fix various typos in source code
        - fix win32 build failure

2021-04-23, LibOFX 0.10.2:

        - #41: Improved imported date stability, see gnucash bug
        797848 and gnucash bug 636340.
        - #40: Respect --libdir for opensp. Don't override docdir.

2021-01-25, LibOFX 0.10.1:

        - Issue #37 fixed: Correct casting of iconv input argument
        - Issue #30 fixed: Let ofxdump also return an error value on error
        - Code cleanup towards normal C++

2021-01-03, LibOFX 0.10.0:

        - Issue #34 fixed: Remove unimplemented function from libofx.h header
        - Issue #30 fixed: Return error value if file parsing is unsuccessful in libofx_proc_file
        - Issue #29 fixed: Use given parameter for actual file type in libofx_proc_file

        - Large contribution adding investment / security handling in OFX files, by jeffjl74.
        - ABI-breaking change, hence MINOR version incremented (due to MAJOR still at zero),
          but libofx.h API should only have additions
        - Details:
        - jeffjl74 Enhanced handling of investments in OFX files (support not added to OFC)
        - increased OFX_SECNAME_LENGTH to match the OFX spec (ABI-breaking change, hence MINOR version incremented)
        - OfxSecurityData now includes:
            - an enum for the type of the security (stock, bond, fund, option)
            - the optional <SECINFO> fields
            - the mandatory <DEBTINFO> and <OPTINFO> fields
            - the optional <DEBTINFO> and <OPTINFO> fields
        - added <INVBAL> parsing for cash balances in investment accounts
            - usefulness depends upon how the broker uses these fields
                - Vanguard fund account puts the market value in there instead of the cash balance
                - other tested brokers use it appropriately, though the date of the balance is sometimes inconsistent
                  usually due to unsettled trades, i.e. the "as of" date will say "today" but the cash
                  balance will actually be from a couple of days ago with the difference being unsettled trades.
        - <STMTTRN> fields under an <INVBANKTRAN> are now parsed into an OfxInvestmentTransactionContainer
            - This changes previous behaviour. LibOFX formerly provided an OfxBankTransactionContainer.
              Now it sets data.invtransactiontype_valid true with data.invtransactiontype = OFX_INVBANKTRAN.
              The end result is that the transaction callback now looks like an investment transaction
              (which it is) rather than a banking transaction (which it is not).
        - added the fields from section 13.9.2.4.2 of OFX spec 2.1.1 to OfxTransactionData
            - provides better support for bonds, options, and 401(k)
        - added <INVPOS> support to provide balances for securities
            - responds to sourceforge feature request #7
            - adds new callback for investment positions
                - adds new OfxPositionData struct
                - adds new ofx_set_position_cb function
        - added <CURRENCY>, <ORIGCURRENCY>, <CURRATE> and <CURSYM> parsing and fields to transactions, securities, and positions
        - added a new account type OfxAccountData::OFX_401K
            - if set, will add <INC401K>Y</INC401K> and <INC401KBAL>Y</INC401KBAL> in the investment statement request
                - this is currently untested
            - added parsing of transactions for 401k in the response (tested only via ofxdump on spec examples)
        - added a fix for sourceforge bug #46 account callback on <TRANSFER>
            - <TRANSFER> no longer results in redundant/irrelevant account and statement callbacks
        - modified ofxdump to support the above changes
        - added investment account examples from OFX 2.1.1 spec to "ofx_sample_files"
            - fixed some time offsets in the OFX spec examples
                - section 13.13: EST is GMT -5
                - section 16.5.3.2: August is not PST or GMT -8. Changed to -7 PDT
                - section 16.5.4.2: August is not PST or GMT -8. Changed to -7 PDT
            - updated existing samples to fix the time formats (added seconds to the time format)
        - could not get openSP to parse ofx201.dtd
            - for elements that actually still provide their data,
              ofxdump generates lots of parse errors on an OFX 2.x file.
              Data handling for these elements in ofx_sgml.cpp is a little unorthodox.


To generate a diff of this commit:
cvs rdiff -u -r1.58 -r1.59 pkgsrc/finance/libofx/Makefile
cvs rdiff -u -r1.7 -r1.8 pkgsrc/finance/libofx/PLIST
cvs rdiff -u -r1.18 -r1.19 pkgsrc/finance/libofx/distinfo
cvs rdiff -u -r1.1 -r0 pkgsrc/finance/libofx/patches/patch-lib_Makefile.in
cvs rdiff -u -r1.4 -r0 \
    pkgsrc/finance/libofx/patches/patch-lib_ofx__preproc.cpp

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/finance/libofx/Makefile
diff -u pkgsrc/finance/libofx/Makefile:1.58 pkgsrc/finance/libofx/Makefile:1.59
--- pkgsrc/finance/libofx/Makefile:1.58 Sat Apr 19 07:57:47 2025
+++ pkgsrc/finance/libofx/Makefile      Wed Aug  6 22:09:08 2025
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.58 2025/04/19 07:57:47 wiz Exp $
+# $NetBSD: Makefile,v 1.59 2025/08/06 22:09:08 ryoon Exp $
 
-DISTNAME=      libofx-0.9.15
-PKGREVISION=   20
+DISTNAME=      LibOFX%200.10.9
+PKGNAME=       ${DISTNAME:S/LibOFX%20/libofx-/}
 CATEGORIES=    finance devel
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=libofx/}
 
@@ -10,17 +10,14 @@ HOMEPAGE=   http://libofx.sourceforge.net/
 COMMENT=       OFX (Open Financial eXchange) Library
 LICENSE=       gnu-gpl-v2
 
+WRKSRC=                ${WRKDIR}/libofx-libofx-d01712e
+
 USE_LANGUAGES=         c c++11
 USE_TOOLS+=            pkg-config
-USE_LIBTOOL=           yes
-GNU_CONFIGURE=         yes
-CONFIGURE_ARGS+=       --with-opensp-includes=${BUILDLINK_PREFIX.opensp}/include/OpenSP
-CONFIGURE_ARGS+=       --with-opensp-libs=${BUILDLINK_PREFIX.opensp}/libs
-TEST_TARGET=           check
 
-post-extract:
-       ${CHMOD} -R go-w ${WRKSRC}
+TEST_TARGET=   check
 
+.include "../../devel/cmake/build.mk"
 .include "../../textproc/libxml++/buildlink3.mk"
 .include "../../textproc/opensp/buildlink3.mk"
 .include "../../www/curl/buildlink3.mk"

Index: pkgsrc/finance/libofx/PLIST
diff -u pkgsrc/finance/libofx/PLIST:1.7 pkgsrc/finance/libofx/PLIST:1.8
--- pkgsrc/finance/libofx/PLIST:1.7     Tue May 12 06:03:48 2020
+++ pkgsrc/finance/libofx/PLIST Wed Aug  6 22:09:08 2025
@@ -1,325 +1,17 @@
-@comment $NetBSD: PLIST,v 1.7 2020/05/12 06:03:48 adam Exp $
+@comment $NetBSD: PLIST,v 1.8 2025/08/06 22:09:08 ryoon Exp $
 bin/ofx2qif
 bin/ofxconnect
 bin/ofxdump
 include/libofx/libofx.h
-lib/libofx.la
+lib/cmake/libofx/FindOpenSP.cmake
+lib/cmake/libofx/LibOFXConfig.cmake
+lib/cmake/libofx/LibOFXConfigVersion.cmake
+lib/cmake/libofx/LibOFXTargets-relwithdebinfo.cmake
+lib/cmake/libofx/LibOFXTargets.cmake
+lib/libofx.so
+lib/libofx.so.7
+lib/libofx.so.7.0.4
 lib/pkgconfig/libofx.pc
-man/man1/ofxconnect.1
-man/man1/ofxdump.1
-share/doc/libofx/AUTHORS
-share/doc/libofx/COPYING
-share/doc/libofx/ChangeLog
-share/doc/libofx/INSTALL
-share/doc/libofx/NEWS
-share/doc/libofx/README
-share/doc/libofx/html/annotated.html
-share/doc/libofx/html/annotated_dup.js
-share/doc/libofx/html/bc_s.png
-share/doc/libofx/html/bdwn.png
-share/doc/libofx/html/classLibofxContext.html
-share/doc/libofx/html/classLibofxContext.js
-share/doc/libofx/html/classOFCApplication.html
-share/doc/libofx/html/classOFCApplication.js
-share/doc/libofx/html/classOFCApplication.png
-share/doc/libofx/html/classOFXApplication.html
-share/doc/libofx/html/classOFXApplication.js
-share/doc/libofx/html/classOFXApplication.png
-share/doc/libofx/html/classOfxAccountContainer.html
-share/doc/libofx/html/classOfxAccountContainer.js
-share/doc/libofx/html/classOfxAccountContainer.png
-share/doc/libofx/html/classOfxAccountInfoRequest.html
-share/doc/libofx/html/classOfxAccountInfoRequest.js
-share/doc/libofx/html/classOfxAccountInfoRequest.png
-share/doc/libofx/html/classOfxAggregate.html
-share/doc/libofx/html/classOfxAggregate.js
-share/doc/libofx/html/classOfxAggregate.png
-share/doc/libofx/html/classOfxBalanceContainer.html
-share/doc/libofx/html/classOfxBalanceContainer.js
-share/doc/libofx/html/classOfxBalanceContainer.png
-share/doc/libofx/html/classOfxBankTransactionContainer.html
-share/doc/libofx/html/classOfxBankTransactionContainer.js
-share/doc/libofx/html/classOfxBankTransactionContainer.png
-share/doc/libofx/html/classOfxDummyContainer.html
-share/doc/libofx/html/classOfxDummyContainer.js
-share/doc/libofx/html/classOfxDummyContainer.png
-share/doc/libofx/html/classOfxGenericContainer.html
-share/doc/libofx/html/classOfxGenericContainer.js
-share/doc/libofx/html/classOfxGenericContainer.png
-share/doc/libofx/html/classOfxInvestmentTransactionContainer.html
-share/doc/libofx/html/classOfxInvestmentTransactionContainer.js
-share/doc/libofx/html/classOfxInvestmentTransactionContainer.png
-share/doc/libofx/html/classOfxMainContainer.html
-share/doc/libofx/html/classOfxMainContainer.js
-share/doc/libofx/html/classOfxMainContainer.png
-share/doc/libofx/html/classOfxPaymentRequest.html
-share/doc/libofx/html/classOfxPaymentRequest.js
-share/doc/libofx/html/classOfxPaymentRequest.png
-share/doc/libofx/html/classOfxPushUpContainer.html
-share/doc/libofx/html/classOfxPushUpContainer.js
-share/doc/libofx/html/classOfxPushUpContainer.png
-share/doc/libofx/html/classOfxRequest.html
-share/doc/libofx/html/classOfxRequest.js
-share/doc/libofx/html/classOfxRequest.png
-share/doc/libofx/html/classOfxSecurityContainer.html
-share/doc/libofx/html/classOfxSecurityContainer.js
-share/doc/libofx/html/classOfxSecurityContainer.png
-share/doc/libofx/html/classOfxStatementContainer.html
-share/doc/libofx/html/classOfxStatementContainer.js
-share/doc/libofx/html/classOfxStatementContainer.png
-share/doc/libofx/html/classOfxStatementRequest.html
-share/doc/libofx/html/classOfxStatementRequest.js
-share/doc/libofx/html/classOfxStatementRequest.png
-share/doc/libofx/html/classOfxStatusContainer.html
-share/doc/libofx/html/classOfxStatusContainer.js
-share/doc/libofx/html/classOfxStatusContainer.png
-share/doc/libofx/html/classOfxTransactionContainer.html
-share/doc/libofx/html/classOfxTransactionContainer.js
-share/doc/libofx/html/classOfxTransactionContainer.png
-share/doc/libofx/html/classes.html
-share/doc/libofx/html/classtree.html
-share/doc/libofx/html/classtree.js
-share/doc/libofx/html/classtree_1_1fixed__depth__iterator.html
-share/doc/libofx/html/classtree_1_1fixed__depth__iterator.js
-share/doc/libofx/html/classtree_1_1fixed__depth__iterator.png
-share/doc/libofx/html/classtree_1_1iterator__base.html
-share/doc/libofx/html/classtree_1_1iterator__base.js
-share/doc/libofx/html/classtree_1_1iterator__base.png
-share/doc/libofx/html/classtree_1_1iterator__base__less.html
-share/doc/libofx/html/classtree_1_1iterator__base__less.js
-share/doc/libofx/html/classtree_1_1post__order__iterator.html
-share/doc/libofx/html/classtree_1_1post__order__iterator.js
-share/doc/libofx/html/classtree_1_1post__order__iterator.png
-share/doc/libofx/html/classtree_1_1pre__order__iterator.html
-share/doc/libofx/html/classtree_1_1pre__order__iterator.js
-share/doc/libofx/html/classtree_1_1pre__order__iterator.png
-share/doc/libofx/html/classtree_1_1sibling__iterator.html
-share/doc/libofx/html/classtree_1_1sibling__iterator.js
-share/doc/libofx/html/classtree_1_1sibling__iterator.png
-share/doc/libofx/html/classtree__node__.html
-share/doc/libofx/html/classtree__node__.js
-share/doc/libofx/html/closed.png
-share/doc/libofx/html/config_8h_source.html
-share/doc/libofx/html/context_8cpp_source.html
-share/doc/libofx/html/context_8hh_source.html
-share/doc/libofx/html/dir_188f2a147f268740fa35e1138a9139aa.html
-share/doc/libofx/html/dir_7432f7aab7cc7990d1d80266d4aef759.html
-share/doc/libofx/html/dir_83ea686f5db7f8dcb7127eea149218de.html
-share/doc/libofx/html/dir_98741f362137004ec39e430cae2a0bf3.html
-share/doc/libofx/html/dir_b8151556d6639878dc073bbd8e16ee68.html
-share/doc/libofx/html/dir_bfccd401955b95cf8c75461437045ac0.html
-share/doc/libofx/html/doc.png
-share/doc/libofx/html/doxygen.css
-share/doc/libofx/html/doxygen.png
-share/doc/libofx/html/dynsections.js
-share/doc/libofx/html/file__preproc_8cpp.html
-share/doc/libofx/html/file__preproc_8cpp.js
-share/doc/libofx/html/file__preproc_8cpp_source.html
-share/doc/libofx/html/file__preproc_8hh.html
-share/doc/libofx/html/file__preproc_8hh.js
-share/doc/libofx/html/file__preproc_8hh_source.html
-share/doc/libofx/html/files.html
-share/doc/libofx/html/files.js
-share/doc/libofx/html/folderclosed.png
-share/doc/libofx/html/folderopen.png
-share/doc/libofx/html/functions.html
-share/doc/libofx/html/functions_b.html
-share/doc/libofx/html/functions_c.html
-share/doc/libofx/html/functions_d.html
-share/doc/libofx/html/functions_dup.js
-share/doc/libofx/html/functions_e.html
-share/doc/libofx/html/functions_enum.html
-share/doc/libofx/html/functions_eval.html
-share/doc/libofx/html/functions_f.html
-share/doc/libofx/html/functions_func.html
-share/doc/libofx/html/functions_g.html
-share/doc/libofx/html/functions_h.html
-share/doc/libofx/html/functions_i.html
-share/doc/libofx/html/functions_l.html
-share/doc/libofx/html/functions_m.html
-share/doc/libofx/html/functions_n.html
-share/doc/libofx/html/functions_o.html
-share/doc/libofx/html/functions_p.html
-share/doc/libofx/html/functions_r.html
-share/doc/libofx/html/functions_s.html
-share/doc/libofx/html/functions_t.html
-share/doc/libofx/html/functions_type.html
-share/doc/libofx/html/functions_u.html
-share/doc/libofx/html/functions_v.html
-share/doc/libofx/html/functions_vars.html
-share/doc/libofx/html/functions_w.html
-share/doc/libofx/html/getopt1_8c_source.html
-share/doc/libofx/html/getopt_8c_source.html
-share/doc/libofx/html/globals.html
-share/doc/libofx/html/globals_c.html
-share/doc/libofx/html/globals_d.html
-share/doc/libofx/html/globals_dup.js
-share/doc/libofx/html/globals_e.html
-share/doc/libofx/html/globals_enum.html
-share/doc/libofx/html/globals_eval.html
-share/doc/libofx/html/globals_f.html
-share/doc/libofx/html/globals_func.html
-share/doc/libofx/html/globals_i.html
-share/doc/libofx/html/globals_l.html
-share/doc/libofx/html/globals_m.html
-share/doc/libofx/html/globals_o.html
-share/doc/libofx/html/globals_p.html
-share/doc/libofx/html/globals_q.html
-share/doc/libofx/html/globals_r.html
-share/doc/libofx/html/globals_s.html
-share/doc/libofx/html/globals_t.html
-share/doc/libofx/html/globals_type.html
-share/doc/libofx/html/globals_u.html
-share/doc/libofx/html/globals_vars.html
-share/doc/libofx/html/globals_w.html
-share/doc/libofx/html/gnugetopt_8h_source.html
-share/doc/libofx/html/hierarchy.html
-share/doc/libofx/html/hierarchy.js
-share/doc/libofx/html/inc_2libofx_8h.html
-share/doc/libofx/html/inc_2libofx_8h.js
-share/doc/libofx/html/inc_2libofx_8h_source.html
-share/doc/libofx/html/index.html
-share/doc/libofx/html/jquery.js
-share/doc/libofx/html/libofx-0_89_815_2inc_2libofx_8h.html
-share/doc/libofx/html/libofx-0_89_815_2inc_2libofx_8h.js
-share/doc/libofx/html/libofx-0_89_815_2inc_2libofx_8h_source.html
-share/doc/libofx/html/menu.js
-share/doc/libofx/html/menudata.js
-share/doc/libofx/html/messages_8cpp.html
-share/doc/libofx/html/messages_8cpp.js
-share/doc/libofx/html/messages_8cpp_source.html
-share/doc/libofx/html/messages_8hh.html
-share/doc/libofx/html/messages_8hh.js
-share/doc/libofx/html/messages_8hh_source.html
-share/doc/libofx/html/namespacekp.html
-share/doc/libofx/html/namespaces.html
-share/doc/libofx/html/namespaces.js
-share/doc/libofx/html/nav_f.png
-share/doc/libofx/html/nav_g.png
-share/doc/libofx/html/nav_h.png
-share/doc/libofx/html/navtree.css
-share/doc/libofx/html/navtree.js
-share/doc/libofx/html/navtreedata.js
-share/doc/libofx/html/navtreeindex0.js
-share/doc/libofx/html/navtreeindex1.js
-share/doc/libofx/html/navtreeindex2.js
-share/doc/libofx/html/navtreeindex3.js
-share/doc/libofx/html/navtreeindex4.js
-share/doc/libofx/html/ofc__sgml_8cpp.html
-share/doc/libofx/html/ofc__sgml_8cpp.js
-share/doc/libofx/html/ofc__sgml_8cpp_source.html
-share/doc/libofx/html/ofc__sgml_8hh.html
-share/doc/libofx/html/ofc__sgml_8hh.js
-share/doc/libofx/html/ofc__sgml_8hh_source.html
-share/doc/libofx/html/ofx__aggregate_8hh.html
-share/doc/libofx/html/ofx__aggregate_8hh_source.html
-share/doc/libofx/html/ofx__container__account_8cpp.html
-share/doc/libofx/html/ofx__container__account_8cpp.js
-share/doc/libofx/html/ofx__container__account_8cpp_source.html
-share/doc/libofx/html/ofx__container__generic_8cpp.html
-share/doc/libofx/html/ofx__container__generic_8cpp.js
-share/doc/libofx/html/ofx__container__generic_8cpp_source.html
-share/doc/libofx/html/ofx__container__main_8cpp.html
-share/doc/libofx/html/ofx__container__main_8cpp_source.html
-share/doc/libofx/html/ofx__container__security_8cpp.html
-share/doc/libofx/html/ofx__container__security_8cpp.js
-share/doc/libofx/html/ofx__container__security_8cpp_source.html
-share/doc/libofx/html/ofx__container__statement_8cpp.html
-share/doc/libofx/html/ofx__container__statement_8cpp.js
-share/doc/libofx/html/ofx__container__statement_8cpp_source.html
-share/doc/libofx/html/ofx__container__transaction_8cpp.html
-share/doc/libofx/html/ofx__container__transaction_8cpp.js
-share/doc/libofx/html/ofx__container__transaction_8cpp_source.html
-share/doc/libofx/html/ofx__containers_8hh.html
-share/doc/libofx/html/ofx__containers_8hh_source.html
-share/doc/libofx/html/ofx__containers__misc_8cpp.html
-share/doc/libofx/html/ofx__containers__misc_8cpp.js
-share/doc/libofx/html/ofx__containers__misc_8cpp_source.html
-share/doc/libofx/html/ofx__error__msg_8hh.html
-share/doc/libofx/html/ofx__error__msg_8hh.js
-share/doc/libofx/html/ofx__error__msg_8hh_source.html
-share/doc/libofx/html/ofx__preproc_8cpp.html
-share/doc/libofx/html/ofx__preproc_8cpp.js
-share/doc/libofx/html/ofx__preproc_8cpp_source.html
-share/doc/libofx/html/ofx__preproc_8hh.html
-share/doc/libofx/html/ofx__preproc_8hh.js
-share/doc/libofx/html/ofx__preproc_8hh_source.html
-share/doc/libofx/html/ofx__request_8cpp.html
-share/doc/libofx/html/ofx__request_8cpp.js
-share/doc/libofx/html/ofx__request_8cpp_source.html
-share/doc/libofx/html/ofx__request_8hh.html
-share/doc/libofx/html/ofx__request_8hh.js
-share/doc/libofx/html/ofx__request_8hh_source.html
-share/doc/libofx/html/ofx__request__accountinfo_8cpp.html
-share/doc/libofx/html/ofx__request__accountinfo_8cpp.js
-share/doc/libofx/html/ofx__request__accountinfo_8cpp_source.html
-share/doc/libofx/html/ofx__request__accountinfo_8hh.html
-share/doc/libofx/html/ofx__request__accountinfo_8hh_source.html
-share/doc/libofx/html/ofx__request__statement_8cpp.html
-share/doc/libofx/html/ofx__request__statement_8cpp.js
-share/doc/libofx/html/ofx__request__statement_8cpp_source.html
-share/doc/libofx/html/ofx__request__statement_8hh.html
-share/doc/libofx/html/ofx__request__statement_8hh_source.html
-share/doc/libofx/html/ofx__sgml_8cpp.html
-share/doc/libofx/html/ofx__sgml_8cpp.js
-share/doc/libofx/html/ofx__sgml_8cpp_source.html
-share/doc/libofx/html/ofx__sgml_8hh.html
-share/doc/libofx/html/ofx__sgml_8hh.js
-share/doc/libofx/html/ofx__sgml_8hh_source.html
-share/doc/libofx/html/ofx__utilities_8cpp.html
-share/doc/libofx/html/ofx__utilities_8cpp.js
-share/doc/libofx/html/ofx__utilities_8cpp_source.html
-share/doc/libofx/html/ofx__utilities_8hh.html
-share/doc/libofx/html/ofx__utilities_8hh.js
-share/doc/libofx/html/ofx__utilities_8hh_source.html
-share/doc/libofx/html/ofxconnect_2cmdline_8c_source.html
-share/doc/libofx/html/ofxconnect_2cmdline_8h_source.html
-share/doc/libofx/html/ofxdump_2cmdline_8c_source.html
-share/doc/libofx/html/ofxdump_2cmdline_8h_source.html
-share/doc/libofx/html/open.png
-share/doc/libofx/html/resize.js
-share/doc/libofx/html/splitbar.png
-share/doc/libofx/html/structErrorMsg.html
-share/doc/libofx/html/structErrorMsg.js
-share/doc/libofx/html/structLibofxFileFormatInfo.html
-share/doc/libofx/html/structLibofxFileFormatInfo.js
-share/doc/libofx/html/structOfxAccountData.html
-share/doc/libofx/html/structOfxAccountData.js
-share/doc/libofx/html/structOfxCurrency.html
-share/doc/libofx/html/structOfxCurrency.js
-share/doc/libofx/html/structOfxFiLogin.html
-share/doc/libofx/html/structOfxFiLogin.js
-share/doc/libofx/html/structOfxFiServiceInfo.html
-share/doc/libofx/html/structOfxFiServiceInfo.js
-share/doc/libofx/html/structOfxPayee.html
-share/doc/libofx/html/structOfxPayee.js
-share/doc/libofx/html/structOfxPayment.html
-share/doc/libofx/html/structOfxPayment.js
-share/doc/libofx/html/structOfxSecurityData.html
-share/doc/libofx/html/structOfxSecurityData.js
-share/doc/libofx/html/structOfxStatementData.html
-share/doc/libofx/html/structOfxStatementData.js
-share/doc/libofx/html/structOfxStatusData.html
-share/doc/libofx/html/structOfxStatusData.js
-share/doc/libofx/html/structOfxTransactionData.html
-share/doc/libofx/html/structOfxTransactionData.js
-share/doc/libofx/html/structcmdline__parser__params.html
-share/doc/libofx/html/structcmdline__parser__params.js
-share/doc/libofx/html/structgengetopt__args__info.html
-share/doc/libofx/html/structgengetopt__args__info.js
-share/doc/libofx/html/structoption.html
-share/doc/libofx/html/structoption.js
-share/doc/libofx/html/sync_off.png
-share/doc/libofx/html/sync_on.png
-share/doc/libofx/html/tab_a.png
-share/doc/libofx/html/tab_b.png
-share/doc/libofx/html/tab_h.png
-share/doc/libofx/html/tab_s.png
-share/doc/libofx/html/tabs.css
-share/doc/libofx/html/tree_8hh_source.html
-share/doc/libofx/html/win32_8cpp_source.html
-share/doc/libofx/html/win32_8hh_source.html
-share/doc/libofx/totest.txt
 share/libofx/dtd/ofc.dtd
 share/libofx/dtd/ofx160.dtd
 share/libofx/dtd/ofx201.dtd

Index: pkgsrc/finance/libofx/distinfo
diff -u pkgsrc/finance/libofx/distinfo:1.18 pkgsrc/finance/libofx/distinfo:1.19
--- pkgsrc/finance/libofx/distinfo:1.18 Tue Oct 26 10:26:02 2021
+++ pkgsrc/finance/libofx/distinfo      Wed Aug  6 22:09:08 2025
@@ -1,7 +1,5 @@
-$NetBSD: distinfo,v 1.18 2021/10/26 10:26:02 nia Exp $
+$NetBSD: distinfo,v 1.19 2025/08/06 22:09:08 ryoon Exp $
 
-BLAKE2s (libofx-0.9.15.tar.gz) = 2ae22165ee88c0a675fd871ec0159a6abbe946764496f839c47fc8e984aff99e
-SHA512 (libofx-0.9.15.tar.gz) = 9d9c5e55bd4ac71d1158c7b8dfe7ecbcaba6f03afdbf3dc2f6d3699c5e4f3fce045400df0217d5f1f4ba45a0ee1b10862b0ebbe1a0f634d756c3b1b88872ce1f
-Size (libofx-0.9.15.tar.gz) = 1298356 bytes
-SHA1 (patch-lib_Makefile.in) = 512cf3dbaa257205ffff18f3953a08eb81d015f4
-SHA1 (patch-lib_ofx__preproc.cpp) = 73f2b1f4fd30466e8af7fd87fba8815f5c206815
+BLAKE2s (LibOFX%200.10.9.tar.gz) = 563de149e9cf1aac85cc3c725ad867b20817b1eb39bd1bdd49b82820b925d784
+SHA512 (LibOFX%200.10.9.tar.gz) = c559107b3965ba2817a8600e04d7b2d228108316084ccef3cfeb6069ef4cdf6ec1e500f6be0c80e420d48f85a1828da435828da22ed3272419ec40b2874f4f9d
+Size (LibOFX%200.10.9.tar.gz) = 251845 bytes



Home | Main Index | Thread Index | Old Index