Package Details: snapd 2.66.1-1

Git Clone URL: https://aur.archlinux.org/snapd.git (read-only, click to copy)
Package Base: snapd
Description: Service and tools for management of snap packages.
Upstream URL: https://github.com/snapcore/snapd
Licenses: GPL3
Conflicts: snap-confine
Submitter: Barthalion
Maintainer: bboozzoo (zyga, mardy)
Last Packager: bboozzoo
Votes: 217
Popularity: 4.47
First Submitted: 2018-01-07 17:37 (UTC)
Last Updated: 2024-11-13 08:24 (UTC)

Pinned Comments

bboozzoo commented on 2018-10-25 11:56 (UTC) (edited on 2024-04-09 07:39 (UTC) by bboozzoo)

Package update notes

2.36

2.36 is the first release with AppArmor enabled by default on Arch.

If you do not have AppArmor enabled at boot there should be no functional changes visible.

If you wish to use snaps with Apparmor, first make sure that Apparmor is enabled during boot, see https://wiki.archlinux.org/index.php/AppArmor for details. After upgrading the package, you need to do the following steps:

  • Reload the profiles: systemctl restart apparmor.service
  • Restart snapd: systemctl restart snapd.service
  • Load profiles for snaps: systemctl enable --now snapd.apparmor.service
2.62

Since 2.62 snapd generated additional files describing the sandbox. The snapd service needs to be restarted after the update for snaps to continue working (unless the system is rebooted after the update, in which case no additional steps are needed). To restart, run systemctl restart snapd.service

Latest Comments

« First ‹ Previous 1 .. 15 16 17 18 19 20 21 22 23 24 25 Next › Last »

jezeklu commented on 2018-08-17 06:45 (UTC) (edited on 2018-08-17 06:46 (UTC) by jezeklu)

Hello @bboozzoo, there are missing dependencies in makedepends array - autoconf and automake. Thanks for completion.

gee commented on 2018-08-03 13:08 (UTC)

Hello,

until snapd builds with flto would you mind adding fno-lto to the flags since you already use them?

Thanks!

JayGatsby commented on 2018-06-26 22:10 (UTC)

thank you bboozzoo: I tried fixing it and messed with a bunch of settings not sure my machine would be the best to try to debug from... ended up removing snapd for now. believe that it had something to do with a symlink but couldn't figure out what needed to be changed. Again, thanks!

bboozzoo commented on 2018-06-25 05:46 (UTC)

@JayGatsby what do you mean by snaps no longer opening? Are snaps no longer being mounted?

Can you report this on https://forum.snapcraft.io/ and upload journalctl and SNAP_DEBUG=1 SNAP_CONFINE_DEBUG=1 snap run hello-world logs?

JayGatsby commented on 2018-06-24 18:45 (UTC)

snaps no longer opening for me - Wonding if this is something others are experiencing or isolated to my machine.

aimileus commented on 2018-06-24 06:04 (UTC)

@rplanchuelo, autoconf is part of the base-devel group. Packages in base-devel are assumed to be installed when building (AUR) packages, and should not be included as build dependencies.

https://wiki.archlinux.org/index.php/Arch_User_Repository#Prerequisites

rplanchuelo commented on 2018-06-23 05:20 (UTC) (edited on 2018-06-23 12:57 (UTC) by rplanchuelo)

I have problems with the last update:

/home/rober/.cache/aurman/snapd/PKGBUILD: línea 74: autoreconf: no se encontró la orden ==> ERROR: Se produjo un fallo en build(). Cancelando... 2018-06-23 07:19:24,818 - wrappers - makepkg - ERROR - makepkg query makepkg -cf --noconfirm failed

I'VE JUST FOUND THE SOLUTION: You have to install "autoconf" in orther to execute "autoreconf" (line 74). Maybe autoconf should be a dependencia.

bboozzoo commented on 2018-06-15 05:57 (UTC)

@ibrokemypie your current LDFLAGS setting appears to be incorrect. ld will be called like this: /usr/bin/ld .. -01 --sort-common --as-needed -z relro now, notice that now is passed without a preceding -z, making ld interpret it as an object file.

Can you edit your LDFLAGS to be: LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now" and build again?