Diff snapd-2.57.6 with a snapd-2.58

/usr/portage/app-containers/snapd/snapd-2.58.ebuild 2023-10-09 14:52:28.224368318 +0300
1
# Copyright 2020-2022 Gentoo Authors
1
# Copyright 2020-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=7
5 5

  
6
inherit autotools bash-completion-r1 flag-o-matic go-module linux-info readme.gentoo-r1 systemd xdg-utils
6
inherit autotools bash-completion-r1 flag-o-matic go-module linux-info readme.gentoo-r1 systemd tmpfiles xdg-utils
7 7

  
8 8
DESCRIPTION="Service and tools for management of snap packages"
9 9
HOMEPAGE="http://snapcraft.io/"
10 10

  
11 11
SRC_URI="https://github.com/snapcore/${PN}/releases/download/${PV}/${PN}_${PV}.vendor.tar.xz -> ${P}.tar.xz"
12 12
MY_PV=${PV}
13
KEYWORDS="~amd64"
13
KEYWORDS="amd64"
14 14

  
15 15
LICENSE="GPL-3 Apache-2.0 BSD BSD-2 LGPL-3-with-linking-exception MIT"
16 16
SLOT="0"
......
166 166
pkg_postinst() {
167 167
	readme.gentoo_print_elog
168 168
	xdg_desktop_database_update
169
	tmpfiles_process snapd.conf
169 170

  
170 171
	if use apparmor && [[ -z ${ROOT} && -e /sys/kernel/security/apparmor/profiles &&
171 172
		$(wc -l < /sys/kernel/security/apparmor/profiles) -gt 0 ]]; then
Thank you!