Package Details: firefly-iii 6.1.24-1

Git Clone URL: https://aur.archlinux.org/firefly-iii.git (read-only, click to copy)
Package Base: firefly-iii
Description: PHP personal finances manager
Upstream URL: https://github.com/firefly-iii/firefly-iii
Keywords: budget double-entry finance personal self-hosted
Licenses: AGPL-3.0-only
Submitter: dopsi
Maintainer: stephencox
Last Packager: stephencox
Votes: 10
Popularity: 0.001591
First Submitted: 2017-04-20 08:05 (UTC)
Last Updated: 2024-11-24 04:05 (UTC)

Dependencies (1)

  • php-intl (php)

Required by (0)

Sources (1)

Latest Comments

1 2 3 Next › Last »

L0ric0 commented on 2024-11-17 08:32 (UTC)

@CountMurphy You are not. I have disowned this package as I don't have the time to maintain it. I have also disowned the firefly-iii-data-importer package if you are also using that.

CountMurphy commented on 2024-11-14 22:41 (UTC)

Not sure if this is overstepping, but I'd be happy to help co-maintain this to keep the version number current.

Kunda commented on 2024-11-14 19:34 (UTC)

6.1.22 is latest https://github.com/firefly-iii/firefly-iii/releases/tag/v6.1.22

zkm2fw commented on 2024-10-17 02:55 (UTC) (edited on 2024-10-25 07:37 (UTC) by zkm2fw)

TL;DR; maintainer bumping version is dangerous

(1/2) If you use an AUR helper, you get automatic updates whenever the maintainer pushes, before you have the chance to backup. This introduces possible data loss according to the docs[1].

(2/2) If you do not use AUR helper, you can always bump it yourself.

[1] https://docs.firefly-iii.org/how-to/firefly-iii/upgrade/self-managed/

luntik2012 commented on 2024-09-22 06:44 (UTC)

$ git diff
diff --git a/PKGBUILD b/PKGBUILD
index cdf2c39..1eff615 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
 # Contributor: Simon Doppler (dopsi) <dop.simon@gmail.com>

 pkgname=firefly-iii
-pkgver=6.1.18
+pkgver=6.1.19
 pkgrel=1
 pkgdesc='PHP personal finances manager'
 arch=('any')
@@ -11,7 +11,7 @@ url="https://github.com/${pkgname}/${pkgname}"
 license=('AGPL-3.0-only')
 depends=('php-intl')
 source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/releases/download/v${pkgver}/FireflyIII-v${pkgver}.tar.gz")
-sha256sums=('29bb1521807980c56e839b1560a600dbd66a7a658c4780e05c6dab8573cdd3d0')
+sha256sums=('1fff6981f0c0978ee1edd1812810ee57b55f161c0aa685f9f15e17bcba57c22f')

 backup=("etc/webapps/$pkgname/config.env")

CheckEngine commented on 2024-07-25 06:36 (UTC) (edited on 2024-07-25 06:37 (UTC) by CheckEngine)

Below I am sharing the modified PKGBUILD file to keep the latest version up to date. You just need to change the version number in the 'pkgver' variable.

pkgname=firefly-iii
pkgver=6.1.19
pkgrel=1
pkgdesc='PHP personal finances manager'
arch=('any')
url="https://github.com/${pkgname}/${pkgname}"
license=('AGPL-3.0-only')
depends=('php-intl')
source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/releases/download/v${pkgver}/FireflyIII-v${pkgver}.tar.gz")
sha256sums=('SKIP')

backup=("etc/webapps/$pkgname/config.env")

package() {
    cd "$srcdir"

    install -d "$pkgdir/usr/share/webapps/$pkgname" "$pkgdir/usr/share/licenses/$pkgname" "$pkgdir/etc/webapps/$pkgname"
    cp -rv * "$pkgdir/usr/share/webapps/$pkgname"
    install -D "LICENSE" "$pkgdir/usr/share/licenses/$pkgname"

    cp -v .env.example "$pkgdir/etc/webapps/$pkgname/config.env"
    ln -s "/etc/webapps/$pkgname/config.env" "$pkgdir/usr/share/webapps/$pkgname/.env"

    rm -rf "$pkgdir/usr/share/webapps/$pkgname/bootstrap/cache"
    install -o http -g http -d "$pkgdir/var/cache/$pkgname"
    ln -s "/var/cache/$pkgname" "$pkgdir/usr/share/webapps/$pkgname/bootstrap/cache"

    mkdir -p "$pkgdir/var/lib"
    mv "$pkgdir/usr/share/webapps/$pkgname/storage" "$pkgdir/var/lib/firefly-iii"
    chown -R http:http "$pkgdir/var/lib/firefly-iii"
    chmod 775 "$pkgdir/var/lib/firefly-iii"
    ln -s "/var/lib/firefly-iii" "$pkgdir/usr/share/webapps/$pkgname/storage"
}

CountMurphy commented on 2024-06-17 20:49 (UTC)

Any chance we could get an updated package? The latest release (6.1.18) has some notable security fixes

CountMurphy commented on 2024-04-04 15:52 (UTC)

I fixed it. If anyone else runs into this error, in /usr/share/webapps/firefly-iii run composer update

CountMurphy commented on 2024-04-04 15:36 (UTC)

Weird. I must be missing some kind of dependency or something. Thanks for updating the package. I'll keep digging around. Hopefully I'll figure out what is going on

L0ric0 commented on 2024-04-04 08:45 (UTC)

I have upgraded the package to the latest build instructions but haven't seen the error you encountered and the firefly-iii is running for me (also on php 8.3.4)