Date: Monday, May 1, 2023 @ 20:52:11
  Author: heftig
Revision: 476243

archrelease: copy trunk to extra-x86_64

Added:
  gspell/repos/extra-x86_64/PKGBUILD
    (from rev 476240, gspell/trunk/PKGBUILD)
Deleted:
  gspell/repos/extra-x86_64/PKGBUILD

----------+
 PKGBUILD |  111 ++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 66 insertions(+), 45 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD    2023-05-01 20:52:11 UTC (rev 476242)
+++ PKGBUILD    2023-05-01 20:52:11 UTC (rev 476243)
@@ -1,45 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
-# Contributor: Jan de Groot <[email protected]>
-
-pkgname=gspell
-pkgver=1.12.0
-pkgrel=2
-pkgdesc="Spell-checking library for GTK applications"
-url="https://gitlab.gnome.org/GNOME/gspell";
-arch=(x86_64)
-license=(LGPL)
-depends=(glib2 gtk3 enchant icu)
-makedepends=(gobject-introspection vala gtk-doc autoconf-archive git)
-options=(debug)
-_commit=433999a26171030de17dcdceabeae3c4274352a4  # tags/1.12.0^0
-source=("git+https://gitlab.gnome.org/GNOME/gspell.git#commit=$_commit";)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd gspell
-  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
-  cd gspell
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd gspell
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-    --enable-gtk-doc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package(){
-  depends+=(libg{lib,object,io}-2.0.so libpango-1.0.so libgtk-3.so
-            libenchant-2.so libicuuc.so)
-  provides+=("libgspell-${pkgver%%.*}.so")
-
-  cd gspell
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set sw=2 sts=-1 et:

Copied: gspell/repos/extra-x86_64/PKGBUILD (from rev 476240, 
gspell/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2023-05-01 20:52:11 UTC (rev 476243)
@@ -0,0 +1,66 @@
+# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
+# Contributor: Jan de Groot <[email protected]>
+
+pkgname=gspell
+pkgver=1.12.1
+pkgrel=1
+pkgdesc="Spell-checking library for GTK applications"
+url="https://gitlab.gnome.org/GNOME/gspell";
+arch=(x86_64)
+license=(LGPL)
+depends=(
+  enchant
+  glib2
+  gtk3
+  icu
+)
+makedepends=(
+  autoconf-archive
+  git
+  gobject-introspection
+  gtk-doc
+  vala
+)
+_commit=d04dec63809b009c1ab12b2f80ceeeeab4709a48  # tags/1.12.1^0
+source=("git+https://gitlab.gnome.org/GNOME/gspell.git#commit=$_commit";)
+b2sums=('SKIP')
+
+pkgver() {
+  cd gspell
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd gspell
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  local configure_options=(
+    --prefix=/usr
+    --sysconfdir=/etc
+    --localstatedir=/var
+    --enable-gtk-doc
+  )
+
+  cd gspell
+  ./configure "${configure_options[@]}"
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package(){
+  depends+=(
+    libenchant-2.so
+    libgtk-3.so
+    libg{lib,object,io}-2.0.so
+    libicuuc.so
+    libpango-1.0.so
+  )
+  provides+=("libgspell-${pkgver%%.*}.so")
+
+  cd gspell
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set sw=2 sts=-1 et:

Reply via email to