[arch-commits] Commit in gnome-boxes/trunk (PKGBUILD libhandy1.patch)

2020-10-26 Thread Balló György via arch-commits
Date: Monday, October 26, 2020 @ 08:33:07
  Author: bgyorgy
Revision: 733908

upgpkg: gnome-boxes 3.38.1-2: Port to libhandy1, add edk2-ovmf to dependencies 
(FS#68415)

Added:
  gnome-boxes/trunk/libhandy1.patch
Modified:
  gnome-boxes/trunk/PKGBUILD

-+
 PKGBUILD|   16 ++
 libhandy1.patch |   79 ++
 2 files changed, 89 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-10-26 08:11:20 UTC (rev 733907)
+++ PKGBUILD2020-10-26 08:33:07 UTC (rev 733908)
@@ -3,24 +3,24 @@
 
 pkgname=gnome-boxes
 pkgver=3.38.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=(x86_64)
 url="https://wiki.gnome.org/Apps/Boxes;
 license=(LGPL)
 groups=(gnome)
-depends=(cdrtools gtk-vnc libarchive libgudev libosinfo libsecret libvirt-glib
- mtools qemu spice-gtk tracker webkit2gtk freerdp gtksourceview4)
+depends=(cdrtools edk2-ovmf freerdp gtksourceview4 gtk-vnc libarchive libgudev 
libhandy libosinfo
+ libsecret libvirt-glib mtools qemu spice-gtk tracker3 webkit2gtk)
 makedepends=(git gobject-introspection yelp-tools meson spice-protocol vala)
 _commit=3761f2b5dab67d2a374badb57e4859dbcef59ed8  # tags/v3.38.1^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/gtk-frdp.git;
 "git+https://gitlab.gnome.org/felipeborges/libovf-glib.git;
-"git+https://gitlab.gnome.org/GNOME/libhandy.git;)
+"libhandy1.patch")
 sha256sums=('SKIP'
 'SKIP'
 'SKIP'
-'SKIP')
+'208eaee9724da213c20c2235f4e55b64f60051535197d70873bcf2da8d3549f8')
 
 pkgver() {
   cd $pkgname
@@ -29,8 +29,12 @@
 
 prepare() {
   cd $pkgname
+
+  # Port to libhandy-1
+  git revert --no-commit d43264bae43cd8d0e45d62df7e863b85441fa584
+  patch -Np1 -i ../libhandy1.patch
+
   git submodule init
-  git submodule set-url subprojects/gtk-frdp "$srcdir/gtk-frdp"
   git submodule set-url subprojects/libovf-glib "$srcdir/libovf-glib"
   git submodule set-url subprojects/libhandy "$srcdir/libhandy"
   git submodule update

Added: libhandy1.patch
===
--- libhandy1.patch (rev 0)
+++ libhandy1.patch 2020-10-26 08:33:07 UTC (rev 733908)
@@ -0,0 +1,79 @@
+From 16f27aef429e025713d67e42713c479deb1523ad Mon Sep 17 00:00:00 2001
+From: Felipe Borges 
+Date: Tue, 22 Sep 2020 16:19:01 +0200
+Subject: [PATCH] welcome-tutorial: Port to libhandy-1
+
+This regresses on the indicator dots.
+
+Since we want to be consistent with gnome-tour, I will address this
+in issue #590.
+
+Fixes: #593
+---
+ build-aux/flatpak/org.gnome.Boxes.json | 3 +--
+ data/ui/welcome-tutorial.ui| 3 +--
+ src/main.vala  | 2 +-
+ src/meson.build| 2 +-
+ src/welcome-tutorial.vala  | 2 +-
+ subprojects/libhandy   | 2 +-
+ subprojects/libhandy.wrap  | 2 +-
+ 7 files changed, 7 insertions(+), 9 deletions(-)
+
+diff --git a/data/ui/welcome-tutorial.ui b/data/ui/welcome-tutorial.ui
+index d47a1e8b..d8ef1e71 100644
+--- a/data/ui/welcome-tutorial.ui
 b/data/ui/welcome-tutorial.ui
+@@ -23,10 +23,9 @@
+ True
+ 
+ 
+-  
++  
+ True
+ 400
+-dots
+ 12
+ 
+ 
+diff --git a/src/main.vala b/src/main.vala
+index 5182ad4d..bd784fe9 100644
+--- a/src/main.vala
 b/src/main.vala
+@@ -79,7 +79,7 @@ public int main (string[] args) {
+ error (err.message);
+ }
+ 
+-Hdy.init (ref args);
++Hdy.init ();
+ 
+ var app = new Boxes.App ();
+ 
+diff --git a/src/meson.build b/src/meson.build
+index 19e55e20..751ae2d1 100644
+--- a/src/meson.build
 b/src/meson.build
+@@ -147,7 +147,7 @@ dependencies = [
+   dependency ('tracker-sparql-3.0'),
+   dependency ('vte-2.91', version: '>= 0.40.2'),
+   dependency ('webkit2gtk-4.0', version: '>= 2.26.0'),
+-  dependency ('libhandy-0.0', version: '>= 0.0.11'),
++  dependency ('libhandy-1', version: '>= 1.0.0'),
+   cc.find_library('m', required : false),
+   valac.find_library ('gio-2.0-workaround', dirs: vapi_dir),
+   valac.find_library ('linux'),
+diff --git a/src/welcome-tutorial.vala b/src/welcome-tutorial.vala
+index 1cf1c7d0..2e9f9a12 100644
+--- a/src/welcome-tutorial.vala
 b/src/welcome-tutorial.vala
+@@ -5,7 +5,7 @@
+ [GtkTemplate (ui = "/org/gnome/Boxes/ui/welcome-tutorial.ui")]
+ private class Boxes.WelcomeTutorial : Gtk.Dialog {
+ [GtkChild]
+-private Paginator paginator;
++private Carousel paginator;
+ [GtkChild]
+ private Button go_back_button;
+ [GtkChild]
+-- 
+GitLab
+


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

2020-10-06 Thread Jan Steffens via arch-commits
Date: Tuesday, October 6, 2020 @ 21:50:16
  Author: heftig
Revision: 719684

3.38.1-1

Modified:
  gnome-boxes/trunk/PKGBUILD

--+
 PKGBUILD |   12 +++-
 1 file changed, 7 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-10-06 21:49:45 UTC (rev 719683)
+++ PKGBUILD2020-10-06 21:50:16 UTC (rev 719684)
@@ -2,7 +2,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.38.0
+pkgver=3.38.1
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=(x86_64)
@@ -10,15 +10,16 @@
 license=(LGPL)
 groups=(gnome)
 depends=(cdrtools gtk-vnc libarchive libgudev libosinfo libsecret libvirt-glib
- mtools qemu spice-gtk tracker webkit2gtk freerdp gtksourceview4
- libhandy0)
+ mtools qemu spice-gtk tracker webkit2gtk freerdp gtksourceview4)
 makedepends=(git gobject-introspection yelp-tools meson spice-protocol vala)
-_commit=fad33e0ca3109b69b340e71f4453534ccbb0337c  # tags/v3.38.0^0
+_commit=3761f2b5dab67d2a374badb57e4859dbcef59ed8  # tags/v3.38.1^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/gtk-frdp.git;
-"git+https://gitlab.gnome.org/felipeborges/libovf-glib.git;)
+"git+https://gitlab.gnome.org/felipeborges/libovf-glib.git;
+"git+https://gitlab.gnome.org/GNOME/libhandy.git;)
 sha256sums=('SKIP'
 'SKIP'
+'SKIP'
 'SKIP')
 
 pkgver() {
@@ -31,6 +32,7 @@
   git submodule init
   git submodule set-url subprojects/gtk-frdp "$srcdir/gtk-frdp"
   git submodule set-url subprojects/libovf-glib "$srcdir/libovf-glib"
+  git submodule set-url subprojects/libhandy "$srcdir/libhandy"
   git submodule update
 }
 


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

2020-10-02 Thread Jan Steffens via arch-commits
Date: Friday, October 2, 2020 @ 21:12:08
  Author: heftig
Revision: 715706

3.38.0-1

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-02 21:11:58 UTC (rev 715705)
+++ PKGBUILD2020-10-02 21:12:08 UTC (rev 715706)
@@ -2,7 +2,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.36.6
+pkgver=3.38.0
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=(x86_64)
@@ -9,10 +9,11 @@
 url="https://wiki.gnome.org/Apps/Boxes;
 license=(LGPL)
 groups=(gnome)
-depends=(cdrtools gtk-vnc libarchive libgudev libosinfo libsecret
- libvirt-glib mtools qemu spice-gtk tracker webkit2gtk freerdp)
+depends=(cdrtools gtk-vnc libarchive libgudev libosinfo libsecret libvirt-glib
+ mtools qemu spice-gtk tracker webkit2gtk freerdp gtksourceview4
+ libhandy0)
 makedepends=(git gobject-introspection yelp-tools meson spice-protocol vala)
-_commit=a9754ada74b56892b75dd0417c67a6f0867d6cd8  # tags/v3.36.6^0
+_commit=fad33e0ca3109b69b340e71f4453534ccbb0337c  # tags/v3.38.0^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/gtk-frdp.git;
 "git+https://gitlab.gnome.org/felipeborges/libovf-glib.git;)


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

2020-08-08 Thread Jan Steffens via arch-commits
Date: Sunday, August 9, 2020 @ 01:15:37
  Author: heftig
Revision: 672878

3.36.6-1

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-08 22:18:35 UTC (rev 672877)
+++ PKGBUILD2020-08-09 01:15:37 UTC (rev 672878)
@@ -2,7 +2,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.36.5
+pkgver=3.36.6
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=(x86_64)
@@ -12,7 +12,7 @@
 depends=(cdrtools gtk-vnc libarchive libgudev libosinfo libsecret
  libvirt-glib mtools qemu spice-gtk tracker webkit2gtk freerdp)
 makedepends=(git gobject-introspection yelp-tools meson spice-protocol vala)
-_commit=bdc81983889cd74e364edc6497f3d52e81846c4e  # tags/v3.36.5^0
+_commit=a9754ada74b56892b75dd0417c67a6f0867d6cd8  # tags/v3.36.6^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/gtk-frdp.git;
 "git+https://gitlab.gnome.org/felipeborges/libovf-glib.git;)
@@ -35,7 +35,7 @@
 
 build() {
   arch-meson $pkgname build
-  ninja -C build
+  meson compile -C build
 }
 
 check() {


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

2020-07-10 Thread Balló György via arch-commits
Date: Friday, July 10, 2020 @ 20:25:04
  Author: bgyorgy
Revision: 663152

upgpkg: gnome-boxes 3.36.5-1: Update to new version

Modified:
  gnome-boxes/trunk/PKGBUILD

--+
 PKGBUILD |   16 
 1 file changed, 8 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-10 20:18:27 UTC (rev 663151)
+++ PKGBUILD2020-07-10 20:25:04 UTC (rev 663152)
@@ -2,17 +2,17 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.36.4
+pkgver=3.36.5
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
-arch=('x86_64')
+arch=(x86_64)
 url="https://wiki.gnome.org/Apps/Boxes;
-license=('LGPL')
-groups=('gnome')
-depends=('cdrtools' 'gtk-vnc' 'libarchive' 'libgudev' 'libosinfo' 'libsecret'
- 'libvirt-glib' 'mtools' 'qemu' 'spice-gtk' 'tracker' 'webkit2gtk' 
'freerdp')
-makedepends=('git' 'gobject-introspection' 'yelp-tools' 'meson' 
'spice-protocol' 'vala')
-_commit=2f6b8159e61096738cf0f66ba164995cbdcea24c  # tags/v3.36.4^0
+license=(LGPL)
+groups=(gnome)
+depends=(cdrtools gtk-vnc libarchive libgudev libosinfo libsecret
+ libvirt-glib mtools qemu spice-gtk tracker webkit2gtk freerdp)
+makedepends=(git gobject-introspection yelp-tools meson spice-protocol vala)
+_commit=bdc81983889cd74e364edc6497f3d52e81846c4e  # tags/v3.36.5^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/gtk-frdp.git;
 "git+https://gitlab.gnome.org/felipeborges/libovf-glib.git;)


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

2020-05-27 Thread Balló György via arch-commits
Date: Wednesday, May 27, 2020 @ 15:14:58
  Author: bgyorgy
Revision: 635927

upgpkg: gnome-boxes 3.36.4-1: Update to new version

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 15:08:24 UTC (rev 635926)
+++ PKGBUILD2020-05-27 15:14:58 UTC (rev 635927)
@@ -2,7 +2,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.36.0
+pkgver=3.36.4
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('cdrtools' 'gtk-vnc' 'libarchive' 'libgudev' 'libosinfo' 'libsecret'
  'libvirt-glib' 'mtools' 'qemu' 'spice-gtk' 'tracker' 'webkit2gtk' 
'freerdp')
 makedepends=('git' 'gobject-introspection' 'yelp-tools' 'meson' 
'spice-protocol' 'vala')
-_commit=0b1ed77c91d4c9db224594e68f5b101d88673941  # tags/v3.36.0^0
+_commit=2f6b8159e61096738cf0f66ba164995cbdcea24c  # tags/v3.36.4^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/gtk-frdp.git;
 "git+https://gitlab.gnome.org/felipeborges/libovf-glib.git;)


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

2020-03-08 Thread Balló György via arch-commits
Date: Monday, March 9, 2020 @ 01:15:47
  Author: bgyorgy
Revision: 592725

upgpkg: gnome-boxes 3.36.0-1: Update to new version

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-09 01:12:28 UTC (rev 592724)
+++ PKGBUILD2020-03-09 01:15:47 UTC (rev 592725)
@@ -2,7 +2,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.34.4
+pkgver=3.36.0
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('cdrtools' 'gtk-vnc' 'libarchive' 'libgudev' 'libosinfo' 'libsecret'
  'libvirt-glib' 'mtools' 'qemu' 'spice-gtk' 'tracker' 'webkit2gtk' 
'freerdp')
 makedepends=('git' 'gobject-introspection' 'yelp-tools' 'meson' 
'spice-protocol' 'vala')
-_commit=e51a85c734cb6e4baaf1b77c4ad5d8fe032488f6  # tags/v3.34.4^0
+_commit=0b1ed77c91d4c9db224594e68f5b101d88673941  # tags/v3.36.0^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/gtk-frdp.git;
 "git+https://gitlab.gnome.org/felipeborges/libovf-glib.git;)


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

2020-02-18 Thread Jan Steffens via arch-commits
Date: Tuesday, February 18, 2020 @ 19:10:30
  Author: heftig
Revision: 576119

3.34.4-1

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-18 19:08:37 UTC (rev 576118)
+++ PKGBUILD2020-02-18 19:10:30 UTC (rev 576119)
@@ -2,7 +2,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.34.3
+pkgver=3.34.4
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('cdrtools' 'gtk-vnc' 'libarchive' 'libgudev' 'libosinfo' 'libsecret'
  'libvirt-glib' 'mtools' 'qemu' 'spice-gtk' 'tracker' 'webkit2gtk' 
'freerdp')
 makedepends=('git' 'gobject-introspection' 'yelp-tools' 'meson' 
'spice-protocol' 'vala')
-_commit=c3bce5984eb53cc883850969f3e4a3e8e2cc6d44  # tags/v3.34.3^0
+_commit=e51a85c734cb6e4baaf1b77c4ad5d8fe032488f6  # tags/v3.34.4^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/gtk-frdp.git;
 "git+https://gitlab.gnome.org/felipeborges/libovf-glib.git;)
@@ -28,8 +28,8 @@
 prepare() {
   cd $pkgname
   git submodule init
-  git config --local submodule.subprojects/gtk-frdp.url "$srcdir/gtk-frdp"
-  git config --local submodule.subprojects/libovf-glib.url 
"$srcdir/libovf-glib"
+  git submodule set-url subprojects/gtk-frdp "$srcdir/gtk-frdp"
+  git submodule set-url subprojects/libovf-glib "$srcdir/libovf-glib"
   git submodule update
 }
 


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

2020-01-06 Thread Jan Steffens via arch-commits
Date: Monday, January 6, 2020 @ 18:35:28
  Author: heftig
Revision: 549772

3.34.3-1

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-06 15:52:50 UTC (rev 549771)
+++ PKGBUILD2020-01-06 18:35:28 UTC (rev 549772)
@@ -2,7 +2,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.34.2
+pkgver=3.34.3
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('cdrtools' 'gtk-vnc' 'libarchive' 'libgudev' 'libosinfo' 'libsecret'
  'libvirt-glib' 'mtools' 'qemu' 'spice-gtk' 'tracker' 'webkit2gtk' 
'freerdp')
 makedepends=('git' 'gobject-introspection' 'yelp-tools' 'meson' 
'spice-protocol' 'vala')
-_commit=2edb94153b163759d18195c511d6cf5212fd1bfe  # tags/v3.34.2^0
+_commit=c3bce5984eb53cc883850969f3e4a3e8e2cc6d44  # tags/v3.34.3^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/gtk-frdp.git;
 "git+https://gitlab.gnome.org/felipeborges/libovf-glib.git;)


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

2019-11-24 Thread Jan Steffens via arch-commits
Date: Sunday, November 24, 2019 @ 17:16:11
  Author: heftig
Revision: 533081

3.34.2-1

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-11-24 16:24:25 UTC (rev 533080)
+++ PKGBUILD2019-11-24 17:16:11 UTC (rev 533081)
@@ -2,7 +2,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.34.1
+pkgver=3.34.2
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('cdrtools' 'gtk-vnc' 'libarchive' 'libgudev' 'libosinfo' 'libsecret'
  'libvirt-glib' 'mtools' 'qemu' 'spice-gtk' 'tracker' 'webkit2gtk' 
'freerdp')
 makedepends=('git' 'gobject-introspection' 'yelp-tools' 'meson' 
'spice-protocol' 'vala')
-_commit=64afa3d6a78c8242941086363dbbd89495a33716  # tags/v3.34.1^0
+_commit=2edb94153b163759d18195c511d6cf5212fd1bfe  # tags/v3.34.2^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/gtk-frdp.git;
 "git+https://gitlab.gnome.org/felipeborges/libovf-glib.git;)


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

2019-10-11 Thread Balló György via arch-commits
Date: Friday, October 11, 2019 @ 19:44:31
  Author: bgyorgy
Revision: 515157

upgpkg: gnome-boxes 3.34.1-1

Update to new version

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-11 19:40:50 UTC (rev 515156)
+++ PKGBUILD2019-10-11 19:44:31 UTC (rev 515157)
@@ -2,7 +2,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.34.0
+pkgver=3.34.1
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('x86_64')
@@ -10,9 +10,9 @@
 license=('LGPL')
 groups=('gnome')
 depends=('cdrtools' 'gtk-vnc' 'libarchive' 'libgudev' 'libosinfo' 'libsecret'
- 'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3' 'tracker' 'webkit2gtk' 
'freerdp')
+ 'libvirt-glib' 'mtools' 'qemu' 'spice-gtk' 'tracker' 'webkit2gtk' 
'freerdp')
 makedepends=('git' 'gobject-introspection' 'yelp-tools' 'meson' 
'spice-protocol' 'vala')
-_commit=8d7709b1b4bb2a7e983e8ced9715fc5db35f740a  # tags/v3.34.0^0
+_commit=64afa3d6a78c8242941086363dbbd89495a33716  # tags/v3.34.1^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/gtk-frdp.git;
 "git+https://gitlab.gnome.org/felipeborges/libovf-glib.git;)


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

2019-09-13 Thread Jan Steffens via arch-commits
Date: Friday, September 13, 2019 @ 09:25:28
  Author: heftig
Revision: 510089

3.34.0-1

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-13 08:39:21 UTC (rev 510088)
+++ PKGBUILD2019-09-13 09:25:28 UTC (rev 510089)
@@ -2,7 +2,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.32.2
+pkgver=3.34.0
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('x86_64')
@@ -9,10 +9,10 @@
 url="https://wiki.gnome.org/Apps/Boxes;
 license=('LGPL')
 groups=('gnome')
-depends=('cdrtools' 'gtk-vnc' 'libarchive' 'libgovirt' 'libgudev' 'libosinfo' 
'libsecret'
+depends=('cdrtools' 'gtk-vnc' 'libarchive' 'libgudev' 'libosinfo' 'libsecret'
  'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3' 'tracker' 'webkit2gtk' 
'freerdp')
 makedepends=('git' 'gobject-introspection' 'yelp-tools' 'meson' 
'spice-protocol' 'vala')
-_commit=b6152dcb71aec00ef9b804a244b9e4b55e027b89  # tags/v3.32.2^0
+_commit=8d7709b1b4bb2a7e983e8ced9715fc5db35f740a  # tags/v3.34.0^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/gtk-frdp.git;
 "git+https://gitlab.gnome.org/felipeborges/libovf-glib.git;)


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

2019-09-06 Thread Jan Steffens via arch-commits
Date: Friday, September 6, 2019 @ 17:50:51
  Author: heftig
Revision: 508303

3.32.2-1

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-06 17:49:28 UTC (rev 508302)
+++ PKGBUILD2019-09-06 17:50:51 UTC (rev 508303)
@@ -2,7 +2,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.32.1
+pkgver=3.32.2
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('cdrtools' 'gtk-vnc' 'libarchive' 'libgovirt' 'libgudev' 'libosinfo' 
'libsecret'
  'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3' 'tracker' 'webkit2gtk' 
'freerdp')
 makedepends=('git' 'gobject-introspection' 'yelp-tools' 'meson' 
'spice-protocol' 'vala')
-_commit=5b130ef7a331074ebe8ed8dd575f19c5d7094d96  # tags/v3.32.1^0
+_commit=b6152dcb71aec00ef9b804a244b9e4b55e027b89  # tags/v3.32.2^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/gtk-frdp.git;
 "git+https://gitlab.gnome.org/felipeborges/libovf-glib.git;)


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

2019-05-09 Thread Jan Steffens via arch-commits
Date: Thursday, May 9, 2019 @ 15:00:28
  Author: heftig
Revision: 464606

3.32.1-1

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-09 14:57:28 UTC (rev 464605)
+++ PKGBUILD2019-05-09 15:00:28 UTC (rev 464606)
@@ -2,7 +2,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.32.0.2
+pkgver=3.32.1
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('cdrtools' 'gtk-vnc' 'libarchive' 'libgovirt' 'libgudev' 'libosinfo' 
'libsecret'
  'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3' 'tracker' 'webkit2gtk' 
'freerdp')
 makedepends=('git' 'gobject-introspection' 'yelp-tools' 'meson' 
'spice-protocol' 'vala')
-_commit=ea34339c0954c304c3cbceeea1ce4ab12ee9c61f  # tags/v3.32.0.2^0
+_commit=5b130ef7a331074ebe8ed8dd575f19c5d7094d96  # tags/v3.32.1^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/gtk-frdp.git;
 "git+https://gitlab.gnome.org/felipeborges/libovf-glib.git;)
@@ -39,7 +39,7 @@
 }
 
 check() {
-  meson test -C build
+  meson test -C build --print-errorlogs
 }
 
 package() {


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

2019-03-29 Thread Jan Steffens via arch-commits
Date: Friday, March 29, 2019 @ 12:15:28
  Author: heftig
Revision: 445997

3.32.0.2-1

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-03-29 12:13:51 UTC (rev 445996)
+++ PKGBUILD2019-03-29 12:15:28 UTC (rev 445997)
@@ -2,7 +2,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.32.0.1
+pkgver=3.32.0.2
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('cdrtools' 'gtk-vnc' 'libarchive' 'libgovirt' 'libgudev' 'libosinfo' 
'libsecret'
  'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3' 'tracker' 'webkit2gtk' 
'freerdp')
 makedepends=('git' 'gobject-introspection' 'yelp-tools' 'meson' 
'spice-protocol' 'vala')
-_commit=2833a387269d7bd89d77e110174654f0290c9c5d  # 
environments/review-gnome-3-32-aawdx3/deployments/229
+_commit=ea34339c0954c304c3cbceeea1ce4ab12ee9c61f  # tags/v3.32.0.2^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/gtk-frdp.git;
 "git+https://gitlab.gnome.org/felipeborges/libovf-glib.git;)
@@ -27,10 +27,6 @@
 
 prepare() {
   cd $pkgname
-
-  # Fixup tag
-  git tag -f v3.32.0.1 2833a387269d7bd89d77e110174654f0290c9c5d
-
   git submodule init
   git config --local submodule.subprojects/gtk-frdp.url "$srcdir/gtk-frdp"
   git config --local submodule.subprojects/libovf-glib.url 
"$srcdir/libovf-glib"


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

2019-03-18 Thread Jan Steffens via arch-commits
Date: Tuesday, March 19, 2019 @ 00:47:15
  Author: heftig
Revision: 442525

3.32.0.1-1

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-03-19 00:11:16 UTC (rev 442524)
+++ PKGBUILD2019-03-19 00:47:15 UTC (rev 442525)
@@ -2,7 +2,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.32.0
+pkgver=3.32.0.1
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('cdrtools' 'gtk-vnc' 'libarchive' 'libgovirt' 'libgudev' 'libosinfo' 
'libsecret'
  'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3' 'tracker' 'webkit2gtk' 
'freerdp')
 makedepends=('git' 'gobject-introspection' 'yelp-tools' 'meson' 
'spice-protocol' 'vala')
-_commit=2af6543a6a3a998f87eda9c0c0b382c307bef8b0  # tags/v3.32.0^0
+_commit=2833a387269d7bd89d77e110174654f0290c9c5d  # 
environments/review-gnome-3-32-aawdx3/deployments/229
 source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/gtk-frdp.git;
 "git+https://gitlab.gnome.org/felipeborges/libovf-glib.git;)
@@ -27,6 +27,10 @@
 
 prepare() {
   cd $pkgname
+
+  # Fixup tag
+  git tag -f v3.32.0.1 2833a387269d7bd89d77e110174654f0290c9c5d
+
   git submodule init
   git config --local submodule.subprojects/gtk-frdp.url "$srcdir/gtk-frdp"
   git config --local submodule.subprojects/libovf-glib.url 
"$srcdir/libovf-glib"


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

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

3.32.0-1

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-03-15 21:59:27 UTC (rev 442057)
+++ PKGBUILD2019-03-15 22:16:15 UTC (rev 442058)
@@ -2,7 +2,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.30.3
+pkgver=3.32.0
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('x86_64')
@@ -11,8 +11,8 @@
 groups=('gnome')
 depends=('cdrtools' 'gtk-vnc' 'libarchive' 'libgovirt' 'libgudev' 'libosinfo' 
'libsecret'
  'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3' 'tracker' 'webkit2gtk' 
'freerdp')
-makedepends=('git' 'gobject-introspection' 'itstool' 'meson' 'spice-protocol' 
'vala')
-_commit=d9253b816c8bd3df3de23e9e3ec0df187f27eb27  # tags/v3.30.3^0
+makedepends=('git' 'gobject-introspection' 'yelp-tools' 'meson' 
'spice-protocol' 'vala')
+_commit=2af6543a6a3a998f87eda9c0c0b382c307bef8b0  # tags/v3.32.0^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/gtk-frdp.git;
 "git+https://gitlab.gnome.org/felipeborges/libovf-glib.git;)


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

2018-12-24 Thread Balló György via arch-commits
Date: Monday, December 24, 2018 @ 18:32:56
  Author: bgyorgy
Revision: 417847

Update upstream URL

Modified:
  gnome-boxes/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-24 18:27:02 UTC (rev 417846)
+++ PKGBUILD2018-12-24 18:32:56 UTC (rev 417847)
@@ -6,7 +6,7 @@
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('x86_64')
-url="https://wiki.gnome.org/Boxes;
+url="https://wiki.gnome.org/Apps/Boxes;
 license=('LGPL')
 groups=('gnome')
 depends=('cdrtools' 'gtk-vnc' 'libarchive' 'libgovirt' 'libgudev' 'libosinfo' 
'libsecret'


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

2018-11-22 Thread Jan Steffens via arch-commits
Date: Thursday, November 22, 2018 @ 20:43:45
  Author: heftig
Revision: 409365

3.30.3-1

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-11-22 19:54:37 UTC (rev 409364)
+++ PKGBUILD2018-11-22 20:43:45 UTC (rev 409365)
@@ -2,7 +2,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.30.2
+pkgver=3.30.3
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('cdrtools' 'gtk-vnc' 'libarchive' 'libgovirt' 'libgudev' 'libosinfo' 
'libsecret'
  'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3' 'tracker' 'webkit2gtk' 
'freerdp')
 makedepends=('git' 'gobject-introspection' 'itstool' 'meson' 'spice-protocol' 
'vala')
-_commit=6c57437cfe7bcecbb76ae4675154da045039  # tags/v3.30.2^0
+_commit=d9253b816c8bd3df3de23e9e3ec0df187f27eb27  # tags/v3.30.3^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/gtk-frdp.git;
 "git+https://gitlab.gnome.org/felipeborges/libovf-glib.git;)


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

2018-10-24 Thread Jan Steffens via arch-commits
Date: Wednesday, October 24, 2018 @ 23:42:30
  Author: heftig
Revision: 398907

3.30.2-1

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-24 23:37:33 UTC (rev 398906)
+++ PKGBUILD2018-10-24 23:42:30 UTC (rev 398907)
@@ -2,7 +2,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.30.1
+pkgver=3.30.2
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('cdrtools' 'gtk-vnc' 'libarchive' 'libgovirt' 'libgudev' 'libosinfo' 
'libsecret'
  'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3' 'tracker' 'webkit2gtk' 
'freerdp')
 makedepends=('git' 'gobject-introspection' 'itstool' 'meson' 'spice-protocol' 
'vala')
-_commit=390f15e57146af5daf2ac5c9ad056ad87063eaa3  # tags/v3.30.1^0
+_commit=6c57437cfe7bcecbb76ae4675154da045039  # tags/v3.30.2^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/gtk-frdp.git;
 "git+https://gitlab.gnome.org/felipeborges/libovf-glib.git;)


[arch-commits] Commit in gnome-boxes/trunk (PKGBUILD rpath.diff)

2018-09-25 Thread Jan Steffens via arch-commits
Date: Tuesday, September 25, 2018 @ 08:32:05
  Author: heftig
Revision: 384793

3.30.1-1

Modified:
  gnome-boxes/trunk/PKGBUILD
Deleted:
  gnome-boxes/trunk/rpath.diff

+
 PKGBUILD   |   18 +-
 rpath.diff |   12 
 2 files changed, 5 insertions(+), 25 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-09-25 07:40:03 UTC (rev 384792)
+++ PKGBUILD2018-09-25 08:32:05 UTC (rev 384793)
@@ -2,8 +2,8 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.30.0
-pkgrel=3
+pkgver=3.30.1
+pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('x86_64')
 url="https://wiki.gnome.org/Boxes;
@@ -12,15 +12,13 @@
 depends=('cdrtools' 'gtk-vnc' 'libarchive' 'libgovirt' 'libgudev' 'libosinfo' 
'libsecret'
  'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3' 'tracker' 'webkit2gtk' 
'freerdp')
 makedepends=('git' 'gobject-introspection' 'itstool' 'meson' 'spice-protocol' 
'vala')
-_commit=1070fca80a43472576b5641935831f8d21d53341  # tags/v3.30.0^0
+_commit=390f15e57146af5daf2ac5c9ad056ad87063eaa3  # tags/v3.30.1^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/gtk-frdp.git;
-"git+https://gitlab.gnome.org/felipeborges/libovf-glib.git;
-rpath.diff)
+"git+https://gitlab.gnome.org/felipeborges/libovf-glib.git;)
 sha256sums=('SKIP'
 'SKIP'
-'SKIP'
-'5d8b03dab802794b4f416504434212cfc8e6908f66d0304f45566219e4ae7748')
+'SKIP')
 
 pkgver() {
   cd $pkgname
@@ -33,12 +31,6 @@
   git config --local submodule.subprojects/gtk-frdp.url "$srcdir/gtk-frdp"
   git config --local submodule.subprojects/libovf-glib.url 
"$srcdir/libovf-glib"
   git submodule update
-
-  # disable broken tests
-  git -C subprojects/libovf-glib cherry-pick -n 
4bef85e97c636ac4747cb815cf12a0591271b218
-
-  # fix linking
-  git apply -3 ../rpath.diff
 }
 
 build() {

Deleted: rpath.diff
===
--- rpath.diff  2018-09-25 07:40:03 UTC (rev 384792)
+++ rpath.diff  2018-09-25 08:32:05 UTC (rev 384793)
@@ -1,12 +0,0 @@
-diff --git i/src/meson.build w/src/meson.build
-index 000dbf86..787aa2d0 100644
 i/src/meson.build
-+++ w/src/meson.build
-@@ -202,6 +202,7 @@ executable ('gnome-boxes', vala_sources + resources,
- c_args : c_args,
- dependencies: dependencies,
- link_with: libcommon,
-+install_rpath: join_paths (get_option ('prefix'), pkglibdir),
- install: true
- )
- 


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

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:31:50
  Author: heftig
Revision: 378839

3.30.0-3

Modified:
  gnome-boxes/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-09-08 23:56:55 UTC (rev 378838)
+++ PKGBUILD2018-09-09 00:31:50 UTC (rev 378839)
@@ -3,7 +3,7 @@
 
 pkgname=gnome-boxes
 pkgver=3.30.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('x86_64')
 url="https://wiki.gnome.org/Boxes;


[arch-commits] Commit in gnome-boxes/trunk (PKGBUILD rpath.diff)

2018-09-07 Thread Jan Steffens via arch-commits
Date: Saturday, September 8, 2018 @ 03:21:00
  Author: heftig
Revision: 378749

3.30.0-2

Added:
  gnome-boxes/trunk/rpath.diff
Modified:
  gnome-boxes/trunk/PKGBUILD

+
 PKGBUILD   |   11 ---
 rpath.diff |   12 
 2 files changed, 20 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-09-08 03:09:47 UTC (rev 378748)
+++ PKGBUILD2018-09-08 03:21:00 UTC (rev 378749)
@@ -3,7 +3,7 @@
 
 pkgname=gnome-boxes
 pkgver=3.30.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('x86_64')
 url="https://wiki.gnome.org/Boxes;
@@ -15,10 +15,12 @@
 _commit=1070fca80a43472576b5641935831f8d21d53341  # tags/v3.30.0^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/gtk-frdp.git;
-"git+https://gitlab.gnome.org/felipeborges/libovf-glib.git;)
+"git+https://gitlab.gnome.org/felipeborges/libovf-glib.git;
+rpath.diff)
 sha256sums=('SKIP'
 'SKIP'
-'SKIP')
+'SKIP'
+'5d8b03dab802794b4f416504434212cfc8e6908f66d0304f45566219e4ae7748')
 
 pkgver() {
   cd $pkgname
@@ -34,6 +36,9 @@
 
   # disable broken tests
   git -C subprojects/libovf-glib cherry-pick -n 
4bef85e97c636ac4747cb815cf12a0591271b218
+
+  # fix linking
+  git apply -3 ../rpath.diff
 }
 
 build() {

Added: rpath.diff
===
--- rpath.diff  (rev 0)
+++ rpath.diff  2018-09-08 03:21:00 UTC (rev 378749)
@@ -0,0 +1,12 @@
+diff --git i/src/meson.build w/src/meson.build
+index 000dbf86..787aa2d0 100644
+--- i/src/meson.build
 w/src/meson.build
+@@ -202,6 +202,7 @@ executable ('gnome-boxes', vala_sources + resources,
+ c_args : c_args,
+ dependencies: dependencies,
+ link_with: libcommon,
++install_rpath: join_paths (get_option ('prefix'), pkglibdir),
+ install: true
+ )
+ 


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

2018-09-07 Thread Jan Steffens via arch-commits
Date: Saturday, September 8, 2018 @ 03:09:24
  Author: heftig
Revision: 378746

3.30.0-1

Modified:
  gnome-boxes/trunk/PKGBUILD(contents, properties)

--+
 PKGBUILD |   28 +---
 1 file changed, 21 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-09-08 03:09:04 UTC (rev 378745)
+++ PKGBUILD2018-09-08 03:09:24 UTC (rev 378746)
@@ -1,9 +1,8 @@
-# $Id$
 # Maintainer: Balló György 
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.28.5+7+g0c8a57d5
+pkgver=3.30.0
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('x86_64')
@@ -11,11 +10,15 @@
 license=('LGPL')
 groups=('gnome')
 depends=('cdrtools' 'gtk-vnc' 'libarchive' 'libgovirt' 'libgudev' 'libosinfo' 
'libsecret'
- 'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3' 'tracker' 'webkit2gtk')
+ 'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3' 'tracker' 'webkit2gtk' 
'freerdp')
 makedepends=('git' 'gobject-introspection' 'itstool' 'meson' 'spice-protocol' 
'vala')
-_commit=0c8a57d563b0781f3ab091358c3c45d65a0a5922  # gnome-3-28
-source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;)
-sha256sums=('SKIP')
+_commit=1070fca80a43472576b5641935831f8d21d53341  # tags/v3.30.0^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;
+"git+https://gitlab.gnome.org/GNOME/gtk-frdp.git;
+"git+https://gitlab.gnome.org/felipeborges/libovf-glib.git;)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP')
 
 pkgver() {
   cd $pkgname
@@ -24,6 +27,13 @@
 
 prepare() {
   cd $pkgname
+  git submodule init
+  git config --local submodule.subprojects/gtk-frdp.url "$srcdir/gtk-frdp"
+  git config --local submodule.subprojects/libovf-glib.url 
"$srcdir/libovf-glib"
+  git submodule update
+
+  # disable broken tests
+  git -C subprojects/libovf-glib cherry-pick -n 
4bef85e97c636ac4747cb815cf12a0591271b218
 }
 
 build() {
@@ -31,6 +41,10 @@
   ninja -C build
 }
 
+check() {
+  meson test -C build
+}
+
 package() {
-  DESTDIR="$pkgdir" ninja -C build install
+  DESTDIR="$pkgdir" meson install -C build
 }


Property changes on: gnome-boxes/trunk/PKGBUILD
___
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property


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

2018-06-19 Thread Jan Steffens via arch-commits
Date: Tuesday, June 19, 2018 @ 21:23:47
  Author: heftig
Revision: 344136

3.28.5+7+g0c8a57d5-1

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-19 19:07:45 UTC (rev 344135)
+++ PKGBUILD2018-06-19 21:23:47 UTC (rev 344136)
@@ -3,7 +3,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.28.4
+pkgver=3.28.5+7+g0c8a57d5
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('x86_64')
@@ -13,7 +13,7 @@
 depends=('cdrtools' 'gtk-vnc' 'libarchive' 'libgovirt' 'libgudev' 'libosinfo' 
'libsecret'
  'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3' 'tracker' 'webkit2gtk')
 makedepends=('git' 'gobject-introspection' 'itstool' 'meson' 'spice-protocol' 
'vala')
-_commit=c7427165ec34e9ba9263bca1471f5c21ed22cd7e  # tags/v3.28.4^0
+_commit=0c8a57d563b0781f3ab091358c3c45d65a0a5922  # gnome-3-28
 source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2018-05-09 Thread Jan Steffens via arch-commits
Date: Wednesday, May 9, 2018 @ 10:45:07
  Author: heftig
Revision: 319830

3.28.4-1

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-05-09 10:12:16 UTC (rev 319829)
+++ PKGBUILD2018-05-09 10:45:07 UTC (rev 319830)
@@ -3,7 +3,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.28.3
+pkgver=3.28.4
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('x86_64')
@@ -13,7 +13,7 @@
 depends=('cdrtools' 'gtk-vnc' 'libarchive' 'libgovirt' 'libgudev' 'libosinfo' 
'libsecret'
  'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3' 'tracker' 'webkit2gtk')
 makedepends=('git' 'gobject-introspection' 'itstool' 'meson' 'spice-protocol' 
'vala')
-_commit=f54a3355eba9f84f167568f45f6d579bc6c87416  # tags/v3.28.3^0
+_commit=c7427165ec34e9ba9263bca1471f5c21ed22cd7e  # tags/v3.28.4^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2018-05-07 Thread Jan Steffens via arch-commits
Date: Monday, May 7, 2018 @ 09:00:02
  Author: heftig
Revision: 319060

3.28.3-1

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-05-07 05:08:36 UTC (rev 319059)
+++ PKGBUILD2018-05-07 09:00:02 UTC (rev 319060)
@@ -3,7 +3,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.28.2
+pkgver=3.28.3
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('x86_64')
@@ -13,7 +13,7 @@
 depends=('cdrtools' 'gtk-vnc' 'libarchive' 'libgovirt' 'libgudev' 'libosinfo' 
'libsecret'
  'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3' 'tracker' 'webkit2gtk')
 makedepends=('git' 'gobject-introspection' 'itstool' 'meson' 'spice-protocol' 
'vala')
-_commit=6e37c0aa8544225b15f9268f7f581f987904bd24  # tags/v3.28.2^0
+_commit=f54a3355eba9f84f167568f45f6d579bc6c87416  # tags/v3.28.3^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2018-04-10 Thread Jan Steffens via arch-commits
Date: Tuesday, April 10, 2018 @ 09:56:33
  Author: heftig
Revision: 315550

3.28.2-1

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-10 09:43:42 UTC (rev 315549)
+++ PKGBUILD2018-04-10 09:56:33 UTC (rev 315550)
@@ -3,7 +3,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.28.1
+pkgver=3.28.2
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('x86_64')
@@ -13,7 +13,7 @@
 depends=('cdrtools' 'gtk-vnc' 'libarchive' 'libgovirt' 'libgudev' 'libosinfo' 
'libsecret'
  'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3' 'tracker' 'webkit2gtk')
 makedepends=('git' 'gobject-introspection' 'itstool' 'meson' 'spice-protocol' 
'vala')
-_commit=9578e5f161cd15347c916bffca74e99df0fc900e  # tags/v3.28.1^0
+_commit=6e37c0aa8544225b15f9268f7f581f987904bd24  # tags/v3.28.2^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2018-04-09 Thread Jan Steffens via arch-commits
Date: Monday, April 9, 2018 @ 19:32:40
  Author: heftig
Revision: 315476

3.28.1-1

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-09 18:57:03 UTC (rev 315475)
+++ PKGBUILD2018-04-09 19:32:40 UTC (rev 315476)
@@ -3,7 +3,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.28.0
+pkgver=3.28.1
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('x86_64')
@@ -13,7 +13,7 @@
 depends=('cdrtools' 'gtk-vnc' 'libarchive' 'libgovirt' 'libgudev' 'libosinfo' 
'libsecret'
  'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3' 'tracker' 'webkit2gtk')
 makedepends=('git' 'gobject-introspection' 'itstool' 'meson' 'spice-protocol' 
'vala')
-_commit=1e263fb404c8b69513c010739d7460260f3439d9  # tags/v3.28.0^0
+_commit=9578e5f161cd15347c916bffca74e99df0fc900e  # tags/v3.28.1^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2018-03-23 Thread Balló György via arch-commits
Date: Friday, March 23, 2018 @ 21:14:24
  Author: bgyorgy
Revision: 311657

upgpkg: gnome-boxes 3.28.0-1

Update to new version

Modified:
  gnome-boxes/trunk/PKGBUILD

--+
 PKGBUILD |   31 +++
 1 file changed, 19 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-03-23 20:47:01 UTC (rev 311656)
+++ PKGBUILD2018-03-23 21:14:24 UTC (rev 311657)
@@ -3,7 +3,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.26.2
+pkgver=3.28.0
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('x86_64')
@@ -10,20 +10,27 @@
 url="https://wiki.gnome.org/Boxes;
 license=('LGPL')
 groups=('gnome')
-depends=('cdrkit' 'gtk-vnc' 'libarchive' 'libgudev' 'libosinfo' 'libsecret' 
'tracker'
- 'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3' 'libgovirt')
-makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 
'vala')
-source=(https://download.gnome.org/sources/$pkgname/${pkgver::4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('d00fc083182963dc1bbdee5e743ceb28ba03fbf5a9ea87c78d29dca5fb5b9210')
+depends=('cdrtools' 'gtk-vnc' 'libarchive' 'libgovirt' 'libgudev' 'libosinfo' 
'libsecret'
+ 'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3' 'tracker' 'webkit2gtk')
+makedepends=('git' 'gobject-introspection' 'itstool' 'meson' 'spice-protocol' 
'vala')
+_commit=1e263fb404c8b69513c010739d7460260f3439d9  # tags/v3.28.0^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;)
+sha256sums=('SKIP')
 
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
 build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/$pkgname \
-  --disable-schemas-compile --enable-vala
-  make
+  arch-meson $pkgname build
+  ninja -C build
 }
 
 package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
+  DESTDIR="$pkgdir" ninja -C build install
 }


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

2018-01-15 Thread Balló György via arch-commits
Date: Tuesday, January 16, 2018 @ 01:35:05
  Author: bgyorgy
Revision: 282867

gnome-boxes: Add to the gnome group

Modified:
  gnome-boxes/trunk/PKGBUILD

--+
 PKGBUILD |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-01-16 01:33:59 UTC (rev 282866)
+++ PKGBUILD2018-01-16 01:35:05 UTC (rev 282867)
@@ -7,8 +7,9 @@
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('x86_64')
-url="https://wiki.gnome.org/Apps/Boxes;
+url="https://wiki.gnome.org/Boxes;
 license=('LGPL')
+groups=('gnome')
 depends=('cdrkit' 'gtk-vnc' 'libarchive' 'libgudev' 'libosinfo' 'libsecret' 
'tracker'
  'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3' 'libgovirt')
 makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 
'vala')


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

2017-11-22 Thread Balló György
Date: Wednesday, November 22, 2017 @ 14:09:59
  Author: bgyorgy
Revision: 268021

upgpkg: gnome-boxes 3.26.2-1

Update to new version

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-22 14:06:37 UTC (rev 268020)
+++ PKGBUILD2017-11-22 14:09:59 UTC (rev 268021)
@@ -3,8 +3,8 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.26.1
-pkgrel=2
+pkgver=3.26.2
+pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('x86_64')
 url="https://wiki.gnome.org/Apps/Boxes;
@@ -13,7 +13,7 @@
  'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3' 'libgovirt')
 makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 
