git » libmbim.git » commit ed0a2ca

1.30.0-1

author Jan Alexander Steffens (heftig)
2023-10-11 19:24:50 UTC
committer Jan Alexander Steffens (heftig)
2023-10-11 19:24:50 UTC
parent a9291adba7f78976e51de3dbab47aa905c2997f1

1.30.0-1

.SRCINFO +21 -0
PKGBUILD +21 -6

diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 0000000..1c2685a
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,21 @@
+pkgbase = libmbim
+	pkgdesc = MBIM modem protocol helper library
+	pkgver = 1.30.0
+	pkgrel = 1
+	url = https://www.freedesktop.org/wiki/Software/libmbim/
+	arch = x86_64
+	license = GPL2
+	makedepends = bash-completion
+	makedepends = git
+	makedepends = gobject-introspection
+	makedepends = gtk-doc
+	makedepends = help2man
+	makedepends = meson
+	depends = bash
+	depends = glib2
+	depends = systemd
+	provides = libmbim-glib.so
+	source = git+https://gitlab.freedesktop.org/mobile-broadband/libmbim.git#commit=8415687e4f30ae5e36f407f179c8147f1529725c
+	b2sums = SKIP
+
+pkgname = libmbim
diff --git a/PKGBUILD b/PKGBUILD
index cc1553b..bd5c68b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,18 +1,29 @@
 # Maintainer: Jan Alexander Steffens (heftig) <heftig@archlinux.org>
 
 pkgname=libmbim
-pkgver=1.28.4
+pkgver=1.30.0
 pkgrel=1
 pkgdesc="MBIM modem protocol helper library"
 url="https://www.freedesktop.org/wiki/Software/libmbim/"
 arch=(x86_64)
 license=(GPL2)
-depends=(glib2 bash systemd)
-makedepends=(gtk-doc meson git help2man gobject-introspection bash-completion)
+depends=(
+  bash
+  glib2
+  systemd
+)
+makedepends=(
+  bash-completion
+  git
+  gobject-introspection
+  gtk-doc
+  help2man
+  meson
+)
 provides=(libmbim-glib.so)
-_commit=7f1c7907c4654ba5c619a635cef5475ca161d027  # tags/1.28.4^0
+_commit=8415687e4f30ae5e36f407f179c8147f1529725c  # tags/1.30.0^0
 source=("git+https://gitlab.freedesktop.org/mobile-broadband/libmbim.git#commit=$_commit")
-sha256sums=('SKIP')
+b2sums=('SKIP')
 
 pkgver() {
   cd libmbim
@@ -24,7 +35,11 @@ prepare() {
 }
 
 build() {
-  arch-meson libmbim build -D gtk_doc=true
+  local meson_options=(
+    -D gtk_doc=true
+  )
+
+  arch-meson libmbim build "${meson_options[@]}"
   meson compile -C build
 }