Difference between revisions of "Flatpak"
From GnuCash
(Mention upcoming Finance::Quote support) |
m (→Test version from gnucash.org) |
||
Line 33: | Line 33: | ||
:;Maint: Version {{Version}} plus ''all recent'' bug fixes, but no new features: [{{BuildURL}}/builds/flatpak/maint/ {{BuildServer}}/builds/flatpak/maint/] | :;Maint: Version {{Version}} plus ''all recent'' bug fixes, but no new features: [{{BuildURL}}/builds/flatpak/maint/ {{BuildServer}}/builds/flatpak/maint/] | ||
:;Master: Version {{Version}} plus new features, but bug fixes can be ''delayed'' a few days: [{{BuildURL}}/builds/flatpak/master/ {{BuildServer}}/builds/flatpak/master/] | :;Master: Version {{Version}} plus new features, but bug fixes can be ''delayed'' a few days: [{{BuildURL}}/builds/flatpak/master/ {{BuildServer}}/builds/flatpak/master/] | ||
− | ;Tip: The | + | ;Tip: The file names in these directories can be used in the example below after trimming the „<tt>gnucash-</tt>“ prefix and „<tt>.flatpakref</tt>“ suffix. |
− | The current version contains Aqbanking | + | The current version contains Aqbanking 6.0.2 ('''''PSD2'' capable''' of online banking via ''[[:Category:De/FinTS|FinTS]]''/''[[De/HBCI|HBCI (german)]]'' protocol; date of this information: 2020-02-16). |
<SyntaxHighlight lang="sh"> | <SyntaxHighlight lang="sh"> |
Revision as of 13:23, 16 February 2020
Languages | Deutsch |
---|
Flatpaks are bundles which besides the program also contain all required libraries. Use cases:
- If your Linux distribution is too old to offer all required libraries but has Flatpak support, you can install a recent released version of GnuCash from the FlatHub repository.
- If a developer asks you to test a patch, you can use a nighly version from our Flatpak repository.
Contents
Known Issues
- To use smart cards, at least Flatpak 1.3.2 needs to be installed on your system. Complain against your distribution if they do not offer it.
- Finance::Quote support has only just landed and will appear in the next stable flathub release. The impatient can test with a #Test version from gnucash.org.
- no direct report printing (printing to file works) and
- a potential bug that causes guile to attempt to recompile all scm sources. Workaround
Installation
Examples for Ubuntu or Debian (in Buster, Flatpak is already included, for Stretch and Jessie backports exist):
- Hint
- For other distributions replace apt* <command> by your preferred commandline software managment tool and its command, i.e. for many rpm based distributions.
zypper install flatpak
Stable version from flathub.org
See also: Flathub
This version Gnucash 3.7 contained still Aqbanking 5.8.2 (not suitable for PSD2, no online banking with the FinTS/HBCI protocol). More recent versions are bundled with Aqbanking 6-beta.
sudo apt-get install flatpak
sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak run org.gnucash.GnuCash
Test version from gnucash.org
Often you can find test versions on the build-server. They come in two flavours:
- Maint
- Version 5.10 plus all recent bug fixes, but no new features: code.gnucash.org/builds/flatpak/maint/
- Master
- Version 5.10 plus new features, but bug fixes can be delayed a few days: code.gnucash.org/builds/flatpak/master/
- Tip
- The file names in these directories can be used in the example below after trimming the „gnucash-“ prefix and „.flatpakref“ suffix.
The current version contains Aqbanking 6.0.2 (PSD2 capable of online banking via FinTS/HBCI (german) protocol; date of this information: 2020-02-16).
sudo apt install flatpak #install Flatpak
# register repositories:
sudo flatpak remote-add --if-not-exists gnucash https://code.gnucash.org/builds/flatpak/gnucash-nightlies.flatpakrepo
sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak --arch=x86_64 remote-ls gnucash # show all packages
# output should be:
# org.gnucash.GnuCash
# org.gnucash.GnuCash.Debug
# org.gnucash.GnuCash.Locale
sudo flatpak --arch=x86_64 install gnucash org.gnucash.GnuCash//maint-C3.7-57-g1a6314e10-D3.7-21-g06f4b05 # <-- change version here!
flatpak run org.gnucash.GnuCash # start program
- Note
- flatpak --arch=x86_64 is only required, if you have a 64-bit processor with a 32-bit OS.
Tips
- To call aqbanking-cli and other command line tools
- opens a shell inside the sandbox of GnuCash.
flatpak run --command=sh org.gnucash.GnuCash
- Migration from normal package to flatpak (german)