'vala')
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver::4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('fc0d4479b076393caeeab22d9ae3247503b9eb15b6bfe8fdfab2f2435051fa58')
+sha256sums=('d00fc083182963dc1bbdee5e743ceb28ba03fbf5a9ea87c78d29dca5fb5b9210')
 
 build() {
   cd $pkgname-$pkgver


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

2017-10-16 Thread Jan Steffens
Date: Monday, October 16, 2017 @ 17:58:46
  Author: heftig
Revision: 263097

3.26.1-2

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 17:54:34 UTC (rev 263096)
+++ PKGBUILD2017-10-16 17:58:46 UTC (rev 263097)
@@ -4,13 +4,13 @@
 
 pkgname=gnome-boxes
 pkgver=3.26.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('i686' 'x86_64')
 url="https://wiki.gnome.org/Apps/Boxes;
 license=('LGPL')
-depends=('cdrkit' 'gtk-vnc' 'libarchive' 'libgudev' 'libosinfo' 'libsecret' 
'libtracker-sparql'
- 'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3')
+depends=('cdrkit' 'gtk-vnc' 'libarchive' 'libgudev' 'libosinfo' 'libsecret' 
'tracker'
+ 'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3' 'libgovirt')
 makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 
'vala')
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver::4}/$pkgname-$pkgver.tar.xz)
 sha256sums=('fc0d4479b076393caeeab22d9ae3247503b9eb15b6bfe8fdfab2f2435051fa58')
