Date: Monday, May 15, 2023 @ 23:48:44
Author: heftig
Revision: 477941
archrelease: copy trunk to extra-any
Added:
ibus-typing-booster/repos/extra-any/PKGBUILD
(from rev 477940, ibus-typing-booster/trunk/PKGBUILD)
Deleted:
ibus-typing-booster/repos/extra-any/PKGBUILD
----------+
PKGBUILD | 108 ++++++++++++++++++++++++++++++++-----------------------------
1 file changed, 57 insertions(+), 51 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2023-05-15 23:47:54 UTC (rev 477940)
+++ PKGBUILD 2023-05-15 23:48:44 UTC (rev 477941)
@@ -1,51 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
-
-pkgname=ibus-typing-booster
-pkgver=2.22.4
-pkgrel=1
-pkgdesc="Predictive input method for the IBus platform"
-url="https://mike-fabian.github.io/ibus-typing-booster/"
-arch=(any)
-license=(
- Apache
- GPL3
-)
-depends=(
- ibus
- m17n-lib
- python-dbus
- python-gobject
- python-pyenchant
- sqlite
-)
-makedepends=(git)
-_commit=94d5b14aef811c3c3683526755303a4c63c4d9de # tags/2.22.4
-source=("git+https://github.com/mike-fabian/ibus-typing-booster#commit=$_commit")
-b2sums=('SKIP')
-
-pkgver() {
- cd $pkgname
- git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
- cd $pkgname
- autoreconf -fvi
-}
-
-build() {
- cd $pkgname
- ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
- --libexecdir=/usr/lib/ibus
- make
-}
-
-package() {
- cd $pkgname
- make DESTDIR="$pkgdir" install
-
- cd "$pkgdir/usr/share/$pkgname/data"
- gzip -nf --best *.{txt,json} annotations{,Derived}/*.xml
-}
-
-# vim:set sw=2 sts=-1 et:
Copied: ibus-typing-booster/repos/extra-any/PKGBUILD (from rev 477940,
ibus-typing-booster/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2023-05-15 23:48:44 UTC (rev 477941)
@@ -0,0 +1,57 @@
+# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
+
+pkgname=ibus-typing-booster
+pkgver=2.22.5
+pkgrel=1
+pkgdesc="Predictive input method for the IBus platform"
+url="https://mike-fabian.github.io/ibus-typing-booster/"
+arch=(any)
+license=(
+ Apache
+ GPL3
+)
+depends=(
+ ibus
+ m17n-lib
+ python-dbus
+ python-gobject
+ python-pyenchant
+ sqlite
+)
+makedepends=(git)
+_commit=f3a0dec6546d631dada80654ad043466bbf317bc # tags/2.22.5
+source=("git+https://github.com/mike-fabian/ibus-typing-booster#commit=$_commit")
+b2sums=('SKIP')
+
+pkgver() {
+ cd $pkgname
+ git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+ cd $pkgname
+ autoreconf -fvi
+}
+
+build() {
+ local configure_options=(
+ --prefix=/usr
+ --sysconfdir=/etc
+ --localstatedir=/var
+ --libexecdir=/usr/lib/ibus
+ )
+
+ cd $pkgname
+ ./configure "${configure_options[@]}"
+ make
+}
+
+package() {
+ cd $pkgname
+ make DESTDIR="$pkgdir" install
+
+ cd "$pkgdir/usr/share/$pkgname/data"
+ gzip -nf --best *.{txt,json} annotations{,Derived}/*.xml
+}
+
+# vim:set sw=2 sts=-1 et: