Package Details: fractal-git 1:5.beta1.r6.g5816bdbb-2

Git Clone URL: https://aur.archlinux.org/fractal-git.git (read-only, click to copy)
Package Base: fractal-git
Description: Matrix messaging app for GNOME written in Rust
Upstream URL: https://gitlab.gnome.org/GNOME/fractal
Keywords: chat gnome matrix
Licenses: GPL3
Conflicts: fractal
Provides: fractal, fractal-next
Replaces: fractal-next
Submitter: None
Maintainer: xiretza
Last Packager: xiretza
Votes: 13
Popularity: 0.025629
First Submitted: 2017-11-20 13:54 (UTC)
Last Updated: 2023-05-18 11:00 (UTC)

Latest Comments

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

bergentroll commented on 2019-01-08 11:32 (UTC)

FalkAlexander, this PKGBUILD should contains the next lines: conflicts: fractal provides: fractal

Also there is seems a lost dependency: gtksourceview3.

<deleted-account> commented on 2018-11-22 00:01 (UTC)

Please add the "libhandy" (AUR) package to the dependencies. Otherwise, the libhandy-sys crate won't compile.

GergelyPolonkai commented on 2018-10-31 09:55 (UTC)

I get this error when trying to install:

[0/1] Generating cargo-build with a custom command. RELEASE MODE Updating git repository <https://github.com/jhaye/secret-service-rs> warning: spurious network error (2 tries remaining): failed to create temporary file '/pack_git2_yBsmu6': Permission denied; class=Os (2) warning: spurious network error (1 tries remaining): failed to create temporary file '/pack_git2_SKe9Dq': Permission denied; class=Os (2) error: failed to resolve patches for <https://github.com/rust-lang/crates.io-index>

Caused by: failed to load source for a dependency on secret-service

Caused by: Unable to update https://github.com/jhaye/secret-service-rs?rev=3c265527e43376fe8e00ddfa645a70813c35f449#3c265527

Caused by: failed to fetch into /home/polesz/.cache/pikaur/build/fractal-git/src/fractal/_build/../target/cargo-home/git/db/secret-service-rs-01981c315b35682b

Caused by: failed to create temporary file '/pack_git2_SR2bHR': Permission denied; class=Os (2) FAILED: fractal /home/polesz/.cache/pikaur/build/fractal-git/src/fractal/scripts/cargo.sh .. fractal /usr/share/locale org.gnome.Fractal '' 3.30.0 '' ninja: build stopped: subcommand failed.

s.pantaleev commented on 2018-10-12 14:34 (UTC)

libhandy needs to be added to the depends list (it's both a compile-time and runtime dependency).

Gamma commented on 2018-09-24 19:21 (UTC) (edited on 2018-09-26 23:44 (UTC) by Gamma)

Needs dependency: gtksourceview3

(e: both make and regular depend)

svito commented on 2018-09-21 01:45 (UTC)

There is a typo in 'conflics' (missing 't').

Official GNOME packages have also switched to arch-meson wrapper script [1], albeit this is not documented yet in GNOME packaging guidelines :/

[1] https://git.archlinux.org/svntogit/community.git/commit/trunk/PKGBUILD?h=packages/fractal&id=a711272

Thanks for the package, and see you later :)

christianbundy commented on 2018-04-25 16:08 (UTC)

For the lazy who just want the package to work:

diff --git a/PKGBUILD b/PKGBUILD
index 464f67e..444396b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,19 +2,19 @@

 pkgname=fractal-git
 _gitname=fractal
-pkgver=r563.b26ffa9
-pkgrel=2
+pkgver=r582.d6145e8
+pkgrel=1
 pkgdesc="Matrix.org gtk+ client"
 arch=('i686' 'x86_64')
 license=('GPL3')
 url="https://gitlab.gnome.org/World/fractal"
 depends=('gtk3')
 makedepends=('gtk3' 'rust' 'pkg-config' 'git' 'meson')
-source=("https://gitlab.gnome.org/World/fractal.git")
+source=("git+https://gitlab.gnome.org/World/fractal.git")
 md5sums=('SKIP')

 pkgver() {
-   cd "${_gitname}"
+   cd "${srcdir}/${_gitname}/"
    printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
 }

brainblasted commented on 2018-04-20 03:55 (UTC)

Another thing once that is fixed: The source needs to start with git+http:// rather than https:// or else it downloads rather than git clones, and the package cannot be built

brainblasted commented on 2018-04-19 21:42 (UTC)

Missing conflicts and provides fields. Also, pkgver does not generate. Try cd "${srcdir}/${_gitname}/" instead of cd "${_gitname}"

brainblasted commented on 2018-04-19 16:48 (UTC)

Because this is a package, the correct prefix would me /usr. /usr/local would be for user-installed software, rather than package manager installed software.