@@ -18,7 +18,7 @@
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/$pkgname \
-  --disable-schemas-compile
+  --disable-schemas-compile --enable-vala
   make
 }
 


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

2017-10-15 Thread Balló György
Date: Sunday, October 15, 2017 @ 16:52:46
  Author: bgyorgy
Revision: 262942

upgpkg: gnome-boxes 3.26.1-1

Update to new version

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-15 16:51:08 UTC (rev 262941)
+++ PKGBUILD2017-10-15 16:52:46 UTC (rev 262942)
@@ -3,7 +3,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.24.0
+pkgver=3.26.1
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
  'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3')
 makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 
'vala')
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver::4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('7495ea7184b6ef650033daf6941328b785b22e522e8142b9d190575d215dec49')
+sha256sums=('fc0d4479b076393caeeab22d9ae3247503b9eb15b6bfe8fdfab2f2435051fa58')
 
 build() {
   cd $pkgname-$pkgver


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

2017-04-23 Thread Balló György
Date: Sunday, April 23, 2017 @ 07:20:35
  Author: bgyorgy
Revision: 224567

upgpkg: gnome-boxes 3.24.0-1

Update for GNOME 3.24

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-04-23 07:17:33 UTC (rev 224566)
+++ PKGBUILD2017-04-23 07:20:35 UTC (rev 224567)
@@ -3,7 +3,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.22.4
+pkgver=3.24.0
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
  'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3')
 makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 
