From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 00:30:02 2009 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 9A1BA106568B for ; Sun, 29 Nov 2009 00:30: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 5CD578FC28 for ; Sun, 29 Nov 2009 00:30:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nAT0U1NH065351 for ; Sun, 29 Nov 2009 00:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nAT0U1T0065350; Sun, 29 Nov 2009 00:30:01 GMT (envelope-from gnats) Resent-Date: Sun, 29 Nov 2009 00:30:01 GMT Resent-Message-Id: <200911290030.nAT0U1T0065350@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, olli hauer Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 286EA106566C for ; Sun, 29 Nov 2009 00:21:49 +0000 (UTC) (envelope-from ohauer@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id 96B8E8FC13 for ; Sun, 29 Nov 2009 00:21:48 +0000 (UTC) Received: (qmail invoked by alias); 29 Nov 2009 00:21:46 -0000 Received: from u18-124.dsl.vianetworks.de (EHLO u18-124.dsl.vianetworks.de) [194.231.39.124] by mail.gmx.net (mp044) with SMTP; 29 Nov 2009 01:21:46 +0100 Received: by u18-124.dsl.vianetworks.de (Postfix, from userid 1100) id C5B8E2614B; Sun, 29 Nov 2009 01:21:41 +0100 (CET) Message-Id: <20091129002141.C5B8E2614B@u18-124.dsl.vianetworks.de> Date: Sun, 29 Nov 2009 01:21:41 +0100 (CET) From: olli hauer To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: ohauer@gmx.de Subject: ports/140983: [patch] port Mk/bsd.port.mk + bsd.rrd.mk X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: olli hauer List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 00:30:02 -0000 >Number: 140983 >Category: ports >Synopsis: [patch] Mk/bsd.port.mk + bsd.rrd.mk >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Nov 29 00:30:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: olli hauer >Release: >Organization: >Environment: >Description: Within the last RRD update to version 1.3.x a lot of depencies (most X) have to build. Most of the ports running fine even with rrdtool10 but this can not be configured without modify everytime port database/rrdtool (replace with older version) or patching every port to include anouther version. A solution is maybe to make this configurable with a USE_RRD variable in the port self. To make this work I wrote bsd.rrd.mk and extend bsd.ports.mk, so a port which use RRD can now be written in this form (see sample modification from mail/mailgraph) It is only important to set USE_RRD after RUN_DEPENDS! (hope I can attach more than one file) -- olli hauer >How-To-Repeat: compair build on fresh between rrdtool12 and rrdtool(13) >Fix: --- sample_for_rewritten_mail_mailgraph_Makefile.txt begins here --- --- mail/mailgraph/Makefile.orig 2008-06-24 14:34:52.000000000 +0200 +++ mail/mailgraph/Makefile 2009-11-29 00:39:38.000000000 +0100 @@ -15,11 +15,11 @@ MAINTAINER= rafan@FreeBSD.org COMMENT= A RRDtool frontend for Postfix statistics -RUN_DEPENDS= ${SITE_PERL}/RRDp.pm:${PORTSDIR}/databases/rrdtool \ - ${SITE_PERL}/File/Tail.pm:${PORTSDIR}/devel/p5-File-Tail +RUN_DEPENDS= ${SITE_PERL}/File/Tail.pm:${PORTSDIR}/devel/p5-File-Tail NO_BUILD= yes USE_PERL5= yes +USE_RRD= 10+ CGIDIR?= ${PREFIX}/www/cgi-bin DATADIR?= /var/db/mailgraph --- sample_for_rewritten_mail_mailgraph_Makefile.txt ends here --- --- patch_Mk_bsd.port.mk.txt begins here --- --- Mk/bsd.port.mk +++ Mk/bsd.port.mk @@ -1583,6 +1583,10 @@ .include "${PORTSDIR}/Mk/bsd.kde4.mk" .endif +.if defined(USE_RRD) +.include "${PORTSDIR}/Mk/bsd.rrd.mk" +.endif + # You can force skipping these test by defining IGNORE_PATH_CHECKS .if !defined(IGNORE_PATH_CHECKS) .if (${PREFIX:C,(^.).*,\1,} != "/") @@ -2076,6 +2080,10 @@ .include "${PORTSDIR}/Mk/bsd.cmake.mk" .endif +.if defined(USE_RRD) +.include "${PORTSDIR}/Mk/bsd.rrd.mk" +.endif + .if exists(${PORTSDIR}/../Makefile.inc) .include "${PORTSDIR}/../Makefile.inc" USE_SUBMAKE= yes --- patch_MK_bsd.port.mk.txt ends here --- --- patch_Mk_bsd.rrd.mk.txt begins here --- --- /dev/null 2009-11-29 00:52:27.000000000 +0100 +++ Mk/bsd.rrd.mk 2009-11-29 00:52:59.000000000 +0100 @@ -0,0 +1,114 @@ +#-*- mode: makefile; tab-width: 4; -*- +# ex:ts=4 +# +# $FreeBSD$ +# +# bsd.rrd.mk - rrdtool related macros. +# Author: olli hauer +# +# Please view me with 4 column tabs! + +########################################################################## +# +# Variables definition +# USE_RRD: Call this script. Values can be: +# : 1.0/10/1.2/12/1.3/1.3/1.0+/1.2+/1.3+ +# +# Note: Setting USE_RRD to "yes" will set RRD_PORT to database/rrdtool +# + + +.if !defined(RRD_Pre_Include) +RRD_Pre_Include= bsd.rrd.mk + +#RRD_PORT= rrdtool13 + +# Print warnings +_ERROR_MSG= : Error from bsd.rrd.mk. +RRD_SUPPORTED_VERSION= 10 12 13 +RRD_DEFAULT_VERSION= 13 + +# fallback to last version +.if ${USE_RRD:L} == yes +RRD_PORT?= database/rrdtool +USE_RRD= ${RRD_DEFAULT_VERSION} +.endif + +RRD_VERSION= ${USE_RRD:C/\.//} +RRD?= ${LOCALBASE}/bin/rrdtool + +.if exists(${RRD}) +RRD_INSTALLED_VERSION!= ${RRD} | ${SED} -ne 's/^RRDtool \([0-9]\)\.\([0-9]\)\.\([0-9][0-9]\).*/\1\2/p' +.endif + +.if defined(RRD_PORT) +STR_RRD_PORT= ${RRD_PORT:C/rrdtool//} +. if ${STR_RRD_PORT} != "" +. if ${STR_RRD_PORT} == "10" +RRD_CUR_VERSION= 10 +. elif ${STR_RRD_PORT} == "12" +RRD_CUR_VERSION= 12 +. elif ${STR_RRD_PORT} == "${RRD_DEFAULT_VERSION}" +RRD_CUR_VERSION= ${RRD_DEFAULT_VERSION} +. endif +. else +# only "rrdtool" is defined (without numeric prefix) +RRD_CUR_VERSION= ${RRD_DEFAULT_VERSION} +. endif +.endif + +# check if installed version match defined version in make.conf +.if defined(RRD_INSTALLED_VERSION) && defined(RRD_CUR_VERSION) +VERSION_CHECK!= eval `${ECHO_CMD} "[ ${RRD_INSTALLED_VERSION} -eq ${RRD_CUR_VERSION} ]" | ${SED} -e 's/- -eq/ -ge/ ; s/+ -eq/ -le/' ` ; ${ECHO_CMD} $${?} +. if ${VERSION_CHECK} == 1 +IGNORE= ${_ERROR_MSG} rrdtool${RRD_INSTALLED_VERSION} is installed but RRD_PORT rrdtool${RRD_CUR_VERSION} is defined (maybe in make.conf) +. endif +.endif + +# nothing defined in make.conf, use installed version +.if defined(RRD_INSTALLED_VERSION) && !defined(RRD_CUR_VERSION) +RRD_CUR_VERSION= ${RRD_INSTALLED_VERSION} +.endif + +# check if installed version match version the port wants +.if defined(RRD_CUR_VERSION) +VERSION_CHECK!= eval `${ECHO_CMD} "[ ${RRD_VERSION} -eq ${RRD_CUR_VERSION} ]" | ${SED} -e 's/- -eq/ -ge/ ; s/+ -eq/ -le/' ` ; ${ECHO_CMD} $${?} +. if ${VERSION_CHECK} == 1 +IGNORE= ${_ERROR_MSG} rrdtool${RRD_CUR_VERSION} is installed (or RRD_PORT is defined) and port requires ${USE_RRD} +. endif +RRD_VERSION= ${RRD_CUR_VERSION} +.else +RRD_CUR_VERSION= none +. if !defined(RRD_PORT) +#Fallback to smallest version... +RRD_VERSION= ${USE_RRD:C/\+//} +. endif +.endif + +# map RRD version to ports directory +.if ${RRD_VERSION} == 10 +RRD_PORT?= database/rrdttol${RRD_VERSION} +RUN_DEPENDS+= rrdtool10:${PORTSDIR}/databases/rrdtool10 + +.elif ${RRD_VERSION} == 12 +RRD_PORT?= database/rrdttol${RRD_VERSION} +RUN_DEPENDS+= rrdtool12:${PORTSDIR}/databases/rrdtool12 + +.elif ${RRD_VERSION} == ${RRD_DEFAULT_VERSION} +RRD_PORT?= database/rrdttol +RUN_DEPENDS+= rrdtool:${PORTSDIR}/databases/rrdtool + +.elif ${RRD_VERSION} >= ${RRD_DEFAULT_VERSION} +RRD_PORT?= database/rrdttol +RUN_DEPENDS+= rrdtool:${PORTSDIR}/databases/rrdtool + +.else +RRD_PORT?= database/rrdttol +RUN_DEPENDS+= rrdtool:${PORTSDIR}/databases/rrdtool +.endif + +.endif #!defined(RRD_Pre_Include) + +.if defined(_POSTMKINCLUDED) && !defined(RRD_Post_Include) +RRD_Post_Include= bsd.rrd.mk +.endif # defined(_POSTMKINCLUDED) && !defined(RRD_Post_Include) --- patch_MK_bsd.rrd.mk.txt ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 00:30:02 2009 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 D59F8106568F for ; Sun, 29 Nov 2009 00:30: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 99B5F8FC12 for ; Sun, 29 Nov 2009 00:30:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nAT0U2uB065370 for ; Sun, 29 Nov 2009 00:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nAT0U2As065364; Sun, 29 Nov 2009 00:30:02 GMT (envelope-from gnats) Resent-Date: Sun, 29 Nov 2009 00:30:02 GMT Resent-Message-Id: <200911290030.nAT0U2As065364@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, "Joseph S. Atkinson" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0B01C106566B for ; Sun, 29 Nov 2009 00:26:49 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id ED90B8FC16 for ; Sun, 29 Nov 2009 00:26:48 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id nAT0QmxK092106 for ; Sun, 29 Nov 2009 00:26:48 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id nAT0QmVT092092; Sun, 29 Nov 2009 00:26:48 GMT (envelope-from nobody) Message-Id: <200911290026.nAT0QmVT092092@www.freebsd.org> Date: Sun, 29 Nov 2009 00:26:48 GMT From: "Joseph S. Atkinson" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/140984: Fix running of audio/exaile when SVG support is absent X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 00:30:02 -0000 >Number: 140984 >Category: ports >Synopsis: Fix running of audio/exaile when SVG support is absent >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Nov 29 00:30:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Joseph S. Atkinson >Release: >Organization: >Environment: >Description: Exaile will build fine, but on invocation, if librsvg2 is not installed, will crash. This was supposed to be an optional depend, but didn't quite work out that way. This adds librsvg2.so.2 as a LIB_DEPEND. Bumps PORTREVISION so the package will be updated. Reported by lx@ >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ru /usr/ports/audio/exaile/Makefile exaile/Makefile --- /usr/ports/audio/exaile/Makefile 2009-11-28 18:43:35.000000000 -0500 +++ exaile/Makefile 2009-11-28 19:15:41.000000000 -0500 @@ -7,6 +7,7 @@ PORTNAME= exaile DISTVERSION= 0.3.0.2 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= http://launchpadlibrarian.net/35452349/ \ http://wickedmachine.net/mirror/ @@ -14,6 +15,7 @@ MAINTAINER= jsa@wickedmachine.net COMMENT= A full featured python-based music player for GTK+ +LIB_DEPENDS= rsvg-2.2:${PORTSDIR}/graphics/librsvg2 RUN_DEPENDS= py*-mutagen>=1.11:${PORTSDIR}/audio/py-mutagen USE_GNOME= pygtk2 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 00:30:13 2009 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 D22521065695; Sun, 29 Nov 2009 00:30:13 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A8D098FC1C; Sun, 29 Nov 2009 00:30:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nAT0UDR4066720; Sun, 29 Nov 2009 00:30:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nAT0UDdW066710; Sun, 29 Nov 2009 00:30:13 GMT (envelope-from edwin) Date: Sun, 29 Nov 2009 00:30:13 GMT Message-Id: <200911290030.nAT0UDdW066710@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/140983: [patch] Mk/bsd.port.mk + bsd.rrd.mk X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 00:30:13 -0000 Synopsis: [patch] Mk/bsd.port.mk + bsd.rrd.mk Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: edwin Responsible-Changed-When: Sun Nov 29 00:30:12 UTC 2009 Responsible-Changed-Why: bsd.port.mk is portmgr territory (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=140983 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 01:30:03 2009 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 8C1EA106566B for ; Sun, 29 Nov 2009 01:30:03 +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 79FCC8FC0C for ; Sun, 29 Nov 2009 01:30:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nAT1U3ch017191 for ; Sun, 29 Nov 2009 01:30:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nAT1U3eY017188; Sun, 29 Nov 2009 01:30:03 GMT (envelope-from gnats) Date: Sun, 29 Nov 2009 01:30:03 GMT Message-Id: <200911290130.nAT1U3eY017188@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Mikhail T." Cc: Subject: Re: ports/140978: [patch] port lang/tclX fix build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Mikhail T." List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 01:30:03 -0000 The following reply was made to PR ports/140978; it has been noted by GNATS. From: "Mikhail T." To: bug-followup@FreeBSD.org, ohauer@gmx.de Cc: Subject: Re: ports/140978: [patch] port lang/tclX fix build Date: Sat, 28 Nov 2009 20:29:39 -0500 Thanks for the report, Olli! I personally stopped never used TclX' "help files" and so, unfortunately, allowed things to bit-rot... When the lang/tcl8x maintainers changed the name of the interpreter's man-page (from tclsh.1 to tclshVERSION.1), tclX broke... How about the attached patch? It is looking for each man-page under both names: page and pageVERSION... I also incorporated your point regarding resources (not present under 8.5 and above) and a similar point regarding lset. Let me know, if this works for you, and I'll commit it. Thanks! Yours, -mi From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 01:30:04 2009 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 4DDB51065672 for ; Sun, 29 Nov 2009 01:30:04 +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 0F2718FC13 for ; Sun, 29 Nov 2009 01:30:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nAT1U3uM017233 for ; Sun, 29 Nov 2009 01:30:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nAT1U36W017230; Sun, 29 Nov 2009 01:30:03 GMT (envelope-from gnats) Resent-Date: Sun, 29 Nov 2009 01:30:03 GMT Resent-Message-Id: <200911290130.nAT1U36W017230@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, "Pedro F. Giffuni" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3EB651065670 for ; Sun, 29 Nov 2009 01:29:44 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 13D748FC08 for ; Sun, 29 Nov 2009 01:29:44 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id nAT1Th7e057581 for ; Sun, 29 Nov 2009 01:29:43 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id nAT1ThWr057580; Sun, 29 Nov 2009 01:29:43 GMT (envelope-from nobody) Message-Id: <200911290129.nAT1ThWr057580@www.freebsd.org> Date: Sun, 29 Nov 2009 01:29:43 GMT From: "Pedro F. Giffuni" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/140987: Minor update in math/mumps to version 4.8.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 01:30:04 -0000 >Number: 140987 >Category: ports >Synopsis: Minor update in math/mumps to version 4.8.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Nov 29 01:30:03 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Pedro F. Giffuni >Release: 8.0-RELEASE >Organization: >Environment: $ uname -a FreeBSD mogwai.giffuni.net 8.0-RELEASE FreeBSD 8.0-RELEASE #0: Sat Nov 21 15:48:17 UTC 2009 root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: * Absolute threshold criterion for null pivot detection added to CNTL(3) * Problems related to messages "Increase small buffer size ..." solved. * New option for ICNTL(8) to scale matrices. Default scaling cheaper to compute * Problem of filename clash with unsymmetric matrices on Windows platforms solved * Allow for longer filenames for temporary OOC files * Strategy to update blocksize during factorization of frontal matrices modified to avoid too large messages during pipelined factorization (that could lead to a -17 error code) * Messages corresponding to delayed pivots can now be sent in several packets. This avoids some other cases of error -17 * One rare case of deadlock solved * Corrected values and sign of INFO(8) and INFO(20) >How-To-Repeat: >Fix: diff -ruN mumps.orig/Makefile mumps/Makefile --- mumps.orig/Makefile 2009-11-28 19:55:53.000000000 +0000 +++ mumps/Makefile 2009-11-28 20:23:25.000000000 +0000 @@ -6,8 +6,7 @@ # PORTNAME= mumps -PORTVERSION= 4.8.3 -PORTREVISION= 3 +PORTVERSION= 4.8.4 CATEGORIES= math MASTER_SITES= http://mumps.enseeiht.fr/ \ http://graal.ens-lyon.fr/MUMPS/ \ diff -ruN mumps.orig/distinfo mumps/distinfo --- mumps.orig/distinfo 2009-11-28 19:55:53.000000000 +0000 +++ mumps/distinfo 2009-11-28 20:23:52.000000000 +0000 @@ -1,3 +1,3 @@ -MD5 (MUMPS_4.8.3.tar.gz) = db34f11bbe0f7c461cabebb230f23c23 -SHA256 (MUMPS_4.8.3.tar.gz) = f82c990acec0479764c1c2a446c83da97ffcbab0725db2da5aa2cbd53207fd6a -SIZE (MUMPS_4.8.3.tar.gz) = 1999766 +MD5 (MUMPS_4.8.4.tar.gz) = 4b80e8ecff2b43473dc885b0b7120313 +SHA256 (MUMPS_4.8.4.tar.gz) = cda022a12ce632ae753dcffc06411b2569647fafa01db947cc6a280d465acb2d +SIZE (MUMPS_4.8.4.tar.gz) = 2007524 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 01:40:03 2009 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 D9585106566B for ; Sun, 29 Nov 2009 01:40:03 +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 ADA748FC12 for ; Sun, 29 Nov 2009 01:40:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nAT1e36h026837 for ; Sun, 29 Nov 2009 01:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nAT1e3mM026836; Sun, 29 Nov 2009 01:40:03 GMT (envelope-from gnats) Date: Sun, 29 Nov 2009 01:40:03 GMT Message-Id: <200911290140.nAT1e3mM026836@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Mikhail T." Cc: Subject: Re: ports/140978: [patch] port lang/tclX fix build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Mikhail T." List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 01:40:04 -0000 The following reply was made to PR ports/140978; it has been noted by GNATS. From: "Mikhail T." To: bug-followup@FreeBSD.org, ohauer@gmx.de Cc: Subject: Re: ports/140978: [patch] port lang/tclX fix build Date: Sat, 28 Nov 2009 20:31:05 -0500 This is a multi-part message in MIME format. --------------040601050009060906020204 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit The patch... -mi --------------040601050009060906020204 Content-Type: text/plain; name="tclX-man-fix.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="tclX-man-fix.patch" Index: Makefile =================================================================== RCS file: /home/pcvs/ports/lang/tclX/Makefile,v retrieving revision 1.64 diff -U 2 -r1.64 Makefile --- Makefile 27 Nov 2009 07:35:40 -0000 1.64 +++ Makefile 29 Nov 2009 01:24:14 -0000 @@ -62,4 +62,12 @@ .if ${TCL_VER} > 8.4 EXTRA_PATCHES+= ${FILESDIR}/tcl85-test-patch +PLIST_SUB+= BELOW_85='@comment ' +.else +PLIST_SUB+= BELOW_85='' +.endif +.if ${TCL_VER} > 8.3 +PLIST_SUB+= ABOVE_83='' +.else +PLIST_SUB+= ABOVE_83='@comment ' .endif Index: pkg-plist =================================================================== RCS file: /home/pcvs/ports/lang/tclX/pkg-plist,v retrieving revision 1.19 diff -U 2 -r1.19 pkg-plist --- pkg-plist 27 Jun 2006 23:23:19 -0000 1.19 +++ pkg-plist 29 Nov 2009 01:24:14 -0000 @@ -82,5 +82,5 @@ %%PORTDOCS%%lib/tclx%%TCLX_VER%%/help/tcl/files/recursive_glob %%PORTDOCS%%lib/tclx%%TCLX_VER%%/help/tcl/files/registry -%%PORTDOCS%%lib/tclx%%TCLX_VER%%/help/tcl/files/resource +%%PORTDOCS%%%%BELOW_85%%lib/tclx%%TCLX_VER%%/help/tcl/files/resource %%PORTDOCS%%lib/tclx%%TCLX_VER%%/help/tcl/files/seek %%PORTDOCS%%lib/tclx%%TCLX_VER%%/help/tcl/files/select @@ -133,5 +133,5 @@ %%PORTDOCS%%lib/tclx%%TCLX_VER%%/help/tcl/lists/lrmdups %%PORTDOCS%%lib/tclx%%TCLX_VER%%/help/tcl/lists/lsearch -%%PORTDOCS%%lib/tclx%%TCLX_VER%%/help/tcl/lists/lset +%%PORTDOCS%%%%ABOVE_83%%lib/tclx%%TCLX_VER%%/help/tcl/lists/lset %%PORTDOCS%%lib/tclx%%TCLX_VER%%/help/tcl/lists/lsort %%PORTDOCS%%lib/tclx%%TCLX_VER%%/help/tcl/lists/lvarcat Index: files/patch-af =================================================================== RCS file: /home/pcvs/ports/lang/tclX/files/patch-af,v retrieving revision 1.4 diff -U 2 -r1.4 patch-af --- files/patch-af 26 Mar 2007 17:11:37 -0000 1.4 +++ files/patch-af 29 Nov 2009 01:24:14 -0000 @@ -1,4 +1,4 @@ ---- ./unix/tools/bldmanhelp.tcl.orig Thu Dec 2 21:33:05 2004 -+++ ./unix/tools/bldmanhelp.tcl Sun Mar 25 17:07:36 2007 +--- unix/tools/bldmanhelp.tcl 2004-12-02 15:33:05.000000000 -0500 ++++ unix/tools/bldmanhelp.tcl 2009-11-28 16:41:13.000000000 -0500 @@ -11,10 +11,9 @@ # @@ -13,7 +13,9 @@ # entries describing manual pages to convert. Each entry is a list # of manual file and the path of the help file to generate. -@@ -69,17 +68,32 @@ +@@ -68,18 +67,41 @@ + proc CopyManPage {manPage outFH} { global skipSection ++ global tcl_version - set stat [catch { @@ -25,5 +27,12 @@ + } + set manPage [file rootname $manPage] -+ set manPage [split [exec man -w $section $manPage] ":)"] ++ if {[catch {exec man -w $section $manPage} page] && ++ [catch {exec man -w $section $manPage$tcl_version} page]} { ++ global gotErrors ++ set gotErrors 1 ++ puts stderr "can't find man-page for \"$manPage\": $page" ++ return ++ } ++ set manPage [split $page ":)"] + if {[llength $manPage] > 1} { # Get the source, not from cat + set manPage [string trim [lindex $manPage 1]] @@ -50,5 +59,5 @@ CopyManPage [lindex $line 1] $outFH } -@@ -119,11 +133,10 @@ +@@ -119,11 +141,10 @@ # for input to buildhelp. # @@ -63,5 +72,5 @@ foreach ent $manInfoTbl { puts stdout " preprocessing $ent" -@@ -144,13 +157,12 @@ +@@ -144,13 +165,12 @@ set tmpFile "bldmanhelp.tmp" --------------040601050009060906020204-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 01:50:02 2009 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 8E0B01065676 for ; Sun, 29 Nov 2009 01: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 4FBD68FC14 for ; Sun, 29 Nov 2009 01:50:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nAT1o1qe034899 for ; Sun, 29 Nov 2009 01:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nAT1o19F034898; Sun, 29 Nov 2009 01:50:01 GMT (envelope-from gnats) Resent-Date: Sun, 29 Nov 2009 01:50:01 GMT Resent-Message-Id: <200911290150.nAT1o19F034898@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, "Joseph S. Atkinson" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 03EF6106566B for ; Sun, 29 Nov 2009 01:49:49 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id E655B8FC18 for ; Sun, 29 Nov 2009 01:49:48 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id nAT1nm2L071137 for ; Sun, 29 Nov 2009 01:49:48 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id nAT1nmSF071136; Sun, 29 Nov 2009 01:49:48 GMT (envelope-from nobody) Message-Id: <200911290149.nAT1nmSF071136@www.freebsd.org> Date: Sun, 29 Nov 2009 01:49:48 GMT From: "Joseph S. Atkinson" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/140988: Remove IGNORE from net-im/pidgin-facebookchat X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 01:50:02 -0000 >Number: 140988 >Category: ports >Synopsis: Remove IGNORE from net-im/pidgin-facebookchat >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: Sun Nov 29 01:50:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Joseph S. Atkinson >Release: >Organization: >Environment: >Description: json-glib 0.8.2 now in ports, the port can now be unIGNOREd. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ru /usr/ports/net-im/pidgin-facebookchat/Makefile pidgin-facebookchat/Makefile --- /usr/ports/net-im/pidgin-facebookchat/Makefile 2009-11-15 10:56:51.000000000 -0500 +++ pidgin-facebookchat/Makefile 2009-11-28 20:44:36.000000000 -0500 @@ -24,11 +24,6 @@ PIXMAPS_DIR= ${PREFIX}/share/pixmaps/pidgin/protocols -IGNORE= known usability issue with json-glib <0.7.6, use NO_IGNORE to build\ - anyway. See http://code.google.com/p/pidgin-facebookchat/wiki/FAQ\ - and http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/140097 for\ - json-glib 0.7.6 - do-patch: ${REINPLACE_CMD} -e "s#i686-pc-freebsd6.0-gcc#${CC}#; \ s#/usr/local/#${LOCALBASE}/#g; \ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 05:20:01 2009 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 AC180106566B for ; Sun, 29 Nov 2009 05:20:01 +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 8A9D28FC0A for ; Sun, 29 Nov 2009 05:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nAT5K1gF023267 for ; Sun, 29 Nov 2009 05:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nAT5K1WB023266; Sun, 29 Nov 2009 05:20:01 GMT (envelope-from gnats) Resent-Date: Sun, 29 Nov 2009 05:20:01 GMT Resent-Message-Id: <200911290520.nAT5K1WB023266@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, Denny Lin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 94AAE1065670 for ; Sun, 29 Nov 2009 05:17:06 +0000 (UTC) (envelope-from dennylin93@cnmc32.hs.ntnu.edu.tw) Received: from mx.hs.ntnu.edu.tw (mx.hs.ntnu.edu.tw [140.131.149.2]) by mx1.freebsd.org (Postfix) with ESMTP id 15C228FC0A for ; Sun, 29 Nov 2009 05:17:05 +0000 (UTC) Received: by mx.hs.ntnu.edu.tw (Postfix, from userid 1002) id 50F166FC437; Sun, 29 Nov 2009 13:17:04 +0800 (CST) Message-Id: <20091129051704.50F166FC437@mx.hs.ntnu.edu.tw> Date: Sun, 29 Nov 2009 13:17:04 +0800 (CST) From: Denny Lin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/140990: [UPDATE] Patches to update chinese/scim-tables to 0.5.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Denny Lin List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 05:20:01 -0000 >Number: 140990 >Category: ports >Synopsis: [UPDATE] Patches to update chinese/scim-tables to 0.5.9 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Nov 29 05:20:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Denny Lin >Release: FreeBSD 7.2-RELEASE-p4 amd64 >Organization: >Environment: System: FreeBSD cnmc32.hs.ntnu.edu.tw 7.2-RELEASE-p4 FreeBSD 7.2-RELEASE-p4 #0: Mon Oct 26 19:41:45 CST 2009 root@cnmc32.hs.ntnu.edu.tw:/usr/obj/usr/src/sys/CNMC32 amd64 >Description: Patches to update chinese/scim-tables to 0.5.9. >How-To-Repeat: >Fix: --- Makefile.patch begins here --- --- ports/chinese/scim-tables/Makefile.orig 2009-11-29 12:33:12.000000000 +0800 +++ ports/chinese/scim-tables/Makefile 2009-11-29 12:52:51.000000000 +0800 @@ -6,8 +6,7 @@ # PORTNAME= scim-tables -PORTVERSION= 0.5.7 -PORTREVISION= 3 +PORTVERSION= 0.5.9 CATEGORIES= chinese MASTER_SITES= SF/scim/${PORTNAME}/${PORTVERSION} --- Makefile.patch ends here --- --- distinfo.patch begins here --- --- ports/chinese/scim-tables/distinfo.orig 2009-11-29 13:13:34.000000000 +0800 +++ ports/chinese/scim-tables/distinfo 2009-11-29 13:14:31.000000000 +0800 @@ -1,3 +1,3 @@ -MD5 (scim-tables-0.5.7.tar.gz) = 58d7f7dd231d73ef179e072b3124ebac -SHA256 (scim-tables-0.5.7.tar.gz) = a2d3620fff8fd8964f31bcc4e8b609418d9cbd0a102eaad5e31ff48620d34c14 -SIZE (scim-tables-0.5.7.tar.gz) = 6979417 +MD5 (scim-tables-0.5.9.tar.gz) = ef7d54966d0b07b1db49358213558065 +SHA256 (scim-tables-0.5.9.tar.gz) = 78105611d327cc82fe65bf7d588e0eabc9e1bede0d1c18d98e02318bab5d23d4 +SIZE (scim-tables-0.5.9.tar.gz) = 7256429 --- distinfo.patch ends here --- --- patch-icons-Makefile.in.patch begins here --- --- ports/chinese/scim-tables/files/patch-icons-Makefile.in.orig 2009-11-29 13:05:53.000000000 +0800 +++ ports/chinese/scim-tables/files/patch-icons-Makefile.in 2009-11-29 12:41:21.000000000 +0800 @@ -1,8 +1,8 @@ ---- icons/Makefile.in.orig Mon Apr 30 09:52:23 2007 -+++ icons/Makefile.in Mon Apr 30 09:54:19 2007 -@@ -234,12 +234,7 @@ - sysconfdir = @sysconfdir@ - target_alias = @target_alias@ +--- icons/Makefile.in.orig 2009-11-29 12:36:47.000000000 +0800 ++++ icons/Makefile.in 2009-11-29 12:38:04.000000000 +0800 +@@ -229,12 +229,7 @@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in -INST_ICONS = table.png \ - Amharic.png \ @@ -14,7 +14,7 @@ CangJie.png \ CangJie3.png \ Cantonese.png \ -@@ -251,37 +246,12 @@ +@@ -246,39 +241,12 @@ Erbi.png \ Erbi-QS.png \ EZ.png \ @@ -31,11 +31,13 @@ - Kannada-kgp.png \ - LaTeX.png \ - Malayalam-inscript.png \ +- Malayalam-phonetic.png \ - Nepali.png \ - Nippon.png \ - Punjabi-inscript.png \ - Punjabi-jhelum.png \ - Punjabi-phonetic.png \ +- RussianTraditional.png \ Simplex.png \ - Tamil-inscript.png \ - Tamil-phonetic.png \ --- patch-icons-Makefile.in.patch ends here --- --- patch-tables-Makefile.in.patch begins here --- --- ports/chinese/scim-tables/files/patch-tables-Makefile.in.orig 2009-11-29 12:44:00.000000000 +0800 +++ ports/chinese/scim-tables/files/patch-tables-Makefile.in 2009-11-29 12:43:41.000000000 +0800 @@ -1,10 +1,10 @@ ---- tables/Makefile.in.orig Mon Apr 30 09:55:09 2007 -+++ tables/Makefile.in Mon Apr 30 09:55:31 2007 -@@ -234,7 +234,7 @@ - target_alias = @target_alias@ +--- tables/Makefile.in.orig 2009-11-29 12:43:01.000000000 +0800 ++++ tables/Makefile.in 2009-11-29 12:43:27.000000000 +0800 +@@ -232,7 +232,7 @@ + top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in CLEANFILES = *.bak --SUBDIRS = additional am ar bn gu hi ja kn ko ml ne pa ru ta te th vi zh +-SUBDIRS = additional am ar bn gu hi ja kn ko ml ne pa ru ta te th vi zh uk +SUBDIRS = zh all: all-recursive --- patch-tables-Makefile.in.patch ends here --- --- patch-tables-zh-Makefile.in.patch begins here --- --- ports/chinese/scim-tables/files/patch-tables-zh-Makefile.in.orig 2007-05-01 02:36:36.000000000 +0800 +++ ports/chinese/scim-tables/files/patch-tables-zh-Makefile.in 2009-11-29 12:48:27.000000000 +0800 @@ -1,9 +1,9 @@ ---- tables/zh/Makefile.in.old Mon Apr 30 09:56:00 2007 -+++ tables/zh/Makefile.in Mon Apr 30 09:56:30 2007 -@@ -247,7 +247,7 @@ - subdirs = @subdirs@ - sysconfdir = @sysconfdir@ - target_alias = @target_alias@ +--- tables/zh/Makefile.in.orig 2009-11-29 12:47:28.000000000 +0800 ++++ tables/zh/Makefile.in 2009-11-29 12:47:46.000000000 +0800 +@@ -242,7 +242,7 @@ + top_build_prefix = @top_build_prefix@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ -SCIM_MAKE_TABLE = $(top_builddir)/src/scim-make-table +SCIM_MAKE_TABLE = scim-make-table scim_tables_source = \ --- patch-tables-zh-Makefile.in.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 05:20:14 2009 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 EF73B106566B; Sun, 29 Nov 2009 05:20:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C60B98FC0C; Sun, 29 Nov 2009 05:20:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nAT5KELT024233; Sun, 29 Nov 2009 05:20:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nAT5KEoq024228; Sun, 29 Nov 2009 05:20:14 GMT (envelope-from edwin) Date: Sun, 29 Nov 2009 05:20:14 GMT Message-Id: <200911290520.nAT5KEoq024228@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lx@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/140990: [UPDATE] Patches to update chinese/scim-tables to 0.5.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 05:20:15 -0000 Synopsis: [UPDATE] Patches to update chinese/scim-tables to 0.5.9 Responsible-Changed-From-To: freebsd-ports-bugs->lx Responsible-Changed-By: edwin Responsible-Changed-When: Sun Nov 29 05:20:14 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=140990 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 06:10:01 2009 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 D3E48106566B for ; Sun, 29 Nov 2009 06:10:01 +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 98BDE8FC14 for ; Sun, 29 Nov 2009 06:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nAT6A0rb065331 for ; Sun, 29 Nov 2009 06:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nAT6A04k065330; Sun, 29 Nov 2009 06:10:00 GMT (envelope-from gnats) Resent-Date: Sun, 29 Nov 2009 06:10:00 GMT Resent-Message-Id: <200911290610.nAT6A04k065330@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, Denny Lin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 64FCE106566C for ; Sun, 29 Nov 2009 06:07:46 +0000 (UTC) (envelope-from dennylin93@cnmc32.hs.ntnu.edu.tw) Received: from mx.hs.ntnu.edu.tw (mx.hs.ntnu.edu.tw [140.131.149.2]) by mx1.freebsd.org (Postfix) with ESMTP id 1379A8FC13 for ; Sun, 29 Nov 2009 06:07:45 +0000 (UTC) Received: by mx.hs.ntnu.edu.tw (Postfix, from userid 1002) id 380C96FC437; Sun, 29 Nov 2009 14:07:45 +0800 (CST) Message-Id: <20091129060745.380C96FC437@mx.hs.ntnu.edu.tw> Date: Sun, 29 Nov 2009 14:07:45 +0800 (CST) From: Denny Lin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/140991: [UPDATE] Patch to update chinese/libchewing to 0.3.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Denny Lin List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 06:10:02 -0000 >Number: 140991 >Category: ports >Synopsis: [UPDATE] Patch to update chinese/libchewing to 0.3.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Nov 29 06:10:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Denny Lin >Release: FreeBSD 7.2-RELEASE-p4 amd64 >Organization: >Environment: System: FreeBSD cnmc32.hs.ntnu.edu.tw 7.2-RELEASE-p4 FreeBSD 7.2-RELEASE-p4 #0: Mon Oct 26 19:41:45 CST 2009 root@cnmc32.hs.ntnu.edu.tw:/usr/obj/usr/src/sys/CNMC32 amd64 >Description: Update chinese/libchewing to 0.3.2. The patches in chinese/libchewing/files have to be removed. They are no longer necessry. I've built and tested this port, but I'm not 100% sure it's ok. >How-To-Repeat: >Fix: --- Makefile.patch begins here --- --- ports/chinese/libchewing/Makefile.orig 2009-11-29 13:29:51.000000000 +0800 +++ ports/chinese/libchewing/Makefile 2009-11-29 13:34:05.000000000 +0800 @@ -6,8 +6,7 @@ # PORTNAME= libchewing -PORTVERSION= 0.3.0 -PORTREVISION= 1 +PORTVERSION= 0.3.2 CATEGORIES= chinese textproc MASTER_SITES= http://chewing.csie.net/download/libchewing/ @@ -17,6 +16,7 @@ USE_GNOME= gnomehack pkgconfig GNU_CONFIGURE= yes USE_LDCONFIG= yes +USE_BZIP2= yes DATADIR= ${PREFIX}/share/chewing --- Makefile.patch ends here --- --- distinfo.patch begins here --- --- ports/chinese/libchewing/distinfo.orig 2009-11-29 13:29:47.000000000 +0800 +++ ports/chinese/libchewing/distinfo 2009-11-29 13:34:17.000000000 +0800 @@ -1,3 +1,3 @@ -MD5 (libchewing-0.3.0.tar.gz) = d60bdc2b3f81b70963cd01a93049a8e3 -SHA256 (libchewing-0.3.0.tar.gz) = f7247eb82af9ba67c03964153a6df3694568358d9161c4a60b03aec5c1f0d98c -SIZE (libchewing-0.3.0.tar.gz) = 2172069 +MD5 (libchewing-0.3.2.tar.bz2) = ef70745ffdf199aa17e533427c63499f +SHA256 (libchewing-0.3.2.tar.bz2) = 056327f562b4cc2b95f7c5bb409398c0dfe58f3b5b6861bc6d2768776e170f15 +SIZE (libchewing-0.3.2.tar.bz2) = 1802842 --- distinfo.patch ends here --- --- pkg-plist.patch begins here --- --- ports/chinese/libchewing/pkg-plist.orig 2009-11-29 13:49:30.000000000 +0800 +++ ports/chinese/libchewing/pkg-plist 2009-11-29 13:52:00.000000000 +0800 @@ -1,24 +1,20 @@ -include/chewing/char.h include/chewing/chewing.h include/chewing/chewingio.h -include/chewing/chewing-utf8-util.h -include/chewing/dict.h include/chewing/global.h -include/chewing/hanyupinyin.h -include/chewing/hash.h include/chewing/mod_aux.h -include/chewing/userphrase.h -include/chewing/zuin.h lib/libchewing.a lib/libchewing.la lib/libchewing.so lib/libchewing.so.3 libdata/pkgconfig/chewing.pc -%%DATADIR%%/ch_index.dat +%%DATADIR%%/ch_index_begin.dat +%%DATADIR%%/ch_index_phone.dat %%DATADIR%%/dict.dat %%DATADIR%%/fonetree.dat %%DATADIR%%/ph_index.dat %%DATADIR%%/pinyin.tab +%%DATADIR%%/swkb.dat +%%DATADIR%%/symbols.dat %%DATADIR%%/us_freq.dat @dirrm include/chewing @dirrm %%DATADIR%% --- pkg-plist.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 06:10:12 2009 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 C5EC2106566B; Sun, 29 Nov 2009 06:10:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9CF958FC0A; Sun, 29 Nov 2009 06:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nAT6ACuX066148; Sun, 29 Nov 2009 06:10:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nAT6ACqo066139; Sun, 29 Nov 2009 06:10:12 GMT (envelope-from edwin) Date: Sun, 29 Nov 2009 06:10:12 GMT Message-Id: <200911290610.nAT6ACqo066139@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clsung@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/140991: [UPDATE] Patch to update chinese/libchewing to 0.3.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 06:10:12 -0000 Synopsis: [UPDATE] Patch to update chinese/libchewing to 0.3.2 Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: edwin Responsible-Changed-When: Sun Nov 29 06:10:12 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=140991 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 07:00:07 2009 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 4FB36106568F for ; Sun, 29 Nov 2009 07:00:07 +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 CAB948FC18 for ; Sun, 29 Nov 2009 07:00:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nAT7066s012180 for ; Sun, 29 Nov 2009 07:00:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nAT706bb012179; Sun, 29 Nov 2009 07:00:06 GMT (envelope-from gnats) Resent-Date: Sun, 29 Nov 2009 07:00:06 GMT Resent-Message-Id: <200911290700.nAT706bb012179@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, "David G. Johns" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2767E1065745 for ; Sun, 29 Nov 2009 06:51:49 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id F0FD58FC0A for ; Sun, 29 Nov 2009 06:51:48 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id nAT6pmas043765 for ; Sun, 29 Nov 2009 06:51:48 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id nAT6pmIS043764; Sun, 29 Nov 2009 06:51:48 GMT (envelope-from nobody) Message-Id: <200911290651.nAT6pmIS043764@www.freebsd.org> Date: Sun, 29 Nov 2009 06:51:48 GMT From: "David G. Johns" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/140992: [maintainer update] patch converters/libutf-8 for CFLAGS X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 07:00:07 -0000 >Number: 140992 >Category: ports >Synopsis: [maintainer update] patch converters/libutf-8 for CFLAGS >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Nov 29 07:00:05 UTC 2009 >Closed-Date: >Last-Modified: >Originator: David G. Johns >Release: 7.2-STABLE >Organization: >Environment: FreeBSD freebsd-dev.local.lan 7.2-STABLE FreeBSD 7.2-STABLE #6: Fri Nov 27 04:02:07 UTC 2009 root@freebsd-dev.local.lan:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Small patch to fix 'CFLAGS+= -fPIC' not being properly added during compilation. >How-To-Repeat: Have CFLAGS set in /etc/make.conf, compile current converters/libutf-8 on amd64. Fails with the following: ld: fget.utf-8.o: relocation R_X86_64_32 can not be used when making a shared object; recompile with -fPIC fget.utf-8.o: could not read symbols: Bad value >Fix: The included patch, tested on i386 and amd64. Patch attached with submission follows: diff -ruN libutf-8.bak/Makefile libutf-8/Makefile --- libutf-8.bak/Makefile 2007-05-30 15:04:33.000000000 +0000 +++ libutf-8/Makefile 2009-11-28 23:42:35.000000000 +0000 @@ -7,16 +7,16 @@ PORTNAME= libutf-8 PORTVERSION= 1.0 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= converters MASTER_SITES= http://www.whizkidtech.redprince.net/i18n/ \ ftp://ftp.whizkidtech.redprince.net/unix/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= dgjohns@gmail.com COMMENT= Unicode conversion routines between UCS-4 and UTF-8 USE_LDCONFIG= yes -CFLAGS+= -fPIC MAN3= libutf-8.3 fgetu8.3 fputu8.3 sgetu8.3 sputu8.3 diff -ruN libutf-8.bak/files/patch-aa libutf-8/files/patch-aa --- libutf-8.bak/files/patch-aa 1999-04-16 23:34:30.000000000 +0000 +++ libutf-8/files/patch-aa 2009-11-28 23:42:35.000000000 +0000 @@ -1,6 +1,11 @@ ---- Makefile.orig Thu Apr 1 01:00:12 1999 -+++ Makefile Fri Apr 16 18:11:12 1999 -@@ -29,5 +29,5 @@ +--- Makefile.orig 1999-04-01 11:00:12.000000000 +0400 ++++ Makefile 2009-11-28 18:08:54.000000000 -0800 +@@ -26,8 +26,10 @@ + # Makefile for libutf-8 library + # + ++CFLAGS+=-fPIC ++ all: libutf-8.so.1 libutf-8.so.1: fget.utf-8.o sget.utf-8.o fput.utf-8.o sput.utf-8.o nomacros.o >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 09:30:04 2009 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 EF24D1065679 for ; Sun, 29 Nov 2009 09:30:03 +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 B72318FC1C for ; Sun, 29 Nov 2009 09:30:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nAT9U352069810 for ; Sun, 29 Nov 2009 09:30:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nAT9U3qJ069804; Sun, 29 Nov 2009 09:30:03 GMT (envelope-from gnats) Resent-Date: Sun, 29 Nov 2009 09:30:03 GMT Resent-Message-Id: <200911290930.nAT9U3qJ069804@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, Sahil Tandon Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8B4241065676; Sun, 29 Nov 2009 09:24:07 +0000 (UTC) (envelope-from sahil@spartan.hamla.org) Received: from spartan.hamla.org (spartan.hamla.org [206.251.255.30]) by mx1.freebsd.org (Postfix) with ESMTP id 78DBB8FC15; Sun, 29 Nov 2009 09:24:07 +0000 (UTC) Received: by spartan.hamla.org (Postfix, from userid 1001) id 3B7B7170C0; Sun, 29 Nov 2009 04:24:07 -0500 (EST) Message-Id: <20091129092407.3B7B7170C0@spartan.hamla.org> Date: Sun, 29 Nov 2009 04:24:07 -0500 (EST) From: Sahil Tandon To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: miwi@FreeBSD.org Subject: ports/140993: [NEW PORT] net/p5-Socket-GetAddrInfo: RFC 2553's getaddrinfo and getnameinfo functions X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sahil Tandon List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 09:30:04 -0000 >Number: 140993 >Category: ports >Synopsis: [NEW PORT] net/p5-Socket-GetAddrInfo: RFC 2553's getaddrinfo and getnameinfo functions >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Nov 29 09:30:03 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Sahil Tandon >Release: FreeBSD 7.2-RELEASE i386 >Organization: >Environment: >Description: Socket::GetAddrInfo - RFC 2553's getaddrinfo and getnameinfo functions. WWW: http://search.cpan.org/dist/Socket-GetAddrInfo/ >How-To-Repeat: >Fix: --- p5-Socket-GetAddrInfo.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Socket-GetAddrInfo # p5-Socket-GetAddrInfo/distinfo # p5-Socket-GetAddrInfo/Makefile # p5-Socket-GetAddrInfo/pkg-descr # p5-Socket-GetAddrInfo/pkg-plist # echo c - p5-Socket-GetAddrInfo mkdir -p p5-Socket-GetAddrInfo > /dev/null 2>&1 echo x - p5-Socket-GetAddrInfo/distinfo sed 's/^X//' >p5-Socket-GetAddrInfo/distinfo << '2efed7d200d823f592a0d6dc46de6ef2' XMD5 (Socket-GetAddrInfo-0.13.tar.gz) = 235f1635bf553ab83f837ae264d47ffc XSHA256 (Socket-GetAddrInfo-0.13.tar.gz) = 1dcd6b8d518037a2ea3f4a27586d540533c9cab747255cb6a47e2f9c87558723 XSIZE (Socket-GetAddrInfo-0.13.tar.gz) = 26161 2efed7d200d823f592a0d6dc46de6ef2 echo x - p5-Socket-GetAddrInfo/Makefile sed 's/^X//' >p5-Socket-GetAddrInfo/Makefile << 'afce63a326821da5ced81d7a468afcb9' X# New ports collection makefile for: Socket::GetAddrInfo X# Date created: 29 November 2009 X# Whom: Sahil Tandon X# X# $FreeBSD$ X# X XPORTNAME= Socket-GetAddrInfo XPORTVERSION= 0.13 XCATEGORIES= net perl5 XMASTER_SITES= CPAN XPKGNAMEPREFIX= p5- X XMAINTAINER= sahil@tandon.net XCOMMENT= RFC 2553's getaddrinfo and getnameinfo functions X XMAN3= Socket::GetAddrInfo.3 X XPERL_CONFIGURE= yes X X.include X X.if ${PERL_LEVEL} < 501000 XBUILD_DEPENDS= p5-Module-Build>=0:${PORTSDIR}/devel/p5-Module-Build X.endif X X.include afce63a326821da5ced81d7a468afcb9 echo x - p5-Socket-GetAddrInfo/pkg-descr sed 's/^X//' >p5-Socket-GetAddrInfo/pkg-descr << '70e8ebe40392a96924f7d41250c75cfb' XSocket::GetAddrInfo - RFC 2553's getaddrinfo and getnameinfo Xfunctions. X XWWW: http://search.cpan.org/dist/Socket-GetAddrInfo/ 70e8ebe40392a96924f7d41250c75cfb echo x - p5-Socket-GetAddrInfo/pkg-plist sed 's/^X//' >p5-Socket-GetAddrInfo/pkg-plist << '7b096f51b4cf3d4917e6b34a8ef29c6c' X%%SITE_PERL%%/%%PERL_ARCH%%/Socket/GetAddrInfo.pm X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Socket/GetAddrInfo/.packlist X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Socket/GetAddrInfo/GetAddrInfo.bs X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Socket/GetAddrInfo/GetAddrInfo.so X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Socket/GetAddrInfo X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Socket X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Socket 7b096f51b4cf3d4917e6b34a8ef29c6c exit --- p5-Socket-GetAddrInfo.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 09:30:15 2009 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 2F58D1065676; Sun, 29 Nov 2009 09:30:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 074748FC1F; Sun, 29 Nov 2009 09:30:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nAT9UExq071201; Sun, 29 Nov 2009 09:30:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nAT9UENs071190; Sun, 29 Nov 2009 09:30:14 GMT (envelope-from edwin) Date: Sun, 29 Nov 2009 09:30:14 GMT Message-Id: <200911290930.nAT9UENs071190@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, itetcu@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/140993: [NEW PORT] net/p5-Socket-GetAddrInfo: RFC 2553's getaddrinfo and getnameinfo functions X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 09:30:15 -0000 Synopsis: [NEW PORT] net/p5-Socket-GetAddrInfo: RFC 2553's getaddrinfo and getnameinfo functions Responsible-Changed-From-To: freebsd-ports-bugs->itetcu Responsible-Changed-By: edwin Responsible-Changed-When: Sun Nov 29 09:30:14 UTC 2009 Responsible-Changed-Why: itetcu@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=140993 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 09:40:06 2009 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 99B051065694 for ; Sun, 29 Nov 2009 09:40:06 +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 602EC8FC13 for ; Sun, 29 Nov 2009 09:40:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nAT9e54E079854 for ; Sun, 29 Nov 2009 09:40:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nAT9e5BH079853; Sun, 29 Nov 2009 09:40:05 GMT (envelope-from gnats) Resent-Date: Sun, 29 Nov 2009 09:40:05 GMT Resent-Message-Id: <200911290940.nAT9e5BH079853@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, Sahil Tandon Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A157F106566B; Sun, 29 Nov 2009 09:33:05 +0000 (UTC) (envelope-from sahil@spartan.hamla.org) Received: from spartan.hamla.org (spartan.hamla.org [206.251.255.30]) by mx1.freebsd.org (Postfix) with ESMTP id 8DF2B8FC0A; Sun, 29 Nov 2009 09:33:05 +0000 (UTC) Received: by spartan.hamla.org (Postfix, from userid 1001) id 40FF9170C0; Sun, 29 Nov 2009 04:33:05 -0500 (EST) Message-Id: <20091129093305.40FF9170C0@spartan.hamla.org> Date: Sun, 29 Nov 2009 04:33:05 -0500 (EST) From: Sahil Tandon To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: clsung@FreeBSD.org, itetcu@FreeBSD.org, miwi@FreeBSD.org Subject: ports/140994: [PATCH] devel/p5-IO-Async: update to 0.26 + tweak RUN_DEPENDS X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sahil Tandon List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 09:40:06 -0000 >Number: 140994 >Category: ports >Synopsis: [PATCH] devel/p5-IO-Async: update to 0.26 + tweak RUN_DEPENDS >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Nov 29 09:40:05 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Sahil Tandon >Release: FreeBSD 7.2-RELEASE i386 >Organization: >Environment: >Description: - Update to 0.26 - Added Async::MergePoint and Socket::GetAddrInfo to DEPENDS to pacify Perl's configure - The latter port did not exist in tree, so I've submitted ports/140993 >How-To-Repeat: >Fix: --- p5-IO-Async.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-IO-Async/Makefile,v retrieving revision 1.16 diff -u -r1.16 Makefile --- Makefile 14 Nov 2009 05:23:19 -0000 1.16 +++ Makefile 29 Nov 2009 09:26:30 -0000 @@ -6,7 +6,7 @@ # PORTNAME= IO-Async -PORTVERSION= 0.25 +PORTVERSION= 0.26 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,7 +14,9 @@ MAINTAINER= clsung@FreeBSD.org COMMENT= Perl modules that implement asynchronous filehandle IO -RUN_DEPENDS= p5-Heap>=0:${PORTSDIR}/devel/p5-Heap +RUN_DEPENDS= p5-Async-MergePoint>=0:${PORTSDIR}/devel/p5-Async-MergePoint \ + p5-Heap>=0.80:${PORTSDIR}/devel/p5-Heap \ + p5-Socket-GetAddrInfo>=0.08:${PORTSDIR}/net/p5-Socket-GetAddrInfo BUILD_DEPENDS= ${RUN_DEPENDS} PERL_CONFIGURE= yes Index: distinfo =================================================================== RCS file: /home/ncvs/ports/devel/p5-IO-Async/distinfo,v retrieving revision 1.16 diff -u -r1.16 distinfo --- distinfo 14 Nov 2009 05:23:19 -0000 1.16 +++ distinfo 29 Nov 2009 09:26:30 -0000 @@ -1,3 +1,3 @@ -MD5 (IO-Async-0.25.tar.gz) = 3afcd8716e2f1fa73959e981053d3223 -SHA256 (IO-Async-0.25.tar.gz) = 1a54d8194b0d43be77509ff2bdf813f61ad525beb52cca249a90c4087241de26 -SIZE (IO-Async-0.25.tar.gz) = 128082 +MD5 (IO-Async-0.26.tar.gz) = 7f9a04354483166640c94500651e291d +SHA256 (IO-Async-0.26.tar.gz) = 37af1736414b3c66f514729659adf67351009dd598ae868f796a7bf541f14b6d +SIZE (IO-Async-0.26.tar.gz) = 128920 --- p5-IO-Async.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 09:40:17 2009 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 B96C91065697; Sun, 29 Nov 2009 09:40:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 91C1A8FC0A; Sun, 29 Nov 2009 09:40:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nAT9eHem080536; Sun, 29 Nov 2009 09:40:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nAT9eHl2080530; Sun, 29 Nov 2009 09:40:17 GMT (envelope-from edwin) Date: Sun, 29 Nov 2009 09:40:17 GMT Message-Id: <200911290940.nAT9eHl2080530@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clsung@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/140994: [PATCH] devel/p5-IO-Async: update to 0.26 + tweak RUN_DEPENDS X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 09:40:17 -0000 Synopsis: [PATCH] devel/p5-IO-Async: update to 0.26 + tweak RUN_DEPENDS Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: edwin Responsible-Changed-When: Sun Nov 29 09:40:16 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=140994 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 10:00:14 2009 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 772141065670 for ; Sun, 29 Nov 2009 10:00:14 +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 4D7BB8FC0A for ; Sun, 29 Nov 2009 10:00:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nATA0D5H096165 for ; Sun, 29 Nov 2009 10:00:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nATA0DCY096164; Sun, 29 Nov 2009 10:00:13 GMT (envelope-from gnats) Date: Sun, 29 Nov 2009 10:00:13 GMT Message-Id: <200911291000.nATA0DCY096164@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Kazuo Dohzono Cc: Subject: Re: ports/140967: devel/libgii: libgii-1.0.2_2 install error X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Kazuo Dohzono List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 10:00:14 -0000 The following reply was made to PR ports/140967; it has been noted by GNATS. From: Kazuo Dohzono To: bug-followup@FreeBSD.org, dohzono@axion-software.com Cc: Subject: Re: ports/140967: devel/libgii: libgii-1.0.2_2 install error Date: Sun, 29 Nov 2009 18:59:49 +0900 > I can't reproduce the problem I also confirmed that this case can't be reproduced on vmware environment. I'll try to figure out those differences. From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 11:50:04 2009 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 7D3FE1065672 for ; Sun, 29 Nov 2009 11:50:04 +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 6C65C8FC1F for ; Sun, 29 Nov 2009 11:50:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nATBo229001744 for ; Sun, 29 Nov 2009 11:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nATBo2jD001743; Sun, 29 Nov 2009 11:50:02 GMT (envelope-from gnats) Date: Sun, 29 Nov 2009 11:50:02 GMT Message-Id: <200911291150.nATBo2jD001743@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: olli hauer Cc: Subject: Re: ports/140978: [patch] port lang/tclX fix build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: olli hauer List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 11:50:04 -0000 The following reply was made to PR ports/140978; it has been noted by GNATS. From: olli hauer To: , Mikhail T. Cc: olli hauer Subject: Re: ports/140978: [patch] port lang/tclX fix build Date: Sun, 29 Nov 2009 12:46:45 +0100 (CET) Mikhail T. wrote: ... > How about the attached patch? It is looking for each man-page under both > names: page and pageVERSION... > > I also incorporated your point regarding resources (not present under > 8.5 and above) and a similar point regarding lset. Hi Mikhail, thanks for the patch, it seems tinderbox builds are working now. I found one interesting difference in the build logs, but I'm not sure if this is important, see attached diff from build logs. If this doesn't break anything, please commit your patch. Send me a note If you need the full build logs, or if I should do some more build tests. -- cheers, olli --- build_log_diff begins here --- ... configure: creating ./config.status config.status: creating Makefile /usr/bin/sed -i.bak -e 's,^TCLSH_PROG.*,TCLSH_PROG=/usr/local/bin/tclsh8.5,' -e 's,TCL_LIBRARY=.*,\\,' /work/a/ports/lang/tclX/work/tclx8.4/Makefile # Disabling the failing help.test /bin/mv /work/a/ports/lang/tclX/work/tclx8.4/tests/help.test /work/a/ports/lang/tclX/work/tclx8.4/tests/help.test.dis ===> Building for tclX-8.4_3 (echo 'package ifneeded Tclx 8.4 [list load [file join $dir libtclx8.4.so] Tclx]' ) > pkgIndex.tcl ... build without patch or with my patch: cc -pipe ... -fPIC -c `echo ./generic/tclXoscmds.c` -o tclXoscmds.o cc -pipe ... -fPIC -c `echo ./generic/tclXlgets.c` -o tclXlgets.o build with your new patch: cc -pipe ... -fPIC -c `echo ./generic/tclXoscmds.c` -o tclXoscmds.o --- build_log_diff ends here --- From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 13:10:02 2009 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 9A62B1065672 for ; Sun, 29 Nov 2009 13:10: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 5B50B8FC0A for ; Sun, 29 Nov 2009 13:10:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nATDA2Ut069266 for ; Sun, 29 Nov 2009 13:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nATDA2Jr069265; Sun, 29 Nov 2009 13:10:02 GMT (envelope-from gnats) Resent-Date: Sun, 29 Nov 2009 13:10:02 GMT Resent-Message-Id: <200911291310.nATDA2Jr069265@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, Ulrich Spörlein Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 45E7F1065672 for ; Sun, 29 Nov 2009 13:02:13 +0000 (UTC) (envelope-from uqs@spoerlein.net) Received: from acme.spoerlein.net (cl-43.dus-01.de.sixxs.net [IPv6:2a01:198:200:2a::2]) by mx1.freebsd.org (Postfix) with ESMTP id E83BC8FC14 for ; Sun, 29 Nov 2009 13:02:12 +0000 (UTC) Received: from acme.spoerlein.net (localhost.spoerlein.net [IPv6:::1]) by acme.spoerlein.net (8.14.3/8.14.3) with ESMTP id nATD2BRV098535 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 29 Nov 2009 14:02:11 +0100 (CET) (envelope-from uqs@acme.spoerlein.net) Received: (from uqs@localhost) by acme.spoerlein.net (8.14.3/8.14.3/Submit) id nATD2BoN098534; Sun, 29 Nov 2009 14:02:11 +0100 (CET) (envelope-from uqs) Message-Id: <200911291302.nATD2BoN098534@acme.spoerlein.net> Date: Sun, 29 Nov 2009 14:02:11 +0100 (CET) From: Ulrich Spörlein To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/140995: lang/gcc45 (and lang/gcc44) break on amd64 with CPUTYPE=native X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 13:10:02 -0000 >Number: 140995 >Category: ports >Synopsis: lang/gcc45 (and lang/gcc44) break on amd64 with CPUTYPE=native >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 29 13:10:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Ulrich Spörlein >Release: FreeBSD 8.0-STABLE amd64 >Organization: >Environment: >Description: When building both lang/gcc44 or lang/gcc45 on amd64 with CPUTYPE=native in /etc/make.conf or -march=native in CFLAGS, the build will break due to the old assembler in base. This does not happen to gcc43 (simply because it is old enough) >How-To-Repeat: cd /usr/ports/lang/gcc45 && make CPUTYPE=native DISABLE_MAKE_JOBS=1 ... /bin/sh ./libtool --tag=CC --mode=compile /usr/obj/usr/ports/lang/gcc45/work/build/./gcc/xgcc -B/usr/obj/usr/ports/lang/gcc45/work/build/./gcc/ -B/usr/local/x86_64-portbld-freebsd8.0/bin/ -B/usr/local/x86_64-portbld-freebsd8.0/lib/ -isystem /usr/local/x86_64-portbld-freebsd8.0/include -isystem /usr/local/x86_64-portbld-freebsd8.0/sys-include -DHAVE_CONFIG_H -I. -I../.././../gcc-4.5-20091119/libgfortran -iquote../.././../gcc-4.5-20091119/libgfortran/io -I../.././../gcc-4.5-20091119/libgfortran/../gcc -I../.././../gcc-4.5-20091119/libgfortran/../gcc/config -I../.././gcc -D_GNU_SOURCE -std=gnu99 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wextra -Wwrite-strings -fcx-fortran-rules -ffunction-sections -fdata-sections -ftree-vectorize -funroll-loops -g -O2 -pipe -march=native -I/usr/local/include -fno-strict-aliasing -MT matmul_i4.lo -MD -MP -MF .deps/matmul_i4.Tpo -c -o matmul_i4.lo `test -f '../.././../gcc-4.5-20091119/libgfortran/generated/ma! tmul_i4.c' || echo '../.././../gcc-4.5-20091119/libgfortran/'`../.././../gcc-4.5-20091119/libgfortran/generated/matmul_i4.c libtool: compile: /usr/obj/usr/ports/lang/gcc45/work/build/./gcc/xgcc -B/usr/obj/usr/ports/lang/gcc45/work/build/./gcc/ -B/usr/local/x86_64-portbld-freebsd8.0/bin/ -B/usr/local/x86_64-portbld-freebsd8.0/lib/ -isystem /usr/local/x86_64-portbld-freebsd8.0/include -isystem /usr/local/x86_64-portbld-freebsd8.0/sys-include -DHAVE_CONFIG_H -I. -I../.././../gcc-4.5-20091119/libgfortran -iquote../.././../gcc-4.5-20091119/libgfortran/io -I../.././../gcc-4.5-20091119/libgfortran/../gcc -I../.././../gcc-4.5-20091119/libgfortran/../gcc/config -I../.././gcc -D_GNU_SOURCE -std=gnu99 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wextra -Wwrite-strings -fcx-fortran-rules -ffunction-sections -fdata-sections -ftree-vectorize -funroll-loops -g -O2 -pipe -march=native -I/usr/local/include -fno-strict-aliasing -MT matmul_i4.lo -MD -MP -MF .deps/matmul_i4.Tpo -c ../.././../gcc-4.5-20091119/libgfortran/generated/matmul_i4.c -fPIC -DPIC -o .libs/matmul_i4.o {standard input}: Assembler messages: {standard input}:1861: Error: no such instruction: `pmulld %xmm0,%xmm5' {standard input}:1885: Error: no such instruction: `pmulld %xmm0,%xmm4' {standard input}:1893: Error: no such instruction: `pmulld %xmm0,%xmm5' {standard input}:1902: Error: no such instruction: `pmulld %xmm0,%xmm6' {standard input}:1911: Error: no such instruction: `pmulld %xmm0,%xmm7' {standard input}:1920: Error: no such instruction: `pmulld %xmm0,%xmm8' {standard input}:1929: Error: no such instruction: `pmulld %xmm0,%xmm9' {standard input}:1938: Error: no such instruction: `pmulld %xmm0,%xmm10' {standard input}:1949: Error: no such instruction: `pmulld %xmm0,%xmm14' {standard input}:1954: Error: no such instruction: `pmulld %xmm0,%xmm13' {standard input}:1959: Error: no such instruction: `pmulld %xmm0,%xmm12' {standard input}:1964: Error: no such instruction: `pmulld %xmm0,%xmm11' {standard input}:1969: Error: no such instruction: `pmulld %xmm0,%xmm10' {standard input}:1974: Error: no such instruction: `pmulld %xmm0,%xmm9' {standard input}:1979: Error: no such instruction: `pmulld %xmm0,%xmm8' {standard input}:1984: Error: no such instruction: `pmulld %xmm0,%xmm7' {standard input}:2219: Error: no such instruction: `pmulld %xmm15,%xmm0' {standard input}:2241: Error: no such instruction: `pmulld %xmm12,%xmm11' {standard input}:2249: Error: no such instruction: `pmulld %xmm14,%xmm13' {standard input}:2257: Error: no such instruction: `pmulld %xmm1,%xmm15' {standard input}:2265: Error: no such instruction: `pmulld %xmm2,%xmm3' {standard input}:2273: Error: no such instruction: `pmulld %xmm5,%xmm4' {standard input}:2281: Error: no such instruction: `pmulld %xmm7,%xmm6' {standard input}:2289: Error: no such instruction: `pmulld %xmm9,%xmm8' {standard input}:2302: Error: no such instruction: `pmulld %xmm1,%xmm15' {standard input}:2319: Error: no such instruction: `pmulld %xmm14,%xmm13' {standard input}:2320: Error: no such instruction: `pmulld %xmm12,%xmm11' {standard input}:2323: Error: no such instruction: `pmulld %xmm10,%xmm9' {standard input}:2326: Error: no such instruction: `pmulld %xmm8,%xmm7' {standard input}:2329: Error: no such instruction: `pmulld %xmm6,%xmm5' {standard input}:2337: Error: no such instruction: `pmulld %xmm4,%xmm3' {standard input}:2341: Error: no such instruction: `pmulld %xmm2,%xmm1' gmake[3]: *** [matmul_i4.lo] Error 1 gmake[3]: Leaving directory `/usr/obj/usr/ports/lang/gcc45/work/build/x86_64-portbld-freebsd8.0/libgfortran' gmake[2]: *** [all] Error 2 gmake[2]: Leaving directory `/usr/obj/usr/ports/lang/gcc45/work/build/x86_64-portbld-freebsd8.0/libgfortran' gmake[1]: *** [all-target-libgfortran] Error 2 gmake[1]: Leaving directory `/usr/obj/usr/ports/lang/gcc45/work/build' gmake: *** [bootstrap-lean] Error 2 *** Error code 1 Stop in /usr/ports/lang/gcc45. >Fix: Update binutils? >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 13:10:12 2009 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 D83CE10656C0; Sun, 29 Nov 2009 13:10:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AE8748FC1D; Sun, 29 Nov 2009 13:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nATDACfV069935; Sun, 29 Nov 2009 13:10:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nATDACd5069921; Sun, 29 Nov 2009 13:10:12 GMT (envelope-from edwin) Date: Sun, 29 Nov 2009 13:10:12 GMT Message-Id: <200911291310.nATDACd5069921@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gerald@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/140995: lang/gcc45 (and lang/gcc44) break on amd64 with CPUTYPE=native X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 13:10:12 -0000 Synopsis: lang/gcc45 (and lang/gcc44) break on amd64 with CPUTYPE=native Responsible-Changed-From-To: freebsd-ports-bugs->gerald Responsible-Changed-By: edwin Responsible-Changed-When: Sun Nov 29 13:10:11 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=140995 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 14:30:04 2009 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 DA8F510656C6 for ; Sun, 29 Nov 2009 14:30:04 +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 9A3AB8FC27 for ; Sun, 29 Nov 2009 14:30:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nATEU4Gw038024 for ; Sun, 29 Nov 2009 14:30:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nATEU4QV038020; Sun, 29 Nov 2009 14:30:04 GMT (envelope-from gnats) Resent-Date: Sun, 29 Nov 2009 14:30:04 GMT Resent-Message-Id: <200911291430.nATEU4QV038020@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, Andrei Lavreniyuk Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E379B106566B for ; Sun, 29 Nov 2009 14:28:40 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id CF9E98FC1B for ; Sun, 29 Nov 2009 14:28:40 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id nATESeXL078812 for ; Sun, 29 Nov 2009 14:28:40 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id nATESeSc078811; Sun, 29 Nov 2009 14:28:40 GMT (envelope-from nobody) Message-Id: <200911291428.nATESeSc078811@www.freebsd.org> Date: Sun, 29 Nov 2009 14:28:40 GMT From: Andrei Lavreniyuk To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/140996: Cannot install ports/print/cups-client X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 14:30:04 -0000 >Number: 140996 >Category: ports >Synopsis: Cannot install ports/print/cups-client >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 29 14:30:04 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Andrei Lavreniyuk >Release: FreeBSD 8.0-STABLE >Organization: Technica-03, Inc. >Environment: FreeBSD hp.technica-03.local 8.0-STABLE FreeBSD 8.0-STABLE #0: Fri Nov 27 10:17:55 EET 2009 root@hp.technica-03.local:/usr/obj/usr/src/sys/HP amd64 >Description: # portupgrade cups\* ---> Upgrading 'cups-client-1.3.10_4' to 'cups-client-1.4.2' (print/cups-client) ---> Building '/usr/ports/print/cups-client' ===> Cleaning for cups-client-1.4.2 ===> Vulnerability check disabled, database not found ===> Found saved configuration for cups-base-1.3.10_2 ===> Extracting for cups-client-1.4.2 => MD5 Checksum OK for cups-1.4.2-source.tar.bz2. => SHA256 Checksum OK for cups-1.4.2-source.tar.bz2. ===> Patching for cups-client-1.4.2 ===> Applying FreeBSD patches for cups-client-1.4.2 ===> cups-client-1.4.2 depends on executable: gmake - found ===> cups-client-1.4.2 depends on shared library: gnutls-openssl.40 - found ===> Configuring for cups-client-1.4.2 Configuring CUPS with options: --localstatedir=/var --disable-slp --disable-gssapi --with-cups-user=cups --with-cups-group=cups --with-system-groups=wheel --with-docdir=/usr/local/share/doc/cups --with-icondir=/usr/local/share/icons --with-menudir=/usr/local/share/applications --with-domainsocket=/var/run/cups.sock --enable-gnutls --disable-openssl --without-php --disable-dnssd --disable-pam --disable-ldap --disable-dbus --prefix=/usr/local checking for gawk... no checking for mawk... no checking for nawk... nawk checking for gcc... cc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking how to run the C preprocessor... cc -E checking whether we are using the GNU C++ compiler... yes checking whether c++ accepts -g... yes checking for ranlib... ranlib checking for ar... /usr/bin/ar checking for chmod... /bin/chmod checking for htmldoc... no checking for ld... /usr/bin/ld checking for ln... /bin/ln checking for mv... /bin/mv checking for rm... /bin/rm checking for rmdir... /bin/rmdir checking for sed... /usr/bin/sed checking for xdg-open... /usr/local/bin/xdg-open checking for install-sh script... using /usr/ports/print/cups-client/work/cups-1.4.2/install-sh checking for library containing crypt... -lcrypt checking for library containing getspent... no checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking crypt.h usability... no checking crypt.h presence... no checking for crypt.h... no checking langinfo.h usability... yes checking langinfo.h presence... yes checking for langinfo.h... yes checking malloc.h usability... no checking malloc.h presence... no checking for malloc.h... no checking shadow.h usability... no checking shadow.h presence... no checking for shadow.h... no checking for string.h... (cached) yes checking for strings.h... (cached) yes checking bstring.h usability... no checking bstring.h presence... no checking for bstring.h... no checking usersec.h usability... no checking usersec.h presence... no checking for usersec.h... no checking sys/ioctl.h usability... yes checking sys/ioctl.h presence... yes checking for sys/ioctl.h... yes checking sys/param.h usability... yes checking sys/param.h presence... yes checking for sys/param.h... yes checking sys/ucred.h usability... yes checking sys/ucred.h presence... yes checking for sys/ucred.h... yes checking scsi/sg.h usability... no checking scsi/sg.h presence... no checking for scsi/sg.h... no checking for strdup... yes checking for strcasecmp... yes checking for strncasecmp... yes checking for strlcat... yes checking for strlcpy... yes checking for snprintf... yes checking for vsnprintf... yes checking for random... yes checking for mrand48... yes checking for lrand48... yes checking for geteuid... yes checking for vsyslog... yes checking for sigset... no checking for sigaction... yes checking for waitpid... yes checking for wait3... yes checking for tm_gmtoff member in tm structure... yes checking for removefile... no checking for usb_init in -lusb... yes checking usb.h usability... yes checking usb.h presence... yes checking for usb.h... yes checking for library containing acl_init... none required checking if GCC supports -fstack-protector... yes checking if GCC supports -pie... yes checking whether to build image filters... yes checking for library containing pow... -lm checking jpeglib.h usability... yes checking jpeglib.h presence... yes checking for jpeglib.h... yes checking for jpeg_destroy_decompress in -ljpeg... yes checking zlib.h usability... yes checking zlib.h presence... yes checking for zlib.h... yes checking for gzgets in -lz... yes checking png.h usability... yes checking png.h presence... yes checking for png.h... yes checking for png_create_read_struct in -lpng... yes checking tiff.h usability... yes checking tiff.h presence... yes checking for tiff.h... yes checking for TIFFReadScanline in -ltiff... yes checking for stdlib.h... (cached) yes checking resolv.h usability... yes checking resolv.h presence... yes checking for resolv.h... yes checking for library containing socket... none required checking for library containing gethostbyaddr... none required checking for library containing getifaddrs... none required checking for library containing hstrerror... none required checking for library containing rresvport_af... none required checking for library containing __res_init... none required checking for library containing getaddrinfo... none required checking for library containing getnameinfo... none required checking for struct sockaddr.sa_len... yes checking sys/sockio.h usability... yes checking sys/sockio.h presence... yes checking for sys/sockio.h... yes checking for AppleTalk/at_proto.h... no checking for poll... yes checking for epoll_create... no checking for kqueue... yes checking pthread.h usability... yes checking pthread.h presence... yes checking for pthread.h... yes checking for pthread_create using -pthread... yes checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... no checking for long long int... yes checking for strtoll... yes checking for launch_msg... no checking launch.h usability... no checking launch.h presence... no checking for launch.h... no checking whether to use network default printers... yes checking for pdftops... no checking for gs... /usr/local/bin/gs checking for java... /usr/local/bin/java checking for perl... /usr/bin/perl checking for python... /usr/local/bin/python configure: creating ./config.status config.status: creating Makedefs config.status: creating packaging/cups.list config.status: creating init/cups.sh config.status: creating init/cups-lpd config.status: creating cups-config config.status: creating conf/cupsd.conf config.status: creating conf/mime.convs config.status: creating conf/pam.std config.status: creating conf/snmp.conf config.status: creating data/testprint config.status: creating desktop/cups.desktop config.status: creating doc/index.html config.status: creating doc/help/ref-cupsd-conf.html config.status: creating doc/help/standard.html config.status: creating init/org.cups.cups-lpd.plist config.status: creating init/cups.xml config.status: creating man/client.conf.man config.status: creating man/cups-deviced.man config.status: creating man/cups-driverd.man config.status: creating man/cups-lpd.man config.status: creating man/cupsaddsmb.man config.status: creating man/cupsd.man config.status: creating man/cupsd.conf.man config.status: creating man/drv.man config.status: creating man/lpoptions.man config.status: creating templates/header.tmpl config.status: creating doc/de/index.html config.status: creating templates/de/header.tmpl config.status: creating doc/es/index.html config.status: creating templates/es/header.tmpl config.status: creating doc/eu/index.html config.status: creating templates/eu/header.tmpl config.status: creating doc/ja/index.html config.status: creating templates/ja/header.tmpl config.status: creating doc/pl/index.html config.status: creating templates/pl/header.tmpl config.status: creating doc/ru/index.html config.status: creating templates/ru/header.tmpl config.status: creating config.h /usr/bin/grep -v pam_securityserver /usr/ports/print/cups-client/work/cups-1.4.2/conf/pam.darwin > /usr/ports/print/cups-client/work/cups-1.4.2/conf/pam.std grep: /usr/ports/print/cups-client/work/cups-1.4.2/conf/pam.darwin: Not open file *** Error code 2 Stop in /usr/ports/print/cups-client. *** Error code 1 Stop in /usr/ports/print/cups-client. ** Command failed [exit code 1]: /usr/bin/script -qa /var/tmp/portupgrade20091129-83260-1cacq3e-0 env UPGRADE_TOOL=portupgrade UPGRADE_PORT=cups-client-1.3.10_4 UPGRADE_PORT_VER=1.3.10_4 make ** Fix the problem and try again. ---> Skipping 'print/cups-image' (cups-image-1.3.10_4) because a requisite package 'cups-client-1.3.10_4' (print/cups-client) failed (specify -k to force) ---> Skipping 'print/cups-base' (cups-base-1.3.10_4) because a requisite package 'cups-client-1.3.10_4' (print/cups-client) failed (specify -k to force) ** Listing the failed packages (-:ignored / *:skipped / !:failed) ! print/cups-client (cups-client-1.3.10_4) (unknown build error) * print/cups-image (cups-image-1.3.10_4) * print/cups-base (cups-base-1.3.10_4) >How-To-Repeat: # cd /usr/ports/print/cups-client # make >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 14:30:16 2009 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 6484D106566B; Sun, 29 Nov 2009 14:30:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3AD228FC2A; Sun, 29 Nov 2009 14:30:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nATEUGdg039371; Sun, 29 Nov 2009 14:30:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nATEUGNf039356; Sun, 29 Nov 2009 14:30:16 GMT (envelope-from edwin) Date: Sun, 29 Nov 2009 14:30:16 GMT Message-Id: <200911291430.nATEUGNf039356@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dinoex@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/140996: Cannot install ports/print/cups-client X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 14:30:16 -0000 Synopsis: Cannot install ports/print/cups-client Responsible-Changed-From-To: freebsd-ports-bugs->dinoex Responsible-Changed-By: edwin Responsible-Changed-When: Sun Nov 29 14:30:15 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=140996 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 15:40:05 2009 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 22E2A106568F for ; Sun, 29 Nov 2009 15:40:05 +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 115538FC25 for ; Sun, 29 Nov 2009 15:40:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nATFe4qj099153 for ; Sun, 29 Nov 2009 15:40:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nATFe4Yk099152; Sun, 29 Nov 2009 15:40:04 GMT (envelope-from gnats) Date: Sun, 29 Nov 2009 15:40:04 GMT Message-Id: <200911291540.nATFe4Yk099152@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Razor Cc: Subject: Re: ports/140653: [PATCH] www/phpbb3 update to 3.0.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Razor List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 15:40:05 -0000 The following reply was made to PR ports/140653; it has been noted by GNATS. From: Razor To: bug-followup@freebsd.org Cc: appleboy.tw@gmail.com Subject: Re: ports/140653: [PATCH] www/phpbb3 update to 3.0.6 Date: Sun, 29 Nov 2009 23:32:50 +0800 The patch has been approved. Thanks. On Wed, 18 Nov 2009 05:10:09 UT, Edwin Groothuis wrote: > Maintainer of www/phpbb3, > > Please note that PR ports/140653 has just been submitted. > > If it contains a patch for an upgrade, an enhancement or a bug fix > you agree on, reply to this email stating that you approve the patch > and a committer will take care of it. > > The full text of the PR can be found at: > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/140653 > > -- > Edwin Groothuis via the GNATS Auto Assign Tool > edwin@FreeBSD.org > From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 15:50:02 2009 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 2D9E3106566C for ; Sun, 29 Nov 2009 15: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 E40058FC14 for ; Sun, 29 Nov 2009 15:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nATFo15i007283 for ; Sun, 29 Nov 2009 15:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nATFo1cZ007282; Sun, 29 Nov 2009 15:50:01 GMT (envelope-from gnats) Resent-Date: Sun, 29 Nov 2009 15:50:01 GMT Resent-Message-Id: <200911291550.nATFo1cZ007282@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, Marc Lagrange Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 58167106568D for ; Sun, 29 Nov 2009 15:47:44 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 2CE588FC1F for ; Sun, 29 Nov 2009 15:47:44 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id nATFlhZG051304 for ; Sun, 29 Nov 2009 15:47:43 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id nATFlh9a051303; Sun, 29 Nov 2009 15:47:43 GMT (envelope-from nobody) Message-Id: <200911291547.nATFlh9a051303@www.freebsd.org> Date: Sun, 29 Nov 2009 15:47:43 GMT From: Marc Lagrange To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/140997: New port: sysutils/hwstat freebsd only cli tool displaying CPU temp and battery infos X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 15:50:02 -0000 >Number: 140997 >Category: ports >Synopsis: New port: sysutils/hwstat freebsd only cli tool displaying CPU temp and battery infos >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Nov 29 15:50:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Marc Lagrange >Release: FreeBSD 8.0-RELEASE amd64 >Organization: >Environment: FreeBSD melkor.home.rhaamo.li 8.0-RELEASE FreeBSD 8.0-RELEASE #2 r199715: Mon Nov 23 18:36:48 UTC 2009 root@melkor.home.rhaamo.li:/usr/obj/usr/src/sys/GENERIC amd64 >Description: New port: sysutils/hwstat. hwstat is a FreeBSD only command line tool to display CPU temp and battery infos. WWW: http://rhaamo.li/hwstat/ >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # hwstat # hwstat/distinfo # hwstat/Makefile # hwstat/pkg-descr # echo c - hwstat mkdir -p hwstat > /dev/null 2>&1 echo x - hwstat/distinfo sed 's/^X//' >hwstat/distinfo << 'c64f43aa0d6e1be487dbf4b326693c30' XMD5 (hwstat-0.5.1.tar.gz) = ae460c0c3b7c2098e5fe39a8313c5e70 XSHA256 (hwstat-0.5.1.tar.gz) = 506b8f2ec6ce4a950626440cdde0f7d652b507a82006bc19890f63b74356508a XSIZE (hwstat-0.5.1.tar.gz) = 8957 c64f43aa0d6e1be487dbf4b326693c30 echo x - hwstat/Makefile sed 's/^X//' >hwstat/Makefile << '98cd63ceccb4fb054adb7b50c2e3d800' X# New ports collection makefile for: hwstat X# Date created: 29 nov 2009 X# Whom: Marc Lagrange X# X# $FreeBSD$ X# X XPORTNAME= hwstat XPORTVERSION= 0.5.1 XCATEGORIES= sysutils XMASTER_SITES= http://rhaamo.li/hwstat/ X XMAINTAINER= rhaamo@gruik.at XCOMMENT= Command line tool to display CPU temp and battery infos X XPLIST_FILES= bin/hwstat X XMAN1= hwstat.1 XMANCOMPRESSED= yes X X.include 98cd63ceccb4fb054adb7b50c2e3d800 echo x - hwstat/pkg-descr sed 's/^X//' >hwstat/pkg-descr << 'e7fc3f7823a800f28e8351e5be2a9e37' XFreeBSD only command line tool to display CPU temp and battery infos. X XWWW: http://rhaamo.li/hwstat/ e7fc3f7823a800f28e8351e5be2a9e37 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 16:00:09 2009 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 89B201065672 for ; Sun, 29 Nov 2009 16:00:09 +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 587848FC1D for ; Sun, 29 Nov 2009 16:00:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nATG09nQ015366 for ; Sun, 29 Nov 2009 16:00:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nATG09mC015365; Sun, 29 Nov 2009 16:00:09 GMT (envelope-from gnats) Resent-Date: Sun, 29 Nov 2009 16:00:09 GMT Resent-Message-Id: <200911291600.nATG09mC015365@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, soulcatcher Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 76D4F1065672 for ; Sun, 29 Nov 2009 15:50:57 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 5A2038FC12 for ; Sun, 29 Nov 2009 15:50:57 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id nATFovUn052026 for ; Sun, 29 Nov 2009 15:50:57 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id nATFovgR052025; Sun, 29 Nov 2009 15:50:57 GMT (envelope-from nobody) Message-Id: <200911291550.nATFovgR052025@www.freebsd.org> Date: Sun, 29 Nov 2009 15:50:57 GMT From: soulcatcher To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/140998: lang/ocaml-examples: update to 3.11 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 16:00:09 -0000 >Number: 140998 >Category: ports >Synopsis: lang/ocaml-examples: update to 3.11 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 29 16:00:08 UTC 2009 >Closed-Date: >Last-Modified: >Originator: soulcatcher >Release: 7.2-STABLE >Organization: >Environment: FreeBSD xxx.org 7.2-STABLE FreeBSD 7.2-STABLE #5: Sun Nov 22 21:02:42 MSK 2009 root@xxx.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: update: 3.08 -> 3.11 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN ocaml-examples.bak/Makefile ocaml-examples/Makefile --- ocaml-examples.bak/Makefile 2009-11-29 17:39:58.000000000 +0300 +++ ocaml-examples/Makefile 2009-11-29 17:46:09.000000000 +0300 @@ -7,11 +7,9 @@ # PORTNAME= ocaml -PORTVERSION= 3.08 +PORTVERSION= 3.11 CATEGORIES= lang -MASTER_SITES= http://caml.inria.fr/distrib/ \ - ftp://ftp.inria.fr/INRIA/caml-light/ \ - ftp://ftp.kurims.kyoto-u.ac.jp/pub/lang/caml-light/ +MASTER_SITES= http://cristal.inria.fr/caml_examples/ PKGNAMESUFFIX= -examples DISTNAME= ${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION} diff -ruN ocaml-examples.bak/distinfo ocaml-examples/distinfo --- ocaml-examples.bak/distinfo 2009-11-29 17:39:58.000000000 +0300 +++ ocaml-examples/distinfo 2009-11-29 17:46:51.000000000 +0300 @@ -1,3 +1,3 @@ -MD5 (ocaml-examples-3.08.tar.gz) = 00c9db3899c070a6893f21e8f4ec5622 -SHA256 (ocaml-examples-3.08.tar.gz) = da6be9a6a2e6a4b6a0b3e5a3f8fde199bcaabb2b49aea4caec019765a93db139 -SIZE (ocaml-examples-3.08.tar.gz) = 317776 +MD5 (ocaml-examples-3.11.tar.gz) = 3607eba656cdc042bc6d5ce06e650848 +SHA256 (ocaml-examples-3.11.tar.gz) = 890a1a72ca585d96e9a642771240d598469df68dfe94ed0f54381bd698bcccfd +SIZE (ocaml-examples-3.11.tar.gz) = 349117 diff -ruN ocaml-examples.bak/pkg-plist ocaml-examples/pkg-plist --- ocaml-examples.bak/pkg-plist 2009-11-29 17:39:58.000000000 +0300 +++ ocaml-examples/pkg-plist 2009-11-29 18:42:41.000000000 +0300 @@ -30,6 +30,8 @@ %%EXAMPLESDIR%%/basics/queens.ml %%EXAMPLESDIR%%/basics/queens_lazy.ml %%EXAMPLESDIR%%/basics/queens_tail.ml +%%EXAMPLESDIR%%/basics/read_points.ml +%%EXAMPLESDIR%%/basics/read_points.txt %%EXAMPLESDIR%%/basics/realloc.ml %%EXAMPLESDIR%%/basics/realloc.mli %%EXAMPLESDIR%%/basics/reverse_rec.ml @@ -78,12 +80,17 @@ %%EXAMPLESDIR%%/camltktutorial/complexegui.ml %%EXAMPLESDIR%%/camltktutorial/complexegui0.ml %%EXAMPLESDIR%%/camltktutorial/servers/biconnect.ml +%%EXAMPLESDIR%%/camltktutorial/servers/biout.ml %%EXAMPLESDIR%%/camltktutorial/servers/bipipe.ml %%EXAMPLESDIR%%/camltktutorial/servers/bipipe.mli %%EXAMPLESDIR%%/camltktutorial/servers/compute.ml +%%EXAMPLESDIR%%/camltktutorial/servers/connect.ml +%%EXAMPLESDIR%%/camltktutorial/servers/fork.ml %%EXAMPLESDIR%%/camltktutorial/servers/gui.ml %%EXAMPLESDIR%%/camltktutorial/servers/make_appli +%%EXAMPLESDIR%%/camltktutorial/servers/mk_seq.ml %%EXAMPLESDIR%%/camltktutorial/servers/multiconnect +%%EXAMPLESDIR%%/camltktutorial/servers/pipe.ml %%EXAMPLESDIR%%/camltktutorial/simple.ml %%EXAMPLESDIR%%/colwheel/colwheel.ml %%EXAMPLESDIR%%/colwheel/loadall.ml @@ -107,12 +114,15 @@ %%EXAMPLESDIR%%/demonstr/loadall.ml %%EXAMPLESDIR%%/demonstr/prop.ml %%EXAMPLESDIR%%/demonstr/prop.mli -%%EXAMPLESDIR%%/dlls/MakefileByteCode -%%EXAMPLESDIR%%/dlls/MakefileNative -%%EXAMPLESDIR%%/dlls/client.c -%%EXAMPLESDIR%%/dlls/fib.ml -%%EXAMPLESDIR%%/dlls/fibwrap.c -%%EXAMPLESDIR%%/dlls/modwrap.c +%%EXAMPLESDIR%%/dlls/unix/client.c +%%EXAMPLESDIR%%/dlls/unix/fib.ml +%%EXAMPLESDIR%%/dlls/unix/fib_wrappers.c +%%EXAMPLESDIR%%/dlls/windows/MakefileByteCode +%%EXAMPLESDIR%%/dlls/windows/MakefileNative +%%EXAMPLESDIR%%/dlls/windows/client.c +%%EXAMPLESDIR%%/dlls/windows/fib.ml +%%EXAMPLESDIR%%/dlls/windows/fibwrap.c +%%EXAMPLESDIR%%/dlls/windows/modwrap.c %%EXAMPLESDIR%%/docteur/docteur.ml %%EXAMPLESDIR%%/docteur/loadall.ml %%EXAMPLESDIR%%/doctor/doctor.ml @@ -133,14 +143,14 @@ %%EXAMPLESDIR%%/grep/grep.ml %%EXAMPLESDIR%%/grep/loadall.ml %%EXAMPLESDIR%%/grep/makefast -%%EXAMPLESDIR%%/hanoi/grahanoi-eng.ml -%%EXAMPLESDIR%%/hanoi/grahanoi-fra.ml -%%EXAMPLESDIR%%/hanoi/hanoi-eng.ml -%%EXAMPLESDIR%%/hanoi/hanoi-fra.ml +%%EXAMPLESDIR%%/hanoi/grahanoi_eng.ml +%%EXAMPLESDIR%%/hanoi/grahanoi_fra.ml +%%EXAMPLESDIR%%/hanoi/hanoi_eng.ml +%%EXAMPLESDIR%%/hanoi/hanoi_fra.ml %%EXAMPLESDIR%%/hanoi/koch.ml %%EXAMPLESDIR%%/hanoi/loadall.ml -%%EXAMPLESDIR%%/hanoi/txthanoi-eng.ml -%%EXAMPLESDIR%%/hanoi/txthanoi-fra.ml +%%EXAMPLESDIR%%/hanoi/txthanoi_eng.ml +%%EXAMPLESDIR%%/hanoi/txthanoi_fra.ml %%EXAMPLESDIR%%/kb/README %%EXAMPLESDIR%%/kb/equation.ml %%EXAMPLESDIR%%/kb/go.ml @@ -174,6 +184,73 @@ %%EXAMPLESDIR%%/minilogo/langage.mli %%EXAMPLESDIR%%/minilogo/loadall.ml %%EXAMPLESDIR%%/minilogo/logo.ml +%%EXAMPLESDIR%%/modules/functors/expert/compile.sh +%%EXAMPLESDIR%%/modules/functors/expert/fapply.ml +%%EXAMPLESDIR%%/modules/functors/expert/fapply.mli +%%EXAMPLESDIR%%/modules/functors/expert/fmod.ml +%%EXAMPLESDIR%%/modules/functors/expert/fmod.mli +%%EXAMPLESDIR%%/modules/functors/expert/ftype.mli +%%EXAMPLESDIR%%/modules/functors/expert/imod.ml +%%EXAMPLESDIR%%/modules/functors/expert/imod.mli +%%EXAMPLESDIR%%/modules/functors/expert/itype.mli +%%EXAMPLESDIR%%/modules/functors/expert/main.ml +%%EXAMPLESDIR%%/modules/functors/expert/restype.mli +%%EXAMPLESDIR%%/modules/functors/naive/compile.sh +%%EXAMPLESDIR%%/modules/functors/naive/fmod.ml +%%EXAMPLESDIR%%/modules/functors/naive/fmod.mli +%%EXAMPLESDIR%%/modules/functors/naive/ftype.mli +%%EXAMPLESDIR%%/modules/functors/naive/imod.ml +%%EXAMPLESDIR%%/modules/functors/naive/imod.mli +%%EXAMPLESDIR%%/modules/functors/naive/itype.mli +%%EXAMPLESDIR%%/modules/functors/naive/main.ml +%%EXAMPLESDIR%%/modules/functors/wrong/compile.sh +%%EXAMPLESDIR%%/modules/functors/wrong/fapply.ml +%%EXAMPLESDIR%%/modules/functors/wrong/fapply.mli +%%EXAMPLESDIR%%/modules/functors/wrong/fapplytype.ml +%%EXAMPLESDIR%%/modules/functors/wrong/fmod.ml +%%EXAMPLESDIR%%/modules/functors/wrong/fmod.mli +%%EXAMPLESDIR%%/modules/functors/wrong/ftype.mli +%%EXAMPLESDIR%%/modules/functors/wrong/imod.ml +%%EXAMPLESDIR%%/modules/functors/wrong/imod.mli +%%EXAMPLESDIR%%/modules/functors/wrong/itype.mli +%%EXAMPLESDIR%%/modules/functors/wrong/main.ml +%%EXAMPLESDIR%%/modules/functors/wrong/restype.mli +%%EXAMPLESDIR%%/modules/libraries/restriction/src/inside.ml +%%EXAMPLESDIR%%/modules/libraries/restriction/src/inside.mli +%%EXAMPLESDIR%%/modules/libraries/restriction/src/outside.ml +%%EXAMPLESDIR%%/modules/libraries/restriction/src/outside.mli +%%EXAMPLESDIR%%/modules/libraries/restriction/test/use_inside_my_lib.ml +%%EXAMPLESDIR%%/modules/libraries/restriction/test/use_my_lib.ml +%%EXAMPLESDIR%%/modules/module_inclusion/with_include/base_module.ml +%%EXAMPLESDIR%%/modules/module_inclusion/with_include/base_module.mli +%%EXAMPLESDIR%%/modules/module_inclusion/with_include/compile +%%EXAMPLESDIR%%/modules/module_inclusion/with_include/doc +%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_aggregate.ml +%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_aggregate.mli +%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_backbone_link.ml +%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_backbone_link.mli +%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_chemical_group.ml +%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_chemical_group.mli +%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_formulae.ml +%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_formulae.mli +%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_lib_frames.ml +%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_lib_frames.mli +%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_types.mli +%%EXAMPLESDIR%%/modules/module_inclusion/with_include/path.ml +%%EXAMPLESDIR%%/modules/module_inclusion/with_include/path.mli +%%EXAMPLESDIR%%/modules/module_types/modtype_fun.ml +%%EXAMPLESDIR%%/parsing/polish/compile +%%EXAMPLESDIR%%/parsing/polish/lexer.ml +%%EXAMPLESDIR%%/parsing/polish/lexer.mll +%%EXAMPLESDIR%%/parsing/polish/main.ml +%%EXAMPLESDIR%%/parsing/polish/parser.mly +%%EXAMPLESDIR%%/parsing/polish/parsetree.mli +%%EXAMPLESDIR%%/parsing/polish/print_ast.ml +%%EXAMPLESDIR%%/parsing/polish/print_ast.mli +%%EXAMPLESDIR%%/parsing/polish/scoping.ml +%%EXAMPLESDIR%%/parsing/polish/scoping.mli +%%EXAMPLESDIR%%/parsing/polish/treat.ml +%%EXAMPLESDIR%%/parsing/polish/treat.mli %%EXAMPLESDIR%%/pascal/compil.ml %%EXAMPLESDIR%%/pascal/compil.mli %%EXAMPLESDIR%%/pascal/cpascal.ml @@ -210,24 +287,84 @@ %%EXAMPLESDIR%%/picomach/stockage.mli %%EXAMPLESDIR%%/showsort/loadall.ml %%EXAMPLESDIR%%/showsort/showsort.ml +%%EXAMPLESDIR%%/simples/date.ml +%%EXAMPLESDIR%%/simples/date.pl +%%EXAMPLESDIR%%/simples/libperl.ml +%%EXAMPLESDIR%%/simples/mots_islandais +%%EXAMPLESDIR%%/simples/reminder.pl +%%EXAMPLESDIR%%/simples/scan_list.ml +%%EXAMPLESDIR%%/simples/test_chomp.pl +%%EXAMPLESDIR%%/simples/trad.ml +%%EXAMPLESDIR%%/simples/trad.pl %%EXAMPLESDIR%%/soli/soli.ml %%EXAMPLESDIR%%/soli/soli_opt.ml %%EXAMPLESDIR%%/spirals/loadall-bw.ml %%EXAMPLESDIR%%/spirals/loadall.ml -%%EXAMPLESDIR%%/spirals/spir-bw.ml +%%EXAMPLESDIR%%/spirals/spir_bw.ml %%EXAMPLESDIR%%/spirals/spir.ml -%%EXAMPLESDIR%%/tools/add_banner -%%EXAMPLESDIR%%/tools/add_banner.ml -%%EXAMPLESDIR%%/tools/address_book.new.ml -%%EXAMPLESDIR%%/tools/address_book.old.ml -%%EXAMPLESDIR%%/tools/banner -%%EXAMPLESDIR%%/tools/reverse_file_jfm.ml -@dirrm %%EXAMPLESDIR%%/tools +%%EXAMPLESDIR%%/sudoku/README +%%EXAMPLESDIR%%/sudoku/clean +%%EXAMPLESDIR%%/sudoku/compile.bin +%%EXAMPLESDIR%%/sudoku/compile.byt +%%EXAMPLESDIR%%/sudoku/main.ml +%%EXAMPLESDIR%%/sudoku/read.ml +%%EXAMPLESDIR%%/sudoku/resolve.ml +%%EXAMPLESDIR%%/sudoku/solve.ml +%%EXAMPLESDIR%%/sudoku/types.mli +%%EXAMPLESDIR%%/sudoku/utils.ml +%%EXAMPLESDIR%%/sudoku_general/README +%%EXAMPLESDIR%%/sudoku_general/clean +%%EXAMPLESDIR%%/sudoku_general/compile.bin +%%EXAMPLESDIR%%/sudoku_general/compile.byt +%%EXAMPLESDIR%%/sudoku_general/example.txt +%%EXAMPLESDIR%%/sudoku_general/example100.txt +%%EXAMPLESDIR%%/sudoku_general/example101.txt +%%EXAMPLESDIR%%/sudoku_general/example400.txt +%%EXAMPLESDIR%%/sudoku_general/example401.txt +%%EXAMPLESDIR%%/sudoku_general/example51.txt +%%EXAMPLESDIR%%/sudoku_general/example81.txt +%%EXAMPLESDIR%%/sudoku_general/example82.txt +%%EXAMPLESDIR%%/sudoku_general/example83.txt +%%EXAMPLESDIR%%/sudoku_general/example93.txt +%%EXAMPLESDIR%%/sudoku_general/example94.txt +%%EXAMPLESDIR%%/sudoku_general/example95.txt +%%EXAMPLESDIR%%/sudoku_general/example96.txt +%%EXAMPLESDIR%%/sudoku_general/example97.txt +%%EXAMPLESDIR%%/sudoku_general/example98.txt +%%EXAMPLESDIR%%/sudoku_general/example99.txt +%%EXAMPLESDIR%%/sudoku_general/main.ml +%%EXAMPLESDIR%%/sudoku_general/read.ml +%%EXAMPLESDIR%%/sudoku_general/resolve.ml +%%EXAMPLESDIR%%/sudoku_general/rules.ml +%%EXAMPLESDIR%%/sudoku_general/sols.txt +%%EXAMPLESDIR%%/sudoku_general/solve.ml +%%EXAMPLESDIR%%/sudoku_general/solve0.ml +%%EXAMPLESDIR%%/sudoku_general/types.mli +%%EXAMPLESDIR%%/sudoku_general/utils.ml +@dirrm %%EXAMPLESDIR%%/sudoku_general +@dirrm %%EXAMPLESDIR%%/sudoku @dirrm %%EXAMPLESDIR%%/spirals @dirrm %%EXAMPLESDIR%%/soli +@dirrm %%EXAMPLESDIR%%/simples @dirrm %%EXAMPLESDIR%%/showsort @dirrm %%EXAMPLESDIR%%/picomach @dirrm %%EXAMPLESDIR%%/pascal +@dirrm %%EXAMPLESDIR%%/parsing/polish +@dirrm %%EXAMPLESDIR%%/parsing +@dirrm %%EXAMPLESDIR%%/modules/module_types +@dirrm %%EXAMPLESDIR%%/modules/module_inclusion/with_sharing +@dirrm %%EXAMPLESDIR%%/modules/module_inclusion/with_include +@dirrm %%EXAMPLESDIR%%/modules/module_inclusion +@dirrm %%EXAMPLESDIR%%/modules/libraries/restriction/test +@dirrm %%EXAMPLESDIR%%/modules/libraries/restriction/src +@dirrm %%EXAMPLESDIR%%/modules/libraries/restriction/lib +@dirrm %%EXAMPLESDIR%%/modules/libraries/restriction +@dirrm %%EXAMPLESDIR%%/modules/libraries +@dirrm %%EXAMPLESDIR%%/modules/functors/wrong +@dirrm %%EXAMPLESDIR%%/modules/functors/naive +@dirrm %%EXAMPLESDIR%%/modules/functors/expert +@dirrm %%EXAMPLESDIR%%/modules/functors +@dirrm %%EXAMPLESDIR%%/modules @dirrm %%EXAMPLESDIR%%/minilogo @dirrm %%EXAMPLESDIR%%/minicaml @dirrm %%EXAMPLESDIR%%/kb @@ -235,6 +372,8 @@ @dirrm %%EXAMPLESDIR%%/grep @dirrm %%EXAMPLESDIR%%/doctor @dirrm %%EXAMPLESDIR%%/docteur +@dirrm %%EXAMPLESDIR%%/dlls/windows +@dirrm %%EXAMPLESDIR%%/dlls/unix @dirrm %%EXAMPLESDIR%%/dlls @dirrm %%EXAMPLESDIR%%/demonstr @dirrm %%EXAMPLESDIR%%/config >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 16:00:20 2009 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 A9B8F106566C; Sun, 29 Nov 2009 16:00:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 802828FC0C; Sun, 29 Nov 2009 16:00:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nATG0KQ1016121; Sun, 29 Nov 2009 16:00:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nATG0KBl016117; Sun, 29 Nov 2009 16:00:20 GMT (envelope-from edwin) Date: Sun, 29 Nov 2009 16:00:20 GMT Message-Id: <200911291600.nATG0KBl016117@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, stas@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/140998: lang/ocaml-examples: update to 3.11 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 16:00:20 -0000 Synopsis: lang/ocaml-examples: update to 3.11 Responsible-Changed-From-To: freebsd-ports-bugs->stas Responsible-Changed-By: edwin Responsible-Changed-When: Sun Nov 29 16:00:19 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=140998 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 16:47:17 2009 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 8E3E21065676; Sun, 29 Nov 2009 16:47:17 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 643E48FC0A; Sun, 29 Nov 2009 16:47:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nATGlHYx058887; Sun, 29 Nov 2009 16:47:17 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nATGlGit058883; Sun, 29 Nov 2009 16:47:16 GMT (envelope-from linimon) Date: Sun, 29 Nov 2009 16:47:16 GMT Message-Id: <200911291647.nATGlGit058883@freefall.freebsd.org> To: bg1tpt@gmail.com, appleboy.tw@gmail.com, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/140653: [PATCH] www/phpbb3 update to 3.0.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 16:47:17 -0000 Synopsis: [PATCH] www/phpbb3 update to 3.0.6 State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Sun Nov 29 16:46:57 UTC 2009 State-Changed-Why: Maintainer approved. http://www.freebsd.org/cgi/query-pr.cgi?pr=140653 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 16:50:03 2009 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 005C41065679 for ; Sun, 29 Nov 2009 16:50:03 +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 B30488FC15 for ; Sun, 29 Nov 2009 16:50:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nATGo21I058967 for ; Sun, 29 Nov 2009 16:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nATGo2AS058966; Sun, 29 Nov 2009 16:50:02 GMT (envelope-from gnats) Resent-Date: Sun, 29 Nov 2009 16:50:02 GMT Resent-Message-Id: <200911291650.nATGo2AS058966@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, Sunpoet Po-Chuan Hsieh Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DE94F1065679 for ; Sun, 29 Nov 2009 16:47:58 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from mail-gx0-f214.google.com (mail-gx0-f214.google.com [209.85.217.214]) by mx1.freebsd.org (Postfix) with ESMTP id 8E8A58FC18 for ; Sun, 29 Nov 2009 16:47:58 +0000 (UTC) Received: by gxk6 with SMTP id 6so654242gxk.13 for ; Sun, 29 Nov 2009 08:47:57 -0800 (PST) Received: by 10.91.141.6 with SMTP id t6mr5442616agn.49.1259513275290; Sun, 29 Nov 2009 08:47:55 -0800 (PST) Received: from sunpoet.net ([123.204.184.216]) by mx.google.com with ESMTPS id 22sm1650291yxe.57.2009.11.29.08.47.53 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 29 Nov 2009 08:47:54 -0800 (PST) Received: by sunpoet.net (Postfix, from userid 1000) id 9F0572AECCFD; Mon, 30 Nov 2009 00:47:14 +0800 (CST) Message-Id: <20091129164714.9F0572AECCFD@sunpoet.net> Date: Mon, 30 Nov 2009 00:47:14 +0800 (CST) From: Sunpoet Po-Chuan Hsieh To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: multimedia@FreeBSD.org Subject: ports/140999: [PATCH] audio/wavpack: update to 4.60.0, take maintainership X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 16:50:03 -0000 >Number: 140999 >Category: ports >Synopsis: [PATCH] audio/wavpack: update to 4.60.0, take maintainership >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Nov 29 16:50:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 7.2-STABLE amd64 >Organization: SUNPOET.net >Environment: System: FreeBSD bonjour.sunpoet.net 7.2-STABLE FreeBSD 7.2-STABLE #0: Wed Oct 7 10:53:58 CST >Description: - Update to 4.60.0 - Take maintainership Port maintainer (multimedia@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- wavpack-4.60.0.patch begins here --- diff -ruN --exclude=CVS /usr/ports/audio/wavpack/Makefile /usr/ports/sunpoet/wavpack/Makefile --- /usr/ports/audio/wavpack/Makefile 2009-02-04 13:48:36.000000000 +0800 +++ /usr/ports/sunpoet/wavpack/Makefile 2009-11-30 00:41:16.000000000 +0800 @@ -6,11 +6,11 @@ # PORTNAME= wavpack -PORTVERSION= 4.50.1 +PORTVERSION= 4.60.0 CATEGORIES= audio MASTER_SITES= http://www.wavpack.com/ -MAINTAINER= multimedia@FreeBSD.org +MAINTAINER= sunpoet@sunpoet.net COMMENT= Audio codec for lossless, lossy and hybrid compression USE_BZIP2= yes diff -ruN --exclude=CVS /usr/ports/audio/wavpack/distinfo /usr/ports/sunpoet/wavpack/distinfo --- /usr/ports/audio/wavpack/distinfo 2009-01-15 00:01:16.000000000 +0800 +++ /usr/ports/sunpoet/wavpack/distinfo 2009-11-30 00:41:37.000000000 +0800 @@ -1,3 +1,3 @@ -MD5 (wavpack-4.50.1.tar.bz2) = 2c9d7e3672f60070d4fd2c86c924a3b4 -SHA256 (wavpack-4.50.1.tar.bz2) = 29c036d10fb8bcb6daa58718d112394291887fc0e9b108851017218184483954 -SIZE (wavpack-4.50.1.tar.bz2) = 375792 +MD5 (wavpack-4.60.0.tar.bz2) = 722f90393b292cd1413e8af8250a3783 +SHA256 (wavpack-4.60.0.tar.bz2) = 7fcbcf8d1ecef2ea816fc0e1b9c259d56320b425ce1239283a762ae7e45b877a +SIZE (wavpack-4.60.0.tar.bz2) = 386771 diff -ruN --exclude=CVS /usr/ports/audio/wavpack/pkg-plist /usr/ports/sunpoet/wavpack/pkg-plist --- /usr/ports/audio/wavpack/pkg-plist 2007-01-03 10:19:22.000000000 +0800 +++ /usr/ports/sunpoet/wavpack/pkg-plist 2009-11-30 00:46:28.000000000 +0800 @@ -5,6 +5,7 @@ lib/libwavpack.a lib/libwavpack.la lib/libwavpack.so -lib/libwavpack.so.1 +lib/libwavpack.so.2 libdata/pkgconfig/wavpack.pc +@dirrm libdata/pkgconfig @dirrm include/wavpack --- wavpack-4.60.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 16:50:18 2009 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 D371C1065693; Sun, 29 Nov 2009 16:50:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A8F3C8FC1E; Sun, 29 Nov 2009 16:50:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nATGoIah060317; Sun, 29 Nov 2009 16:50:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nATGoIAv060307; Sun, 29 Nov 2009 16:50:18 GMT (envelope-from edwin) Date: Sun, 29 Nov 2009 16:50:18 GMT Message-Id: <200911291650.nATGoIAv060307@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/140999: [PATCH] audio/wavpack: update to 4.60.0, take maintainership X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 16:50:18 -0000 Synopsis: [PATCH] audio/wavpack: update to 4.60.0, take maintainership Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-multimedia Responsible-Changed-By: edwin Responsible-Changed-When: Sun Nov 29 16:50:18 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=140999 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 18:10:04 2009 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 A9C591065672 for ; Sun, 29 Nov 2009 18:10:04 +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 98F618FC16 for ; Sun, 29 Nov 2009 18:10:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nATIA4pR027003 for ; Sun, 29 Nov 2009 18:10:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nATIA4R1027002; Sun, 29 Nov 2009 18:10:04 GMT (envelope-from gnats) Date: Sun, 29 Nov 2009 18:10:04 GMT Message-Id: <200911291810.nATIA4R1027002@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/140997: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 18:10:04 -0000 The following reply was made to PR ports/140997; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/140997: commit references a PR Date: Sun, 29 Nov 2009 18:01:37 +0000 (UTC) miwi 2009-11-29 18:01:23 UTC FreeBSD ports repository Modified files: sysutils Makefile Added files: sysutils/hwstat Makefile distinfo pkg-descr Log: FreeBSD only command line tool to display CPU temp and battery infos. WWW: http://rhaamo.li/hwstat/ PR: ports/140997 Submitted by: Marc Lagrange Revision Changes Path 1.1146 +1 -0 ports/sysutils/Makefile 1.1 +21 -0 ports/sysutils/hwstat/Makefile (new) 1.1 +3 -0 ports/sysutils/hwstat/distinfo (new) 1.1 +3 -0 ports/sysutils/hwstat/pkg-descr (new) _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 19:30:03 2009 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 8209D1065695 for ; Sun, 29 Nov 2009 19:30:03 +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 463918FC13 for ; Sun, 29 Nov 2009 19:30:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nATJU3HQ095411 for ; Sun, 29 Nov 2009 19:30:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nATJU3Wt095403; Sun, 29 Nov 2009 19:30:03 GMT (envelope-from gnats) Resent-Date: Sun, 29 Nov 2009 19:30:03 GMT Resent-Message-Id: <200911291930.nATJU3Wt095403@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, Antoine Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0DBDA106566C for ; Sun, 29 Nov 2009 19:21:43 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id F1E728FC08 for ; Sun, 29 Nov 2009 19:21:42 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id nATJLgZU050279 for ; Sun, 29 Nov 2009 19:21:42 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id nATJLgYm050278; Sun, 29 Nov 2009 19:21:42 GMT (envelope-from nobody) Message-Id: <200911291921.nATJLgYm050278@www.freebsd.org> Date: Sun, 29 Nov 2009 19:21:42 GMT From: Antoine To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/141001: net/ssltunnel-server/ depends on /sbin/pppd X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 19:30:03 -0000 >Number: 141001 >Category: ports >Synopsis: net/ssltunnel-server/ depends on /sbin/pppd >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Nov 29 19:30:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Antoine >Release: FreeBSD 8.0-STABLE >Organization: >Environment: 8.0-STABLE FreeBSD 8.0-STABLE #1: Sun Nov 29 17:17:40 UTC 2009 >Description: Nov 29 18:30:54 cleopatre pppserver[1516]: Client version : 1.16.0.3-WIN32 Nov 29 18:30:54 cleopatre pppserver[1516]: Client Protocol version : 1.0 Nov 29 18:30:54 cleopatre pppserver[1517]: Exec: /usr/sbin/pppd Nov 29 18:30:54 cleopatre pppserver[1517]: execv: No such file or directory Nov 29 18:30:54 cleopatre kernel: Nov 29 18:30:54 cleopatre pppserver[1517]: execv: No such file or directory Nov 29 18:30:54 cleopatre pppserver[1516]: terminating normally Nov 29 18:30:54 cleopatre pppserver[1516]: In Bytes: 0, Out Bytes: 0 Nov 29 18:30:54 cleopatre pppserver[1516]: Child has exited /sbin/pppd dropped. >How-To-Repeat: Connect to the ssltunnel server. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 19:30:17 2009 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 83C1C1065672; Sun, 29 Nov 2009 19:30:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5B1B38FC18; Sun, 29 Nov 2009 19:30:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nATJUHf9097146; Sun, 29 Nov 2009 19:30:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nATJUHHW097131; Sun, 29 Nov 2009 19:30:17 GMT (envelope-from edwin) Date: Sun, 29 Nov 2009 19:30:17 GMT Message-Id: <200911291930.nATJUHHW097131@freefall.freebsd.org> To: antoine@cleopatre.homeip.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/141001: net/ssltunnel-server/ depends on /sbin/pppd X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 19:30:17 -0000 Synopsis: net/ssltunnel-server/ depends on /sbin/pppd State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Nov 29 19:30:16 UTC 2009 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=141001 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 19:40:05 2009 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 209471065672 for ; Sun, 29 Nov 2009 19:40:05 +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 0FBE28FC17 for ; Sun, 29 Nov 2009 19:40:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nATJe4sG005416 for ; Sun, 29 Nov 2009 19:40:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nATJe4BW005415; Sun, 29 Nov 2009 19:40:04 GMT (envelope-from gnats) Date: Sun, 29 Nov 2009 19:40:04 GMT Message-Id: <200911291940.nATJe4BW005415@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/141001: net/ssltunnel-server/ depends on /sbin/pppd X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 19:40:05 -0000 The following reply was made to PR ports/141001; it has been noted by GNATS. From: Edwin Groothuis To: at@rominet.net Cc: bug-followup@FreeBSD.org Subject: Re: ports/141001: net/ssltunnel-server/ depends on /sbin/pppd Date: Sun, 29 Nov 2009 19:30:13 UT Maintainer of net/ssltunnel-server, Please note that PR ports/141001 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/141001 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 20:40:03 2009 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 2E1871065697 for ; Sun, 29 Nov 2009 20:40:03 +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 E55B98FC16 for ; Sun, 29 Nov 2009 20:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nATKe2mG056900 for ; Sun, 29 Nov 2009 20:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nATKe2Yx056899; Sun, 29 Nov 2009 20:40:02 GMT (envelope-from gnats) Resent-Date: Sun, 29 Nov 2009 20:40:02 GMT Resent-Message-Id: <200911292040.nATKe2Yx056899@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, Greg Lewis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 10A78106568D for ; Sun, 29 Nov 2009 20:37:07 +0000 (UTC) (envelope-from glewis@misty.eyesbeyond.com) Received: from misty.eyesbeyond.com (gerbercreations.com [71.39.140.16]) by mx1.freebsd.org (Postfix) with ESMTP id CF1198FC1B for ; Sun, 29 Nov 2009 20:37:06 +0000 (UTC) Received: from misty.eyesbeyond.com (localhost.eyesbeyond.com [127.0.0.1]) by misty.eyesbeyond.com (8.14.3/8.14.3) with ESMTP id nATKb4LU031847; Sun, 29 Nov 2009 12:37:05 -0800 (PST) (envelope-from glewis@misty.eyesbeyond.com) Received: (from glewis@localhost) by misty.eyesbeyond.com (8.14.3/8.14.3/Submit) id nATKb4ij031846; Sun, 29 Nov 2009 12:37:04 -0800 (PST) (envelope-from glewis) Message-Id: <200911292037.nATKb4ij031846@misty.eyesbeyond.com> Date: Sun, 29 Nov 2009 12:37:04 -0800 (PST) From: Greg Lewis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: uqs@spoerlein.net Subject: ports/141002: [PATCH] games/bsdgames: Convert pre-install to pre-su-install X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 20:40:03 -0000 >Number: 141002 >Category: ports >Synopsis: [PATCH] games/bsdgames: Convert pre-install to pre-su-install >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Nov 29 20:40:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Greg Lewis >Release: FreeBSD 7.2-RELEASE-p4 i386 >Organization: >Environment: System: FreeBSD misty.eyesbeyond.com 7.2-RELEASE-p4 FreeBSD 7.2-RELEASE-p4 #0: Sat Oct 3 22:52:58 PDT >Description: The pre-install target creates directories under /var/games (by default). Doing so requires root privileges, so the pre-install target should be pre-su-install instead to ensure these privileges are available. Port maintainer (uqs@spoerlein.net) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- bsdgames-2.4_1,1.patch begins here --- Index: Makefile =================================================================== RCS file: /var/fcvs/ports/games/bsdgames/Makefile,v retrieving revision 1.24 diff -u -r1.24 Makefile --- Makefile 26 Nov 2009 14:45:24 -0000 1.24 +++ Makefile 29 Nov 2009 20:25:38 -0000 @@ -96,7 +96,7 @@ # Only useful for DESTDIR VARDIR?= /var -pre-install: +pre-su-install: ${MKDIR} ${VARDIR} mtree -deU -f ${FILESDIR}/var.mtree -p ${VARDIR} mtree -deU -f ${FILESDIR}/share.mtree -p ${PREFIX}/share --- bsdgames-2.4_1,1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 20:40:03 2009 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 ADC7C10656A3 for ; Sun, 29 Nov 2009 20:40:03 +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 72A0C8FC18 for ; Sun, 29 Nov 2009 20:40:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nATKe3R9056945 for ; Sun, 29 Nov 2009 20:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nATKe3aZ056944; Sun, 29 Nov 2009 20:40:03 GMT (envelope-from gnats) Resent-Date: Sun, 29 Nov 2009 20:40:03 GMT Resent-Message-Id: <200911292040.nATKe3aZ056944@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, olli hauer Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EC9051065692 for ; Sun, 29 Nov 2009 20:37:46 +0000 (UTC) (envelope-from ohauer@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id F27048FC1D for ; Sun, 29 Nov 2009 20:37:45 +0000 (UTC) Received: (qmail invoked by alias); 29 Nov 2009 20:37:42 -0000 Received: from u18-124.dsl.vianetworks.de (EHLO u18-124.dsl.vianetworks.de) [194.231.39.124] by mail.gmx.net (mp042) with SMTP; 29 Nov 2009 21:37:42 +0100 Received: by u18-124.dsl.vianetworks.de (Postfix, from userid 1100) id B40492614B; Sun, 29 Nov 2009 21:37:36 +0100 (CET) Message-Id: <20091129203736.B40492614B@u18-124.dsl.vianetworks.de> Date: Sun, 29 Nov 2009 21:37:36 +0100 (CET) From: olli hauer To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: ohauer@gmx.de Subject: ports/141003: [patch] port net-mgmt/nagios pkg-message X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: olli hauer List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 20:40:03 -0000 >Number: 141003 >Category: ports >Synopsis: [patch] port net-mgmt/nagios pkg-message >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Nov 29 20:40:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: olli hauer >Release: >Organization: >Environment: >Description: Hi, just updated to the new nagios version :) and reconfigured apache according the pkg-message. apache barks short with the following message # httpd -S Syntax error on line 462 of /usr/local/etc/apache22/httpd.conf: php_admin_value takes two arguments, PHP Value Modifier (Admin) Solution was to change the 'whitespace' to ':' in the php_admin_value directive olli >How-To-Repeat: >Fix: --- patch_nagios_pkg-message.txt begins here --- --- files/pkg-message.in +++ files/pkg-message.in @@ -19,7 +19,7 @@ Deny from all Allow from 127.0.0.1 php_flag engine on - php_admin_value open_basedir %%PREFIX%%/%%NAGIOSWWWDIR%%/ %%NAGIOSDIR%%/ + php_admin_value open_basedir %%PREFIX%%/%%NAGIOSWWWDIR%%/:%%NAGIOSDIR%%/ --- patch_nagios_pkg-message.txt ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 20:40:14 2009 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 652AF1065692; Sun, 29 Nov 2009 20:40:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3C8138FC18; Sun, 29 Nov 2009 20:40:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nATKeEn4057679; Sun, 29 Nov 2009 20:40:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nATKeEkD057667; Sun, 29 Nov 2009 20:40:14 GMT (envelope-from edwin) Date: Sun, 29 Nov 2009 20:40:14 GMT Message-Id: <200911292040.nATKeEkD057667@freefall.freebsd.org> To: glewis@misty.eyesbeyond.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/141002: [PATCH] games/bsdgames: Convert pre-install to pre-su-install X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 20:40:14 -0000 Synopsis: [PATCH] games/bsdgames: Convert pre-install to pre-su-install State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Nov 29 20:40:13 UTC 2009 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=141002 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 20:40:25 2009 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 CF4541065694; Sun, 29 Nov 2009 20:40:25 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A7C628FC17; Sun, 29 Nov 2009 20:40:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nATKePjO058962; Sun, 29 Nov 2009 20:40:25 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nATKePBX058951; Sun, 29 Nov 2009 20:40:25 GMT (envelope-from edwin) Date: Sun, 29 Nov 2009 20:40:25 GMT Message-Id: <200911292040.nATKePBX058951@freefall.freebsd.org> To: ohauer@gmx.de, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/141003: [patch] port net-mgmt/nagios pkg-message X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 20:40:25 -0000 Synopsis: [patch] port net-mgmt/nagios pkg-message State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Nov 29 20:40:25 UTC 2009 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=141003 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 20:44:42 2009 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 02DE11065672; Sun, 29 Nov 2009 20:44:42 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CE55F8FC0A; Sun, 29 Nov 2009 20:44:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nATKifm0065259; Sun, 29 Nov 2009 20:44:41 GMT (envelope-from glewis@freefall.freebsd.org) Received: (from glewis@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nATKif6T065255; Sun, 29 Nov 2009 20:44:41 GMT (envelope-from glewis) Date: Sun, 29 Nov 2009 20:44:41 GMT Message-Id: <200911292044.nATKif6T065255@freefall.freebsd.org> To: uqs@spoerlein.net, glewis@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, glewis@FreeBSD.org From: glewis@FreeBSD.org Cc: Subject: Re: ports/141002: [PATCH] games/bsdgames: Convert pre-install to pre-su-install X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 20:44:42 -0000 Synopsis: [PATCH] games/bsdgames: Convert pre-install to pre-su-install Responsible-Changed-From-To: freebsd-ports-bugs->glewis Responsible-Changed-By: glewis Responsible-Changed-When: Sun Nov 29 20:44:41 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=141002 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 20:50:07 2009 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 DF1BF106568D for ; Sun, 29 Nov 2009 20:50:07 +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 CF6FC8FC1C for ; Sun, 29 Nov 2009 20:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nATKo7WZ065371 for ; Sun, 29 Nov 2009 20:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nATKo7Pe065370; Sun, 29 Nov 2009 20:50:07 GMT (envelope-from gnats) Date: Sun, 29 Nov 2009 20:50:07 GMT Message-Id: <200911292050.nATKo7Pe065370@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/141003: [patch] port net-mgmt/nagios pkg-message X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 20:50:08 -0000 The following reply was made to PR ports/141003; it has been noted by GNATS. From: Edwin Groothuis To: jarrod@netleader.com.au Cc: bug-followup@FreeBSD.org Subject: Re: ports/141003: [patch] port net-mgmt/nagios pkg-message Date: Sun, 29 Nov 2009 20:40:22 UT Maintainer of net-mgmt/nagios, Please note that PR ports/141003 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/141003 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 20:50:08 2009 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 B01511065694 for ; Sun, 29 Nov 2009 20:50:08 +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 787958FC1D for ; Sun, 29 Nov 2009 20:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nATKo8Qm065380 for ; Sun, 29 Nov 2009 20:50:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nATKo8o5065379; Sun, 29 Nov 2009 20:50:08 GMT (envelope-from gnats) Resent-Date: Sun, 29 Nov 2009 20:50:08 GMT Resent-Message-Id: <200911292050.nATKo8o5065379@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, Sahil Tandon Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 28B8C106566B; Sun, 29 Nov 2009 20:45:50 +0000 (UTC) (envelope-from sahil@spartan.hamla.org) Received: from spartan.hamla.org (spartan.hamla.org [206.251.255.30]) by mx1.freebsd.org (Postfix) with ESMTP id 04D4E8FC14; Sun, 29 Nov 2009 20:45:49 +0000 (UTC) Received: by spartan.hamla.org (Postfix, from userid 1001) id BBE8B17137; Sun, 29 Nov 2009 15:45:49 -0500 (EST) Message-Id: <20091129204549.BBE8B17137@spartan.hamla.org> Date: Sun, 29 Nov 2009 15:45:49 -0500 (EST) From: Sahil Tandon To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: pusateri@bangj.com, miwi@FreeBSD.org Subject: ports/141004: [PATCH] net/libevnet: update to 0.3.11 + misc. cleanups X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sahil Tandon List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2009 20:50:08 -0000 >Number: 141004 >Category: ports >Synopsis: [PATCH] net/libevnet: update to 0.3.11 + misc. cleanups >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Nov 29 20:50:07 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Sahil Tandon >Release: FreeBSD 7.2-RELEASE i386 >Organization: >Environment: >Description: - Update to 0.3.11 - Remove files/patch-src::lookup.c (adopted upstream) - Remove files/patch-Makefile; replicate instead in Makefile while respecting custom LOCALBASE Note: There is a warning in the build phase about the redefinition of _REENTRANT; this same warning was also present in the build logs (confirmed on pointyhat) for the previous version of the port[1]. This obviously occurs because -D_REENTRANT is passed via CPPFLAGS. It appears innocuous and I did not remove the definition because I must assume it is there for a good readon(tm). :) I defer to the maintainer to decide whether we should keep that flag! >How-To-Repeat: >Fix: --- libevnet.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/net/libevnet/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- Makefile 4 Oct 2009 02:20:08 -0000 1.8 +++ Makefile 29 Nov 2009 20:37:15 -0000 @@ -7,8 +7,7 @@ # PORTNAME= libevnet -PORTVERSION= 0.3.8 -PORTREVISION= 5 +PORTVERSION= 0.3.11 CATEGORIES= net MASTER_SITES= http://www.25thandclement.com/~william/projects/releases/ EXTRACT_SUFX= .tgz @@ -19,9 +18,15 @@ BUILD_DEPENDS= ${LOCALBASE}/lib/libarena.a:${PORTSDIR}/devel/libarena LIB_DEPENDS= event-1.4:${PORTSDIR}/devel/libevent \ cares.2:${PORTSDIR}/dns/c-ares -RUN_DEPENDS= ${LOCALBASE}/lib/libarena.a:${PORTSDIR}/devel/libarena +RUN_DEPENDS= ${BUILD_DEPENDS} USE_OPENSSL= yes USE_GMAKE= yes +CPPFLAGS= -I${LOCALBASE}/include \ + -DUSE_OPENSSL -DUSE_CARES -DUSE_IPV6 -DUSE_PTHREADS \ + -DHAVE_STRLCPY -DHAVE_STRLCAT -D_REENTRANT + +MAKE_ENV+= CPPFLAGS="${CPPFLAGS}" + .include Index: distinfo =================================================================== RCS file: /home/ncvs/ports/net/libevnet/distinfo,v retrieving revision 1.2 diff -u -r1.2 distinfo --- distinfo 11 Jun 2007 15:16:21 -0000 1.2 +++ distinfo 29 Nov 2009 20:37:15 -0000 @@ -1,3 +1,3 @@ -MD5 (libevnet-0.3.8.tgz) = 1f8b8f6aec64cf6d183ad48f92bb46ec -SHA256 (libevnet-0.3.8.tgz) = 72c5ce004e8190e902475e0602e93f60a0c4cd165c6a4d79af7e49774caa5cac -SIZE (libevnet-0.3.8.tgz) = 81265 +MD5 (libevnet-0.3.11.tgz) = 5aa32a4bafb3790fa7f177e91af20908 +SHA256 (libevnet-0.3.11.tgz) = 99ac2c2ac7fb6708b31481d8b04af9c197ba6fc6a9af812edec183f2bc6d07c5 +SIZE (libevnet-0.3.11.tgz) = 103977 Index: files/patch-Makefile =================================================================== RCS file: files/patch-Makefile diff -N files/patch-Makefile --- files/patch-Makefile 11 Jun 2007 15:16:21 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,10 +0,0 @@ ---- Makefile.orig Mon Jun 11 23:07:29 2007 -+++ Makefile Mon Jun 11 23:07:58 2007 -@@ -1,3 +1,7 @@ -+CPPFLAGS += -I/usr/local/include -+CPPFLAGS += -DUSE_OPENSSL -DUSE_CARES -DUSE_IPV6 -DUSE_PTHREADS -+CPPFLAGS += -DHAVE_STRLCPY -DHAVE_STRLCAT -+CPPFLAGS += -D_REENTRANT - - # - # Setup our targets Index: files/patch-src::lookup.c =================================================================== RCS file: files/patch-src::lookup.c diff -N files/patch-src::lookup.c --- files/patch-src::lookup.c 4 Oct 2009 02:20:08 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,29 +0,0 @@ ---- src/lookup.c.orig 2009-10-04 10:13:19.191192582 +0800 -+++ src/lookup.c 2009-10-04 10:15:44.531364833 +0800 -@@ -2037,7 +2037,7 @@ - } /* lookup_additional_query() */ - - --static void lookup_catch_ares(void *, int, unsigned char *, int); -+static void lookup_catch_ares(void *, int, int, unsigned char *, int); - - static void lookup_issue_query(struct lookup *l, struct lookup_query *q, const char *qname, size_t qnamelen, int rtype) { - struct ares_channel *c; -@@ -2052,7 +2052,7 @@ - q->channel = c; - - if (l->opts.query_max != 0 && q->live_queries_made >= l->opts.query_max) { -- lookup_catch_ares(q, ARES_ENODATA, NULL, 0); -+ lookup_catch_ares(q, ARES_ENODATA, 0, NULL, 0); - } else { - ++q->live_queries_made; - ares_query(c->channel, qname, C_IN, lookup_rtype2arpa(rtype), lookup_catch_ares, q); -@@ -2708,7 +2708,7 @@ - } /* lookup_process() */ - - --static void lookup_catch_ares(void *l_, int ares_errno, unsigned char *abuf, int alen) { -+static void lookup_catch_ares(void *l_, int ares_errno, int timeouts, unsigned char *abuf, int alen) { - int lookup_errno = LOOKUP_ESUCCESS; - struct lookup_query *q; - struct lookup *l; --- libevnet.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 29 20:50:22 2009 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 909A5106568F; Sun, 29 Nov 2009 20:50:22 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6906F8FC15; Sun, 29 Nov 2009 20:50:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nATKoMmU066879; Sun, 29 Nov 2009 20:50:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nATKoM7d066870; Sun, 29 Nov 2009 20:50:22 GMT (envelope-from edwin) Date: Sun, 29 Nov 2009 20:50:22 GMT Message-Id: <200911292050.nATKoM7d066870@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs