惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

美团技术团队
阮一峰的网络日志
阮一峰的网络日志
T
The Blog of Author Tim Ferriss
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
宝玉的分享
宝玉的分享
L
LangChain Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Last Week in AI
Last Week in AI
博客园 - 司徒正美
M
MIT News - Artificial intelligence
人人都是产品经理
人人都是产品经理
WordPress大学
WordPress大学
B
Blog RSS Feed
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - Franky
B
Blog
V
V2EX
J
Java Code Geeks
D
Docker
博客园 - 叶小钗
The Cloudflare Blog
量子位
博客园_首页
MongoDB | Blog
MongoDB | Blog

AUR Newest Packages

AUR (en) - linuxqq-clipsync-git AUR (en) - libtslitex-git AUR (en) - libtslitex-git AUR (en) - carton-appimage AUR (en) - veila-git AUR (en) - veila-bin AUR (en) - vigil-baseline AUR (en) - byedroid AUR (en) - neovim-base16-git AUR (en) - pirata AUR (en) - rpi-imager-git-non-root AUR (en) - python-fastapi-sso AUR (en) - tmux-ai-titles AUR (en) - zeed-bin AUR (en) - bclone-bin AUR (en) - dwl-git-azerty AUR (en) - auggie-bin AUR (en) - libspatialaudio-git AUR (en) - libspatialaudio AUR (en) - miniupnpd-iptables-legacy AUR (en) - miniupnpd-nft AUR (en) - jeeves-bin AUR (en) - opennow AUR (en) - rotki AUR (en) - kapi-bin AUR (en) - classfi-bin AUR (en) - classfi-git AUR (en) - classfi AUR (en) - giff-git AUR (en) - budget-tracker-bin
AUR (en) - firefly-iii
2026-06-13 · via AUR Newest Packages

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)

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)