'vala')
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver::4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('585a1c292010ebb479cb60e02621d01d450f84cdad82a61b7ce58a0218e1cff2')
+sha256sums=('7495ea7184b6ef650033daf6941328b785b22e522e8142b9d190575d215dec49')
 
 build() {
   cd $pkgname-$pkgver


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

2017-02-14 Thread Balló György
Date: Wednesday, February 15, 2017 @ 05:12:21
  Author: bgyorgy
Revision: 212492

upgpkg: gnome-boxes 3.22.4-1

Update to new version

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-02-15 04:10:09 UTC (rev 212491)
+++ PKGBUILD2017-02-15 05:12:21 UTC (rev 212492)
@@ -3,16 +3,17 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.22.3
+pkgver=3.22.4
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('i686' 'x86_64')
 url="https://wiki.gnome.org/Apps/Boxes;
 license=('LGPL')
-depends=('cdrkit' 'gtk-vnc' 'libarchive' 'libgudev' 'libosinfo' 
'libtracker-sparql' 'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3')
+depends=('cdrkit' 'gtk-vnc' 'libarchive' 'libgudev' 'libosinfo' 'libsecret' 
'libtracker-sparql'
+ 'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3')
 makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 
'vala')
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver::4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('90f9909946b67a0eac1322163f6260cea3d6b8a3f78db7c2071773aad1b627aa')
+sha256sums=('585a1c292010ebb479cb60e02621d01d450f84cdad82a61b7ce58a0218e1cff2')
 
 build() {
   cd $pkgname-$pkgver


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

2016-12-06 Thread Balló György
Date: Wednesday, December 7, 2016 @ 01:43:19
  Author: bgyorgy
Revision: 198232

upgpkg: gnome-boxes 3.22.3-1

Update to new version

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 01:27:28 UTC (rev 198231)
+++ PKGBUILD2016-12-07 01:43:19 UTC (rev 198232)
@@ -3,7 +3,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.22.1
+pkgver=3.22.3
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('cdrkit' 'gtk-vnc' 'libarchive' 'libgudev' 'libosinfo' 
'libtracker-sparql' 'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3')
 makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 
'vala')
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver::4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('be807d9336e96af6dea8f269a4b6dbbd3e9bb5fd135efc952aa2d62dde87b8ea')
+sha256sums=('90f9909946b67a0eac1322163f6260cea3d6b8a3f78db7c2071773aad1b627aa')
 
 build() {
   cd $pkgname-$pkgver


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

2016-10-10 Thread Balló György
Date: Monday, October 10, 2016 @ 10:20:04
  Author: bgyorgy
Revision: 191825

upgpkg: gnome-boxes 3.22.1-1

Update to new version

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-10 10:17:06 UTC (rev 191824)
+++ PKGBUILD2016-10-10 10:20:04 UTC (rev 191825)
@@ -3,7 +3,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.22.0
+pkgver=3.22.1
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('cdrkit' 'gtk-vnc' 'libarchive' 'libgudev' 'libosinfo' 
'libtracker-sparql' 'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3')
 makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 
'vala')
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver::4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('9f02e3032f8b6aaa77d9eab6aabe7fc09902be429e266ad9fd4185b94ac867ee')
+sha256sums=('be807d9336e96af6dea8f269a4b6dbbd3e9bb5fd135efc952aa2d62dde87b8ea')
 
 build() {
   cd $pkgname-$pkgver


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

2016-10-06 Thread Balló György
Date: Thursday, October 6, 2016 @ 16:16:06
  Author: bgyorgy
Revision: 191489

upgpkg: gnome-boxes 3.22.0-1

Update to new version

Modified:
  gnome-boxes/trunk/PKGBUILD

--+
 PKGBUILD |   12 +---
 1 file changed, 5 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-10-06 16:06:34 UTC (rev 191488)
+++ PKGBUILD2016-10-06 16:16:06 UTC (rev 191489)
@@ -3,23 +3,21 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.20.2
-pkgrel=2
+pkgver=3.22.0
+pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('i686' 'x86_64')
 url="https://wiki.gnome.org/Apps/Boxes;
 license=('LGPL')
-depends=('gtk-vnc' 'libarchive' 'libosinfo' 'libsoup' 'libvirt-glib'
- 'spice-gtk3' 'libtracker-sparql' 'qemu' 'cdrkit' 'mtools' 'dconf'
- 'libusb' 'libgudev')
+depends=('cdrkit' 'gtk-vnc' 'libarchive' 'libgudev' 'libosinfo' 
'libtracker-sparql' 'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3')
 makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 
'vala')
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver::4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('c0379ce1de9d2a43a6875cbe1f2ef7ef69161b284926d59c44246a9142130fc5')
+sha256sums=('9f02e3032f8b6aaa77d9eab6aabe7fc09902be429e266ad9fd4185b94ac867ee')
 
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/$pkgname \
-  --disable-schemas-compile --enable-smartcard
+  --disable-schemas-compile
   make
 }
 


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

