From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id C32CB138CD8 for ; Thu, 4 Jun 2015 17:07:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6BB07E0850; Thu, 4 Jun 2015 17:07:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 13F72E0850 for ; Thu, 4 Jun 2015 17:07:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 63D41340CDC for ; Thu, 4 Jun 2015 17:07:18 +0000 (UTC) Received: by oystercatcher.gentoo.org (Postfix, from userid 2078) id 5BF19A19; Thu, 4 Jun 2015 17:07:16 +0000 (UTC) From: "Jeroen Roovers (jer)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, jer@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/iprutils/files: iprupdate iprutils-2.4.7-tinfo.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: iprupdate iprutils-2.4.7-tinfo.patch X-VCS-Directories: sys-fs/iprutils/files X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20150604170716.5BF19A19@oystercatcher.gentoo.org> Date: Thu, 4 Jun 2015 17:07:16 +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-Archives-Salt: 5642e2cb-ee85-4c8b-a1f1-f4562264350b X-Archives-Hash: 8e62e74237bdb6847ca312d85d406544 jer 15/06/04 17:07:16 Modified: iprupdate Added: iprutils-2.4.7-tinfo.patch Log: Version bump (bug #532488). Fix a bashism (bug #526268). Fix building against sys-libs/ncurses[tinfo] (bug #457530). Add USE=static-libs. (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key A792A613) Revision Changes Path 1.2 sys-fs/iprutils/files/iprupdate file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/iprutils/files/iprupdate?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/iprutils/files/iprupdate?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/iprutils/files/iprupdate?r1=1.1&r2=1.2 Index: iprupdate =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-fs/iprutils/files/iprupdate,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- iprupdate 22 Aug 2005 17:53:08 -0000 1.1 +++ iprupdate 4 Jun 2015 17:07:16 -0000 1.2 @@ -6,6 +6,6 @@ start() { ebegin "Checking ipr microcode levels" - /sbin/iprupdate &> /dev/null + /sbin/iprupdate 2>&1 > /dev/null eend $? "Failed to complete ipr microcode updates" } 1.1 sys-fs/iprutils/files/iprutils-2.4.7-tinfo.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/iprutils/files/iprutils-2.4.7-tinfo.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/iprutils/files/iprutils-2.4.7-tinfo.patch?rev=1.1&content-type=text/plain Index: iprutils-2.4.7-tinfo.patch =================================================================== --- a/configure.ac +++ b/configure.ac @@ -30,7 +30,10 @@ AC_CHECK_LIB([menu], [new_menu], [], [AC_ERROR("libmenu not found.")]) AC_CHECK_LIB([panel], [show_panel], [], [AC_ERROR("libpanel not found.")]) AC_CHECK_LIB([ncurses], [curses_version], [], - [AC_ERROR("libncurses not found.")]) + AC_CHECK_LIB([tinfo], [curses_version], [], + [AC_ERROR("libncurses not found.")])) +AC_CHECK_LIB([ncurses], [wnoutrefresh], [], + [AC_ERROR("libncurses not found.")]) # Checks for header files. AC_CHECK_HEADERS([fcntl.h libintl.h locale.h netinet/in.h nl_types.h \