Difference between revisions of "Dependency Updates"

From GnuCash
Jump to: navigation, search
m (Dependency_Overview -> Dependency Sources)
(Nightlies: Since 2021-11-14 aqbanking.de displays sha256 checksums)
Line 50: Line 50:
 
Nightlies are currently built for Flatpak and Windows. Ideally you would update the changes for both.
 
Nightlies are currently built for Flatpak and Windows. Ideally you would update the changes for both.
 
;Update workflow:
 
;Update workflow:
:# Download the .tar.gz file because Flatpak uses ''sha256'', but '''aqbanking.de''' currently only displays ''MD5'' checksums.
+
:Since 2021-11-14 (aqbanking-6.4.0/gwenhywfar-5.7.4) '''aqbanking.de''' displays ''sha256'' checksums.
:# Copy the ''URL'' into your '''Flatpak''' repository (in Redmine each file version has a unique file number directory).
+
::For older versions, where only ''MD5'' checksums are shown, you have to
 +
::# Download the .tar.gz file,
 +
::# Compare <syntaxhighlight lang="sh" inline>md5sum *.tar.gz</syntaxhighlight> with the website.
 +
::# Copy the output from <syntaxhighlight lang="sh" inline>sha256sum *.tar.gz</syntaxhighlight> into '''Flatpak''''s ''sha''.
 +
:# Copy the ''URL'' and the ''SHA256 checksum'' into your '''Flatpak''' repository (in Redmine each file version has a unique file number directory).
 
:# Copy the relevant parts into branch.''module'' and ''version'' of your '''Windows''' repository. We maintain no  '''OSX''' nightlies!
 
:# Copy the relevant parts into branch.''module'' and ''version'' of your '''Windows''' repository. We maintain no  '''OSX''' nightlies!
:# Compare <syntaxhighlight lang="sh" inline>md5sum *.tar.gz</syntaxhighlight> with the website.
 
:# Copy the output from <syntaxhighlight lang="sh" inline>sha256sum *.tar.gz</syntaxhighlight> into '''Flatpak''''s ''sha''.
 
 
:# In the '''commit message''' add an abstract of affected modules: <tt>aqhbci</tt>, <tt>ofxdc</tt>, ... from aqbankings git.
 
:# In the '''commit message''' add an abstract of affected modules: <tt>aqhbci</tt>, <tt>ofxdc</tt>, ... from aqbankings git.
 
:# Create '''PR'''s on ''gnucash-on-flatpak'' and ''gnucash-on-windows'' all with the ''same commit message''.  
 
:# Create '''PR'''s on ''gnucash-on-flatpak'' and ''gnucash-on-windows'' all with the ''same commit message''.  

Revision as of 18:04, 19 November 2021

GnuCash provides the following binary releases. When feasible and after testing, they can be updated to provide the new version. While the canonical repositories are on code, those are accessible only to the core team so the links are to the Github mirrors.

Keep in mind that these binary distributions are for ordinary users. As a general rule only stable release dependencies should be used for these packages. Exceptions may be made when an unstable release fixes a serious bug, but that should be discussed at length by the core team.

Developers with push privileges
unless you're able to
  • test the new dependency version yourself,
  • the upgrade is stable, and
  • you're certain that there won't be a negative impact on users
create a pull request on Github so that others in the core team can test the change.

Dependency Sources has a list of URLs to check for updates.

Linux Flatpak

gnucash-on-flatpak

Flatpak is configured via json module files mostly in the modules directory. Some components like the Runtime platform are configured in other places. See their full list in Release Process#Package the Release on Flathub.

Each dependency is defined with a download URL and a SHA checksum.
Updating a dependency means updating these URL's with accompanying SHA checskums.

There are two exceptions:

  • the gnucash and gnucash-docs version information itself is deduced by the build script. These should never be manually entered in module files. The build script will generate a gnucash.json file in the module's base directory. This file can also be used to update the download server Flathub GnuCash package which is built automatically from the working gnucash flathub repository.
  • the list of cpan modules in finance-quote-sources.json are generated using a script from flatpak-builder-tools. Below is a short description on how this can be generated.

How to generate finance-quote-sources.json

  • Install the required perl modules to run the generator script. This is only needed if these modules are not on your system yet. As mentioned on the flatpak-builder-tools page on Fedora that would be
    sudo dnf install 'perl(App::cpanminus)' 'perl(Getopt::Long::Descriptive)' 'perl(JSON::MaybeXS)' 'perl(LWP::UserAgent)' 'perl(MetaCPAN::Client)' 'perl(Pod::Simple::SimpleTree)'
    
  • Run the generator script
    FBTDIR=<local-path-to-flatpak-builder-tools-repo>
    GOFDIR=<local-path-to-gnucash-on-flatpak-repo>
    $FBTDIR/cpan/flatpak-cpan-generator.pl -o $GOFDIR/modules/finance-quote-sources.json Date::Manip Finance::Quote
    
Caveat
The generator script fails to keep consistent ordering in the finance-quote dependencies. So two subsequent runs of the generator script can result in plenty of changes even if no dependency has changed at all. This is unfortunately inherent to how cpan works so there's not much we can do about it. As we normally only update finance::quote dependencies whenever there's a new version of finance::quote I don't consider this a big issue.

Pull Requests at Flathub

Sometimes there are issues reported and PRs offered like "Update Gnome runtime to <version>" by the flathub maintainers. They want to get rid of obsolete versions and reduce the download burden for the users of mulptiple flatpaks. This updates can require updates of dependencies. Because the histories of both repositories are different, fetch them into your local instance flathub/org.gnucash.GnuCash and cherry-pick the commits into gnucash/gnucash-on-flatpak.

Alternative
git format-patch in flatpak.org and git am in gnucash-on-flatpak.

Apple MacOS

gnucash-on-osx

Microsoft Windows

gnucash-on-windows

Nightlies

Nightlies are currently built for Flatpak and Windows. Ideally you would update the changes for both.

Update workflow
Since 2021-11-14 (aqbanking-6.4.0/gwenhywfar-5.7.4) aqbanking.de displays sha256 checksums.
For older versions, where only MD5 checksums are shown, you have to
  1. Download the .tar.gz file,
  2. Compare md5sum *.tar.gz with the website.
  3. Copy the output from sha256sum *.tar.gz into Flatpak's sha.
  1. Copy the URL and the SHA256 checksum into your Flatpak repository (in Redmine each file version has a unique file number directory).
  2. Copy the relevant parts into branch.module and version of your Windows repository. We maintain no OSX nightlies!
  3. In the commit message add an abstract of affected modules: aqhbci, ofxdc, ... from aqbankings git.
  4. Create PRs on gnucash-on-flatpak and gnucash-on-windows all with the same commit message.
  5. After the change was committed update the * version nightly templates:
Address Content Stable Note
Template:AqB Version nightly 6.5.4 6.5.4
Template:FQ Version nightly 1.58 1.59
Bundling unstable dependencies
Enable debug symbols (-g) also on this modules. More detailed stack traces will help their developers to fix critical bugs faster.