2016-06-23 Thread Sergej Pupykin
Date: Thursday, June 23, 2016 @ 14:37:44
  Author: spupykin
Revision: 180822

upgpkg: gnome-boxes 3.20.2-2

upd

Modified:
  gnome-boxes/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-06-23 14:10:01 UTC (rev 180821)
+++ PKGBUILD2016-06-23 14:37:44 UTC (rev 180822)
@@ -4,7 +4,7 @@
 
 pkgname=gnome-boxes
 pkgver=3.20.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('i686' 'x86_64')
 url="https://wiki.gnome.org/Apps/Boxes;


[arch-commits] Commit in gnome-boxes/trunk (PKGBUILD gnome-boxes.install)

2016-05-09 Thread Jan Steffens
Date: Monday, May 9, 2016 @ 22:21:28
  Author: heftig
Revision: 174460

3.20.2-1

Modified:
  gnome-boxes/trunk/PKGBUILD
Deleted:
  gnome-boxes/trunk/gnome-boxes.install

-+
 PKGBUILD|5 ++---
 gnome-boxes.install |   12 
 2 files changed, 2 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-09 18:42:16 UTC (rev 174459)
+++ PKGBUILD2016-05-09 20:21:28 UTC (rev 174460)
@@ -3,7 +3,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.20.0
+pkgver=3.20.2
 pkgrel=1
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('i686' 'x86_64')
@@ -13,9 +13,8 @@
  'spice-gtk3' 'libtracker-sparql' 'qemu' 'cdrkit' 'mtools' 'dconf'
  'libusb' 'libgudev')
 makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 
