Diff profile-sync-daemon-6.35 with a profile-sync-daemon-6.50

/usr/portage/www-misc/profile-sync-daemon/profile-sync-daemon-6.50.ebuild 2025-07-29 16:22:17.956470324 +0300
1
# Copyright 1999-2024 Gentoo Authors
1
# Copyright 1999-2025 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6 6
DESCRIPTION="Symlinks and syncs browser profile dirs to RAM"
7
HOMEPAGE="https://wiki.archlinux.org/index.php/Profile-sync-daemon"
7
HOMEPAGE="https://wiki.archlinux.org/title/Profile-sync-daemon"
8 8
SRC_URI="https://github.com/graysky2/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
9 9

  
10 10
LICENSE="MIT"
......
14 14
RDEPEND="
15 15
	app-shells/bash
16 16
	net-misc/rsync[xattr]
17
	sys-apps/systemd"
17
	sys-apps/systemd
18
"
18 19

  
19 20
src_install() {
20 21
	emake DESTDIR="${D}" COMPRESS_MAN=0 install
......
23 24
pkg_postinst() {
24 25
	local replacing
25 26
	for replacing in ${REPLACING_VERSIONS}; do
26
		if [[ "$(ver_cut 1 "${replacing}")" == "5" ]]; then
27
		if [[ $(ver_cut 1 "${replacing}") -eq 5 ]]; then
27 28
			ewarn "${PN}-6 and later dropped OpenRC and /etc/psd.conf support"
28 29
			ewarn "See https://github.com/graysky2/profile-sync-daemon#note-for-version-6"
29 30
			break
Thank you!