commit:     c87b6e191a7aafc90b474e737168f311c112f328
Author:     Justin Bronder <jsbronder <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 18 19:09:50 2016 +0000
Commit:     Justin Bronder <jsbronder <AT> gentoo <DOT> org>
CommitDate: Thu Aug 18 19:09:50 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c87b6e19

net-nntp/sabnzbd: REPLACING_VERSIONS is a list

Fixes #589500

Package-Manager: portage-2.2.28

 net-nntp/sabnzbd/sabnzbd-1.0.3.ebuild | 16 ++++++++++------
 1 file changed, 10 insertions(+), 6 deletions(-)

diff --git a/net-nntp/sabnzbd/sabnzbd-1.0.3.ebuild 
b/net-nntp/sabnzbd/sabnzbd-1.0.3.ebuild
index 2df677f..fd4a8a4 100644
--- a/net-nntp/sabnzbd/sabnzbd-1.0.3.ebuild
+++ b/net-nntp/sabnzbd/sabnzbd-1.0.3.ebuild
@@ -117,12 +117,16 @@ pkg_postinst() {
        einfo "As growl isn't default notification system on gentoo we disable 
it."
        einfo "By default notifications are forwarded to the 23053 port(gntp)."
 
-       if [ "$(get_major_version ${REPLACING_VERSIONS})" == "0" ]; then
-               echo
-               ewarn "Upgrading from ${PN}-0.x.y to ${PN}-1.x.y introduces 
incompatible changes"
-               ewarn "See http://wiki.sabnzbd.org/introducing-1-0-0.";
-               ewarn "In particular, you need to let your queue complete 
before restarting ${PN}"
-       fi
+       local replacing
+       for replacing in ${REPLACING_VERSIONS}; do
+               if [ "$(get_major_version ${replacing})" == "0" ]; then
+                       echo
+                       ewarn "Upgrading from ${PN}-0.x.y to ${PN}-1.x.y 
introduces incompatible changes"
+                       ewarn "See http://wiki.sabnzbd.org/introducing-1-0-0.";
+                       ewarn "In particular, you need to let your queue 
complete before restarting ${PN}"
+                       break
+               fi
+       done
 }
 
 pkg_postrm() {

Reply via email to