hasufell 14/06/02 18:09:33 Modified: hexchat-9999.ebuild hexchat-2.10.0.ebuild ChangeLog Log: hide warning if there are no plugins selected (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key BDEED020)
Revision Changes Path 1.14 net-irc/hexchat/hexchat-9999.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-9999.ebuild?rev=1.14&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-9999.ebuild?rev=1.14&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-9999.ebuild?r1=1.13&r2=1.14 Index: hexchat-9999.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-irc/hexchat/hexchat-9999.ebuild,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- hexchat-9999.ebuild 2 Jun 2014 18:06:05 -0000 1.13 +++ hexchat-9999.ebuild 2 Jun 2014 18:09:33 -0000 1.14 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/hexchat-9999.ebuild,v 1.13 2014/06/02 18:06:05 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/hexchat-9999.ebuild,v 1.14 2014/06/02 18:09:33 hasufell Exp $ EAPI=5 @@ -59,10 +59,12 @@ use plugin-fishlim && myplugins+="plugin-fishlim\n" use plugin-sysinfo && myplugins+="plugin-sysinfo\n" - ewarn "The following plugins/interfaces have been disabled, because" - ewarn "\"plugins\" USE flag is disabled. Check metadata.xml" - ewarn "to get more information or run \"equery u hexchat\"." - ewarn "\n${myplugins}" + if [[ ${myplugins} ]] ; then + ewarn "The following plugins/interfaces have been disabled, because" + ewarn "\"plugins\" USE flag is disabled. Check metadata.xml" + ewarn "to get more information or run \"equery u hexchat\"." + ewarn "\n${myplugins}" + fi fi } 1.2 net-irc/hexchat/hexchat-2.10.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.10.0.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.10.0.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.10.0.ebuild?r1=1.1&r2=1.2 Index: hexchat-2.10.0.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-irc/hexchat/hexchat-2.10.0.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- hexchat-2.10.0.ebuild 2 Jun 2014 18:06:05 -0000 1.1 +++ hexchat-2.10.0.ebuild 2 Jun 2014 18:09:33 -0000 1.2 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/hexchat-2.10.0.ebuild,v 1.1 2014/06/02 18:06:05 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/hexchat-2.10.0.ebuild,v 1.2 2014/06/02 18:09:33 hasufell Exp $ EAPI=5 @@ -58,10 +58,12 @@ use plugin-fishlim && myplugins+="plugin-fishlim\n" use plugin-sysinfo && myplugins+="plugin-sysinfo\n" - ewarn "The following plugins/interfaces have been disabled, because" - ewarn "\"plugins\" USE flag is disabled. Check metadata.xml" - ewarn "to get more information or run \"equery u hexchat\"." - ewarn "\n${myplugins}" + if [[ ${myplugins} ]] ; then + ewarn "The following plugins/interfaces have been disabled, because" + ewarn "\"plugins\" USE flag is disabled. Check metadata.xml" + ewarn "to get more information or run \"equery u hexchat\"." + ewarn "\n${myplugins}" + fi fi } 1.100 net-irc/hexchat/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?rev=1.100&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?rev=1.100&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?r1=1.99&r2=1.100 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v retrieving revision 1.99 retrieving revision 1.100 diff -u -r1.99 -r1.100 --- ChangeLog 2 Jun 2014 18:06:05 -0000 1.99 +++ ChangeLog 2 Jun 2014 18:09:33 -0000 1.100 @@ -1,6 +1,10 @@ # ChangeLog for net-irc/hexchat # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v 1.99 2014/06/02 18:06:05 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v 1.100 2014/06/02 18:09:33 hasufell Exp $ + + 02 Jun 2014; Julian Ospald <[email protected]> hexchat-2.10.0.ebuild, + hexchat-9999.ebuild: + hide warning if there are no plugins selected *hexchat-2.10.0 (02 Jun 2014)