'vala')
-install=$pkgname.install
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver::4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('fd9a72c39e2ab0cae39385830270dc88b5254667a4b95ac7ccf322a55b4677fb')
+sha256sums=('c0379ce1de9d2a43a6875cbe1f2ef7ef69161b284926d59c44246a9142130fc5')
 
 build() {
   cd $pkgname-$pkgver

Deleted: gnome-boxes.install
===
--- gnome-boxes.install 2016-05-09 18:42:16 UTC (rev 174459)
+++ gnome-boxes.install 2016-05-09 20:21:28 UTC (rev 174460)
@@ -1,12 +0,0 @@
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}


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

2016-04-08 Thread Balló György
Date: Friday, April 8, 2016 @ 15:55:27
  Author: bgyorgy
Revision: 169746

upgpkg: gnome-boxes 3.20.0-1

Update to new version

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-08 13:46:03 UTC (rev 169745)
+++ PKGBUILD2016-04-08 13:55:27 UTC (rev 169746)
@@ -3,24 +3,24 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.18.1
+pkgver=3.20.0
 pkgrel=1
-pkgdesc="Simple GNOME 3 application to access remote or virtual systems"
+pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('i686' 'x86_64')
 url="https://wiki.gnome.org/Apps/Boxes;
 license=('LGPL')
