From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B9D03158086 for ; Wed, 20 Oct 2021 10:33:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0EE12E0825; Wed, 20 Oct 2021 10:33:40 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EBBA1E0825 for ; Wed, 20 Oct 2021 10:33:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F2D7F342DEA for ; Wed, 20 Oct 2021 10:33:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8EEDF10A for ; Wed, 20 Oct 2021 10:33:37 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1634726009.7a51d63c9b998e4aa55465bd094d989ef6681f1d.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/fcron/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/fcron/fcron-3.2.1-r7.ebuild sys-process/fcron/fcron-3.2.1-r8.ebuild sys-process/fcron/fcron-3.3.0_beta-r4.ebuild sys-process/fcron/fcron-3.3.0_beta-r5.ebuild X-VCS-Directories: sys-process/fcron/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7a51d63c9b998e4aa55465bd094d989ef6681f1d X-VCS-Branch: master Date: Wed, 20 Oct 2021 10:33:37 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 10184928-59d4-4cb2-986c-e50a91fd9a80 X-Archives-Hash: 87f50ec84eb9dde3baf9417d8244d68b commit: 7a51d63c9b998e4aa55465bd094d989ef6681f1d Author: Sam James gentoo org> AuthorDate: Wed Oct 20 10:33:21 2021 +0000 Commit: Sam James gentoo org> CommitDate: Wed Oct 20 10:33:29 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a51d63c sys-process/fcron: fix ver_test operator Closes: https://bugs.gentoo.org/818970 Signed-off-by: Sam James gentoo.org> sys-process/fcron/{fcron-3.2.1-r7.ebuild => fcron-3.2.1-r8.ebuild} | 2 +- .../fcron/{fcron-3.3.0_beta-r4.ebuild => fcron-3.3.0_beta-r5.ebuild} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-process/fcron/fcron-3.2.1-r7.ebuild b/sys-process/fcron/fcron-3.2.1-r8.ebuild similarity index 99% rename from sys-process/fcron/fcron-3.2.1-r7.ebuild rename to sys-process/fcron/fcron-3.2.1-r8.ebuild index 0d71756ff30..a9f01c0b081 100644 --- a/sys-process/fcron/fcron-3.2.1-r7.ebuild +++ b/sys-process/fcron/fcron-3.2.1-r8.ebuild @@ -206,7 +206,7 @@ pkg_postinst() { else local v for v in ${REPLACING_VERSIONS}; do - if ver_test "3.2.1" -le ${v}; then + if ver_test "3.2.1" -gt ${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-r4.ebuild b/sys-process/fcron/fcron-3.3.0_beta-r5.ebuild similarity index 99% rename from sys-process/fcron/fcron-3.3.0_beta-r4.ebuild rename to sys-process/fcron/fcron-3.3.0_beta-r5.ebuild index 857880e1ae4..07a27b00a82 100644 --- a/sys-process/fcron/fcron-3.3.0_beta-r4.ebuild +++ b/sys-process/fcron/fcron-3.3.0_beta-r5.ebuild @@ -210,7 +210,7 @@ pkg_postinst() { else local v for v in ${REPLACING_VERSIONS}; do - if ver_test "3.2.1" -le ${v}; then + if ver_test "3.2.1" -gt ${v}; then # This is an upgrade elog "fcron's default systab was updated since your last installation."