1
0
Fork 0

app-misc/repositorg: PYTHON_COMPAT bump

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Horea Christian <chr@chymera.eu>
This commit is contained in:
Horea Christian 2022-07-11 01:20:19 -04:00
parent ae712de08a
commit c28f6355a4
No known key found for this signature in database
GPG Key ID: 161C0BE6255333D3
2 changed files with 12 additions and 5 deletions

View File

@ -1,9 +1,9 @@
# Copyright 1999-2020 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=(python3_{6..9})
PYTHON_COMPAT=(python3_{8..10})
inherit distutils-r1 systemd

View File

@ -1,9 +1,9 @@
# Copyright 1999-2020 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=(python3_{6..9})
PYTHON_COMPAT=(python3_{8..10})
inherit distutils-r1 git-r3 systemd
@ -14,7 +14,7 @@ EGIT_REPO_URI="https://github.com/TheChymera/repositorg"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS=""
KEYWORDS="~amd64 ~x86"
IUSE="systemd"
DEPEND="
@ -41,3 +41,10 @@ src_test() {
./"$i" || die "Test $i failed"
done
}
pkg_postinst() {
if use !systemd ; then
elog "To be able to run repositorg_uuid as your user (recommended), make a copy of the init script:"
elog " cp /etc/init.d/repositorg_uuid /etc/init.d/repositorg_uuid.<YOUR_USER_NAME>"
fi
}