sys-process/fcron: fix unrecognised commands

Closes: https://bugs.gentoo.org/818970
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2021-10-20 07:30:14 +00:00
parent ae3c51fa77
commit e89d45212d
2 changed files with 4 additions and 4 deletions

View File

@@ -5,7 +5,7 @@ EAPI=7
WANT_AUTOMAKE="none"
inherit autotools cron flag-o-matic pam systemd
inherit autotools cron flag-o-matic pam systemd user-info
DESCRIPTION="A command scheduler with extended capabilities over cron and anacron"
HOMEPAGE="http://fcron.free.fr/"
@@ -206,7 +206,7 @@ pkg_postinst() {
else
local v
for v in ${REPLACING_VERSIONS}; do
if ! version_is_at_least "3.2.1" ${v}; then
if ver_test "3.2.1" -le ${v}; then
# This is an upgrade
elog "fcron's default systab was updated since your last installation."

View File

@@ -5,7 +5,7 @@ EAPI=7
WANT_AUTOMAKE="none"
inherit autotools cron flag-o-matic pam systemd
inherit autotools cron flag-o-matic pam systemd user-info
MY_PV="${PV/_beta/}"
MY_P="${PN}-${MY_PV}"
@@ -210,7 +210,7 @@ pkg_postinst() {
else
local v
for v in ${REPLACING_VERSIONS}; do
if ! version_is_at_least "3.2.1" ${v}; then
if ver_test "3.2.1" -le ${v}; then
# This is an upgrade
elog "fcron's default systab was updated since your last installation."