-depends=('clutter-gtk' 'gtk-vnc' 'libarchive' 'libosinfo' 'libsoup' 
'libvirt-glib'
+depends=('gtk-vnc' 'libarchive' 'libosinfo' 'libsoup' 'libvirt-glib'
  'spice-gtk3' 'libtracker-sparql' 'qemu' 'cdrkit' 'mtools' 'dconf'
- 'gnome-themes-standard' 'libusb' 'libgudev')
+ 'libusb' 'libgudev')
 makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 
'vala')
 install=$pkgname.install
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver::4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('0235d7f76cf3faa3889b302c743d608759e84506657ed4e374592c39f768fb2b')
+sha256sums=('fd9a72c39e2ab0cae39385830270dc88b5254667a4b95ac7ccf322a55b4677fb')
 
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/$pkgname \
-  --disable-static --disable-schemas-compile --enable-smartcard
+  --disable-schemas-compile --enable-smartcard
   make
 }
 


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

2015-10-13 Thread Jan Steffens
Date: Tuesday, October 13, 2015 @ 09:43:06
  Author: heftig
Revision: 143889

3.18.1

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-13 07:34:44 UTC (rev 143888)
+++ PKGBUILD2015-10-13 07:43:06 UTC (rev 143889)
@@ -3,7 +3,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.18.0
+pkgver=3.18.1
 pkgrel=1
 pkgdesc="Simple GNOME 3 application to access remote or virtual systems"
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 
'vala')
 install=$pkgname.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver::4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('ed2b442fc676bdfa47d6b6326836238c2c98af9725a91eb023784a3e692ae749')
+sha256sums=('0235d7f76cf3faa3889b302c743d608759e84506657ed4e374592c39f768fb2b')
 
 build() {
   cd $pkgname-$pkgver


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

2015-09-28 Thread Jan Steffens
Date: Monday, September 28, 2015 @ 21:37:07
  Author: heftig
Revision: 142119

3.18.0

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-28 19:36:35 UTC (rev 142118)
+++ PKGBUILD2015-09-28 19:37:07 UTC (rev 142119)
@@ -3,8 +3,8 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=3.16.2
-pkgrel=2
+pkgver=3.18.0
+pkgrel=1
 pkgdesc="Simple GNOME 3 application to access remote or virtual systems"
 arch=('i686' 'x86_64')
 url="https://wiki.gnome.org/Apps/Boxes;
@@ -15,7 +15,7 @@
 makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 
'vala')
 install=$pkgname.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver::4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('f5fecb1ba0769e2a3dbec31e6149fffbcbd59946e4dbab31fb3ec28a16e41995')
+sha256sums=('ed2b442fc676bdfa47d6b6326836238c2c98af9725a91eb023784a3e692ae749')
 
 build() {
   cd $pkgname-$pkgver


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

2015-06-19 Thread Evangelos Foutras
Date: Friday, June 19, 2015 @ 22:53:33
  Author: foutrelis
Revision: 135615

upgpkg: gnome-boxes 3.16.2-2

Rebuild for libgudev split.

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-19 20:49:30 UTC (rev 135614)
+++ PKGBUILD2015-06-19 20:53:33 UTC (rev 135615)
@@ -4,7 +4,7 @@
 
 pkgname=gnome-boxes
 pkgver=3.16.2
-pkgrel=1
+pkgrel=2
 pkgdesc=Simple GNOME 3 application to access remote or virtual systems
 arch=('i686' 'x86_64')
 url=https://wiki.gnome.org/Apps/Boxes;
@@ -11,7 +11,7 @@
 license=('LGPL')
 depends=('clutter-gtk' 'gtk-vnc' 'libarchive' 'libosinfo' 'libsoup' 
'libvirt-glib'
  'spice-gtk3' 'libtracker-sparql' 'qemu' 'cdrkit' 'mtools' 'dconf'
- 'gnome-themes-standard' 'libusb')
+ 'gnome-themes-standard' 'libusb' 'libgudev')
 makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 
'vala')
 install=$pkgname.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver::4}/$pkgname-$pkgver.tar.xz)


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

2015-05-12 Thread Jan Steffens
Date: Tuesday, May 12, 2015 @ 23:58:44
  Author: heftig
Revision: 133347

3.16.2

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-12 21:03:18 UTC (rev 133346)
+++ PKGBUILD2015-05-12 21:58:44 UTC (rev 133347)
@@ -3,7 +3,7 @@
 # Contributor: Stefano Facchini stefano.facch...@gmail.com
 
 pkgname=gnome-boxes
-pkgver=3.16.1
+pkgver=3.16.2
 pkgrel=1
 pkgdesc=Simple GNOME 3 application to access remote or virtual systems
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 
'vala')
 install=$pkgname.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver::4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('41efae4e6906c9f4b687d996cb07316e71dbdae6f619a497801ab26557e8480d')
+sha256sums=('f5fecb1ba0769e2a3dbec31e6149fffbcbd59946e4dbab31fb3ec28a16e41995')
 
 build() {
   cd $pkgname-$pkgver


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

2015-04-13 Thread Jan Steffens
Date: Tuesday, April 14, 2015 @ 03:31:01
  Author: heftig
Revision: 131333

3.16.1

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 00:53:33 UTC (rev 131332)
+++ PKGBUILD2015-04-14 01:31:01 UTC (rev 131333)
@@ -3,7 +3,7 @@
 # Contributor: Stefano Facchini stefano.facch...@gmail.com
 
 pkgname=gnome-boxes
-pkgver=3.16.0
+pkgver=3.16.1
 pkgrel=1
 pkgdesc=Simple GNOME 3 application to access remote or virtual systems
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 
'vala')
 install=$pkgname.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver::4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('fe17de6431b7645816ab2b1f0f15733ed18a96fef39571bf1af00702e5b82136')
