Date: Monday, October 3, 2022 @ 23:28:24
Author: heftig
Revision: 457195
archrelease: copy trunk to extra-x86_64
Added:
gucharmap/repos/extra-x86_64/PKGBUILD
(from rev 457193, gucharmap/trunk/PKGBUILD)
Deleted:
gucharmap/repos/extra-x86_64/PKGBUILD
----------+
PKGBUILD | 84 +++++++++++++++++++++++++++++++------------------------------
1 file changed, 44 insertions(+), 40 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2022-10-03 23:28:24 UTC (rev 457194)
+++ PKGBUILD 2022-10-03 23:28:24 UTC (rev 457195)
@@ -1,40 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
-# Contributor: Jan De Groot <[email protected]>
-
-pkgname=gucharmap
-pkgver=14.0.3
-pkgrel=1
-pkgdesc="Gnome Unicode Charmap"
-url="https://wiki.gnome.org/Apps/Gucharmap"
-arch=(x86_64)
-license=(GPL3)
-depends=(gtk3)
-makedepends=(gtk-doc gobject-introspection yelp-tools appdata-tools git meson
- unicode-character-database unzip vala)
-provides=(libgucharmap_2_90.so)
-options=(debug)
-_commit=c5ed6328814952e7a6e7997d02697119dc52eb90 # tags/14.0.3^0
-source=("git+https://gitlab.gnome.org/GNOME/gucharmap.git#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
- cd $pkgname
- git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
- cd $pkgname
-}
-
-build() {
- arch-meson $pkgname build -D ucd_path=/usr/share/unicode
- meson compile -C build
-}
-
-check() {
- meson test -C build --print-errorlogs
-}
-
-package() {
- meson install -C build --destdir "$pkgdir"
-}
Copied: gucharmap/repos/extra-x86_64/PKGBUILD (from rev 457193,
gucharmap/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2022-10-03 23:28:24 UTC (rev 457195)
@@ -0,0 +1,44 @@
+# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
+# Contributor: Jan De Groot <[email protected]>
+
+pkgname=gucharmap
+pkgver=15.0.0
+pkgrel=1
+pkgdesc="Gnome Unicode Charmap"
+url="https://wiki.gnome.org/Apps/Gucharmap"
+arch=(x86_64)
+license=(GPL3)
+depends=(gtk3)
+makedepends=(gtk-doc gobject-introspection yelp-tools appdata-tools git meson
+ unicode-character-database unzip vala)
+provides=(libgucharmap_2_90.so)
+options=(debug !lto)
+_commit=36de4b20deb47bccd8434e36dcc48db8b9460e47 # tags/15.0.0^0
+source=("git+https://gitlab.gnome.org/GNOME/gucharmap.git#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+ cd $pkgname
+ git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+ cd $pkgname
+}
+
+build() {
+ arch-meson $pkgname build \
+ -D b_lto=false \
+ -D ucd_path=/usr/share/unicode
+ meson compile -C build
+}
+
+check() {
+ meson test -C build --print-errorlogs
+}
+
+package() {
+ meson install -C build --destdir "$pkgdir"
+}
+
+# vim:set sw=2 sts=-1 et: