Search Criteria
Package Details: gnome-pie-git 316.6d9b7ba-1
Git Clone URL: | https://aur.archlinux.org/gnome-pie-git.git (read-only, click to copy) |
---|---|
Package Base: | gnome-pie-git |
Description: | A visual application launcher for gnome. |
Upstream URL: | https://github.com/Simmesimme/Gnome-Pie |
Licenses: | |
Submitter: | robertfoster |
Maintainer: | robertfoster |
Last Packager: | robertfoster |
Votes: | 16 |
Popularity: | 0.000000 |
First Submitted: | 2011-09-27 18:38 |
Last Updated: | 2017-11-18 19:22 |
Dependencies (14)
- bamf (bamf-ubuntu, bamf-ubuntu-bzr)
- cairo (cairo-infinality, cairo-infinality-remix, cairo-ubuntu, cairo-dfb, cairo-glesv2-bin, cairo-glesv3-bin, cairo-minimal, cairo-git)
- gdk-pixbuf2 (gdk-pixbuf2-git)
- gnome-menus
- gtk3 (gtk3-donnatella, gtk3-cosy, gtk3-adwaita-3-32-git, gtk3-mushrooms, gtk3-git, gtk3-ubuntu, gtk3-patched-filechooser-icon-view, gtk3-typeahead, gtk3-no_deadkeys_underline, gtk3-classic)
- hicolor-icon-theme (hicolor-icon-theme-git)
- libgee (libgee-git)
- libunique
- libunique3
- libxml2 (libxml2-linenum, libxml2-git)
- libxtst
- cmake (cmake-git) (make)
- git (git-git) (make)
- vala (vala0.42, vala0.44, vala-git) (make)
Latest Comments
1 2 Next › Last »
j1simon commented on 2016-10-13 11:53
[WARNING] Failed to find pie configuration file "pies.conf"! (This should only happen when Gnome-Pie is started for the first time...)
[WARNING] Failed to find settings file "gnome-pie.conf"! (This should only happen when Gnome-Pie is started for the first time...)
[MESSAGE] Welcome to Gnome-Pie 0.7.0!
[MESSAGE] Creating new configuration file in "/home/juan/.config/gnome-pie/pies.conf".
[1] 28233 segmentation fault (core dumped) gnome-pie
--------------------------
It doesn't work with Wayland: https://github.com/Simmesimme/Gnome-Pie/issues/112
ultraviolet commented on 2014-07-29 11:56
as stated below, bamf2 doesn't build properly anymore. however, this package works fine on my system using the regular bamf package (0.5 branch) in the official repos.
neoanima commented on 2013-04-30 05:47
CCLD libbamf.la
GISCAN Bamf-0.2.gir
cc: error: unrecognized command line option ‘--c-include=libbamf/libbamf.h’
Error while processing the source.
make[3]: *** [Bamf-0.2.gir] Error 1
make[3]: Leaving directory `/tmp/yaourt-tmp-eastasiax/aur-bamf2/src/bamf-0.2.122/build-gtk3/lib/libbamf'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/tmp/yaourt-tmp-eastasiax/aur-bamf2/src/bamf-0.2.122/build-gtk3/lib/libbamf'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/tmp/yaourt-tmp-eastasiax/aur-bamf2/src/bamf-0.2.122/build-gtk3'
make: *** [all] Error 2
Anonymous comment on 2013-03-18 18:08
i did install it and throw the segmentation fault(core dump) error. it worked using bamf2 istead of bamf
fuchs24 commented on 2012-06-24 07:41
Compiles now on vala 0.16 as well.
vinilox commented on 2012-05-23 13:55
Correct PKGBUILD is :
# Maintainer: M0Rf30
pkgname=gnome-pie-git
pkgver=20120328
pkgrel=1
pkgdesc="A visual application launcher for gnome."
arch=('i686' 'x86_64')
url="https://github.com/Simmesimme/Gnome-Pie"
license=('GPL')
depends=('gtk3' 'libunique3' 'gnome-menus' 'cairo' 'libgee' 'libxml2' 'libxtst' 'libunique' 'gdk-pixbuf2' 'hicolor-icon-theme' 'bamf')
makedepends=('gcc' 'vala-014' 'cmake' 'git')
install='gnome-pie-git.install'
_gitroot="git://github.com/Simmesimme/Gnome-Pie.git"
_gitname="Gnome-Pie"
build() {
cd $startdir/src
msg "Connecting to GIT server...."
if [ -d $startdir/src/$_gitname ] ; then
cd $_gitname && git pull origin
msg "The local files are updated."
else
git clone $_gitroot
fi
msg "GIT checkout done or server timeout"
cd $srcdir/${_gitname}
msg "Patch to use vala-0.14.2"
sed -i 's/NAMES valac/NAMES valac-0.14/' cmake/vala/FindVala.cmake
msg "Building gnome-pie"
mkdir -p build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
make
}
package() {
cd $srcdir/${_gitname}/build
make DESTDIR=${pkgdir} install
}
vinilox commented on 2012-05-23 13:39
Hey !
It's a problem with vala version which is to new. In the PKGBUILD replace vala by vala-014 ;)
Anthony25 commented on 2012-04-25 22:41
I get a bug during the install :
/var/abs/local/yaourtbuild/gnome-pie-git/src/Gnome-Pie/src/utilities//focusGrabber.vala:84.49-84.98: error: Invalid assignment from owned expression to unowned variable
unowned GLib.List<weak Gdk.Device?> list = manager.list_devices(Gdk.DeviceType.MASTER);
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
/var/abs/local/yaourtbuild/gnome-pie-git/src/Gnome-Pie/src/utilities//focusGrabber.vala:85.35-85.38: error: The name `list' does not exist in the context of `GnomePie.FocusGrabber.try_grab_window'
foreach(var device in list) {
^^^^
/var/abs/local/yaourtbuild/gnome-pie-git/src/Gnome-Pie/src/utilities//focusGrabber.vala:56.49-56.98: error: Invalid assignment from owned expression to unowned variable
unowned GLib.List<weak Gdk.Device?> list = manager.list_devices(Gdk.DeviceType.MASTER);
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
/var/abs/local/yaourtbuild/gnome-pie-git/src/Gnome-Pie/src/utilities//focusGrabber.vala:57.35-57.38: error: The name `list' does not exist in the context of `GnomePie.FocusGrabber.ungrab'
foreach(var device in list) {
^^^^
Compilation failed: 4 error(s), 0 warning(s)
make[2]: *** [src/deamon.c] Erreur 1
make[1]: *** [src/CMakeFiles/gnome-pie.dir/all] Erreur 2
make: *** [all] Erreur 2
nTia89 commented on 2012-04-01 11:53
please add: conflicts=('gnome-pie')
Anonymous comment on 2012-01-21 18:52
Version 0.4 has been released.