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

/usr/portage/www-misc/profile-sync-daemon/profile-sync-daemon-9999.ebuild 2024-07-02 13:51:49.465851596 +0300
1 1
# Copyright 1999-2024 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5

  
6
inherit git-r3
5 7

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

  
10 12
LICENSE="MIT"
11 13
SLOT="0"
12
KEYWORDS="amd64 x86"
13 14

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

  
19
src_install() {
20
	emake DESTDIR="${D}" COMPRESS_MAN=0 install
21
}
22

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