Date: Monday, May 1, 2023 @ 20:34:43 Author: heftig Revision: 476224 41-3: FS#70517 fix groups
Modified: gitg/trunk/PKGBUILD ----------+ PKGBUILD | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2023-05-01 20:28:42 UTC (rev 476223) +++ PKGBUILD 2023-05-01 20:34:43 UTC (rev 476224) @@ -2,7 +2,7 @@ pkgname=gitg pkgver=41 -pkgrel=2 +pkgrel=3 epoch=2 pkgdesc="GNOME GUI client to view git repositories" url="https://wiki.gnome.org/Apps/Gitg" @@ -38,9 +38,10 @@ meson vala ) +groups=(gnome-extra) _commit=1adffb6b3ce97626f2ed23885d6d0e44a2764cbe # tags/v41^0 source=("git+https://gitlab.gnome.org/GNOME/gitg.git#commit=$_commit") -sha256sums=('SKIP') +b2sums=('SKIP') pkgver() { cd gitg @@ -49,6 +50,7 @@ prepare() { cd gitg + # remove illegal positional argument to i18n.merge_file() git cherry-pick -n 1978973b12848741b08695ec2020bac98584d636 } @@ -64,6 +66,9 @@ package() { meson install -C build --destdir "$pkgdir" + python -m compileall -d /usr/lib "$pkgdir/usr/lib" python -O -m compileall -d /usr/lib "$pkgdir/usr/lib" } + +# vim:set sw=2 sts=-1 et:
