Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/torque/
Date: Fri, 22 May 2020 18:50:48
Message-Id: 1590173437.133b4c5bd87f478f8445cdc73d079617dcb0a66b.slyfox@gentoo
1 commit: 133b4c5bd87f478f8445cdc73d079617dcb0a66b
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 22 18:50:31 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Fri May 22 18:50:37 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=133b4c5b
7
8 sys-cluster/torque: use integer comparison, bug #705278
9
10 Use integer comparison instead of lexicographical one.
11
12 Bug: https://bugs.gentoo.org/705278
13 Package-Manager: Portage-2.3.99, Repoman-2.3.22
14 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
15
16 sys-cluster/torque/torque-4.2.10-r1.ebuild | 4 ++--
17 1 file changed, 2 insertions(+), 2 deletions(-)
18
19 diff --git a/sys-cluster/torque/torque-4.2.10-r1.ebuild b/sys-cluster/torque/torque-4.2.10-r1.ebuild
20 index bf8705f64b4..c992fb2b62c 100644
21 --- a/sys-cluster/torque/torque-4.2.10-r1.ebuild
22 +++ b/sys-cluster/torque/torque-4.2.10-r1.ebuild
23 @@ -1,4 +1,4 @@
24 -# Copyright 1999-2019 Gentoo Authors
25 +# Copyright 1999-2020 Gentoo Authors
26 # Distributed under the terms of the GNU General Public License v2
27
28 EAPI=6
29 @@ -184,7 +184,7 @@ pkg_postinst() {
30 fi
31 done
32 fi
33 - if [[ ${showmessage} > 0 ]]; then
34 + if [[ ${showmessage} -gt 0 ]]; then
35 elog "Important v4.x changes:"
36 elog " - The on-wire protocol version has been changed."
37 elog " Versions of Torque before 4.0.0 are no longer able to communicate."