[arch-commits] Commit in gnome-books/trunk (PKGBUILD)

2020-03-07 Thread Jan Steffens via arch-commits
Date: Sunday, March 8, 2020 @ 06:11:41
  Author: heftig
Revision: 377002

3.34.0+21+g4d34d109-1

Modified:
  gnome-books/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-03-08 06:07:50 UTC (rev 377001)
+++ PKGBUILD2020-03-08 06:11:41 UTC (rev 377002)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gnome-books
-pkgver=3.34.0
+pkgver=3.34.0+21+g4d34d109
 pkgrel=1
 pkgdesc="Access and organize your e-books on GNOME"
 url="https://wiki.gnome.org/Apps/Books;
@@ -11,7 +11,7 @@
  gnome-epub-thumbnailer)
 makedepends=(gobject-introspection git meson yelp-tools)
 groups=(gnome)
-_commit=a3f5d24d31bc54ee12556567e8fe4d039d0b664c  # tags/3.34.0^0
+_commit=4d34d109ce7e5870d6f2398fbeac277ba714fb32  # master
 source=("git+https://gitlab.gnome.org/GNOME/gnome-books.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/libgd.git;)
 sha256sums=('SKIP'
@@ -26,7 +26,7 @@
   cd $pkgname
 
   git submodule init
-  git config --local submodule.subprojects/libgd.url "$srcdir/libgd"
+  git submodule set-url subprojects/libgd "$srcdir/libgd"
   git submodule update
 }
   


[arch-commits] Commit in gnome-books/trunk (PKGBUILD)

2019-09-12 Thread Jan Steffens via arch-commits
Date: Thursday, September 12, 2019 @ 21:52:06
  Author: heftig
Revision: 362356

3.34.0-1

Modified:
  gnome-books/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-09-12 21:47:49 UTC (rev 362355)
+++ PKGBUILD2019-09-12 21:52:06 UTC (rev 362356)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gnome-books
-pkgver=3.32.0
+pkgver=3.34.0
 pkgrel=1
 pkgdesc="Access and organize your e-books on GNOME"
 url="https://wiki.gnome.org/Apps/Books;
@@ -11,7 +11,7 @@
  gnome-epub-thumbnailer)
 makedepends=(gobject-introspection git meson yelp-tools)
 groups=(gnome)
-_commit=7975d6f792c9c47fa11f6c94328073fd3c20fd49  # tags/3.32.0^0
+_commit=a3f5d24d31bc54ee12556567e8fe4d039d0b664c  # tags/3.34.0^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-books.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/libgd.git;)
 sha256sums=('SKIP'


[arch-commits] Commit in gnome-books/trunk (PKGBUILD)

2019-03-15 Thread Jan Steffens via arch-commits
Date: Friday, March 15, 2019 @ 22:41:43
  Author: heftig
Revision: 348429

3.32.0-1

Added:
  gnome-books/trunk/PKGBUILD

--+
 PKGBUILD |   47 +++
 1 file changed, 47 insertions(+)

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-03-15 22:41:43 UTC (rev 348429)
@@ -0,0 +1,47 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-books
+pkgver=3.32.0
+pkgrel=1
+pkgdesc="Access and organize your e-books on GNOME"
+url="https://wiki.gnome.org/Apps/Books;
+arch=(x86_64)
+license=(GPL)
+depends=(evince gjs gtk3 gnome-desktop tracker-miners webkit2gtk libgepub
+ gnome-epub-thumbnailer)
+makedepends=(gobject-introspection git meson yelp-tools)
+groups=(gnome)
+_commit=7975d6f792c9c47fa11f6c94328073fd3c20fd49  # tags/3.32.0^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-books.git#commit=$_commit;
+"git+https://gitlab.gnome.org/GNOME/libgd.git;)
+sha256sums=('SKIP'
+'SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  git submodule init
+  git config --local submodule.subprojects/libgd.url "$srcdir/libgd"
+  git submodule update
+}
+  
+
+build() {
+  arch-meson $pkgname build
+  ninja -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}
+
+# vim:set ts=2 sw=2 et: