Package Details: geary-git 44.0.r86.gf39839a92-1

Git Clone URL: https://aur.archlinux.org/geary-git.git (read-only, click to copy)
Package Base: geary-git
Description: An email application built around conversations, for the GNOME 3 desktop.
Upstream URL: https://gitlab.gnome.org/GNOME/geary
Keywords: client email GNOME
Licenses: GPL3
Conflicts: geary
Submitter: emersion
Maintainer: letorbi
Last Packager: letorbi
Votes: 12
Popularity: 0.000000
First Submitted: 2015-08-31 14:59 (UTC)
Last Updated: 2023-12-22 10:36 (UTC)

Pinned Comments

letorbi commented on 2021-04-26 10:31 (UTC) (edited on 2021-04-26 10:33 (UTC) by letorbi)

Starting with 2021-04-28 (ca0deba) geary-git uses the build-profile "release" instead of "development". This causes a change in the names of the cache-, config- and databae-directories.

Rename the following directories, if you want to keep your old setup:

  • ~/.cache/geary-development -> ~/.cache/geary
  • ~/.config/geary-development -> ~/.config/geary
  • ~/.local/share/geary-development -> ~/.local/share/geary

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 Next › Last »

joelongjiamian commented on 2018-04-14 14:23 (UTC) (edited on 2018-04-14 14:23 (UTC) by joelongjiamian)

Package no longer builds:

==> Starting prepare()...
patching file CMakeLists.txt
patching file src/CMakeLists.txt
Hunk #1 succeeded at 517 (offset 9 lines).
patching file meson.build
Hunk #1 FAILED at 61.
1 out of 1 hunk FAILED -- saving rejects to file meson.build.rej

rafaelff commented on 2018-02-01 13:48 (UTC)

It seems enchant doesn't have support to vala (i.e. doesn't create .vapi files), so indeed that seems to be an obstacle for meson..

emersion commented on 2018-02-01 10:18 (UTC)

Tried using meson, but I've got issues with enchant, so I copied the official package's fix (still using CMake).

letorbi commented on 2018-01-29 11:08 (UTC) (edited on 2018-01-29 11:10 (UTC) by letorbi)

The Geary developers switched from CMake to Meson and have removed the old build-files. This package still uses CMake, so it won't build anymore, this is why I've flagged it as out-of-date

The fix would be to replace the old CMake instructions in the PKGBILD file with the corresponding Meson commands:

  1. ./configure --prefix=/usr ... with meson --prefix=/usr --buildtype=release builddir

  2. make with ninja -v -C builddir

  3. make install DESTDIR="$pkgdir" with DESTDIR="$pkgdir" ninja -v -C builddir install

With this changes geary-git builds on my system again. However, the configure options --disable-schemas-compile --disable-desktop-update --disable-icon-update have been dropped. Please write a comment, if you know how to apply them with Meson.

coxackie commented on 2018-01-26 16:54 (UTC) (edited on 2018-01-26 17:40 (UTC) by coxackie)

I get the following error during build:

PKGBUILD: line 26: ./configure: No such file or directory ==> ERROR: A failure occurred in build().

any ideas how to fix this?

emersion commented on 2017-10-10 07:12 (UTC)

@ZAKhan: This is a *-git package, doesn't need to be updated.

ZAKhan commented on 2017-10-10 06:00 (UTC)

Please update the package .. thanks new version .12 is released

emersion commented on 2017-09-30 15:18 (UTC)

@rafaelff: thanks! Updated the package.

rafaelff commented on 2017-09-26 22:27 (UTC)

@emersion: Two suggestions for your package: - Your install file runs commands already invoked by pacman hooks, so this file can be removed from this package. (See: https://wiki.archlinux.org/index.php/DeveloperWiki:Pacman_Hooks) - Add '--disable-schemas-compile --disable-desktop-update --disable-icon-update' flags to './configure' in order to disable unwanted behaviors (See: https://wiki.archlinux.org/index.php/GNOME_package_guidelines)