+sha256sums=('41efae4e6906c9f4b687d996cb07316e71dbdae6f619a497801ab26557e8480d')
 
 build() {
   cd $pkgname-$pkgver


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

2015-03-29 Thread Jan Steffens
Date: Monday, March 30, 2015 @ 03:15:46
  Author: heftig
Revision: 130220

3.16.0

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-29 21:36:19 UTC (rev 130219)
+++ PKGBUILD2015-03-30 01:15:46 UTC (rev 130220)
@@ -3,7 +3,7 @@
 # Contributor: Stefano Facchini stefano.facch...@gmail.com
 
 pkgname=gnome-boxes
-pkgver=3.14.3.1
+pkgver=3.16.0
 pkgrel=1
 pkgdesc=Simple GNOME 3 application to access remote or virtual systems
 arch=('i686' 'x86_64')
@@ -11,11 +11,11 @@
 license=('LGPL')
 depends=('clutter-gtk' 'gtk-vnc' 'libarchive' 'libosinfo' 'libsoup' 
'libvirt-glib'
  'spice-gtk3' 'libtracker-sparql' 'qemu' 'cdrkit' 'mtools' 'dconf'
- 'gnome-themes-standard')
+ 'gnome-themes-standard' 'libusb')
 makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 
'vala')
 install=$pkgname.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/3.14/$pkgname-$pkgver.tar.xz)
-sha256sums=('048df41ce1bcece1d89dfddcb571ed17dfa7f614929cd63f3079d14c66c10f24')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver::4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('fe17de6431b7645816ab2b1f0f15733ed18a96fef39571bf1af00702e5b82136')
 
 build() {
   cd $pkgname-$pkgver


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

2015-03-08 Thread Balló György
Date: Sunday, March 8, 2015 @ 19:57:19
  Author: bgyorgy
Revision: 128936

upgpkg: gnome-boxes 3.14.3.1-1

Update to version 3.14.3.1

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-08 18:48:20 UTC (rev 128935)
+++ PKGBUILD2015-03-08 18:57:19 UTC (rev 128936)
@@ -3,7 +3,7 @@
 # Contributor: Stefano Facchini stefano.facch...@gmail.com
 
 pkgname=gnome-boxes
-pkgver=3.14.2
+pkgver=3.14.3.1
 pkgrel=1
 pkgdesc=Simple GNOME 3 application to access remote or virtual systems
 arch=('i686' 'x86_64')
@@ -14,8 +14,8 @@
  'gnome-themes-standard')
 makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 
'vala')
 install=$pkgname.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('7bfa27a4575c3b84e5818358cc554bc1385ef717aaecdb3d7d48c34b0451ea31')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/3.14/$pkgname-$pkgver.tar.xz)
+sha256sums=('048df41ce1bcece1d89dfddcb571ed17dfa7f614929cd63f3079d14c66c10f24')
 
 build() {
   cd $pkgname-$pkgver


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

2014-11-12 Thread Jan Steffens
Date: Wednesday, November 12, 2014 @ 22:35:08
  Author: heftig
Revision: 122471

3.14.2

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-12 21:17:34 UTC (rev 122470)
+++ PKGBUILD2014-11-12 21:35:08 UTC (rev 122471)
@@ -3,7 +3,7 @@
 # Contributor: Stefano Facchini stefano.facch...@gmail.com
 
 pkgname=gnome-boxes
-pkgver=3.14.1
+pkgver=3.14.2
 pkgrel=1
 pkgdesc=Simple GNOME 3 application to access remote or virtual systems
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 
'vala')
 install=$pkgname.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('940d2d64f605e85cc070847ba2976a55a69329b76479cc085cc465cb9a8a1d72')
+sha256sums=('7bfa27a4575c3b84e5818358cc554bc1385ef717aaecdb3d7d48c34b0451ea31')
 
 build() {
   cd $pkgname-$pkgver


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

2014-10-17 Thread Balló György
Date: Friday, October 17, 2014 @ 21:35:20
  Author: bgyorgy
Revision: 120921

upgpkg: gnome-boxes 3.14.1-1

Update to version 3.14.1

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-17 19:29:33 UTC (rev 120920)
+++ PKGBUILD2014-10-17 19:35:20 UTC (rev 120921)
@@ -3,7 +3,7 @@
 # Contributor: Stefano Facchini stefano.facch...@gmail.com
 
 pkgname=gnome-boxes
-pkgver=3.14.0
+pkgver=3.14.1
 pkgrel=1
 pkgdesc=Simple GNOME 3 application to access remote or virtual systems
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 
'vala')
 install=$pkgname.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('97d3543b3686737246b4b5791ad70b5358a299050ad9e58ae708a123c142945d')
+sha256sums=('940d2d64f605e85cc070847ba2976a55a69329b76479cc085cc465cb9a8a1d72')
 
 build() {
   cd $pkgname-$pkgver


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

2014-09-26 Thread Balló György
Date: Friday, September 26, 2014 @ 23:39:45
  Author: bgyorgy
Revision: 119632

upgpkg: gnome-boxes 3.14.0-1

Update to version 3.14.0

Modified:
  gnome-boxes/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-26 20:48:18 UTC (rev 119631)
+++ PKGBUILD2014-09-26 21:39:45 UTC (rev 119632)
@@ -3,19 +3,19 @@
 # Contributor: Stefano Facchini stefano.facch...@gmail.com
 
 pkgname=gnome-boxes
-pkgver=3.12.3
+pkgver=3.14.0
 pkgrel=1
 pkgdesc=Simple GNOME 3 application to access remote or virtual systems
 arch=('i686' 'x86_64')
 url=https://wiki.gnome.org/Apps/Boxes;
 license=('LGPL')
-depends=('clutter-gtk' 'gtk-vnc' 'libosinfo' 'libsoup' 'libvirt-glib' 
'spice-gtk3'
- 'libtracker-sparql' 'qemu' 'cdrkit' 'libcdio' 'mtools' 'dconf'
- 'gnome-icon-theme' 'gnome-themes-standard')
+depends=('clutter-gtk' 'gtk-vnc' 'libarchive' 'libosinfo' 'libsoup' 
'libvirt-glib'
+ 'spice-gtk3' 'libtracker-sparql' 'qemu' 'cdrkit' 'mtools' 'dconf'
+ 'gnome-themes-standard')
 makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 
'vala')
 install=$pkgname.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('bf57525106baaa635d08a4a4c6ed81e4b8c8708897f2fe7c2623810aec9b6408')
+sha256sums=('97d3543b3686737246b4b5791ad70b5358a299050ad9e58ae708a123c142945d')
 
 build() {
   cd $pkgname-$pkgver


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

2014-06-30 Thread Balló György
Date: Monday, June 30, 2014 @ 15:59:38
  Author: bgyorgy
Revision: 113793

upgpkg: gnome-boxes 3.12.3-1

Update to version 3.12.3

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-06-30 13:57:50 UTC (rev 113792)
+++ PKGBUILD2014-06-30 13:59:38 UTC (rev 113793)
@@ -3,7 +3,7 @@
 # Contributor: Stefano Facchini stefano.facch...@gmail.com
 
 pkgname=gnome-boxes
-pkgver=3.12.2
+pkgver=3.12.3
 pkgrel=1
 pkgdesc=Simple GNOME 3 application to access remote or virtual systems
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 
'vala')
 install=$pkgname.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('88d52ba44eba27aa1b546fb648e291d0b7b7bc3df948efd6d44ac7342782ed4f')
+sha256sums=('bf57525106baaa635d08a4a4c6ed81e4b8c8708897f2fe7c2623810aec9b6408')
 
 build() {
   cd $pkgname-$pkgver



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

2014-05-24 Thread Balló György
Date: Saturday, May 24, 2014 @ 16:01:37
  Author: bgyorgy
Revision: 111780

upgpkg: gnome-boxes 3.12.2-1

Update to version 3.12.2

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-24 09:48:52 UTC (rev 111779)
+++ PKGBUILD2014-05-24 14:01:37 UTC (rev 111780)
@@ -3,7 +3,7 @@
 # Contributor: Stefano Facchini stefano.facch...@gmail.com
 
 pkgname=gnome-boxes
-pkgver=3.12.1
+pkgver=3.12.2
 pkgrel=1
 pkgdesc=Simple GNOME 3 application to access remote or virtual systems
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 
'vala')
 install=$pkgname.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('b5e27756a9c485ce2dea3f8eae867b6c7be70862b16cc44f9b55d86dd633bb83')
+sha256sums=('88d52ba44eba27aa1b546fb648e291d0b7b7bc3df948efd6d44ac7342782ed4f')
 
 build() {
   cd $pkgname-$pkgver