From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 28 02:50:02 2008 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5129D1065670 for ; Wed, 28 May 2008 02:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2BF198FC12 for ; Wed, 28 May 2008 02:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m4S2o2f4086601 for ; Wed, 28 May 2008 02:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m4S2o1LK086593; Wed, 28 May 2008 02:50:01 GMT (envelope-from gnats) Resent-Date: Wed, 28 May 2008 02:50:01 GMT Resent-Message-Id: <200805280250.m4S2o1LK086593@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dmitry Frolov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 70C911065674 for ; Wed, 28 May 2008 02:46:15 +0000 (UTC) (envelope-from frol@mercury.riss-telecom.ru) Received: from mercury.riss-telecom.ru (mercury.riss-telecom.ru [80.66.66.3]) by mx1.freebsd.org (Postfix) with ESMTP id CEB508FC15 for ; Wed, 28 May 2008 02:46:14 +0000 (UTC) (envelope-from frol@mercury.riss-telecom.ru) Received: from mercury.riss-telecom.ru (localhost [127.0.0.1]) by mercury.riss-telecom.ru (8.13.8/8.13.8) with ESMTP id m4S2kBdo040886; Wed, 28 May 2008 09:46:11 +0700 (NOVST) (envelope-from frol@mercury.riss-telecom.ru) Received: (from frol@localhost) by mercury.riss-telecom.ru (8.13.8/8.13.8/Submit) id m4S2kBkL040885; Wed, 28 May 2008 09:46:11 +0700 (NOVST) (envelope-from frol) Message-Id: <200805280246.m4S2kBkL040885@mercury.riss-telecom.ru> Date: Wed, 28 May 2008 09:46:11 +0700 (NOVST) From: Dmitry Frolov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/124054: Update port: sysutils/freeipmi update to 0.6.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dmitry Frolov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2008 02:50:02 -0000 >Number: 124054 >Category: ports >Synopsis: Update port: sysutils/freeipmi update to 0.6.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed May 28 02:50:01 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Dmitry Frolov >Release: FreeBSD 6.2-PRERELEASE amd64 >Organization: RISS-Telecom >Environment: System: FreeBSD *******.riss-telecom.ru 6.2-PRERELEASE FreeBSD 6.2-PRERELEASE #1: Mon Sep 25 18:02:20 NOVST 2006 root@*******.riss-telecom.ru:/usr/obj/usr/src/sys/MERCURY amd64 >Description: - Update to version 0.6.3 >How-To-Repeat: >Fix: diff -u -ruN /usr/ports/sysutils/freeipmi/Makefile ./Makefile --- /usr/ports/sysutils/freeipmi/Makefile Sat May 17 04:11:45 2008 +++ ./Makefile Wed May 28 09:30:19 2008 @@ -7,10 +7,15 @@ # Available KNOBs: # # WITH_DEBUG - Enable debugging features. +# WITH_IOPERM - Use i386_set_ioperm(2) instead of io(4) to gain access +# to I/O ports (i386 only). Note: there is a bug in +# FreeBSD 5 before 5.5-RELEASE that causes SIGBUS to the +# process sometimes when i386_set_ioperm is used (PR +# 84842). # PORTNAME= freeipmi -PORTVERSION= 0.6.2 +PORTVERSION= 0.6.3 CATEGORIES= sysutils MASTER_SITES= ftp://ftp.zresearch.com/pub/freeipmi/${PORTVERSION}/ \ ftp://ftp.riss-telecom.ru/pub/mirrors/ftp.zresearch.com/pub/freeipmi/${PORTVERSION}/ @@ -67,12 +72,12 @@ BROKEN= missing getpw*_r functions in this FreeBSD release .endif -# Use i386_set_ioperm(2) instead of io(4) to gain access to I/O -# ports. Note: there is a bug in FreeBSD 5 before 5.5-RELEASE that -# causes SIGBUS to the process sometimes when i386_set_ioperm is used -# (PR 84842). -.if ${ARCH} == "i386" && defined(WITH_IOPERM) +.if defined(WITH_IOPERM) +.if ${ARCH} == "i386" CPPFLAGS+= -DUSE_IOPERM +.else +BROKEN= IOPERM option is only available on i386 and You are building for ${ARCH} +.endif .endif .if defined(WITH_DEBUG) diff -u -ruN /usr/ports/sysutils/freeipmi/distinfo ./distinfo --- /usr/ports/sysutils/freeipmi/distinfo Sat May 17 04:11:45 2008 +++ ./distinfo Wed May 28 09:36:45 2008 @@ -1,3 +1,3 @@ -MD5 (freeipmi-0.6.2.tar.gz) = ebf862b9de0a5da3ffaf9a5cc23d521f -SHA256 (freeipmi-0.6.2.tar.gz) = 97464858afbb32e922cbbf1771a3c9fa898eabe33da114609c026b8cae421c32 -SIZE (freeipmi-0.6.2.tar.gz) = 1664886 +MD5 (freeipmi-0.6.3.tar.gz) = 9e50c88cc128418fa314b1704fa207df +SHA256 (freeipmi-0.6.3.tar.gz) = 9b6b7e4b0e4cce45184c47b1e5932c2b6a6e60b2767b7e840a13b9822a5b359f +SIZE (freeipmi-0.6.3.tar.gz) = 1665606 >Release-Note: >Audit-Trail: >Unformatted: