diff options
author | Sam James <sam@gentoo.org> | 2021-10-20 07:30:14 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-10-20 07:30:14 +0000 |
commit | e89d45212dbf6a8656d22a0c687fc0c5ee5e4418 (patch) | |
tree | 5c815cee671604e7fc711f902d19a2d78e141081 /sys-process | |
parent | dev-perl/Number-Fraction: use BDEPEND (diff) | |
download | gentoo-e89d45212dbf6a8656d22a0c687fc0c5ee5e4418.tar.gz gentoo-e89d45212dbf6a8656d22a0c687fc0c5ee5e4418.tar.bz2 gentoo-e89d45212dbf6a8656d22a0c687fc0c5ee5e4418.zip |
sys-process/fcron: fix unrecognised commands
Closes: https://bugs.gentoo.org/818970
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-process')
-rw-r--r-- | sys-process/fcron/fcron-3.2.1-r7.ebuild (renamed from sys-process/fcron/fcron-3.2.1-r6.ebuild) | 4 | ||||
-rw-r--r-- | sys-process/fcron/fcron-3.3.0_beta-r4.ebuild (renamed from sys-process/fcron/fcron-3.3.0_beta-r3.ebuild) | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys-process/fcron/fcron-3.2.1-r6.ebuild b/sys-process/fcron/fcron-3.2.1-r7.ebuild index eee51e1d3c36..0d71756ff300 100644 --- a/sys-process/fcron/fcron-3.2.1-r6.ebuild +++ b/sys-process/fcron/fcron-3.2.1-r7.ebuild @@ -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." diff --git a/sys-process/fcron/fcron-3.3.0_beta-r3.ebuild b/sys-process/fcron/fcron-3.3.0_beta-r4.ebuild index 7af1483a4c8c..857880e1ae42 100644 --- a/sys-process/fcron/fcron-3.3.0_beta-r3.ebuild +++ b/sys-process/fcron/fcron-3.3.0_beta-r4.ebuild @@ -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." |