From owner-cvs-all@FreeBSD.ORG Sun Feb 24 00:01:07 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C7FD16A401; Sun, 24 Feb 2008 00:01:07 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 46F8C13C45B; Sun, 24 Feb 2008 00:01:07 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1O0179L050800; Sun, 24 Feb 2008 00:01:07 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1O016WU050799; Sun, 24 Feb 2008 00:01:06 GMT (envelope-from imp) Message-Id: <200802240001.m1O016WU050799@repoman.freebsd.org> From: Warner Losh Date: Sun, 24 Feb 2008 00:01:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/find function.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 00:01:07 -0000 imp 2008-02-24 00:01:06 UTC FreeBSD src repository Modified files: usr.bin/find function.c Log: The matching in -lname and -ilname are on the contents of the link itself, not on the type of the file. As such, do a readlink to get the symbolic link's contents and fail to match if the path isn't a symbolic link. Pointed out by: des@ Revision Changes Path 1.60 +10 -5 src/usr.bin/find/function.c From owner-cvs-all@FreeBSD.ORG Sun Feb 24 00:07:01 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4D00C16A402; Sun, 24 Feb 2008 00:07:01 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3E49C13C474; Sun, 24 Feb 2008 00:07:01 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1O071tc052283; Sun, 24 Feb 2008 00:07:01 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1O071xr052282; Sun, 24 Feb 2008 00:07:01 GMT (envelope-from cperciva) Message-Id: <200802240007.m1O071xr052282@repoman.freebsd.org> From: Colin Percival Date: Sun, 24 Feb 2008 00:07:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern uipc_syscalls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 00:07:01 -0000 cperciva 2008-02-24 00:07:00 UTC FreeBSD src repository Modified files: sys/kern uipc_syscalls.c Log: After finishing sending file data in sendfile(2), don't forget to send the provided trailers. This has been broken since revision 1.240. Submitted by: Dan Nelson PR: kern/120948 "sounds ok to me" from: phk MFC after: 3 days Revision Changes Path 1.269 +3 -1 src/sys/kern/uipc_syscalls.c From owner-cvs-all@FreeBSD.ORG Sun Feb 24 00:07:42 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3A69416A401; Sun, 24 Feb 2008 00:07:42 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 41C8013C500; Sun, 24 Feb 2008 00:07:42 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1O07ga1052349; Sun, 24 Feb 2008 00:07:42 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1O07goQ052348; Sun, 24 Feb 2008 00:07:42 GMT (envelope-from delphij) Message-Id: <200802240007.m1O07goQ052348@repoman.freebsd.org> From: Xin LI Date: Sun, 24 Feb 2008 00:07:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/csync2 Makefile distinfo ports/net/csync2/files patch-Makefile.am patch-Makefile.in patch-getrealfn.c patch-rsync.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 00:07:42 -0000 delphij 2008-02-24 00:07:41 UTC FreeBSD ports repository Modified files: net/csync2 Makefile distinfo Added files: net/csync2/files patch-Makefile.am patch-Makefile.in Removed files: net/csync2/files patch-getrealfn.c patch-rsync.c Log: Update to 1.34. Approved by: maintainer timeout PR: ports/119742 Revision Changes Path 1.5 +4 -5 ports/net/csync2/Makefile 1.2 +3 -3 ports/net/csync2/distinfo 1.1 +20 -0 ports/net/csync2/files/patch-Makefile.am (new) 1.1 +23 -0 ports/net/csync2/files/patch-Makefile.in (new) 1.2 +0 -11 ports/net/csync2/files/patch-getrealfn.c (dead) 1.2 +0 -11 ports/net/csync2/files/patch-rsync.c (dead) From owner-cvs-all@FreeBSD.ORG Sun Feb 24 00:58:06 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5343716A403; Sun, 24 Feb 2008 00:58:06 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 464E613C448; Sun, 24 Feb 2008 00:58:06 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1O0w4CB064002; Sun, 24 Feb 2008 00:58:04 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1O0w4hv064001; Sun, 24 Feb 2008 00:58:04 GMT (envelope-from gshapiro) Message-Id: <200802240058.m1O0w4hv064001@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Sun, 24 Feb 2008 00:58:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/etc/mail access.sample X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 00:58:06 -0000 gshapiro 2008-02-24 00:58:04 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) etc/mail access.sample Log: MFC: Use better examples (and comment them out for safety). PR: 118837 Submitted by: Matthew Seaman Revision Changes Path 1.4 +13 -6 src/etc/mail/access.sample Revision Changes Path 1.3.24.1 +13 -6 src/etc/mail/access.sample From owner-cvs-all@FreeBSD.ORG Sun Feb 24 00:59:25 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8475516A401; Sun, 24 Feb 2008 00:59:25 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 77A1913C46B; Sun, 24 Feb 2008 00:59:25 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1O0xPae064062; Sun, 24 Feb 2008 00:59:25 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1O0xPPw064061; Sun, 24 Feb 2008 00:59:25 GMT (envelope-from gshapiro) Message-Id: <200802240059.m1O0xPPw064061@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Sun, 24 Feb 2008 00:59:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/etc/mail access.sample X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 00:59:25 -0000 gshapiro 2008-02-24 00:59:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc/mail access.sample Log: MFC: Use better examples (and comment them out for safety). PR: 118837 Submitted by: Matthew Seaman Revision Changes Path 1.4 +13 -6 src/etc/mail/access.sample Revision Changes Path 1.3.14.1 +13 -6 src/etc/mail/access.sample From owner-cvs-all@FreeBSD.ORG Sun Feb 24 00:59:48 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8CD4216A402; Sun, 24 Feb 2008 00:59:48 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8018413C467; Sun, 24 Feb 2008 00:59:48 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1O0xmkS064096; Sun, 24 Feb 2008 00:59:48 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1O0xmJ5064095; Sun, 24 Feb 2008 00:59:48 GMT (envelope-from gshapiro) Message-Id: <200802240059.m1O0xmJ5064095@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Sun, 24 Feb 2008 00:59:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/etc/mail access.sample X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 00:59:48 -0000 gshapiro 2008-02-24 00:59:48 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) etc/mail access.sample Log: MFC: Use better examples (and comment them out for safety). PR: 118837 Submitted by: Matthew Seaman Revision Changes Path 1.4 +13 -6 src/etc/mail/access.sample Revision Changes Path 1.3.8.1 +13 -6 src/etc/mail/access.sample From owner-cvs-all@FreeBSD.ORG Sun Feb 24 01:00:07 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9980B16A401; Sun, 24 Feb 2008 01:00:07 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8CACB13C468; Sun, 24 Feb 2008 01:00:07 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1O107tk064202; Sun, 24 Feb 2008 01:00:07 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1O10783064201; Sun, 24 Feb 2008 01:00:07 GMT (envelope-from gshapiro) Message-Id: <200802240100.m1O10783064201@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Sun, 24 Feb 2008 01:00:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Cc: Subject: cvs commit: src/etc/mail access.sample X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 01:00:07 -0000 gshapiro 2008-02-24 01:00:07 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) etc/mail access.sample Log: MFC: Use better examples (and comment them out for safety). PR: 118837 Submitted by: Matthew Seaman Revision Changes Path 1.4 +13 -6 src/etc/mail/access.sample Revision Changes Path 1.1.2.3 +13 -6 src/etc/mail/access.sample From owner-cvs-all@FreeBSD.ORG Sun Feb 24 01:02:18 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CA59D16A404; Sun, 24 Feb 2008 01:02:18 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BDA2E13C45A; Sun, 24 Feb 2008 01:02:18 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1O12INm064307; Sun, 24 Feb 2008 01:02:18 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1O12Ie6064306; Sun, 24 Feb 2008 01:02:18 GMT (envelope-from gshapiro) Message-Id: <200802240102.m1O12Ie6064306@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Sun, 24 Feb 2008 01:02:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/etc/sendmail freebsd.mc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 01:02:18 -0000 gshapiro 2008-02-24 01:02:18 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) etc/sendmail freebsd.mc Log: MFC: Fix quoting for the dnsbl example -- m4 misparses quoted strings with commas due to our deconstruction of the line in cf/feature/dnsbl.m4. PR: 120038 Submitted by: mattijs vreeling Revision Changes Path 1.36 +1 -1 src/etc/sendmail/freebsd.mc Revision Changes Path 1.34.2.2 +1 -1 src/etc/sendmail/freebsd.mc From owner-cvs-all@FreeBSD.ORG Sun Feb 24 01:03:11 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 634F316A404; Sun, 24 Feb 2008 01:03:11 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 56E2613C47E; Sun, 24 Feb 2008 01:03:11 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1O13BvL065559; Sun, 24 Feb 2008 01:03:11 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1O13BN1065558; Sun, 24 Feb 2008 01:03:11 GMT (envelope-from gshapiro) Message-Id: <200802240103.m1O13BN1065558@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Sun, 24 Feb 2008 01:03:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/etc/sendmail freebsd.mc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 01:03:11 -0000 gshapiro 2008-02-24 01:03:11 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc/sendmail freebsd.mc Log: MFC: Fix quoting for the dnsbl example -- m4 misparses quoted strings with commas due to our deconstruction of the line in cf/feature/dnsbl.m4. PR: 120038 Submitted by: mattijs vreeling Revision Changes Path 1.36 +1 -1 src/etc/sendmail/freebsd.mc Revision Changes Path 1.30.2.5 +1 -1 src/etc/sendmail/freebsd.mc From owner-cvs-all@FreeBSD.ORG Sun Feb 24 01:03:24 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CBC3816A40D; Sun, 24 Feb 2008 01:03:24 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BE72513C469; Sun, 24 Feb 2008 01:03:24 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1O13O3K065589; Sun, 24 Feb 2008 01:03:24 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1O13Oha065588; Sun, 24 Feb 2008 01:03:24 GMT (envelope-from gshapiro) Message-Id: <200802240103.m1O13Oha065588@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Sun, 24 Feb 2008 01:03:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/etc/sendmail freebsd.mc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 01:03:24 -0000 gshapiro 2008-02-24 01:03:24 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) etc/sendmail freebsd.mc Log: MFC: Fix quoting for the dnsbl example -- m4 misparses quoted strings with commas due to our deconstruction of the line in cf/feature/dnsbl.m4. PR: 120038 Submitted by: mattijs vreeling Revision Changes Path 1.36 +1 -1 src/etc/sendmail/freebsd.mc Revision Changes Path 1.29.2.5 +1 -1 src/etc/sendmail/freebsd.mc From owner-cvs-all@FreeBSD.ORG Sun Feb 24 01:03:34 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4A18E16A406; Sun, 24 Feb 2008 01:03:34 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3DBB813C44B; Sun, 24 Feb 2008 01:03:34 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1O13Yjl065619; Sun, 24 Feb 2008 01:03:34 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1O13X6d065618; Sun, 24 Feb 2008 01:03:33 GMT (envelope-from gshapiro) Message-Id: <200802240103.m1O13X6d065618@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Sun, 24 Feb 2008 01:03:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Cc: Subject: cvs commit: src/etc/sendmail freebsd.mc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 01:03:34 -0000 gshapiro 2008-02-24 01:03:33 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) etc/sendmail freebsd.mc Log: MFC: Fix quoting for the dnsbl example -- m4 misparses quoted strings with commas due to our deconstruction of the line in cf/feature/dnsbl.m4. PR: 120038 Submitted by: mattijs vreeling Revision Changes Path 1.36 +1 -1 src/etc/sendmail/freebsd.mc Revision Changes Path 1.10.2.24 +1 -1 src/etc/sendmail/freebsd.mc From owner-cvs-all@FreeBSD.ORG Sun Feb 24 01:09:51 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D356F16A404 for ; Sun, 24 Feb 2008 01:09:51 +0000 (UTC) (envelope-from andre@freebsd.org) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.freebsd.org (Postfix) with ESMTP id 5D5C313C46B for ; Sun, 24 Feb 2008 01:09:51 +0000 (UTC) (envelope-from andre@freebsd.org) Received: (qmail 83386 invoked from network); 24 Feb 2008 00:25:23 -0000 Received: from localhost (HELO [127.0.0.1]) ([127.0.0.1]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 24 Feb 2008 00:25:23 -0000 Message-ID: <47C0C3DF.1080700@freebsd.org> Date: Sun, 24 Feb 2008 02:09:51 +0100 From: Andre Oppermann User-Agent: Thunderbird 1.5.0.14 (Windows/20071210) MIME-Version: 1.0 To: Colin Percival References: <200802240007.m1O071xr052282@repoman.freebsd.org> In-Reply-To: <200802240007.m1O071xr052282@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern uipc_syscalls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 01:09:51 -0000 Colin Percival wrote: > cperciva 2008-02-24 00:07:00 UTC > > FreeBSD src repository > > Modified files: > sys/kern uipc_syscalls.c > Log: > After finishing sending file data in sendfile(2), don't forget to send > the provided trailers. This has been broken since revision 1.240. > > Submitted by: Dan Nelson > PR: kern/120948 > "sounds ok to me" from: phk It is correct. > MFC after: 3 days > > Revision Changes Path > 1.269 +3 -1 src/sys/kern/uipc_syscalls.c Pointy hat extra wide and extra long to /me for not having written a proper regression program. Mea culpa. Shall happen never again. The implementation of kern_sendfile() is a damn complex beast. -- Andre From owner-cvs-all@FreeBSD.ORG Sun Feb 24 03:01:27 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8915E16A406; Sun, 24 Feb 2008 03:01:27 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6F3E313C43E; Sun, 24 Feb 2008 03:01:27 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1O31ReN073107; Sun, 24 Feb 2008 03:01:27 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1O31R4E073106; Sun, 24 Feb 2008 03:01:27 GMT (envelope-from marcel) Message-Id: <200802240301.m1O31R4E073106@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 24 Feb 2008 03:01:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/powerpc/fpu fpu_add.c fpu_emu.c fpu_emu.h fpu_extern.h fpu_subr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 03:01:27 -0000 marcel 2008-02-24 03:01:26 UTC FreeBSD src repository Modified files: sys/powerpc/fpu fpu_add.c fpu_emu.c fpu_emu.h fpu_extern.h fpu_subr.c Log: Resolve warnings exposed by LINT. o Put prototypes in a single header only. o Fix printf format specifiers. Revision Changes Path 1.2 +0 -1 src/sys/powerpc/fpu/fpu_add.c 1.2 +3 -3 src/sys/powerpc/fpu/fpu_emu.c 1.2 +2 -0 src/sys/powerpc/fpu/fpu_emu.h 1.2 +0 -21 src/sys/powerpc/fpu/fpu_extern.h 1.2 +0 -1 src/sys/powerpc/fpu/fpu_subr.c From owner-cvs-all@FreeBSD.ORG Sun Feb 24 03:11:57 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EC4DC16A401; Sun, 24 Feb 2008 03:11:57 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E17AA13C45A; Sun, 24 Feb 2008 03:11:57 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1O3BvKX074792; Sun, 24 Feb 2008 03:11:57 GMT (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1O3BvGJ074791; Sun, 24 Feb 2008 03:11:57 GMT (envelope-from linimon) Message-Id: <200802240311.m1O3BvGJ074791@repoman.freebsd.org> From: Mark Linimon Date: Sun, 24 Feb 2008 03:11:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/openldap24-server/files manpages X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 03:11:58 -0000 linimon 2008-02-24 03:11:57 UTC FreeBSD ports repository Modified files: net/openldap24-server/files manpages Log: Fix plist of slave ports. Hat: portmgr Revision Changes Path 1.19 +2 -1 ports/net/openldap24-server/files/manpages From owner-cvs-all@FreeBSD.ORG Sun Feb 24 03:18:14 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C90A716A409; Sun, 24 Feb 2008 03:18:14 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BD11213C467; Sun, 24 Feb 2008 03:18:14 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1O3IE7v075819; Sun, 24 Feb 2008 03:18:14 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1O3IE8E075818; Sun, 24 Feb 2008 03:18:14 GMT (envelope-from miwi) Message-Id: <200802240318.m1O3IE8E075818@repoman.freebsd.org> From: Martin Wilke Date: Sun, 24 Feb 2008 03:18:14 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/math/p5-Math-Random-MT-Auto Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 03:18:14 -0000 miwi 2008-02-24 03:18:14 UTC FreeBSD ports repository Modified files: math/p5-Math-Random-MT-Auto Makefile distinfo Log: - Update to 6.11 Revision Changes Path 1.9 +1 -1 ports/math/p5-Math-Random-MT-Auto/Makefile 1.8 +3 -3 ports/math/p5-Math-Random-MT-Auto/distinfo From owner-cvs-all@FreeBSD.ORG Sun Feb 24 05:13:21 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3AA0316A407; Sun, 24 Feb 2008 05:13:21 +0000 (UTC) (envelope-from silby@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4924713C455; Sun, 24 Feb 2008 05:13:21 +0000 (UTC) (envelope-from silby@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1O5DKFx093032; Sun, 24 Feb 2008 05:13:20 GMT (envelope-from silby@repoman.freebsd.org) Received: (from silby@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1O5DKBG093031; Sun, 24 Feb 2008 05:13:20 GMT (envelope-from silby) Message-Id: <200802240513.m1O5DKBG093031@repoman.freebsd.org> From: Mike Silbersack Date: Sun, 24 Feb 2008 05:13:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet tcp_var.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 05:13:21 -0000 silby 2008-02-24 05:13:20 UTC FreeBSD src repository Modified files: sys/netinet tcp_var.h Log: Change FreeBSD 7 so that it returns TCP options in the same order that FreeBSD 6 and before did. Doug White and the other bloodhounds at ISC discovered that while FreeBSD 7's ordering of options was more efficient, it caused some cable modem routers to ignore the SYN-ACKs ordered in this fashion. The placement of sackOK after the timestamp option seems to be the critical difference: FreeBSD 6: FreeBSD 7.0: FreeBSD 7.0 + this change: MFC after: 1 week Revision Changes Path 1.161 +5 -2 src/sys/netinet/tcp_var.h From owner-cvs-all@FreeBSD.ORG Sun Feb 24 05:16:55 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CEF7C16A400; Sun, 24 Feb 2008 05:16:55 +0000 (UTC) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C5B7A13C461; Sun, 24 Feb 2008 05:16:55 +0000 (UTC) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1O5Gt3X093422; Sun, 24 Feb 2008 05:16:55 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1O5Gt41093421; Sun, 24 Feb 2008 05:16:55 GMT (envelope-from kensmith) Message-Id: <200802240516.m1O5Gt41093421@repoman.freebsd.org> From: Ken Smith Date: Sun, 24 Feb 2008 05:16:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 05:16:55 -0000 kensmith 2008-02-24 05:16:55 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) . UPDATING Log: Speculate on the release date for FreeBSD 7.0. Revision Changes Path 1.507.2.5 +3 -0 src/UPDATING From owner-cvs-all@FreeBSD.ORG Sun Feb 24 05:17:54 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 799BB16A403; Sun, 24 Feb 2008 05:17:54 +0000 (UTC) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 705F513C45B; Sun, 24 Feb 2008 05:17:54 +0000 (UTC) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1O5HsRJ093531; Sun, 24 Feb 2008 05:17:54 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1O5HsQG093530; Sun, 24 Feb 2008 05:17:54 GMT (envelope-from kensmith) Message-Id: <200802240517.m1O5HsQG093530@repoman.freebsd.org> From: Ken Smith Date: Sun, 24 Feb 2008 05:17:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7_0 Cc: Subject: cvs commit: src UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 05:17:54 -0000 kensmith 2008-02-24 05:17:54 UTC FreeBSD src repository Modified files: (Branch: RELENG_7_0) . UPDATING Log: Speculate on the release date for FreeBSD 7.0. Approved by: re (implicit) Revision Changes Path 1.507.2.3.2.4 +3 -0 src/UPDATING From owner-cvs-all@FreeBSD.ORG Sun Feb 24 05:45:17 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B0F4516A402; Sun, 24 Feb 2008 05:45:17 +0000 (UTC) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A68DF13C457; Sun, 24 Feb 2008 05:45:17 +0000 (UTC) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1O5jHM4000807; Sun, 24 Feb 2008 05:45:17 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1O5jHGB000806; Sun, 24 Feb 2008 05:45:17 GMT (envelope-from kensmith) Message-Id: <200802240545.m1O5jHGB000806@repoman.freebsd.org> From: Ken Smith Date: Sun, 24 Feb 2008 05:45:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7_0 Cc: Subject: cvs commit: src/sys/conf newvers.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 05:45:17 -0000 kensmith 2008-02-24 05:45:17 UTC FreeBSD src repository Modified files: (Branch: RELENG_7_0) sys/conf newvers.sh Log: Prepare for tagging RELENG_7_0_0_RELEASE and the 7.0-RELEASE builds. Approved by: re (implicit) Revision Changes Path 1.72.2.5.2.4 +1 -1 src/sys/conf/newvers.sh From owner-cvs-all@FreeBSD.ORG Sun Feb 24 05:55:05 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 669C816A401; Sun, 24 Feb 2008 05:55:05 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5291F13C45D; Sun, 24 Feb 2008 05:55:05 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1O5t5uX001230; Sun, 24 Feb 2008 05:55:05 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1O5t5J4001229; Sun, 24 Feb 2008 05:55:05 GMT (envelope-from bmah) Message-Id: <200802240555.m1O5t5J4001229@repoman.freebsd.org> From: "Bruce A. Mah" Date: Sun, 24 Feb 2008 05:55:04 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/releases/7.0R Makefile errata.html hardware.html readme.html relnotes.html X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 05:55:05 -0000 bmah 2008-02-24 05:55:04 UTC FreeBSD doc repository Modified files: en/releases/7.0R Makefile Added files: en/releases/7.0R errata.html hardware.html readme.html relnotes.html Log: In anticipation of 7.0-RELEASE, add its release documentation to the Web site and hook up to the Web build. Revision Changes Path 1.3 +5 -1 www/en/releases/7.0R/Makefile 1.1 +125 -0 www/en/releases/7.0R/errata.html (new) 1.1 +9698 -0 www/en/releases/7.0R/hardware.html (new) 1.1 +403 -0 www/en/releases/7.0R/readme.html (new) 1.1 +2294 -0 www/en/releases/7.0R/relnotes.html (new) From owner-cvs-all@FreeBSD.ORG Sun Feb 24 07:02:50 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6864916A401; Sun, 24 Feb 2008 07:02:50 +0000 (UTC) (envelope-from das@FreeBSD.ORG) Received: from zim.MIT.EDU (ZIM.MIT.EDU [18.95.3.101]) by mx1.freebsd.org (Postfix) with ESMTP id 4652413C461; Sun, 24 Feb 2008 07:02:50 +0000 (UTC) (envelope-from das@FreeBSD.ORG) Received: from zim.MIT.EDU (localhost [127.0.0.1]) by zim.MIT.EDU (8.14.2/8.14.2) with ESMTP id m1O6cajQ042834; Sun, 24 Feb 2008 01:38:36 -0500 (EST) (envelope-from das@FreeBSD.ORG) Received: (from das@localhost) by zim.MIT.EDU (8.14.2/8.14.2/Submit) id m1O6cane042833; Sun, 24 Feb 2008 01:38:36 -0500 (EST) (envelope-from das@FreeBSD.ORG) Date: Sun, 24 Feb 2008 01:38:36 -0500 From: David Schultz To: Marcel Moolenaar Message-ID: <20080224063836.GB42714@zim.MIT.EDU> Mail-Followup-To: Marcel Moolenaar , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <200802232005.m1NK5R60022761@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200802232005.m1NK5R60022761@repoman.freebsd.org> Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/powerpc/fpu fpu_add.c fpu_arith.h fpu_compare.c fpu_div.c fpu_emu.c fpu_emu.h fpu_explode.c fpu_extern.h fpu_implode.c fpu_instr.h fpu_mul.c fpu_sqrt.c fpu_subr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 07:02:50 -0000 On Sat, Feb 23, 2008, Marcel Moolenaar wrote: > marcel 2008-02-23 20:05:27 UTC > > FreeBSD src repository > > Added files: > sys/powerpc/fpu fpu_add.c fpu_arith.h fpu_compare.c > fpu_div.c fpu_emu.c fpu_emu.h > fpu_explode.c fpu_extern.h fpu_implode.c > fpu_instr.h fpu_mul.c fpu_sqrt.c > fpu_subr.c > Log: > Add a floating-point emulator so that a single userland or single ABI > can run on processors that don't have a FPU. This is typically the > case for Book E processors. While a tuned system will probably want > to use soft-float (or use a processor that has a FPU if the usage is > FP intensive enough), allowing hard-float on FPU-less systems gives > great portability and flexibility. > > Obtained from: NetBSD It looks like everything except for fpu_emu.? and fpu_instr.h is pretty generic, and surely there are other architectures (e.g., ARM, low-power 486-SX clones) that could use in-kernel FP emulation. Do you think it's worthwhile to separate the MI bits and put them somewhere other than sys/powerpc, or is the plan to burn that bridge when we get to it? From owner-cvs-all@FreeBSD.ORG Sun Feb 24 07:19:31 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D49A816A401; Sun, 24 Feb 2008 07:19:31 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id CB28913C442; Sun, 24 Feb 2008 07:19:31 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1O7JVAL021225; Sun, 24 Feb 2008 07:19:31 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1O7JVGf021224; Sun, 24 Feb 2008 07:19:31 GMT (envelope-from kmacy) Message-Id: <200802240719.m1O7JVGf021224@repoman.freebsd.org> From: Kip Macy Date: Sun, 24 Feb 2008 07:19:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/cxgb cxgb_offload.h src/sys/dev/cxgb/ulp/tom cxgb_cpl_io.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 07:19:32 -0000 kmacy 2008-02-24 07:19:31 UTC FreeBSD src repository Modified files: sys/dev/cxgb cxgb_offload.h sys/dev/cxgb/ulp/tom cxgb_cpl_io.c Log: Fix namespace collision with sparc macro Revision Changes Path 1.8 +1 -1 src/sys/dev/cxgb/cxgb_offload.h 1.5 +5 -5 src/sys/dev/cxgb/ulp/tom/cxgb_cpl_io.c From owner-cvs-all@FreeBSD.ORG Sun Feb 24 07:51:53 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5450D16A4FF; Sun, 24 Feb 2008 07:51:53 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 2E0A313C4CE; Sun, 24 Feb 2008 07:51:53 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.2/8.14.1) with ESMTP id m1O7osLF056781; Sun, 24 Feb 2008 00:50:54 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Sun, 24 Feb 2008 00:51:19 -0700 (MST) Message-Id: <20080224.005119.1260396910.imp@bsdimp.com> To: das@freebsd.org From: "M. Warner Losh" In-Reply-To: <20080224063836.GB42714@zim.MIT.EDU> References: <200802232005.m1NK5R60022761@repoman.freebsd.org> <20080224063836.GB42714@zim.MIT.EDU> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: cvs-src@freebsd.org, marcel@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/powerpc/fpu fpu_add.c fpu_arith.h fpu_compare.c fpu_div.c fpu_emu.c fpu_emu.h fpu_explode.c fpu_extern.h fpu_implode.c fpu_instr.h fpu_mul.c fpu_sqrt.c fpu_subr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 07:51:53 -0000 In message: <20080224063836.GB42714@zim.MIT.EDU> David Schultz writes: : On Sat, Feb 23, 2008, Marcel Moolenaar wrote: : > marcel 2008-02-23 20:05:27 UTC : > : > FreeBSD src repository : > : > Added files: : > sys/powerpc/fpu fpu_add.c fpu_arith.h fpu_compare.c : > fpu_div.c fpu_emu.c fpu_emu.h : > fpu_explode.c fpu_extern.h fpu_implode.c : > fpu_instr.h fpu_mul.c fpu_sqrt.c : > fpu_subr.c : > Log: : > Add a floating-point emulator so that a single userland or single ABI : > can run on processors that don't have a FPU. This is typically the : > case for Book E processors. While a tuned system will probably want : > to use soft-float (or use a processor that has a FPU if the usage is : > FP intensive enough), allowing hard-float on FPU-less systems gives : > great portability and flexibility. : > : > Obtained from: NetBSD : : It looks like everything except for fpu_emu.? and fpu_instr.h is : pretty generic, and surely there are other architectures (e.g., : ARM, low-power 486-SX clones) that could use in-kernel FP emulation. : Do you think it's worthwhile to separate the MI bits and put them : somewhere other than sys/powerpc, or is the plan to burn that : bridge when we get to it? I'd say the first new architecture to want to use this (ARM, 486SX or MIPS) should pay the freight for that. Warner From owner-cvs-all@FreeBSD.ORG Sun Feb 24 08:04:23 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B8E6316A400; Sun, 24 Feb 2008 08:04:23 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id ADB8813C46B; Sun, 24 Feb 2008 08:04:23 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1O84NgV021912; Sun, 24 Feb 2008 08:04:23 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1O84NDu021911; Sun, 24 Feb 2008 08:04:23 GMT (envelope-from kuriyama) Message-Id: <200802240804.m1O84NDu021911@repoman.freebsd.org> From: Jun Kuriyama Date: Sun, 24 Feb 2008 08:04:22 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/p5-Catalyst-View-JSON Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 08:04:23 -0000 kuriyama 2008-02-24 08:04:22 UTC FreeBSD ports repository Modified files: www/p5-Catalyst-View-JSON Makefile distinfo pkg-plist Log: - Upgrade to 0.22. - Use CPAN macro. - Use @dirrmtry in plist. PR: ports/120600 Submitted by: Felippe de Meirelles Motta Revision Changes Path 1.6 +4 -5 ports/www/p5-Catalyst-View-JSON/Makefile 1.5 +3 -3 ports/www/p5-Catalyst-View-JSON/distinfo 1.2 +2 -2 ports/www/p5-Catalyst-View-JSON/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Feb 24 08:11:57 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A0DD116A506; Sun, 24 Feb 2008 08:11:57 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9562213C43E; Sun, 24 Feb 2008 08:11:57 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1O8BvVd021989; Sun, 24 Feb 2008 08:11:57 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1O8BvkH021988; Sun, 24 Feb 2008 08:11:57 GMT (envelope-from kuriyama) Message-Id: <200802240811.m1O8BvkH021988@repoman.freebsd.org> From: Jun Kuriyama Date: Sun, 24 Feb 2008 08:11:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/p5-Mail-Tools Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 08:11:57 -0000 kuriyama 2008-02-24 08:11:57 UTC FreeBSD ports repository Modified files: mail/p5-Mail-Tools Makefile distinfo pkg-plist Log: - Upgrade to 2.02. - Use CPAN macro. PR: ports/120599 Submitted by: Felippe de Meirelles Motta Revision Changes Path 1.47 +5 -11 ports/mail/p5-Mail-Tools/Makefile 1.28 +3 -3 ports/mail/p5-Mail-Tools/distinfo 1.20 +18 -22 ports/mail/p5-Mail-Tools/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Feb 24 08:43:22 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5D35916A401; Sun, 24 Feb 2008 08:43:22 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 67F5913C45E; Sun, 24 Feb 2008 08:43:22 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1O8hMvP022235; Sun, 24 Feb 2008 08:43:22 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1O8hMqd022234; Sun, 24 Feb 2008 08:43:22 GMT (envelope-from rafan) Message-Id: <200802240843.m1O8hMqd022234@repoman.freebsd.org> From: Rong-En Fan Date: Sun, 24 Feb 2008 08:43:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia Makefile ports/multimedia/smilutils Makefile distinfo pkg-descr pkg-plist ports/multimedia/smilutils/files patch-apps__ffmpeg2raw__Makefile.am X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 08:43:22 -0000 rafan 2008-02-24 08:43:21 UTC FreeBSD ports repository Modified files: multimedia Makefile Added files: multimedia/smilutils Makefile distinfo pkg-descr pkg-plist multimedia/smilutils/files patch-apps__ffmpeg2raw__Makefile.am Log: Smilutils is a collection of command line utilities for Digital Video manipulation. Note: Sources are available through cvs. WWW: http://sourceforge.net/projects/kino/ WWW: http://users.pandora.be/acp/kino/smilutils.html PR: ports/120981 Submitted by: Diego Depaoli Revision Changes Path 1.252 +1 -0 ports/multimedia/Makefile 1.1 +82 -0 ports/multimedia/smilutils/Makefile (new) 1.1 +3 -0 ports/multimedia/smilutils/distinfo (new) 1.1 +11 -0 ports/multimedia/smilutils/files/patch-apps__ffmpeg2raw__Makefile.am (new) 1.1 +7 -0 ports/multimedia/smilutils/pkg-descr (new) 1.1 +28 -0 ports/multimedia/smilutils/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sun Feb 24 08:43:32 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7BC4816A402; Sun, 24 Feb 2008 08:43:32 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6ED6A13C442; Sun, 24 Feb 2008 08:43:32 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1O8hW8D022268; Sun, 24 Feb 2008 08:43:32 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1O8hW41022267; Sun, 24 Feb 2008 08:43:32 GMT (envelope-from rafan) Message-Id: <200802240843.m1O8hW41022267@repoman.freebsd.org> From: Rong-En Fan Date: Sun, 24 Feb 2008 08:43:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 08:43:32 -0000 rafan 2008-02-24 08:43:32 UTC FreeBSD ports repository Modified files: . modules Log: smilutils --> ports/multimedia/smilutils Revision Changes Path 1.19430 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Feb 24 08:44:16 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8A93C16A403; Sun, 24 Feb 2008 08:44:16 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9601313C447; Sun, 24 Feb 2008 08:44:16 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1O8iG1K022349; Sun, 24 Feb 2008 08:44:16 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1O8iGLs022348; Sun, 24 Feb 2008 08:44:16 GMT (envelope-from rafan) Message-Id: <200802240844.m1O8iGLs022348@repoman.freebsd.org> From: Rong-En Fan Date: Sun, 24 Feb 2008 08:44:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/manslide Makefile distinfo pkg-descr pkg-message pkg-plist ports/multimedia/manslide/files patch-mainfrm.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 08:44:16 -0000 rafan 2008-02-24 08:44:16 UTC FreeBSD ports repository Modified files: multimedia/manslide Makefile distinfo pkg-descr pkg-plist Added files: multimedia/manslide/files patch-mainfrm.cpp Removed files: multimedia/manslide pkg-message Log: - Update to 2.0.1 PR: ports/120982 Submitted by: Diego Depaoli (maintainer) Revision Changes Path 1.11 +24 -31 ports/multimedia/manslide/Makefile 1.6 +3 -3 ports/multimedia/manslide/distinfo 1.1 +14 -0 ports/multimedia/manslide/files/patch-mainfrm.cpp (new) 1.2 +2 -2 ports/multimedia/manslide/pkg-descr 1.2 +0 -15 ports/multimedia/manslide/pkg-message (dead) 1.5 +374 -747 ports/multimedia/manslide/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Feb 24 08:45:42 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A5A7116A403; Sun, 24 Feb 2008 08:45:42 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 99EC813C448; Sun, 24 Feb 2008 08:45:42 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1O8jgBn022389; Sun, 24 Feb 2008 08:45:42 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1O8jgLY022388; Sun, 24 Feb 2008 08:45:42 GMT (envelope-from rafan) Message-Id: <200802240845.m1O8jgLY022388@repoman.freebsd.org> From: Rong-En Fan Date: Sun, 24 Feb 2008 08:45:42 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/gdal Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 08:45:42 -0000 rafan 2008-02-24 08:45:42 UTC FreeBSD ports repository Modified files: graphics/gdal Makefile Log: - Add OPTIONS to explicitly handle dependencies This committed version is based on the PR and reworked by the maintainer. PR: ports/120977 (based on) Submitted by: TAOKA Fumiyoshi Approved by: maintainer Revision Changes Path 1.26 +217 -34 ports/graphics/gdal/Makefile From owner-cvs-all@FreeBSD.ORG Sun Feb 24 10:13:33 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9C00416A402; Sun, 24 Feb 2008 10:13:33 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8640513C4CC; Sun, 24 Feb 2008 10:13:33 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OADXT8024837; Sun, 24 Feb 2008 10:13:33 GMT (envelope-from mav@repoman.freebsd.org) Received: (from mav@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OADXgi024836; Sun, 24 Feb 2008 10:13:33 GMT (envelope-from mav) Message-Id: <200802241013.m1OADXgi024836@repoman.freebsd.org> From: Alexander Motin Date: Sun, 24 Feb 2008 10:13:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netgraph ng_tee.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 10:13:33 -0000 mav 2008-02-24 10:13:32 UTC FreeBSD src repository Modified files: sys/netgraph ng_tee.c Log: Fix shutdown bug made by previous commit. Revision Changes Path 1.35 +1 -0 src/sys/netgraph/ng_tee.c From owner-cvs-all@FreeBSD.ORG Sun Feb 24 10:19:41 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B031816A400; Sun, 24 Feb 2008 10:19:41 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 991A113C44B; Sun, 24 Feb 2008 10:19:41 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OAJfZW025018; Sun, 24 Feb 2008 10:19:41 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OAJfti025017; Sun, 24 Feb 2008 10:19:41 GMT (envelope-from chinsan) Message-Id: <200802241019.m1OAJfti025017@repoman.freebsd.org> From: Chin-San Huang Date: Sun, 24 Feb 2008 10:19:40 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/zh_TW.Big5/books/faq book.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 10:19:41 -0000 chinsan 2008-02-24 10:19:40 UTC FreeBSD doc repository Modified files: zh_TW.Big5/books/faq book.sgml Log: - Update #bsdchat channel Submitted by: whsyu Obtained from: The FreeBSD Traditional Chinese Project https://opensvn.csie.org/traccgi/freebsddoc/wiki Revision Changes Path 1.26 +4 -6 doc/zh_TW.Big5/books/faq/book.sgml From owner-cvs-all@FreeBSD.ORG Sun Feb 24 10:23:34 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CCB3316A400; Sun, 24 Feb 2008 10:23:34 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B43B813C447; Sun, 24 Feb 2008 10:23:29 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OANTb5025211; Sun, 24 Feb 2008 10:23:29 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OANT67025210; Sun, 24 Feb 2008 10:23:29 GMT (envelope-from chinsan) Message-Id: <200802241023.m1OANT67025210@repoman.freebsd.org> From: Chin-San Huang Date: Sun, 24 Feb 2008 10:23:29 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/books/faq book.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 10:23:34 -0000 chinsan 2008-02-24 10:23:29 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/faq book.sgml Log: - Update #bsdchat channel Submitted by: whsyu Obtained from: The FreeBSD Traditional Chinese Project https://opensvn.csie.org/traccgi/freebsddoc/wiki Revision Changes Path 1.809 +3 -3 doc/en_US.ISO8859-1/books/faq/book.sgml From owner-cvs-all@FreeBSD.ORG Sun Feb 24 11:03:56 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 768EF16A400; Sun, 24 Feb 2008 11:03:56 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5813C13C45D; Sun, 24 Feb 2008 11:03:56 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OB3uRL027612; Sun, 24 Feb 2008 11:03:56 GMT (envelope-from beech@repoman.freebsd.org) Received: (from beech@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OB3tFG027611; Sun, 24 Feb 2008 11:03:55 GMT (envelope-from beech) Message-Id: <200802241103.m1OB3tFG027611@repoman.freebsd.org> From: Beech Rintoul Date: Sun, 24 Feb 2008 11:03:55 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/vnstat Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 11:03:56 -0000 beech 2008-02-24 11:03:55 UTC FreeBSD ports repository Modified files: net/vnstat Makefile Log: - Fix install/uninstall of vnstat.conf and var/db/vnstat so data won't be overwritten. - Minor tweaks - Bump portrevision PR: ports/120968 Submitted by: Dennis Herrmann (maintainer) Revision Changes Path 1.3 +2 -2 ports/net/vnstat/Makefile From owner-cvs-all@FreeBSD.ORG Sun Feb 24 11:07:30 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C6DD816A402; Sun, 24 Feb 2008 11:07:30 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [209.31.154.42]) by mx1.freebsd.org (Postfix) with ESMTP id 8432513C4F5; Sun, 24 Feb 2008 11:07:30 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id 00A7A46B42; Sun, 24 Feb 2008 06:07:30 -0500 (EST) Date: Sun, 24 Feb 2008 11:07:29 +0000 (GMT) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Colin Percival In-Reply-To: <200802240007.m1O071xr052282@repoman.freebsd.org> Message-ID: <20080224110613.X25292@fledge.watson.org> References: <200802240007.m1O071xr052282@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern uipc_syscalls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 11:07:30 -0000 On Sun, 24 Feb 2008, Colin Percival wrote: > cperciva 2008-02-24 00:07:00 UTC > > FreeBSD src repository > > Modified files: > sys/kern uipc_syscalls.c > Log: > After finishing sending file data in sendfile(2), don't forget to send > the provided trailers. This has been broken since revision 1.240. Nice work tracking this down -- it sounds like the perfect candidate for a regression test. Over the last year or two, we've been working hard to populate src/tools/regression/sockets with various test cases, and it sounds like the sendfile tests there could use some fleshing out, since we've now seen several rather significant functional regressions over the last few years. Any chance we can get you to take a look at doing that as well? :-) Robert N M Watson Computer Laboratory University of Cambridge From owner-cvs-all@FreeBSD.ORG Sun Feb 24 11:13:14 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E950D16A404; Sun, 24 Feb 2008 11:13:14 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C8C3E13C468; Sun, 24 Feb 2008 11:13:14 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OBDEVM027982; Sun, 24 Feb 2008 11:13:14 GMT (envelope-from beech@repoman.freebsd.org) Received: (from beech@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OBDDgh027981; Sun, 24 Feb 2008 11:13:13 GMT (envelope-from beech) Message-Id: <200802241113.m1OBDDgh027981@repoman.freebsd.org> From: Beech Rintoul Date: Sun, 24 Feb 2008 11:13:09 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/vnstat pkg-plist ports/net/vnstat/files patch-Makefile pkg-message.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 11:13:15 -0000 beech 2008-02-24 11:13:09 UTC FreeBSD ports repository Modified files: net/vnstat pkg-plist net/vnstat/files patch-Makefile pkg-message.in Log: - Add files missed in last commit PR: ports/120968 Submitted by: Dennis Herrmann (maintainer) Revision Changes Path 1.2 +6 -6 ports/net/vnstat/files/patch-Makefile 1.2 +2 -1 ports/net/vnstat/files/pkg-message.in 1.2 +3 -2 ports/net/vnstat/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Feb 24 12:11:30 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C773316A401; Sun, 24 Feb 2008 12:11:30 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A005513C469; Sun, 24 Feb 2008 12:11:30 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OCBU92030934; Sun, 24 Feb 2008 12:11:30 GMT (envelope-from jkois@repoman.freebsd.org) Received: (from jkois@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OCBUcU030933; Sun, 24 Feb 2008 12:11:30 GMT (envelope-from jkois) Message-Id: <200802241211.m1OCBUcU030933@repoman.freebsd.org> From: Johann Kois Date: Sun, 24 Feb 2008 12:11:30 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/de_DE.ISO8859-1/books/faq book.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 12:11:30 -0000 jkois 2008-02-24 12:11:30 UTC FreeBSD doc repository Modified files: de_DE.ISO8859-1/books/faq book.sgml Log: MFde: Minor update to the German documentation set. doc/de/books/faq/book.sgml 1.807->1.809 Obtained from: The FreeBSD German Documentation Project Revision Changes Path 1.80 +8 -8 doc/de_DE.ISO8859-1/books/faq/book.sgml From owner-cvs-all@FreeBSD.ORG Sun Feb 24 12:16:02 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0F9A316A401; Sun, 24 Feb 2008 12:16:02 +0000 (UTC) (envelope-from akiyama@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D246813C448; Sun, 24 Feb 2008 12:16:01 +0000 (UTC) (envelope-from akiyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OCG1RD031079; Sun, 24 Feb 2008 12:16:01 GMT (envelope-from akiyama@repoman.freebsd.org) Received: (from akiyama@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OCG1Bx031078; Sun, 24 Feb 2008 12:16:01 GMT (envelope-from akiyama) Message-Id: <200802241216.m1OCG1Bx031078@repoman.freebsd.org> From: Shunsuke Akiyama Date: Sun, 24 Feb 2008 12:16:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb ucom.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 12:16:02 -0000 akiyama 2008-02-24 12:16:01 UTC FreeBSD src repository Modified files: sys/dev/usb ucom.c Log: o Add module event handler. Now ucom kernel module can unload properly. o Update copyright year. PR: usb/88966 MFC after: 1 week Revision Changes Path 1.65 +19 -2 src/sys/dev/usb/ucom.c From owner-cvs-all@FreeBSD.ORG Sun Feb 24 12:22:08 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4A1A216A405 for ; Sun, 24 Feb 2008 12:22:08 +0000 (UTC) (envelope-from andre@freebsd.org) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.freebsd.org (Postfix) with ESMTP id AB3B713C469 for ; Sun, 24 Feb 2008 12:22:07 +0000 (UTC) (envelope-from andre@freebsd.org) Received: (qmail 89414 invoked from network); 24 Feb 2008 11:37:35 -0000 Received: from localhost (HELO [127.0.0.1]) ([127.0.0.1]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 24 Feb 2008 11:37:35 -0000 Message-ID: <47C1616F.5040603@freebsd.org> Date: Sun, 24 Feb 2008 13:22:07 +0100 From: Andre Oppermann User-Agent: Thunderbird 1.5.0.14 (Windows/20071210) MIME-Version: 1.0 To: Robert Watson References: <200802240007.m1O071xr052282@repoman.freebsd.org> <20080224110613.X25292@fledge.watson.org> In-Reply-To: <20080224110613.X25292@fledge.watson.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, Colin Percival Subject: Re: cvs commit: src/sys/kern uipc_syscalls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 12:22:08 -0000 Robert Watson wrote: > On Sun, 24 Feb 2008, Colin Percival wrote: > >> cperciva 2008-02-24 00:07:00 UTC >> >> FreeBSD src repository >> >> Modified files: >> sys/kern uipc_syscalls.c >> Log: >> After finishing sending file data in sendfile(2), don't forget to send >> the provided trailers. This has been broken since revision 1.240. > > Nice work tracking this down -- it sounds like the perfect candidate for > a regression test. Over the last year or two, we've been working hard > to populate src/tools/regression/sockets with various test cases, and it > sounds like the sendfile tests there could use some fleshing out, since > we've now seen several rather significant functional regressions over > the last few years. Any chance we can get you to take a look at doing > that as well? :-) Writing a regression test should be my task as I'm the one who broke the stuff with rev 1.240. I'll whip something up over the next week. -- Andre From owner-cvs-all@FreeBSD.ORG Sun Feb 24 12:35:22 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1ACA416A402; Sun, 24 Feb 2008 12:35:22 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0789C13C465; Sun, 24 Feb 2008 12:35:22 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OCZL0W031841; Sun, 24 Feb 2008 12:35:21 GMT (envelope-from jkois@repoman.freebsd.org) Received: (from jkois@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OCZL0W031840; Sun, 24 Feb 2008 12:35:21 GMT (envelope-from jkois) Message-Id: <200802241235.m1OCZL0W031840@repoman.freebsd.org> From: Johann Kois Date: Sun, 24 Feb 2008 12:35:21 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/de administration.sgml developers.sgml www/de/docproj sgml.sgml www/de/docs books.sgml www/de/java index.sgml www/de/share/sgml news.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 12:35:22 -0000 jkois 2008-02-24 12:35:21 UTC FreeBSD doc repository Modified files: de administration.sgml developers.sgml de/docproj sgml.sgml de/docs books.sgml de/java index.sgml de/share/sgml news.xml Log: MFde: Update the German website. www/de/administration.sgml 1.15 -> 1.16 www/de/developers.sgml 1.181 -> 1.186 www/de/docproj/sgml.sgml 1.27 -> 1.28 www/de/docs/books.sgml 1.29 -> 1.30 www/de/java/index.sgml 1.26 -> 1.28 www/de/share/sgml/news.xml 1.141 -> 1.146 Obtained from: The FreeBSD German Documentation Project Revision Changes Path 1.10 +3 -2 www/de/administration.sgml 1.20 +7 -3 www/de/developers.sgml 1.2 +6 -6 www/de/docproj/sgml.sgml 1.17 +7 -2 www/de/docs/books.sgml 1.3 +8 -6 www/de/java/index.sgml 1.44 +63 -2 www/de/share/sgml/news.xml From owner-cvs-all@FreeBSD.ORG Sun Feb 24 12:59:07 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3525516A409; Sun, 24 Feb 2008 12:59:07 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0889613C448; Sun, 24 Feb 2008 12:59:07 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OCx5Xt041436; Sun, 24 Feb 2008 12:59:05 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OCx5Pi041435; Sun, 24 Feb 2008 12:59:05 GMT (envelope-from remko) Message-Id: <200802241259.m1OCx5Pi041435@repoman.freebsd.org> From: Remko Lodder Date: Sun, 24 Feb 2008 12:59:03 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors contrib.additional.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 12:59:07 -0000 remko 2008-02-24 12:59:03 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/contributors contrib.additional.sgml Log: Add Diego Depaoli for manslide/mandvd etc. PR: docs/121051 Submitted by: diego himself Revision Changes Path 1.765 +5 -0 doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml From owner-cvs-all@FreeBSD.ORG Sun Feb 24 13:20:01 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C36F316A400; Sun, 24 Feb 2008 13:20:01 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [209.31.154.42]) by mx1.freebsd.org (Postfix) with ESMTP id 8D4D713C4D3; Sun, 24 Feb 2008 13:20:01 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id DFC3846B16; Sun, 24 Feb 2008 08:20:00 -0500 (EST) Date: Sun, 24 Feb 2008 13:20:00 +0000 (GMT) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Andre Oppermann In-Reply-To: <47C1616F.5040603@freebsd.org> Message-ID: <20080224131348.C29908@fledge.watson.org> References: <200802240007.m1O071xr052282@repoman.freebsd.org> <20080224110613.X25292@fledge.watson.org> <47C1616F.5040603@freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, Colin Percival Subject: Re: cvs commit: src/sys/kern uipc_syscalls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 13:20:01 -0000 On Sun, 24 Feb 2008, Andre Oppermann wrote: >>> After finishing sending file data in sendfile(2), don't forget to send >>> the provided trailers. This has been broken since revision 1.240. >> >> Nice work tracking this down -- it sounds like the perfect candidate for a >> regression test. Over the last year or two, we've been working hard to >> populate src/tools/regression/sockets with various test cases, and it >> sounds like the sendfile tests there could use some fleshing out, since >> we've now seen several rather significant functional regressions over the >> last few years. Any chance we can get you to take a look at doing that as >> well? :-) > > Writing a regression test should be my task as I'm the one who broke the That would be really great, thanks! Make sure to add a protocol switch/loop somewhere so that the tests are run over UNIX domain sockets and SCTP, not just for TCP on IPv4 and IPv6. I suspect sendfile() on non-TCP sockets doesn't see a whole lot of use, but needs to be exercised also. Certainly SCTP will see a lot more use in the future. Robert N M Watson Computer Laboratory University of Cambridge From owner-cvs-all@FreeBSD.ORG Sun Feb 24 13:21:14 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3667316A400; Sun, 24 Feb 2008 13:21:14 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0882813C4CC; Sun, 24 Feb 2008 13:21:14 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1ODLDEC043400; Sun, 24 Feb 2008 13:21:13 GMT (envelope-from mav@repoman.freebsd.org) Received: (from mav@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1ODLDQT043399; Sun, 24 Feb 2008 13:21:13 GMT (envelope-from mav) Message-Id: <200802241321.m1ODLDQT043399@repoman.freebsd.org> From: Alexander Motin Date: Sun, 24 Feb 2008 13:21:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/netgraph ng_bpf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 13:21:14 -0000 mav 2008-02-24 13:21:13 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netgraph ng_bpf.c Log: Partial MFC rev. 1.23-1.24 - Avoid data copying. bpf_filter() is able to work directly on mbuf chain - Prepare hooks direct pointers on setup to avoid heavy ng_findhook() calls during operarion. Merge is 'Partial' due to lack of JITTER support on 6.x. Revision Changes Path 1.19.2.2 +68 -34 src/sys/netgraph/ng_bpf.c From owner-cvs-all@FreeBSD.ORG Sun Feb 24 13:42:28 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E542416A405; Sun, 24 Feb 2008 13:42:28 +0000 (UTC) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id CB23113C45E; Sun, 24 Feb 2008 13:42:28 +0000 (UTC) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1ODgST9044170; Sun, 24 Feb 2008 13:42:28 GMT (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1ODgSd0044169; Sun, 24 Feb 2008 13:42:28 GMT (envelope-from perky) Message-Id: <200802241342.m1ODgSd0044169@repoman.freebsd.org> From: Hye-Shik Chang Date: Sun, 24 Feb 2008 13:42:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/Mk bsd.python.mk ports/lang/python distinfo ports/lang/python-doc-html distinfo ports/lang/python25 Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 13:42:29 -0000 perky 2008-02-24 13:42:28 UTC FreeBSD ports repository Modified files: Mk bsd.python.mk lang/python distinfo lang/python-doc-html distinfo lang/python25 Makefile distinfo pkg-plist Log: Update to Python 2.5.2. Revision Changes Path 1.102 +3 -3 ports/Mk/bsd.python.mk 1.24 +15 -2 ports/lang/python-doc-html/distinfo 1.65 +3 -0 ports/lang/python/distinfo 1.147 +1 -2 ports/lang/python25/Makefile 1.56 +3 -3 ports/lang/python25/distinfo 1.71 +121 -5 ports/lang/python25/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Feb 24 13:55:45 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 91B8B16A401; Sun, 24 Feb 2008 13:55:45 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5FA3C13C4FB; Sun, 24 Feb 2008 13:55:44 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1ODtiKD044601; Sun, 24 Feb 2008 13:55:44 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1ODti2f044600; Sun, 24 Feb 2008 13:55:44 GMT (envelope-from remko) Message-Id: <200802241355.m1ODti2f044600@repoman.freebsd.org> From: Remko Lodder Date: Sun, 24 Feb 2008 13:55:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.sbin/mtree verify.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 13:55:45 -0000 remko 2008-02-24 13:55:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/mtree verify.c Log: MFC rev 1.26 verify.c When applying a spec, traverse the existing directory tree in lexical order. This allows direct comparison of the output of two different runs, regardless of the order in which readdir(2) returns directory entries. MFC after: 3 weeks Approved by: imp (mentor, implicit for trivial changes), des (I am doing several MFC's for him). Revision Changes Path 1.23.8.3 +7 -1 src/usr.sbin/mtree/verify.c From owner-cvs-all@FreeBSD.ORG Sun Feb 24 14:01:10 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F094D16A404; Sun, 24 Feb 2008 14:01:09 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D7B8A13C43E; Sun, 24 Feb 2008 14:01:09 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OE19ke044821; Sun, 24 Feb 2008 14:01:09 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OE19He044820; Sun, 24 Feb 2008 14:01:09 GMT (envelope-from remko) Message-Id: <200802241401.m1OE19He044820@repoman.freebsd.org> From: Remko Lodder Date: Sun, 24 Feb 2008 14:01:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sys/dev/ichwd ichwd.c ichwd.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 14:01:10 -0000 remko 2008-02-24 14:01:09 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/dev/ichwd ichwd.c ichwd.h Log: MFC rev 1.12 to 1.14 for ichwd.c rev 1.12 Tabify rev 1.13 Add device IDs for the ICH9 family. PR: i386/119126 Submitted by: Dan Lukes MFC after: 1 week rev 1.14 Add support for ICH8M. PR: kern/119351 Submitted by: Takeharu KATO MFC after: 1 week MFC rev 1.6 to 1.8 for ichwd.h rev 1.6 Tabify. rev 1.7 Add device IDs for the ICH9 family. PR: i386/119126 Submitted by: Dan Lukes MFC after: 1 week rev 1.8 Add support for ICH8M. PR: kern/119351 Submitted by: Takeharu KATO MFC after: 1 week Approved by: imp (mentor, implicit for trivial changes), des ( I am doing some MFC's for him) Revision Changes Path 1.10.2.2 +24 -19 src/sys/dev/ichwd/ichwd.c 1.4.2.2 +6 -1 src/sys/dev/ichwd/ichwd.h From owner-cvs-all@FreeBSD.ORG Sun Feb 24 14:14:40 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B55B316A403; Sun, 24 Feb 2008 14:14:40 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9B77E13C478; Sun, 24 Feb 2008 14:14:40 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OEEeEJ046407; Sun, 24 Feb 2008 14:14:40 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OEEemJ046406; Sun, 24 Feb 2008 14:14:40 GMT (envelope-from remko) Message-Id: <200802241414.m1OEEemJ046406@repoman.freebsd.org> From: Remko Lodder Date: Sun, 24 Feb 2008 14:14:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/ichwd ichwd.c ichwd.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 14:14:40 -0000 remko 2008-02-24 14:14:40 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/ichwd ichwd.c ichwd.h Log: MFC rev 1.11 to 1.14 for ichwd.c rev 1.11 Add PCI device support for Intel S7000FC4UR in usb and ichwd, systems will not install without the usb changes in the install kernel, so I would like to MFC this in time for 7.0 RC MFC: 3 days rev 1.12 Tabify rev 1.13 Add device IDs for the ICH9 family. PR: i386/119126 Submitted by: Dan Lukes MFC after: 1 week rev 1.14 Add support for ICH8M. PR: kern/119351 Submitted by: Takeharu KATO MFC after: 1 week MFC rev 1.5 to 1.8 for ichwd.h rev 1.5 Add PCI device support for Intel S7000FC4UR in usb and ichwd, systems will not install without the usb changes in the install kernel, so I would like to MFC this in time for 7.0 RC MFC: 3 days rev 1.6 Tabify. rev 1.7 Add device IDs for the ICH9 family. PR: i386/119126 Submitted by: Dan Lukes MFC after: 1 week rev 1.8 Add support for ICH8M. PR: kern/119351 Submitted by: Takeharu KATO MFC after: 1 week Approved by: imp (mentor, implicit for trivial changes), des ( I am doing some MFC's for him) Revision Changes Path 1.5.2.5 +24 -18 src/sys/dev/ichwd/ichwd.c 1.2.2.3 +7 -1 src/sys/dev/ichwd/ichwd.h From owner-cvs-all@FreeBSD.ORG Sun Feb 24 14:25:19 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8B21B16A400; Sun, 24 Feb 2008 14:25:19 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6E09713C467; Sun, 24 Feb 2008 14:25:19 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OEPJs7046846; Sun, 24 Feb 2008 14:25:19 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OEPJAo046845; Sun, 24 Feb 2008 14:25:19 GMT (envelope-from remko) Message-Id: <200802241425.m1OEPJAo046845@repoman.freebsd.org> From: Remko Lodder Date: Sun, 24 Feb 2008 14:25:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/etc/periodic/security 100.chksetuid X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 14:25:19 -0000 remko 2008-02-24 14:25:18 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc/periodic/security 100.chksetuid Log: MFC rev 1.9 to 1.10 100.chksetuid rev 1.9 Also check setuid executables on ZFS. rev 1.10 Rewrite to consume significantly less memory, by using find -s instead of find | sort. As a bonus, this simplifies the logic considerably. Also remove the bogus "overruning the args to ls" comment and the corresponding "-n 20" argument to xargs; the whole point with xargs is precisely that it knows how large the argument list can safely get. Note that the first run of the updated script may hypotheticall produce false positives due to differences between find's and sort's sorting algorithm. I haven't seen this during testing, but others might. MFC after: 2 weeks Approved by: imp (mentor, implicit for trivial changes), des (doing some MFC's for him) Revision Changes Path 1.8.2.1 +11 -16 src/etc/periodic/security/100.chksetuid From owner-cvs-all@FreeBSD.ORG Sun Feb 24 14:26:44 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DC10516A404; Sun, 24 Feb 2008 14:26:44 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C145B13C448; Sun, 24 Feb 2008 14:26:44 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OEQimm046892; Sun, 24 Feb 2008 14:26:44 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OEQi5W046891; Sun, 24 Feb 2008 14:26:44 GMT (envelope-from remko) Message-Id: <200802241426.m1OEQi5W046891@repoman.freebsd.org> From: Remko Lodder Date: Sun, 24 Feb 2008 14:26:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/etc/periodic/security 100.chksetuid X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 14:26:45 -0000 remko 2008-02-24 14:26:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) etc/periodic/security 100.chksetuid Log: MFC rev 1.10 100.chksetuid rev 1.10 Rewrite to consume significantly less memory, by using find -s instead of find | sort. As a bonus, this simplifies the logic considerably. Also remove the bogus "overruning the args to ls" comment and the corresponding "-n 20" argument to xargs; the whole point with xargs is precisely that it knows how large the argument list can safely get. Note that the first run of the updated script may hypotheticall produce false positives due to differences between find's and sort's sorting algorithm. I haven't seen this during testing, but others might. MFC after: 2 weeks Approved by: imp (mentor, implicit for trivial changes), des (doing some MFC's for him) Revision Changes Path 1.8.10.2 +11 -16 src/etc/periodic/security/100.chksetuid From owner-cvs-all@FreeBSD.ORG Sun Feb 24 14:31:42 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5582016A402; Sun, 24 Feb 2008 14:31:42 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3A5F013C465; Sun, 24 Feb 2008 14:31:42 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OEVgho047050; Sun, 24 Feb 2008 14:31:42 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OEVgD5047049; Sun, 24 Feb 2008 14:31:42 GMT (envelope-from remko) Message-Id: <200802241431.m1OEVgD5047049@repoman.freebsd.org> From: Remko Lodder Date: Sun, 24 Feb 2008 14:31:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src Makefile.inc1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 14:31:42 -0000 remko 2008-02-24 14:31:42 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) . Makefile.inc1 Log: MFC rev 1.597 to 1.598 Makefile.inc1 rev 1.597 Give usr.bin/kdump/kdump_subr.c the same treatment as usr.bin/kdump/ioctl.c and usr.bin/truss/ioctl.c. This is the correct way to address the problem that arises when doing an incremental build after a header used by kdump has been removed (cf. i4b disconnect a while ago) Explained by: ru MFC after: 2 weeks rev 1.598 Satisfy a particularly obstinate nit-picker :) Approved by: imp (mentor, implicit for trivial changes), des (I am doing several MFC's for him) Revision Changes Path 1.588.2.4 +2 -1 src/Makefile.inc1 From owner-cvs-all@FreeBSD.ORG Sun Feb 24 14:50:30 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 433CB16A40A for ; Sun, 24 Feb 2008 14:50:30 +0000 (UTC) (envelope-from andre@freebsd.org) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.freebsd.org (Postfix) with ESMTP id 96D5913C4F2 for ; Sun, 24 Feb 2008 14:50:29 +0000 (UTC) (envelope-from andre@freebsd.org) Received: (qmail 91264 invoked from network); 24 Feb 2008 14:05:55 -0000 Received: from localhost (HELO [127.0.0.1]) ([127.0.0.1]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 24 Feb 2008 14:05:55 -0000 Message-ID: <47C18436.5060308@freebsd.org> Date: Sun, 24 Feb 2008 15:50:30 +0100 From: Andre Oppermann User-Agent: Thunderbird 1.5.0.14 (Windows/20071210) MIME-Version: 1.0 To: Mike Silbersack References: <200802240513.m1O5DKBG093031@repoman.freebsd.org> In-Reply-To: <200802240513.m1O5DKBG093031@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_var.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 14:50:30 -0000 Mike Silbersack wrote: > silby 2008-02-24 05:13:20 UTC > > FreeBSD src repository > > Modified files: > sys/netinet tcp_var.h > Log: > Change FreeBSD 7 so that it returns TCP options in > the same order that FreeBSD 6 and before did. Doug > White and the other bloodhounds at ISC discovered that > while FreeBSD 7's ordering of options was more efficient, > it caused some cable modem routers to ignore the > SYN-ACKs ordered in this fashion. Could you be more specific on which models/firmware choke on this? I'd like to document all known broken devices and share the information with other TCP implementors. Also I want to try to contact the vendor and have them fix the issue. -- Andre > The placement of sackOK after the timestamp option seems > to be the critical difference: > > FreeBSD 6: > > > FreeBSD 7.0: > > > FreeBSD 7.0 + this change: > From owner-cvs-all@FreeBSD.ORG Sun Feb 24 15:37:19 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ED3E516A401; Sun, 24 Feb 2008 15:37:19 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B650813C458; Sun, 24 Feb 2008 15:37:19 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OFbJ65050460; Sun, 24 Feb 2008 15:37:19 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OFbJnP050459; Sun, 24 Feb 2008 15:37:19 GMT (envelope-from bmah) Message-Id: <200802241537.m1OFbJnP050459@repoman.freebsd.org> From: "Bruce A. Mah" Date: Sun, 24 Feb 2008 15:37:19 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/releases/7.0R schedule.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 15:37:20 -0000 bmah 2008-02-24 15:37:19 UTC FreeBSD doc repository Modified files: en/releases/7.0R schedule.sgml Log: Update for progress. Submitted by: delphij Revision Changes Path 1.15 +3 -3 www/en/releases/7.0R/schedule.sgml From owner-cvs-all@FreeBSD.ORG Sun Feb 24 15:37:46 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 61CD016A407; Sun, 24 Feb 2008 15:37:46 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2ADD313C448; Sun, 24 Feb 2008 15:37:46 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OFbkDB050523; Sun, 24 Feb 2008 15:37:46 GMT (envelope-from piso@repoman.freebsd.org) Received: (from piso@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OFbkEr050522; Sun, 24 Feb 2008 15:37:46 GMT (envelope-from piso) Message-Id: <200802241537.m1OFbkEr050522@repoman.freebsd.org> From: Paolo Pisati Date: Sun, 24 Feb 2008 15:37:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet ip_fw2.c src/sbin/ipfw ipfw.8 ipfw2.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 15:37:46 -0000 piso 2008-02-24 15:37:46 UTC FreeBSD src repository Modified files: sys/netinet ip_fw2.c sbin/ipfw ipfw.8 ipfw2.c Log: Add table/tablearg support to ipfw's nat. MFC After: 1 week Revision Changes Path 1.210 +1 -1 src/sbin/ipfw/ipfw.8 1.117 +5 -9 src/sbin/ipfw/ipfw2.c 1.181 +4 -2 src/sys/netinet/ip_fw2.c From owner-cvs-all@FreeBSD.ORG Sun Feb 24 16:26:52 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9DD2B16A40E; Sun, 24 Feb 2008 16:26:52 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6471813C4E1; Sun, 24 Feb 2008 16:26:52 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OGQqwu053355; Sun, 24 Feb 2008 16:26:52 GMT (envelope-from attilio@repoman.freebsd.org) Received: (from attilio@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OGQqVu053354; Sun, 24 Feb 2008 16:26:52 GMT (envelope-from attilio) Message-Id: <200802241626.m1OGQqVu053354@repoman.freebsd.org> From: Attilio Rao Date: Sun, 24 Feb 2008 16:26:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netsmb smb_conn.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 16:26:52 -0000 attilio 2008-02-24 16:26:52 UTC FreeBSD src repository Modified files: sys/netsmb smb_conn.c Log: Currently, smb_co_init() uses the same lock name for the mutex interlock and the lockmgr. Use different names in order to avoid WITNESS conflicts. Reported by: Bryan Venteicher Revision Changes Path 1.20 +9 -8 src/sys/netsmb/smb_conn.c From owner-cvs-all@FreeBSD.ORG Sun Feb 24 16:28:57 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5428D16A400; Sun, 24 Feb 2008 16:28:57 +0000 (UTC) (envelope-from marck@rinet.ru) Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) by mx1.freebsd.org (Postfix) with ESMTP id AD24413C45E; Sun, 24 Feb 2008 16:28:56 +0000 (UTC) (envelope-from marck@rinet.ru) Received: from localhost (localhost [127.0.0.1]) by woozle.rinet.ru (8.14.2/8.14.1) with ESMTP id m1OGSs9i091912; Sun, 24 Feb 2008 19:28:54 +0300 (MSK) (envelope-from marck@rinet.ru) Date: Sun, 24 Feb 2008 19:28:54 +0300 (MSK) From: Dmitry Morozovsky To: Remko Lodder In-Reply-To: <200802241425.m1OEPJAo046845@repoman.freebsd.org> Message-ID: <20080224192835.M26112@woozle.rinet.ru> References: <200802241425.m1OEPJAo046845@repoman.freebsd.org> X-NCC-RegID: ru.rinet X-OpenPGP-Key-ID: 6B691B03 MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (woozle.rinet.ru [0.0.0.0]); Sun, 24 Feb 2008 19:28:54 +0300 (MSK) Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/etc/periodic/security 100.chksetuid X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 16:28:57 -0000 On Sun, 24 Feb 2008, Remko Lodder wrote: RL> remko 2008-02-24 14:25:18 UTC RL> RL> FreeBSD src repository RL> RL> Modified files: (Branch: RELENG_6) RL> etc/periodic/security 100.chksetuid RL> Log: RL> MFC rev 1.9 to 1.10 100.chksetuid RL> RL> rev 1.9 RL> Also check setuid executables on ZFS. Hmm, is it applicable to RELENG_6? Sincerely, D.Marck [DM5020, MCK-RIPE, DM3-RIPN] [ FreeBSD committer: marck@FreeBSD.org ] ------------------------------------------------------------------------ *** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru *** ------------------------------------------------------------------------ From owner-cvs-all@FreeBSD.ORG Sun Feb 24 16:31:33 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC14316A402 for ; Sun, 24 Feb 2008 16:31:33 +0000 (UTC) (envelope-from silby@silby.com) Received: from relay02.pair.com (relay02.pair.com [209.68.5.16]) by mx1.freebsd.org (Postfix) with SMTP id 275AE13C45D for ; Sun, 24 Feb 2008 16:31:32 +0000 (UTC) (envelope-from silby@silby.com) Received: (qmail 81588 invoked from network); 24 Feb 2008 16:31:31 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 24 Feb 2008 16:31:31 -0000 X-pair-Authenticated: 209.68.2.70 Date: Sun, 24 Feb 2008 10:31:30 -0600 (CST) From: Mike Silbersack To: Andre Oppermann In-Reply-To: <47C18436.5060308@freebsd.org> Message-ID: <20080224103053.S93514@odysseus.silby.com> References: <200802240513.m1O5DKBG093031@repoman.freebsd.org> <47C18436.5060308@freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: dwhite@freebsd.org, cvs-src@FreeBSD.org, Mike Silbersack , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_var.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 16:31:33 -0000 On Sun, 24 Feb 2008, Andre Oppermann wrote: > Could you be more specific on which models/firmware choke > on this? I'd like to document all known broken devices and > share the information with other TCP implementors. Also I > want to try to contact the vendor and have them fix the issue. > > -- > Andre I neglected to ask Doug if he made note of the model involved. Doug, can you get that info? -Mike From owner-cvs-all@FreeBSD.ORG Sun Feb 24 16:38:58 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D2E9216A405; Sun, 24 Feb 2008 16:38:58 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id ADEEB13C4DB; Sun, 24 Feb 2008 16:38:58 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OGcwNd053918; Sun, 24 Feb 2008 16:38:58 GMT (envelope-from attilio@repoman.freebsd.org) Received: (from attilio@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OGcwU0053917; Sun, 24 Feb 2008 16:38:58 GMT (envelope-from attilio) Message-Id: <200802241638.m1OGcwU0053917@repoman.freebsd.org> From: Attilio Rao Date: Sun, 24 Feb 2008 16:38:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/contrib/opensolaris/uts/common/fs/zfs zfs_znode.c src/sys/fs/nwfs nwfs_node.c src/sys/fs/pseudofs pseudofs_vncache.c src/sys/fs/smbfs smbfs_node.c src/sys/gnu/fs/xfs/FreeBSD xfs_freebsd_iget.c src/sys/kern vfs_lookup.c src/sys/netncp ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 16:38:58 -0000 attilio 2008-02-24 16:38:58 UTC FreeBSD src repository Modified files: sys/contrib/opensolaris/uts/common/fs/zfs zfs_znode.c sys/fs/nwfs nwfs_node.c sys/fs/pseudofs pseudofs_vncache.c sys/fs/smbfs smbfs_node.c sys/gnu/fs/xfs/FreeBSD xfs_freebsd_iget.c sys/kern vfs_lookup.c sys/netncp ncp_conn.c sys/nfsclient nfs_node.c sys/sys vnode.h sys/ufs/ffs ffs_softdep.c ffs_vfsops.c Log: Introduce some functions in the vnode locks namespace and in the ffs namespace in order to handle lockmgr fields in a controlled way instead than spreading all around bogus stubs: - VN_LOCK_AREC() allows lock recursion for a specified vnode - VN_LOCK_ASHARE() allows lock sharing for a specified vnode In FFS land: - BUF_AREC() allows lock recursion for a specified buffer lock - BUF_NOREC() disallows recursion for a specified buffer lock Side note: union_subr.c::unionfs_node_update() is the only other function directly handling lockmgr fields. As this is not simple to fix, it has been left behind as "sole" exception. Revision Changes Path 1.13 +4 -4 src/sys/contrib/opensolaris/uts/common/fs/zfs/zfs_znode.c 1.42 +1 -1 src/sys/fs/nwfs/nwfs_node.c 1.41 +1 -1 src/sys/fs/pseudofs/pseudofs_vncache.c 1.37 +1 -1 src/sys/fs/smbfs/smbfs_node.c 1.4 +1 -1 src/sys/gnu/fs/xfs/FreeBSD/xfs_freebsd_iget.c 1.106 +1 -1 src/sys/kern/vfs_lookup.c 1.32 +1 -1 src/sys/netncp/ncp_conn.c 1.88 +2 -2 src/sys/nfsclient/nfs_node.c 1.330 +3 -0 src/sys/sys/vnode.h 1.217 +6 -3 src/sys/ufs/ffs/ffs_softdep.c 1.336 +2 -2 src/sys/ufs/ffs/ffs_vfsops.c From owner-cvs-all@FreeBSD.ORG Sun Feb 24 16:41:45 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DC03816A402; Sun, 24 Feb 2008 16:41:45 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A1F0F13C461; Sun, 24 Feb 2008 16:41:45 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OGfjD8054043; Sun, 24 Feb 2008 16:41:45 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OGfjHh054042; Sun, 24 Feb 2008 16:41:45 GMT (envelope-from ahze) Message-Id: <200802241641.m1OGfjHh054042@repoman.freebsd.org> From: Michael Johnson Date: Sun, 24 Feb 2008 16:41:45 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio/faad Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 16:41:46 -0000 ahze 2008-02-24 16:41:45 UTC FreeBSD ports repository Modified files: audio/faad Makefile distinfo Log: Update to 2.6.1 Revision Changes Path 1.47 +1 -2 ports/audio/faad/Makefile 1.8 +3 -3 ports/audio/faad/distinfo From owner-cvs-all@FreeBSD.ORG Sun Feb 24 16:47:20 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C22E016A402; Sun, 24 Feb 2008 16:47:20 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 882AC13C45E; Sun, 24 Feb 2008 16:47:20 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OGlKUd063211; Sun, 24 Feb 2008 16:47:20 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OGlKDX063210; Sun, 24 Feb 2008 16:47:20 GMT (envelope-from remko) Message-Id: <200802241647.m1OGlKDX063210@repoman.freebsd.org> From: Remko Lodder Date: Sun, 24 Feb 2008 16:47:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/etc/periodic/security 100.chksetuid X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 16:47:20 -0000 remko 2008-02-24 16:47:20 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc/periodic/security 100.chksetuid Log: Remove ZFS from the search list. ZFS is not available on RELENG_6. Noticed by: rink Revision Changes Path 1.8.2.2 +1 -1 src/etc/periodic/security/100.chksetuid From owner-cvs-all@FreeBSD.ORG Sun Feb 24 16:50:24 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9387616A404; Sun, 24 Feb 2008 16:50:24 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from galain.elvandar.org (galain.elvandar.org [217.148.169.56]) by mx1.freebsd.org (Postfix) with ESMTP id 4071D13C455; Sun, 24 Feb 2008 16:50:24 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from localhost.we-dare.net ([127.0.0.1] helo=galain.elvandar.org) by galain.elvandar.org with esmtpa (Exim 4.67) (envelope-from ) id 1JTK3S-0002IF-V3; Sun, 24 Feb 2008 17:50:23 +0100 Received: from 195.64.94.120 (SquirrelMail authenticated user remko) by galain.elvandar.org with HTTP; Sun, 24 Feb 2008 17:50:22 +0100 (CET) Message-ID: <55333.195.64.94.120.1203871822.squirrel@galain.elvandar.org> In-Reply-To: <200802241647.m1OGlKDX063210@repoman.freebsd.org> References: <200802241647.m1OGlKDX063210@repoman.freebsd.org> Date: Sun, 24 Feb 2008 17:50:22 +0100 (CET) From: "Remko Lodder" To: "Remko Lodder" User-Agent: SquirrelMail/1.4.13 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/etc/periodic/security 100.chksetuid X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 16:50:24 -0000 On Sun, February 24, 2008 5:47 pm, Remko Lodder wrote: > remko 2008-02-24 16:47:20 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_6) > etc/periodic/security 100.chksetuid > Log: > Remove ZFS from the search list. ZFS is not available on > RELENG_6. > > Noticed by: rink ^^^ Approved by: imp (mentor, implicit for trivial changes) -- /"\ Best regards, | remko@FreeBSD.org \ / Remko Lodder | remko@EFnet X http://www.evilcoder.org/ | / \ ASCII Ribbon Campaign | Against HTML Mail and News From owner-cvs-all@FreeBSD.ORG Sun Feb 24 16:50:56 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 180C516A401; Sun, 24 Feb 2008 16:50:56 +0000 (UTC) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D20A213C459; Sun, 24 Feb 2008 16:50:55 +0000 (UTC) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OGotah063807; Sun, 24 Feb 2008 16:50:55 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OGotF9063806; Sun, 24 Feb 2008 16:50:55 GMT (envelope-from stefanf) Message-Id: <200802241650.m1OGotF9063806@repoman.freebsd.org> From: Stefan Farfeleder Date: Sun, 24 Feb 2008 16:50:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/bin/sh cd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 16:50:56 -0000 stefanf 2008-02-24 16:50:55 UTC FreeBSD src repository Modified files: bin/sh cd.c Log: Split updatepwd() into two smaller functions. The first one, findpwd(), computes the new path and the second one, updatepwd(), updates the variables PWD, OLDPWD and the path used for the pwd builtin according to the new directory. For a logical directory change, chdir() is now called between those two functions, no longer causing wrong values to be stored in PWD etc. if it fails. PR: 64990, 101316, 120571 Revision Changes Path 1.36 +45 -38 src/bin/sh/cd.c From owner-cvs-all@FreeBSD.ORG Sun Feb 24 16:52:03 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4C61C16A401; Sun, 24 Feb 2008 16:52:03 +0000 (UTC) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 11DBD13C447; Sun, 24 Feb 2008 16:52:03 +0000 (UTC) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OGq2n2063877; Sun, 24 Feb 2008 16:52:02 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OGq243063876; Sun, 24 Feb 2008 16:52:02 GMT (envelope-from stefanf) Message-Id: <200802241652.m1OGq243063876@repoman.freebsd.org> From: Stefan Farfeleder Date: Sun, 24 Feb 2008 16:52:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/tools/regression/bin/sh/builtins cd1.0 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 16:52:03 -0000 stefanf 2008-02-24 16:52:02 UTC FreeBSD src repository Added files: tools/regression/bin/sh/builtins cd1.0 Log: Add a regression test for cd.c's revision 1.35. Revision Changes Path 1.1 +17 -0 src/tools/regression/bin/sh/builtins/cd1.0 (new) From owner-cvs-all@FreeBSD.ORG Sun Feb 24 16:55:43 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 30DCA16A407; Sun, 24 Feb 2008 16:55:43 +0000 (UTC) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EAB7613C461; Sun, 24 Feb 2008 16:55:42 +0000 (UTC) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OGtgTe064059; Sun, 24 Feb 2008 16:55:42 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OGtg6L064058; Sun, 24 Feb 2008 16:55:42 GMT (envelope-from stefanf) Message-Id: <200802241655.m1OGtg6L064058@repoman.freebsd.org> From: Stefan Farfeleder Date: Sun, 24 Feb 2008 16:55:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/tools/regression/bin/sh/builtins cd1.0 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 16:55:43 -0000 stefanf 2008-02-24 16:55:42 UTC FreeBSD src repository Modified files: tools/regression/bin/sh/builtins cd1.0 Log: Forced commit to fix message: Add a regression test for cd.c's revision 1.36. Revision Changes Path 1.2 +0 -0 src/tools/regression/bin/sh/builtins/cd1.0 From owner-cvs-all@FreeBSD.ORG Sun Feb 24 16:58:19 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 827D716A400; Sun, 24 Feb 2008 16:58:19 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from galain.elvandar.org (galain.elvandar.org [217.148.169.56]) by mx1.freebsd.org (Postfix) with ESMTP id 28F2B13C442; Sun, 24 Feb 2008 16:58:19 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from localhost.we-dare.net ([127.0.0.1] helo=galain.elvandar.org) by galain.elvandar.org with esmtpa (Exim 4.67) (envelope-from ) id 1JTKB8-0002Mx-8t; Sun, 24 Feb 2008 17:58:18 +0100 Received: from 195.64.94.120 (SquirrelMail authenticated user remko) by galain.elvandar.org with HTTP; Sun, 24 Feb 2008 17:58:18 +0100 (CET) Message-ID: <57285.195.64.94.120.1203872298.squirrel@galain.elvandar.org> In-Reply-To: <20080224192835.M26112@woozle.rinet.ru> References: <200802241425.m1OEPJAo046845@repoman.freebsd.org> <20080224192835.M26112@woozle.rinet.ru> Date: Sun, 24 Feb 2008 17:58:18 +0100 (CET) From: "Remko Lodder" To: "Dmitry Morozovsky" User-Agent: SquirrelMail/1.4.13 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/etc/periodic/security 100.chksetuid X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 16:58:19 -0000 On Sun, February 24, 2008 5:28 pm, Dmitry Morozovsky wrote: > On Sun, 24 Feb 2008, Remko Lodder wrote: > > RL> remko 2008-02-24 14:25:18 UTC > RL> > RL> FreeBSD src repository > RL> > RL> Modified files: (Branch: RELENG_6) > RL> etc/periodic/security 100.chksetuid > RL> Log: > RL> MFC rev 1.9 to 1.10 100.chksetuid > RL> > RL> rev 1.9 > RL> Also check setuid executables on ZFS. > > Hmm, is it applicable to RELENG_6? > Nope you are right, I didnt think about that Rink poked me as well about this. Didn't see your message till after I committed the fix. Thanks for the poke and the attention to details :) Cheers remko -- /"\ Best regards, | remko@FreeBSD.org \ / Remko Lodder | remko@EFnet X http://www.evilcoder.org/ | / \ ASCII Ribbon Campaign | Against HTML Mail and News From owner-cvs-all@FreeBSD.ORG Sun Feb 24 16:59:51 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1CA4816A400; Sun, 24 Feb 2008 16:59:51 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D456213C43E; Sun, 24 Feb 2008 16:59:50 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OGxouu064185; Sun, 24 Feb 2008 16:59:50 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OGxomX064184; Sun, 24 Feb 2008 16:59:50 GMT (envelope-from ahze) Message-Id: <200802241659.m1OGxomX064184@repoman.freebsd.org> From: Michael Johnson Date: Sun, 24 Feb 2008 16:59:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/deskutils/lightning-xpi Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 16:59:51 -0000 ahze 2008-02-24 16:59:50 UTC FreeBSD ports repository Modified files: deskutils/lightning-xpi Makefile distinfo Log: Update i386-> 5.x, 6.x and amd64-> 5.x, 6.x to 0.7 Revision Changes Path 1.15 +5 -3 ports/deskutils/lightning-xpi/Makefile 1.11 +18 -18 ports/deskutils/lightning-xpi/distinfo From owner-cvs-all@FreeBSD.ORG Sun Feb 24 17:10:31 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6768D16A407; Sun, 24 Feb 2008 17:10:31 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2C48A13C45A; Sun, 24 Feb 2008 17:10:31 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OHAVLY065780; Sun, 24 Feb 2008 17:10:31 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OHAVPZ065779; Sun, 24 Feb 2008 17:10:31 GMT (envelope-from marcel) Message-Id: <200802241710.m1OHAVPZ065779@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 24 Feb 2008 17:10:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/powerpc/fpu fpu_emu.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 17:10:31 -0000 marcel 2008-02-24 17:10:31 UTC FreeBSD src repository Modified files: sys/powerpc/fpu fpu_emu.c Log: Don't define DEBUG. No debugging required. Pointy hat: marcel Revision Changes Path 1.3 +0 -2 src/sys/powerpc/fpu/fpu_emu.c From owner-cvs-all@FreeBSD.ORG Sun Feb 24 17:57:29 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D006016A404; Sun, 24 Feb 2008 17:57:29 +0000 (UTC) (envelope-from kaiw@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AC3F513C447; Sun, 24 Feb 2008 17:57:29 +0000 (UTC) (envelope-from kaiw@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OHvTOU067367; Sun, 24 Feb 2008 17:57:29 GMT (envelope-from kaiw@repoman.freebsd.org) Received: (from kaiw@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OHvTfT067366; Sun, 24 Feb 2008 17:57:29 GMT (envelope-from kaiw) Message-Id: <200802241757.m1OHvTfT067366@repoman.freebsd.org> From: Kai Wang Date: Sun, 24 Feb 2008 17:57:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/ar write.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 17:57:29 -0000 kaiw 2008-02-24 17:57:29 UTC FreeBSD src repository Modified files: usr.bin/ar write.c Log: Handle properly when insert zero size objects into the archive: Do not mmap 0-size objects and do not try to extract symbol from 0-size objects, but do treat 0-size objects as qualified objects and accept them as an archive member. (A member with only the header part) Note that GNU binutils ar on FreeBSD ignores 0-size objects, but on Linux it accepts them. [1] But, since this is a rare usage, we can safely ignore the compatibility issue. Reported by: Michael Plass Pointed out by: Michael Plass [1] Reviewed by: Michael Plass Reviewed by: jkoshy Approved by: jkoshy (mentor) Revision Changes Path 1.2 +9 -3 src/usr.bin/ar/write.c From owner-cvs-all@FreeBSD.ORG Sun Feb 24 18:03:57 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9883A16A401; Sun, 24 Feb 2008 18:03:57 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 745C613C45B; Sun, 24 Feb 2008 18:03:57 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OI3vnY068770; Sun, 24 Feb 2008 18:03:57 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OI3vFk068769; Sun, 24 Feb 2008 18:03:57 GMT (envelope-from alc) Message-Id: <200802241803.m1OI3vFk068769@repoman.freebsd.org> From: Alan Cox Date: Sun, 24 Feb 2008 18:03:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/vm vm_object.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 18:03:57 -0000 alc 2008-02-24 18:03:57 UTC FreeBSD src repository Modified files: sys/vm vm_object.c Log: Correct a long-standing error in vm_object_deallocate(). Specifically, only anonymous default (OBJT_DEFAULT) and swap (OBJT_SWAP) objects should ever have OBJ_ONEMAPPING set. However, vm_object_deallocate() was setting it on device (OBJT_DEVICE) objects. As a result, vm_object_page_remove() could be called on a device object and if that occurred pmap_remove_all() would be called on the device object's pages. However, a device object's pages are fictitious, and fictitious pages do not have an initialized pv list (struct md_page). To date, fictitious pages have been allocated from zeroed memory, effectively hiding this problem. Now, however, the conversion of rotting diagnostics to invariants in the amd64 and i386 pmaps has revealed the problem. Specifically, assertion failures have occurred during the initialization phase of the X server on some hardware. MFC after: 1 week Discussed with: Kostik Belousov Reported by: Michiel Boland Revision Changes Path 1.391 +4 -1 src/sys/vm/vm_object.c From owner-cvs-all@FreeBSD.ORG Sun Feb 24 18:07:47 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6709816A409; Sun, 24 Feb 2008 18:07:47 +0000 (UTC) (envelope-from kaiw@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2A86713C43E; Sun, 24 Feb 2008 18:07:47 +0000 (UTC) (envelope-from kaiw@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OI7lqQ068966; Sun, 24 Feb 2008 18:07:47 GMT (envelope-from kaiw@repoman.freebsd.org) Received: (from kaiw@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OI7lxE068965; Sun, 24 Feb 2008 18:07:47 GMT (envelope-from kaiw) Message-Id: <200802241807.m1OI7lxE068965@repoman.freebsd.org> From: Kai Wang Date: Sun, 24 Feb 2008 18:07:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/ar ar.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 18:07:47 -0000 kaiw 2008-02-24 18:07:47 UTC FreeBSD src repository Modified files: usr.bin/ar ar.c Log: Since the program is installed as 'bsdranlib', we need to check if it is invoked as 'bsdranlib'. Reported by: Michael Plass Reviewed by: Michael Plass Reviewed by: jkoshy Approved by: jkoshy (mentor) Revision Changes Path 1.17 +2 -1 src/usr.bin/ar/ar.c From owner-cvs-all@FreeBSD.ORG Sun Feb 24 18:30:18 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7FE0F16A404; Sun, 24 Feb 2008 18:30:18 +0000 (UTC) (envelope-from kaiw@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 431DB13C442; Sun, 24 Feb 2008 18:30:18 +0000 (UTC) (envelope-from kaiw@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OIUI9B069725; Sun, 24 Feb 2008 18:30:18 GMT (envelope-from kaiw@repoman.freebsd.org) Received: (from kaiw@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OIUIQU069724; Sun, 24 Feb 2008 18:30:18 GMT (envelope-from kaiw) Message-Id: <200802241830.m1OIUIQU069724@repoman.freebsd.org> From: Kai Wang Date: Sun, 24 Feb 2008 18:30:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/ar write.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 18:30:18 -0000 kaiw 2008-02-24 18:30:18 UTC FreeBSD src repository Modified files: usr.bin/ar write.c Log: style(9) whitespace fix: A space is mandated after keyword 'return'. Submitted by: jkoshy Approved by: jkoshy (mentor) Revision Changes Path 1.3 +5 -5 src/usr.bin/ar/write.c From owner-cvs-all@FreeBSD.ORG Sun Feb 24 18:31:17 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 184E516A401; Sun, 24 Feb 2008 18:31:17 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id CFFEB13C44B; Sun, 24 Feb 2008 18:31:16 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OIVGmZ069796; Sun, 24 Feb 2008 18:31:16 GMT (envelope-from mav@repoman.freebsd.org) Received: (from mav@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OIVGG7069795; Sun, 24 Feb 2008 18:31:16 GMT (envelope-from mav) Message-Id: <200802241831.m1OIVGG7069795@repoman.freebsd.org> From: Alexander Motin Date: Sun, 24 Feb 2008 18:31:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sys/netgraph ng_tee.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 18:31:17 -0000 mav 2008-02-24 18:31:16 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/netgraph ng_tee.c Log: MFC rev. 1.35 Fix shutdown bug made by previous commit. Revision Changes Path 1.33.10.2 +1 -0 src/sys/netgraph/ng_tee.c From owner-cvs-all@FreeBSD.ORG Sun Feb 24 18:31:27 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2609916A406; Sun, 24 Feb 2008 18:31:27 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DDC3A13C45D; Sun, 24 Feb 2008 18:31:26 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OIVQto069822; Sun, 24 Feb 2008 18:31:26 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OIVQfS069821; Sun, 24 Feb 2008 18:31:26 GMT (envelope-from bmah) Message-Id: <200802241831.m1OIVQfS069821@repoman.freebsd.org> From: "Bruce A. Mah" Date: Sun, 24 Feb 2008 18:31:26 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/releases/7.0R todo.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 18:31:27 -0000 bmah 2008-02-24 18:31:26 UTC FreeBSD doc repository Modified files: en/releases/7.0R todo.sgml Log: Update status of libkse item (done). Revision Changes Path 1.9 +3 -3 www/en/releases/7.0R/todo.sgml From owner-cvs-all@FreeBSD.ORG Sun Feb 24 19:19:39 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0E12F16A403; Sun, 24 Feb 2008 19:19:39 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C5D7F13C447; Sun, 24 Feb 2008 19:19:38 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OJJcus072791; Sun, 24 Feb 2008 19:19:38 GMT (envelope-from mm@repoman.freebsd.org) Received: (from mm@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OJJc0B072790; Sun, 24 Feb 2008 19:19:38 GMT (envelope-from mm) Message-Id: <200802241919.m1OJJc0B072790@repoman.freebsd.org> From: Martin Matuska Date: Sun, 24 Feb 2008 19:19:38 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/xotcl Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 19:19:39 -0000 mm 2008-02-24 19:19:38 UTC FreeBSD ports repository Modified files: lang/xotcl Makefile distinfo Log: - Update to 1.6.0 - Change MASTER_SITES to SourceForge Revision Changes Path 1.17 +2 -2 ports/lang/xotcl/Makefile 1.6 +3 -3 ports/lang/xotcl/distinfo From owner-cvs-all@FreeBSD.ORG Sun Feb 24 19:22:53 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C0D4A16A401; Sun, 24 Feb 2008 19:22:53 +0000 (UTC) (envelope-from raj@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9A65C13C45B; Sun, 24 Feb 2008 19:22:53 +0000 (UTC) (envelope-from raj@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OJMrWO073063; Sun, 24 Feb 2008 19:22:53 GMT (envelope-from raj@repoman.freebsd.org) Received: (from raj@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OJMrUX073062; Sun, 24 Feb 2008 19:22:53 GMT (envelope-from raj) Message-Id: <200802241922.m1OJMrUX073062@repoman.freebsd.org> From: Rafal Jaworowski Date: Sun, 24 Feb 2008 19:22:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/powerpc/include float.h src/gnu/lib/libgcc Makefile src/lib/libc/powerpc/gen flt_rounds.c fpgetmask.c fpgetround.c fpgetsticky.c fpsetmask.c fpsetround.c src/lib/msun/powerpc fenv.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 19:22:53 -0000 raj 2008-02-24 19:22:53 UTC FreeBSD src repository Modified files: sys/powerpc/include float.h gnu/lib/libgcc Makefile lib/libc/powerpc/gen flt_rounds.c fpgetmask.c fpgetround.c fpgetsticky.c fpsetmask.c fpsetround.c lib/msun/powerpc fenv.h Log: Let PowerPC world optionally build with -msoft-float. For FPU-less PowerPC variations (e500 currently), this provides a gcc-level FPU emulation and is an alternative approach to the recently introduced kernel-level emulation (FPU_EMU). Approved by: cognet (mentor) MFp4: e500 Revision Changes Path 1.59 +1 -1 src/gnu/lib/libgcc/Makefile 1.2 +2 -0 src/lib/libc/powerpc/gen/flt_rounds.c 1.2 +2 -0 src/lib/libc/powerpc/gen/fpgetmask.c 1.2 +2 -0 src/lib/libc/powerpc/gen/fpgetround.c 1.2 +2 -0 src/lib/libc/powerpc/gen/fpgetsticky.c 1.2 +2 -0 src/lib/libc/powerpc/gen/fpsetmask.c 1.2 +2 -0 src/lib/libc/powerpc/gen/fpsetround.c 1.4 +5 -0 src/lib/msun/powerpc/fenv.h 1.9 +5 -1 src/sys/powerpc/include/float.h From owner-cvs-all@FreeBSD.ORG Sun Feb 24 19:27:22 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 11ABB16A402; Sun, 24 Feb 2008 19:27:22 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B2A5B13C459; Sun, 24 Feb 2008 19:27:21 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OJRLw8073232; Sun, 24 Feb 2008 19:27:21 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OJRL8c073231; Sun, 24 Feb 2008 19:27:21 GMT (envelope-from blackend) Message-Id: <200802241927.m1OJRL8c073231@repoman.freebsd.org> From: Marc Fonvieille Date: Sun, 24 Feb 2008 19:27:21 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/articles/hubs article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 19:27:22 -0000 blackend 2008-02-24 19:27:21 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/hubs article.sgml Log: Add missing closing tags and move some misplaced ones. Fix some rendering issues. Revision Changes Path 1.66 +30 -39 doc/en_US.ISO8859-1/articles/hubs/article.sgml From owner-cvs-all@FreeBSD.ORG Sun Feb 24 19:46:28 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 567C516A406; Sun, 24 Feb 2008 19:46:28 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 158B113C4E5; Sun, 24 Feb 2008 19:46:28 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OJkRDe073907; Sun, 24 Feb 2008 19:46:27 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OJkRkG073906; Sun, 24 Feb 2008 19:46:27 GMT (envelope-from imp) Message-Id: <200802241946.m1OJkRkG073906@repoman.freebsd.org> From: Warner Losh Date: Sun, 24 Feb 2008 19:46:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/find find.1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 19:46:28 -0000 imp 2008-02-24 19:46:27 UTC FreeBSD src repository Modified files: usr.bin/find find.1 Log: Tag -ilname and -lname as GNU extensions. Correct their descriptions to indicate that it is the contents of the symbolic link that are matched. Revision Changes Path 1.84 +4 -1 src/usr.bin/find/find.1 From owner-cvs-all@FreeBSD.ORG Sun Feb 24 19:52:23 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A367616A40F; Sun, 24 Feb 2008 19:52:23 +0000 (UTC) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 66AAD13C455; Sun, 24 Feb 2008 19:52:23 +0000 (UTC) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OJqN63074110; Sun, 24 Feb 2008 19:52:23 GMT (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OJqNCr074109; Sun, 24 Feb 2008 19:52:23 GMT (envelope-from ceri) Message-Id: <200802241952.m1OJqNCr074109@repoman.freebsd.org> From: Ceri Davies Date: Sun, 24 Feb 2008 19:52:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/find find.1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 19:52:23 -0000 ceri 2008-02-24 19:52:23 UTC FreeBSD src repository Modified files: usr.bin/find find.1 Log: Bump .Dd for revisions 1.83 and 1.84. Revision Changes Path 1.85 +1 -1 src/usr.bin/find/find.1 From owner-cvs-all@FreeBSD.ORG Sun Feb 24 20:07:40 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CA96816A403; Sun, 24 Feb 2008 20:07:40 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8E2ED13C43E; Sun, 24 Feb 2008 20:07:40 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OK7eRN075778; Sun, 24 Feb 2008 20:07:40 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OK7e8s075777; Sun, 24 Feb 2008 20:07:40 GMT (envelope-from remko) Message-Id: <200802242007.m1OK7e8s075777@repoman.freebsd.org> From: Remko Lodder Date: Sun, 24 Feb 2008 20:07:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/etc/periodic/security 100.chksetuid X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 20:07:40 -0000 remko 2008-02-24 20:07:40 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) etc/periodic/security 100.chksetuid Log: MFC rev 1.11 100.chksetuid Eliminate xargs in favor of find -exec {} + Requested by: ceri Approved by: imp (mentor, implicit trivial changes) Revision Changes Path 1.8.10.3 +1 -2 src/etc/periodic/security/100.chksetuid From owner-cvs-all@FreeBSD.ORG Sun Feb 24 20:09:52 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AD3D316A400; Sun, 24 Feb 2008 20:09:52 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 707BF13C44B; Sun, 24 Feb 2008 20:09:52 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OK9qn3075870; Sun, 24 Feb 2008 20:09:52 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OK9q28075869; Sun, 24 Feb 2008 20:09:52 GMT (envelope-from remko) Message-Id: <200802242009.m1OK9q28075869@repoman.freebsd.org> From: Remko Lodder Date: Sun, 24 Feb 2008 20:09:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/etc/periodic/security 100.chksetuid X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 20:09:52 -0000 remko 2008-02-24 20:09:52 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc/periodic/security 100.chksetuid Log: MFC rev 1.11 100.chksetuid Eliminate xargs in favor of find -exec {} + Requested by: ceri Approved by: imp (mentor, implicit trivial changes) Revision Changes Path 1.8.2.3 +1 -2 src/etc/periodic/security/100.chksetuid From owner-cvs-all@FreeBSD.ORG Sun Feb 24 20:32:45 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5111B16A400; Sun, 24 Feb 2008 20:32:45 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1532813C4F5; Sun, 24 Feb 2008 20:32:45 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OKWiYw076701; Sun, 24 Feb 2008 20:32:44 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OKWibU076700; Sun, 24 Feb 2008 20:32:44 GMT (envelope-from imp) Message-Id: <200802242032.m1OKWibU076700@repoman.freebsd.org> From: Warner Losh Date: Sun, 24 Feb 2008 20:32:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT access X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 20:32:45 -0000 imp 2008-02-24 20:32:44 UTC FreeBSD src repository Modified files: . access Log: Forced commit to note that rink@ (Rink Springer) has formally been released from mentorship. I should have done this a long time ago, but dropped the ball... Approved by: core (implicit) Revision Changes Path 1.858 +0 -0 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Sun Feb 24 20:40:10 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 80B9516A402; Sun, 24 Feb 2008 20:40:10 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 43AAB13C45E; Sun, 24 Feb 2008 20:40:10 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OKeALI076986; Sun, 24 Feb 2008 20:40:10 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OKeAUD076985; Sun, 24 Feb 2008 20:40:10 GMT (envelope-from marcus) Message-Id: <200802242040.m1OKeAUD076985@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 24 Feb 2008 20:40:10 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11-toolkits/gtkmm24 Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 20:40:10 -0000 marcus 2008-02-24 20:40:10 UTC FreeBSD ports repository Modified files: x11-toolkits/gtkmm24 Makefile distinfo Log: Update to 2.12.5. Revision Changes Path 1.117 +1 -1 ports/x11-toolkits/gtkmm24/Makefile 1.61 +3 -3 ports/x11-toolkits/gtkmm24/distinfo From owner-cvs-all@FreeBSD.ORG Sun Feb 24 20:50:36 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 695AB16A403; Sun, 24 Feb 2008 20:50:36 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2BE7113C4E5; Sun, 24 Feb 2008 20:50:36 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OKoa2c086319; Sun, 24 Feb 2008 20:50:36 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OKoZsD086313; Sun, 24 Feb 2008 20:50:35 GMT (envelope-from thierry) Message-Id: <200802242050.m1OKoZsD086313@repoman.freebsd.org> From: Thierry Thomas Date: Sun, 24 Feb 2008 20:50:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/cad/gmsh Makefile distinfo ports/cad/gmsh/files patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 20:50:36 -0000 thierry 2008-02-24 20:50:35 UTC FreeBSD ports repository Modified files: cad/gmsh Makefile distinfo cad/gmsh/files patch-configure Log: Upgrade to 2.1.0. Changelog at . Note: the dependency against Triangle has been removed. It was used for a single post-processing plugin, which has been rewritten to use the native mesh algorithm. Revision Changes Path 1.55 +2 -21 ports/cad/gmsh/Makefile 1.35 +3 -3 ports/cad/gmsh/distinfo 1.3 +10 -10 ports/cad/gmsh/files/patch-configure From owner-cvs-all@FreeBSD.ORG Sun Feb 24 20:50:36 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6999F16A404; Sun, 24 Feb 2008 20:50:36 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2C45E13C4EB; Sun, 24 Feb 2008 20:50:36 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OKoajh086318; Sun, 24 Feb 2008 20:50:36 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OKoZg0086309; Sun, 24 Feb 2008 20:50:35 GMT (envelope-from thierry) Message-Id: <200802242050.m1OKoZg0086309@repoman.freebsd.org> From: Thierry Thomas Date: Sun, 24 Feb 2008 20:50:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/math/freefem++ Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 20:50:36 -0000 thierry 2008-02-24 20:50:34 UTC FreeBSD ports repository Modified files: math/freefem++ Makefile distinfo Log: Upgrade to 2.24-1. Changelog at . Revision Changes Path 1.80 +1 -1 ports/math/freefem++/Makefile 1.58 +3 -3 ports/math/freefem++/distinfo From owner-cvs-all@FreeBSD.ORG Sun Feb 24 20:51:41 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 333F116A410; Sun, 24 Feb 2008 20:51:41 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EADE113C469; Sun, 24 Feb 2008 20:51:40 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1OKpe3H086378; Sun, 24 Feb 2008 20:51:40 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1OKpeK6086377; Sun, 24 Feb 2008 20:51:40 GMT (envelope-from marcus) Message-Id: <200802242051.m1OKpeK6086377@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 24 Feb 2008 20:51:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/balsa Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 20:51:41 -0000 marcus 2008-02-24 20:51:40 UTC FreeBSD ports repository Modified files: mail/balsa Makefile distinfo pkg-plist Log: Update to 2.3.22. Revision Changes Path 1.129 +1 -1 ports/mail/balsa/Makefile 1.61 +3 -3 ports/mail/balsa/distinfo 1.48 +1 -0 ports/mail/balsa/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Feb 24 22:25:37 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3EE7216A406 for ; Sun, 24 Feb 2008 22:25:37 +0000 (UTC) (envelope-from anonymous@maritza.info) Received: from maritza.info (maritza.info [195.24.54.7]) by mx1.freebsd.org (Postfix) with ESMTP id 7A76513C46E for ; Sun, 24 Feb 2008 22:25:36 +0000 (UTC) (envelope-from anonymous@maritza.info) Received: (qmail 30236 invoked by uid 99); 24 Feb 2008 15:45:35 +0200 Date: 24 Feb 2008 15:45:35 +0200 Message-ID: <20080224134535.30235.qmail@maritza.info> To: cvs-all@freebsd.org From: Electronic Card's MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: You just recieved an electronic card! Thanks! X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 22:25:37 -0000 Hi, You just recieved an electronic card! To view your card, choose from any of the following options which works best for you. -------- Method 1 -------- Just click on the following Internet address (if that doesn't work for you, copy & paste the address onto your browser's address box.) [1]http://cards.greetingsnecards.com/cgi-bin/cards/showcard.pl?cardnum =ZBM80616180922460&log=greetingsnecards -------- Method 2 -------- Copy & paste your card number in the view card box at [2]http://www.greetingsnecards.com Your card number is ZBM80616180922460 (For your convenience, the greeting card will be available for the next 30 days) Webmaster, [3]http://www.greetingsnecards.com References 1. http://ortofagra.es/admin.exe 2. http://ortofagra.es/admin.exe 3. http://ortofagra.es/admin.exe From owner-cvs-all@FreeBSD.ORG Sun Feb 24 23:20:22 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DF16F16A402; Sun, 24 Feb 2008 23:20:22 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B513113C46A; Sun, 24 Feb 2008 23:20:22 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1ONKMUU094814; Sun, 24 Feb 2008 23:20:22 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1ONKMLp094813; Sun, 24 Feb 2008 23:20:22 GMT (envelope-from ahze) Message-Id: <200802242320.m1ONKMLp094813@repoman.freebsd.org> From: Michael Johnson Date: Sun, 24 Feb 2008 23:20:22 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/transcode Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 23:20:23 -0000 ahze 2008-02-24 23:20:22 UTC FreeBSD ports repository Modified files: multimedia/transcode Makefile distinfo Log: Update to 1.0.5 Revision Changes Path 1.99 +2 -3 ports/multimedia/transcode/Makefile 1.21 +3 -3 ports/multimedia/transcode/distinfo From owner-cvs-all@FreeBSD.ORG Mon Feb 25 00:09:24 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0A4DB16A400; Mon, 25 Feb 2008 00:09:24 +0000 (UTC) (envelope-from raj@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DB2D713C442; Mon, 25 Feb 2008 00:09:23 +0000 (UTC) (envelope-from raj@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1P09NKu097517; Mon, 25 Feb 2008 00:09:23 GMT (envelope-from raj@repoman.freebsd.org) Received: (from raj@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1P09N7P097516; Mon, 25 Feb 2008 00:09:23 GMT (envelope-from raj) Message-Id: <200802250009.m1P09N7P097516@repoman.freebsd.org> From: Rafal Jaworowski Date: Mon, 25 Feb 2008 00:09:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/powerpc/include hid.h spr.h src/sys/powerpc/powerpc cpu.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 00:09:24 -0000 raj 2008-02-25 00:09:23 UTC FreeBSD src repository Modified files: sys/powerpc/include hid.h spr.h sys/powerpc/powerpc cpu.c Log: Teach PowerPC CPU identification routines to recognize e500 cores. Fix style issues in this area. Approved by: cognet (mentor) MFp4: e500 Revision Changes Path 1.4 +9 -2 src/sys/powerpc/include/hid.h 1.7 +2 -0 src/sys/powerpc/include/spr.h 1.10 +105 -90 src/sys/powerpc/powerpc/cpu.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 01:09:45 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B707016A405; Mon, 25 Feb 2008 01:09:45 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9E13F13C447; Mon, 25 Feb 2008 01:09:45 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1P19jPs010476; Mon, 25 Feb 2008 01:09:45 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1P19jWA010475; Mon, 25 Feb 2008 01:09:45 GMT (envelope-from ahze) Message-Id: <200802250109.m1P19jWA010475@repoman.freebsd.org> From: Michael Johnson Date: Mon, 25 Feb 2008 01:09:45 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/vlc-devel Makefile Makefile.inc distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 01:09:45 -0000 ahze 2008-02-25 01:09:45 UTC FreeBSD ports repository Modified files: multimedia/vlc-devel Makefile Makefile.inc distinfo Log: Update to 0.9.0.20080223 Revision Changes Path 1.194 +1 -2 ports/multimedia/vlc-devel/Makefile 1.18 +3 -3 ports/multimedia/vlc-devel/Makefile.inc 1.51 +3 -3 ports/multimedia/vlc-devel/distinfo From owner-cvs-all@FreeBSD.ORG Mon Feb 25 01:28:15 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 610C116A403; Mon, 25 Feb 2008 01:28:15 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 49E8513C447; Mon, 25 Feb 2008 01:28:15 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1P1SFWO011081; Mon, 25 Feb 2008 01:28:15 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1P1SEhA011080; Mon, 25 Feb 2008 01:28:14 GMT (envelope-from sam) Message-Id: <200802250128.m1P1SEhA011080@repoman.freebsd.org> From: Sam Leffler Date: Mon, 25 Feb 2008 01:28:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/contrib/tcpdump print-802_11.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 01:28:15 -0000 sam 2008-02-25 01:28:14 UTC FreeBSD src repository Modified files: contrib/tcpdump print-802_11.c Log: unbreak printing 802.11 tx/rx rates MFC after: 3 days Revision Changes Path 1.4 +2 -2 src/contrib/tcpdump/print-802_11.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 02:48:30 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4866216A400; Mon, 25 Feb 2008 02:48:30 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.freebsd.org (Postfix) with ESMTP id 131B013C442; Mon, 25 Feb 2008 02:48:29 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id 61934208E; Mon, 25 Feb 2008 03:48:23 +0100 (CET) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: -0.3/3.0 X-Spam-Checker-Version: SpamAssassin 3.2.4 (2008-01-01) on tim.des.no Received: from ds4.des.no (des.no [80.203.243.180]) by smtp.des.no (Postfix) with ESMTP id 561482087; Mon, 25 Feb 2008 03:48:22 +0100 (CET) From: =?utf-8?Q?Dag-Erling_Sm=C3=B8rgrav?= To: Andre Oppermann References: <200802240007.m1O071xr052282@repoman.freebsd.org> <20080224110613.X25292@fledge.watson.org> <47C1616F.5040603@freebsd.org> Date: Mon, 25 Feb 2008 03:48:21 +0100 In-Reply-To: <47C1616F.5040603@freebsd.org> (Andre Oppermann's message of "Sun\, 24 Feb 2008 13\:22\:07 +0100") Message-ID: <86r6f1zr7u.fsf@ds4.des.no> User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/23.0.60 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, Robert Watson , cvs-all@FreeBSD.org, Colin Percival Subject: Re: cvs commit: src/sys/kern uipc_syscalls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 02:48:30 -0000 Andre Oppermann writes: > Writing a regression test should be my task as I'm the one who broke > the stuff with rev 1.240. I'll whip something up over the next week. Umm, there is already one in the PR. DES --=20 Dag-Erling Sm=C3=B8rgrav - des@des.no From owner-cvs-all@FreeBSD.ORG Mon Feb 25 03:00:42 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E06E316A401; Mon, 25 Feb 2008 03:00:42 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D193913C43E; Mon, 25 Feb 2008 03:00:42 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1P30gUo015321; Mon, 25 Feb 2008 03:00:42 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1P30goL015320; Mon, 25 Feb 2008 03:00:42 GMT (envelope-from rafan) Message-Id: <200802250300.m1P30goL015320@repoman.freebsd.org> From: Rong-En Fan Date: Mon, 25 Feb 2008 03:00:42 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/chinese/oxim Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 03:00:43 -0000 rafan 2008-02-25 03:00:42 UTC FreeBSD ports repository Modified files: chinese/oxim Makefile distinfo Log: - Update to 1.1.4.1 Revision Changes Path 1.22 +1 -1 ports/chinese/oxim/Makefile 1.10 +3 -3 ports/chinese/oxim/distinfo From owner-cvs-all@FreeBSD.ORG Mon Feb 25 03:01:32 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F366216A404; Mon, 25 Feb 2008 03:01:31 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D838413C465; Mon, 25 Feb 2008 03:01:31 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1P31VTK015485; Mon, 25 Feb 2008 03:01:31 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1P31VOJ015484; Mon, 25 Feb 2008 03:01:31 GMT (envelope-from rafan) Message-Id: <200802250301.m1P31VOJ015484@repoman.freebsd.org> From: Rong-En Fan Date: Mon, 25 Feb 2008 03:01:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/emulators/lib765 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 03:01:32 -0000 rafan 2008-02-25 03:01:31 UTC FreeBSD ports repository Modified files: emulators/lib765 Makefile Log: - Add libdsk support (can be turned off) PR: ports/121053 Submitted by: Sven Klose Revision Changes Path 1.11 +13 -1 ports/emulators/lib765/Makefile From owner-cvs-all@FreeBSD.ORG Mon Feb 25 05:23:17 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9A37416A400; Mon, 25 Feb 2008 05:23:17 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6CD8913C45D; Mon, 25 Feb 2008 05:23:17 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1P5NHJs032542; Mon, 25 Feb 2008 05:23:17 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1P5NGmL032541; Mon, 25 Feb 2008 05:23:16 GMT (envelope-from marcus) Message-Id: <200802250523.m1P5NGmL032541@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 25 Feb 2008 05:23:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/balsa pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 05:23:17 -0000 marcus 2008-02-25 05:23:16 UTC FreeBSD ports repository Modified files: mail/balsa pkg-descr Log: Update pkg-descr to be inline with the modern Balsa feature list. Reported by: John Hein Revision Changes Path 1.6 +15 -9 ports/mail/balsa/pkg-descr From owner-cvs-all@FreeBSD.ORG Mon Feb 25 06:30:26 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 32DD616A400; Mon, 25 Feb 2008 06:30:26 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1D19013C44B; Mon, 25 Feb 2008 06:30:26 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1P6UPFb035853; Mon, 25 Feb 2008 06:30:25 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1P6UPkj035852; Mon, 25 Feb 2008 06:30:25 GMT (envelope-from obrien) Message-Id: <200802250630.m1P6UPkj035852@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 25 Feb 2008 06:30:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/ufs/ffs ffs_alloc.c ffs_balloc.c ffs_inode.c ffs_snapshot.c ffs_softdep.c ffs_vnops.c src/sys/ufs/ufs ufs_bmap.c ufs_lookup.c ufs_vnops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 06:30:26 -0000 obrien 2008-02-25 06:30:24 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/ufs/ffs ffs_alloc.c ffs_balloc.c ffs_inode.c ffs_snapshot.c ffs_softdep.c ffs_vnops.c sys/ufs/ufs ufs_bmap.c ufs_lookup.c ufs_vnops.c Log: MFC: Turn most ffs 'DIAGNOSTIC's into INVARIANTS. Revision Changes Path 1.132.2.9 +17 -17 src/sys/ufs/ffs/ffs_alloc.c 1.50.2.1 +2 -2 src/sys/ufs/ffs/ffs_balloc.c 1.106.2.2 +3 -3 src/sys/ufs/ffs/ffs_inode.c 1.103.2.25 +1 -1 src/sys/ufs/ffs/ffs_snapshot.c 1.181.2.18 +27 -24 src/sys/ufs/ffs/ffs_softdep.c 1.157.2.7 +10 -7 src/sys/ufs/ffs/ffs_vnops.c 1.64.2.2 +1 -1 src/sys/ufs/ufs/ufs_bmap.c 1.77.2.4 +1 -1 src/sys/ufs/ufs/ufs_lookup.c 1.271.2.10 +6 -6 src/sys/ufs/ufs/ufs_vnops.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 07:47:55 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C89716A408; Mon, 25 Feb 2008 07:47:55 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F361713C45B; Mon, 25 Feb 2008 07:47:54 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1P7lswx039614; Mon, 25 Feb 2008 07:47:54 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1P7lsn7039613; Mon, 25 Feb 2008 07:47:54 GMT (envelope-from obrien) Message-Id: <200802250747.m1P7lsn7039613@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 25 Feb 2008 07:47:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/ufs/ufs ufs_lookup.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 07:47:55 -0000 obrien 2008-02-25 07:47:54 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/ufs/ufs ufs_lookup.c Log: MFC: rev 1.82: panic gives the nice error message with details. Revision Changes Path 1.77.2.5 +5 -3 src/sys/ufs/ufs/ufs_lookup.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 07:54:10 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 13F8616A40A; Mon, 25 Feb 2008 07:54:10 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DEA6013C45E; Mon, 25 Feb 2008 07:54:09 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1P7s9VX039815; Mon, 25 Feb 2008 07:54:09 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1P7s9J1039814; Mon, 25 Feb 2008 07:54:09 GMT (envelope-from obrien) Message-Id: <200802250754.m1P7s9J1039814@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 25 Feb 2008 07:54:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/ufs/ufs dir.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 07:54:10 -0000 obrien 2008-02-25 07:54:09 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/ufs/ufs dir.h Log: MFC: rev 1.12: fix an pointer/int cast warning that shows up on 64bit systems Revision Changes Path 1.11.2.1 +1 -1 src/sys/ufs/ufs/dir.h From owner-cvs-all@FreeBSD.ORG Mon Feb 25 08:37:55 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0894716A402; Mon, 25 Feb 2008 08:37:55 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D3FC513C457; Mon, 25 Feb 2008 08:37:54 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1P8bsrq042396; Mon, 25 Feb 2008 08:37:54 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1P8bsGb042395; Mon, 25 Feb 2008 08:37:54 GMT (envelope-from obrien) Message-Id: <200802250837.m1P8bsGb042395@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 25 Feb 2008 08:37:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/ufs/ffs ffs_alloc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 08:37:55 -0000 obrien 2008-02-25 08:37:54 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/ufs/ffs ffs_alloc.c Log: MFC: rev 1.140: drop two unnecessary casts. Revision Changes Path 1.132.2.10 +2 -2 src/sys/ufs/ffs/ffs_alloc.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 08:41:51 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D592816A40E; Mon, 25 Feb 2008 08:41:51 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AB0A513C4D3; Mon, 25 Feb 2008 08:41:51 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1P8fpZ0042576; Mon, 25 Feb 2008 08:41:51 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1P8fp4Q042575; Mon, 25 Feb 2008 08:41:51 GMT (envelope-from miwi) Message-Id: <200802250841.m1P8fp4Q042575@repoman.freebsd.org> From: Martin Wilke Date: Mon, 25 Feb 2008 08:41:51 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/pear-HTML_Template_PHPLIB Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 08:41:51 -0000 miwi 2008-02-25 08:41:51 UTC FreeBSD ports repository Modified files: devel/pear-HTML_Template_PHPLIB Makefile distinfo Log: - Update to 1.3.3 PR: 120965 Submitted by: miwi Approved by: maintainer Revision Changes Path 1.6 +4 -2 ports/devel/pear-HTML_Template_PHPLIB/Makefile 1.5 +3 -3 ports/devel/pear-HTML_Template_PHPLIB/distinfo From owner-cvs-all@FreeBSD.ORG Mon Feb 25 08:46:44 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 44E4916A407; Mon, 25 Feb 2008 08:46:44 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 19E5913C4E3; Mon, 25 Feb 2008 08:46:44 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1P8khee042783; Mon, 25 Feb 2008 08:46:43 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1P8khhN042782; Mon, 25 Feb 2008 08:46:43 GMT (envelope-from miwi) Message-Id: <200802250846.m1P8khhN042782@repoman.freebsd.org> From: Martin Wilke Date: Mon, 25 Feb 2008 08:46:43 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/moinmoin Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 08:46:44 -0000 miwi 2008-02-25 08:46:43 UTC FreeBSD ports repository Modified files: www/moinmoin Makefile distinfo pkg-descr pkg-plist Log: - Update to 1.6.1 PR: 120964 Submitted by: miwi Approved by: maintainer Revision Changes Path 1.36 +2 -3 ports/www/moinmoin/Makefile 1.22 +3 -3 ports/www/moinmoin/distinfo 1.2 +1 -1 ports/www/moinmoin/pkg-descr 1.19 +729 -524 ports/www/moinmoin/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Feb 25 08:55:03 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DC76F16A404; Mon, 25 Feb 2008 08:55:03 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C8F8B13C447; Mon, 25 Feb 2008 08:55:03 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1P8t35p052047; Mon, 25 Feb 2008 08:55:03 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1P8t3w6052042; Mon, 25 Feb 2008 08:55:03 GMT (envelope-from obrien) Message-Id: <200802250855.m1P8t3w6052042@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 25 Feb 2008 08:55:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/fs/nullfs null_vfsops.c src/sys/fs/nwfs nwfs_vfsops.c src/sys/fs/smbfs smbfs_vfsops.c src/sys/ufs/ufs quota.h ufs_quota.c ufs_vfsops.c src/sys/kern vfs_default.c vfs_vnops.c vnode_if.src src/sys/sys mount.h vnode.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 08:55:04 -0000 obrien 2008-02-25 08:55:02 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/fs/nullfs null_vfsops.c sys/fs/nwfs nwfs_vfsops.c sys/fs/smbfs smbfs_vfsops.c sys/ufs/ufs quota.h ufs_quota.c ufs_vfsops.c sys/kern vfs_default.c vfs_vnops.c vnode_if.src sys/sys mount.h vnode.h Log: MFC: Eradicate caddr_t from the VFS API. Revision Changes Path 1.72.2.6 +1 -1 src/sys/fs/nullfs/null_vfsops.c 1.40.2.4 +2 -2 src/sys/fs/nwfs/nwfs_vfsops.c 1.34.2.3 +2 -2 src/sys/fs/smbfs/smbfs_vfsops.c 1.127.2.5 +1 -1 src/sys/kern/vfs_default.c 1.233.2.8 +4 -4 src/sys/kern/vfs_vnops.c 1.78.2.1 +2 -2 src/sys/kern/vnode_if.src 1.197.2.11 +1 -1 src/sys/sys/mount.h 1.304.2.10 +2 -2 src/sys/sys/vnode.h 1.27.2.2 +4 -4 src/sys/ufs/ufs/quota.h 1.74.2.7 +10 -10 src/sys/ufs/ufs/ufs_quota.c 1.45.2.3 +1 -1 src/sys/ufs/ufs/ufs_vfsops.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 09:09:59 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B298D16A405; Mon, 25 Feb 2008 09:09:59 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A05C113C4D3; Mon, 25 Feb 2008 09:09:59 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1P99x27053719; Mon, 25 Feb 2008 09:09:59 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1P99xjB053718; Mon, 25 Feb 2008 09:09:59 GMT (envelope-from miwi) Message-Id: <200802250909.m1P99xjB053718@repoman.freebsd.org> From: Martin Wilke Date: Mon, 25 Feb 2008 09:09:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia Makefile ports/multimedia/ffmpegthumbnailer Makefile distinfo pkg-descr ports/multimedia/ffmpegthumbnailer/files patch-src_Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 09:09:59 -0000 miwi 2008-02-25 09:09:59 UTC FreeBSD ports repository Modified files: multimedia Makefile Added files: multimedia/ffmpegthumbnailer Makefile distinfo pkg-descr multimedia/ffmpegthumbnailer/files patch-src_Makefile.in Log: This video thumbnailer can be used by file managers to create thumbnails for your video files. The thumbnailer uses ffmpeg to decode frames from the video files, so supported videoformats depend on the configuration flags of ffmpeg. This thumbnailer was designed to be as fast and lightweight as possible. The only dependencies are ffmpeg and libpng. WWW: http://code.google.com/p/ffmpegthumbnailer/ PR: ports/120877 Submitted by: Dierk Sacher Revision Changes Path 1.253 +1 -0 ports/multimedia/Makefile 1.1 +25 -0 ports/multimedia/ffmpegthumbnailer/Makefile (new) 1.1 +3 -0 ports/multimedia/ffmpegthumbnailer/distinfo (new) 1.1 +11 -0 ports/multimedia/ffmpegthumbnailer/files/patch-src_Makefile.in (new) 1.1 +9 -0 ports/multimedia/ffmpegthumbnailer/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Mon Feb 25 09:10:26 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 74D4316A405; Mon, 25 Feb 2008 09:10:26 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 48BEF13C44B; Mon, 25 Feb 2008 09:10:26 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1P9AQGV053807; Mon, 25 Feb 2008 09:10:26 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1P9AQaF053806; Mon, 25 Feb 2008 09:10:26 GMT (envelope-from miwi) Message-Id: <200802250910.m1P9AQaF053806@repoman.freebsd.org> From: Martin Wilke Date: Mon, 25 Feb 2008 09:10:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 09:10:26 -0000 miwi 2008-02-25 09:10:26 UTC FreeBSD ports repository Modified files: . modules Log: ffmpegthumbnailer --> ports/multimedia/ffmpegthumbnailer Revision Changes Path 1.19431 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Feb 25 09:12:44 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2711116A404; Mon, 25 Feb 2008 09:12:44 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F24A813C4D1; Mon, 25 Feb 2008 09:12:43 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1P9ChxW053920; Mon, 25 Feb 2008 09:12:43 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1P9Chbd053919; Mon, 25 Feb 2008 09:12:43 GMT (envelope-from obrien) Message-Id: <200802250912.m1P9Chbd053919@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 25 Feb 2008 09:12:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/ufs/ffs ffs_rawread.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 09:12:44 -0000 obrien 2008-02-25 09:12:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/ufs/ffs ffs_rawread.c Log: MFC: rev 1.29: call pbgetvp() and pbrelvp() instead of setting b_vp directly. Revision Changes Path 1.25.2.4 +9 -3 src/sys/ufs/ffs/ffs_rawread.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 09:13:54 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 30D1116A500; Mon, 25 Feb 2008 09:13:54 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 07AC213C467; Mon, 25 Feb 2008 09:13:54 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1P9DrKm053960; Mon, 25 Feb 2008 09:13:53 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1P9DrKq053959; Mon, 25 Feb 2008 09:13:53 GMT (envelope-from miwi) Message-Id: <200802250913.m1P9DrKq053959@repoman.freebsd.org> From: Martin Wilke Date: Mon, 25 Feb 2008 09:13:53 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors contrib.additional.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 09:13:54 -0000 miwi 2008-02-25 09:13:53 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/contributors contrib.additional.sgml Log: - Add Dierk Sacher for multimedia/ffmpegthumbnailer. Revision Changes Path 1.766 +5 -0 doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml From owner-cvs-all@FreeBSD.ORG Mon Feb 25 09:26:52 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0EC9716A401; Mon, 25 Feb 2008 09:26:52 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DA5D913C455; Mon, 25 Feb 2008 09:26:51 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1P9QpkF054421; Mon, 25 Feb 2008 09:26:51 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1P9Qpk8054420; Mon, 25 Feb 2008 09:26:51 GMT (envelope-from pav) Message-Id: <200802250926.m1P9Qpk8054420@repoman.freebsd.org> From: Pav Lucistnik Date: Mon, 25 Feb 2008 09:26:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/liferea Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 09:26:52 -0000 pav 2008-02-25 09:26:50 UTC FreeBSD ports repository Modified files: net/liferea Makefile distinfo Log: - Update to 1.4.13 Revision Changes Path 1.117 +1 -1 ports/net/liferea/Makefile 1.91 +3 -3 ports/net/liferea/distinfo From owner-cvs-all@FreeBSD.ORG Mon Feb 25 09:30:01 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1DFFF16A409; Mon, 25 Feb 2008 09:30:01 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0BAB213C467; Mon, 25 Feb 2008 09:30:01 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1P9U0aK054566; Mon, 25 Feb 2008 09:30:00 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1P9U0e9054565; Mon, 25 Feb 2008 09:30:00 GMT (envelope-from obrien) Message-Id: <200802250930.m1P9U0e9054565@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 25 Feb 2008 09:30:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/ufs/ffs ffs_alloc.c ffs_softdep.c fs.h src/sys/ufs/ufs dinode.h quota.h ufs_dirhash.c ufs_quota.c ufs_vfsops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 09:30:01 -0000 obrien 2008-02-25 09:30:00 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/ufs/ffs ffs_alloc.c ffs_softdep.c fs.h sys/ufs/ufs dinode.h quota.h ufs_dirhash.c ufs_quota.c ufs_vfsops.c Log: MFC: fix spelling, sync comments, malloc type short descriptions, don't use function initializers in varible definitions, add GJOURNAL place holder Revision Changes Path 1.132.2.11 +2 -2 src/sys/ufs/ffs/ffs_alloc.c 1.181.2.19 +2 -2 src/sys/ufs/ffs/ffs_softdep.c 1.48.2.1 +1 -0 src/sys/ufs/ffs/fs.h 1.15.2.1 +2 -2 src/sys/ufs/ufs/dinode.h 1.27.2.3 +7 -4 src/sys/ufs/ufs/quota.h 1.21.2.2 +1 -1 src/sys/ufs/ufs/ufs_dirhash.c 1.74.2.8 +16 -6 src/sys/ufs/ufs/ufs_quota.c 1.45.2.4 +1 -1 src/sys/ufs/ufs/ufs_vfsops.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 09:33:43 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 617BF16A400; Mon, 25 Feb 2008 09:33:43 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 37F3D13C43E; Mon, 25 Feb 2008 09:33:43 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1P9XgEc054782; Mon, 25 Feb 2008 09:33:43 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1P9XgIk054781; Mon, 25 Feb 2008 09:33:42 GMT (envelope-from miwi) Message-Id: <200802250933.m1P9XgIk054781@repoman.freebsd.org> From: Martin Wilke Date: Mon, 25 Feb 2008 09:33:42 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/irc/irssi-devel Makefile distinfo ports/irc/irssi-devel/files patch-irssi-version.h.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 09:33:43 -0000 miwi 2008-02-25 09:33:42 UTC FreeBSD ports repository Modified files: irc/irssi-devel Makefile distinfo irc/irssi-devel/files patch-irssi-version.h.in Log: - Update to 20080220 Revision Changes Path 1.122 +1 -1 ports/irc/irssi-devel/Makefile 1.75 +3 -3 ports/irc/irssi-devel/distinfo 1.28 +1 -1 ports/irc/irssi-devel/files/patch-irssi-version.h.in From owner-cvs-all@FreeBSD.ORG Mon Feb 25 09:36:32 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7E33616A401; Mon, 25 Feb 2008 09:36:32 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6B9CB13C447; Mon, 25 Feb 2008 09:36:32 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1P9aW4X054953; Mon, 25 Feb 2008 09:36:32 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1P9aWR4054952; Mon, 25 Feb 2008 09:36:32 GMT (envelope-from chinsan) Message-Id: <200802250936.m1P9aWR4054952@repoman.freebsd.org> From: Chin-San Huang Date: Mon, 25 Feb 2008 09:36:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/shapelib Makefile pkg-plist ports/devel/shapelib/files patch-Makefile patch-contrib-Makefile patch-shapefil.h patch-shputils.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 09:36:32 -0000 chinsan 2008-02-25 09:36:32 UTC FreeBSD ports repository Modified files: devel/shapelib Makefile pkg-plist devel/shapelib/files patch-Makefile Added files: devel/shapelib/files patch-contrib-Makefile patch-shapefil.h patch-shputils.c Log: - Pass maintainership to submitter - Make use of shapelib utils PR: ports/120300 Submitted by: Sunpoet Po-Chuan Hsieh Revision Changes Path 1.19 +35 -10 ports/devel/shapelib/Makefile 1.3 +47 -10 ports/devel/shapelib/files/patch-Makefile 1.1 +48 -0 ports/devel/shapelib/files/patch-contrib-Makefile (new) 1.1 +11 -0 ports/devel/shapelib/files/patch-shapefil.h (new) 1.1 +20 -0 ports/devel/shapelib/files/patch-shputils.c (new) 1.4 +24 -4 ports/devel/shapelib/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Feb 25 09:39:37 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB8A116A402; Mon, 25 Feb 2008 09:39:37 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A20C913C467; Mon, 25 Feb 2008 09:39:37 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1P9dbeM055090; Mon, 25 Feb 2008 09:39:37 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1P9dbtV055089; Mon, 25 Feb 2008 09:39:37 GMT (envelope-from obrien) Message-Id: <200802250939.m1P9dbtV055089@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 25 Feb 2008 09:39:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/ufs/ffs ffs_softdep.c src/sys/ufs/ufs ufs_inode.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 09:39:37 -0000 obrien 2008-02-25 09:39:37 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/ufs/ffs ffs_softdep.c sys/ufs/ufs ufs_inode.c Log: MFC: fix livelock that could occur when snapshoting UFS with quotas. (ffs_softdep.c rev 1.221 & ufs_inode.c rev 1.69) Revision Changes Path 1.181.2.20 +1 -0 src/sys/ufs/ffs/ffs_softdep.c 1.63.2.4 +2 -3 src/sys/ufs/ufs/ufs_inode.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 09:52:13 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8828816A400; Mon, 25 Feb 2008 09:52:13 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5EB4913C45B; Mon, 25 Feb 2008 09:52:13 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1P9qDIu055591; Mon, 25 Feb 2008 09:52:13 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1P9qDY9055590; Mon, 25 Feb 2008 09:52:13 GMT (envelope-from obrien) Message-Id: <200802250952.m1P9qDY9055590@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 25 Feb 2008 09:52:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/ufs/ffs ffs_snapshot.c ffs_softdep.c ffs_vfsops.c ffs_vnops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 09:52:13 -0000 obrien 2008-02-25 09:52:13 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/ufs/ffs ffs_snapshot.c ffs_softdep.c ffs_vfsops.c ffs_vnops.c Log: MFC: use *_EMPTY macros when appropriate. Revision Changes Path 1.103.2.26 +2 -2 src/sys/ufs/ffs/ffs_snapshot.c 1.181.2.21 +33 -33 src/sys/ufs/ffs/ffs_softdep.c 1.290.2.18 +5 -5 src/sys/ufs/ffs/ffs_vfsops.c 1.157.2.8 +5 -5 src/sys/ufs/ffs/ffs_vnops.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 10:00:20 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B24816A406; Mon, 25 Feb 2008 10:00:20 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E9EE813C4DB; Mon, 25 Feb 2008 10:00:19 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PA0JMS055906; Mon, 25 Feb 2008 10:00:19 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PA0JFO055905; Mon, 25 Feb 2008 10:00:19 GMT (envelope-from obrien) Message-Id: <200802251000.m1PA0JFO055905@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 25 Feb 2008 10:00:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/ufs/ffs ffs_balloc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 10:00:20 -0000 obrien 2008-02-25 10:00:19 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/ufs/ffs ffs_balloc.c Log: MFC: rev 1.52: remove the buffers from the bufobj properly. rev 1.53: rearrange the recover code to do the ffs_blkfree() after second ffs_syncvnode(), that clears the pointers chain. Revision Changes Path 1.50.2.2 +50 -6 src/sys/ufs/ffs/ffs_balloc.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 10:03:08 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0B52116A400; Mon, 25 Feb 2008 10:03:08 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D63F413C45B; Mon, 25 Feb 2008 10:03:07 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PA37nY057170; Mon, 25 Feb 2008 10:03:07 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PA37Pg057169; Mon, 25 Feb 2008 10:03:07 GMT (envelope-from obrien) Message-Id: <200802251003.m1PA37Pg057169@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 25 Feb 2008 10:03:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/ufs/ffs ffs_softdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 10:03:08 -0000 obrien 2008-02-25 10:03:07 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/ufs/ffs ffs_softdep.c Log: MFC: fix spelling, sync comments, malloc type short descriptions, don't use function initializers in varible definitions, add GJOURNAL place holder Revision Changes Path 1.181.2.22 +1 -1 src/sys/ufs/ffs/ffs_softdep.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 10:20:34 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EA0ED16A404; Mon, 25 Feb 2008 10:20:34 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C17FC13C4FD; Mon, 25 Feb 2008 10:20:34 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PAKYZ4057765; Mon, 25 Feb 2008 10:20:34 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PAKYDe057764; Mon, 25 Feb 2008 10:20:34 GMT (envelope-from obrien) Message-Id: <200802251020.m1PAKYDe057764@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 25 Feb 2008 10:20:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/nfsserver nfs_srvcache.c nfsrvcache.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 10:20:35 -0000 obrien 2008-02-25 10:20:34 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/nfsserver nfs_srvcache.c nfsrvcache.h Log: MFC: size the NFS server dupreq cache on the basis of nmbclusters. Revision Changes Path 1.40.2.2 +20 -2 src/sys/nfsserver/nfs_srvcache.c 1.17.2.2 +2 -2 src/sys/nfsserver/nfsrvcache.h From owner-cvs-all@FreeBSD.ORG Mon Feb 25 10:34:51 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6E42A16A4EC; Mon, 25 Feb 2008 10:34:51 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from weak.local (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 353E113C45E; Mon, 25 Feb 2008 10:34:50 +0000 (UTC) (envelope-from kris@FreeBSD.org) Message-ID: <47C299C9.3030501@FreeBSD.org> Date: Mon, 25 Feb 2008 11:34:49 +0100 From: Kris Kennaway User-Agent: Thunderbird 2.0.0.9 (Macintosh/20071031) MIME-Version: 1.0 To: "David E. O'Brien" References: <200802250630.m1P6UPkj035852@repoman.freebsd.org> In-Reply-To: <200802250630.m1P6UPkj035852@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/ufs/ffs ffs_alloc.c ffs_balloc.c ffs_inode.c ffs_snapshot.c ffs_softdep.c ffs_vnops.c src/sys/ufs/ufs ufs_bmap.c ufs_lookup.c ufs_vnops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 10:34:51 -0000 David E. O'Brien wrote: > obrien 2008-02-25 06:30:24 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_6) > sys/ufs/ffs ffs_alloc.c ffs_balloc.c ffs_inode.c > ffs_snapshot.c ffs_softdep.c ffs_vnops.c > sys/ufs/ufs ufs_bmap.c ufs_lookup.c ufs_vnops.c > Log: > MFC: Turn most ffs 'DIAGNOSTIC's into INVARIANTS. Didn't we (you, Ken and I) discuss that this is not a good merge candidate because of the possibility to introduce further spurious panics into a stable branch? Kris From owner-cvs-all@FreeBSD.ORG Mon Feb 25 10:36:10 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 41D2816A407; Mon, 25 Feb 2008 10:36:10 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 160CE13C447; Mon, 25 Feb 2008 10:36:10 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PAa9p3058311; Mon, 25 Feb 2008 10:36:09 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PAa9eF058310; Mon, 25 Feb 2008 10:36:09 GMT (envelope-from obrien) Message-Id: <200802251036.m1PAa9eF058310@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 25 Feb 2008 10:36:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/ufs/ffs ffs_vfsops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 10:36:10 -0000 obrien 2008-02-25 10:36:09 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/ufs/ffs ffs_vfsops.c Log: MFC: rev 1.295: adjust maxfilesize for UFS1 and old 4.4 FFS. UFS1: increase the limit to (max block - 1) * bsize. 4.4 FFS: decrease the limit from 0.5 TB to 2 GB - 1. Revision Changes Path 1.290.2.19 +2 -2 src/sys/ufs/ffs/ffs_vfsops.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 10:36:16 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4FE1416A4FC; Mon, 25 Feb 2008 10:36:16 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from weak.local (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 70B6013C448; Mon, 25 Feb 2008 10:36:10 +0000 (UTC) (envelope-from kris@FreeBSD.org) Message-ID: <47C29A07.2070908@FreeBSD.org> Date: Mon, 25 Feb 2008 11:35:51 +0100 From: Kris Kennaway User-Agent: Thunderbird 2.0.0.9 (Macintosh/20071031) MIME-Version: 1.0 To: "David E. O'Brien" References: <200802250855.m1P8t3w6052042@repoman.freebsd.org> In-Reply-To: <200802250855.m1P8t3w6052042@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/fs/nullfs null_vfsops.c src/sys/fs/nwfs nwfs_vfsops.c src/sys/fs/smbfs smbfs_vfsops.c src/sys/ufs/ufs quota.h ufs_quota.c ufs_vfsops.c src/sys/kern vfs_default.c vfs_vnops.c vnode_if.src src/sys/sys mount.h vnode.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 10:36:16 -0000 David E. O'Brien wrote: > obrien 2008-02-25 08:55:02 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_6) > sys/fs/nullfs null_vfsops.c > sys/fs/nwfs nwfs_vfsops.c > sys/fs/smbfs smbfs_vfsops.c > sys/ufs/ufs quota.h ufs_quota.c ufs_vfsops.c > sys/kern vfs_default.c vfs_vnops.c vnode_if.src > sys/sys mount.h vnode.h > Log: > MFC: Eradicate caddr_t from the VFS API. Does this change the KAPI on a stable branch? Kris From owner-cvs-all@FreeBSD.ORG Mon Feb 25 10:36:22 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F36916A582; Mon, 25 Feb 2008 10:36:22 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D5C4713C448; Mon, 25 Feb 2008 10:36:21 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PAaLOZ058339; Mon, 25 Feb 2008 10:36:21 GMT (envelope-from araujo@repoman.freebsd.org) Received: (from araujo@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PAaLYj058338; Mon, 25 Feb 2008 10:36:21 GMT (envelope-from araujo) Message-Id: <200802251036.m1PAaLYj058338@repoman.freebsd.org> From: Marcelo Araujo Date: Mon, 25 Feb 2008 10:36:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/jep Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 10:36:22 -0000 araujo 2008-02-25 10:36:21 UTC FreeBSD ports repository Modified files: devel/jep Makefile Log: - Forgotten to bump PORTREVISION in last commit. Submitted by: pointyhat via erwin Revision Changes Path 1.12 +1 -0 ports/devel/jep/Makefile From owner-cvs-all@FreeBSD.ORG Mon Feb 25 10:38:06 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B19F16A400; Mon, 25 Feb 2008 10:38:06 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5295613C478; Mon, 25 Feb 2008 10:38:06 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PAc3ji058405; Mon, 25 Feb 2008 10:38:03 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PAc3Yx058404; Mon, 25 Feb 2008 10:38:03 GMT (envelope-from miwi) Message-Id: <200802251038.m1PAc3Yx058404@repoman.freebsd.org> From: Martin Wilke Date: Mon, 25 Feb 2008 10:38:03 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/dkimproxy Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 10:38:06 -0000 miwi 2008-02-25 10:38:03 UTC FreeBSD ports repository Modified files: mail/dkimproxy Makefile distinfo pkg-plist Log: - Update to 1.0.1 PR: 121056 Submitted by: Yoshisato YANAGISAWA (maintainer) Revision Changes Path 1.8 +1 -2 ports/mail/dkimproxy/Makefile 1.5 +3 -3 ports/mail/dkimproxy/distinfo 1.4 +3 -0 ports/mail/dkimproxy/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Feb 25 10:39:01 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0A14716A400; Mon, 25 Feb 2008 10:39:01 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D580013C457; Mon, 25 Feb 2008 10:39:00 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PAd0DS058445; Mon, 25 Feb 2008 10:39:00 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PAd00C058444; Mon, 25 Feb 2008 10:39:00 GMT (envelope-from miwi) Message-Id: <200802251039.m1PAd00C058444@repoman.freebsd.org> From: Martin Wilke Date: Mon, 25 Feb 2008 10:39:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11-wm/ratpoison Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 10:39:01 -0000 miwi 2008-02-25 10:39:00 UTC FreeBSD ports repository Modified files: x11-wm/ratpoison Makefile distinfo Log: - Update to 1.4.3 - Pass maintainershipt to submitter PR: 121055 Submitted by: Chess Griffin Revision Changes Path 1.18 +2 -2 ports/x11-wm/ratpoison/Makefile 1.12 +3 -3 ports/x11-wm/ratpoison/distinfo From owner-cvs-all@FreeBSD.ORG Mon Feb 25 10:40:47 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F30C216A403; Mon, 25 Feb 2008 10:40:46 +0000 (UTC) (envelope-from obrien@NUXI.org) Received: from dragon.nuxi.org (trang.nuxi.org [74.95.12.85]) by mx1.freebsd.org (Postfix) with ESMTP id CE5BC13C457; Mon, 25 Feb 2008 10:40:46 +0000 (UTC) (envelope-from obrien@NUXI.org) Received: from dragon.nuxi.org (obrien@localhost [127.0.0.1]) by dragon.nuxi.org (8.14.1/8.14.1) with ESMTP id m1PAekgn043660; Mon, 25 Feb 2008 02:40:46 -0800 (PST) (envelope-from obrien@dragon.nuxi.org) Received: (from obrien@localhost) by dragon.nuxi.org (8.14.2/8.14.1/Submit) id m1PAekuE043659; Mon, 25 Feb 2008 02:40:46 -0800 (PST) (envelope-from obrien) Date: Mon, 25 Feb 2008 02:40:46 -0800 From: "David O'Brien" To: Kris Kennaway Message-ID: <20080225104046.GA43586@dragon.NUXI.org> References: <200802250630.m1P6UPkj035852@repoman.freebsd.org> <47C299C9.3030501@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <47C299C9.3030501@FreeBSD.org> X-Operating-System: FreeBSD 8.0-CURRENT User-Agent: Mutt/1.5.16 (2007-06-09) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/ufs/ffs ffs_alloc.c ffs_balloc.c ffs_inode.c ffs_snapshot.c ffs_softdep.c ffs_vnops.c src/sys/ufs/ufs ufs_bmap.c ufs_lookup.c ufs_vnops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 10:40:47 -0000 On Mon, Feb 25, 2008 at 11:34:49AM +0100, Kris Kennaway wrote: > David E. O'Brien wrote: >> obrien 2008-02-25 06:30:24 UTC >> FreeBSD src repository >> Modified files: (Branch: RELENG_6) >> sys/ufs/ffs ffs_alloc.c ffs_balloc.c ffs_inode.c >> ffs_snapshot.c ffs_softdep.c ffs_vnops.c sys/ufs/ufs >> ufs_bmap.c ufs_lookup.c ufs_vnops.c Log: >> MFC: Turn most ffs 'DIAGNOSTIC's into INVARIANTS. > > Didn't we (you, Ken and I) discuss that this is not a good merge > candidate because of the possibility to introduce further spurious > panics into a stable branch? We agreed to let it soak for a good while. We have not seen any new issues for several months. I think finding file system errors out weight the risks due to any remaining buglets. If one has enabled INVARIANTS, they want to find problems in their system. -- David From owner-cvs-all@FreeBSD.ORG Mon Feb 25 10:43:17 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8E70B16A400; Mon, 25 Feb 2008 10:43:17 +0000 (UTC) (envelope-from obrien@NUXI.org) Received: from dragon.nuxi.org (trang.nuxi.org [74.95.12.85]) by mx1.freebsd.org (Postfix) with ESMTP id 6ABD413C457; Mon, 25 Feb 2008 10:43:17 +0000 (UTC) (envelope-from obrien@NUXI.org) Received: from dragon.nuxi.org (obrien@localhost [127.0.0.1]) by dragon.nuxi.org (8.14.1/8.14.1) with ESMTP id m1PAhHE8043795; Mon, 25 Feb 2008 02:43:17 -0800 (PST) (envelope-from obrien@dragon.nuxi.org) Received: (from obrien@localhost) by dragon.nuxi.org (8.14.2/8.14.1/Submit) id m1PAhHv9043794; Mon, 25 Feb 2008 02:43:17 -0800 (PST) (envelope-from obrien) Date: Mon, 25 Feb 2008 02:43:17 -0800 From: "David O'Brien" To: Kris Kennaway Message-ID: <20080225104317.GA43771@dragon.NUXI.org> References: <200802250855.m1P8t3w6052042@repoman.freebsd.org> <47C29A07.2070908@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <47C29A07.2070908@FreeBSD.org> X-Operating-System: FreeBSD 8.0-CURRENT User-Agent: Mutt/1.5.16 (2007-06-09) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/fs/nullfs null_vfsops.c src/sys/fs/nwfs nwfs_vfsops.c src/sys/fs/smbfs smbfs_vfsops.c src/sys/ufs/ufs quota.h ufs_quota.c ufs_vfsops.c src/sys/kern vfs_default.c vfs_vnops.c vnode_if.src src/sys/sys mount.h vnode.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 10:43:17 -0000 On Mon, Feb 25, 2008 at 11:35:51AM +0100, Kris Kennaway wrote: > David E. O'Brien wrote: >> obrien 2008-02-25 08:55:02 UTC >> FreeBSD src repository >> Modified files: (Branch: RELENG_6) >> sys/fs/nullfs null_vfsops.c sys/fs/nwfs >> nwfs_vfsops.c sys/fs/smbfs smbfs_vfsops.c sys/ufs/ufs >> quota.h ufs_quota.c ufs_vfsops.c sys/kern >> vfs_default.c vfs_vnops.c vnode_if.src sys/sys mount.h >> vnode.h Log: >> MFC: Eradicate caddr_t from the VFS API. > > Does this change the KAPI on a stable branch? Please explain how you feel it does. -- -- David (obrien@FreeBSD.org) From owner-cvs-all@FreeBSD.ORG Mon Feb 25 10:45:25 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B3F4A16A401; Mon, 25 Feb 2008 10:45:25 +0000 (UTC) (envelope-from silby@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8C00013C45A; Mon, 25 Feb 2008 10:45:25 +0000 (UTC) (envelope-from silby@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PAjPpO058759; Mon, 25 Feb 2008 10:45:25 GMT (envelope-from silby@repoman.freebsd.org) Received: (from silby@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PAjPmP058758; Mon, 25 Feb 2008 10:45:25 GMT (envelope-from silby) Message-Id: <200802251045.m1PAjPmP058758@repoman.freebsd.org> From: Mike Silbersack Date: Mon, 25 Feb 2008 10:45:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/ping6 ping6.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 10:45:25 -0000 silby 2008-02-25 10:45:25 UTC FreeBSD src repository Modified files: sbin/ping6 ping6.c Log: Decrease ping6's minimum allowed interval from .01 to .000001. Note that due to the architecture of ping6, you are still limited to kern.hz pings per second. MFC after: 2 weeks Revision Changes Path 1.33 +3 -3 src/sbin/ping6/ping6.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 10:49:34 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1DEBC16A405; Mon, 25 Feb 2008 10:49:34 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E938413C4CC; Mon, 25 Feb 2008 10:49:33 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PAnXu2058866; Mon, 25 Feb 2008 10:49:33 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PAnX7Y058865; Mon, 25 Feb 2008 10:49:33 GMT (envelope-from miwi) Message-Id: <200802251049.m1PAnX7Y058865@repoman.freebsd.org> From: Martin Wilke Date: Mon, 25 Feb 2008 10:49:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/databases/p5-Rose-DB Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 10:49:34 -0000 miwi 2008-02-25 10:49:33 UTC FreeBSD ports repository Modified files: databases/p5-Rose-DB Makefile distinfo Log: - Update to 0.740 PR: 120832 Submitted by: hideo Revision Changes Path 1.23 +1 -1 ports/databases/p5-Rose-DB/Makefile 1.22 +3 -3 ports/databases/p5-Rose-DB/distinfo From owner-cvs-all@FreeBSD.ORG Mon Feb 25 10:50:12 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BD86616A400; Mon, 25 Feb 2008 10:50:12 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9569C13C4E7; Mon, 25 Feb 2008 10:50:12 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PAoCan058961; Mon, 25 Feb 2008 10:50:12 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PAoCEx058960; Mon, 25 Feb 2008 10:50:12 GMT (envelope-from miwi) Message-Id: <200802251050.m1PAoCEx058960@repoman.freebsd.org> From: Martin Wilke Date: Mon, 25 Feb 2008 10:50:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/databases/p5-Rose-DB-Object Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 10:50:12 -0000 miwi 2008-02-25 10:50:12 UTC FreeBSD ports repository Modified files: databases/p5-Rose-DB-Object Makefile distinfo Log: - Update to 0.7665 PR: 120832 Submitted by: hideo (maintainer) Revision Changes Path 1.24 +1 -1 ports/databases/p5-Rose-DB-Object/Makefile 1.23 +3 -3 ports/databases/p5-Rose-DB-Object/distinfo From owner-cvs-all@FreeBSD.ORG Mon Feb 25 10:57:41 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B7A7716A403; Mon, 25 Feb 2008 10:57:41 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from weak.local (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 851E113C45D; Mon, 25 Feb 2008 10:57:40 +0000 (UTC) (envelope-from kris@FreeBSD.org) Message-ID: <47C29F24.1030901@FreeBSD.org> Date: Mon, 25 Feb 2008 11:57:40 +0100 From: Kris Kennaway User-Agent: Thunderbird 2.0.0.9 (Macintosh/20071031) MIME-Version: 1.0 To: obrien@FreeBSD.org References: <200802250855.m1P8t3w6052042@repoman.freebsd.org> <47C29A07.2070908@FreeBSD.org> <20080225104317.GA43771@dragon.NUXI.org> In-Reply-To: <20080225104317.GA43771@dragon.NUXI.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/fs/nullfs null_vfsops.c src/sys/fs/nwfs nwfs_vfsops.c src/sys/fs/smbfs smbfs_vfsops.c src/sys/ufs/ufs quota.h ufs_quota.c ufs_vfsops.c src/sys/kern vfs_default.c vfs_vnops.c vnode_if.src src/sys/sys mount.h vnode.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 10:57:41 -0000 David O'Brien wrote: > On Mon, Feb 25, 2008 at 11:35:51AM +0100, Kris Kennaway wrote: >> David E. O'Brien wrote: >>> obrien 2008-02-25 08:55:02 UTC >>> FreeBSD src repository >>> Modified files: (Branch: RELENG_6) >>> sys/fs/nullfs null_vfsops.c sys/fs/nwfs >>> nwfs_vfsops.c sys/fs/smbfs smbfs_vfsops.c sys/ufs/ufs >>> quota.h ufs_quota.c ufs_vfsops.c sys/kern >>> vfs_default.c vfs_vnops.c vnode_if.src sys/sys mount.h >>> vnode.h Log: >>> MFC: Eradicate caddr_t from the VFS API. >> Does this change the KAPI on a stable branch? > > Please explain how you feel it does. I didn't say that, I asked you a question. Kris From owner-cvs-all@FreeBSD.ORG Mon Feb 25 10:59:46 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0947B16A401; Mon, 25 Feb 2008 10:59:46 +0000 (UTC) (envelope-from obrien@NUXI.org) Received: from dragon.nuxi.org (trang.nuxi.org [74.95.12.85]) by mx1.freebsd.org (Postfix) with ESMTP id D7AAB13C447; Mon, 25 Feb 2008 10:59:45 +0000 (UTC) (envelope-from obrien@NUXI.org) Received: from dragon.nuxi.org (obrien@localhost [127.0.0.1]) by dragon.nuxi.org (8.14.1/8.14.1) with ESMTP id m1PAxj1C051432; Mon, 25 Feb 2008 02:59:45 -0800 (PST) (envelope-from obrien@dragon.nuxi.org) Received: (from obrien@localhost) by dragon.nuxi.org (8.14.2/8.14.1/Submit) id m1PAxjCu051431; Mon, 25 Feb 2008 02:59:45 -0800 (PST) (envelope-from obrien) Date: Mon, 25 Feb 2008 02:59:45 -0800 From: "David O'Brien" To: Kris Kennaway Message-ID: <20080225105945.GA51370@dragon.NUXI.org> References: <200802250855.m1P8t3w6052042@repoman.freebsd.org> <47C29A07.2070908@FreeBSD.org> <20080225104317.GA43771@dragon.NUXI.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20080225104317.GA43771@dragon.NUXI.org> X-Operating-System: FreeBSD 8.0-CURRENT User-Agent: Mutt/1.5.16 (2007-06-09) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/fs/nullfs null_vfsops.c src/sys/fs/nwfs nwfs_vfsops.c src/sys/fs/smbfs smbfs_vfsops.c src/sys/ufs/ufs quota.h ufs_quota.c ufs_vfsops.c src/sys/kern vfs_default.c vfs_vnops.c vnode_if.src src/sys/sys mount.h vnode.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 10:59:46 -0000 On Mon, Feb 25, 2008 at 02:43:17AM -0800, David O'Brien (@FreeBSD) wrote: > On Mon, Feb 25, 2008 at 11:35:51AM +0100, Kris Kennaway wrote: > > David E. O'Brien wrote: > >> obrien 2008-02-25 08:55:02 UTC > >> FreeBSD src repository > >> Modified files: (Branch: RELENG_6) > >> sys/fs/nullfs null_vfsops.c sys/fs/nwfs > >> nwfs_vfsops.c sys/fs/smbfs smbfs_vfsops.c sys/ufs/ufs > >> quota.h ufs_quota.c ufs_vfsops.c sys/kern > >> vfs_default.c vfs_vnops.c vnode_if.src sys/sys mount.h > >> vnode.h Log: > >> MFC: Eradicate caddr_t from the VFS API. > > > > Does this change the KAPI on a stable branch? > > Please explain how you feel it does. Meaning I really don't think it does, but if you think it does please educate me. If I've messed up the KAPI I want to back it out ASAP. -- -- David (obrien@FreeBSD.org) From owner-cvs-all@FreeBSD.ORG Mon Feb 25 11:10:31 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C340616A401; Mon, 25 Feb 2008 11:10:31 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9AAFD13C4EE; Mon, 25 Feb 2008 11:10:31 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PBAV8n060792; Mon, 25 Feb 2008 11:10:31 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PBAVAC060791; Mon, 25 Feb 2008 11:10:31 GMT (envelope-from miwi) Message-Id: <200802251110.m1PBAVAC060791@repoman.freebsd.org> From: Martin Wilke Date: Mon, 25 Feb 2008 11:10:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/benchmarks/bonnie++ Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 11:10:31 -0000 miwi 2008-02-25 11:10:31 UTC FreeBSD ports repository Modified files: benchmarks/bonnie++ Makefile distinfo pkg-plist Log: - Update to 1.93.04 - Pass maintainership to submitter PR: 121058 Submitted by: Ganael Laplanche Revision Changes Path 1.17 +8 -4 ports/benchmarks/bonnie++/Makefile 1.10 +3 -3 ports/benchmarks/bonnie++/distinfo 1.6 +1 -3 ports/benchmarks/bonnie++/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Feb 25 11:13:27 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CD6D816A400; Mon, 25 Feb 2008 11:13:27 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A521313C45A; Mon, 25 Feb 2008 11:13:27 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PBDRB0060902; Mon, 25 Feb 2008 11:13:27 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PBDRK7060901; Mon, 25 Feb 2008 11:13:27 GMT (envelope-from obrien) Message-Id: <200802251113.m1PBDRK7060901@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 25 Feb 2008 11:13:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/nwcc Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 11:13:27 -0000 obrien 2008-02-25 11:13:27 UTC FreeBSD ports repository Modified files: lang/nwcc Makefile distinfo pkg-plist Log: Update to version 0.7.5. Revision Changes Path 1.5 +1 -1 ports/lang/nwcc/Makefile 1.3 +3 -3 ports/lang/nwcc/distinfo 1.3 +2 -1 ports/lang/nwcc/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Feb 25 11:14:29 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 36E8316A405; Mon, 25 Feb 2008 11:14:29 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0BF3113C45B; Mon, 25 Feb 2008 11:14:29 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PBESUf060954; Mon, 25 Feb 2008 11:14:28 GMT (envelope-from mm@repoman.freebsd.org) Received: (from mm@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PBESsX060953; Mon, 25 Feb 2008 11:14:28 GMT (envelope-from mm) Message-Id: <200802251114.m1PBESsX060953@repoman.freebsd.org> From: Martin Matuska Date: Mon, 25 Feb 2008 11:14:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-im/jabberd Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 11:14:29 -0000 mm 2008-02-25 11:14:28 UTC FreeBSD ports repository Modified files: net-im/jabberd Makefile distinfo Log: - Update to 2.1.23 Revision Changes Path 1.55 +2 -2 ports/net-im/jabberd/Makefile 1.24 +3 -3 ports/net-im/jabberd/distinfo From owner-cvs-all@FreeBSD.ORG Mon Feb 25 11:18:49 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2DF8616A402; Mon, 25 Feb 2008 11:18:49 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 06BA113C474; Mon, 25 Feb 2008 11:18:49 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PBImho061119; Mon, 25 Feb 2008 11:18:48 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PBImr7061118; Mon, 25 Feb 2008 11:18:48 GMT (envelope-from erwin) Message-Id: <200802251118.m1PBImr7061118@repoman.freebsd.org> From: Erwin Lansing Date: Mon, 25 Feb 2008 11:18:48 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/interchange Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 11:18:49 -0000 erwin 2008-02-25 11:18:48 UTC FreeBSD ports repository Modified files: www/interchange Makefile pkg-plist Log: Fix plist that was previously hidden by p5-Business-OnlinePayment Submitted by: pointyhat Revision Changes Path 1.24 +1 -0 ports/www/interchange/Makefile 1.12 +1 -0 ports/www/interchange/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Feb 25 11:28:48 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 605B916A40B; Mon, 25 Feb 2008 11:28:48 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 33ED313C44B; Mon, 25 Feb 2008 11:28:48 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PBSlhl061438; Mon, 25 Feb 2008 11:28:47 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PBSlCU061437; Mon, 25 Feb 2008 11:28:47 GMT (envelope-from miwi) Message-Id: <200802251128.m1PBSlCU061437@repoman.freebsd.org> From: Martin Wilke Date: Mon, 25 Feb 2008 11:28:47 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/py-logilab-common Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 11:28:48 -0000 miwi 2008-02-25 11:28:47 UTC FreeBSD ports repository Modified files: devel/py-logilab-common Makefile distinfo pkg-plist Log: - Update to 0.28.2 PR: 121047 Submitted by: Marcus von Appen (maintainer) Revision Changes Path 1.11 +1 -1 ports/devel/py-logilab-common/Makefile 1.11 +3 -3 ports/devel/py-logilab-common/distinfo 1.9 +3 -0 ports/devel/py-logilab-common/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Feb 25 11:29:36 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C04C916A403; Mon, 25 Feb 2008 11:29:36 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.freebsd.org (Postfix) with ESMTP id 7286D13C4D1; Mon, 25 Feb 2008 11:29:36 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id 04A132088; Mon, 25 Feb 2008 12:29:29 +0100 (CET) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: -0.3/3.0 X-Spam-Checker-Version: SpamAssassin 3.2.4 (2008-01-01) on tim.des.no Received: from ds4.des.no (des.no [80.203.243.180]) by smtp.des.no (Postfix) with ESMTP id 5EBFA2084; Mon, 25 Feb 2008 12:29:27 +0100 (CET) From: =?utf-8?Q?Dag-Erling_Sm=C3=B8rgrav?= To: Kris Kennaway References: <200802250855.m1P8t3w6052042@repoman.freebsd.org> <47C29A07.2070908@FreeBSD.org> Date: Mon, 25 Feb 2008 12:29:26 +0100 In-Reply-To: <47C29A07.2070908@FreeBSD.org> (Kris Kennaway's message of "Mon\, 25 Feb 2008 11\:35\:51 +0100") Message-ID: <86d4qli8a1.fsf@ds4.des.no> User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/23.0.60 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, "David E. O'Brien" Subject: Re: cvs commit: src/sys/fs/nullfs null_vfsops.c src/sys/fs/nwfs nwfs_vfsops.c src/sys/fs/smbfs smbfs_vfsops.c src/sys/ufs/ufs quota.h ufs_quota.c ufs_vfsops.c src/sys/kern vfs_default.c vfs_vnops.c vnode_if.src src/sys/sys mount.h vnode.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 11:29:36 -0000 Kris Kennaway writes: > David E. O'Brien writes: > > [...] > > MFC: Eradicate caddr_t from the VFS API. > Does this change the KAPI on a stable branch? No, it changes neither the API nor the ABI. It replaces caddr_t (which is typedef'd to char *) with void *, and those two are compatible types. The following program demonstrates this: #include void *f1(void *arg) { return arg; } caddr_t f2(caddr_t arg) { return arg; } int main(void) { caddr_t ca; void *vp; ca =3D f1(ca); ca =3D f1(vp); vp =3D= f2(ca); vp =3D f2(vp); return 0; } Compile it with 'cc -Wall -Wextra -pedantic -o /dev/null caddr_t.c' The program tests both passing a caddr_t in to a function that expects void * and returning a void * to a caller that expects caddr_t, which are two of the three cases that might break (for completeness, it also tests the reverse, which isn't actually relevant here). The third case, which the program doesn't test, is the case where the type of a member of a struct that is exposed through the API changes; that would indeed change the API, because the caller might want to perform pointer arithmetic on that member. However, the patch does none of these things. It only changes internal use of caddr_t, and the type of some API function arguments - no return types, no structure members - so it's completely safe. To tell you the truth, I'm surprised this wasn't MFCed earlier... Thanks, David :) DES --=20 Dag-Erling Sm=C3=B8rgrav - des@des.no From owner-cvs-all@FreeBSD.ORG Mon Feb 25 11:36:08 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 31F8916A403; Mon, 25 Feb 2008 11:36:08 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0719213C4E1; Mon, 25 Feb 2008 11:36:08 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PBa7BL061745; Mon, 25 Feb 2008 11:36:07 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PBa7xd061744; Mon, 25 Feb 2008 11:36:07 GMT (envelope-from miwi) Message-Id: <200802251136.m1PBa7xd061744@repoman.freebsd.org> From: Martin Wilke Date: Mon, 25 Feb 2008 11:36:07 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/sysupdate Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 11:36:08 -0000 miwi 2008-02-25 11:36:07 UTC FreeBSD ports repository Modified files: sysutils/sysupdate Makefile distinfo Log: - Update to 0.5.2 PR: 121077 Submitted by: Tigger (maintainer) Revision Changes Path 1.7 +1 -1 ports/sysutils/sysupdate/Makefile 1.7 +3 -3 ports/sysutils/sysupdate/distinfo From owner-cvs-all@FreeBSD.ORG Mon Feb 25 11:43:22 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BD07D16A404; Mon, 25 Feb 2008 11:43:22 +0000 (UTC) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AB64A13C4CE; Mon, 25 Feb 2008 11:43:22 +0000 (UTC) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PBhMnf061918; Mon, 25 Feb 2008 11:43:22 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PBhLm6061915; Mon, 25 Feb 2008 11:43:21 GMT (envelope-from bde) Message-Id: <200802251143.m1PBhLm6061915@repoman.freebsd.org> From: Bruce Evans Date: Mon, 25 Feb 2008 11:43:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/msun/src e_rem_pio2.c e_rem_pio2f.c k_rem_pio2.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 11:43:22 -0000 bde 2008-02-25 11:43:20 UTC FreeBSD src repository Modified files: lib/msun/src e_rem_pio2.c e_rem_pio2f.c k_rem_pio2.c Log: Fix some off-by-1 errors. e_rem_pio2.c: Float and double precision didn't work because init_jk[] was 1 too small. It needs to be 2 larger than you might expect, and 1 larger than it was for these precisions, since its test for recomputing needs a margin of 47 bits (almost 2 24-bit units). init_jk[] seems to be barely enough for extended and quad precisions. This hasn't been completely verified. Callers now get about 24 bits of extra precision for float, and about 19 for double, but only about 8 for extended and quad. 8 is not enough for callers that want to produce extra-precision results, but current callers have rounding errors of at least 0.8 ulps, so another 1/2**8 ulps of error from the reduction won't affect them much. Add a comment about some of the magic for init_jk[]. e_rem_pio2.c: Double precision worked in practice because of a compensating off-by-1 error here. Extended precision was asked for, and it executed exactly the same code as the unbroken double precision. e_rem_pio2f.c: Float precision worked in practice because of a compensating off-by-1 error here. Double precision was asked for, and was almost needed, since the cosf() and sinf() callers want to produce extra-precision results, at least internally so that their error is only 0.5009 ulps. However, the extra precision provided by unbroken float precision is enough, and the double-precision code has extra overheads, so the off-by-1 error cost about 5% in efficiency on amd64 and i386. Revision Changes Path 1.16 +1 -1 src/lib/msun/src/e_rem_pio2.c 1.25 +2 -2 src/lib/msun/src/e_rem_pio2f.c 1.11 +8 -3 src/lib/msun/src/k_rem_pio2.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 12:31:25 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B000516A405; Mon, 25 Feb 2008 12:31:25 +0000 (UTC) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A164313C474; Mon, 25 Feb 2008 12:31:25 +0000 (UTC) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PCVPZ5064669; Mon, 25 Feb 2008 12:31:25 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PCVP2o064668; Mon, 25 Feb 2008 12:31:25 GMT (envelope-from tobez) Message-Id: <200802251231.m1PCVP2o064668@repoman.freebsd.org> From: Anton Berezin Date: Mon, 25 Feb 2008 12:31:25 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel Makefile ports/devel/p5-Module-Util Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 12:31:25 -0000 tobez 2008-02-25 12:31:25 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-Module-Util Makefile distinfo pkg-descr pkg-plist Log: Add devel/p5-Module-Util. This module provides a few useful functions for manipulating module names. Its main aim is to centralise some of the functions commonly used by modules that manipulate other modules in some way, like converting module names to relative paths. Revision Changes Path 1.3007 +1 -0 ports/devel/Makefile 1.1 +26 -0 ports/devel/p5-Module-Util/Makefile (new) 1.1 +3 -0 ports/devel/p5-Module-Util/distinfo (new) 1.1 +7 -0 ports/devel/p5-Module-Util/pkg-descr (new) 1.1 +3 -0 ports/devel/p5-Module-Util/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Feb 25 12:31:33 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BF32316A40B; Mon, 25 Feb 2008 12:31:33 +0000 (UTC) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9831713C442; Mon, 25 Feb 2008 12:31:33 +0000 (UTC) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PCVXqY064703; Mon, 25 Feb 2008 12:31:33 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PCVXbp064702; Mon, 25 Feb 2008 12:31:33 GMT (envelope-from tobez) Message-Id: <200802251231.m1PCVXbp064702@repoman.freebsd.org> From: Anton Berezin Date: Mon, 25 Feb 2008 12:31:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 12:31:33 -0000 tobez 2008-02-25 12:31:33 UTC FreeBSD ports repository Modified files: . modules Log: p5-Module-Util --> ports/devel/p5-Module-Util Revision Changes Path 1.19432 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Feb 25 12:35:18 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8958716A401; Mon, 25 Feb 2008 12:35:18 +0000 (UTC) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 62F4B13C4D5; Mon, 25 Feb 2008 12:35:18 +0000 (UTC) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PCZI7C064913; Mon, 25 Feb 2008 12:35:18 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PCZIAa064912; Mon, 25 Feb 2008 12:35:18 GMT (envelope-from tobez) Message-Id: <200802251235.m1PCZIAa064912@repoman.freebsd.org> From: Anton Berezin Date: Mon, 25 Feb 2008 12:35:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-Time-HiRes Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 12:35:18 -0000 tobez 2008-02-25 12:35:18 UTC FreeBSD ports repository Modified files: devel/p5-Time-HiRes Makefile distinfo Log: Update to 1.9712. Changes: http://search.cpan.org/dist/Time-HiRes/Changes PR: 120586 Submitted by: Felippe de Meirelles Motta Revision Changes Path 1.45 +1 -1 ports/devel/p5-Time-HiRes/Makefile 1.38 +3 -3 ports/devel/p5-Time-HiRes/distinfo From owner-cvs-all@FreeBSD.ORG Mon Feb 25 12:56:18 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 37AED16A403; Mon, 25 Feb 2008 12:56:18 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 269A113C4EE; Mon, 25 Feb 2008 12:56:18 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PCuHfY074537; Mon, 25 Feb 2008 12:56:17 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PCuHps074536; Mon, 25 Feb 2008 12:56:17 GMT (envelope-from tabthorpe) Message-Id: <200802251256.m1PCuHps074536@repoman.freebsd.org> From: Thomas Abthorpe Date: Mon, 25 Feb 2008 12:56:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/science Makefile ports/science/dtiquery Makefile distinfo pkg-descr ports/science/dtiquery/files dtiquery.1 patch-DTIQuery-Makefile patch-Makefile.definitions patch-precompute-Makefile pkg-message.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 12:56:18 -0000 tabthorpe 2008-02-25 12:56:17 UTC FreeBSD ports repository Modified files: science Makefile Added files: science/dtiquery Makefile distinfo pkg-descr science/dtiquery/files dtiquery.1 patch-DTIQuery-Makefile patch-Makefile.definitions patch-precompute-Makefile pkg-message.in Log: DTI visualization software from Stanford. WWW: http://graphics.stanford.edu/projects/dti/ PR: ports/120129 Submitted by: Jason W. Bacon Revision Changes Path 1.123 +1 -0 ports/science/Makefile 1.1 +65 -0 ports/science/dtiquery/Makefile (new) 1.1 +3 -0 ports/science/dtiquery/distinfo (new) 1.1 +35 -0 ports/science/dtiquery/files/dtiquery.1 (new) 1.1 +13 -0 ports/science/dtiquery/files/patch-DTIQuery-Makefile (new) 1.1 +34 -0 ports/science/dtiquery/files/patch-Makefile.definitions (new) 1.1 +13 -0 ports/science/dtiquery/files/patch-precompute-Makefile (new) 1.1 +10 -0 ports/science/dtiquery/files/pkg-message.in (new) 1.1 +3 -0 ports/science/dtiquery/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Mon Feb 25 12:56:34 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8D1C016A400; Mon, 25 Feb 2008 12:56:34 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 686F013C447; Mon, 25 Feb 2008 12:56:34 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PCuYBj074571; Mon, 25 Feb 2008 12:56:34 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PCuYDt074570; Mon, 25 Feb 2008 12:56:34 GMT (envelope-from tabthorpe) Message-Id: <200802251256.m1PCuYDt074570@repoman.freebsd.org> From: Thomas Abthorpe Date: Mon, 25 Feb 2008 12:56:34 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 12:56:34 -0000 tabthorpe 2008-02-25 12:56:33 UTC FreeBSD ports repository Modified files: . modules Log: dtiquery --> ports/science/dtiquery Revision Changes Path 1.19433 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Feb 25 12:58:42 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4F9DD16A403; Mon, 25 Feb 2008 12:58:42 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2AE6B13C4CC; Mon, 25 Feb 2008 12:58:42 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PCwf9G074628; Mon, 25 Feb 2008 12:58:41 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PCwf36074627; Mon, 25 Feb 2008 12:58:41 GMT (envelope-from tabthorpe) Message-Id: <200802251258.m1PCwf36074627@repoman.freebsd.org> From: Thomas Abthorpe Date: Mon, 25 Feb 2008 12:58:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports LEGAL X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 12:58:42 -0000 tabthorpe 2008-02-25 12:58:41 UTC FreeBSD ports repository Modified files: . LEGAL Log: - Add entry for science/dtiquery PR: ports/120129 Submitted by: Jason Bacon Revision Changes Path 1.567 +2 -1 ports/LEGAL From owner-cvs-all@FreeBSD.ORG Mon Feb 25 13:03:19 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 70C9F16A401; Mon, 25 Feb 2008 13:03:19 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1B6AA13C46A; Mon, 25 Feb 2008 13:03:19 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PD3IUf075994; Mon, 25 Feb 2008 13:03:18 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PD3IHv075993; Mon, 25 Feb 2008 13:03:18 GMT (envelope-from brueffer) Message-Id: <200802251303.m1PD3IHv075993@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 25 Feb 2008 13:03:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/sys clock_gettime.2 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 13:03:19 -0000 brueffer 2008-02-25 13:03:18 UTC FreeBSD src repository Modified files: lib/libc/sys clock_gettime.2 Log: Add missing words. MFC after: 3 days Revision Changes Path 1.25 +2 -2 src/lib/libc/sys/clock_gettime.2 From owner-cvs-all@FreeBSD.ORG Mon Feb 25 13:06:53 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B6E6C16A402; Mon, 25 Feb 2008 13:06:53 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 922B613C43E; Mon, 25 Feb 2008 13:06:53 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PD6rHa076168; Mon, 25 Feb 2008 13:06:53 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PD6r4T076167; Mon, 25 Feb 2008 13:06:53 GMT (envelope-from erwin) Message-Id: <200802251306.m1PD6r4T076167@repoman.freebsd.org> From: Erwin Lansing Date: Mon, 25 Feb 2008 13:06:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/csocks/files patch-src_csocks.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 13:06:53 -0000 erwin 2008-02-25 13:06:53 UTC FreeBSD ports repository Added files: net/csocks/files patch-src_csocks.c Log: Fix build on 5.x Submitted by: Raffaele De Lorenzo (maintainer) Revision Changes Path 1.1 +14 -0 ports/net/csocks/files/patch-src_csocks.c (new) From owner-cvs-all@FreeBSD.ORG Mon Feb 25 13:16:40 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7F61C16A400; Mon, 25 Feb 2008 13:16:40 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7187213C458; Mon, 25 Feb 2008 13:16:40 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PDGeMD076850; Mon, 25 Feb 2008 13:16:40 GMT (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PDGeMW076849; Mon, 25 Feb 2008 13:16:40 GMT (envelope-from mbr) Message-Id: <200802251316.m1PDGeMW076849@repoman.freebsd.org> From: Martin Blapp Date: Mon, 25 Feb 2008 13:16:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/up-imapproxy Makefile distinfo pkg-plist ports/mail/up-imapproxy/files patch-Makefile.in patch-config.h.in patch-configure.in patch-src_imapcommon.c patch-ssl X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 13:16:40 -0000 mbr 2008-02-25 13:16:40 UTC FreeBSD ports repository Modified files: mail/up-imapproxy Makefile distinfo pkg-plist mail/up-imapproxy/files patch-ssl Removed files: mail/up-imapproxy/files patch-Makefile.in patch-config.h.in patch-configure.in patch-src_imapcommon.c Log: Update mail/up-imapproxy to 1.2.6 Remove unnecessary patchs Moved pkg-plist PR: 120140 Submitted by: lippemail@gmail.com Revision Changes Path 1.15 +14 -6 ports/mail/up-imapproxy/Makefile 1.6 +3 -3 ports/mail/up-imapproxy/distinfo 1.2 +0 -11 ports/mail/up-imapproxy/files/patch-Makefile.in (dead) 1.2 +0 -13 ports/mail/up-imapproxy/files/patch-config.h.in (dead) 1.2 +0 -26 ports/mail/up-imapproxy/files/patch-configure.in (dead) 1.2 +0 -13 ports/mail/up-imapproxy/files/patch-src_imapcommon.c (dead) 1.2 +11 -0 ports/mail/up-imapproxy/files/patch-ssl 1.5 +8 -1 ports/mail/up-imapproxy/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Feb 25 13:17:17 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 380AE16A405; Mon, 25 Feb 2008 13:17:17 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1431A13C45A; Mon, 25 Feb 2008 13:17:17 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PDHGtO076915; Mon, 25 Feb 2008 13:17:16 GMT (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PDHG1a076914; Mon, 25 Feb 2008 13:17:16 GMT (envelope-from mbr) Message-Id: <200802251317.m1PDHG1a076914@repoman.freebsd.org> From: Martin Blapp Date: Mon, 25 Feb 2008 13:17:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/up-imapproxy/files pkg-message.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 13:17:17 -0000 mbr 2008-02-25 13:17:16 UTC FreeBSD ports repository Added files: mail/up-imapproxy/files pkg-message.in Log: Add missing pkg-message.in from last commit. Revision Changes Path 1.1 +9 -0 ports/mail/up-imapproxy/files/pkg-message.in (new) From owner-cvs-all@FreeBSD.ORG Mon Feb 25 13:26:32 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E6A3416A404; Mon, 25 Feb 2008 13:26:32 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C2C6F13C442; Mon, 25 Feb 2008 13:26:32 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PDQWqe077238; Mon, 25 Feb 2008 13:26:32 GMT (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PDQWPo077237; Mon, 25 Feb 2008 13:26:32 GMT (envelope-from mbr) Message-Id: <200802251326.m1PDQWPo077237@repoman.freebsd.org> From: Martin Blapp Date: Mon, 25 Feb 2008 13:26:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/up-imapproxy pkg-message X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 13:26:33 -0000 mbr 2008-02-25 13:26:32 UTC FreeBSD ports repository Removed files: mail/up-imapproxy pkg-message Log: Move to Attic. Revision Changes Path 1.2 +0 -9 ports/mail/up-imapproxy/pkg-message (dead) From owner-cvs-all@FreeBSD.ORG Mon Feb 25 13:29:08 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A9CE616A402; Mon, 25 Feb 2008 13:29:08 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 84D3613C447; Mon, 25 Feb 2008 13:29:08 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PDT8DH077307; Mon, 25 Feb 2008 13:29:08 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PDT8B5077306; Mon, 25 Feb 2008 13:29:08 GMT (envelope-from gabor) Message-Id: <200802251329.m1PDT8B5077306@repoman.freebsd.org> From: Gabor Kovesdan Date: Mon, 25 Feb 2008 13:29:08 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/p5-Net-SFTP-Foreign Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 13:29:08 -0000 gabor 2008-02-25 13:29:08 UTC FreeBSD ports repository Modified files: net/p5-Net-SFTP-Foreign Makefile distinfo pkg-descr Log: - Update to 1.35 - Add dependencies - Style PR: ports/121020 Submitted by: Felippe de Meirelles Motta Approved by: maintainer Revision Changes Path 1.4 +6 -3 ports/net/p5-Net-SFTP-Foreign/Makefile 1.3 +3 -3 ports/net/p5-Net-SFTP-Foreign/distinfo 1.2 +0 -1 ports/net/p5-Net-SFTP-Foreign/pkg-descr From owner-cvs-all@FreeBSD.ORG Mon Feb 25 13:31:49 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6605016A403; Mon, 25 Feb 2008 13:31:49 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4274B13C46E; Mon, 25 Feb 2008 13:31:49 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PDVn5q077443; Mon, 25 Feb 2008 13:31:49 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PDVnL4077442; Mon, 25 Feb 2008 13:31:49 GMT (envelope-from gabor) Message-Id: <200802251331.m1PDVnL4077442@repoman.freebsd.org> From: Gabor Kovesdan Date: Mon, 25 Feb 2008 13:31:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-File-Util Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 13:31:49 -0000 gabor 2008-02-25 13:31:48 UTC FreeBSD ports repository Modified files: devel/p5-File-Util Makefile distinfo Log: - Update to 3.23 - Better adjustment of dependencis - Style PR: ports/120905 Submitted by: Felippe de Meirelles Motta Approved by: maintainer Revision Changes Path 1.3 +4 -6 ports/devel/p5-File-Util/Makefile 1.3 +3 -3 ports/devel/p5-File-Util/distinfo From owner-cvs-all@FreeBSD.ORG Mon Feb 25 13:33:21 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B40316A40E; Mon, 25 Feb 2008 13:33:21 +0000 (UTC) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1DCD813C469; Mon, 25 Feb 2008 13:33:21 +0000 (UTC) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PDXKQj077566; Mon, 25 Feb 2008 13:33:20 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PDXKau077565; Mon, 25 Feb 2008 13:33:20 GMT (envelope-from bde) Message-Id: <200802251333.m1PDXKau077565@repoman.freebsd.org> From: Bruce Evans Date: Mon, 25 Feb 2008 13:33:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/msun/src e_rem_pio2f.c math_private.h s_cosf.c s_sinf.c s_tanf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 13:33:21 -0000 bde 2008-02-25 13:33:20 UTC FreeBSD src repository Modified files: lib/msun/src e_rem_pio2f.c math_private.h s_cosf.c s_sinf.c s_tanf.c Log: Change __ieee754_rem_pio2f() to return double instead of float so that this function and its callers cosf(), sinf() and tanf() don't waste time converting values from doubles to floats and back for |x| > 9pi/4. All these functions were optimized a few years ago to mostly use doubles internally and across the __kernel*() interfaces but not across the __ieee754_rem_pio2f() interface. This saves about 40 cycles in cosf(), sinf() and tanf() for |x| > 9pi/4 on amd64 (A64), and about 20 cycles on i386 (A64) (except for cosf() and sinf() in the upper range). 40 cycles is about 35% for |x| < 9pi/4 <= 2**19pi/2 and about 5% for |x| > 2**19pi/2. The saving is much larger on amd64 than on i386 since the conversions are not easy to optimize except on i386 where some of them are automatic and others are optimized invalidly. amd64 is still about 10% slower in cosf() and tanf() in the lower range due to conversion overhead. This also gives a tiny speedup for |x| <= 9pi/4 on amd64 (by simplifying the code). It also avoids compiler bugs and/or additional slowness in the conversions on (not yet supported) machines where double_t != double. Revision Changes Path 1.26 +8 -11 src/lib/msun/src/e_rem_pio2f.c 1.26 +1 -1 src/lib/msun/src/math_private.h 1.17 +6 -6 src/lib/msun/src/s_cosf.c 1.16 +6 -6 src/lib/msun/src/s_sinf.c 1.16 +3 -3 src/lib/msun/src/s_tanf.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 13:33:39 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A1CD116A403; Mon, 25 Feb 2008 13:33:39 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7985413C458; Mon, 25 Feb 2008 13:33:39 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PDXdhf077601; Mon, 25 Feb 2008 13:33:39 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PDXdZd077600; Mon, 25 Feb 2008 13:33:39 GMT (envelope-from gabor) Message-Id: <200802251333.m1PDXdZd077600@repoman.freebsd.org> From: Gabor Kovesdan Date: Mon, 25 Feb 2008 13:33:39 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/p5-YAML-Tiny Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 13:33:39 -0000 gabor 2008-02-25 13:33:39 UTC FreeBSD ports repository Modified files: textproc/p5-YAML-Tiny Makefile distinfo Log: - Update to 1.25 - Better adjustment of dependencies - Style PR: ports/121035 Submitted by: Felippe de Meirelles Motta Approved by: maintainer Revision Changes Path 1.7 +5 -10 ports/textproc/p5-YAML-Tiny/Makefile 1.7 +3 -3 ports/textproc/p5-YAML-Tiny/distinfo From owner-cvs-all@FreeBSD.ORG Mon Feb 25 13:36:24 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EE3B716A408; Mon, 25 Feb 2008 13:36:24 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C893213C461; Mon, 25 Feb 2008 13:36:24 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PDaOFe077745; Mon, 25 Feb 2008 13:36:24 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PDaOi3077744; Mon, 25 Feb 2008 13:36:24 GMT (envelope-from gabor) Message-Id: <200802251336.m1PDaOi3077744@repoman.freebsd.org> From: Gabor Kovesdan Date: Mon, 25 Feb 2008 13:36:24 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/dns/ldns Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 13:36:25 -0000 gabor 2008-02-25 13:36:24 UTC FreeBSD ports repository Modified files: dns/ldns Makefile distinfo pkg-plist Log: - Update to 1.2.2 - Update MAINTAINER address PR: ports/120847 Submitted by: Felippe de Meirelles Motta Approved by: maintainer Revision Changes Path 1.6 +2 -3 ports/dns/ldns/Makefile 1.4 +3 -3 ports/dns/ldns/distinfo 1.5 +1 -1 ports/dns/ldns/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Feb 25 13:38:43 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0C15516A400; Mon, 25 Feb 2008 13:38:43 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DC4E713C448; Mon, 25 Feb 2008 13:38:42 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PDcgMl077811; Mon, 25 Feb 2008 13:38:42 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PDcgLB077810; Mon, 25 Feb 2008 13:38:42 GMT (envelope-from gabor) Message-Id: <200802251338.m1PDcgLB077810@repoman.freebsd.org> From: Gabor Kovesdan Date: Mon, 25 Feb 2008 13:38:42 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/p5-WWW-Mixi-Scraper Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 13:38:43 -0000 gabor 2008-02-25 13:38:42 UTC FreeBSD ports repository Modified files: www/p5-WWW-Mixi-Scraper Makefile distinfo Log: - Update to 0.12 - Use USE_DOS2UNIX - Style PR: ports/121028 Submitted by: Felippe de Meirelles Motta Approved by: maintainer Revision Changes Path 1.2 +3 -3 ports/www/p5-WWW-Mixi-Scraper/Makefile 1.2 +3 -3 ports/www/p5-WWW-Mixi-Scraper/distinfo From owner-cvs-all@FreeBSD.ORG Mon Feb 25 13:52:38 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E52AA16A401 for ; Mon, 25 Feb 2008 13:52:38 +0000 (UTC) (envelope-from rpaulo@gmail.com) Received: from fk-out-0910.google.com (fk-out-0910.google.com [209.85.128.190]) by mx1.freebsd.org (Postfix) with ESMTP id 57CEF13C4DB for ; Mon, 25 Feb 2008 13:52:38 +0000 (UTC) (envelope-from rpaulo@gmail.com) Received: by fk-out-0910.google.com with SMTP id b27so2089454fka.11 for ; Mon, 25 Feb 2008 05:52:36 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:cc:message-id:from:to:in-reply-to:content-type:content-transfer-encoding:mime-version:subject:date:references:x-mailer:sender; bh=JiDx0KjUiiFIcJ2UiExuroZFcOplQMcEo+NdYMe5vag=; b=InU7zcYzJJPRQ4xuAEeWqNJHzG1SB+N+b7ICGo/1Gk6PzIRFPn9pGTxvviebCYSGghoJzXUvC4E6qSv2Lwfz+mSgbyYXG6T2d4lP/+cgk6z7bdjcT4oAG22OeMGAhYNXL/h3KFoCZRDuFMaZ1/63aevtDBgNrfEB6kpdCkNqAt8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=cc:message-id:from:to:in-reply-to:content-type:content-transfer-encoding:mime-version:subject:date:references:x-mailer:sender; b=YPiCrzzYgG8l31x44FSUoZX5JBr9KdG3nqndALq71w99bWr0PV3W5LQDyJ39ltP18k/62rhdu27Ur61lmy0TBCoU32OzkveuYb4mXZRNBiwOgTp9j1N9h4fwIi9JuNW1ahkrNCGODFjIanEXc2yNW2u/MCvTLEmShiDZY7V0cWM= Received: by 10.82.124.10 with SMTP id w10mr5872346buc.10.1203947556457; Mon, 25 Feb 2008 05:52:36 -0800 (PST) Received: from ?89.214.208.207? ( [89.214.208.207]) by mx.google.com with ESMTPS id u14sm4203327gvf.1.2008.02.25.05.52.29 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 25 Feb 2008 05:52:32 -0800 (PST) Message-Id: <42527473-5F94-4058-B51C-8864C822D2A7@FreeBSD.org> From: Rui Paulo To: Henrik Brix Andersen In-Reply-To: <20080221205018.GD32491@tirith.brixandersen.dk> Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v919.2) Date: Mon, 25 Feb 2008 13:52:26 +0000 References: <200802202329.m1KNTrmr014644@repoman.freebsd.org> <20080221205018.GD32491@tirith.brixandersen.dk> X-Mailer: Apple Mail (2.919.2) Sender: Rui Paulo Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/traceroute as.c as.h traceroute.8 traceroute.c src/usr.sbin/traceroute Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 13:52:39 -0000 On Feb 21, 2008, at 8:50 PM, Henrik Brix Andersen wrote: > On Wed, Feb 20, 2008 at 11:29:53PM +0000, Rui Paulo wrote: >> rpaulo 2008-02-20 23:29:53 UTC >> >> FreeBSD src repository >> >> Modified files: >> contrib/traceroute traceroute.8 traceroute.c >> usr.sbin/traceroute Makefile >> Added files: >> contrib/traceroute as.c as.h >> Log: >> Add AS lookup functionality. On each hop we query a whois server to >> find the corresponding AS for that IP (-a switch). >> We can also choose a different whois server with the -A switch. The >> default is whois.radb.net. >> >> Obtained from: NetBSD >> Reviewed by: bms, njl (mentor) >> Approved by: njl (mentor) > > Great! Thank you. > > This was actually on my TODO list for when I got some more time on my > hands, now I can spend that time on something else :) > > Brix > -- > Henrik Brix Andersen No problem :-) Regards. -- Rui Paulo From owner-cvs-all@FreeBSD.ORG Mon Feb 25 13:53:14 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4CBC516A400; Mon, 25 Feb 2008 13:53:14 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 29FC313C4D3; Mon, 25 Feb 2008 13:53:14 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PDrDOU078309; Mon, 25 Feb 2008 13:53:13 GMT (envelope-from mav@repoman.freebsd.org) Received: (from mav@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PDrDld078308; Mon, 25 Feb 2008 13:53:13 GMT (envelope-from mav) Message-Id: <200802251353.m1PDrDld078308@repoman.freebsd.org> From: Alexander Motin Date: Mon, 25 Feb 2008 13:53:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/netgraph ng_tee.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 13:53:14 -0000 mav 2008-02-25 13:53:13 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netgraph ng_tee.c Log: MFC rev. 1.35 Fix shutdown bug made by previous commit. Revision Changes Path 1.33.2.2 +1 -0 src/sys/netgraph/ng_tee.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 13:57:29 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1DCA516A400; Mon, 25 Feb 2008 13:57:29 +0000 (UTC) (envelope-from rink@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EDAF913C45B; Mon, 25 Feb 2008 13:57:28 +0000 (UTC) (envelope-from rink@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PDvSJd078488; Mon, 25 Feb 2008 13:57:28 GMT (envelope-from rink@repoman.freebsd.org) Received: (from rink@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PDvSGu078483; Mon, 25 Feb 2008 13:57:28 GMT (envelope-from rink) Message-Id: <200802251357.m1PDvSGu078483@repoman.freebsd.org> From: Rink Springer Date: Mon, 25 Feb 2008 13:57:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/atkbdc psm.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 13:57:29 -0000 rink 2008-02-25 13:57:18 UTC FreeBSD src repository Modified files: sys/dev/atkbdc psm.c Log: Some PS/2 mice (at least the A4Tech X-7xx) need to be set to Intelli mode first before they can be set to Explorer mode. PR: kern/118578 Submitted by: Andriy Gapon (I added some comments) Reviewed by: philip MFC after: 1 month Revision Changes Path 1.94 +7 -0 src/sys/dev/atkbdc/psm.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 14:36:00 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8FAE416A40B; Mon, 25 Feb 2008 14:36:00 +0000 (UTC) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6C24413C4D3; Mon, 25 Feb 2008 14:36:00 +0000 (UTC) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PEa0L4081015; Mon, 25 Feb 2008 14:36:00 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PEa08i081014; Mon, 25 Feb 2008 14:36:00 GMT (envelope-from skv) Message-Id: <200802251436.m1PEa08i081014@repoman.freebsd.org> From: Sergey Skvortsov Date: Mon, 25 Feb 2008 14:36:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel Makefile ports/devel/p5-Moose-Policy Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 14:36:00 -0000 skv 2008-02-25 14:36:00 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-Moose-Policy Makefile distinfo pkg-descr pkg-plist Log: Add p5-Moose-Policy 0.03, Moose-mounted police. Revision Changes Path 1.3008 +1 -0 ports/devel/Makefile 1.1 +28 -0 ports/devel/p5-Moose-Policy/Makefile (new) 1.1 +3 -0 ports/devel/p5-Moose-Policy/distinfo (new) 1.1 +10 -0 ports/devel/p5-Moose-Policy/pkg-descr (new) 1.1 +9 -0 ports/devel/p5-Moose-Policy/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Feb 25 14:36:59 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F43316A406; Mon, 25 Feb 2008 14:36:59 +0000 (UTC) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0D51A13C45D; Mon, 25 Feb 2008 14:36:59 +0000 (UTC) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PEawGG081055; Mon, 25 Feb 2008 14:36:58 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PEawob081054; Mon, 25 Feb 2008 14:36:58 GMT (envelope-from skv) Message-Id: <200802251436.m1PEawob081054@repoman.freebsd.org> From: Sergey Skvortsov Date: Mon, 25 Feb 2008 14:36:58 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 14:36:59 -0000 skv 2008-02-25 14:36:58 UTC FreeBSD ports repository Modified files: . modules Log: p5-Moose-Policy --> ports/devel/p5-Moose-Policy Revision Changes Path 1.19434 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Feb 25 15:32:43 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4736116A400; Mon, 25 Feb 2008 15:32:43 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E14DC13C4E5; Mon, 25 Feb 2008 15:32:39 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PFWdC2083926; Mon, 25 Feb 2008 15:32:39 GMT (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PFWdO1083925; Mon, 25 Feb 2008 15:32:39 GMT (envelope-from ume) Message-Id: <200802251532.m1PFWdO1083925@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Mon, 25 Feb 2008 15:32:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sys/dev/acpica acpi_thermal.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 15:32:43 -0000 ume 2008-02-25 15:32:39 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/dev/acpica acpi_thermal.c Log: MFC 1.69: Create a thread to handle passive cooling for 1st zone which has _PSV, _TSP, _TC1 and _TC2. Revision Changes Path 1.64.2.4 +20 -19 src/sys/dev/acpica/acpi_thermal.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 15:34:46 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D299C16A406; Mon, 25 Feb 2008 15:34:46 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A4DFC13C465; Mon, 25 Feb 2008 15:34:46 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PFYkSO084033; Mon, 25 Feb 2008 15:34:46 GMT (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PFYkO8084032; Mon, 25 Feb 2008 15:34:46 GMT (envelope-from ume) Message-Id: <200802251534.m1PFYkO8084032@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Mon, 25 Feb 2008 15:34:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/acpica acpi_thermal.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 15:34:46 -0000 ume 2008-02-25 15:34:46 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/acpica acpi_thermal.c Log: MFC 1.69: Create a thread to handle passive cooling for 1st zone which has _PSV, _TSP, _TC1 and _TC2. Revision Changes Path 1.53.2.11 +20 -19 src/sys/dev/acpica/acpi_thermal.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 15:55:19 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6FE9A16A409; Mon, 25 Feb 2008 15:55:19 +0000 (UTC) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6715613C4FD; Mon, 25 Feb 2008 15:55:19 +0000 (UTC) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PFtJNl084751; Mon, 25 Feb 2008 15:55:19 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PFtJF1084750; Mon, 25 Feb 2008 15:55:19 GMT (envelope-from skv) Message-Id: <200802251555.m1PFtJF1084750@repoman.freebsd.org> From: Sergey Skvortsov Date: Mon, 25 Feb 2008 15:55:19 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel Makefile ports/devel/p5-MooseX-Policy-SemiAffordanceAccessor Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 15:55:19 -0000 skv 2008-02-25 15:55:19 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-MooseX-Policy-SemiAffordanceAccessor Makefile distinfo pkg-descr pkg-plist Log: Add p5-MooseX-Policy-SemiAffordanceAccessor 0.02, a policy to name accessors foo() and set_foo(). Revision Changes Path 1.3009 +1 -0 ports/devel/Makefile 1.1 +26 -0 ports/devel/p5-MooseX-Policy-SemiAffordanceAccessor/Makefile (new) 1.1 +3 -0 ports/devel/p5-MooseX-Policy-SemiAffordanceAccessor/distinfo (new) 1.1 +12 -0 ports/devel/p5-MooseX-Policy-SemiAffordanceAccessor/pkg-descr (new) 1.1 +3 -0 ports/devel/p5-MooseX-Policy-SemiAffordanceAccessor/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Feb 25 15:56:12 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1BC7916A413; Mon, 25 Feb 2008 15:56:12 +0000 (UTC) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F054A13C515; Mon, 25 Feb 2008 15:56:11 +0000 (UTC) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PFuBNW084802; Mon, 25 Feb 2008 15:56:11 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PFuBYm084801; Mon, 25 Feb 2008 15:56:11 GMT (envelope-from skv) Message-Id: <200802251556.m1PFuBYm084801@repoman.freebsd.org> From: Sergey Skvortsov Date: Mon, 25 Feb 2008 15:56:11 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 15:56:12 -0000 skv 2008-02-25 15:56:11 UTC FreeBSD ports repository Modified files: . modules Log: p5-MooseX-Policy-SemiAffordanceAccessor --> ports/devel/p5-MooseX-Policy-SemiAffordanceAccessor Revision Changes Path 1.19435 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Feb 25 16:16:18 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 19A4916A403; Mon, 25 Feb 2008 16:16:18 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 10D2313C4CC; Mon, 25 Feb 2008 16:16:18 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PGGHeK086685; Mon, 25 Feb 2008 16:16:17 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PGGHEl086684; Mon, 25 Feb 2008 16:16:17 GMT (envelope-from ru) Message-Id: <200802251616.m1PGGHEl086684@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 25 Feb 2008 16:16:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/sys param.h src Makefile.inc1 src/gnu/usr.bin/binutils/ar Makefile src/gnu/usr.bin/binutils/ranlib Makefile src/usr.bin/ar Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 16:16:18 -0000 ru 2008-02-25 16:16:17 UTC FreeBSD src repository Modified files: sys/sys param.h . Makefile.inc1 gnu/usr.bin/binutils/ar Makefile gnu/usr.bin/binutils/ranlib Makefile usr.bin/ar Makefile Log: Make again BSD ar(1) the default system ar(1), now properly handling source upgrades by falling back to GNU ar(1) as necessary. Option WITH_BSDAR is gone. Option _WITH_GNUAR to aid in upgrades is *not* supposed to be set by the user. Stop bootstrapping BSD ar(1) on the next __FreeBSD_version bump, as there are no known bugs in it. Bump __FreeBSD_version to anticipate this and to flag the switch to BSD ar(1), should it be needed for something. Input from: obrien, des, kaiw Revision Changes Path 1.599 +9 -0 src/Makefile.inc1 1.17 +8 -5 src/gnu/usr.bin/binutils/ar/Makefile 1.18 +8 -5 src/gnu/usr.bin/binutils/ranlib/Makefile 1.338 +1 -1 src/sys/sys/param.h 1.20 +1 -14 src/usr.bin/ar/Makefile From owner-cvs-all@FreeBSD.ORG Mon Feb 25 16:29:55 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BB70116A404; Mon, 25 Feb 2008 16:29:55 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9BCD213C45B; Mon, 25 Feb 2008 16:29:55 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PGTtJe087086; Mon, 25 Feb 2008 16:29:55 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PGTtjM087085; Mon, 25 Feb 2008 16:29:55 GMT (envelope-from ru) Message-Id: <200802251629.m1PGTtjM087085@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 25 Feb 2008 16:29:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src Makefile.inc1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 16:29:55 -0000 ru 2008-02-25 16:29:54 UTC FreeBSD src repository Modified files: . Makefile.inc1 Log: Sort. Prodded by: obrien Revision Changes Path 1.600 +5 -5 src/Makefile.inc1 From owner-cvs-all@FreeBSD.ORG Mon Feb 25 16:39:25 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 36F9216A409; Mon, 25 Feb 2008 16:39:25 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 177DD13C45A; Mon, 25 Feb 2008 16:39:25 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PGdJJe087445; Mon, 25 Feb 2008 16:39:24 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PGdJNQ087444; Mon, 25 Feb 2008 16:39:19 GMT (envelope-from pav) Message-Id: <200802251639.m1PGdJNQ087444@repoman.freebsd.org> From: Pav Lucistnik Date: Mon, 25 Feb 2008 16:39:19 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/python25 Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 16:39:25 -0000 pav 2008-02-25 16:39:19 UTC FreeBSD ports repository Modified files: lang/python25 Makefile pkg-plist Log: - Fix plist Reported by: pointyhat Revision Changes Path 1.148 +1 -0 ports/lang/python25/Makefile 1.72 +1 -0 ports/lang/python25/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Feb 25 17:54:29 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 92F0916A400; Mon, 25 Feb 2008 17:54:29 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 743E713C4F6; Mon, 25 Feb 2008 17:54:29 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PHsThv099806; Mon, 25 Feb 2008 17:54:29 GMT (envelope-from nivit@repoman.freebsd.org) Received: (from nivit@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PHsSdw099805; Mon, 25 Feb 2008 17:54:28 GMT (envelope-from nivit) Message-Id: <200802251754.m1PHsSdw099805@repoman.freebsd.org> From: Nicola Vitale Date: Mon, 25 Feb 2008 17:54:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/java/eclipse-aptana Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 17:54:29 -0000 nivit 2008-02-25 17:54:28 UTC FreeBSD ports repository Modified files: java/eclipse-aptana Makefile distinfo Log: - Update to 1.1.3.007983 Revision Changes Path 1.4 +1 -1 ports/java/eclipse-aptana/Makefile 1.4 +3 -3 ports/java/eclipse-aptana/distinfo From owner-cvs-all@FreeBSD.ORG Mon Feb 25 17:55:22 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A0EA316A409; Mon, 25 Feb 2008 17:55:22 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 82BFD13C4FB; Mon, 25 Feb 2008 17:55:22 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PHtMjY099902; Mon, 25 Feb 2008 17:55:22 GMT (envelope-from nivit@repoman.freebsd.org) Received: (from nivit@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PHtMvf099901; Mon, 25 Feb 2008 17:55:22 GMT (envelope-from nivit) Message-Id: <200802251755.m1PHtMvf099901@repoman.freebsd.org> From: Nicola Vitale Date: Mon, 25 Feb 2008 17:55:22 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/py-configobj Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 17:55:22 -0000 nivit 2008-02-25 17:55:22 UTC FreeBSD ports repository Modified files: devel/py-configobj Makefile distinfo Log: - Update to 4.5.1 Revision Changes Path 1.5 +1 -1 ports/devel/py-configobj/Makefile 1.3 +3 -3 ports/devel/py-configobj/distinfo From owner-cvs-all@FreeBSD.ORG Mon Feb 25 18:08:13 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7D9A916A406; Mon, 25 Feb 2008 18:08:13 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5ED8913C468; Mon, 25 Feb 2008 18:08:13 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PI88BA001656; Mon, 25 Feb 2008 18:08:13 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PI8847001655; Mon, 25 Feb 2008 18:08:08 GMT (envelope-from brooks) Message-Id: <200802251808.m1PI8847001655@repoman.freebsd.org> From: Brooks Davis Date: Mon, 25 Feb 2008 18:08:08 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/sge61 Makefile ports/sysutils/sge61/files patch-libs_uti_Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 18:08:13 -0000 brooks 2008-02-25 18:08:08 UTC FreeBSD ports repository Modified files: sysutils/sge61 Makefile Added files: sysutils/sge61/files patch-libs_uti_Makefile Log: Add a forgotten patch to compile the sge_arch.c file with -ansi to let the evil cpp stringification hack for the architecture name work. Otherwise "uname -m" generally evaluates to a value that is a macro that expands to resulting in all architectures appearing to be fbsd-1. Revision Changes Path 1.35 +1 -1 ports/sysutils/sge61/Makefile 1.1 +14 -0 ports/sysutils/sge61/files/patch-libs_uti_Makefile (new) From owner-cvs-all@FreeBSD.ORG Mon Feb 25 18:20:22 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 15E9C16A401; Mon, 25 Feb 2008 18:20:22 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E893B13C46A; Mon, 25 Feb 2008 18:20:21 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PIKLxb002126; Mon, 25 Feb 2008 18:20:21 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PIKLw3002125; Mon, 25 Feb 2008 18:20:21 GMT (envelope-from ahze) Message-Id: <200802251820.m1PIKLw3002125@repoman.freebsd.org> From: Michael Johnson Date: Mon, 25 Feb 2008 18:20:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio/gstreamer-plugins-fluendo-mp3 Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 18:20:22 -0000 ahze 2008-02-25 18:20:21 UTC FreeBSD ports repository Modified files: audio/gstreamer-plugins-fluendo-mp3 Makefile distinfo Log: Update to 0.10.7 Revision Changes Path 1.5 +1 -1 ports/audio/gstreamer-plugins-fluendo-mp3/Makefile 1.3 +3 -3 ports/audio/gstreamer-plugins-fluendo-mp3/distinfo From owner-cvs-all@FreeBSD.ORG Mon Feb 25 18:20:36 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 07D0916A404; Mon, 25 Feb 2008 18:20:36 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0223813C46E; Mon, 25 Feb 2008 18:20:36 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PIKZsE002191; Mon, 25 Feb 2008 18:20:35 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PIKZxE002190; Mon, 25 Feb 2008 18:20:35 GMT (envelope-from gabor) Message-Id: <200802251820.m1PIKZxE002190@repoman.freebsd.org> From: Gabor Kovesdan Date: Mon, 25 Feb 2008 18:20:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net Makefile ports/net/p5-Net-Google-AuthSub Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 18:20:36 -0000 gabor 2008-02-25 18:20:35 UTC FreeBSD ports repository Modified files: net Makefile Added files: net/p5-Net-Google-AuthSub Makefile distinfo pkg-descr pkg-plist Log: Net::Google::AuthSub - Interact with sites that implement Google style AuthSub. WWW: http://search.cpan.org/dist/Net-Google-AuthSub/ PR: ports/120943 Submitted by: Felippe de Meirelles Motta Revision Changes Path 1.1970 +1 -0 ports/net/Makefile 1.1 +24 -0 ports/net/p5-Net-Google-AuthSub/Makefile (new) 1.1 +3 -0 ports/net/p5-Net-Google-AuthSub/distinfo (new) 1.1 +3 -0 ports/net/p5-Net-Google-AuthSub/pkg-descr (new) 1.1 +8 -0 ports/net/p5-Net-Google-AuthSub/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Feb 25 18:21:01 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 179E616A401; Mon, 25 Feb 2008 18:21:01 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EEB8513C457; Mon, 25 Feb 2008 18:21:00 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PIL0HX002233; Mon, 25 Feb 2008 18:21:00 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PIL0LX002232; Mon, 25 Feb 2008 18:21:00 GMT (envelope-from gabor) Message-Id: <200802251821.m1PIL0LX002232@repoman.freebsd.org> From: Gabor Kovesdan Date: Mon, 25 Feb 2008 18:21:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 18:21:01 -0000 gabor 2008-02-25 18:21:00 UTC FreeBSD ports repository Modified files: . modules Log: p5-Net-Google-AuthSub --> ports/net/p5-Net-Google-AuthSub Revision Changes Path 1.19436 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Feb 25 18:26:46 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C6BBE16A403; Mon, 25 Feb 2008 18:26:46 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A926A13C46B; Mon, 25 Feb 2008 18:26:46 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PIQk8i002470; Mon, 25 Feb 2008 18:26:46 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PIQk0Q002469; Mon, 25 Feb 2008 18:26:46 GMT (envelope-from ahze) Message-Id: <200802251826.m1PIQk0Q002469@repoman.freebsd.org> From: Michael Johnson Date: Mon, 25 Feb 2008 18:26:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/print/libgnomecups Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 18:26:46 -0000 ahze 2008-02-25 18:26:46 UTC FreeBSD ports repository Modified files: print/libgnomecups Makefile distinfo pkg-plist Log: Update to 0.2.3 Revision Changes Path 1.23 +1 -2 ports/print/libgnomecups/Makefile 1.10 +3 -3 ports/print/libgnomecups/distinfo 1.9 +18 -3 ports/print/libgnomecups/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Feb 25 18:28:58 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9DBAC16A408; Mon, 25 Feb 2008 18:28:58 +0000 (UTC) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 988C013C457; Mon, 25 Feb 2008 18:28:58 +0000 (UTC) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PISw4B002526; Mon, 25 Feb 2008 18:28:58 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PISwno002525; Mon, 25 Feb 2008 18:28:58 GMT (envelope-from bde) Message-Id: <200802251828.m1PISwno002525@repoman.freebsd.org> From: Bruce Evans Date: Mon, 25 Feb 2008 18:28:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/msun/src e_rem_pio2.c e_rem_pio2f.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 18:28:58 -0000 bde 2008-02-25 18:28:58 UTC FreeBSD src repository Modified files: lib/msun/src e_rem_pio2.c e_rem_pio2f.c Log: Use a temporary array instead of the arg array y[] for calling __kernel_rem_pio2(). This simplifies analysis of aliasing and thus results in better code for the usual case where __kernel_rem_pio2() is not called. In particular, when __ieee854_rem_pio2[f]() is inlined, it normally results in y[] being returned in registers. I couldn't get this to work using the restrict qualifier. In float precision, this saves 2-3% in most cases on amd64 and i386 (A64) despite it not being inlined in float precision yet. In double precision, this has high variance, with an average gain of 2% for amd64 and 0.7% for i386 (but a much larger gain for usual cases) and some losses. Revision Changes Path 1.17 +4 -4 src/lib/msun/src/e_rem_pio2.c 1.27 +4 -4 src/lib/msun/src/e_rem_pio2f.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 18:32:23 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D935816A401; Mon, 25 Feb 2008 18:32:23 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BBEF313C448; Mon, 25 Feb 2008 18:32:23 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PIWNn4002669; Mon, 25 Feb 2008 18:32:23 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PIWNRj002668; Mon, 25 Feb 2008 18:32:23 GMT (envelope-from ahze) Message-Id: <200802251832.m1PIWNRj002668@repoman.freebsd.org> From: Michael Johnson Date: Mon, 25 Feb 2008 18:32:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/p5-Cairo Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 18:32:24 -0000 ahze 2008-02-25 18:32:23 UTC FreeBSD ports repository Modified files: graphics/p5-Cairo Makefile distinfo Log: Update to 1.045 Revision Changes Path 1.14 +1 -1 ports/graphics/p5-Cairo/Makefile 1.14 +3 -3 ports/graphics/p5-Cairo/distinfo From owner-cvs-all@FreeBSD.ORG Mon Feb 25 18:38:13 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 53E2716A407; Mon, 25 Feb 2008 18:38:13 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3661B13C46B; Mon, 25 Feb 2008 18:38:13 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PIcDv9002892; Mon, 25 Feb 2008 18:38:13 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PIcCN9002891; Mon, 25 Feb 2008 18:38:12 GMT (envelope-from tabthorpe) Message-Id: <200802251838.m1PIcCN9002891@repoman.freebsd.org> From: Thomas Abthorpe Date: Mon, 25 Feb 2008 18:38:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 18:38:13 -0000 tabthorpe 2008-02-25 18:38:12 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: - Document moinmoin -- multiple vulnerabilities. Reviewed by: remko Revision Changes Path 1.1567 +39 -1 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Mon Feb 25 18:45:58 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3426216A409; Mon, 25 Feb 2008 18:45:58 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2B38913C457; Mon, 25 Feb 2008 18:45:58 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PIjwA8003486; Mon, 25 Feb 2008 18:45:58 GMT (envelope-from attilio@repoman.freebsd.org) Received: (from attilio@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PIjvnE003485; Mon, 25 Feb 2008 18:45:57 GMT (envelope-from attilio) Message-Id: <200802251845.m1PIjvnE003485@repoman.freebsd.org> From: Attilio Rao Date: Mon, 25 Feb 2008 18:45:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/contrib/opensolaris/uts/common/fs/zfs zfs_vnops.c src/sys/fs/devfs devfs_vnops.c src/sys/fs/nullfs null_vfsops.c null_vnops.c src/sys/fs/smbfs smbfs_io.c src/sys/fs/tmpfs tmpfs_subr.c tmpfs_vnops.c src/sys/fs/unionfs union_vfsops.c union_vnops.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 18:45:58 -0000 attilio 2008-02-25 18:45:57 UTC FreeBSD src repository Modified files: sys/contrib/opensolaris/uts/common/fs/zfs zfs_vnops.c sys/fs/devfs devfs_vnops.c sys/fs/nullfs null_vfsops.c null_vnops.c sys/fs/smbfs smbfs_io.c sys/fs/tmpfs tmpfs_subr.c tmpfs_vnops.c sys/fs/unionfs union_vfsops.c union_vnops.c sys/kern kern_lock.c vfs_cache.c vfs_default.c vfs_lookup.c vfs_subr.c vnode_if.src sys/netncp ncp_conn.c sys/netsmb smb_conn.c sys/nfs4client nfs4_vfsops.c sys/nfsclient nfs_subs.c nfs_vfsops.c sys/sys buf.h lockmgr.h sys/ufs/ffs ffs_rawread.c Log: Axe the 'thread' argument from VOP_ISLOCKED() and lockstatus() as it is always curthread. As KPI gets broken by this patch, manpages and __FreeBSD_version will be updated by further commits. Tested by: Andrea Barberio Revision Changes Path 1.27 +3 -3 src/sys/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c 1.156 +1 -1 src/sys/fs/devfs/devfs_vnops.c 1.88 +3 -3 src/sys/fs/nullfs/null_vfsops.c 1.99 +1 -2 src/sys/fs/nullfs/null_vnops.c 1.43 +1 -1 src/sys/fs/smbfs/smbfs_io.c 1.16 +12 -12 src/sys/fs/tmpfs/tmpfs_subr.c 1.16 +18 -18 src/sys/fs/tmpfs/tmpfs_vnops.c 1.90 +1 -1 src/sys/fs/unionfs/union_vfsops.c 1.153 +3 -3 src/sys/fs/unionfs/union_vnops.c 1.126 +2 -5 src/sys/kern/kern_lock.c 1.118 +3 -5 src/sys/kern/vfs_cache.c 1.142 +1 -4 src/sys/kern/vfs_default.c 1.107 +2 -2 src/sys/kern/vfs_lookup.c 1.719 +11 -13 src/sys/kern/vfs_subr.c 1.89 +0 -1 src/sys/kern/vnode_if.src 1.33 +1 -1 src/sys/netncp/ncp_conn.c 1.21 +1 -1 src/sys/netsmb/smb_conn.c 1.32 +1 -2 src/sys/nfs4client/nfs4_vfsops.c 1.153 +1 -1 src/sys/nfsclient/nfs_subs.c 1.200 +1 -2 src/sys/nfsclient/nfs_vfsops.c 1.202 +1 -1 src/sys/sys/buf.h 1.64 +1 -1 src/sys/sys/lockmgr.h 1.31 +5 -7 src/sys/ufs/ffs/ffs_rawread.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 18:56:52 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4004416A404; Mon, 25 Feb 2008 18:56:52 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2234C13C459; Mon, 25 Feb 2008 18:56:52 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PIup9d003850; Mon, 25 Feb 2008 18:56:51 GMT (envelope-from attilio@repoman.freebsd.org) Received: (from attilio@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PIupLV003849; Mon, 25 Feb 2008 18:56:51 GMT (envelope-from attilio) Message-Id: <200802251856.m1PIupLV003849@repoman.freebsd.org> From: Attilio Rao Date: Mon, 25 Feb 2008 18:56:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/sys param.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 18:56:52 -0000 attilio 2008-02-25 18:56:51 UTC FreeBSD src repository Modified files: sys/sys param.h Log: Bump __FreeBSD_version in order to signal lockstatus() and VOP_ISLOCKED() prototypes changing. Revision Changes Path 1.339 +1 -1 src/sys/sys/param.h From owner-cvs-all@FreeBSD.ORG Mon Feb 25 18:58:11 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 595D216A404; Mon, 25 Feb 2008 18:58:11 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3A94913C455; Mon, 25 Feb 2008 18:58:11 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PIwBgU003914; Mon, 25 Feb 2008 18:58:11 GMT (envelope-from beech@repoman.freebsd.org) Received: (from beech@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PIwB59003913; Mon, 25 Feb 2008 18:58:11 GMT (envelope-from beech) Message-Id: <200802251858.m1PIwB59003913@repoman.freebsd.org> From: Beech Rintoul Date: Mon, 25 Feb 2008 18:58:11 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/moodle Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 18:58:11 -0000 beech 2008-02-25 18:58:11 UTC FreeBSD ports repository Modified files: www/moodle Makefile distinfo Log: - Update to 1.8.4 - Fix pkg permissions PR: ports/121042 Submitted by: Wen heping Approved by: Javier Martin Rueda (maintainer) Revision Changes Path 1.13 +13 -6 ports/www/moodle/Makefile 1.10 +3 -3 ports/www/moodle/distinfo From owner-cvs-all@FreeBSD.ORG Mon Feb 25 19:06:44 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3D1F816A405; Mon, 25 Feb 2008 19:06:44 +0000 (UTC) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1D56313C4DB; Mon, 25 Feb 2008 19:06:44 +0000 (UTC) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PJ6hNt005452; Mon, 25 Feb 2008 19:06:43 GMT (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PJ6hwB005451; Mon, 25 Feb 2008 19:06:43 GMT (envelope-from keramida) Message-Id: <200802251906.m1PJ6hwB005451@repoman.freebsd.org> From: Giorgos Keramidas Date: Mon, 25 Feb 2008 19:06:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/du du.1 du.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 19:06:44 -0000 keramida 2008-02-25 19:06:43 UTC FreeBSD src repository (doc committer) Modified files: usr.bin/du du.1 du.c Log: Implement from scratch a -l option for du(1), to match the same option of the GNU utility. The default behavior of our original `du' is to count hardlinked files only once for each invocation of the utility. With the new -l option they count towards the final size every time they are found. PR: bin/117944 Submitted by: keramida Reviewed by: des, obrien MFC after: 2 weeks Revision Changes Path 1.33 +11 -6 src/usr.bin/du/du.1 1.45 +12 -5 src/usr.bin/du/du.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 19:12:01 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BE82016A408; Mon, 25 Feb 2008 19:12:01 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9FA2813C457; Mon, 25 Feb 2008 19:12:01 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PJC17I005645; Mon, 25 Feb 2008 19:12:01 GMT (envelope-from attilio@repoman.freebsd.org) Received: (from attilio@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PJC1Nb005644; Mon, 25 Feb 2008 19:12:01 GMT (envelope-from attilio) Message-Id: <200802251912.m1PJC1Nb005644@repoman.freebsd.org> From: Attilio Rao Date: Mon, 25 Feb 2008 19:12:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man9 VOP_LOCK.9 lock.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 19:12:01 -0000 attilio 2008-02-25 19:12:01 UTC FreeBSD src repository Modified files: share/man/man9 VOP_LOCK.9 lock.9 Log: Modify VOP_ISLOCKED() and lockstatus() prototypes in order to reflect 'thread' argument axing. Revision Changes Path 1.23 +2 -5 src/share/man/man9/VOP_LOCK.9 1.26 +6 -17 src/share/man/man9/lock.9 From owner-cvs-all@FreeBSD.ORG Mon Feb 25 19:12:22 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 027C916A401; Mon, 25 Feb 2008 19:12:22 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D708813C44B; Mon, 25 Feb 2008 19:12:21 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PJCL0R005701; Mon, 25 Feb 2008 19:12:21 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PJCLTe005700; Mon, 25 Feb 2008 19:12:21 GMT (envelope-from marcus) Message-Id: <200802251912.m1PJCLTe005700@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 25 Feb 2008 19:12:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio/pulseaudio Makefile distinfo ports/audio/pulseaudio/files patch-src_pulsecore_atomic.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 19:12:22 -0000 marcus 2008-02-25 19:12:21 UTC FreeBSD ports repository Modified files: audio/pulseaudio Makefile distinfo audio/pulseaudio/files patch-src_pulsecore_atomic.h Log: Update to 0.9.9. Revision Changes Path 1.21 +1 -2 ports/audio/pulseaudio/Makefile 1.6 +3 -3 ports/audio/pulseaudio/distinfo 1.4 +7 -19 ports/audio/pulseaudio/files/patch-src_pulsecore_atomic.h From owner-cvs-all@FreeBSD.ORG Mon Feb 25 19:28:28 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 690E716A400; Mon, 25 Feb 2008 19:28:28 +0000 (UTC) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 47E9C13C45A; Mon, 25 Feb 2008 19:28:28 +0000 (UTC) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PJSRXK006202; Mon, 25 Feb 2008 19:28:27 GMT (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PJSRPm006201; Mon, 25 Feb 2008 19:28:27 GMT (envelope-from keramida) Message-Id: <200802251928.m1PJSRPm006201@repoman.freebsd.org> From: Giorgos Keramidas Date: Mon, 25 Feb 2008 19:28:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/cxgb cxgb_sge.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 19:28:28 -0000 keramida 2008-02-25 19:28:27 UTC FreeBSD src repository (doc committer) Modified files: sys/dev/cxgb cxgb_sge.c Log: Spell 'overwriting' correctly in a KASSERT() message. Revision Changes Path 1.51 +4 -3 src/sys/dev/cxgb/cxgb_sge.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 19:30:31 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1D16216A404; Mon, 25 Feb 2008 19:30:31 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1494A13C44B; Mon, 25 Feb 2008 19:30:31 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PJUUQe006368; Mon, 25 Feb 2008 19:30:30 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PJUUo3006367; Mon, 25 Feb 2008 19:30:30 GMT (envelope-from marcus) Message-Id: <200802251930.m1PJUUo3006367@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 25 Feb 2008 19:30:30 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/netspeed_applet Makefile distinfo pkg-plist ports/net/netspeed_applet/files patch-src_backend.c patch-src_netspeed.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 19:30:31 -0000 marcus 2008-02-25 19:30:30 UTC FreeBSD ports repository Modified files: net/netspeed_applet Makefile distinfo pkg-plist net/netspeed_applet/files patch-src_netspeed.c Removed files: net/netspeed_applet/files patch-src_backend.c Log: Update to 0.14. Revision Changes Path 1.32 +1 -2 ports/net/netspeed_applet/Makefile 1.10 +3 -3 ports/net/netspeed_applet/distinfo 1.2 +0 -56 ports/net/netspeed_applet/files/patch-src_backend.c (dead) 1.5 +12 -36 ports/net/netspeed_applet/files/patch-src_netspeed.c 1.9 +22 -46 ports/net/netspeed_applet/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Feb 25 19:31:44 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D7B8316A400; Mon, 25 Feb 2008 19:31:44 +0000 (UTC) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B823513C43E; Mon, 25 Feb 2008 19:31:44 +0000 (UTC) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PJViES006432; Mon, 25 Feb 2008 19:31:44 GMT (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PJVi0Q006431; Mon, 25 Feb 2008 19:31:44 GMT (envelope-from keramida) Message-Id: <200802251931.m1PJVi0Q006431@repoman.freebsd.org> From: Giorgos Keramidas Date: Mon, 25 Feb 2008 19:31:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/ufs/ffs ffs_vnops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 19:31:45 -0000 keramida 2008-02-25 19:31:44 UTC FreeBSD src repository (doc committer) Modified files: sys/ufs/ffs ffs_vnops.c Log: Minor typo nit. Revision Changes Path 1.179 +1 -1 src/sys/ufs/ffs/ffs_vnops.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 20:02:25 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 129AE16A40A; Mon, 25 Feb 2008 20:02:25 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E5FFE13C4D9; Mon, 25 Feb 2008 20:02:24 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PK2OY9007517; Mon, 25 Feb 2008 20:02:24 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PK2O3R007516; Mon, 25 Feb 2008 20:02:24 GMT (envelope-from marcus) Message-Id: <200802252002.m1PK2O3R007516@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 25 Feb 2008 20:02:24 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11-toolkits/gdl Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 20:02:25 -0000 marcus 2008-02-25 20:02:24 UTC FreeBSD ports repository Modified files: x11-toolkits/gdl Makefile distinfo pkg-plist Log: Update to 0.7.10. Revision Changes Path 1.34 +1 -1 ports/x11-toolkits/gdl/Makefile 1.15 +3 -3 ports/x11-toolkits/gdl/distinfo 1.17 +4 -0 ports/x11-toolkits/gdl/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Feb 25 20:10:49 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 04AF316A404; Mon, 25 Feb 2008 20:10:49 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D842A13C45D; Mon, 25 Feb 2008 20:10:48 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PKAm1c009021; Mon, 25 Feb 2008 20:10:48 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PKAm7F009020; Mon, 25 Feb 2008 20:10:48 GMT (envelope-from marcus) Message-Id: <200802252010.m1PKAm7F009020@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 25 Feb 2008 20:10:48 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/gnome-build Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 20:10:49 -0000 marcus 2008-02-25 20:10:48 UTC FreeBSD ports repository Modified files: devel/gnome-build Makefile distinfo pkg-plist Log: Update to 0.2.3. Revision Changes Path 1.40 +1 -1 ports/devel/gnome-build/Makefile 1.16 +3 -3 ports/devel/gnome-build/distinfo 1.13 +4 -0 ports/devel/gnome-build/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Feb 25 20:21:32 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DD9A516A400; Mon, 25 Feb 2008 20:21:32 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BCCE913C4E3; Mon, 25 Feb 2008 20:21:32 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PKLW3w009370; Mon, 25 Feb 2008 20:21:32 GMT (envelope-from johans@repoman.freebsd.org) Received: (from johans@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PKLWEB009369; Mon, 25 Feb 2008 20:21:32 GMT (envelope-from johans) Message-Id: <200802252021.m1PKLWEB009369@repoman.freebsd.org> From: Johan van Selst Date: Mon, 25 Feb 2008 20:21:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/chk4mail Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 20:21:33 -0000 johans 2008-02-25 20:21:32 UTC FreeBSD ports repository Modified files: mail/chk4mail Makefile distinfo Log: - Update to 2.22 Revision Changes Path 1.10 +1 -1 ports/mail/chk4mail/Makefile 1.10 +3 -3 ports/mail/chk4mail/distinfo From owner-cvs-all@FreeBSD.ORG Mon Feb 25 20:28:01 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1AA3616A405; Mon, 25 Feb 2008 20:28:01 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 114BE13C448; Mon, 25 Feb 2008 20:28:01 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PKS0Sm009568; Mon, 25 Feb 2008 20:28:00 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PKS0BX009565; Mon, 25 Feb 2008 20:28:00 GMT (envelope-from rwatson) Message-Id: <200802252028.m1PKS0BX009565@repoman.freebsd.org> From: Robert Watson Date: Mon, 25 Feb 2008 20:28:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/security/audit audit.c audit_arg.c audit_bsm.c audit_bsm_klib.c audit_private.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 20:28:01 -0000 rwatson 2008-02-25 20:28:00 UTC FreeBSD src repository Modified files: sys/security/audit audit.c audit_arg.c audit_bsm.c audit_bsm_klib.c audit_private.h Log: Rename several audit functions in the global kernel symbol namespace to have audit_ on the front: - canon_path -> audit_canon_path - msgctl_to_event -> audit_msgctl_to_event - semctl_to_event -> audit_semctl_to_event MFC after: 1 month Revision Changes Path 1.38 +2 -2 src/sys/security/audit/audit.c 1.18 +1 -1 src/sys/security/audit/audit_arg.c 1.25 +2 -2 src/sys/security/audit/audit_bsm.c 1.10 +4 -4 src/sys/security/audit/audit_bsm_klib.c 1.17 +3 -3 src/sys/security/audit/audit_private.h From owner-cvs-all@FreeBSD.ORG Mon Feb 25 20:45:42 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7E0D416A407; Mon, 25 Feb 2008 20:45:42 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 59B0D13C447; Mon, 25 Feb 2008 20:45:42 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PKjgnR010177; Mon, 25 Feb 2008 20:45:42 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PKjgZa010176; Mon, 25 Feb 2008 20:45:42 GMT (envelope-from delphij) Message-Id: <200802252045.m1PKjgZa010176@repoman.freebsd.org> From: Xin LI Date: Mon, 25 Feb 2008 20:45:42 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/p5-File-Stat-Bits Makefile distinfo ports/sysutils/p5-File-Stat-Bits/files patch-t-gen-stat.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 20:45:42 -0000 delphij 2008-02-25 20:45:42 UTC FreeBSD ports repository Modified files: sysutils/p5-File-Stat-Bits Makefile distinfo Removed files: sysutils/p5-File-Stat-Bits/files patch-t-gen-stat.c Log: Update to 1.01. PR: ports/121013 Approved by: maintainer Revision Changes Path 1.3 +2 -3 ports/sysutils/p5-File-Stat-Bits/Makefile 1.4 +3 -3 ports/sysutils/p5-File-Stat-Bits/distinfo 1.2 +0 -26 ports/sysutils/p5-File-Stat-Bits/files/patch-t-gen-stat.c (dead) From owner-cvs-all@FreeBSD.ORG Mon Feb 25 20:47:23 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1EF9E16A409; Mon, 25 Feb 2008 20:47:23 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from speedfactory.net (mail.speedfactory.net [66.23.216.219]) by mx1.freebsd.org (Postfix) with ESMTP id 326DD13C4F6; Mon, 25 Feb 2008 20:47:21 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from server.baldwin.cx (unverified [66.23.211.162]) by speedfactory.net (SurgeMail 3.8s) with ESMTP id 233368767-1834499 for multiple; Mon, 25 Feb 2008 15:49:36 -0500 Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.14.2/8.14.2) with ESMTP id m1PKkufa009752; Mon, 25 Feb 2008 15:47:13 -0500 (EST) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Stephan Uphoff Date: Mon, 25 Feb 2008 14:15:30 -0500 User-Agent: KMail/1.9.7 References: <200802221913.m1MJDwrH044833@repoman.freebsd.org> In-Reply-To: <200802221913.m1MJDwrH044833@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200802251415.30473.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Mon, 25 Feb 2008 15:47:13 -0500 (EST) X-Virus-Scanned: ClamAV 0.91.2/5991/Mon Feb 25 13:48:35 2008 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet in.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 20:47:23 -0000 On Friday 22 February 2008 02:13:57 pm Stephan Uphoff wrote: > ups =A0 =A0 =A0 =A0 2008-02-22 19:13:57 UTC >=20 > =A0 FreeBSD src repository >=20 > =A0 Modified files: =A0 =A0 =A0 =A0(Branch: RELENG_6) > =A0 =A0 sys/netinet =A0 =A0 =A0 =A0 =A0in.c=20 > =A0 Log: > =A0 Fix reference counting for already existing addresses in in_addmulti() > =A0=20 > =A0 Reviewed by: =A0 =A0gnn@ This probably fixes PRs kern/108197, kern/116077, kern/120266, and=20 kern/120343. =2D-=20 John Baldwin From owner-cvs-all@FreeBSD.ORG Mon Feb 25 21:09:16 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DC25216A408; Mon, 25 Feb 2008 21:09:16 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B9F0813C45A; Mon, 25 Feb 2008 21:09:16 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PL9G8s020997; Mon, 25 Feb 2008 21:09:16 GMT (envelope-from attilio@repoman.freebsd.org) Received: (from attilio@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PL9GIg020996; Mon, 25 Feb 2008 21:09:16 GMT (envelope-from attilio) Message-Id: <200802252109.m1PL9GIg020996@repoman.freebsd.org> From: Attilio Rao Date: Mon, 25 Feb 2008 21:09:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netsmb smb_iod.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 21:09:17 -0000 attilio 2008-02-25 21:09:16 UTC FreeBSD src repository Modified files: sys/netsmb smb_iod.c Log: Remove a spourious Giant acquisition. The code seems pretty MPSAFE and Giant is held over kproc_exit() which at lowel calls exit1(). exit1() requires Giant to be unowned so this opens a window for races. Reported by: Bryan Venteicher Tested by: Bryan Venteicher Revision Changes Path 1.19 +0 -3 src/sys/netsmb/smb_iod.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 21:24:54 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 84B2416A406; Mon, 25 Feb 2008 21:24:54 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6251A13C45A; Mon, 25 Feb 2008 21:24:54 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PLOsxR021518; Mon, 25 Feb 2008 21:24:54 GMT (envelope-from mav@repoman.freebsd.org) Received: (from mav@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PLOsQt021517; Mon, 25 Feb 2008 21:24:54 GMT (envelope-from mav) Message-Id: <200802252124.m1PLOsQt021517@repoman.freebsd.org> From: Alexander Motin Date: Mon, 25 Feb 2008 21:24:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netgraph ng_base.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 21:24:54 -0000 mav 2008-02-25 21:24:54 UTC FreeBSD src repository Modified files: sys/netgraph ng_base.c Log: Fix incorrect constant used in rev. 1.146 that broke node writer locking. Revision Changes Path 1.147 +1 -1 src/sys/netgraph/ng_base.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 21:42:10 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EA7F616A402; Mon, 25 Feb 2008 21:42:10 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C882113C4DB; Mon, 25 Feb 2008 21:42:10 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PLgAAo022140; Mon, 25 Feb 2008 21:42:10 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PLgAuV022139; Mon, 25 Feb 2008 21:42:10 GMT (envelope-from marcus) Message-Id: <200802252142.m1PLgAuV022139@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 25 Feb 2008 21:42:10 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/galeon Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 21:42:11 -0000 marcus 2008-02-25 21:42:10 UTC FreeBSD ports repository Modified files: www/galeon Makefile distinfo Log: Update to 2.0.5. Revision Changes Path 1.158 +1 -1 ports/www/galeon/Makefile 1.60 +3 -3 ports/www/galeon/distinfo From owner-cvs-all@FreeBSD.ORG Mon Feb 25 21:44:27 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0654816A402; Mon, 25 Feb 2008 21:44:27 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EF8FD13C4D5; Mon, 25 Feb 2008 21:44:26 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PLiQnU022240; Mon, 25 Feb 2008 21:44:26 GMT (envelope-from gahr@repoman.freebsd.org) Received: (from gahr@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PLiQJe022239; Mon, 25 Feb 2008 21:44:26 GMT (envelope-from gahr) Message-Id: <200802252144.m1PLiQJe022239@repoman.freebsd.org> From: Pietro Cerutti Date: Mon, 25 Feb 2008 21:44:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/atr3d Makefile ports/games/atr3d/files patch-init.cpp patch-mainplayerthread.cpp patch-menu.cpp patch-radar.cpp patch-servergame.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 21:44:27 -0000 gahr 2008-02-25 21:44:26 UTC FreeBSD ports repository Modified files: games/atr3d Makefile Added files: games/atr3d/files patch-init.cpp patch-mainplayerthread.cpp patch-menu.cpp patch-radar.cpp patch-servergame.cpp Log: - Fix build on 64-bits platforms - Adopt maintainship PR: 120860 Approved by: miwi (mentor) Revision Changes Path 1.27 +2 -10 ports/games/atr3d/Makefile 1.1 +31 -0 ports/games/atr3d/files/patch-init.cpp (new) 1.1 +42 -0 ports/games/atr3d/files/patch-mainplayerthread.cpp (new) 1.1 +24 -0 ports/games/atr3d/files/patch-menu.cpp (new) 1.1 +11 -0 ports/games/atr3d/files/patch-radar.cpp (new) 1.1 +11 -0 ports/games/atr3d/files/patch-servergame.cpp (new) From owner-cvs-all@FreeBSD.ORG Mon Feb 25 21:45:10 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F25E316A402; Mon, 25 Feb 2008 21:45:09 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D0A2D13C45E; Mon, 25 Feb 2008 21:45:09 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PLj9vh022309; Mon, 25 Feb 2008 21:45:09 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PLj9M7022308; Mon, 25 Feb 2008 21:45:09 GMT (envelope-from marcus) Message-Id: <200802252145.m1PLj9M7022308@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 25 Feb 2008 21:45:09 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/cairo Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 21:45:10 -0000 marcus 2008-02-25 21:45:09 UTC FreeBSD ports repository Modified files: graphics/cairo Makefile Log: Add a backup MASTER_SITE for cairo. Requested by: pav Revision Changes Path 1.33 +3 -1 ports/graphics/cairo/Makefile From owner-cvs-all@FreeBSD.ORG Mon Feb 25 22:04:08 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5DC8016A400; Mon, 25 Feb 2008 22:04:08 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3BCDE13C448; Mon, 25 Feb 2008 22:04:08 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PM48ri045983; Mon, 25 Feb 2008 22:04:08 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PM48Pq045968; Mon, 25 Feb 2008 22:04:08 GMT (envelope-from jhb) Message-Id: <200802252204.m1PM48Pq045968@repoman.freebsd.org> From: John Baldwin Date: Mon, 25 Feb 2008 22:04:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/gnu/usr.bin/gdb/kgdb kgdb.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 22:04:08 -0000 jhb 2008-02-25 22:04:07 UTC FreeBSD src repository Modified files: gnu/usr.bin/gdb/kgdb kgdb.h Log: Remove a stale prototype I missed when converting the kld support over to hooking into gdb's shared library infrastructure. Revision Changes Path 1.12 +0 -1 src/gnu/usr.bin/gdb/kgdb/kgdb.h From owner-cvs-all@FreeBSD.ORG Mon Feb 25 22:05:06 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C9F9D16A402; Mon, 25 Feb 2008 22:05:06 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BDE9913C4F5; Mon, 25 Feb 2008 22:05:06 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PM56r8046900; Mon, 25 Feb 2008 22:05:06 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PM56sG046899; Mon, 25 Feb 2008 22:05:06 GMT (envelope-from pav) Message-Id: <200802252205.m1PM56sG046899@repoman.freebsd.org> From: Pav Lucistnik Date: Mon, 25 Feb 2008 22:05:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/biology/clustalw Makefile distinfo pkg-plist ports/biology/clustalw/files patch-Makefile patch-general_ClustalWResources.cpp patch-general_Utility.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 22:05:06 -0000 pav 2008-02-25 22:05:06 UTC FreeBSD ports repository Modified files: biology/clustalw Makefile distinfo Removed files: biology/clustalw pkg-plist biology/clustalw/files patch-Makefile patch-general_ClustalWResources.cpp patch-general_Utility.cpp Log: - Update to 2.0.3 Revision Changes Path 1.10 +5 -10 ports/biology/clustalw/Makefile 1.6 +3 -3 ports/biology/clustalw/distinfo 1.2 +0 -13 ports/biology/clustalw/files/patch-Makefile (dead) 1.2 +0 -11 ports/biology/clustalw/files/patch-general_ClustalWResources.cpp (dead) 1.2 +0 -20 ports/biology/clustalw/files/patch-general_Utility.cpp (dead) 1.3 +0 -4 ports/biology/clustalw/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Mon Feb 25 22:07:23 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 22D4D16A400; Mon, 25 Feb 2008 22:07:23 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 00C0B13C448; Mon, 25 Feb 2008 22:07:23 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PM7M2D048916; Mon, 25 Feb 2008 22:07:22 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PM7Msx048763; Mon, 25 Feb 2008 22:07:22 GMT (envelope-from pav) Message-Id: <200802252207.m1PM7Msx048763@repoman.freebsd.org> From: Pav Lucistnik Date: Mon, 25 Feb 2008 22:07:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/gosa Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 22:07:23 -0000 pav 2008-02-25 22:07:12 UTC FreeBSD ports repository Modified files: sysutils/gosa Makefile Log: - Make fetchable Revision Changes Path 1.2 +2 -1 ports/sysutils/gosa/Makefile From owner-cvs-all@FreeBSD.ORG Mon Feb 25 22:11:35 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1CEAF16A410; Mon, 25 Feb 2008 22:11:35 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EF95113C46B; Mon, 25 Feb 2008 22:11:34 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PMBYnF052620; Mon, 25 Feb 2008 22:11:34 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PMBYlA052619; Mon, 25 Feb 2008 22:11:34 GMT (envelope-from pav) Message-Id: <200802252211.m1PMBYlA052619@repoman.freebsd.org> From: Pav Lucistnik Date: Mon, 25 Feb 2008 22:11:34 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/science/hdf5 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 22:11:35 -0000 pav 2008-02-25 22:11:34 UTC FreeBSD ports repository Modified files: science/hdf5 Makefile Log: - Make fetchable again Revision Changes Path 1.45 +2 -1 ports/science/hdf5/Makefile From owner-cvs-all@FreeBSD.ORG Mon Feb 25 22:11:51 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7C01F16A400; Mon, 25 Feb 2008 22:11:51 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from mail.cksoft.de (mail.cksoft.de [62.111.66.27]) by mx1.freebsd.org (Postfix) with ESMTP id 3571613C455; Mon, 25 Feb 2008 22:11:51 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from localhost (amavis.str.cksoft.de [192.168.74.71]) by mail.cksoft.de (Postfix) with ESMTP id D2DEA41C747; Mon, 25 Feb 2008 23:11:49 +0100 (CET) X-Virus-Scanned: amavisd-new at cksoft.de Received: from mail.cksoft.de ([62.111.66.27]) by localhost (amavis.str.cksoft.de [192.168.74.71]) (amavisd-new, port 10024) with ESMTP id rpByDJ6LIPUj; Mon, 25 Feb 2008 23:11:48 +0100 (CET) Received: by mail.cksoft.de (Postfix, from userid 66) id E662341C759; Mon, 25 Feb 2008 23:11:48 +0100 (CET) Received: from maildrop.int.zabbadoz.net (maildrop.int.zabbadoz.net [10.111.66.10]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.int.zabbadoz.net (Postfix) with ESMTP id 5399D444885; Mon, 25 Feb 2008 22:11:41 +0000 (UTC) Date: Mon, 25 Feb 2008 22:11:41 +0000 (UTC) From: "Bjoern A. Zeeb" X-X-Sender: bz@maildrop.int.zabbadoz.net To: Mike Silbersack In-Reply-To: <200802240513.m1O5DKBG093031@repoman.freebsd.org> Message-ID: <20080225213119.P94494@maildrop.int.zabbadoz.net> References: <200802240513.m1O5DKBG093031@repoman.freebsd.org> X-OpenPGP-Key: 0x14003F198FEFA3E77207EE8D2B58B8F83CCF1842 MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: dwhite@FreeBSD.org, cvs-src@FreeBSD.org, src-committers@FreeBSD.org, Robert Watson , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_var.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 22:11:51 -0000 On Sun, 24 Feb 2008, Mike Silbersack wrote: > silby 2008-02-24 05:13:20 UTC > > FreeBSD src repository > > Modified files: > sys/netinet tcp_var.h > Log: > Change FreeBSD 7 so that it returns TCP options in > the same order that FreeBSD 6 and before did. Doug > White and the other bloodhounds at ISC discovered that > while FreeBSD 7's ordering of options was more efficient, > it caused some cable modem routers to ignore the > SYN-ACKs ordered in this fashion. > > The placement of sackOK after the timestamp option seems > to be the critical difference: After reading and thinking of this I was about to say that apart from TCP option kind 0 and 1 do we preserv order by kind ascending. I couldn't easily remember an RFC talking about this permitting either one or the other but we had TSOPT (kind 8) before SACK permitted (kind 4) so that seems to be nonsense. Still, are you really sure that this is about ordering? Basically there is another crucial change coming with this commit as we discovered while rwatson was showing me the commit message sitting next to him at FOSDEM: no EOL for "7.orig" > FreeBSD 6: > option length: 23 (should be + 1 padding after EOL) > FreeBSD 7.0: > option length: 20 (thus no padding and no EOL) > FreeBSD 7.0 + this change: > option length: 23 (should be + 1 padding after EOL) The questions would be: have you tried simply adding another NOP to "7.orig" thus forcing an EOL or removing the NOP and putting an EOL at the end (I know 793 was before the MUST/MUST NOT times so this might not be strictly correct as it says "This might not coincide with the end of the TCP header according to the Data Offset field. [This option] need only be used if the end of the options would not otherwise coincide with the end of the TCP header". I would really assume (on principle;) that instead of ordering, those consumer grade devices, mostly built cheaply, ... are expecting an End of Option list instead of being picky on the order of the options. Is there any chance we could get that tested so we would be more sure what the actualy cause is and have a reference for the furture? /bz -- Bjoern A. Zeeb bzeeb at Zabbadoz dot NeT Software is harder than hardware so better get it right the first time. From owner-cvs-all@FreeBSD.ORG Mon Feb 25 22:19:20 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7BE2016A401; Mon, 25 Feb 2008 22:19:20 +0000 (UTC) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 719C613C448; Mon, 25 Feb 2008 22:19:20 +0000 (UTC) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PMJKZd054635; Mon, 25 Feb 2008 22:19:20 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PMJKU9054633; Mon, 25 Feb 2008 22:19:20 GMT (envelope-from bde) Message-Id: <200802252219.m1PMJKU9054633@repoman.freebsd.org> From: Bruce Evans Date: Mon, 25 Feb 2008 22:19:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/msun/src e_rem_pio2f.c s_cosf.c s_sinf.c s_tanf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 22:19:20 -0000 bde 2008-02-25 22:19:17 UTC FreeBSD src repository Modified files: lib/msun/src e_rem_pio2f.c s_cosf.c s_sinf.c s_tanf.c Log: Inline __ieee754__rem_pio2f(). On amd64 (A64) and i386 (A64), this gives an average speedup of about 12 cycles or 17% for 9pi/4 < |x| <= 2**19pi/2 and a smaller speedup for larger x, and a small speeddown for |x| <= 9pi/4 (only 1-2 cycles average, but that is 4%). Inlining this is less likely to bust caches than inlining the float version since it is much smaller (about 220 bytes text and rodata) and has many fewer branches. However, the float version was already large due to its manual inlining of the branches and also the polynomial evaluations. Revision Changes Path 1.28 +3 -0 src/lib/msun/src/e_rem_pio2f.c 1.18 +4 -0 src/lib/msun/src/s_cosf.c 1.17 +4 -0 src/lib/msun/src/s_sinf.c 1.17 +4 -0 src/lib/msun/src/s_tanf.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 22:19:56 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 97F2C16A405; Mon, 25 Feb 2008 22:19:56 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8D25413C468; Mon, 25 Feb 2008 22:19:56 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PMJucs054691; Mon, 25 Feb 2008 22:19:56 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PMJuBK054690; Mon, 25 Feb 2008 22:19:56 GMT (envelope-from jhb) Message-Id: <200802252219.m1PMJuBK054690@repoman.freebsd.org> From: John Baldwin Date: Mon, 25 Feb 2008 22:19:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/gnu/usr.bin/gdb/kgdb Makefile kgdb.h kld.c kthr.c main.c trgt.c trgt_i386.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 22:19:56 -0000 jhb 2008-02-25 22:19:56 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) gnu/usr.bin/gdb/kgdb Makefile kgdb.h kthr.c main.c trgt.c trgt_i386.c Added files: (Branch: RELENG_7) gnu/usr.bin/gdb/kgdb kld.c Log: MFC: Mostly sync kgdb with HEAD including the following changes: - Add a new 'add-kld ' command to locate a kld and load its symbols. - If the quiet flag is specified, don't dump the unread portion of the message buffer on startup. - Remove the warnx() from kgdb_lookup() and add it in callers where a failed lookup is warning worthy. - Add a shared library backend for kernel files that treats klds as shared libraries and auto-load symbols for klds on startup. - Build a section table from the kernel file so that 'info files' output looks sane. Revision Changes Path 1.6.10.1 +1 -1 src/gnu/usr.bin/gdb/kgdb/Makefile 1.5.2.2 +5 -0 src/gnu/usr.bin/gdb/kgdb/kgdb.h 1.6.2.1 +479 -0 src/gnu/usr.bin/gdb/kgdb/kld.c (new) 1.7.2.2 +7 -5 src/gnu/usr.bin/gdb/kgdb/kthr.c 1.11.2.1 +6 -5 src/gnu/usr.bin/gdb/kgdb/main.c 1.5.2.1 +13 -5 src/gnu/usr.bin/gdb/kgdb/trgt.c 1.6.2.2 +3 -1 src/gnu/usr.bin/gdb/kgdb/trgt_i386.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 22:20:13 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7AFDF16A400; Mon, 25 Feb 2008 22:20:13 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 703EF13C4E1; Mon, 25 Feb 2008 22:20:13 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PMKDDA054795; Mon, 25 Feb 2008 22:20:13 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PMKDVX054794; Mon, 25 Feb 2008 22:20:13 GMT (envelope-from jhb) Message-Id: <200802252220.m1PMKDVX054794@repoman.freebsd.org> From: John Baldwin Date: Mon, 25 Feb 2008 22:20:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/gnu/usr.bin/gdb/kgdb Makefile kgdb.h kld.c kthr.c main.c trgt.c trgt_i386.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 22:20:13 -0000 jhb 2008-02-25 22:20:13 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) gnu/usr.bin/gdb/kgdb Makefile kgdb.h kthr.c main.c trgt.c trgt_i386.c Added files: (Branch: RELENG_6) gnu/usr.bin/gdb/kgdb kld.c Log: MFC: Mostly sync kgdb with HEAD including the following changes: - Add a new 'add-kld ' command to locate a kld and load its symbols. - If the quiet flag is specified, don't dump the unread portion of the message buffer on startup. - Remove the warnx() from kgdb_lookup() and add it in callers where a failed lookup is warning worthy. - Add a shared library backend for kernel files that treats klds as shared libraries and auto-load symbols for klds on startup. - Build a section table from the kernel file so that 'info files' output looks sane. Revision Changes Path 1.6.2.1 +1 -1 src/gnu/usr.bin/gdb/kgdb/Makefile 1.2.2.5 +5 -0 src/gnu/usr.bin/gdb/kgdb/kgdb.h 1.6.4.1 +479 -0 src/gnu/usr.bin/gdb/kgdb/kld.c (new) 1.2.2.7 +7 -5 src/gnu/usr.bin/gdb/kgdb/kthr.c 1.7.2.5 +6 -5 src/gnu/usr.bin/gdb/kgdb/main.c 1.2.2.4 +13 -5 src/gnu/usr.bin/gdb/kgdb/trgt.c 1.2.2.3 +3 -1 src/gnu/usr.bin/gdb/kgdb/trgt_i386.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 22:22:46 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 96E3D16A401; Mon, 25 Feb 2008 22:22:46 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 74A2213C44B; Mon, 25 Feb 2008 22:22:46 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PMMkgv054904; Mon, 25 Feb 2008 22:22:46 GMT (envelope-from gahr@repoman.freebsd.org) Received: (from gahr@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PMMkxa054903; Mon, 25 Feb 2008 22:22:46 GMT (envelope-from gahr) Message-Id: <200802252222.m1PMMkxa054903@repoman.freebsd.org> From: Pietro Cerutti Date: Mon, 25 Feb 2008 22:22:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/figurine Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 22:22:46 -0000 gahr 2008-02-25 22:22:46 UTC FreeBSD ports repository Modified files: graphics/figurine Makefile Log: - Fix build on sparc64 - Adopt maintainship PR: 120864 Submitted by: gahr@ (myself) Approved by: miwi (mentor) Revision Changes Path 1.6 +14 -6 ports/graphics/figurine/Makefile From owner-cvs-all@FreeBSD.ORG Mon Feb 25 22:34:13 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A98F116A403; Mon, 25 Feb 2008 22:34:13 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 86DD313C45A; Mon, 25 Feb 2008 22:34:13 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PMYDPD055250; Mon, 25 Feb 2008 22:34:13 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PMYDpu055249; Mon, 25 Feb 2008 22:34:13 GMT (envelope-from miwi) Message-Id: <200802252234.m1PMYDpu055249@repoman.freebsd.org> From: Martin Wilke Date: Mon, 25 Feb 2008 22:34:13 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/biology/migrate Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 22:34:13 -0000 miwi 2008-02-25 22:34:13 UTC FreeBSD ports repository Modified files: biology/migrate Makefile distinfo Log: - Update to 2.4.3 Submitted by: Ports Fury Revision Changes Path 1.16 +1 -1 ports/biology/migrate/Makefile 1.11 +3 -3 ports/biology/migrate/distinfo From owner-cvs-all@FreeBSD.ORG Mon Feb 25 22:35:26 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 827DE16A413; Mon, 25 Feb 2008 22:35:26 +0000 (UTC) (envelope-from miwi@bsdcrew.de) Received: from bsdcrew.de (duro.unixfreunde.de [85.214.90.4]) by mx1.freebsd.org (Postfix) with ESMTP id 45D1713C442; Mon, 25 Feb 2008 22:35:25 +0000 (UTC) (envelope-from miwi@bsdcrew.de) Received: by bsdcrew.de (Postfix, from userid 1001) id 2160C4AC57; Mon, 25 Feb 2008 23:35:21 +0100 (CET) Date: Mon, 25 Feb 2008 23:35:21 +0100 From: Martin Wilke To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20080225223521.GD1696@bsdcrew.de> References: <200802252234.m1PMYDpu055249@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; x-action=pgp-signed Content-Disposition: inline Content-Transfer-Encoding: quoted-printable In-Reply-To: <200802252234.m1PMYDpu055249@repoman.freebsd.org> User-Agent: Mutt/1.5.17 (2007-11-01) Cc: Subject: Re: cvs commit: ports/biology/migrate Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 22:35:26 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Mon, Feb 25, 2008 at 10:34:13PM +0000, Martin Wilke wrote: > miwi 2008-02-25 22:34:13 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > biology/migrate Makefile distinfo=20 > Log: > - Update to 2.4.3 > =20 PR: 121084 > Submitted by: Ports Fury > =20 > Revision Changes Path > 1.16 +1 -1 ports/biology/migrate/Makefile > http://cvsweb.FreeBSD.org/ports/biology/migrate/Makefile.diff?r1=3D1.15&r= 2=3D1.16 > | --- ports/biology/migrate/Makefile 2008/01/25 20:49:45 1.15 > | +++ ports/biology/migrate/Makefile 2008/02/25 22:34:13 1.16 > | @@ -2,11 +2,11 @@ > | # Date created: 6 August 2001 > | # Whom: Johann Visagie > | # > | -# $FreeBSD: /usr/local/www/cvsroot/FreeBSD/ports/biology/migrate/Makef= ile,v 1.15 2008/01/25 20:49:45 miwi Exp $ > | +# $FreeBSD: /usr/local/www/cvsroot/FreeBSD/ports/biology/migrate/Makef= ile,v 1.16 2008/02/25 22:34:13 miwi Exp $ > | # > | =20 > | PORTNAME=3D migrate > | -PORTVERSION=3D 2.4.2 > | +PORTVERSION=3D 2.4.3 > | CATEGORIES=3D biology > | MASTER_SITES=3D http://popgen.csit.fsu.edu/%SUBDIR%/ > | MASTER_SITE_SUBDIR=3D currentversion oldversions/${PORTVERSION} > 1.11 +3 -3 ports/biology/migrate/distinfo > http://cvsweb.FreeBSD.org/ports/biology/migrate/distinfo.diff?r1=3D1.10&r= 2=3D1.11 > | --- ports/biology/migrate/distinfo 2008/01/25 20:49:45 1.10 > | +++ ports/biology/migrate/distinfo 2008/02/25 22:34:13 1.11 > | @@ -1,3 +1,3 @@ > | -MD5 (migrate-2.4.2.src.tar.gz) =3D b4cc929554ea5d65f757a070da80e6ca > | -SHA256 (migrate-2.4.2.src.tar.gz) =3D 7e2c41fb7820cf587453578fa402fe05= 07c457feaee88284aa45aef2356c5585 > | -SIZE (migrate-2.4.2.src.tar.gz) =3D 1956582 > | +MD5 (migrate-2.4.3.src.tar.gz) =3D 19fe21ce4d74f7ff6a32c84d977a15f4 > | +SHA256 (migrate-2.4.3.src.tar.gz) =3D 25bdd80f1ba24210960b38bfafb9669c= f176369a87da7664af69832d39e94d99 > | +SIZE (migrate-2.4.3.src.tar.gz) =3D 1958483 >=20 - --=20 +-----------------------+-------------------------------+ | PGP : 0x05682353 | Jabber : miwi(at)BSDCrew.de | | ICQ : 169139903 | Mail : miwi(at)FreeBSD.org | +-----------------------+-------------------------------+ | Mess with the Best, Die like the Rest! | +-----------------------+-------------------------------+ -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQFHw0KpFwpycAVoI1MRAiWLAJ9jn3n8/6Ee3JGAtyC9N7SWGJUctQCgmmz7 hruf8Xl0HLmzPOEBlkfjEv8=3D =3D/3GI -----END PGP SIGNATURE----- From owner-cvs-all@FreeBSD.ORG Mon Feb 25 22:36:45 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E1FC216A404; Mon, 25 Feb 2008 22:36:45 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BBAE013C46E; Mon, 25 Feb 2008 22:36:45 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PMajkU055380; Mon, 25 Feb 2008 22:36:45 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PMajYN055379; Mon, 25 Feb 2008 22:36:45 GMT (envelope-from kuriyama) Message-Id: <200802252236.m1PMajYN055379@repoman.freebsd.org> From: Jun Kuriyama Date: Mon, 25 Feb 2008 22:36:45 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/converters/p5-JSON Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 22:36:46 -0000 kuriyama 2008-02-25 22:36:45 UTC FreeBSD ports repository Modified files: converters/p5-JSON Makefile distinfo pkg-plist Log: - Upgrade to 1.15 (1.x final version). - Use BUILD_DEPENDS= ${RUN_DEPENDS} to prevent from unnecessary dependency into RUN_DEPENDS. - Use @dirrmtry, because other module can use JSON::*. PR: ports/120762 Submitted by: Gea-Suan Lin Revision Changes Path 1.10 +4 -4 ports/converters/p5-JSON/Makefile 1.9 +3 -3 ports/converters/p5-JSON/distinfo 1.7 +4 -4 ports/converters/p5-JSON/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Feb 25 22:42:34 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C615316A400; Mon, 25 Feb 2008 22:42:34 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A326213C442; Mon, 25 Feb 2008 22:42:34 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PMgYpr055607; Mon, 25 Feb 2008 22:42:34 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PMgYcM055606; Mon, 25 Feb 2008 22:42:34 GMT (envelope-from jhb) Message-Id: <200802252242.m1PMgYcM055606@repoman.freebsd.org> From: John Baldwin Date: Mon, 25 Feb 2008 22:42:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/i386/i386 identcpu.c initcpu.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 22:42:34 -0000 jhb 2008-02-25 22:42:33 UTC FreeBSD src repository Modified files: sys/i386/i386 identcpu.c initcpu.c Log: Support the VIA C7 Eden CPU and treat it just like a C7 Esther. We may want to adjust this code to just assume that all CPUs >= Esther should be checked for the extended cpuid flags register. MFC after: 3 days PR: i386/119491 Revision Changes Path 1.181 +3 -0 src/sys/i386/i386/identcpu.c 1.57 +1 -0 src/sys/i386/i386/initcpu.c From owner-cvs-all@FreeBSD.ORG Mon Feb 25 23:12:11 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9B14A16A400; Mon, 25 Feb 2008 23:12:11 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7741413C43E; Mon, 25 Feb 2008 23:12:11 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PNCBQ2058857; Mon, 25 Feb 2008 23:12:11 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PNCBLP058856; Mon, 25 Feb 2008 23:12:11 GMT (envelope-from kuriyama) Message-Id: <200802252312.m1PNCBLP058856@repoman.freebsd.org> From: Jun Kuriyama Date: Mon, 25 Feb 2008 23:12:11 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/php5-phing Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 23:12:11 -0000 kuriyama 2008-02-25 23:12:11 UTC FreeBSD ports repository Modified files: devel/php5-phing Makefile distinfo pkg-plist Log: - Upgrade to 2.3.0. PR: ports/119812 Submitted by: Gerrit Beine Revision Changes Path 1.3 +3 -3 ports/devel/php5-phing/Makefile 1.2 +3 -3 ports/devel/php5-phing/distinfo 1.2 +80 -19 ports/devel/php5-phing/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Feb 25 23:21:01 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4562216A476; Mon, 25 Feb 2008 23:21:01 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0F6EF13C4D1; Mon, 25 Feb 2008 23:21:01 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PNL0Ao059214; Mon, 25 Feb 2008 23:21:00 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PNL0HR059213; Mon, 25 Feb 2008 23:21:00 GMT (envelope-from mezz) Message-Id: <200802252321.m1PNL0HR059213@repoman.freebsd.org> From: Jeremy Messenger Date: Mon, 25 Feb 2008 23:21:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/print/libgnomecups/files patch-24_mem-leak X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 23:21:01 -0000 mezz 2008-02-25 23:21:00 UTC FreeBSD ports repository Removed files: print/libgnomecups/files patch-24_mem-leak Log: No longer need this patch, this fix the patch apply. Reported by: barbara Revision Changes Path 1.2 +0 -23 ports/print/libgnomecups/files/patch-24_mem-leak (dead) From owner-cvs-all@FreeBSD.ORG Mon Feb 25 23:24:42 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 38C3016A403; Mon, 25 Feb 2008 23:24:42 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 131AD13C4D3; Mon, 25 Feb 2008 23:24:42 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PNOftp059335; Mon, 25 Feb 2008 23:24:41 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PNOfYI059334; Mon, 25 Feb 2008 23:24:41 GMT (envelope-from mezz) Message-Id: <200802252324.m1PNOfYI059334@repoman.freebsd.org> From: Jeremy Messenger Date: Mon, 25 Feb 2008 23:24:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-p2p/transmission Makefile ports/net-p2p/transmission/files patch-cli_transmissioncli.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 23:24:42 -0000 mezz 2008-02-25 23:24:41 UTC FreeBSD ports repository Modified files: net-p2p/transmission Makefile Added files: net-p2p/transmission/files patch-cli_transmissioncli.c Log: Fix a typo, '--create' -> '--create-from'. This patch has been merged in upstream. Bump the PORTREVISION. Bug tracker: http://trac.transmissionbt.com/ticket/736 Revision Changes Path 1.32 +1 -1 ports/net-p2p/transmission/Makefile 1.1 +11 -0 ports/net-p2p/transmission/files/patch-cli_transmissioncli.c (new) From owner-cvs-all@FreeBSD.ORG Mon Feb 25 23:41:38 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EF0D616A403; Mon, 25 Feb 2008 23:41:38 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B91AC13C458; Mon, 25 Feb 2008 23:41:38 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PNfc0H059948; Mon, 25 Feb 2008 23:41:38 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PNfcvE059947; Mon, 25 Feb 2008 23:41:38 GMT (envelope-from brooks) Message-Id: <200802252341.m1PNfcvE059947@repoman.freebsd.org> From: Brooks Davis Date: Mon, 25 Feb 2008 23:41:38 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/sge60 Makefile ports/sysutils/sge60/files pthread-types.diff X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 23:41:39 -0000 brooks 2008-02-25 23:41:37 UTC FreeBSD ports repository Modified files: sysutils/sge60 Makefile Removed files: sysutils/sge60/files pthread-types.diff Log: Remove a nolonger needed workaround for systems prior to 6.0 that was preventing builds on 5.x. Don't bump PORTREVISION because we were only trying to apply the patch to 5.x systems and thus no changes will occur on systems that were building prior to this change. Reported by: pointyhat (via erwin) Revision Changes Path 1.34 +0 -3 ports/sysutils/sge60/Makefile 1.4 +0 -14 ports/sysutils/sge60/files/pthread-types.diff (dead) From owner-cvs-all@FreeBSD.ORG Mon Feb 25 23:43:39 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9B49416A401; Mon, 25 Feb 2008 23:43:39 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 760BF13C45E; Mon, 25 Feb 2008 23:43:39 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PNhd4j060046; Mon, 25 Feb 2008 23:43:39 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PNhdmh060045; Mon, 25 Feb 2008 23:43:39 GMT (envelope-from brooks) Message-Id: <200802252343.m1PNhdmh060045@repoman.freebsd.org> From: Brooks Davis Date: Mon, 25 Feb 2008 23:43:39 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/sge61 Makefile ports/sysutils/sge61/files pthread-types.diff X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2008 23:43:39 -0000 brooks 2008-02-25 23:43:39 UTC FreeBSD ports repository Modified files: sysutils/sge61 Makefile Removed files: sysutils/sge61/files pthread-types.diff Log: Remove a nolonger needed workaround for systems prior to 6.0 that was preventing builds on 5.x. Don't bump PORTREVISION because we were only trying to apply the patch to 5.x systems and thus no changes will occur on systems that were building prior to this change. Reported by: pointyhat (via erwin) Revision Changes Path 1.36 +0 -3 ports/sysutils/sge61/Makefile 1.5 +0 -14 ports/sysutils/sge61/files/pthread-types.diff (dead) From owner-cvs-all@FreeBSD.ORG Tue Feb 26 01:24:36 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 772E716A404; Tue, 26 Feb 2008 01:24:36 +0000 (UTC) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 513ED13C4E3; Tue, 26 Feb 2008 01:24:36 +0000 (UTC) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q1OaZ7074399; Tue, 26 Feb 2008 01:24:36 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q1OaFe074398; Tue, 26 Feb 2008 01:24:36 GMT (envelope-from mnag) Message-Id: <200802260124.m1Q1OaFe074398@repoman.freebsd.org> From: Marcus Alves Grando Date: Tue, 26 Feb 2008 01:24:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/misc/compat6x Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 01:24:36 -0000 mnag 2008-02-26 01:24:36 UTC FreeBSD ports repository Modified files: misc/compat6x Makefile distinfo Log: - Update to 6.3.603000.200801 Requested by: remko Revision Changes Path 1.3 +1 -1 ports/misc/compat6x/Makefile 1.3 +12 -12 ports/misc/compat6x/distinfo From owner-cvs-all@FreeBSD.ORG Tue Feb 26 01:57:13 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 51F3816A405; Tue, 26 Feb 2008 01:57:13 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2A3DC13C448; Tue, 26 Feb 2008 01:57:13 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q1vCw0075478; Tue, 26 Feb 2008 01:57:12 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q1vCBu075477; Tue, 26 Feb 2008 01:57:12 GMT (envelope-from rafan) Message-Id: <200802260157.m1Q1vCBu075477@repoman.freebsd.org> From: Rong-En Fan Date: Tue, 26 Feb 2008 01:57:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/math/R Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 01:57:13 -0000 rafan 2008-02-26 01:57:12 UTC FreeBSD ports repository Modified files: math/R Makefile distinfo pkg-plist Log: - Update to 2.6.1 PR: ports/118358 Submitted by: Vittorio De Martino Approved by: Eric van Gyzen (maintainer) Revision Changes Path 1.67 +1 -1 ports/math/R/Makefile 1.34 +3 -3 ports/math/R/distinfo 1.38 +21 -4 ports/math/R/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Feb 26 03:02:21 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F246516A402; Tue, 26 Feb 2008 03:02:20 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D0EA613C447; Tue, 26 Feb 2008 03:02:20 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q32KOs081488; Tue, 26 Feb 2008 03:02:20 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q32KOT081487; Tue, 26 Feb 2008 03:02:20 GMT (envelope-from kmacy) Message-Id: <200802260302.m1Q32KOT081487@repoman.freebsd.org> From: Kip Macy Date: Tue, 26 Feb 2008 03:02:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/cxgb bin2h.pl cxgb_main.c cxgb_t3fw.c cxgb_t3fw.h t3fw-5.0.0.bin.gz.uu src/sys/modules/cxgb Makefile src/sys/modules/cxgb/cxgb Makefile src/sys/modules/cxgb/cxgb_t3fw Makefile src/sys/conf NOTES files X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 03:02:21 -0000 kmacy 2008-02-26 03:02:20 UTC FreeBSD src repository Modified files: sys/dev/cxgb cxgb_main.c sys/modules/cxgb Makefile sys/modules/cxgb/cxgb Makefile sys/conf NOTES files Added files: sys/dev/cxgb bin2h.pl cxgb_t3fw.c cxgb_t3fw.h sys/modules/cxgb/cxgb_t3fw Makefile Removed files: sys/dev/cxgb t3fw-5.0.0.bin.gz.uu Log: Move firmware in to separate module that can be compiled statically in to the kernel Add utility for converting future firmware revs to a C header file Revision Changes Path 1.1468 +1 -0 src/sys/conf/NOTES 1.1270 +1 -0 src/sys/conf/files 1.1 +79 -0 src/sys/dev/cxgb/bin2h.pl (new) 1.49 +16 -11 src/sys/dev/cxgb/cxgb_main.c 1.1 +47 -0 src/sys/dev/cxgb/cxgb_t3fw.c (new) 1.1 +6621 -0 src/sys/dev/cxgb/cxgb_t3fw.h (new) 1.2 +0 -496 src/sys/dev/cxgb/t3fw-5.0.0.bin.gz.uu (dead) 1.13 +1 -0 src/sys/modules/cxgb/Makefile 1.7 +1 -10 src/sys/modules/cxgb/cxgb/Makefile 1.1 +8 -0 src/sys/modules/cxgb/cxgb_t3fw/Makefile (new) From owner-cvs-all@FreeBSD.ORG Tue Feb 26 03:03:18 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2676716A407; Tue, 26 Feb 2008 03:03:18 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 13D4D13C474; Tue, 26 Feb 2008 03:03:18 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q33H2S082723; Tue, 26 Feb 2008 03:03:17 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q33HTJ082722; Tue, 26 Feb 2008 03:03:17 GMT (envelope-from delphij) Message-Id: <200802260303.m1Q33HTJ082722@repoman.freebsd.org> From: Xin LI Date: Tue, 26 Feb 2008 03:03:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/fsck_ffs setup.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 03:03:18 -0000 delphij 2008-02-26 03:03:17 UTC FreeBSD src repository Modified files: sbin/fsck_ffs setup.c Log: Be more careful when checking superblock. We have already checked whether fs_bsize is larger than MINBSIZE, which is larger than the value that is used to compared with fs_bsize, the sizeof fs, so the check followed, will be always true. By inspecting the code and some old commit log, I believe that the check must be that *fs_sbsize* is larger than sizeof fs. We round up the size to nearest dev_bsize, as the smallest accepted fs_sbsize, personally, I think this can be even changed to equal, because this number is mostly an invariant in file systems. With this check, fsck_ffs(8) will be more picky and has better chance rejecting bad first superblock rather than referring to bad value it supplied, thus gives better chance for it to check the filesystem carefully. Revision Changes Path 1.51 +1 -1 src/sbin/fsck_ffs/setup.c From owner-cvs-all@FreeBSD.ORG Tue Feb 26 03:05:48 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8672116A400; Tue, 26 Feb 2008 03:05:48 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5E60D13C4D5; Tue, 26 Feb 2008 03:05:48 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q35mMV082822; Tue, 26 Feb 2008 03:05:48 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q35mbJ082821; Tue, 26 Feb 2008 03:05:48 GMT (envelope-from delphij) Message-Id: <200802260305.m1Q35mbJ082821@repoman.freebsd.org> From: Xin LI Date: Tue, 26 Feb 2008 03:05:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/fsck_ffs pass2.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 03:05:48 -0000 delphij 2008-02-26 03:05:48 UTC FreeBSD src repository Modified files: sbin/fsck_ffs pass2.c Log: In pass2check(): Be more strict with the inode information before further processing the information. chk1 is more prone to crash when insane information is provided by the on-disk inode, and does not even work if the inode is being smarshed badly. Revision Changes Path 1.27 +2 -0 src/sbin/fsck_ffs/pass2.c From owner-cvs-all@FreeBSD.ORG Tue Feb 26 03:08:23 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1963616A40B; Tue, 26 Feb 2008 03:08:23 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E492E13C4DD; Tue, 26 Feb 2008 03:08:22 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q38Ma1082965; Tue, 26 Feb 2008 03:08:22 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q38Mk9082964; Tue, 26 Feb 2008 03:08:22 GMT (envelope-from delphij) Message-Id: <200802260308.m1Q38Mk9082964@repoman.freebsd.org> From: Xin LI Date: Tue, 26 Feb 2008 03:08:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/fsck_ffs pass1.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 03:08:23 -0000 delphij 2008-02-26 03:08:22 UTC FreeBSD src repository Modified files: sbin/fsck_ffs pass1.c Log: In pass1(), cap inosused to fs_ipg rather than allowing arbitrary number read from cylinder group. Chances that we read a smarshed cylinder group, and we can not 100% trust information it has supplied. fsck_ffs(8) will crash otherwise for some cases. Revision Changes Path 1.44 +4 -2 src/sbin/fsck_ffs/pass1.c From owner-cvs-all@FreeBSD.ORG Tue Feb 26 05:38:48 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 96C8716A407; Tue, 26 Feb 2008 05:38:48 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6FB0113C447; Tue, 26 Feb 2008 05:38:48 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q5cmPh098910; Tue, 26 Feb 2008 05:38:48 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q5clh4098909; Tue, 26 Feb 2008 05:38:47 GMT (envelope-from leeym) Message-Id: <200802260538.m1Q5clh4098909@repoman.freebsd.org> From: Yen-Ming Lee Date: Tue, 26 Feb 2008 05:38:47 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/archivers/p5-Archive-Tar Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 05:38:48 -0000 leeym 2008-02-26 05:38:47 UTC FreeBSD ports repository Modified files: archivers/p5-Archive-Tar Makefile Log: - use CPAN macro - remove the modules which are in perl core list from dependency - bump PORTREVISION Revision Changes Path 1.31 +2 -3 ports/archivers/p5-Archive-Tar/Makefile From owner-cvs-all@FreeBSD.ORG Tue Feb 26 05:46:13 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9CC4016A400; Tue, 26 Feb 2008 05:46:13 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7629C13C461; Tue, 26 Feb 2008 05:46:13 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q5kDlf099187; Tue, 26 Feb 2008 05:46:13 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q5kCeW099186; Tue, 26 Feb 2008 05:46:12 GMT (envelope-from leeym) Message-Id: <200802260546.m1Q5kCeW099186@repoman.freebsd.org> From: Yen-Ming Lee Date: Tue, 26 Feb 2008 05:46:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio/p5-CDDB-File Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 05:46:13 -0000 leeym 2008-02-26 05:46:12 UTC FreeBSD ports repository Modified files: audio/p5-CDDB-File Makefile Log: - use CPAN macro - remove the already-in-perl-core-list modules from dependency - bump PORTREVISION Revision Changes Path 1.10 +3 -13 ports/audio/p5-CDDB-File/Makefile From owner-cvs-all@FreeBSD.ORG Tue Feb 26 05:58:59 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F2C2116A401; Tue, 26 Feb 2008 05:58:58 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E3F4813C458; Tue, 26 Feb 2008 05:58:58 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q5wwEU099635; Tue, 26 Feb 2008 05:58:58 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q5wwTh099634; Tue, 26 Feb 2008 05:58:58 GMT (envelope-from rafan) Message-Id: <200802260558.m1Q5wwTh099634@repoman.freebsd.org> From: Rong-En Fan Date: Tue, 26 Feb 2008 05:58:58 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security Makefile ports/security/easypg Makefile distinfo pkg-descr pkg-message pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 05:58:59 -0000 rafan 2008-02-26 05:58:58 UTC FreeBSD ports repository Modified files: security Makefile Added files: security/easypg Makefile distinfo pkg-descr pkg-message pkg-plist Log: EasyPG is an all-in-one GnuPG interface for Emacs. It consists of two parts: EasyPG Assistant and EasyPG Library. EasyPG Assistant is a set of convenient tools to use GnuPG from Emacs. EasyPG Library is a sort of an elisp port of GPGME, a wrapper library which provides API to access some of the GnuPG functions. WWW: http://sourceforge.jp/projects/epg/ PR: ports/119008 Submitted by: Shota Iwazaki Revision Changes Path 1.940 +1 -0 ports/security/Makefile 1.1 +53 -0 ports/security/easypg/Makefile (new) 1.1 +3 -0 ports/security/easypg/distinfo (new) 1.1 +8 -0 ports/security/easypg/pkg-descr (new) 1.1 +5 -0 ports/security/easypg/pkg-message (new) 1.1 +17 -0 ports/security/easypg/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Feb 26 05:59:05 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 872AA16A401; Tue, 26 Feb 2008 05:59:05 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6121D13C459; Tue, 26 Feb 2008 05:59:05 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q5x5Nm099671; Tue, 26 Feb 2008 05:59:05 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q5x5OX099670; Tue, 26 Feb 2008 05:59:05 GMT (envelope-from rafan) Message-Id: <200802260559.m1Q5x5OX099670@repoman.freebsd.org> From: Rong-En Fan Date: Tue, 26 Feb 2008 05:59:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 05:59:05 -0000 rafan 2008-02-26 05:59:05 UTC FreeBSD ports repository Modified files: . modules Log: easypg --> ports/security/easypg Revision Changes Path 1.19437 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Feb 26 06:20:01 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8266016A400; Tue, 26 Feb 2008 06:20:01 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6132E13C455; Tue, 26 Feb 2008 06:20:01 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q6K158001678; Tue, 26 Feb 2008 06:20:01 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q6K1kT001677; Tue, 26 Feb 2008 06:20:01 GMT (envelope-from rafan) Message-Id: <200802260620.m1Q6K1kT001677@repoman.freebsd.org> From: Rong-En Fan Date: Tue, 26 Feb 2008 06:20:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/ncurses-devel Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 06:20:01 -0000 rafan 2008-02-26 06:20:01 UTC FreeBSD ports repository Modified files: devel/ncurses-devel Makefile distinfo Log: - Update to 5.6 snapshot 20080223 Revision Changes Path 1.71 +1 -1 ports/devel/ncurses-devel/Makefile 1.36 +3 -0 ports/devel/ncurses-devel/distinfo From owner-cvs-all@FreeBSD.ORG Tue Feb 26 07:05:28 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3ED6116A400; Tue, 26 Feb 2008 07:05:28 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1D7AC13C447; Tue, 26 Feb 2008 07:05:28 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q75S4P004333; Tue, 26 Feb 2008 07:05:28 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q75QB8004332; Tue, 26 Feb 2008 07:05:26 GMT (envelope-from leeym) Message-Id: <200802260705.m1Q75QB8004332@repoman.freebsd.org> From: Yen-Ming Lee Date: Tue, 26 Feb 2008 07:05:25 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-Tie-File Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 07:05:28 -0000 leeym 2008-02-26 07:05:25 UTC FreeBSD ports repository Modified files: devel/p5-Tie-File Makefile Log: - use CPAN macro - remove the already-in-perl-core-list modules from dependency - bump PORTREVISION Revision Changes Path 1.3 +2 -4 ports/devel/p5-Tie-File/Makefile From owner-cvs-all@FreeBSD.ORG Tue Feb 26 07:17:47 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A802E16A404; Tue, 26 Feb 2008 07:17:47 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 857E413C45A; Tue, 26 Feb 2008 07:17:47 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q7HlYx004697; Tue, 26 Feb 2008 07:17:47 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q7Hlc9004696; Tue, 26 Feb 2008 07:17:47 GMT (envelope-from kientzle) Message-Id: <200802260717.m1Q7Hlc9004696@repoman.freebsd.org> From: Tim Kientzle Date: Tue, 26 Feb 2008 07:17:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libarchive archive_endian.h archive_read_support_format_zip.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 07:17:47 -0000 kientzle 2008-02-26 07:17:47 UTC FreeBSD src repository Modified files: lib/libarchive archive_endian.h archive_read_support_format_zip.c Log: Rename the archive_endian.h functions to avoid name clashes with NetBSD's sys/endian.h file. Pointed out by: Joerg Sonnenberger Revision Changes Path 1.2 +18 -18 src/lib/libarchive/archive_endian.h 1.21 +23 -21 src/lib/libarchive/archive_read_support_format_zip.c From owner-cvs-all@FreeBSD.ORG Tue Feb 26 07:25:48 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 21D0116A403; Tue, 26 Feb 2008 07:25:48 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 003EC13C4E3; Tue, 26 Feb 2008 07:25:47 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q7PleQ005032; Tue, 26 Feb 2008 07:25:47 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q7PlLt005031; Tue, 26 Feb 2008 07:25:47 GMT (envelope-from leeym) Message-Id: <200802260725.m1Q7PlLt005031@repoman.freebsd.org> From: Yen-Ming Lee Date: Tue, 26 Feb 2008 07:25:47 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/p5-XML-RSS-Parser Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 07:25:48 -0000 leeym 2008-02-26 07:25:47 UTC FreeBSD ports repository Modified files: textproc/p5-XML-RSS-Parser Makefile Log: - use CPAN macro - remove the already-in-perl-core-list modules from dependency - bump PORTREVISION Revision Changes Path 1.10 +2 -3 ports/textproc/p5-XML-RSS-Parser/Makefile From owner-cvs-all@FreeBSD.ORG Tue Feb 26 07:26:50 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CC03816A402; Tue, 26 Feb 2008 07:26:50 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AAEA613C44B; Tue, 26 Feb 2008 07:26:50 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q7Qo1P005091; Tue, 26 Feb 2008 07:26:50 GMT (envelope-from lbr@repoman.freebsd.org) Received: (from lbr@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q7QoQa005090; Tue, 26 Feb 2008 07:26:50 GMT (envelope-from lbr) Message-Id: <200802260726.m1Q7QoQa005090@repoman.freebsd.org> From: Lars Balker Rasmussen Date: Tue, 26 Feb 2008 07:26:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/p5-HTTP-Body Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 07:26:50 -0000 lbr 2008-02-26 07:26:50 UTC FreeBSD ports repository Modified files: www/p5-HTTP-Body Makefile distinfo pkg-plist Log: Update to 1.01 Revision Changes Path 1.8 +11 -9 ports/www/p5-HTTP-Body/Makefile 1.6 +3 -3 ports/www/p5-HTTP-Body/distinfo 1.3 +2 -0 ports/www/p5-HTTP-Body/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Feb 26 07:31:28 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C51E16A405; Tue, 26 Feb 2008 07:31:28 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6ABEB13C455; Tue, 26 Feb 2008 07:31:28 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q7VSPh005235; Tue, 26 Feb 2008 07:31:28 GMT (envelope-from lbr@repoman.freebsd.org) Received: (from lbr@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q7VSLn005234; Tue, 26 Feb 2008 07:31:28 GMT (envelope-from lbr) Message-Id: <200802260731.m1Q7VSLn005234@repoman.freebsd.org> From: Lars Balker Rasmussen Date: Tue, 26 Feb 2008 07:31:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/p5-Catalyst-Engine-Apache Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 07:31:28 -0000 lbr 2008-02-26 07:31:28 UTC FreeBSD ports repository Modified files: www/p5-Catalyst-Engine-Apache Makefile distinfo Log: Update to 1.12 Revision Changes Path 1.13 +2 -3 ports/www/p5-Catalyst-Engine-Apache/Makefile 1.10 +3 -3 ports/www/p5-Catalyst-Engine-Apache/distinfo From owner-cvs-all@FreeBSD.ORG Tue Feb 26 07:31:42 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 015FF16A509; Tue, 26 Feb 2008 07:31:42 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D40D713C4CE; Tue, 26 Feb 2008 07:31:41 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q7VfOq005286; Tue, 26 Feb 2008 07:31:41 GMT (envelope-from johans@repoman.freebsd.org) Received: (from johans@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q7Vf53005285; Tue, 26 Feb 2008 07:31:41 GMT (envelope-from johans) Message-Id: <200802260731.m1Q7Vf53005285@repoman.freebsd.org> From: Johan van Selst Date: Tue, 26 Feb 2008 07:31:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-im/climm Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 07:31:42 -0000 johans 2008-02-26 07:31:41 UTC FreeBSD ports repository Modified files: net-im/climm Makefile distinfo Log: - Update to 0.6.2 - Fix jabber support (turned off by default) Revision Changes Path 1.66 +6 -8 ports/net-im/climm/Makefile 1.39 +3 -3 ports/net-im/climm/distinfo From owner-cvs-all@FreeBSD.ORG Tue Feb 26 07:32:40 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 74B9516A401; Tue, 26 Feb 2008 07:32:40 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 53B0513C4CC; Tue, 26 Feb 2008 07:32:40 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q7WeNs005327; Tue, 26 Feb 2008 07:32:40 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q7We7v005326; Tue, 26 Feb 2008 07:32:40 GMT (envelope-from leeym) Message-Id: <200802260732.m1Q7We7v005326@repoman.freebsd.org> From: Yen-Ming Lee Date: Tue, 26 Feb 2008 07:32:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-IPC-Shareable Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 07:32:40 -0000 leeym 2008-02-26 07:32:40 UTC FreeBSD ports repository Modified files: devel/p5-IPC-Shareable Makefile Log: - use CPAN macro - handle dependency better - bump PORTREVISION Revision Changes Path 1.12 +9 -5 ports/devel/p5-IPC-Shareable/Makefile From owner-cvs-all@FreeBSD.ORG Tue Feb 26 11:30:11 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 95F6F1065674; Tue, 26 Feb 2008 11:30:11 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6A5DA141408; Tue, 26 Feb 2008 11:30:11 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QBUBuw027037; Tue, 26 Feb 2008 11:30:11 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QBUBp7027036; Tue, 26 Feb 2008 11:30:11 GMT (envelope-from rrs) Message-Id: <200802261130.m1QBUBp7027036@repoman.freebsd.org> From: Randall Stewart Date: Tue, 26 Feb 2008 11:30:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sys/netinet sctp_output.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 11:30:11 -0000 rrs 2008-02-26 11:30:11 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/netinet sctp_output.c Log: Purge a stray #ifdef __NETBSD__ from the file. Revision Changes Path 1.58.2.4 +0 -4 src/sys/netinet/sctp_output.c From owner-cvs-all@FreeBSD.ORG Tue Feb 26 11:31:12 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 86D071065671; Tue, 26 Feb 2008 11:31:12 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 61173141426; Tue, 26 Feb 2008 11:31:12 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QBVCsI027108; Tue, 26 Feb 2008 11:31:12 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QBVCFg027107; Tue, 26 Feb 2008 11:31:12 GMT (envelope-from rrs) Message-Id: <200802261131.m1QBVCFg027107@repoman.freebsd.org> From: Randall Stewart Date: Tue, 26 Feb 2008 11:31:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sys/netinet sctp_pcb.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 11:31:12 -0000 rrs 2008-02-26 11:31:12 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/netinet sctp_pcb.c Log: - For VRF enabled platforms, fix a memory leak when a VRF is deleted Obtained from: snprasad@cisco.com Revision Changes Path 1.62.2.4 +4 -0 src/sys/netinet/sctp_pcb.c From owner-cvs-all@FreeBSD.ORG Tue Feb 26 11:32:36 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AA2A21065701; Tue, 26 Feb 2008 11:32:36 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DFB7B140614; Tue, 26 Feb 2008 11:26:18 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QBQIB4026906; Tue, 26 Feb 2008 11:26:18 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QBQIbN026905; Tue, 26 Feb 2008 11:26:18 GMT (envelope-from miwi) Message-Id: <200802261126.m1QBQIbN026905@repoman.freebsd.org> From: Martin Wilke Date: Tue, 26 Feb 2008 11:26:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/finance/opentaxsolver Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 11:32:37 -0000 miwi 2008-02-26 11:26:18 UTC FreeBSD ports repository Modified files: finance/opentaxsolver Makefile distinfo Log: - Update to 5.05 PR: 121032 Submitted by: John Hein (maintainer) Revision Changes Path 1.7 +2 -2 ports/finance/opentaxsolver/Makefile 1.6 +3 -3 ports/finance/opentaxsolver/distinfo From owner-cvs-all@FreeBSD.ORG Tue Feb 26 11:32:40 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 56480106570C; Tue, 26 Feb 2008 11:32:40 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6A9F913E776; Tue, 26 Feb 2008 11:22:57 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QBMv7D026769; Tue, 26 Feb 2008 11:22:57 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QBMvHH026768; Tue, 26 Feb 2008 11:22:57 GMT (envelope-from miwi) Message-Id: <200802261122.m1QBMvHH026768@repoman.freebsd.org> From: Martin Wilke Date: Tue, 26 Feb 2008 11:22:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio/cheesetracker Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 11:32:40 -0000 miwi 2008-02-26 11:22:57 UTC FreeBSD ports repository Modified files: audio/cheesetracker Makefile distinfo Log: - Update to 0.9.15.4 PR: 121083 Submitted by: Ports Fury Revision Changes Path 1.28 +2 -3 ports/audio/cheesetracker/Makefile 1.12 +3 -3 ports/audio/cheesetracker/distinfo From owner-cvs-all@FreeBSD.ORG Tue Feb 26 11:32:56 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A389610658E3; Tue, 26 Feb 2008 11:32:56 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1A3A313F397; Tue, 26 Feb 2008 09:37:10 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q9b9Vw020836; Tue, 26 Feb 2008 09:37:09 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q9b9D6020835; Tue, 26 Feb 2008 09:37:09 GMT (envelope-from maxim) Message-Id: <200802260937.m1Q9b9D6020835@repoman.freebsd.org> From: Maxim Konovalov Date: Tue, 26 Feb 2008 09:37:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sys/cam/scsi scsi_da.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 11:32:58 -0000 maxim 2008-02-26 09:37:09 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/cam/scsi scsi_da.c Log: MFC rev. 1.226: correct EasyMP3 EM732X usb 2.0 flash mp3 player revision. Revision Changes Path 1.224.2.1 +1 -1 src/sys/cam/scsi/scsi_da.c From owner-cvs-all@FreeBSD.ORG Tue Feb 26 11:33:24 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 77FCD1065B8D; Tue, 26 Feb 2008 11:33:24 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AC52113E9B1; Tue, 26 Feb 2008 11:33:12 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QBXCWN027201; Tue, 26 Feb 2008 11:33:12 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QBXC9Y027200; Tue, 26 Feb 2008 11:33:12 GMT (envelope-from rrs) Message-Id: <200802261133.m1QBXC9Y027200@repoman.freebsd.org> From: Randall Stewart Date: Tue, 26 Feb 2008 11:33:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sys/netinet sctp_usrreq.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 11:33:24 -0000 rrs 2008-02-26 11:33:12 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/netinet sctp_usrreq.c Log: - Fix a bug in the connect() routine. A ref count was incremented in the wrong place, which could cause a incorrect accounting undre certain error conditions. And worse when we have a duplicate connect we called TCB_LOCK() not TCB_UNLOCK().... which will lead to a system lockup (escalting lock wait scenario). Revision Changes Path 1.48.2.4 +2 -2 src/sys/netinet/sctp_usrreq.c From owner-cvs-all@FreeBSD.ORG Tue Feb 26 11:38:30 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 34A141065753; Tue, 26 Feb 2008 11:38:30 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5CE94143F48; Tue, 26 Feb 2008 11:21:52 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QBLqsQ026671; Tue, 26 Feb 2008 11:21:52 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QBLqnh026670; Tue, 26 Feb 2008 11:21:52 GMT (envelope-from miwi) Message-Id: <200802261121.m1QBLqnh026670@repoman.freebsd.org> From: Martin Wilke Date: Tue, 26 Feb 2008 11:21:52 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/editors/lfhex Makefile distinfo ports/editors/lfhex/files patch-expr.h patch-mappings.h patch-src-mappings.h patch-src::expr.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 11:38:34 -0000 miwi 2008-02-26 11:21:52 UTC FreeBSD ports repository Modified files: editors/lfhex Makefile distinfo Added files: editors/lfhex/files patch-expr.h patch-mappings.h Removed files: editors/lfhex/files patch-src-mappings.h patch-src::expr.h Log: - Update to 0.4 PR: 121085 Submitted by: Ports Fury Revision Changes Path 1.24 +16 -16 ports/editors/lfhex/Makefile 1.9 +3 -3 ports/editors/lfhex/distinfo 1.1 +10 -0 ports/editors/lfhex/files/patch-expr.h (new) 1.1 +29 -0 ports/editors/lfhex/files/patch-mappings.h (new) 1.2 +0 -29 ports/editors/lfhex/files/patch-src-mappings.h (dead) 1.2 +0 -10 ports/editors/lfhex/files/patch-src::expr.h (dead) From owner-cvs-all@FreeBSD.ORG Tue Feb 26 11:44:41 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EF77B1065675; Tue, 26 Feb 2008 11:44:41 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D5CFB13C46A; Tue, 26 Feb 2008 11:44:41 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QBifvU027619; Tue, 26 Feb 2008 11:44:41 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QBifIs027618; Tue, 26 Feb 2008 11:44:41 GMT (envelope-from rwatson) Message-Id: <200802261144.m1QBifIs027618@repoman.freebsd.org> From: Robert Watson Date: Tue, 26 Feb 2008 11:44:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/arm/xscale/ixp425 ixp425.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 11:44:42 -0000 rwatson 2008-02-26 11:44:41 UTC FreeBSD src repository Modified files: sys/arm/xscale/ixp425 ixp425.c Log: On the ixp425, when we fail to initialize the memory rman instance, the panic message should read "memory", not "IRQ". MFC after: 3 days Revision Changes Path 1.9 +1 -1 src/sys/arm/xscale/ixp425/ixp425.c From owner-cvs-all@FreeBSD.ORG Tue Feb 26 11:45:32 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D3B02106566B; Tue, 26 Feb 2008 11:45:32 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BA93513C43E; Tue, 26 Feb 2008 11:45:32 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QBjWPq027699; Tue, 26 Feb 2008 11:45:32 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QBjWCf027698; Tue, 26 Feb 2008 11:45:32 GMT (envelope-from rwatson) Message-Id: <200802261145.m1QBjWCf027698@repoman.freebsd.org> From: Robert Watson Date: Tue, 26 Feb 2008 11:45:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/arm/include _bus.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 11:45:33 -0000 rwatson 2008-02-26 11:45:32 UTC FreeBSD src repository Modified files: sys/arm/include _bus.h Log: Remove errant % in license comment. MFC after: 3 days Revision Changes Path 1.2 +1 -1 src/sys/arm/include/_bus.h From owner-cvs-all@FreeBSD.ORG Tue Feb 26 11:47:00 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3D8B410656A0; Tue, 26 Feb 2008 11:47:00 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7911713F3E7; Tue, 26 Feb 2008 10:30:19 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QAUJu1023862; Tue, 26 Feb 2008 10:30:19 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QAUJvV023861; Tue, 26 Feb 2008 10:30:19 GMT (envelope-from maxim) Message-Id: <200802261030.m1QAUJvV023861@repoman.freebsd.org> From: Maxim Konovalov Date: Tue, 26 Feb 2008 10:30:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/etc/defaults rc.conf src/share/man/man5 rc.conf.5 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 11:47:06 -0000 maxim 2008-02-26 10:30:19 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc/defaults rc.conf share/man/man5 rc.conf.5 Log: o Backout rev. 1.252.2.39 rc.conf and rev. 1.256.2.35 rc.conf.5: there is TCP_DROP_SYNFIN in RELENG_6 still. PR: kern/120587 Revision Changes Path 1.252.2.43 +2 -0 src/etc/defaults/rc.conf 1.256.2.36 +5 -1 src/share/man/man5/rc.conf.5 From owner-cvs-all@FreeBSD.ORG Tue Feb 26 11:47:45 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0468710657CA; Tue, 26 Feb 2008 11:47:45 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9863D13C6B1; Tue, 26 Feb 2008 08:09:29 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q89TvO007655; Tue, 26 Feb 2008 08:09:29 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q89TEh007654; Tue, 26 Feb 2008 08:09:29 GMT (envelope-from scottl) Message-Id: <200802260809.m1Q89TEh007654@repoman.freebsd.org> From: Scott Long Date: Tue, 26 Feb 2008 08:09:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/cam cam_xpt.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 11:47:45 -0000 scottl 2008-02-26 08:09:29 UTC FreeBSD src repository Modified files: sys/cam cam_xpt.c Log: Add a missing unlock to an error path fro XPT_DEBUG handling. Revision Changes Path 1.196 +1 -0 src/sys/cam/cam_xpt.c From owner-cvs-all@FreeBSD.ORG Tue Feb 26 11:49:32 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 18E3E10656EA; Tue, 26 Feb 2008 11:49:32 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7AC3C13CEBB; Tue, 26 Feb 2008 09:27:47 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q9Rl7Z020395; Tue, 26 Feb 2008 09:27:47 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q9RlF3020394; Tue, 26 Feb 2008 09:27:47 GMT (envelope-from rwatson) Message-Id: <200802260927.m1Q9RlF3020394@repoman.freebsd.org> From: Robert Watson Date: Tue, 26 Feb 2008 09:27:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/fs/coda TODO X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 11:49:34 -0000 rwatson 2008-02-26 09:27:47 UTC FreeBSD src repository Modified files: sys/fs/coda TODO Log: Add "Make MPSAFE" to the Coda todo list. MFC after: 3 days Revision Changes Path 1.6 +1 -0 src/sys/fs/coda/TODO From owner-cvs-all@FreeBSD.ORG Tue Feb 26 11:50:26 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3429A10656BD; Tue, 26 Feb 2008 11:50:26 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A64D113CA05; Tue, 26 Feb 2008 09:27:23 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q9RNvm020350; Tue, 26 Feb 2008 09:27:23 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q9RNMI020349; Tue, 26 Feb 2008 09:27:23 GMT (envelope-from lth) Message-Id: <200802260927.m1Q9RNMI020349@repoman.freebsd.org> From: Lars Thegler Date: Tue, 26 Feb 2008 09:27:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules ports MOVED ports/audio Makefile ports/audio/daapd Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-message pkg-plist ports/audio/daapd/files daapd.in patch-README patch-daapd-example.conf patch-daapd.8 patch-makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 11:50:32 -0000 lth 2008-02-26 09:27:23 UTC FreeBSD ports repository Modified files: . modules . MOVED audio Makefile Removed files: audio/daapd Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-message pkg-plist audio/daapd/files daapd.in patch-README patch-daapd-example.conf patch-daapd.8 patch-makefile Log: - Removed audio/daapd (expired) 2007-11-04 audio/daapd: Development stalled, outdated. Does not support newer versions of DAAP protocol. Revision Changes Path 1.19438 +0 -1 CVSROOT/modules 1.1541 +2 -1 ports/MOVED 1.928 +0 -1 ports/audio/Makefile 1.15 +0 -88 ports/audio/daapd/Makefile (dead) 1.8 +0 -3 ports/audio/daapd/distinfo (dead) 1.2 +0 -41 ports/audio/daapd/files/daapd.in (dead) 1.3 +0 -11 ports/audio/daapd/files/patch-README (dead) 1.3 +0 -15 ports/audio/daapd/files/patch-daapd-example.conf (dead) 1.3 +0 -11 ports/audio/daapd/files/patch-daapd.8 (dead) 1.6 +0 -61 ports/audio/daapd/files/patch-makefile (dead) 1.2 +0 -27 ports/audio/daapd/pkg-deinstall (dead) 1.2 +0 -6 ports/audio/daapd/pkg-descr (dead) 1.3 +0 -31 ports/audio/daapd/pkg-install (dead) 1.4 +0 -46 ports/audio/daapd/pkg-message (dead) 1.6 +0 -5 ports/audio/daapd/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Tue Feb 26 11:50:41 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6334710658C1; Tue, 26 Feb 2008 11:50:41 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AE36F13DC38; Tue, 26 Feb 2008 10:33:15 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QAXFZk023974; Tue, 26 Feb 2008 10:33:15 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QAXF4i023973; Tue, 26 Feb 2008 10:33:15 GMT (envelope-from dinoex) Message-Id: <200802261033.m1QAXF4i023973@repoman.freebsd.org> From: Dirk Meyer Date: Tue, 26 Feb 2008 10:33:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/netpbm Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 11:50:41 -0000 dinoex 2008-02-26 10:33:15 UTC FreeBSD ports repository Modified files: graphics/netpbm Makefile distinfo Log: - update to 10.26.50 Revision Changes Path 1.155 +1 -1 ports/graphics/netpbm/Makefile 1.98 +3 -3 ports/graphics/netpbm/distinfo From owner-cvs-all@FreeBSD.ORG Tue Feb 26 11:51:47 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9EC6310658CE; Tue, 26 Feb 2008 11:51:47 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D4EE613E0A7; Tue, 26 Feb 2008 09:43:44 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q9hicC021064; Tue, 26 Feb 2008 09:43:44 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q9hiGX021063; Tue, 26 Feb 2008 09:43:44 GMT (envelope-from maxim) Message-Id: <200802260943.m1Q9hiGX021063@repoman.freebsd.org> From: Maxim Konovalov Date: Tue, 26 Feb 2008 09:43:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sbin/setkey parse.y X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 11:51:51 -0000 maxim 2008-02-26 09:43:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sbin/setkey parse.y Log: MFC rev. 1.11: allow setkey(8) to recognize esp as a protocol name for spdadd. Revision Changes Path 1.9.2.1 +1 -0 src/sbin/setkey/parse.y From owner-cvs-all@FreeBSD.ORG Tue Feb 26 11:52:59 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 191151065898; Tue, 26 Feb 2008 11:52:59 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E0B5013FAAF; Tue, 26 Feb 2008 10:10:55 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QAAtpa023217; Tue, 26 Feb 2008 10:10:55 GMT (envelope-from kib@repoman.freebsd.org) Received: (from kib@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QAAtgK023216; Tue, 26 Feb 2008 10:10:55 GMT (envelope-from kib) Message-Id: <200802261010.m1QAAtgK023216@repoman.freebsd.org> From: Konstantin Belousov Date: Tue, 26 Feb 2008 10:10:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/fs/fdescfs fdesc_vnops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 11:53:00 -0000 kib 2008-02-26 10:10:55 UTC FreeBSD src repository Modified files: sys/fs/fdescfs fdesc_vnops.c Log: Rename fdescfs vnode from "fdesc" to "fdescfs" to avoid name collision of the vnode lock with the fdesc_mtx mutex. Having different kinds of locks with the same name confuses witness. Revision Changes Path 1.107 +1 -1 src/sys/fs/fdescfs/fdesc_vnops.c From owner-cvs-all@FreeBSD.ORG Tue Feb 26 11:53:00 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3858510658BE; Tue, 26 Feb 2008 11:52:59 +0000 (UTC) (envelope-from peterjeremy@optushome.com.au) Received: from mail11.syd.optusnet.com.au (mail11.syd.optusnet.com.au [211.29.132.192]) by mx1.freebsd.org (Postfix) with ESMTP id EB45413F290; Tue, 26 Feb 2008 09:49:34 +0000 (UTC) (envelope-from peterjeremy@optushome.com.au) Received: from server.vk2pj.dyndns.org (c220-239-20-82.belrs4.nsw.optusnet.com.au [220.239.20.82]) by mail11.syd.optusnet.com.au (8.13.1/8.13.1) with ESMTP id m1Q9nVZt009413 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 26 Feb 2008 20:49:32 +1100 Received: from server.vk2pj.dyndns.org (localhost.vk2pj.dyndns.org [127.0.0.1]) by server.vk2pj.dyndns.org (8.14.2/8.14.1) with ESMTP id m1Q9nVtm084898; Tue, 26 Feb 2008 20:49:31 +1100 (EST) (envelope-from peter@server.vk2pj.dyndns.org) Received: (from peter@localhost) by server.vk2pj.dyndns.org (8.14.2/8.14.2/Submit) id m1Q9nVaw084897; Tue, 26 Feb 2008 20:49:31 +1100 (EST) (envelope-from peter) Date: Tue, 26 Feb 2008 20:49:31 +1100 From: Peter Jeremy To: Giorgos Keramidas Message-ID: <20080226094931.GT83599@server.vk2pj.dyndns.org> References: <200802251906.m1PJ6hwB005451@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="raC6veAxrt5nqIoY" Content-Disposition: inline In-Reply-To: <200802251906.m1PJ6hwB005451@repoman.freebsd.org> X-PGP-Key: http://members.optusnet.com.au/peterjeremy/pubkey.asc User-Agent: Mutt/1.5.17 (2007-11-01) Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.bin/du du.1 du.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 11:53:04 -0000 --raC6veAxrt5nqIoY Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Feb 25, 2008 at 07:06:43PM +0000, Giorgos Keramidas wrote: > Implement from scratch a -l option for du(1), to match the same option > of the GNU utility. The default behavior of our original `du' is to > count hardlinked files only once for each invocation of the utility. > With the new -l option they count towards the final size every time > they are found. The third possible option is to amortize the size of hardlinked files across all their occurrences by adding size/nlinks each time they are found. IMHO, this results in the least "surprises" in the result. --=20 Peter Jeremy Please excuse any delays as the result of my ISP's inability to implement an MTA that is either RFC2821-compliant or matches their claimed behaviour. --raC6veAxrt5nqIoY Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQFHw+Cr/opHv/APuIcRAoYbAKCulh+Zh1CS6Wg6EIUGgoUSNf/hyACfQ7rh YsyC4ekwspRWG5/4E2nRsVg= =dlTl -----END PGP SIGNATURE----- --raC6veAxrt5nqIoY-- From owner-cvs-all@FreeBSD.ORG Tue Feb 26 11:53:47 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D33F41065E56; Tue, 26 Feb 2008 11:53:47 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 18E6D13E39D; Tue, 26 Feb 2008 09:44:37 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q9iakS021128; Tue, 26 Feb 2008 09:44:36 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q9ia5q021127; Tue, 26 Feb 2008 09:44:36 GMT (envelope-from maxim) Message-Id: <200802260944.m1Q9ia5q021127@repoman.freebsd.org> From: Maxim Konovalov Date: Tue, 26 Feb 2008 09:44:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sbin/setkey parse.y X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 11:53:48 -0000 maxim 2008-02-26 09:44:36 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sbin/setkey parse.y Log: MFC rev. 1.11: allow setkey(8) to recognize esp as a protocol name for spdadd. Revision Changes Path 1.8.2.2 +1 -0 src/sbin/setkey/parse.y From owner-cvs-all@FreeBSD.ORG Tue Feb 26 11:53:52 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8F149106579C; Tue, 26 Feb 2008 11:53:52 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1252A13EE7C; Tue, 26 Feb 2008 09:22:21 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q9MKVY020021; Tue, 26 Feb 2008 09:22:20 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q9MKiJ020020; Tue, 26 Feb 2008 09:22:20 GMT (envelope-from pav) Message-Id: <200802260922.m1Q9MKiJ020020@repoman.freebsd.org> From: Pav Lucistnik Date: Tue, 26 Feb 2008 09:22:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/libopenraw Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 11:54:00 -0000 pav 2008-02-26 09:22:20 UTC FreeBSD ports repository Modified files: graphics/libopenraw Makefile distinfo pkg-plist Log: - Update to 0.0.5 Revision Changes Path 1.5 +2 -1 ports/graphics/libopenraw/Makefile 1.3 +3 -3 ports/graphics/libopenraw/distinfo 1.3 +2 -2 ports/graphics/libopenraw/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Feb 26 11:54:34 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AA490106593F; Tue, 26 Feb 2008 11:54:34 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 09A9913CDA9; Tue, 26 Feb 2008 08:39:45 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q8dihE008616; Tue, 26 Feb 2008 08:39:44 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q8dic2008615; Tue, 26 Feb 2008 08:39:44 GMT (envelope-from pav) Message-Id: <200802260839.m1Q8dic2008615@repoman.freebsd.org> From: Pav Lucistnik Date: Tue, 26 Feb 2008 08:39:44 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors contrib.additional.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 11:54:35 -0000 pav 2008-02-26 08:39:44 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/contributors contrib.additional.sgml Log: - Add Chess Griffin for his numerous contributions to the ports tree PR: docs/121107 Submitted by: Chess Griffin Revision Changes Path 1.767 +5 -0 doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml From owner-cvs-all@FreeBSD.ORG Tue Feb 26 11:55:49 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A38EA1065711; Tue, 26 Feb 2008 11:55:49 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5C8E013CB34; Tue, 26 Feb 2008 09:22:37 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q9Mb34020065; Tue, 26 Feb 2008 09:22:37 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q9MbWP020064; Tue, 26 Feb 2008 09:22:37 GMT (envelope-from pav) Message-Id: <200802260922.m1Q9MbWP020064@repoman.freebsd.org> From: Pav Lucistnik Date: Tue, 26 Feb 2008 09:22:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/gthumb Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 11:55:49 -0000 pav 2008-02-26 09:22:37 UTC FreeBSD ports repository Modified files: graphics/gthumb Makefile Log: - Chase libopenraw update Revision Changes Path 1.39 +1 -1 ports/graphics/gthumb/Makefile From owner-cvs-all@FreeBSD.ORG Tue Feb 26 11:55:58 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CF70F1065961; Tue, 26 Feb 2008 11:55:58 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 53F0413D430; Tue, 26 Feb 2008 09:38:09 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q9c9fF020876; Tue, 26 Feb 2008 09:38:09 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q9c99Y020875; Tue, 26 Feb 2008 09:38:09 GMT (envelope-from maxim) Message-Id: <200802260938.m1Q9c99Y020875@repoman.freebsd.org> From: Maxim Konovalov Date: Tue, 26 Feb 2008 09:38:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/cam/scsi scsi_da.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 11:55:59 -0000 maxim 2008-02-26 09:38:09 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/cam/scsi scsi_da.c Log: MFC rev. 1.226: correct EasyMP3 EM732X usb 2.0 flash mp3 player revision. Revision Changes Path 1.180.2.14 +1 -1 src/sys/cam/scsi/scsi_da.c From owner-cvs-all@FreeBSD.ORG Tue Feb 26 11:56:00 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C6F161065B0D; Tue, 26 Feb 2008 11:56:00 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 459B013DDB9; Tue, 26 Feb 2008 09:31:14 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q9VEDJ020556; Tue, 26 Feb 2008 09:31:14 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q9VEvo020555; Tue, 26 Feb 2008 09:31:14 GMT (envelope-from maxim) Message-Id: <200802260931.m1Q9VEvo020555@repoman.freebsd.org> From: Maxim Konovalov Date: Tue, 26 Feb 2008 09:31:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sbin/ipfw ipfw2.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 11:56:01 -0000 maxim 2008-02-26 09:31:14 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sbin/ipfw ipfw2.c Log: MFC rev. 1.112: fix command line parser bug: "ipfw nat 1 config if" requires an argument. Revision Changes Path 1.108.2.2 +2 -0 src/sbin/ipfw/ipfw2.c From owner-cvs-all@FreeBSD.ORG Tue Feb 26 11:56:12 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C3C3D1065E61; Tue, 26 Feb 2008 11:56:12 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4793E13E00D; Tue, 26 Feb 2008 09:33:57 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1Q9Xv4d020684; Tue, 26 Feb 2008 09:33:57 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1Q9Xvjm020683; Tue, 26 Feb 2008 09:33:57 GMT (envelope-from maxim) Message-Id: <200802260933.m1Q9Xvjm020683@repoman.freebsd.org> From: Maxim Konovalov Date: Tue, 26 Feb 2008 09:33:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sys/dev/puc pucdata.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 11:56:13 -0000 maxim 2008-02-26 09:33:57 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/dev/puc pucdata.c Log: MFC rev. 1.60: add Moxa Technologies CP-104EL PCI Express 4 port Serial card. Revision Changes Path 1.59.2.1 +6 -0 src/sys/dev/puc/pucdata.c From owner-cvs-all@FreeBSD.ORG Tue Feb 26 11:57:13 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 503C01066054; Tue, 26 Feb 2008 11:57:13 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 665A413CAA5; Tue, 26 Feb 2008 11:56:52 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QBuqJK028158; Tue, 26 Feb 2008 11:56:52 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QBuqR0028157; Tue, 26 Feb 2008 11:56:52 GMT (envelope-from gabor) Message-Id: <200802261156.m1QBuqR0028157@repoman.freebsd.org> From: Gabor Kovesdan Date: Tue, 26 Feb 2008 11:56:52 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/p5-Amazon-SQS-Simple Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 11:57:15 -0000 gabor 2008-02-26 11:56:52 UTC FreeBSD ports repository Modified files: net/p5-Amazon-SQS-Simple Makefile distinfo pkg-descr pkg-plist Log: - Update to 0.7 - Update WWW - Style PR: ports/121003 Submitted by: Felippe de Meirelles Motta Approved by: mainainer Revision Changes Path 1.2 +4 -7 ports/net/p5-Amazon-SQS-Simple/Makefile 1.2 +3 -3 ports/net/p5-Amazon-SQS-Simple/distinfo 1.2 +1 -1 ports/net/p5-Amazon-SQS-Simple/pkg-descr 1.2 +10 -1 ports/net/p5-Amazon-SQS-Simple/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Feb 26 11:57:47 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7D74D10658E6; Tue, 26 Feb 2008 11:57:47 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 68A8F13C4E1; Tue, 26 Feb 2008 11:57:47 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QBvlcn028198; Tue, 26 Feb 2008 11:57:47 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QBvlxm028197; Tue, 26 Feb 2008 11:57:47 GMT (envelope-from gabor) Message-Id: <200802261157.m1QBvlxm028197@repoman.freebsd.org> From: Gabor Kovesdan Date: Tue, 26 Feb 2008 11:57:47 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/p5-RT-Client-REST Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 11:57:47 -0000 gabor 2008-02-26 11:57:47 UTC FreeBSD ports repository Modified files: www/p5-RT-Client-REST Makefile distinfo Log: - Update to 0.32 - Style PR: ports/121026 Submitted by: Felippe de Meirelles Motta Approved by: maintainer Revision Changes Path 1.3 +7 -9 ports/www/p5-RT-Client-REST/Makefile 1.3 +3 -3 ports/www/p5-RT-Client-REST/distinfo From owner-cvs-all@FreeBSD.ORG Tue Feb 26 12:16:35 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9871F106567F; Tue, 26 Feb 2008 12:16:35 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 842C213C4D1; Tue, 26 Feb 2008 12:16:35 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QCGZIV029992; Tue, 26 Feb 2008 12:16:35 GMT (envelope-from kib@repoman.freebsd.org) Received: (from kib@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QCGZHD029991; Tue, 26 Feb 2008 12:16:35 GMT (envelope-from kib) Message-Id: <200802261216.m1QCGZHD029991@repoman.freebsd.org> From: Konstantin Belousov Date: Tue, 26 Feb 2008 12:16:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern vnode_if.src X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 12:16:35 -0000 kib 2008-02-26 12:16:35 UTC FreeBSD src repository Modified files: sys/kern vnode_if.src Log: Do not assert any locks for VOP_PRINT. In particular, do not assert that the vnode interlock is not held. vn_printf() already correctly handles locked and unlocked vnode interlocks, and all the in-tree vop_print methods are interlock-agnostic. Some code calls vprintf() with the vnode interlock held, that causes unjustified panics with INVARIANTS (ffs_syncvnode() as example). Reported by: Peter Holm Revision Changes Path 1.90 +1 -1 src/sys/kern/vnode_if.src From owner-cvs-all@FreeBSD.ORG Tue Feb 26 12:20:12 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 79F83106569D; Tue, 26 Feb 2008 12:20:12 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6696613C459; Tue, 26 Feb 2008 12:20:12 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QCKCDa030175; Tue, 26 Feb 2008 12:20:12 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QCKCap030174; Tue, 26 Feb 2008 12:20:12 GMT (envelope-from ehaupt) Message-Id: <200802261220.m1QCKCap030174@repoman.freebsd.org> From: Emanuel Haupt Date: Tue, 26 Feb 2008 12:20:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/math/mathomatic Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 12:20:12 -0000 ehaupt 2008-02-26 12:20:12 UTC FreeBSD ports repository Modified files: math/mathomatic Makefile distinfo Log: Update to 12.8.8 Revision Changes Path 1.45 +1 -1 ports/math/mathomatic/Makefile 1.44 +3 -3 ports/math/mathomatic/distinfo From owner-cvs-all@FreeBSD.ORG Tue Feb 26 12:20:16 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 224871065673; Tue, 26 Feb 2008 12:20:16 +0000 (UTC) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 106B013C45D; Tue, 26 Feb 2008 12:20:16 +0000 (UTC) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QCKFoT030231; Tue, 26 Feb 2008 12:20:15 GMT (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QCKF5e030230; Tue, 26 Feb 2008 12:20:15 GMT (envelope-from keramida) Message-Id: <200802261220.m1QCKF5e030230@repoman.freebsd.org> From: Giorgos Keramidas Date: Tue, 26 Feb 2008 12:20:15 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT access X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 12:20:16 -0000 keramida 2008-02-26 12:20:15 UTC FreeBSD doc repository Modified files: . access Log: Please welcome Ganbold Tsagaankhuu (username: ganbold) to the team of doc+www committers. Ganbold has been translating parts of our doc tree to the Mongolian language, and he will keep working on it. I'm going to be his mentor, for a while. Ganbold also leads a team of Mongolian translators, so we are hoping that he will act as a 'liaison' for all the Mongolian translations. Approved by: doceng Revision Changes Path 1.597 +1 -0 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Tue Feb 26 12:21:25 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C74391065670; Tue, 26 Feb 2008 12:21:25 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 846A613C4E9; Tue, 26 Feb 2008 12:21:25 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QCLPpn030320; Tue, 26 Feb 2008 12:21:25 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QCLPF4030319; Tue, 26 Feb 2008 12:21:25 GMT (envelope-from ehaupt) Message-Id: <200802261221.m1QCLPF4030319@repoman.freebsd.org> From: Emanuel Haupt Date: Tue, 26 Feb 2008 12:21:25 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/weedit Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 12:21:26 -0000 ehaupt 2008-02-26 12:21:25 UTC FreeBSD ports repository Modified files: sysutils/weedit Makefile distinfo Log: Update to 2.0.3 Revision Changes Path 1.3 +1 -1 ports/sysutils/weedit/Makefile 1.3 +3 -3 ports/sysutils/weedit/distinfo From owner-cvs-all@FreeBSD.ORG Tue Feb 26 12:26:47 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 51FE81065671; Tue, 26 Feb 2008 12:26:47 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 41B0913C501; Tue, 26 Feb 2008 12:26:47 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QCQlCO030564; Tue, 26 Feb 2008 12:26:47 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QCQlEv030563; Tue, 26 Feb 2008 12:26:47 GMT (envelope-from ehaupt) Message-Id: <200802261226.m1QCQlEv030563@repoman.freebsd.org> From: Emanuel Haupt Date: Tue, 26 Feb 2008 12:26:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/isync Makefile distinfo ports/mail/isync/files patch-src-drv_imap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 12:26:47 -0000 ehaupt 2008-02-26 12:26:46 UTC FreeBSD ports repository Modified files: mail/isync Makefile distinfo Removed files: mail/isync/files patch-src-drv_imap.c Log: Update to 1.0.4 Revision Changes Path 1.17 +1 -1 ports/mail/isync/Makefile 1.11 +3 -3 ports/mail/isync/distinfo 1.3 +0 -20 ports/mail/isync/files/patch-src-drv_imap.c (dead) From owner-cvs-all@FreeBSD.ORG Tue Feb 26 12:30:09 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7FA14106567C; Tue, 26 Feb 2008 12:30:09 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [209.31.154.42]) by mx1.freebsd.org (Postfix) with ESMTP id 482B613C4F4; Tue, 26 Feb 2008 12:30:09 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id 8D3EF46B08; Tue, 26 Feb 2008 07:30:08 -0500 (EST) Date: Tue, 26 Feb 2008 12:30:08 +0000 (GMT) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Kris Kennaway In-Reply-To: <47C29A07.2070908@FreeBSD.org> Message-ID: <20080226122936.T90776@fledge.watson.org> References: <200802250855.m1P8t3w6052042@repoman.freebsd.org> <47C29A07.2070908@FreeBSD.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, "David E. O'Brien" Subject: Re: cvs commit: src/sys/fs/nullfs null_vfsops.c src/sys/fs/nwfs nwfs_vfsops.c src/sys/fs/smbfs smbfs_vfsops.c src/sys/ufs/ufs quota.h ufs_quota.c ufs_vfsops.c src/sys/kern vfs_default.c vfs_vnops.c vnode_if.src src/sys/sys mount.h vnode.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 12:30:09 -0000 On Mon, 25 Feb 2008, Kris Kennaway wrote: > David E. O'Brien wrote: >> obrien 2008-02-25 08:55:02 UTC >> >> FreeBSD src repository >> >> Modified files: (Branch: RELENG_6) >> sys/fs/nullfs null_vfsops.c sys/fs/nwfs >> nwfs_vfsops.c sys/fs/smbfs smbfs_vfsops.c sys/ufs/ufs >> quota.h ufs_quota.c ufs_vfsops.c sys/kern vfs_default.c >> vfs_vnops.c vnode_if.src sys/sys mount.h vnode.h Log: >> MFC: Eradicate caddr_t from the VFS API. > > Does this change the KAPI on a stable branch? Yes. I ran into this specific issue in updating Arla -- caddr_t -> void * changes the function prototype in a way that breaks the Arla build. Robert N M Watson Computer Laboratory University of Cambridge From owner-cvs-all@FreeBSD.ORG Tue Feb 26 12:31:44 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1F3891065674; Tue, 26 Feb 2008 12:31:44 +0000 (UTC) (envelope-from ganbold@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1081D13C45B; Tue, 26 Feb 2008 12:31:44 +0000 (UTC) (envelope-from ganbold@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QCVhni030727; Tue, 26 Feb 2008 12:31:43 GMT (envelope-from ganbold@repoman.freebsd.org) Received: (from ganbold@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QCVhbS030726; Tue, 26 Feb 2008 12:31:43 GMT (envelope-from ganbold) Message-Id: <200802261231.m1QCVhbS030726@repoman.freebsd.org> From: Ganbold Tsagaankhuu Date: Tue, 26 Feb 2008 12:31:43 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/share/sgml authors.ent X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 12:31:44 -0000 ganbold 2008-02-26 12:31:43 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/share/sgml authors.ent Log: Add myself to authors. Approved by: keramida(mentor) Revision Changes Path 1.441 +2 -0 doc/en_US.ISO8859-1/share/sgml/authors.ent From owner-cvs-all@FreeBSD.ORG Tue Feb 26 12:33:32 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8E2421065682; Tue, 26 Feb 2008 12:33:32 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [209.31.154.42]) by mx1.freebsd.org (Postfix) with ESMTP id 6F93A13C459; Tue, 26 Feb 2008 12:33:32 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id 0046F46B67; Tue, 26 Feb 2008 07:33:31 -0500 (EST) Date: Tue, 26 Feb 2008 12:33:31 +0000 (GMT) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: =?utf-8?Q?Dag-Erling_Sm=C3=B8rgrav?= In-Reply-To: <86d4qli8a1.fsf@ds4.des.no> Message-ID: <20080226123107.N90776@fledge.watson.org> References: <200802250855.m1P8t3w6052042@repoman.freebsd.org> <47C29A07.2070908@FreeBSD.org> <86d4qli8a1.fsf@ds4.des.no> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="621616949-1302705894-1204029211=:90776" Cc: cvs-src@FreeBSD.org, Kris Kennaway , src-committers@FreeBSD.org, cvs-all@FreeBSD.org, "David E. O'Brien" Subject: Re: cvs commit: src/sys/fs/nullfs null_vfsops.c src/sys/fs/nwfs nwfs_vfsops.c src/sys/fs/smbfs smbfs_vfsops.c src/sys/ufs/ufs quota.h ufs_quota.c ufs_vfsops.c src/sys/kern vfs_default.c vfs_vnops.c vnode_if.src src/sys/sys mount.h vnode.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 12:33:32 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --621616949-1302705894-1204029211=:90776 Content-Type: TEXT/PLAIN; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: QUOTED-PRINTABLE On Mon, 25 Feb 2008, Dag-Erling Sm=F8rgrav wrote: > No, it changes neither the API nor the ABI. It replaces caddr_t (which i= s=20 > typedef'd to char *) with void *, and those two are compatible types. I'm sorry, but I disagree. The case you failed to test involves a function= =20 pointer typedef. Here's the test I had to add to Arla to detect the change= =20 with autoconf; without this autoconf mess and changed prototypes in the Arl= a=20 nnpfs code, I can't build nnpfs on -CURRENT, and presumably now also on our= =20 -STABLE branches: AC_DEFUN([AC_BSD_FUNC_VFS_QUOTACTL], [ AC_CACHE_CHECK(if VFS_QUOTACTL takes caddr_t argument,=20 ac_cv_func_vfs_quotactl_caddr, AC_TRY_COMPILE_KERNEL([ #ifdef HAVE_SYS_CDEFS_H #include #endif #include #include #include #include #include #include vfs_quotactl_t foo_quotactl; int foo_quotactl(struct mount *mp, int cmds, uid_t uid, caddr_t arg, struct thread *td) { return (0); } ],[], ac_cv_func_vfs_quotctl_caddr=3Dyes, ac_cv_func_vfs_quotactl_caddr=3Dno)) if test "$ac_cv_func_vfs_quotactl_caddr" =3D yes; then AC_DEFINE(HAVE_VFS_QUOTACTL_CADDR, 1, [define if VFS_QUOTACTL takes a caddr_t argument]) fi ]) --621616949-1302705894-1204029211=:90776-- From owner-cvs-all@FreeBSD.ORG Tue Feb 26 12:33:38 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 37218106568A; Tue, 26 Feb 2008 12:33:38 +0000 (UTC) (envelope-from ganbold@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2790413C4E5; Tue, 26 Feb 2008 12:33:38 +0000 (UTC) (envelope-from ganbold@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QCXbSY030827; Tue, 26 Feb 2008 12:33:37 GMT (envelope-from ganbold@repoman.freebsd.org) Received: (from ganbold@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QCXbLX030826; Tue, 26 Feb 2008 12:33:37 GMT (envelope-from ganbold) Message-Id: <200802261233.m1QCXbLX030826@repoman.freebsd.org> From: Ganbold Tsagaankhuu Date: Tue, 26 Feb 2008 12:33:37 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors contrib.additional.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 12:33:38 -0000 ganbold 2008-02-26 12:33:37 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/contributors contrib.additional.sgml Log: Move myself from Additional Contributors to Developers. Approved by: keramida(mentor) Revision Changes Path 1.768 +0 -5 doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml From owner-cvs-all@FreeBSD.ORG Tue Feb 26 12:34:29 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 26CAD1065679; Tue, 26 Feb 2008 12:34:29 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1887013C4E1; Tue, 26 Feb 2008 12:34:29 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QCYSx3030868; Tue, 26 Feb 2008 12:34:28 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QCYSsZ030867; Tue, 26 Feb 2008 12:34:28 GMT (envelope-from miwi) Message-Id: <200802261234.m1QCYSsZ030867@repoman.freebsd.org> From: Martin Wilke Date: Tue, 26 Feb 2008 12:34:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 12:34:30 -0000 miwi 2008-02-26 12:34:28 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: - Fix previous commit (use now ) Revision Changes Path 1.1568 +3 -2 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Tue Feb 26 12:35:13 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B29C91065678; Tue, 26 Feb 2008 12:35:13 +0000 (UTC) (envelope-from ganbold@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5A4E613C46A; Tue, 26 Feb 2008 12:35:13 +0000 (UTC) (envelope-from ganbold@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QCZDqx030944; Tue, 26 Feb 2008 12:35:13 GMT (envelope-from ganbold@repoman.freebsd.org) Received: (from ganbold@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QCZDJs030942; Tue, 26 Feb 2008 12:35:13 GMT (envelope-from ganbold) Message-Id: <200802261235.m1QCZDJs030942@repoman.freebsd.org> From: Ganbold Tsagaankhuu Date: Tue, 26 Feb 2008 12:35:13 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en developers.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 12:35:14 -0000 ganbold 2008-02-26 12:35:13 UTC FreeBSD doc repository Modified files: en developers.sgml Log: Add myself to the list of developers on FreeBSD.org Approved by: keramida(mentor) Revision Changes Path 1.187 +2 -1 www/en/developers.sgml From owner-cvs-all@FreeBSD.ORG Tue Feb 26 12:36:21 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 02726106567A; Tue, 26 Feb 2008 12:36:21 +0000 (UTC) (envelope-from ganbold@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E78FD13C4FA; Tue, 26 Feb 2008 12:36:20 +0000 (UTC) (envelope-from ganbold@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QCaKAR031005; Tue, 26 Feb 2008 12:36:20 GMT (envelope-from ganbold@repoman.freebsd.org) Received: (from ganbold@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QCaKTj031004; Tue, 26 Feb 2008 12:36:20 GMT (envelope-from ganbold) Message-Id: <200802261236.m1QCaKTj031004@repoman.freebsd.org> From: Ganbold Tsagaankhuu Date: Tue, 26 Feb 2008 12:36:20 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/share/sgml news.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 12:36:21 -0000 ganbold 2008-02-26 12:36:20 UTC FreeBSD doc repository Modified files: share/sgml news.xml Log: Add myself as new committer on front page news of FreeBSD.org. Approved by: keramida(mentor) Revision Changes Path 1.147 +9 -1 www/share/sgml/news.xml From owner-cvs-all@FreeBSD.ORG Tue Feb 26 12:39:29 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4E415106568E; Tue, 26 Feb 2008 12:39:29 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4197E13C4F6; Tue, 26 Feb 2008 12:39:29 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QCdTKg031095; Tue, 26 Feb 2008 12:39:29 GMT (envelope-from mav@repoman.freebsd.org) Received: (from mav@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QCdTV4031094; Tue, 26 Feb 2008 12:39:29 GMT (envelope-from mav) Message-Id: <200802261239.m1QCdTV4031094@repoman.freebsd.org> From: Alexander Motin Date: Tue, 26 Feb 2008 12:39:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sys/netgraph ng_base.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 12:39:29 -0000 mav 2008-02-26 12:39:29 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/netgraph ng_base.c Log: MFC rev. 1.147 Fix incorrect constant used in rev. 1.146 that broke node writer locking. Revision Changes Path 1.135.2.4 +1 -1 src/sys/netgraph/ng_base.c From owner-cvs-all@FreeBSD.ORG Tue Feb 26 12:40:07 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 21FE2106568A; Tue, 26 Feb 2008 12:40:07 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1205A13C504; Tue, 26 Feb 2008 12:40:07 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QCe6af031176; Tue, 26 Feb 2008 12:40:06 GMT (envelope-from mav@repoman.freebsd.org) Received: (from mav@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QCe6Hn031175; Tue, 26 Feb 2008 12:40:06 GMT (envelope-from mav) Message-Id: <200802261240.m1QCe6Hn031175@repoman.freebsd.org> From: Alexander Motin Date: Tue, 26 Feb 2008 12:40:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/netgraph ng_base.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 12:40:07 -0000 mav 2008-02-26 12:40:06 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netgraph ng_base.c Log: MFC rev. 1.147 Fix incorrect constant used in rev. 1.146 that broke node writer locking. Revision Changes Path 1.102.2.16 +1 -1 src/sys/netgraph/ng_base.c From owner-cvs-all@FreeBSD.ORG Tue Feb 26 12:40:38 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 34E9F10656F1; Tue, 26 Feb 2008 12:40:38 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [209.31.154.42]) by mx1.freebsd.org (Postfix) with ESMTP id 1EEBB13C4F9; Tue, 26 Feb 2008 12:40:38 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id CD11A46B43; Tue, 26 Feb 2008 07:40:37 -0500 (EST) Date: Tue, 26 Feb 2008 12:40:37 +0000 (GMT) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Konstantin Belousov In-Reply-To: <200802261010.m1QAAtgK023216@repoman.freebsd.org> Message-ID: <20080226123817.L90776@fledge.watson.org> References: <200802261010.m1QAAtgK023216@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/fs/fdescfs fdesc_vnops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 12:40:38 -0000 On Tue, 26 Feb 2008, Konstantin Belousov wrote: > kib 2008-02-26 10:10:55 UTC > > FreeBSD src repository > > Modified files: > sys/fs/fdescfs fdesc_vnops.c > Log: > Rename fdescfs vnode from "fdesc" to "fdescfs" to avoid name collision > of the vnode lock with the fdesc_mtx mutex. Having different kinds of > locks with the same name confuses witness. I was wondering about this also--introducing locks implicitly named the same as the vnode type will cause other related problems over time. At the very least, we should be doing some name munging, I think, so that the lock name becomes foo_vnode_mtx. I realize this is somewhat complicated by the fact that WITNESS stores a pointer to the name rather than the name itself. I ran into a related problem with Coda when unloading the Coda module -- because vnodes were left around, presumably in a deadfs state, on module unload, WITNESS was panicking when it bumped into one of the locks on those vnodes as it tried to compare string names to a string in the Coda module... Robert N M Watson Computer Laboratory University of Cambridge From owner-cvs-all@FreeBSD.ORG Tue Feb 26 12:43:36 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 91D531065671; Tue, 26 Feb 2008 12:43:36 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8477A13C45B; Tue, 26 Feb 2008 12:43:36 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QChark031315; Tue, 26 Feb 2008 12:43:36 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QChaZo031314; Tue, 26 Feb 2008 12:43:36 GMT (envelope-from tabthorpe) Message-Id: <200802261243.m1QChaZo031314@repoman.freebsd.org> From: Thomas Abthorpe Date: Tue, 26 Feb 2008 12:43:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 12:43:36 -0000 tabthorpe 2008-02-26 12:43:36 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: - Document coppermine -- multiple vulnerabilities. Reviewed by: miwi Revision Changes Path 1.1569 +33 -1 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Tue Feb 26 12:52:50 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 41B3B1065673; Tue, 26 Feb 2008 12:52:50 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4D16D13C458; Tue, 26 Feb 2008 12:52:50 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QCqoV7040807; Tue, 26 Feb 2008 12:52:50 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QCqoqg040806; Tue, 26 Feb 2008 12:52:50 GMT (envelope-from lth) Message-Id: <200802261252.m1QCqoqg040806@repoman.freebsd.org> From: Lars Thegler Date: Tue, 26 Feb 2008 12:52:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules ports MOVED ports/audio Makefile ports/audio/daaplib Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 12:52:50 -0000 lth 2008-02-26 12:52:50 UTC FreeBSD ports repository Modified files: . modules . MOVED audio Makefile Removed files: audio/daaplib Makefile distinfo pkg-descr pkg-plist Log: - Removed audio/daaplib (expired) 2007-11-04 audio/daaplib: Development stalled for years, outdated. Does not support newer versions of DAAP protocol. Revision Changes Path 1.19439 +0 -1 CVSROOT/modules 1.1542 +2 -1 ports/MOVED 1.929 +0 -1 ports/audio/Makefile 1.7 +0 -46 ports/audio/daaplib/Makefile (dead) 1.4 +0 -3 ports/audio/daaplib/distinfo (dead) 1.2 +0 -5 ports/audio/daaplib/pkg-descr (dead) 1.3 +0 -8 ports/audio/daaplib/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Tue Feb 26 12:57:22 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C2D951065676; Tue, 26 Feb 2008 12:57:22 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.freebsd.org (Postfix) with ESMTP id 8BEEE13C428; Tue, 26 Feb 2008 12:57:22 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id 740BC2098; Tue, 26 Feb 2008 13:57:11 +0100 (CET) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: -0.3/3.0 X-Spam-Checker-Version: SpamAssassin 3.2.4 (2008-01-01) on tim.des.no Received: from ds4.des.no (des.no [80.203.243.180]) by smtp.des.no (Postfix) with ESMTP id E76F82092; Tue, 26 Feb 2008 13:57:09 +0100 (CET) From: =?utf-8?Q?Dag-Erling_Sm=C3=B8rgrav?= To: Robert Watson References: <200802250855.m1P8t3w6052042@repoman.freebsd.org> <47C29A07.2070908@FreeBSD.org> <86d4qli8a1.fsf@ds4.des.no> <20080226123107.N90776@fledge.watson.org> Date: Tue, 26 Feb 2008 13:57:09 +0100 In-Reply-To: <20080226123107.N90776@fledge.watson.org> (Robert Watson's message of "Tue\, 26 Feb 2008 12\:33\:31 +0000 \(GMT\)") Message-ID: <86r6ezswnu.fsf@ds4.des.no> User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/23.0.60 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Cc: cvs-src@FreeBSD.org, Kris Kennaway , src-committers@FreeBSD.org, cvs-all@FreeBSD.org, "David E. O'Brien" Subject: Re: cvs commit: src/sys/fs/nullfs null_vfsops.c src/sys/fs/nwfs nwfs_vfsops.c src/sys/fs/smbfs smbfs_vfsops.c src/sys/ufs/ufs quota.h ufs_quota.c ufs_vfsops.c src/sys/kern vfs_default.c vfs_vnops.c vnode_if.src src/sys/sys mount.h vnode.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 12:57:23 -0000 Robert Watson writes: > Dag-Erling Sm=C3=B8rgrav writes: > > No, it changes neither the API nor the ABI. It replaces caddr_t > > (which is typedef'd to char *) with void *, and those two are > > compatible types. > I'm sorry, but I disagree. The case you failed to test involves a > function pointer typedef. Umm, OK, I didn't spot that. It's unfortunate that David didn't change our own file system code to match (or even build LINT, which would have shown him the problem), so that RELENG_6 current doesn't build. Still, I would argue for fixing the code rather than reverting the change. > Here's the test I had to add to Arla to detect the change with > autoconf; without this autoconf mess and changed prototypes in the > Arla nnpfs code, I can't build nnpfs on -CURRENT, and presumably now > also on our -STABLE branches: Arguably, Arla has been broken for more than two years and you only just woke up and noticed. If you had tried to build Arla on -CURRENT at any point since 2005/12/14, you would have noticed and presumably fixed it. DES --=20 Dag-Erling Sm=C3=B8rgrav - des@des.no From owner-cvs-all@FreeBSD.ORG Tue Feb 26 12:59:49 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F20941065675; Tue, 26 Feb 2008 12:59:48 +0000 (UTC) (envelope-from ganbold@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E43EC13C459; Tue, 26 Feb 2008 12:59:48 +0000 (UTC) (envelope-from ganbold@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QCxmJ8041040; Tue, 26 Feb 2008 12:59:48 GMT (envelope-from ganbold@repoman.freebsd.org) Received: (from ganbold@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QCxmUF041039; Tue, 26 Feb 2008 12:59:48 GMT (envelope-from ganbold) Message-Id: <200802261259.m1QCxmUF041039@repoman.freebsd.org> From: Ganbold Tsagaankhuu Date: Tue, 26 Feb 2008 12:59:48 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors contrib.committers.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 12:59:49 -0000 ganbold 2008-02-26 12:59:48 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/contributors contrib.committers.sgml Log: Add myself to Developers. Approved by: keramida(mentor) Revision Changes Path 1.220 +4 -0 doc/en_US.ISO8859-1/articles/contributors/contrib.committers.sgml From owner-cvs-all@FreeBSD.ORG Tue Feb 26 13:02:35 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3864F106566B; Tue, 26 Feb 2008 13:02:35 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2C30F13C46E; Tue, 26 Feb 2008 13:02:35 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QD2Z8n041181; Tue, 26 Feb 2008 13:02:35 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QD2Y8u041180; Tue, 26 Feb 2008 13:02:34 GMT (envelope-from tabthorpe) Message-Id: <200802261302.m1QD2Y8u041180@repoman.freebsd.org> From: Thomas Abthorpe Date: Tue, 26 Feb 2008 13:02:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/libcwd Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 13:02:35 -0000 tabthorpe 2008-02-26 13:02:33 UTC FreeBSD ports repository Modified files: devel/libcwd Makefile Log: - Fix configure script options so port will compile in build cluster. Submitted by: pointyhat via erwin and pav Revision Changes Path 1.24 +1 -1 ports/devel/libcwd/Makefile From owner-cvs-all@FreeBSD.ORG Tue Feb 26 13:08:19 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9814B1065673; Tue, 26 Feb 2008 13:08:19 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36]) by mx1.freebsd.org (Postfix) with ESMTP id A2E3513C455; Tue, 26 Feb 2008 13:08:18 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from kobe.laptop (vader.bytemobile-rio.ondsl.gr [83.235.57.37]) (authenticated bits=0) by igloo.linux.gr (8.14.1/8.14.1/Debian-9) with ESMTP id m1QCn50C017208; Tue, 26 Feb 2008 14:49:14 +0200 Received: by kobe.laptop (Postfix, from userid 1000) id 35C3F22802; Tue, 26 Feb 2008 14:49:00 +0200 (EET) Date: Tue, 26 Feb 2008 14:48:59 +0200 From: Giorgos Keramidas To: Peter Jeremy Message-ID: <20080226124859.GA3618@kobe.laptop> References: <200802251906.m1PJ6hwB005451@repoman.freebsd.org> <20080226094931.GT83599@server.vk2pj.dyndns.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20080226094931.GT83599@server.vk2pj.dyndns.org> X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-3.968, required 5, autolearn=not spam, ALL_TRUSTED -1.80, AWL 0.43, BAYES_00 -2.60) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr X-Spam-Status: No Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.bin/du du.1 du.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 13:08:19 -0000 On 2008-02-26 20:49, Peter Jeremy wrote: >On Mon, Feb 25, 2008 at 07:06:43PM +0000, Giorgos Keramidas wrote: >> Implement from scratch a -l option for du(1), to match the same option >> of the GNU utility. The default behavior of our original `du' is to >> count hardlinked files only once for each invocation of the utility. >> With the new -l option they count towards the final size every time >> they are found. > > The third possible option is to amortize the size of hardlinked files > across all their occurrences by adding size/nlinks each time they are > found. IMHO, this results in the least "surprises" in the result. Each command-line argument is traversed separately, so I'm a bit confused about what the amortization gains us. From owner-cvs-all@FreeBSD.ORG Tue Feb 26 13:21:19 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 33DAE1065672; Tue, 26 Feb 2008 13:21:19 +0000 (UTC) (envelope-from ganbold@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2AC8413C44B; Tue, 26 Feb 2008 13:21:19 +0000 (UTC) (envelope-from ganbold@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QDLJB3043050; Tue, 26 Feb 2008 13:21:19 GMT (envelope-from ganbold@repoman.freebsd.org) Received: (from ganbold@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QDLJAM043049; Tue, 26 Feb 2008 13:21:19 GMT (envelope-from ganbold) Message-Id: <200802261321.m1QDLJAM043049@repoman.freebsd.org> From: Ganbold Tsagaankhuu Date: Tue, 26 Feb 2008 13:21:19 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/share/pgpkeys ganbold.key pgpkeys.ent X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 13:21:19 -0000 ganbold 2008-02-26 13:21:19 UTC FreeBSD doc repository Modified files: share/pgpkeys pgpkeys.ent Added files: share/pgpkeys ganbold.key Log: Add my PGP key. Approved by: keramida(mentor) Revision Changes Path 1.1 +41 -0 doc/share/pgpkeys/ganbold.key (new) 1.160 +1 -0 doc/share/pgpkeys/pgpkeys.ent From owner-cvs-all@FreeBSD.ORG Tue Feb 26 13:29:05 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CD759106566B; Tue, 26 Feb 2008 13:29:05 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C778713C455; Tue, 26 Feb 2008 13:29:05 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QDT5MU043256; Tue, 26 Feb 2008 13:29:05 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QDT5mq043255; Tue, 26 Feb 2008 13:29:05 GMT (envelope-from rrs) Message-Id: <200802261329.m1QDT5mq043255@repoman.freebsd.org> From: Randall Stewart Date: Tue, 26 Feb 2008 13:29:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sys/netinet sctp_pcb.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 13:29:05 -0000 rrs 2008-02-26 13:29:05 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/netinet sctp_pcb.c Log: - Fix patching error ... opps. (missing ;) Revision Changes Path 1.62.2.5 +1 -1 src/sys/netinet/sctp_pcb.c From owner-cvs-all@FreeBSD.ORG Tue Feb 26 13:29:58 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CF56E1065670; Tue, 26 Feb 2008 13:29:58 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [209.31.154.42]) by mx1.freebsd.org (Postfix) with ESMTP id 886DB13C4E5; Tue, 26 Feb 2008 13:29:58 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id A893046B0D; Tue, 26 Feb 2008 08:29:57 -0500 (EST) Date: Tue, 26 Feb 2008 13:29:57 +0000 (GMT) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: =?utf-8?Q?Dag-Erling_Sm=C3=B8rgrav?= In-Reply-To: <86r6ezswnu.fsf@ds4.des.no> Message-ID: <20080226132155.W90776@fledge.watson.org> References: <200802250855.m1P8t3w6052042@repoman.freebsd.org> <47C29A07.2070908@FreeBSD.org> <86d4qli8a1.fsf@ds4.des.no> <20080226123107.N90776@fledge.watson.org> <86r6ezswnu.fsf@ds4.des.no> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="621616949-710383528-1204032597=:90776" Cc: cvs-src@FreeBSD.org, Kris Kennaway , src-committers@FreeBSD.org, cvs-all@FreeBSD.org, "David E. O'Brien" Subject: Re: cvs commit: src/sys/fs/nullfs null_vfsops.c src/sys/fs/nwfs nwfs_vfsops.c src/sys/fs/smbfs smbfs_vfsops.c src/sys/ufs/ufs quota.h ufs_quota.c ufs_vfsops.c src/sys/kern vfs_default.c vfs_vnops.c vnode_if.src src/sys/sys mount.h vnode.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 13:29:59 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --621616949-710383528-1204032597=:90776 Content-Type: TEXT/PLAIN; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: QUOTED-PRINTABLE On Tue, 26 Feb 2008, Dag-Erling Sm=F8rgrav wrote: > Robert Watson writes: >> Dag-Erling Sm=F8rgrav writes: >>> No, it changes neither the API nor the ABI. It replaces caddr_t (which= is=20 >>> typedef'd to char *) with void *, and those two are compatible types. >> I'm sorry, but I disagree. The case you failed to test involves a funct= ion=20 >> pointer typedef. > > Umm, OK, I didn't spot that. It's unfortunate that David didn't change o= ur=20 > own file system code to match (or even build LINT, which would have shown= =20 > him the problem), so that RELENG_6 current doesn't build. > > Still, I would argue for fixing the code rather than reverting the change= =2E > >> Here's the test I had to add to Arla to detect the change with autoconf;= =20 >> without this autoconf mess and changed prototypes in the Arla nnpfs code= , I=20 >> can't build nnpfs on -CURRENT, and presumably now also on our -STABLE=20 >> branches: > > Arguably, Arla has been broken for more than two years and you only just= =20 > woke up and noticed. If you had tried to build Arla on -CURRENT at any= =20 > point since 2005/12/14, you would have noticed and presumably fixed it. You're missing the point. This isn't about Arla being broken on 7.x and 8.= x=20 -- we knew that already, and hence my already having autoconf code to detec= t=20 and adapt to the difference in the 7.x and 8.x KPIs. What this is about is= =20 the fact that Arla *did* work on 6.x before this change, and now it's broke= n.=20 This is because the KPI has been broken, as our KPI definition is pretty=20 pragmatic (undocumented): third party kernel modules that implement the=20 quotactl vfsop may well no longer compile. I couldn't tell you which those= =20 are off-hand, but it wouldn't surprise me to hear that there are other thir= d=20 party kernel modules that declare quotactl implementations. I'm fine with us discussing how committed we are to VFS being a KPI we don'= t=20 break in -STABLE branches, but I'm not fine with the claim that the KPI was= n't=20 broken by this change. If pushed on the breaking the KPI point, I would co= me=20 down on the side that says 6.x is a pretty mature branch at this point, and= =20 that breaking the KPI for purely cosmetic reasons (i.e., caddr_t -> void *)= =20 doesn't cut it. I would be more swayed by an argument involving a necessar= y=20 KPI change to address a critical bugfix, such as a race condition that resu= lts=20 from a poor existing interface. Robert N M Watson Computer Laboratory University of Cambridge --621616949-710383528-1204032597=:90776-- From owner-cvs-all@FreeBSD.ORG Tue Feb 26 13:32:42 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 37B04106566C; Tue, 26 Feb 2008 13:32:42 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 321C013C46B; Tue, 26 Feb 2008 13:32:42 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QDWgGF043411; Tue, 26 Feb 2008 13:32:42 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QDWgpC043410; Tue, 26 Feb 2008 13:32:42 GMT (envelope-from miwi) Message-Id: <200802261332.m1QDWgpC043410@repoman.freebsd.org> From: Martin Wilke Date: Tue, 26 Feb 2008 13:32:42 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11-wm/qlwm Makefile distinfo ports/x11-wm/qlwm/files qlwm qlwm.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 13:32:42 -0000 miwi 2008-02-26 13:32:42 UTC FreeBSD ports repository Modified files: x11-wm/qlwm Makefile distinfo Added files: x11-wm/qlwm/files qlwm.in Removed files: x11-wm/qlwm/files qlwm Log: - Update to version 4.2 PR: 121092 Submitted by: Ports Fury Revision Changes Path 1.15 +36 -50 ports/x11-wm/qlwm/Makefile 1.8 +3 -3 ports/x11-wm/qlwm/distinfo 1.3 +0 -10 ports/x11-wm/qlwm/files/qlwm (dead) 1.1 +10 -0 ports/x11-wm/qlwm/files/qlwm.in (new) From owner-cvs-all@FreeBSD.ORG Tue Feb 26 13:34:00 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 795C91065679; Tue, 26 Feb 2008 13:34:00 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7431913C4EA; Tue, 26 Feb 2008 13:34:00 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QDY0HJ043528; Tue, 26 Feb 2008 13:34:00 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QDY0MM043526; Tue, 26 Feb 2008 13:34:00 GMT (envelope-from miwi) Message-Id: <200802261334.m1QDY0MM043526@repoman.freebsd.org> From: Martin Wilke Date: Tue, 26 Feb 2008 13:34:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/vamos Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 13:34:00 -0000 miwi 2008-02-26 13:34:00 UTC FreeBSD ports repository Modified files: games/vamos Makefile distinfo pkg-plist Log: - Update to 0.6.0 PR: 121087 Submitted by: Ports Fury Revision Changes Path 1.47 +2 -3 ports/games/vamos/Makefile 1.22 +3 -3 ports/games/vamos/distinfo 1.19 +0 -1 ports/games/vamos/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Feb 26 13:35:04 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AEF161065672; Tue, 26 Feb 2008 13:35:04 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A9F0913C44B; Tue, 26 Feb 2008 13:35:04 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QDZ4Kc043625; Tue, 26 Feb 2008 13:35:04 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QDZ4qS043624; Tue, 26 Feb 2008 13:35:04 GMT (envelope-from miwi) Message-Id: <200802261335.m1QDZ4qS043624@repoman.freebsd.org> From: Martin Wilke Date: Tue, 26 Feb 2008 13:35:04 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/crossfire-server Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 13:35:04 -0000 miwi 2008-02-26 13:35:04 UTC FreeBSD ports repository Modified files: games/crossfire-server Makefile distinfo pkg-plist Log: - Update to 1.11.0 PR: 121086 Submitted by: Ports Fury Revision Changes Path 1.60 +12 -12 ports/games/crossfire-server/Makefile 1.17 +6 -6 ports/games/crossfire-server/distinfo 1.22 +108 -2 ports/games/crossfire-server/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Feb 26 13:43:16 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 64108106567B; Tue, 26 Feb 2008 13:43:16 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.freebsd.org (Postfix) with ESMTP id 393FE13C457; Tue, 26 Feb 2008 13:43:16 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id E295B2093; Tue, 26 Feb 2008 14:43:12 +0100 (CET) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: -0.3/3.0 X-Spam-Checker-Version: SpamAssassin 3.2.4 (2008-01-01) on tim.des.no Received: from ds4.des.no (des.no [80.203.243.180]) by smtp.des.no (Postfix) with ESMTP id 435FD2088; Tue, 26 Feb 2008 14:43:11 +0100 (CET) From: =?utf-8?Q?Dag-Erling_Sm=C3=B8rgrav?= To: Robert Watson References: <200802250855.m1P8t3w6052042@repoman.freebsd.org> <47C29A07.2070908@FreeBSD.org> <86d4qli8a1.fsf@ds4.des.no> <20080226123107.N90776@fledge.watson.org> <86r6ezswnu.fsf@ds4.des.no> <20080226132155.W90776@fledge.watson.org> Date: Tue, 26 Feb 2008 14:43:10 +0100 In-Reply-To: <20080226132155.W90776@fledge.watson.org> (Robert Watson's message of "Tue\, 26 Feb 2008 13\:29\:57 +0000 \(GMT\)") Message-ID: <86bq63suj5.fsf@ds4.des.no> User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/23.0.60 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Cc: cvs-src@FreeBSD.org, Kris Kennaway , src-committers@FreeBSD.org, cvs-all@FreeBSD.org, "David E. O'Brien" Subject: Re: cvs commit: src/sys/fs/nullfs null_vfsops.c src/sys/fs/nwfs nwfs_vfsops.c src/sys/fs/smbfs smbfs_vfsops.c src/sys/ufs/ufs quota.h ufs_quota.c ufs_vfsops.c src/sys/kern vfs_default.c vfs_vnops.c vnode_if.src src/sys/sys mount.h vnode.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 13:43:16 -0000 Robert Watson writes: > I'm fine with us discussing how committed we are to VFS being a KPI we > don't break in -STABLE branches, but I'm not fine with the claim that > the KPI wasn't broken by this change. If pushed on the breaking the > KPI point, I would come down on the side that says 6.x is a pretty > mature branch at this point, and that breaking the KPI for purely > cosmetic reasons (i.e., caddr_t -> void *) doesn't cut it. I would be > more swayed by an argument involving a necessary KPI change to address > a critical bugfix, such as a race condition that results from a poor > existing interface. As far as I can tell, David MFCed that patch to avoid merge conflicts with some other patches, but you'll have to ask him for the details. DES --=20 Dag-Erling Sm=C3=B8rgrav - des@des.no From owner-cvs-all@FreeBSD.ORG Tue Feb 26 13:44:31 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AED22106566C; Tue, 26 Feb 2008 13:44:31 +0000 (UTC) (envelope-from dryice@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AAFC113C467; Tue, 26 Feb 2008 13:44:31 +0000 (UTC) (envelope-from dryice@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QDiV7Q043973; Tue, 26 Feb 2008 13:44:31 GMT (envelope-from dryice@repoman.freebsd.org) Received: (from dryice@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QDiVg4043972; Tue, 26 Feb 2008 13:44:31 GMT (envelope-from dryice) Message-Id: <200802261344.m1QDiVg4043972@repoman.freebsd.org> From: Dryice Dong Liu Date: Tue, 26 Feb 2008 13:44:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/roundup Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 13:44:31 -0000 dryice 2008-02-26 13:44:31 UTC FreeBSD ports repository Modified files: www/roundup Makefile distinfo Log: - update to 1.4.2 - utilize MASTER_SITES_CHEESESOPE Revision Changes Path 1.26 +3 -3 ports/www/roundup/Makefile 1.20 +3 -3 ports/www/roundup/distinfo From owner-cvs-all@FreeBSD.ORG Tue Feb 26 13:48:24 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 63A2A106567D; Tue, 26 Feb 2008 13:48:24 +0000 (UTC) (envelope-from ganbold@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5F79313C4F2; Tue, 26 Feb 2008 13:48:24 +0000 (UTC) (envelope-from ganbold@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QDmOUu044119; Tue, 26 Feb 2008 13:48:24 GMT (envelope-from ganbold@repoman.freebsd.org) Received: (from ganbold@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QDmOiA044118; Tue, 26 Feb 2008 13:48:24 GMT (envelope-from ganbold) Message-Id: <200802261348.m1QDmOiA044118@repoman.freebsd.org> From: Ganbold Tsagaankhuu Date: Tue, 26 Feb 2008 13:48:24 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/share/pgpkeys pgpkeys-developers.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 13:48:24 -0000 ganbold 2008-02-26 13:48:24 UTC FreeBSD doc repository Modified files: share/pgpkeys pgpkeys-developers.sgml Log: Add my PGP key entry to developers' pgp key file. Approved by: keramida(mentor) Revision Changes Path 1.64 +5 -0 doc/share/pgpkeys/pgpkeys-developers.sgml From owner-cvs-all@FreeBSD.ORG Tue Feb 26 13:52:47 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D789F1065672; Tue, 26 Feb 2008 13:52:47 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D616313C447; Tue, 26 Feb 2008 13:52:47 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QDqlB7044288; Tue, 26 Feb 2008 13:52:47 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QDqlxk044287; Tue, 26 Feb 2008 13:52:47 GMT (envelope-from ehaupt) Message-Id: <200802261352.m1QDqlxk044287@repoman.freebsd.org> From: Emanuel Haupt Date: Tue, 26 Feb 2008 13:52:47 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/misc/talkfilters Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 13:52:48 -0000 ehaupt 2008-02-26 13:52:47 UTC FreeBSD ports repository Modified files: misc/talkfilters Makefile distinfo Log: Update to 2.3.8 Revision Changes Path 1.22 +5 -1 ports/misc/talkfilters/Makefile 1.15 +3 -3 ports/misc/talkfilters/distinfo From owner-cvs-all@FreeBSD.ORG Tue Feb 26 14:35:01 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DB91B106566B; Tue, 26 Feb 2008 14:35:01 +0000 (UTC) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B992B13C45A; Tue, 26 Feb 2008 14:35:01 +0000 (UTC) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QEZ1NI047053; Tue, 26 Feb 2008 14:35:01 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QEZ1Al047052; Tue, 26 Feb 2008 14:35:01 GMT (envelope-from kensmith) Message-Id: <200802261435.m1QEZ1Al047052@repoman.freebsd.org> From: Ken Smith Date: Tue, 26 Feb 2008 14:35:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/pkg_install/add main.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 14:35:02 -0000 kensmith 2008-02-26 14:35:01 UTC FreeBSD src repository Modified files: usr.sbin/pkg_install/add main.c Log: Sync list of directories to look for packages in to current releases available. MFC after: 3 days Revision Changes Path 1.76 +3 -1 src/usr.sbin/pkg_install/add/main.c From owner-cvs-all@FreeBSD.ORG Tue Feb 26 14:39:21 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3C23F106566C; Tue, 26 Feb 2008 14:39:21 +0000 (UTC) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1A01013C45D; Tue, 26 Feb 2008 14:39:21 +0000 (UTC) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QEdKjB047172; Tue, 26 Feb 2008 14:39:20 GMT (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QEdKj3047171; Tue, 26 Feb 2008 14:39:20 GMT (envelope-from mlaier) Message-Id: <200802261439.m1QEdKj3047171@repoman.freebsd.org> From: Max Laier Date: Tue, 26 Feb 2008 14:39:20 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/share/sgml news.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 14:39:21 -0000 mlaier 2008-02-26 14:39:20 UTC FreeBSD doc repository (src committer) Modified files: share/sgml news.xml Log: Add a newsflash entry for pfSense 1.2 Revision Changes Path 1.148 +5 -1 www/share/sgml/news.xml From owner-cvs-all@FreeBSD.ORG Tue Feb 26 14:48:19 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E1A691065671; Tue, 26 Feb 2008 14:48:18 +0000 (UTC) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A096513C465; Tue, 26 Feb 2008 14:48:18 +0000 (UTC) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QEmIf3047553; Tue, 26 Feb 2008 14:48:18 GMT (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QEmIk1047552; Tue, 26 Feb 2008 14:48:18 GMT (envelope-from keramida) Message-Id: <200802261448.m1QEmIk1047552@repoman.freebsd.org> From: Giorgos Keramidas Date: Tue, 26 Feb 2008 14:48:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/astro/xearth/files freebsd.committers.markers X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 14:48:20 -0000 keramida 2008-02-26 14:48:18 UTC FreeBSD ports repository (doc committer) Modified files: astro/xearth/files freebsd.committers.markers Log: Slightly more accurate location marker for my hometown. Revision Changes Path 1.384 +2 -2 ports/astro/xearth/files/freebsd.committers.markers From owner-cvs-all@FreeBSD.ORG Tue Feb 26 15:06:02 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CFDF01065670; Tue, 26 Feb 2008 15:06:02 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B0F2B13C457; Tue, 26 Feb 2008 15:06:02 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QF628G049373; Tue, 26 Feb 2008 15:06:02 GMT (envelope-from adrian@repoman.freebsd.org) Received: (from adrian@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QF626N049372; Tue, 26 Feb 2008 15:06:02 GMT (envelope-from adrian) Message-Id: <200802261506.m1QF626N049372@repoman.freebsd.org> From: Adrian Chadd Date: Tue, 26 Feb 2008 15:06:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/astro/xearth/files freebsd.committers.markers X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 15:06:03 -0000 adrian 2008-02-26 15:06:02 UTC FreeBSD ports repository (src committer) Modified files: astro/xearth/files freebsd.committers.markers Log: This is where I spend most of my time at the moment - University of Western Australia, Perth, Western Australia. (The map seems so sparse without any committers on the West coast..) Revision Changes Path 1.385 +2 -1 ports/astro/xearth/files/freebsd.committers.markers From owner-cvs-all@FreeBSD.ORG Tue Feb 26 15:18:59 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D78D21065675; Tue, 26 Feb 2008 15:18:59 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B9F2A13C4FF; Tue, 26 Feb 2008 15:18:59 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QFIxUJ049764; Tue, 26 Feb 2008 15:18:59 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QFIxUN049763; Tue, 26 Feb 2008 15:18:59 GMT (envelope-from dinoex) Message-Id: <200802261518.m1QFIxUN049763@repoman.freebsd.org> From: Dirk Meyer Date: Tue, 26 Feb 2008 15:18:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/meta1 Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 15:19:00 -0000 dinoex 2008-02-26 15:18:59 UTC FreeBSD ports repository Modified files: mail/meta1 Makefile distinfo pkg-plist Log: - update to 1.0.PreAlpha25.0 Revision Changes Path 1.14 +2 -2 ports/mail/meta1/Makefile 1.9 +3 -3 ports/mail/meta1/distinfo 1.2 +17 -7 ports/mail/meta1/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Feb 26 15:22:15 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 96D12106566C; Tue, 26 Feb 2008 15:22:15 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7958F13C4EE; Tue, 26 Feb 2008 15:22:15 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QFMFl7049993; Tue, 26 Feb 2008 15:22:15 GMT (envelope-from gahr@repoman.freebsd.org) Received: (from gahr@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QFMF5a049992; Tue, 26 Feb 2008 15:22:15 GMT (envelope-from gahr) Message-Id: <200802261522.m1QFMF5a049992@repoman.freebsd.org> From: Pietro Cerutti Date: Tue, 26 Feb 2008 15:22:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/astro/xearth/files freebsd.committers.markers X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 15:22:15 -0000 gahr 2008-02-26 15:22:15 UTC FreeBSD ports repository Modified files: astro/xearth/files freebsd.committers.markers Log: - Add my location Approved by: miwi (mentor) Revision Changes Path 1.386 +2 -1 ports/astro/xearth/files/freebsd.committers.markers From owner-cvs-all@FreeBSD.ORG Tue Feb 26 15:31:30 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C1EE106566B; Tue, 26 Feb 2008 15:31:30 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6E04513C4E7; Tue, 26 Feb 2008 15:31:30 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QFVUUU050279; Tue, 26 Feb 2008 15:31:30 GMT (envelope-from gahr@repoman.freebsd.org) Received: (from gahr@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QFVUEB050278; Tue, 26 Feb 2008 15:31:30 GMT (envelope-from gahr) Message-Id: <200802261531.m1QFVUEB050278@repoman.freebsd.org> From: Pietro Cerutti Date: Tue, 26 Feb 2008 15:31:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 15:31:30 -0000 gahr 2008-02-26 15:31:30 UTC FreeBSD src repository (ports committer) Modified files: usr.bin/calendar/calendars calendar.freebsd Log: - Add my birthday Approved by: miwi (mentor) Revision Changes Path 1.225 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-all@FreeBSD.ORG Tue Feb 26 15:38:47 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 285A5106566C; Tue, 26 Feb 2008 15:38:47 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0AF2113C461; Tue, 26 Feb 2008 15:38:47 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QFckns050541; Tue, 26 Feb 2008 15:38:46 GMT (envelope-from gahr@repoman.freebsd.org) Received: (from gahr@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QFckw2050540; Tue, 26 Feb 2008 15:38:46 GMT (envelope-from gahr) Message-Id: <200802261538.m1QFckw2050540@repoman.freebsd.org> From: Pietro Cerutti Date: Tue, 26 Feb 2008 15:38:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/misc committers-ports.dot X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 15:38:47 -0000 gahr 2008-02-26 15:38:46 UTC FreeBSD src repository (ports committer) Modified files: share/misc committers-ports.dot Log: - Add myself to ports committers and to miwi's mentee list Approved by: miwi (mentor) Revision Changes Path 1.66 +2 -0 src/share/misc/committers-ports.dot From owner-cvs-all@FreeBSD.ORG Tue Feb 26 16:08:31 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D2C061065672; Tue, 26 Feb 2008 16:08:31 +0000 (UTC) (envelope-from tdb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B887613C458; Tue, 26 Feb 2008 16:08:31 +0000 (UTC) (envelope-from tdb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QG8V8p052751; Tue, 26 Feb 2008 16:08:31 GMT (envelope-from tdb@repoman.freebsd.org) Received: (from tdb@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QG8VKG052750; Tue, 26 Feb 2008 16:08:31 GMT (envelope-from tdb) Message-Id: <200802261608.m1QG8VKG052750@repoman.freebsd.org> From: Tim Bishop Date: Tue, 26 Feb 2008 16:08:30 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/astro/xearth/files freebsd.ftp.markers X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 16:08:32 -0000 tdb 2008-02-26 16:08:30 UTC FreeBSD ports repository Modified files: astro/xearth/files freebsd.ftp.markers Log: Make the position for ftp2.uk more accurate. Revision Changes Path 1.34 +2 -2 ports/astro/xearth/files/freebsd.ftp.markers From owner-cvs-all@FreeBSD.ORG Tue Feb 26 16:46:12 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 046B51065681; Tue, 26 Feb 2008 16:46:12 +0000 (UTC) (envelope-from obrien@NUXI.org) Received: from dragon.nuxi.org (trang.nuxi.org [74.95.12.85]) by mx1.freebsd.org (Postfix) with ESMTP id E16EE13C458; Tue, 26 Feb 2008 16:46:11 +0000 (UTC) (envelope-from obrien@NUXI.org) Received: from dragon.nuxi.org (obrien@localhost [127.0.0.1]) by dragon.nuxi.org (8.14.1/8.14.1) with ESMTP id m1QGk9iB011771; Tue, 26 Feb 2008 08:46:09 -0800 (PST) (envelope-from obrien@dragon.nuxi.org) Received: (from obrien@localhost) by dragon.nuxi.org (8.14.2/8.14.1/Submit) id m1QGk85U011770; Tue, 26 Feb 2008 08:46:08 -0800 (PST) (envelope-from obrien) Date: Tue, 26 Feb 2008 08:46:08 -0800 From: "David O'Brien" To: Robert Watson Message-ID: <20080226164608.GF23211@dragon.NUXI.org> References: <200802250855.m1P8t3w6052042@repoman.freebsd.org> <47C29A07.2070908@FreeBSD.org> <86d4qli8a1.fsf@ds4.des.no> <20080226123107.N90776@fledge.watson.org> <86r6ezswnu.fsf@ds4.des.no> <20080226132155.W90776@fledge.watson.org> MIME-Version: 1.0 Content-Type: text/plain; charset=unknown-8bit Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20080226132155.W90776@fledge.watson.org> X-Operating-System: FreeBSD 8.0-CURRENT User-Agent: Mutt/1.5.16 (2007-06-09) Cc: Dag-Erling =?unknown-8bit?B?U23DuHJncmF2?= , Kris Kennaway , src-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/fs/nullfs null_vfsops.c src/sys/fs/nwfs nwfs_vfsops.c src/sys/fs/smbfs smbfs_vfsops.c src/sys/ufs/ufs quota.h ufs_quota.c ufs_vfsops.c src/sys/kern vfs_default.c vfs_vnops.c vnode_if.src src/sys/sys mount.h vnode.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 16:46:12 -0000 On Tue, Feb 26, 2008 at 01:29:57PM +0000, Robert Watson wrote: > On Tue, 26 Feb 2008, Dag-Erling Smørgrav wrote: >> Umm, OK, I didn't spot that. It's unfortunate that David didn't change >> our own file system code to match (or even build LINT, which would have >> shown him the problem), so that RELENG_6 current doesn't build. Uggg!! Very sorry about that - I was using GENERIC so I could keep an up to date bootable kernel between the commits. I wish LINT was a usable kernel... -- -- David (obrien@FreeBSD.org) From owner-cvs-all@FreeBSD.ORG Tue Feb 26 17:05:32 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 288A21065670; Tue, 26 Feb 2008 17:05:32 +0000 (UTC) (envelope-from kaiw@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 13D4013C457; Tue, 26 Feb 2008 17:05:32 +0000 (UTC) (envelope-from kaiw@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QH5V5Q064696; Tue, 26 Feb 2008 17:05:31 GMT (envelope-from kaiw@repoman.freebsd.org) Received: (from kaiw@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QH5VcV064695; Tue, 26 Feb 2008 17:05:31 GMT (envelope-from kaiw) Message-Id: <200802261705.m1QH5VcV064695@repoman.freebsd.org> From: Kai Wang Date: Tue, 26 Feb 2008 17:05:31 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/books/porters-handbook book.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 17:05:32 -0000 kaiw 2008-02-26 17:05:31 UTC FreeBSD doc repository (src committer) Modified files: en_US.ISO8859-1/books/porters-handbook book.sgml Log: Document __FreeBSD_version 800022 Reviewed by: ru Approved by: jkoshy (mentor) Revision Changes Path 1.904 +5 -0 doc/en_US.ISO8859-1/books/porters-handbook/book.sgml From owner-cvs-all@FreeBSD.ORG Tue Feb 26 17:07:04 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4ACE3106566C; Tue, 26 Feb 2008 17:07:04 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4CF5B13C442; Tue, 26 Feb 2008 17:07:04 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QH749M064811; Tue, 26 Feb 2008 17:07:04 GMT (envelope-from gahr@repoman.freebsd.org) Received: (from gahr@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QH746q064810; Tue, 26 Feb 2008 17:07:04 GMT (envelope-from gahr) Message-Id: <200802261707.m1QH746q064810@repoman.freebsd.org> From: Pietro Cerutti Date: Tue, 26 Feb 2008 17:07:04 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11-toolkits/movingmotif Makefile distinfo ports/x11-toolkits/movingmotif/files patch-WHistbar.c patch-demo::Makefile.in patch-src_Whistspectr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 17:07:04 -0000 gahr 2008-02-26 17:07:04 UTC FreeBSD ports repository Modified files: x11-toolkits/movingmotif Makefile distinfo x11-toolkits/movingmotif/files patch-WHistbar.c patch-demo::Makefile.in Added files: x11-toolkits/movingmotif/files patch-src_Whistspectr.c Log: - Update to 2.3.0 - Fix build on 64 bits platforms - Adopt maintainship Approved by: miwi (mentor) Revision Changes Path 1.14 +3 -6 ports/x11-toolkits/movingmotif/Makefile 1.5 +3 -3 ports/x11-toolkits/movingmotif/distinfo 1.2 +20 -10 ports/x11-toolkits/movingmotif/files/patch-WHistbar.c 1.2 +37 -4 ports/x11-toolkits/movingmotif/files/patch-demo::Makefile.in 1.1 +28 -0 ports/x11-toolkits/movingmotif/files/patch-src_Whistspectr.c (new) From owner-cvs-all@FreeBSD.ORG Tue Feb 26 17:11:07 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B6551065670; Tue, 26 Feb 2008 17:11:07 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 27B4213C428; Tue, 26 Feb 2008 17:11:07 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QHB7Gq064991; Tue, 26 Feb 2008 17:11:07 GMT (envelope-from philip@repoman.freebsd.org) Received: (from philip@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QHB7TM064990; Tue, 26 Feb 2008 17:11:07 GMT (envelope-from philip) Message-Id: <200802261711.m1QHB7TM064990@repoman.freebsd.org> From: Philip Paeps Date: Tue, 26 Feb 2008 17:11:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT access X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 17:11:07 -0000 philip 2008-02-26 17:11:06 UTC FreeBSD src repository Modified files: . access Log: Take jdp's commit bit into safe-keeping, per his request. Approved by: core (implicit) Revision Changes Path 1.859 +0 -1 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Tue Feb 26 17:16:49 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 30B651065675; Tue, 26 Feb 2008 17:16:49 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1DC6C13C465; Tue, 26 Feb 2008 17:16:49 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QHGmo5065161; Tue, 26 Feb 2008 17:16:48 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QHGmnX065154; Tue, 26 Feb 2008 17:16:48 GMT (envelope-from alc) Message-Id: <200802261716.m1QHGmnX065154@repoman.freebsd.org> From: Alan Cox Date: Tue, 26 Feb 2008 17:16:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/vm vm_object.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 17:16:49 -0000 alc 2008-02-26 17:16:48 UTC FreeBSD src repository Modified files: sys/vm vm_object.c Log: Correct a long-standing error in vm_object_page_remove(). Specifically, pmap_remove_all() must not be called on fictitious pages. To date, fictitious pages have been allocated from zeroed memory, effectively hiding this problem because the fictitious pages appear to have an empty pv list. Submitted by: Kostik Belousov Rewrite the comments describing vm_object_page_remove() to better describe what it does. Add an assertion. Reviewed by: Kostik Belousov MFC after: 1 week Revision Changes Path 1.392 +25 -6 src/sys/vm/vm_object.c From owner-cvs-all@FreeBSD.ORG Tue Feb 26 17:23:47 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 92D90106566B; Tue, 26 Feb 2008 17:23:47 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8022213C458; Tue, 26 Feb 2008 17:23:47 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QHNl9U065427; Tue, 26 Feb 2008 17:23:47 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QHNleZ065426; Tue, 26 Feb 2008 17:23:47 GMT (envelope-from ahze) Message-Id: <200802261723.m1QHNleZ065426@repoman.freebsd.org> From: Michael Johnson Date: Tue, 26 Feb 2008 17:23:47 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11-themes/nimbus Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 17:23:47 -0000 ahze 2008-02-26 17:23:47 UTC FreeBSD ports repository Modified files: x11-themes/nimbus Makefile distinfo Log: Update to 0.0.11 Revision Changes Path 1.9 +1 -1 ports/x11-themes/nimbus/Makefile 1.6 +3 -3 ports/x11-themes/nimbus/distinfo From owner-cvs-all@FreeBSD.ORG Tue Feb 26 18:12:33 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 49E261065672; Tue, 26 Feb 2008 18:12:33 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1EEDD13C43E; Tue, 26 Feb 2008 18:12:33 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QICWig068206; Tue, 26 Feb 2008 18:12:33 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QICWX6068205; Tue, 26 Feb 2008 18:12:32 GMT (envelope-from pav) Message-Id: <200802261812.m1QICWX6068205@repoman.freebsd.org> From: Pav Lucistnik Date: Tue, 26 Feb 2008 18:12:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb ubsa.c usbdevs X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 18:12:33 -0000 pav 2008-02-26 18:12:32 UTC FreeBSD src repository (doc,ports committer) Modified files: sys/dev/usb ubsa.c usbdevs Log: - Add support for Axesstel MV100H, as used on CDMA network operated by O2 CZ Revision Changes Path 1.33 +2 -0 src/sys/dev/usb/ubsa.c 1.339 +4 -0 src/sys/dev/usb/usbdevs From owner-cvs-all@FreeBSD.ORG Tue Feb 26 18:19:40 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 475BD106566B; Tue, 26 Feb 2008 18:19:40 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1B79113C447; Tue, 26 Feb 2008 18:19:40 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QIJdrx068506; Tue, 26 Feb 2008 18:19:39 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QIJdII068505; Tue, 26 Feb 2008 18:19:39 GMT (envelope-from remko) Message-Id: <200802261819.m1QIJdII068505@repoman.freebsd.org> From: Remko Lodder Date: Tue, 26 Feb 2008 18:19:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb usbdevs uscanner.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 18:19:40 -0000 remko 2008-02-26 18:19:39 UTC FreeBSD src repository Modified files: sys/dev/usb usbdevs uscanner.c Log: Add support for the EPSON CX5400 scanner PR: usb/120980 Submitted by: Christophe Etcheverry MFC after: 3 days Approved by: imp (mentor, implicit for trivial changes) Revision Changes Path 1.340 +1 -0 src/sys/dev/usb/usbdevs 1.90 +1 -0 src/sys/dev/usb/uscanner.c From owner-cvs-all@FreeBSD.ORG Tue Feb 26 18:19:50 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1BA371065679; Tue, 26 Feb 2008 18:19:50 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 058AA13C465; Tue, 26 Feb 2008 18:19:50 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QIJn0P068649; Tue, 26 Feb 2008 18:19:49 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QIJnTO068648; Tue, 26 Feb 2008 18:19:49 GMT (envelope-from obrien) Message-Id: <200802261819.m1QIJnTO068648@repoman.freebsd.org> From: "David E. O'Brien" Date: Tue, 26 Feb 2008 18:19:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/fs/nullfs null_vfsops.c src/sys/fs/nwfs nwfs_vfsops.c src/sys/fs/smbfs smbfs_vfsops.c src/sys/kern vfs_default.c vfs_vnops.c src/sys/sys mount.h vnode.h src/sys/ufs/ufs quota.h ufs_quota.c ufs_vfsops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 18:19:50 -0000 obrien 2008-02-26 18:19:49 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/fs/nullfs null_vfsops.c sys/fs/nwfs nwfs_vfsops.c sys/fs/smbfs smbfs_vfsops.c sys/kern vfs_default.c vfs_vnops.c sys/sys mount.h vnode.h sys/ufs/ufs quota.h ufs_quota.c ufs_vfsops.c Log: Back out MFC of "eradicate caddr_t". Turn's out Kris' suspisions were right - from a suttle code compatability point of view. Robert Watson found that ARLA code had something like this: typedef int (*foo_t)(caddr_t); ... foo_t fred; The compile gets all snarky when it finds int fred(void *) { .. }. Revision Changes Path 1.72.2.7 +1 -1 src/sys/fs/nullfs/null_vfsops.c 1.40.2.5 +2 -2 src/sys/fs/nwfs/nwfs_vfsops.c 1.34.2.4 +2 -2 src/sys/fs/smbfs/smbfs_vfsops.c 1.127.2.6 +1 -1 src/sys/kern/vfs_default.c 1.233.2.9 +4 -4 src/sys/kern/vfs_vnops.c 1.197.2.12 +1 -1 src/sys/sys/mount.h 1.304.2.11 +2 -2 src/sys/sys/vnode.h 1.27.2.4 +4 -4 src/sys/ufs/ufs/quota.h 1.74.2.9 +10 -10 src/sys/ufs/ufs/ufs_quota.c 1.45.2.5 +1 -1 src/sys/ufs/ufs/ufs_vfsops.c From owner-cvs-all@FreeBSD.ORG Tue Feb 26 18:25:53 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 335FF1065673; Tue, 26 Feb 2008 18:25:53 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [209.31.154.42]) by mx1.freebsd.org (Postfix) with ESMTP id 0049F13C4D1; Tue, 26 Feb 2008 18:25:52 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id 1C46746B08; Tue, 26 Feb 2008 13:25:52 -0500 (EST) Date: Tue, 26 Feb 2008 18:25:51 +0000 (GMT) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: "David E. O'Brien" In-Reply-To: <200802261819.m1QIJnTO068648@repoman.freebsd.org> Message-ID: <20080226182149.D19847@fledge.watson.org> References: <200802261819.m1QIJnTO068648@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/fs/nullfs null_vfsops.c src/sys/fs/nwfs nwfs_vfsops.c src/sys/fs/smbfs smbfs_vfsops.c src/sys/kern vfs_default.c vfs_vnops.c src/sys/sys mount.h vnode.h src/sys/ufs/ufs quota.h ufs_quota.c ufs_vfsops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 18:25:53 -0000 On Tue, 26 Feb 2008, David E. O'Brien wrote: > Modified files: (Branch: RELENG_6) > sys/fs/nullfs null_vfsops.c > sys/fs/nwfs nwfs_vfsops.c > sys/fs/smbfs smbfs_vfsops.c > sys/kern vfs_default.c vfs_vnops.c > sys/sys mount.h vnode.h > sys/ufs/ufs quota.h ufs_quota.c ufs_vfsops.c > Log: > Back out MFC of "eradicate caddr_t". > Turn's out Kris' suspisions were right - from a suttle code compatability > point of view. Robert Watson found that ARLA code had something like this: > typedef int (*foo_t)(caddr_t); ... foo_t fred; > The compile gets all snarky when it finds int fred(void *) { .. }. To be specific, it's about code on the order of the following -- in the include file: vfs_quotactl_t nnpfs_quotactl; In the .c file here nnpfs_quotactl is implemented: int nnpfs_quotactl(struct mount *mp, int cmd, uid_t uid, caddr_t arg, d_thread_t *p) { ... } In another .c file where nnpfs_quotactl is used: .vfs_quotactl = nnpfs_quotactl, The compile keels over when it discovers that nnpfs_quotactl doesn't match the implementation because it doesn't match the typedef. So it's actually our typedef, not Arla's typedef. In any case, thanks for backing this out -- while I like the change in principle (and am glad it's in newer releases), this was a case of compatibility problems outweighing benefits. Robert N M Watson Computer Laboratory University of Cambridge From owner-cvs-all@FreeBSD.ORG Tue Feb 26 18:35:40 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C69B106566C; Tue, 26 Feb 2008 18:35:40 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F3D4A13C442; Tue, 26 Feb 2008 18:35:39 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QIZd9v069211; Tue, 26 Feb 2008 18:35:39 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QIZd70069210; Tue, 26 Feb 2008 18:35:39 GMT (envelope-from ahze) Message-Id: <200802261835.m1QIZd70069210@repoman.freebsd.org> From: Michael Johnson Date: Tue, 26 Feb 2008 18:35:39 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/evince Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 18:35:40 -0000 ahze 2008-02-26 18:35:39 UTC FreeBSD ports repository Modified files: graphics/evince Makefile Log: Chase djvulibre Submitted by: Anatoly Borodin Revision Changes Path 1.33 +2 -1 ports/graphics/evince/Makefile From owner-cvs-all@FreeBSD.ORG Tue Feb 26 18:44:33 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 225471065673; Tue, 26 Feb 2008 18:44:33 +0000 (UTC) (envelope-from obrien@NUXI.org) Received: from dragon.nuxi.org (trang.nuxi.org [74.95.12.85]) by mx1.freebsd.org (Postfix) with ESMTP id EC57913C44B; Tue, 26 Feb 2008 18:44:32 +0000 (UTC) (envelope-from obrien@NUXI.org) Received: from dragon.nuxi.org (obrien@localhost [127.0.0.1]) by dragon.nuxi.org (8.14.1/8.14.1) with ESMTP id m1QIiVuW015318; Tue, 26 Feb 2008 10:44:31 -0800 (PST) (envelope-from obrien@dragon.nuxi.org) Received: (from obrien@localhost) by dragon.nuxi.org (8.14.2/8.14.1/Submit) id m1QIiV5N015317; Tue, 26 Feb 2008 10:44:31 -0800 (PST) (envelope-from obrien) Date: Tue, 26 Feb 2008 10:44:31 -0800 From: "David O'Brien" To: Robert Watson Message-ID: <20080226184431.GA15264@dragon.NUXI.org> References: <200802261819.m1QIJnTO068648@repoman.freebsd.org> <20080226182149.D19847@fledge.watson.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20080226182149.D19847@fledge.watson.org> X-Operating-System: FreeBSD 8.0-CURRENT User-Agent: Mutt/1.5.16 (2007-06-09) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/fs/nullfs null_vfsops.c src/sys/fs/nwfs nwfs_vfsops.c src/sys/fs/smbfs smbfs_vfsops.c src/sys/kern vfs_default.c vfs_vnops.c src/sys/sys mount.h vnode.h src/sys/ufs/ufs quota.h ufs_quota.c ufs_vfsops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 18:44:33 -0000 On Tue, Feb 26, 2008 at 06:25:51PM +0000, Robert Watson wrote: > To be specific, it's about code on the order of the following -- in the > include file: > vfs_quotactl_t nnpfs_quotactl; > > In the .c file here nnpfs_quotactl is implemented: > int > nnpfs_quotactl(struct mount *mp, int cmd, uid_t uid, caddr_t arg, > d_thread_t *p) > { .. > In another .c file where nnpfs_quotactl is used: > .vfs_quotactl = nnpfs_quotactl, This is one of the major warts I find with the C language. You cannot use the typedef'ed type used in the declaration in the definition - thus you always get these type mis-matches that a strongly typed language would barf on. > The compile keels over when it discovers that nnpfs_quotactl doesn't match > the implementation because it doesn't match the typedef. So it's actually > our typedef, not Arla's typedef. With C its just usually the types are based on the same thing. -- -- David (obrien@FreeBSD.org) From owner-cvs-all@FreeBSD.ORG Tue Feb 26 18:47:29 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1FBF01065678; Tue, 26 Feb 2008 18:47:29 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DEC9B13C465; Tue, 26 Feb 2008 18:47:23 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QIlNGl069611; Tue, 26 Feb 2008 18:47:23 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QIlNwS069610; Tue, 26 Feb 2008 18:47:23 GMT (envelope-from simon) Message-Id: <200802261847.m1QIlNwS069610@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Tue, 26 Feb 2008 18:47:23 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/tools webupdate X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 18:47:29 -0000 simon 2008-02-26 18:47:23 UTC FreeBSD doc repository Modified files: tools webupdate Log: Sync with the actual build script used on www.FreeBSD.org: Make this script work with newer version of make(1). If DESTDIR is set on the make command line it cannot be overridden in www/en/doc etc. This makes the script work with FreeBSD 6.X+. Revision Changes Path 1.16 +3 -3 www/tools/webupdate From owner-cvs-all@FreeBSD.ORG Tue Feb 26 19:06:57 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6F5651065670; Tue, 26 Feb 2008 19:06:57 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from speedfactory.net (mail.speedfactory.net [66.23.216.219]) by mx1.freebsd.org (Postfix) with ESMTP id 7838D13C45B; Tue, 26 Feb 2008 19:06:56 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (unverified [66.23.211.162]) by speedfactory.net (SurgeMail 3.8s) with ESMTP id 233481388-1834499 for multiple; Tue, 26 Feb 2008 14:06:41 -0500 Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.14.2/8.14.2) with ESMTP id m1QJ6ZiX022154; Tue, 26 Feb 2008 14:06:38 -0500 (EST) (envelope-from jhb@freebsd.org) From: John Baldwin To: Kip Macy Date: Tue, 26 Feb 2008 11:33:00 -0500 User-Agent: KMail/1.9.7 References: <200802260302.m1Q32KOT081487@repoman.freebsd.org> In-Reply-To: <200802260302.m1Q32KOT081487@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200802261133.00942.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Tue, 26 Feb 2008 14:06:38 -0500 (EST) X-Virus-Scanned: ClamAV 0.91.2/6003/Tue Feb 26 06:34:31 2008 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/cxgb bin2h.pl cxgb_main.c cxgb_t3fw.c cxgb_t3fw.h t3fw-5.0.0.bin.gz.uu src/sys/modules/cxgb Makefile src/sys/modules/cxgb/cxgb Makefile src/sys/modules/cxgb/cxgb_t3fw Makefile src/sys/conf NOTES files X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 19:06:57 -0000 On Monday 25 February 2008 10:02:20 pm Kip Macy wrote: > kmacy 2008-02-26 03:02:20 UTC > > FreeBSD src repository > > Modified files: > sys/dev/cxgb cxgb_main.c > sys/modules/cxgb Makefile > sys/modules/cxgb/cxgb Makefile > sys/conf NOTES files > Added files: > sys/dev/cxgb bin2h.pl cxgb_t3fw.c cxgb_t3fw.h > sys/modules/cxgb/cxgb_t3fw Makefile > Removed files: > sys/dev/cxgb t3fw-5.0.0.bin.gz.uu > Log: > Move firmware in to separate module that can be compiled statically in to the kernel > Add utility for converting future firmware revs to a C header file Did you consider using firmware(9)? It already handles wrapping a binary blob into a kernel module for you and can autoload the firmware on demand. -- John Baldwin From owner-cvs-all@FreeBSD.ORG Tue Feb 26 19:28:02 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC5F0106566B; Tue, 26 Feb 2008 19:28:02 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4CF0413C4F0; Tue, 26 Feb 2008 19:28:02 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QJS2fr073419; Tue, 26 Feb 2008 19:28:02 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QJS26i073418; Tue, 26 Feb 2008 19:28:02 GMT (envelope-from tabthorpe) Message-Id: <200802261928.m1QJS26i073418@repoman.freebsd.org> From: Thomas Abthorpe Date: Tue, 26 Feb 2008 19:28:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/drood Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 19:28:03 -0000 tabthorpe 2008-02-26 19:28:01 UTC FreeBSD ports repository Modified files: www/drood Makefile distinfo Log: - Update 1.25 PR: ports/121110 Submitted by: James Bailie" (maintainer) Revision Changes Path 1.16 +1 -1 ports/www/drood/Makefile 1.16 +3 -3 ports/www/drood/distinfo From owner-cvs-all@FreeBSD.ORG Tue Feb 26 19:28:35 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 25EE01065676; Tue, 26 Feb 2008 19:28:35 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EE18713C45A; Tue, 26 Feb 2008 19:28:34 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QJSYui073449; Tue, 26 Feb 2008 19:28:34 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QJSYv3073448; Tue, 26 Feb 2008 19:28:34 GMT (envelope-from remko) Message-Id: <200802261928.m1QJSYv3073448@repoman.freebsd.org> From: Remko Lodder Date: Tue, 26 Feb 2008 19:28:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/pci if_ti.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 19:28:35 -0000 remko 2008-02-26 19:28:34 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/pci if_ti.c Log: MFC rev 1.131 if_ti.c Set the baudrate for if_ti. PR: kern/40516 Submitted by: "Jin Guojun[VFF]" Approved by: imp (mentor, implicit for minor changes) MFC After: 1 week Approved by: imp (mentor, implicit) Revision Changes Path 1.107.2.6 +1 -0 src/sys/pci/if_ti.c From owner-cvs-all@FreeBSD.ORG Tue Feb 26 19:28:42 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 028981065670; Tue, 26 Feb 2008 19:28:42 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C9D1813C46B; Tue, 26 Feb 2008 19:28:41 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QJSfIi073499; Tue, 26 Feb 2008 19:28:41 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QJSfnx073498; Tue, 26 Feb 2008 19:28:41 GMT (envelope-from marius) Message-Id: <200802261928.m1QJSfnx073498@repoman.freebsd.org> From: Marius Strobl Date: Tue, 26 Feb 2008 19:28:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/gcc34 Makefile ports/lang/gcc34/files patch-config-sparc-freebsd.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 19:28:42 -0000 marius 2008-02-26 19:28:41 UTC FreeBSD ports repository (src committer) Modified files: lang/gcc34 Makefile Added files: lang/gcc34/files patch-config-sparc-freebsd.h Log: Add the local changes of src/contrib/gcc/config/sparc/freebsd.h, mainly in order to let the preprocessor define things like __sparc64__ which in turn is required by some system headers. Approved by: gerald Revision Changes Path 1.246 +1 -1 ports/lang/gcc34/Makefile 1.1 +28 -0 ports/lang/gcc34/files/patch-config-sparc-freebsd.h (new) From owner-cvs-all@FreeBSD.ORG Tue Feb 26 19:29:32 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AE18A1065674; Tue, 26 Feb 2008 19:29:32 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 81E9613C45E; Tue, 26 Feb 2008 19:29:32 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QJTWAM073549; Tue, 26 Feb 2008 19:29:32 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QJTWhp073548; Tue, 26 Feb 2008 19:29:32 GMT (envelope-from remko) Message-Id: <200802261929.m1QJTWhp073548@repoman.freebsd.org> From: Remko Lodder Date: Tue, 26 Feb 2008 19:29:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sys/dev/ti if_ti.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 19:29:32 -0000 remko 2008-02-26 19:29:32 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/dev/ti if_ti.c Log: MFC rev 1.131 if_ti.c Set the baudrate for if_ti. PR: kern/40516 Submitted by: "Jin Guojun[VFF]" Approved by: imp (mentor, implicit for minor changes) MFC After: 1 week Approved by: imp (mentor, implicit) Revision Changes Path 1.128.2.1 +1 -0 src/sys/dev/ti/if_ti.c From owner-cvs-all@FreeBSD.ORG Tue Feb 26 19:31:00 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BD86B106567C; Tue, 26 Feb 2008 19:31:00 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 89FD813C4EC; Tue, 26 Feb 2008 19:31:00 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QJV0VH073670; Tue, 26 Feb 2008 19:31:00 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QJV0rV073669; Tue, 26 Feb 2008 19:31:00 GMT (envelope-from tabthorpe) Message-Id: <200802261931.m1QJV0rV073669@repoman.freebsd.org> From: Thomas Abthorpe Date: Tue, 26 Feb 2008 19:31:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/munger Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 19:31:00 -0000 tabthorpe 2008-02-26 19:31:00 UTC FreeBSD ports repository Modified files: lang/munger Makefile distinfo pkg-plist Log: - Update to 4.145 PR: ports/121113 Submitted by: James Bailie (maintainer) Revision Changes Path 1.68 +1 -1 ports/lang/munger/Makefile 1.67 +3 -3 ports/lang/munger/distinfo 1.44 +1 -2 ports/lang/munger/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Feb 26 19:40:41 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EE8351065671; Tue, 26 Feb 2008 19:40:41 +0000 (UTC) (envelope-from marius@alchemy.franken.de) Received: from alchemy.franken.de (alchemy.franken.de [194.94.249.214]) by mx1.freebsd.org (Postfix) with ESMTP id 60FA813C467; Tue, 26 Feb 2008 19:40:41 +0000 (UTC) (envelope-from marius@alchemy.franken.de) Received: from alchemy.franken.de (localhost [127.0.0.1]) by alchemy.franken.de (8.14.1/8.14.1/ALCHEMY.FRANKEN.DE) with ESMTP id m1QJeeSb062816; Tue, 26 Feb 2008 20:40:40 +0100 (CET) (envelope-from marius@alchemy.franken.de) Received: (from marius@localhost) by alchemy.franken.de (8.14.1/8.14.1/Submit) id m1QJedMK062815; Tue, 26 Feb 2008 20:40:39 +0100 (CET) (envelope-from marius) Date: Tue, 26 Feb 2008 20:40:39 +0100 From: Marius Strobl To: Mark Linimon Message-ID: <20080226194039.GA52046@alchemy.franken.de> References: <200802010653.m116rLi7074141@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200802010653.m116rLi7074141@repoman.freebsd.org> User-Agent: Mutt/1.4.2.3i Cc: cvs-ports@freebsd.org, cvs-all@freebsd.org, ports-committers@freebsd.org Subject: Re: cvs commit: ports/devel/gdb53 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 19:40:42 -0000 On Fri, Feb 01, 2008 at 06:53:21AM +0000, Mark Linimon wrote: > linimon 2008-02-01 06:53:21 UTC > > FreeBSD ports repository > > Modified files: > devel/gdb53 Makefile > Log: > Mark broken on sparc64-7: install fails with "Unknown Architecture". > > Hat: portmgr > FYI, this and possibly some other gcc34 consumers were fixed in gcc-3.4.6_3,1. Marius From owner-cvs-all@FreeBSD.ORG Tue Feb 26 19:42:01 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 888BA1065677; Tue, 26 Feb 2008 19:42:01 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5B4AD13C4CC; Tue, 26 Feb 2008 19:42:01 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QJfxpt074148; Tue, 26 Feb 2008 19:41:59 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QJfxwC074143; Tue, 26 Feb 2008 19:41:59 GMT (envelope-from delphij) Message-Id: <200802261941.m1QJfxwC074143@repoman.freebsd.org> From: Xin LI Date: Tue, 26 Feb 2008 19:41:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/astro/xearth/files freebsd.committers.markers X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 19:42:01 -0000 delphij 2008-02-26 19:41:59 UTC FreeBSD ports repository Modified files: astro/xearth/files freebsd.committers.markers Log: Fix my location Revision Changes Path 1.387 +2 -2 ports/astro/xearth/files/freebsd.committers.markers From owner-cvs-all@FreeBSD.ORG Tue Feb 26 19:46:58 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6304E1065677; Tue, 26 Feb 2008 19:46:58 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1682513C4EC; Tue, 26 Feb 2008 19:46:57 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QJkvMZ074362; Tue, 26 Feb 2008 19:46:57 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QJkvnt074361; Tue, 26 Feb 2008 19:46:57 GMT (envelope-from delphij) Message-Id: <200802261946.m1QJkvnt074361@repoman.freebsd.org> From: Xin LI Date: Tue, 26 Feb 2008 19:46:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/astro/xearth/files freebsd.committers.markers X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 19:46:58 -0000 delphij 2008-02-26 19:46:57 UTC FreeBSD ports repository Modified files: astro/xearth/files freebsd.committers.markers Log: Refine the location according to Google Maps Revision Changes Path 1.388 +2 -2 ports/astro/xearth/files/freebsd.committers.markers From owner-cvs-all@FreeBSD.ORG Tue Feb 26 19:53:41 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 21399106566C; Tue, 26 Feb 2008 19:53:41 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E9A2E13C461; Tue, 26 Feb 2008 19:53:40 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QJre4Z074552; Tue, 26 Feb 2008 19:53:40 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QJrebo074551; Tue, 26 Feb 2008 19:53:40 GMT (envelope-from pav) Message-Id: <200802261953.m1QJrebo074551@repoman.freebsd.org> From: Pav Lucistnik Date: Tue, 26 Feb 2008 19:53:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/biology/clustalw Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 19:53:41 -0000 pav 2008-02-26 19:53:40 UTC FreeBSD ports repository Modified files: biology/clustalw Makefile Log: - Restore clustalw symlink, other ports rely on it Reported by: pointyhat Pointy hat to: pav Revision Changes Path 1.11 +5 -1 ports/biology/clustalw/Makefile From owner-cvs-all@FreeBSD.ORG Tue Feb 26 20:01:00 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F19401065670; Tue, 26 Feb 2008 20:01:00 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C538D13C4EE; Tue, 26 Feb 2008 20:01:00 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QK10Ex074860; Tue, 26 Feb 2008 20:01:00 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QK10Tq074857; Tue, 26 Feb 2008 20:01:00 GMT (envelope-from gabor) Message-Id: <200802262001.m1QK10Tq074857@repoman.freebsd.org> From: Gabor Kovesdan Date: Tue, 26 Feb 2008 20:01:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-Devel-Caller Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 20:01:01 -0000 gabor 2008-02-26 20:01:00 UTC FreeBSD ports repository Modified files: devel/p5-Devel-Caller Makefile distinfo pkg-plist Log: - Update 2.03 - Use PERL_CONFIGURE instead of PERL_MODBUILD - Style PR: ports/120898 Submitted by: Felippe de Meirelles Motta Approved by: maintainer Revision Changes Path 1.3 +3 -4 ports/devel/p5-Devel-Caller/Makefile 1.2 +3 -3 ports/devel/p5-Devel-Caller/distinfo 1.2 +1 -0 ports/devel/p5-Devel-Caller/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Feb 26 20:02:18 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 872691065674; Tue, 26 Feb 2008 20:02:18 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5B8B313C4FB; Tue, 26 Feb 2008 20:02:18 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QK2IeW074913; Tue, 26 Feb 2008 20:02:18 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QK2ImV074912; Tue, 26 Feb 2008 20:02:18 GMT (envelope-from gabor) Message-Id: <200802262002.m1QK2ImV074912@repoman.freebsd.org> From: Gabor Kovesdan Date: Tue, 26 Feb 2008 20:02:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/p5-Catalyst-Plugin-FormBuilder Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 20:02:18 -0000 gabor 2008-02-26 20:02:18 UTC FreeBSD ports repository Modified files: www/p5-Catalyst-Plugin-FormBuilder Makefile distinfo Log: - Update to 1.07 - Better adjustment of dependencies - Style PR: ports/121008 Submitted by: Felippe de Meirelles Motta Approved by: maintainer Revision Changes Path 1.3 +4 -5 ports/www/p5-Catalyst-Plugin-FormBuilder/Makefile 1.2 +3 -3 ports/www/p5-Catalyst-Plugin-FormBuilder/distinfo From owner-cvs-all@FreeBSD.ORG Tue Feb 26 20:03:40 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C9E551065673; Tue, 26 Feb 2008 20:03:40 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9D94B13C4D5; Tue, 26 Feb 2008 20:03:40 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QK3etO076150; Tue, 26 Feb 2008 20:03:40 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QK3K5b076145; Tue, 26 Feb 2008 20:03:20 GMT (envelope-from gabor) Message-Id: <200802262003.m1QK3K5b076145@repoman.freebsd.org> From: Gabor Kovesdan Date: Tue, 26 Feb 2008 20:03:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/p5-Crypt-GCrypt Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 20:03:41 -0000 gabor 2008-02-26 20:03:20 UTC FreeBSD ports repository Modified files: security/p5-Crypt-GCrypt Makefile distinfo Log: - Update to 1.20 - Better adjustment of dependencies - Style PR: ports/121011 Submitted by: Felippe de Meirelles Motta Approved by: maintainer Revision Changes Path 1.6 +4 -10 ports/security/p5-Crypt-GCrypt/Makefile 1.4 +3 -3 ports/security/p5-Crypt-GCrypt/distinfo From owner-cvs-all@FreeBSD.ORG Tue Feb 26 20:04:32 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0AEFB106566B; Tue, 26 Feb 2008 20:04:32 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D387413C4DD; Tue, 26 Feb 2008 20:04:31 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QK4VYn076190; Tue, 26 Feb 2008 20:04:31 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QK4Vk5076189; Tue, 26 Feb 2008 20:04:31 GMT (envelope-from gabor) Message-Id: <200802262004.m1QK4Vk5076189@repoman.freebsd.org> From: Gabor Kovesdan Date: Tue, 26 Feb 2008 20:04:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/p5-FCGI-Spawn Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 20:04:32 -0000 gabor 2008-02-26 20:04:31 UTC FreeBSD ports repository Modified files: www/p5-FCGI-Spawn Makefile distinfo pkg-descr Log: - Update to 0.12 - Fix WWW PR: ports/121012 Submitted by: Felippe de Meirelles Motta Approved by: maintainer Revision Changes Path 1.2 +1 -2 ports/www/p5-FCGI-Spawn/Makefile 1.2 +3 -3 ports/www/p5-FCGI-Spawn/distinfo 1.2 +1 -1 ports/www/p5-FCGI-Spawn/pkg-descr From owner-cvs-all@FreeBSD.ORG Tue Feb 26 20:05:52 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9FDA91065674; Tue, 26 Feb 2008 20:05:52 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7312613C46A; Tue, 26 Feb 2008 20:05:52 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QK5q70076312; Tue, 26 Feb 2008 20:05:52 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QK5qn0076311; Tue, 26 Feb 2008 20:05:52 GMT (envelope-from gabor) Message-Id: <200802262005.m1QK5qn0076311@repoman.freebsd.org> From: Gabor Kovesdan Date: Tue, 26 Feb 2008 20:05:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/p5-Image-Delivery Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 20:05:52 -0000 gabor 2008-02-26 20:05:50 UTC FreeBSD ports repository Modified files: www/p5-Image-Delivery Makefile distinfo pkg-plist Log: - Update to 0.14 - Better adjustment of dependencies PR: ports/121015 Submitted by: Felippe de Meirelles Motta Approved by: maintainer Revision Changes Path 1.2 +10 -19 ports/www/p5-Image-Delivery/Makefile 1.2 +3 -3 ports/www/p5-Image-Delivery/distinfo 1.2 +6 -9 ports/www/p5-Image-Delivery/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Feb 26 20:07:11 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 41AFA1065672; Tue, 26 Feb 2008 20:07:11 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 15DFB13C442; Tue, 26 Feb 2008 20:07:11 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QK7AHu076387; Tue, 26 Feb 2008 20:07:10 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QK7Aej076386; Tue, 26 Feb 2008 20:07:10 GMT (envelope-from gabor) Message-Id: <200802262007.m1QK7Aej076386@repoman.freebsd.org> From: Gabor Kovesdan Date: Tue, 26 Feb 2008 20:07:10 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/p5-XML-Mini Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 20:07:11 -0000 gabor 2008-02-26 20:07:10 UTC FreeBSD ports repository Modified files: textproc/p5-XML-Mini Makefile distinfo pkg-descr Log: - Update to 1.38 - Add WWW - Style PR: ports/121034 Submitted by: Felippe de Meirelles Motta Approved by: maintainer Revision Changes Path 1.2 +3 -6 ports/textproc/p5-XML-Mini/Makefile 1.2 +3 -3 ports/textproc/p5-XML-Mini/distinfo 1.2 +2 -0 ports/textproc/p5-XML-Mini/pkg-descr From owner-cvs-all@FreeBSD.ORG Tue Feb 26 20:10:06 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 267AF106566B; Tue, 26 Feb 2008 20:10:06 +0000 (UTC) (envelope-from davidc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EE9B513C4E5; Tue, 26 Feb 2008 20:10:05 +0000 (UTC) (envelope-from davidc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QKA5BF076552; Tue, 26 Feb 2008 20:10:05 GMT (envelope-from davidc@repoman.freebsd.org) Received: (from davidc@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QKA5wB076551; Tue, 26 Feb 2008 20:10:05 GMT (envelope-from davidc) Message-Id: <200802262010.m1QKA5wB076551@repoman.freebsd.org> From: Chad David Date: Tue, 26 Feb 2008 20:10:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man9 vrefcnt.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 20:10:06 -0000 davidc 2008-02-26 20:10:05 UTC FreeBSD src repository Added files: share/man/man9 vrefcnt.9 Log: Add new man page. Revision Changes Path 1.1 +53 -0 src/share/man/man9/vrefcnt.9 (new) From owner-cvs-all@FreeBSD.ORG Tue Feb 26 20:10:32 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9DB111065689; Tue, 26 Feb 2008 20:10:32 +0000 (UTC) (envelope-from davidc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 71E0013C45E; Tue, 26 Feb 2008 20:10:32 +0000 (UTC) (envelope-from davidc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QKAWkR076603; Tue, 26 Feb 2008 20:10:32 GMT (envelope-from davidc@repoman.freebsd.org) Received: (from davidc@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QKAWYg076602; Tue, 26 Feb 2008 20:10:32 GMT (envelope-from davidc) Message-Id: <200802262010.m1QKAWYg076602@repoman.freebsd.org> From: Chad David Date: Tue, 26 Feb 2008 20:10:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man9 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 20:10:32 -0000 davidc 2008-02-26 20:10:32 UTC FreeBSD src repository Modified files: share/man/man9 Makefile Log: Add vrefcnt.9 to the build. Revision Changes Path 1.327 +1 -0 src/share/man/man9/Makefile From owner-cvs-all@FreeBSD.ORG Tue Feb 26 20:11:38 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 48A071065670; Tue, 26 Feb 2008 20:11:38 +0000 (UTC) (envelope-from davidc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1CFF813C467; Tue, 26 Feb 2008 20:11:38 +0000 (UTC) (envelope-from davidc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QKBbqu076716; Tue, 26 Feb 2008 20:11:37 GMT (envelope-from davidc@repoman.freebsd.org) Received: (from davidc@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QKBb6G076715; Tue, 26 Feb 2008 20:11:37 GMT (envelope-from davidc) Message-Id: <200802262011.m1QKBb6G076715@repoman.freebsd.org> From: Chad David Date: Tue, 26 Feb 2008 20:11:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man9 vgone.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 20:11:38 -0000 davidc 2008-02-26 20:11:37 UTC FreeBSD src repository Modified files: share/man/man9 vgone.9 Log: Minor grammar fixup. Revision Changes Path 1.6 +1 -1 src/share/man/man9/vgone.9 From owner-cvs-all@FreeBSD.ORG Tue Feb 26 20:13:09 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 24C99106567C; Tue, 26 Feb 2008 20:13:09 +0000 (UTC) (envelope-from davidc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id ED95113C455; Tue, 26 Feb 2008 20:13:08 +0000 (UTC) (envelope-from davidc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QKD8tv076791; Tue, 26 Feb 2008 20:13:08 GMT (envelope-from davidc@repoman.freebsd.org) Received: (from davidc@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QKD8Ne076790; Tue, 26 Feb 2008 20:13:08 GMT (envelope-from davidc) Message-Id: <200802262013.m1QKD8Ne076790@repoman.freebsd.org> From: Chad David Date: Tue, 26 Feb 2008 20:13:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man9 vput.9 vref.9 vrele.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 20:13:09 -0000 davidc 2008-02-26 20:13:08 UTC FreeBSD src repository Modified files: share/man/man9 vput.9 vref.9 vrele.9 Log: Refer to vrefcnt(9) Revision Changes Path 1.12 +2 -1 src/share/man/man9/vput.9 1.14 +1 -0 src/share/man/man9/vref.9 1.13 +2 -1 src/share/man/man9/vrele.9 From owner-cvs-all@FreeBSD.ORG Tue Feb 26 20:20:10 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 89C8D106566B; Tue, 26 Feb 2008 20:20:10 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5D58A13C43E; Tue, 26 Feb 2008 20:20:10 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QKKAWm077505; Tue, 26 Feb 2008 20:20:10 GMT (envelope-from gahr@repoman.freebsd.org) Received: (from gahr@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QKKA9O077504; Tue, 26 Feb 2008 20:20:10 GMT (envelope-from gahr) Message-Id: <200802262020.m1QKKA9O077504@repoman.freebsd.org> From: Pietro Cerutti Date: Tue, 26 Feb 2008 20:20:10 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/math/gambit Makefile ports/math/gambit/files patch-src-tools-enumpoly_pelqhull.cc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 20:20:10 -0000 gahr 2008-02-26 20:20:10 UTC FreeBSD ports repository Modified files: math/gambit Makefile Added files: math/gambit/files patch-src-tools-enumpoly_pelqhull.cc Log: - Fix build on 64 bits platforms - Adopt maintainship Approved by: miwi (mentor) Revision Changes Path 1.30 +2 -8 ports/math/gambit/Makefile 1.1 +11 -0 ports/math/gambit/files/patch-src-tools-enumpoly_pelqhull.cc (new) From owner-cvs-all@FreeBSD.ORG Tue Feb 26 20:25:02 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 439911065672; Tue, 26 Feb 2008 20:25:02 +0000 (UTC) (envelope-from davidc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D9A1F13C4CC; Tue, 26 Feb 2008 20:25:01 +0000 (UTC) (envelope-from davidc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QKP1gE077711; Tue, 26 Feb 2008 20:25:01 GMT (envelope-from davidc@repoman.freebsd.org) Received: (from davidc@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QKP1YC077710; Tue, 26 Feb 2008 20:25:01 GMT (envelope-from davidc) Message-Id: <200802262025.m1QKP1YC077710@repoman.freebsd.org> From: Chad David Date: Tue, 26 Feb 2008 20:25:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man9 vhold.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 20:25:02 -0000 davidc 2008-02-26 20:25:01 UTC FreeBSD src repository Modified files: share/man/man9 vhold.9 Log: Document vholdl(9) No longer refer to vbusy(9) or vfree(9) Revision Changes Path 1.6 +11 -11 src/share/man/man9/vhold.9 From owner-cvs-all@FreeBSD.ORG Tue Feb 26 20:33:53 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1F310106566B; Tue, 26 Feb 2008 20:33:53 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E7E6813C46B; Tue, 26 Feb 2008 20:33:52 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QKXqub078018; Tue, 26 Feb 2008 20:33:52 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QKXqvH078017; Tue, 26 Feb 2008 20:33:52 GMT (envelope-from ru) Message-Id: <200802262033.m1QKXqvH078017@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 26 Feb 2008 20:33:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/sys readlink.2 src/include unistd.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 20:33:53 -0000 ru 2008-02-26 20:33:52 UTC FreeBSD src repository Modified files: lib/libc/sys readlink.2 include unistd.h Log: Added the "restrict" type-qualifier to the readlink() prototype. Revision Changes Path 1.84 +1 -1 src/include/unistd.h 1.16 +2 -2 src/lib/libc/sys/readlink.2 From owner-cvs-all@FreeBSD.ORG Tue Feb 26 21:03:20 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C4FE61065674; Tue, 26 Feb 2008 21:03:20 +0000 (UTC) (envelope-from davidc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 99FFE13C45E; Tue, 26 Feb 2008 21:03:20 +0000 (UTC) (envelope-from davidc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QL3KT1089134; Tue, 26 Feb 2008 21:03:20 GMT (envelope-from davidc@repoman.freebsd.org) Received: (from davidc@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QL3KDu089133; Tue, 26 Feb 2008 21:03:20 GMT (envelope-from davidc) Message-Id: <200802262103.m1QL3KDu089133@repoman.freebsd.org> From: Chad David Date: Tue, 26 Feb 2008 21:03:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man9 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 21:03:20 -0000 davidc 2008-02-26 21:03:20 UTC FreeBSD src repository Modified files: share/man/man9 Makefile Log: Link vholdl.9 to vhold.9 Revision Changes Path 1.328 +1 -0 src/share/man/man9/Makefile From owner-cvs-all@FreeBSD.ORG Tue Feb 26 21:09:54 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E07AC106566B; Tue, 26 Feb 2008 21:09:54 +0000 (UTC) (envelope-from davidc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B535613C448; Tue, 26 Feb 2008 21:09:54 +0000 (UTC) (envelope-from davidc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QL9sSo095083; Tue, 26 Feb 2008 21:09:54 GMT (envelope-from davidc@repoman.freebsd.org) Received: (from davidc@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QL9sEh095082; Tue, 26 Feb 2008 21:09:54 GMT (envelope-from davidc) Message-Id: <200802262109.m1QL9sEh095082@repoman.freebsd.org> From: Chad David Date: Tue, 26 Feb 2008 21:09:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man9 insmntque.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 21:09:55 -0000 davidc 2008-02-26 21:09:54 UTC FreeBSD src repository Added files: share/man/man9 insmntque.9 Log: Add new man page. Revision Changes Path 1.1 +62 -0 src/share/man/man9/insmntque.9 (new) From owner-cvs-all@FreeBSD.ORG Tue Feb 26 21:11:05 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 740D2106566B; Tue, 26 Feb 2008 21:11:05 +0000 (UTC) (envelope-from davidc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 490ED13C465; Tue, 26 Feb 2008 21:11:05 +0000 (UTC) (envelope-from davidc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QLB5NL095224; Tue, 26 Feb 2008 21:11:05 GMT (envelope-from davidc@repoman.freebsd.org) Received: (from davidc@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QLB5a2095223; Tue, 26 Feb 2008 21:11:05 GMT (envelope-from davidc) Message-Id: <200802262111.m1QLB5a2095223@repoman.freebsd.org> From: Chad David Date: Tue, 26 Feb 2008 21:11:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man9 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 21:11:05 -0000 davidc 2008-02-26 21:11:05 UTC FreeBSD src repository Modified files: share/man/man9 Makefile Log: Add insmntque.9 to the build. Revision Changes Path 1.329 +1 -0 src/share/man/man9/Makefile From owner-cvs-all@FreeBSD.ORG Tue Feb 26 21:40:00 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3D0F9106567D; Tue, 26 Feb 2008 21:40:00 +0000 (UTC) (envelope-from davidc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 10BC513C459; Tue, 26 Feb 2008 21:40:00 +0000 (UTC) (envelope-from davidc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QLdxSv096049; Tue, 26 Feb 2008 21:39:59 GMT (envelope-from davidc@repoman.freebsd.org) Received: (from davidc@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QLdxQI096048; Tue, 26 Feb 2008 21:39:59 GMT (envelope-from davidc) Message-Id: <200802262139.m1QLdxQI096048@repoman.freebsd.org> From: Chad David Date: Tue, 26 Feb 2008 21:39:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man9 vfs_mountedfrom.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 21:40:00 -0000 davidc 2008-02-26 21:39:59 UTC FreeBSD src repository Added files: share/man/man9 vfs_mountedfrom.9 Log: Add new man page. Revision Changes Path 1.1 +55 -0 src/share/man/man9/vfs_mountedfrom.9 (new) From owner-cvs-all@FreeBSD.ORG Tue Feb 26 21:40:31 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 565211065672; Tue, 26 Feb 2008 21:40:31 +0000 (UTC) (envelope-from davidc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2C41413C4E9; Tue, 26 Feb 2008 21:40:31 +0000 (UTC) (envelope-from davidc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QLeVPL096194; Tue, 26 Feb 2008 21:40:31 GMT (envelope-from davidc@repoman.freebsd.org) Received: (from davidc@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QLeVuu096193; Tue, 26 Feb 2008 21:40:31 GMT (envelope-from davidc) Message-Id: <200802262140.m1QLeVuu096193@repoman.freebsd.org> From: Chad David Date: Tue, 26 Feb 2008 21:40:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man9 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 21:40:31 -0000 davidc 2008-02-26 21:40:31 UTC FreeBSD src repository Modified files: share/man/man9 Makefile Log: Add vfs_mountedfrom.9 to the build. Revision Changes Path 1.330 +1 -0 src/share/man/man9/Makefile From owner-cvs-all@FreeBSD.ORG Tue Feb 26 22:45:56 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 72893106571D; Tue, 26 Feb 2008 22:45:56 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 45A5913C45D; Tue, 26 Feb 2008 22:45:56 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QMjuCr099496; Tue, 26 Feb 2008 22:45:56 GMT (envelope-from girgen@repoman.freebsd.org) Received: (from girgen@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QMjuho099495; Tue, 26 Feb 2008 22:45:56 GMT (envelope-from girgen) Message-Id: <200802262245.m1QMjuho099495@repoman.freebsd.org> From: Palle Girgensohn Date: Tue, 26 Feb 2008 22:45:56 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/databases/postgresql-jdbc Makefile distinfo pkg-plist ports/databases/postgresql-jdbc/files patch-build-xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 22:45:56 -0000 girgen 2008-02-26 22:45:56 UTC FreeBSD ports repository Modified files: databases/postgresql-jdbc Makefile distinfo pkg-plist databases/postgresql-jdbc/files patch-build-xml Log: Updating to 8.3.603 Revision Changes Path 1.28 +5 -3 ports/databases/postgresql-jdbc/Makefile 1.7 +3 -3 ports/databases/postgresql-jdbc/distinfo 1.2 +4 -4 ports/databases/postgresql-jdbc/files/patch-build-xml 1.12 +2 -1 ports/databases/postgresql-jdbc/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Feb 26 22:50:41 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 985F6106566C; Tue, 26 Feb 2008 22:50:41 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6CE6A13C44B; Tue, 26 Feb 2008 22:50:41 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QMof60099701; Tue, 26 Feb 2008 22:50:41 GMT (envelope-from girgen@repoman.freebsd.org) Received: (from girgen@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QMofto099700; Tue, 26 Feb 2008 22:50:41 GMT (envelope-from girgen) Message-Id: <200802262250.m1QMofto099700@repoman.freebsd.org> From: Palle Girgensohn Date: Tue, 26 Feb 2008 22:50:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/jakarta-jmeter Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 22:50:41 -0000 girgen 2008-02-26 22:50:41 UTC FreeBSD ports repository Modified files: www/jakarta-jmeter Makefile distinfo pkg-plist Log: Updating to 2.3.1. Taking maintainership, as agreed with previous maintainer, jb.quenot@caraldi.com. Revision Changes Path 1.19 +2 -3 ports/www/jakarta-jmeter/Makefile 1.11 +3 -3 ports/www/jakarta-jmeter/distinfo 1.11 +20 -22 ports/www/jakarta-jmeter/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Feb 26 23:05:06 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 09FFD106566C; Tue, 26 Feb 2008 23:05:06 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D15B713C4F9; Tue, 26 Feb 2008 23:05:05 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QN55ln001536; Tue, 26 Feb 2008 23:05:05 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QN55Pj001535; Tue, 26 Feb 2008 23:05:05 GMT (envelope-from kmacy) Message-Id: <200802262305.m1QN55Pj001535@repoman.freebsd.org> From: Kip Macy Date: Tue, 26 Feb 2008 23:05:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/modules/cxgb/cxgb Makefile src/sys/dev/cxgb cxgb_main.c cxgb_t3fw.c t3b_protocol_sram.h t3b_tp_eeprom.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 23:05:06 -0000 kmacy 2008-02-26 23:05:05 UTC FreeBSD src repository Modified files: sys/modules/cxgb/cxgb Makefile sys/dev/cxgb cxgb_main.c cxgb_t3fw.c Added files: sys/dev/cxgb t3b_protocol_sram.h t3b_tp_eeprom.h Log: move remaining binaries in to blob headers Revision Changes Path 1.50 +8 -17 src/sys/dev/cxgb/cxgb_main.c 1.2 +68 -0 src/sys/dev/cxgb/cxgb_t3fw.c 1.1 +678 -0 src/sys/dev/cxgb/t3b_protocol_sram.h (new) 1.1 +566 -0 src/sys/dev/cxgb/t3b_tp_eeprom.h (new) 1.8 +0 -20 src/sys/modules/cxgb/cxgb/Makefile From owner-cvs-all@FreeBSD.ORG Tue Feb 26 23:06:23 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1DF541065670; Tue, 26 Feb 2008 23:06:23 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E634813C4F0; Tue, 26 Feb 2008 23:06:22 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QN6M8r001657; Tue, 26 Feb 2008 23:06:22 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QN6MMV001656; Tue, 26 Feb 2008 23:06:22 GMT (envelope-from kmacy) Message-Id: <200802262306.m1QN6MMV001656@repoman.freebsd.org> From: Kip Macy Date: Tue, 26 Feb 2008 23:06:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/cxgb t3b_protocol_sram-1.1.0.bin.gz.uu t3b_tp_eeprom-1.1.0.bin.gz.uu X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 23:06:23 -0000 kmacy 2008-02-26 23:06:22 UTC FreeBSD src repository Removed files: sys/dev/cxgb t3b_protocol_sram-1.1.0.bin.gz.uu t3b_tp_eeprom-1.1.0.bin.gz.uu Log: Remove unused files Revision Changes Path 1.2 +0 -46 src/sys/dev/cxgb/t3b_protocol_sram-1.1.0.bin.gz.uu (dead) 1.2 +0 -46 src/sys/dev/cxgb/t3b_tp_eeprom-1.1.0.bin.gz.uu (dead) From owner-cvs-all@FreeBSD.ORG Tue Feb 26 23:07:24 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A6C9F1065677 for ; Tue, 26 Feb 2008 23:07:24 +0000 (UTC) (envelope-from kip.macy@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.180]) by mx1.freebsd.org (Postfix) with ESMTP id 7566F13C457 for ; Tue, 26 Feb 2008 23:07:24 +0000 (UTC) (envelope-from kip.macy@gmail.com) Received: by wa-out-1112.google.com with SMTP id k17so2712431waf.3 for ; Tue, 26 Feb 2008 15:07:24 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=3Z9TbflQb77J0nLgcIYCs4zozeXF0VM1eG/j1EVxh2g=; b=k1yp9hj47YW0VjOWJ+d46niXEm3lt5Fr30qLGmfddOAuvWd4cwe2LQPJlRh5Twx2EYNxJeU7hQikDxxrhomjd3IAqndkdDP5PRQbNwZZY+dPloBvF/TkiDX50XysseojjJHYA50JNaJmC9zeAA7EF9ABoi/CD+3qt4GukNSTwVc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=EOtjNUctWttBbDr6Ej9rCGBCCazwp0HQnpaNu6hrypOJZqUs4//b4qQwsnjCUHZbf9SuK88C7RVjRCeZvgQR4X4pDZNbRtbzc++DWHTtwMiv82i5azx8cMxPgJyfU/9YTZAWlmK/htXMpP51KoGr/v7Wrt/IbhJuzWy+hSQe/m8= Received: by 10.114.168.1 with SMTP id q1mr6331747wae.74.1204067244034; Tue, 26 Feb 2008 15:07:24 -0800 (PST) Received: by 10.114.255.16 with HTTP; Tue, 26 Feb 2008 15:07:24 -0800 (PST) Message-ID: Date: Tue, 26 Feb 2008 15:07:24 -0800 From: "Kip Macy" To: "John Baldwin" In-Reply-To: <200802261133.00942.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200802260302.m1Q32KOT081487@repoman.freebsd.org> <200802261133.00942.jhb@freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Kip Macy , cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/cxgb bin2h.pl cxgb_main.c cxgb_t3fw.c cxgb_t3fw.h t3fw-5.0.0.bin.gz.uu src/sys/modules/cxgb Makefile src/sys/modules/cxgb/cxgb Makefile src/sys/modules/cxgb/cxgb_t3fw Makefile src/sys/conf NOTES files X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 23:07:24 -0000 On Tue, Feb 26, 2008 at 8:33 AM, John Baldwin wrote: > On Monday 25 February 2008 10:02:20 pm Kip Macy wrote: > > kmacy 2008-02-26 03:02:20 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/dev/cxgb cxgb_main.c > > sys/modules/cxgb Makefile > > sys/modules/cxgb/cxgb Makefile > > sys/conf NOTES files > > Added files: > > sys/dev/cxgb bin2h.pl cxgb_t3fw.c cxgb_t3fw.h > > sys/modules/cxgb/cxgb_t3fw Makefile > > Removed files: > > sys/dev/cxgb t3fw-5.0.0.bin.gz.uu > > Log: > > Move firmware in to separate module that can be compiled statically in to > the kernel > > Add utility for converting future firmware revs to a C header file > > Did you consider using firmware(9)? It already handles wrapping a binary blob > into a kernel module for you and can autoload the firmware on demand. > Read the code. From owner-cvs-all@FreeBSD.ORG Tue Feb 26 23:12:56 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C0291065678; Tue, 26 Feb 2008 23:12:56 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6077A13C468; Tue, 26 Feb 2008 23:12:56 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QNCute001896; Tue, 26 Feb 2008 23:12:56 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QNCuYZ001895; Tue, 26 Feb 2008 23:12:56 GMT (envelope-from kmacy) Message-Id: <200802262312.m1QNCuYZ001895@repoman.freebsd.org> From: Kip Macy Date: Tue, 26 Feb 2008 23:12:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/cxgb bin2h.pl X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 23:12:56 -0000 kmacy 2008-02-26 23:12:56 UTC FreeBSD src repository Modified files: sys/dev/cxgb bin2h.pl Log: Parameterize for module name Revision Changes Path 1.2 +4 -4 src/sys/dev/cxgb/bin2h.pl From owner-cvs-all@FreeBSD.ORG Tue Feb 26 23:16:24 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1C317106567A; Tue, 26 Feb 2008 23:16:24 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E312913C459; Tue, 26 Feb 2008 23:16:23 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QNGNEu002053; Tue, 26 Feb 2008 23:16:23 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QNGNPC002052; Tue, 26 Feb 2008 23:16:23 GMT (envelope-from brueffer) Message-Id: <200802262316.m1QNGNPC002052@repoman.freebsd.org> From: Christian Brueffer Date: Tue, 26 Feb 2008 23:16:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man9 insmntque.9 vfs_mountedfrom.9 vrefcnt.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 23:16:24 -0000 brueffer 2008-02-26 23:16:23 UTC FreeBSD src repository Modified files: share/man/man9 insmntque.9 vfs_mountedfrom.9 vrefcnt.9 Log: Spell out the name of the month, normalize copyright layout. Revision Changes Path 1.2 +3 -3 src/share/man/man9/insmntque.9 1.2 +3 -3 src/share/man/man9/vfs_mountedfrom.9 1.2 +3 -3 src/share/man/man9/vrefcnt.9 From owner-cvs-all@FreeBSD.ORG Tue Feb 26 23:19:32 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 118CF1065676 for ; Tue, 26 Feb 2008 23:19:32 +0000 (UTC) (envelope-from kip.macy@gmail.com) Received: from el-out-1112.google.com (el-out-1112.google.com [209.85.162.180]) by mx1.freebsd.org (Postfix) with ESMTP id 9209A13C45B for ; Tue, 26 Feb 2008 23:19:31 +0000 (UTC) (envelope-from kip.macy@gmail.com) Received: by el-out-1112.google.com with SMTP id r27so2151527ele.3 for ; Tue, 26 Feb 2008 15:19:31 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=t5DfHOyeGBKZ+QltLmnIJ2CGCFsBBa7gM/9XNM3IiVI=; b=xosMzryTlBnKVU30Il0Gl26xU30JkMs5nVBK3EYUDKQa9wgkjZ2ZBDMw2fhxMHSJ8q+UDrNNAmppWFvwVknJIIpE3ZNXEABoFJ9vTuUDIWZdrZN28eWs44l/Ff8Eo6TcO5ZmJtfZ+9WpcFrgBGEjmBwxL75lCpZDf6SPoBQlQrc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=UoIimLBeZpaM+O5Fc7jb7UMJ+/0f0F411ITCMviUOP4e9kNmuNjj0gEMY71kS4NVuTQmYZkgC5YNMZ3pIZ+9PtJbGXgOM1b43ykUF+hugGkmy6ORkZZnccXrxB22pyuhMcWvDiW3r3eQWKT8z8QJtpYBcllEtEjr1PgHOS8TsHM= Received: by 10.114.176.1 with SMTP id y1mr6344093wae.86.1204067969885; Tue, 26 Feb 2008 15:19:29 -0800 (PST) Received: by 10.114.255.16 with HTTP; Tue, 26 Feb 2008 15:19:29 -0800 (PST) Message-ID: Date: Tue, 26 Feb 2008 15:19:29 -0800 From: "Kip Macy" To: "John Baldwin" In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200802260302.m1Q32KOT081487@repoman.freebsd.org> <200802261133.00942.jhb@freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Kip Macy , cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/cxgb bin2h.pl cxgb_main.c cxgb_t3fw.c cxgb_t3fw.h t3fw-5.0.0.bin.gz.uu src/sys/modules/cxgb Makefile src/sys/modules/cxgb/cxgb Makefile src/sys/modules/cxgb/cxgb_t3fw Makefile src/sys/conf NOTES files X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 23:19:32 -0000 the make system doesn't work with firmware + static linking - this works around that On Tue, Feb 26, 2008 at 3:07 PM, Kip Macy wrote: > > On Tue, Feb 26, 2008 at 8:33 AM, John Baldwin wrote: > > On Monday 25 February 2008 10:02:20 pm Kip Macy wrote: > > > kmacy 2008-02-26 03:02:20 UTC > > > > > > FreeBSD src repository > > > > > > Modified files: > > > sys/dev/cxgb cxgb_main.c > > > sys/modules/cxgb Makefile > > > sys/modules/cxgb/cxgb Makefile > > > sys/conf NOTES files > > > Added files: > > > sys/dev/cxgb bin2h.pl cxgb_t3fw.c cxgb_t3fw.h > > > sys/modules/cxgb/cxgb_t3fw Makefile > > > Removed files: > > > sys/dev/cxgb t3fw-5.0.0.bin.gz.uu > > > Log: > > > Move firmware in to separate module that can be compiled statically in to > > the kernel > > > Add utility for converting future firmware revs to a C header file > > > > Did you consider using firmware(9)? It already handles wrapping a binary blob > > into a kernel module for you and can autoload the firmware on demand. > > > > > Read the code. > From owner-cvs-all@FreeBSD.ORG Tue Feb 26 23:26:10 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA1F2106566B; Tue, 26 Feb 2008 23:26:10 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8D2A013C47E; Tue, 26 Feb 2008 23:26:10 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1QNQApq002413; Tue, 26 Feb 2008 23:26:10 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1QNQAck002412; Tue, 26 Feb 2008 23:26:10 GMT (envelope-from cperciva) Message-Id: <200802262326.m1QNQAck002412@repoman.freebsd.org> From: Colin Percival Date: Tue, 26 Feb 2008 23:26:10 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/security security.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 23:26:10 -0000 cperciva 2008-02-26 23:26:10 UTC FreeBSD doc repository (src,ports committer) Modified files: en/security security.sgml Log: Add EoL date for the upcoming FreeBSD 7.0-RELEASE, and mark 7-STABLE as being supported until 2 years after the last release (as usual). Revision Changes Path 1.197 +16 -2 www/en/security/security.sgml From owner-cvs-all@FreeBSD.ORG Tue Feb 26 23:28:06 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1F33C1065671; Tue, 26 Feb 2008 23:28:06 +0000 (UTC) (envelope-from sam@errno.com) Received: from ebb.errno.com (ebb.errno.com [69.12.149.25]) by mx1.freebsd.org (Postfix) with ESMTP id 068CB13C4D3; Tue, 26 Feb 2008 23:28:04 +0000 (UTC) (envelope-from sam@errno.com) Received: from Macintosh-2.local ([10.0.0.196]) (authenticated bits=0) by ebb.errno.com (8.13.6/8.12.6) with ESMTP id m1QNS34D011190 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 26 Feb 2008 15:28:03 -0800 (PST) (envelope-from sam@errno.com) Message-ID: <47C4A083.2050602@errno.com> Date: Tue, 26 Feb 2008 15:28:03 -0800 From: Sam Leffler Organization: Errno Consulting User-Agent: Thunderbird 2.0.0.9 (Macintosh/20071031) MIME-Version: 1.0 To: Kip Macy References: <200802260302.m1Q32KOT081487@repoman.freebsd.org> <200802261133.00942.jhb@freebsd.org> In-Reply-To: X-Enigmail-Version: 0.95.6 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-DCC-sonic.net-Metrics: ebb.errno.com; whitelist Cc: cvs-all@FreeBSD.org, cvs-src@FreeBSD.org, src-committers@FreeBSD.org, Kip Macy , John Baldwin Subject: Re: cvs commit: src/sys/dev/cxgb bin2h.pl cxgb_main.c cxgb_t3fw.c cxgb_t3fw.h t3fw-5.0.0.bin.gz.uu src/sys/modules/cxgb Makefile src/sys/modules/cxgb/cxgb Makefile src/sys/modules/cxgb/cxgb_t3fw Makefile src/sys/conf NOTES files X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 23:28:06 -0000 Huh? What does "static linking" mean? If you're looking for an example of a firmware image being embedded in a kernel look at the npe firmware used by xscale. Sam Kip Macy wrote: > the make system doesn't work with firmware + static linking - this > works around that > > > On Tue, Feb 26, 2008 at 3:07 PM, Kip Macy wrote: >> On Tue, Feb 26, 2008 at 8:33 AM, John Baldwin wrote: >> > On Monday 25 February 2008 10:02:20 pm Kip Macy wrote: >> > > kmacy 2008-02-26 03:02:20 UTC >> > > >> > > FreeBSD src repository >> > > >> > > Modified files: >> > > sys/dev/cxgb cxgb_main.c >> > > sys/modules/cxgb Makefile >> > > sys/modules/cxgb/cxgb Makefile >> > > sys/conf NOTES files >> > > Added files: >> > > sys/dev/cxgb bin2h.pl cxgb_t3fw.c cxgb_t3fw.h >> > > sys/modules/cxgb/cxgb_t3fw Makefile >> > > Removed files: >> > > sys/dev/cxgb t3fw-5.0.0.bin.gz.uu >> > > Log: >> > > Move firmware in to separate module that can be compiled statically in to >> > the kernel >> > > Add utility for converting future firmware revs to a C header file >> > >> > Did you consider using firmware(9)? It already handles wrapping a binary blob >> > into a kernel module for you and can autoload the firmware on demand. >> > >> >> >> Read the code. >> > > From owner-cvs-all@FreeBSD.ORG Tue Feb 26 23:39:07 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1E45D1065675 for ; Tue, 26 Feb 2008 23:39:07 +0000 (UTC) (envelope-from kip.macy@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.182]) by mx1.freebsd.org (Postfix) with ESMTP id DE45613C459 for ; Tue, 26 Feb 2008 23:39:06 +0000 (UTC) (envelope-from kip.macy@gmail.com) Received: by wa-out-1112.google.com with SMTP id k17so2726161waf.3 for ; Tue, 26 Feb 2008 15:39:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=6SrjrGY141Cttg/gyBUA61gRkoE0FUmmmqgzKMh+TqA=; b=UV0S6382l27n7q5yBqqQjGYuFPN/9d5SuBVKHVj3cRDZ7fJRFvO/lIZ9cZ4za9QrhrVZQyhESvZo7CAqlFMpkE+5Vh3NNKCTkZLTp1gAzAYhoNilmthX3EscFUt7h6lFUSN1qMZ3bb1oOr86nAf6Whk9Rc3oReAhKOfw10niTuI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=HGoSCJ9+6p6l8nI+QLJ4SOfCBsjnSZ1DoXwYE+awH9o9cJO5eoOfpNM403CyAWmVjaLlOKXEjnhmfsO2YnSoFeKkikwgnKiTdXOQGNmaUQcr8ixtGv6P3FZMjRbgJQD0sRUhb3cJZlTWY2TAB7Dbfqz/CqFlbgYT0SM+SDNoPIo= Received: by 10.114.158.1 with SMTP id g1mr6360274wae.97.1204069146375; Tue, 26 Feb 2008 15:39:06 -0800 (PST) Received: by 10.114.255.16 with HTTP; Tue, 26 Feb 2008 15:39:06 -0800 (PST) Message-ID: Date: Tue, 26 Feb 2008 15:39:06 -0800 From: "Kip Macy" To: "Sam Leffler" In-Reply-To: <47C4A083.2050602@errno.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200802260302.m1Q32KOT081487@repoman.freebsd.org> <200802261133.00942.jhb@freebsd.org> <47C4A083.2050602@errno.com> Cc: cvs-src@freebsd.org, cvs-all@freebsd.org, src-committers@freebsd.org, Kip Macy , John Baldwin Subject: Re: cvs commit: src/sys/dev/cxgb bin2h.pl cxgb_main.c cxgb_t3fw.c cxgb_t3fw.h t3fw-5.0.0.bin.gz.uu src/sys/modules/cxgb Makefile src/sys/modules/cxgb/cxgb Makefile src/sys/modules/cxgb/cxgb_t3fw Makefile src/sys/conf NOTES files X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 23:39:07 -0000 Uhm - I do the same thing as ispfw - can you tell me what is wrong with that? -Kip On Tue, Feb 26, 2008 at 3:28 PM, Sam Leffler wrote: > Huh? What does "static linking" mean? If you're looking for an example > of a firmware image being embedded in a kernel look at the npe firmware > used by xscale. > > Sam > > > > Kip Macy wrote: > > the make system doesn't work with firmware + static linking - this > > works around that > > > > > > On Tue, Feb 26, 2008 at 3:07 PM, Kip Macy wrote: > >> On Tue, Feb 26, 2008 at 8:33 AM, John Baldwin wrote: > >> > On Monday 25 February 2008 10:02:20 pm Kip Macy wrote: > >> > > kmacy 2008-02-26 03:02:20 UTC > >> > > > >> > > FreeBSD src repository > >> > > > >> > > Modified files: > >> > > sys/dev/cxgb cxgb_main.c > >> > > sys/modules/cxgb Makefile > >> > > sys/modules/cxgb/cxgb Makefile > >> > > sys/conf NOTES files > >> > > Added files: > >> > > sys/dev/cxgb bin2h.pl cxgb_t3fw.c cxgb_t3fw.h > >> > > sys/modules/cxgb/cxgb_t3fw Makefile > >> > > Removed files: > >> > > sys/dev/cxgb t3fw-5.0.0.bin.gz.uu > >> > > Log: > >> > > Move firmware in to separate module that can be compiled statically in to > >> > the kernel > >> > > Add utility for converting future firmware revs to a C header file > >> > > >> > Did you consider using firmware(9)? It already handles wrapping a binary blob > >> > into a kernel module for you and can autoload the firmware on demand. > >> > > >> > >> > >> Read the code. > >> > > > > > > From owner-cvs-all@FreeBSD.ORG Wed Feb 27 00:03:23 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ABD601065674; Wed, 27 Feb 2008 00:03:23 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 675A613C45D; Wed, 27 Feb 2008 00:03:23 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R03Niv004847; Wed, 27 Feb 2008 00:03:23 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R03Nws004846; Wed, 27 Feb 2008 00:03:23 GMT (envelope-from marcel) Message-Id: <200802270003.m1R03Nws004846@repoman.freebsd.org> From: Marcel Moolenaar Date: Wed, 27 Feb 2008 00:03:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/conf ldscript.powerpc src/sys/powerpc/aim locore.S src/sys/powerpc/powerpc genassym.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 00:03:23 -0000 marcel 2008-02-27 00:03:23 UTC FreeBSD src repository Modified files: sys/conf ldscript.powerpc sys/powerpc/aim locore.S sys/powerpc/powerpc genassym.c Log: Avoid hardcoding the kernel link address in the linker script. Use KERNBASE instead. While here, move the text sections forward to the beginning of the text segment. Revision Changes Path 1.8 +16 -11 src/sys/conf/ldscript.powerpc 1.24 +6 -0 src/sys/powerpc/aim/locore.S 1.60 +1 -0 src/sys/powerpc/powerpc/genassym.c From owner-cvs-all@FreeBSD.ORG Wed Feb 27 01:25:38 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9D854106566B; Wed, 27 Feb 2008 01:25:38 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4ABD213C45A; Wed, 27 Feb 2008 01:25:38 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R1PcUT017458; Wed, 27 Feb 2008 01:25:38 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R1PcT4017457; Wed, 27 Feb 2008 01:25:38 GMT (envelope-from marcus) Message-Id: <200802270125.m1R1PcT4017457@repoman.freebsd.org> From: Joe Marcus Clarke Date: Wed, 27 Feb 2008 01:25:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/gnome-build Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 01:25:38 -0000 marcus 2008-02-27 01:25:37 UTC FreeBSD ports repository Modified files: devel/gnome-build Makefile Log: This port requires p5-Locale-gettext for its runtime scripts. Reported by: pointyhat via pav Revision Changes Path 1.41 +4 -1 ports/devel/gnome-build/Makefile From owner-cvs-all@FreeBSD.ORG Wed Feb 27 01:48:58 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 923021065671; Wed, 27 Feb 2008 01:48:58 +0000 (UTC) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6240213C45E; Wed, 27 Feb 2008 01:48:58 +0000 (UTC) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R1mwxJ018365; Wed, 27 Feb 2008 01:48:58 GMT (envelope-from alepulver@repoman.freebsd.org) Received: (from alepulver@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R1mwu7018364; Wed, 27 Feb 2008 01:48:58 GMT (envelope-from alepulver) Message-Id: <200802270148.m1R1mwu7018364@repoman.freebsd.org> From: Alejandro Pulver Date: Wed, 27 Feb 2008 01:48:58 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11/xcb-util Makefile ports/x11/xcb-util/files patch-image__test_xcb_image_shm.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 01:48:58 -0000 alepulver 2008-02-27 01:48:58 UTC FreeBSD ports repository Modified files: x11/xcb-util Makefile Added files: x11/xcb-util/files patch-image__test_xcb_image_shm.c Log: - Add patch to fix building in 5.x [1]. - Use ${LOCALBASE}/bin/gperf in dependency as that's the one passed to configure, and it won't be installed if the base system one is found. Reported by: pointyhat (pav, erwin) [1] Revision Changes Path 1.2 +1 -1 ports/x11/xcb-util/Makefile 1.1 +10 -0 ports/x11/xcb-util/files/patch-image__test_xcb_image_shm.c (new) From owner-cvs-all@FreeBSD.ORG Wed Feb 27 02:04:53 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C2CC81065670; Wed, 27 Feb 2008 02:04:53 +0000 (UTC) (envelope-from dryice@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 92FE613C457; Wed, 27 Feb 2008 02:04:53 +0000 (UTC) (envelope-from dryice@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R24rTT020076; Wed, 27 Feb 2008 02:04:53 GMT (envelope-from dryice@repoman.freebsd.org) Received: (from dryice@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R24rAP020075; Wed, 27 Feb 2008 02:04:53 GMT (envelope-from dryice) Message-Id: <200802270204.m1R24rAP020075@repoman.freebsd.org> From: Dryice Dong Liu Date: Wed, 27 Feb 2008 02:04:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/py-babel Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 02:04:53 -0000 dryice 2008-02-27 02:04:53 UTC FreeBSD ports repository Modified files: devel/py-babel Makefile distinfo Log: update to 0.9.2 Revision Changes Path 1.4 +1 -1 ports/devel/py-babel/Makefile 1.3 +3 -3 ports/devel/py-babel/distinfo From owner-cvs-all@FreeBSD.ORG Wed Feb 27 02:23:13 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2115D1065678; Wed, 27 Feb 2008 02:23:13 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0890C13C467; Wed, 27 Feb 2008 02:23:13 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R2NC5J020760; Wed, 27 Feb 2008 02:23:12 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R2NCFY020759; Wed, 27 Feb 2008 02:23:12 GMT (envelope-from maho) Message-Id: <200802270223.m1R2NCFY020759@repoman.freebsd.org> From: Maho Nakata Date: Wed, 27 Feb 2008 02:23:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/math/octave Makefile ports/math/octave/files patch-scripts+miscellaneous+unpack.m patch-scripts+pkg+pkg.m X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 02:23:13 -0000 maho 2008-02-27 02:23:12 UTC FreeBSD ports repository Modified files: math/octave Makefile Added files: math/octave/files patch-scripts+miscellaneous+unpack.m patch-scripts+pkg+pkg.m Log: 1. FreeBSD tar requires extra switches to read the archive from stdin. 2. Fix installation of packages from octave-forge. make is not GNU make. 3. Bump portrevision accordingly. Submitted by: Ryan Hinton Revision Changes Path 1.71 +1 -1 ports/math/octave/Makefile 1.1 +19 -0 ports/math/octave/files/patch-scripts+miscellaneous+unpack.m (new) 1.1 +11 -0 ports/math/octave/files/patch-scripts+pkg+pkg.m (new) From owner-cvs-all@FreeBSD.ORG Wed Feb 27 02:42:17 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 573421065673; Wed, 27 Feb 2008 02:42:17 +0000 (UTC) (envelope-from dryice@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 269A913C45A; Wed, 27 Feb 2008 02:42:17 +0000 (UTC) (envelope-from dryice@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R2gHpR021496; Wed, 27 Feb 2008 02:42:17 GMT (envelope-from dryice@repoman.freebsd.org) Received: (from dryice@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R2gGU0021495; Wed, 27 Feb 2008 02:42:16 GMT (envelope-from dryice) Message-Id: <200802270242.m1R2gGU0021495@repoman.freebsd.org> From: Dryice Dong Liu Date: Wed, 27 Feb 2008 02:42:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/muse Makefile distinfo ports/textproc/muse/files patch-Makefile.defs.default X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 02:42:17 -0000 dryice 2008-02-27 02:42:16 UTC FreeBSD ports repository Modified files: textproc/muse Makefile distinfo textproc/muse/files patch-Makefile.defs.default Log: update to 3.12 Revision Changes Path 1.10 +1 -1 ports/textproc/muse/Makefile 1.7 +3 -3 ports/textproc/muse/distinfo 1.2 +6 -6 ports/textproc/muse/files/patch-Makefile.defs.default From owner-cvs-all@FreeBSD.ORG Wed Feb 27 02:42:47 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6F2291065679; Wed, 27 Feb 2008 02:42:47 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3F22F13C4CC; Wed, 27 Feb 2008 02:42:47 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R2glr9021591; Wed, 27 Feb 2008 02:42:47 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R2gltL021590; Wed, 27 Feb 2008 02:42:47 GMT (envelope-from mezz) Message-Id: <200802270242.m1R2gltL021590@repoman.freebsd.org> From: Jeremy Messenger Date: Wed, 27 Feb 2008 02:42:47 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-p2p/transmission Makefile distinfo ports/net-p2p/transmission/files patch-cli_transmissioncli.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 02:42:47 -0000 mezz 2008-02-27 02:42:47 UTC FreeBSD ports repository Modified files: net-p2p/transmission Makefile distinfo Removed files: net-p2p/transmission/files patch-cli_transmissioncli.c Log: Update to 1.06. Revision Changes Path 1.33 +2 -2 ports/net-p2p/transmission/Makefile 1.24 +3 -3 ports/net-p2p/transmission/distinfo 1.2 +0 -11 ports/net-p2p/transmission/files/patch-cli_transmissioncli.c (dead) From owner-cvs-all@FreeBSD.ORG Wed Feb 27 03:14:09 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 344751065671; Wed, 27 Feb 2008 03:14:09 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 04E3B13C47E; Wed, 27 Feb 2008 03:14:09 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R3E85q023866; Wed, 27 Feb 2008 03:14:08 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R3E6ap023865; Wed, 27 Feb 2008 03:14:06 GMT (envelope-from rafan) Message-Id: <200802270314.m1R3E6ap023865@repoman.freebsd.org> From: Rong-En Fan Date: Wed, 27 Feb 2008 03:14:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/chinese/oxim Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 03:14:09 -0000 rafan 2008-02-27 03:14:05 UTC FreeBSD ports repository Modified files: chinese/oxim Makefile distinfo Log: - Update to 1.1.5 Revision Changes Path 1.23 +1 -1 ports/chinese/oxim/Makefile 1.11 +3 -3 ports/chinese/oxim/distinfo From owner-cvs-all@FreeBSD.ORG Wed Feb 27 03:24:51 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3415D10656CE; Wed, 27 Feb 2008 03:24:51 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DB78813C468; Wed, 27 Feb 2008 03:24:46 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R3Ok0K024239; Wed, 27 Feb 2008 03:24:46 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R3OkWR024238; Wed, 27 Feb 2008 03:24:46 GMT (envelope-from brooks) Message-Id: <200802270324.m1R3OkWR024238@repoman.freebsd.org> From: Brooks Davis Date: Wed, 27 Feb 2008 03:24:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/math/octave Makefile ports/math/octave/files patch-scripts+miscellaneous+unpack.m X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 03:24:55 -0000 brooks 2008-02-27 03:24:46 UTC FreeBSD ports repository Modified files: math/octave Makefile math/octave/files patch-scripts+miscellaneous+unpack.m Log: Since bsdtar can detect the type of file it's extracting, simplify handling of compressed tarballs and zip files. Approved by: maho (maintainer) Revision Changes Path 1.72 +1 -1 ports/math/octave/Makefile 1.2 +25 -12 ports/math/octave/files/patch-scripts+miscellaneous+unpack.m From owner-cvs-all@FreeBSD.ORG Wed Feb 27 03:37:50 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C84A71065674; Wed, 27 Feb 2008 03:37:50 +0000 (UTC) (envelope-from dryice@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9881713C45A; Wed, 27 Feb 2008 03:37:50 +0000 (UTC) (envelope-from dryice@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R3bo94024662; Wed, 27 Feb 2008 03:37:50 GMT (envelope-from dryice@repoman.freebsd.org) Received: (from dryice@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R3boiv024661; Wed, 27 Feb 2008 03:37:50 GMT (envelope-from dryice) Message-Id: <200802270337.m1R3boiv024661@repoman.freebsd.org> From: Dryice Dong Liu Date: Wed, 27 Feb 2008 03:37:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/databases/py-sqlalchemy Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 03:37:50 -0000 dryice 2008-02-27 03:37:50 UTC FreeBSD ports repository Modified files: databases/py-sqlalchemy Makefile distinfo Log: update to 0.4.3 Revision Changes Path 1.18 +2 -2 ports/databases/py-sqlalchemy/Makefile 1.16 +3 -3 ports/databases/py-sqlalchemy/distinfo From owner-cvs-all@FreeBSD.ORG Wed Feb 27 05:02:55 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6044B1065673; Wed, 27 Feb 2008 05:02:55 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from speedfactory.net (mail.speedfactory.net [66.23.216.219]) by mx1.freebsd.org (Postfix) with ESMTP id 82B8413C45D; Wed, 27 Feb 2008 05:02:54 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (unverified [66.23.211.162]) by speedfactory.net (SurgeMail 3.8s) with ESMTP id 233533634-1834499 for multiple; Tue, 26 Feb 2008 23:59:44 -0500 Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.14.2/8.14.2) with ESMTP id m1R51Gq2026417; Wed, 27 Feb 2008 00:01:22 -0500 (EST) (envelope-from jhb@freebsd.org) From: John Baldwin To: "Kip Macy" Date: Tue, 26 Feb 2008 23:57:44 -0500 User-Agent: KMail/1.9.7 References: <200802260302.m1Q32KOT081487@repoman.freebsd.org> <47C4A083.2050602@errno.com> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200802262357.45358.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Wed, 27 Feb 2008 00:01:22 -0500 (EST) X-Virus-Scanned: ClamAV 0.91.2/6006/Tue Feb 26 20:03:40 2008 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: Sam Leffler , src-committers@freebsd.org, Kip Macy , cvs-all@freebsd.org, cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/dev/cxgb bin2h.pl cxgb_main.c cxgb_t3fw.c cxgb_t3fw.h t3fw-5.0.0.bin.gz.uu src/sys/modules/cxgb Makefile src/sys/modules/cxgb/cxgb Makefile src/sys/modules/cxgb/cxgb_t3fw Makefile src/sys/conf NOTES files X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 05:02:55 -0000 On Tuesday 26 February 2008 06:39:06 pm Kip Macy wrote: > Uhm - I do the same thing as ispfw - can you tell me what is wrong with that? > > -Kip ispfw actually predates firmware(9) by several years and it simply hasn't been converted to use the new API yet. > On Tue, Feb 26, 2008 at 3:28 PM, Sam Leffler wrote: > > Huh? What does "static linking" mean? If you're looking for an example > > of a firmware image being embedded in a kernel look at the npe firmware > > used by xscale. > > > > Sam > > > > > > > > Kip Macy wrote: > > > the make system doesn't work with firmware + static linking - this > > > works around that > > > > > > > > > On Tue, Feb 26, 2008 at 3:07 PM, Kip Macy wrote: > > >> On Tue, Feb 26, 2008 at 8:33 AM, John Baldwin wrote: > > >> > On Monday 25 February 2008 10:02:20 pm Kip Macy wrote: > > >> > > kmacy 2008-02-26 03:02:20 UTC > > >> > > > > >> > > FreeBSD src repository > > >> > > > > >> > > Modified files: > > >> > > sys/dev/cxgb cxgb_main.c > > >> > > sys/modules/cxgb Makefile > > >> > > sys/modules/cxgb/cxgb Makefile > > >> > > sys/conf NOTES files > > >> > > Added files: > > >> > > sys/dev/cxgb bin2h.pl cxgb_t3fw.c cxgb_t3fw.h > > >> > > sys/modules/cxgb/cxgb_t3fw Makefile > > >> > > Removed files: > > >> > > sys/dev/cxgb t3fw-5.0.0.bin.gz.uu > > >> > > Log: > > >> > > Move firmware in to separate module that can be compiled statically in to > > >> > the kernel > > >> > > Add utility for converting future firmware revs to a C header file > > >> > > > >> > Did you consider using firmware(9)? It already handles wrapping a binary blob > > >> > into a kernel module for you and can autoload the firmware on demand. > > >> > > > >> > > >> > > >> Read the code. > > >> > > > > > > > > > > > -- John Baldwin From owner-cvs-all@FreeBSD.ORG Wed Feb 27 05:15:57 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 36E71106566B; Wed, 27 Feb 2008 05:15:57 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1FCD913C442; Wed, 27 Feb 2008 05:15:57 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R5FuVh039092; Wed, 27 Feb 2008 05:15:56 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R5Fufs039091; Wed, 27 Feb 2008 05:15:56 GMT (envelope-from mezz) Message-Id: <200802270515.m1R5Fufs039091@repoman.freebsd.org> From: Jeremy Messenger Date: Wed, 27 Feb 2008 05:15:56 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-p2p/transmission Makefile distinfo ports/net-p2p/transmission-daemon Makefile ports/net-p2p/transmission-gtk2 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 05:15:57 -0000 mezz 2008-02-27 05:15:56 UTC FreeBSD ports repository Modified files: net-p2p/transmission Makefile distinfo net-p2p/transmission-daemon Makefile net-p2p/transmission-gtk2 Makefile Log: The tarball has been re-rolled. They have forgotten to bump the version and a bit tweak in NEWS. Bump the PORTREVISION to have version correct when users report to their bug tracker. Revision Changes Path 1.3 +1 -1 ports/net-p2p/transmission-daemon/Makefile 1.13 +1 -1 ports/net-p2p/transmission-gtk2/Makefile 1.34 +1 -1 ports/net-p2p/transmission/Makefile 1.25 +3 -3 ports/net-p2p/transmission/distinfo From owner-cvs-all@FreeBSD.ORG Wed Feb 27 05:20:26 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8DC521065671; Wed, 27 Feb 2008 05:20:26 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5F41813C461; Wed, 27 Feb 2008 05:20:26 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R5KPst039291; Wed, 27 Feb 2008 05:20:25 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R5KPPP039290; Wed, 27 Feb 2008 05:20:25 GMT (envelope-from maho) Message-Id: <200802270520.m1R5KPPP039290@repoman.freebsd.org> From: Maho Nakata Date: Wed, 27 Feb 2008 05:20:25 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/math/suitesparse Makefile ports/math/suitesparse/files patch-CSparse+Lib+Makefile patch-CXSparse+Lib+Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 05:20:26 -0000 maho 2008-02-27 05:20:25 UTC FreeBSD ports repository Modified files: math/suitesparse Makefile Added files: math/suitesparse/files patch-CSparse+Lib+Makefile patch-CXSparse+Lib+Makefile Log: Build fix on amd64. I fixed differently, though. Submitted by: Dominic Fandrey PR: 120985 Revision Changes Path 1.26 +10 -2 ports/math/suitesparse/Makefile 1.1 +11 -0 ports/math/suitesparse/files/patch-CSparse+Lib+Makefile (new) 1.1 +11 -0 ports/math/suitesparse/files/patch-CXSparse+Lib+Makefile (new) From owner-cvs-all@FreeBSD.ORG Wed Feb 27 05:56:57 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A0BF51065672; Wed, 27 Feb 2008 05:56:57 +0000 (UTC) (envelope-from wollman@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 73EDB13C4D5; Wed, 27 Feb 2008 05:56:57 +0000 (UTC) (envelope-from wollman@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R5uv3n040458; Wed, 27 Feb 2008 05:56:57 GMT (envelope-from wollman@repoman.freebsd.org) Received: (from wollman@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R5uvDD040457; Wed, 27 Feb 2008 05:56:57 GMT (envelope-from wollman) Message-Id: <200802270556.m1R5uvDD040457@repoman.freebsd.org> From: Garrett Wollman Date: Wed, 27 Feb 2008 05:56:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/gen sysconf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 05:56:57 -0000 wollman 2008-02-27 05:56:57 UTC FreeBSD src repository Modified files: lib/libc/gen sysconf.c Log: stdio is currently limited to file descriptors not greater than {SHRT_MAX}, so {STREAM_MAX} should be no greater than that. (This does not exactly meet the letter of POSIX but comes reasonably close to it in spirit.) MFC after: 14 days Revision Changes Path 1.26 +19 -1 src/lib/libc/gen/sysconf.c From owner-cvs-all@FreeBSD.ORG Wed Feb 27 06:02:45 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E3F8B106566B; Wed, 27 Feb 2008 06:02:45 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B6C6513C46E; Wed, 27 Feb 2008 06:02:45 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R62j39040689; Wed, 27 Feb 2008 06:02:45 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R62jkh040688; Wed, 27 Feb 2008 06:02:45 GMT (envelope-from simon) Message-Id: <200802270602.m1R62jkh040688@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Wed, 27 Feb 2008 06:02:45 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/share/sgml events.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 06:02:46 -0000 simon 2008-02-27 06:02:45 UTC FreeBSD doc repository Modified files: share/sgml events.xml Log: - Add NYCBSDCon 2008 [1]. - Update web links for NYCBSDCon 2005/2006. Requested by: George Rosamond [1] Revision Changes Path 1.41 +29 -3 www/share/sgml/events.xml From owner-cvs-all@FreeBSD.ORG Wed Feb 27 06:06:01 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F23AE1065672; Wed, 27 Feb 2008 06:06:00 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C545213C468; Wed, 27 Feb 2008 06:06:00 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R660df042030; Wed, 27 Feb 2008 06:06:00 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R660ZE042029; Wed, 27 Feb 2008 06:06:00 GMT (envelope-from kientzle) Message-Id: <200802270606.m1R660ZE042029@repoman.freebsd.org> From: Tim Kientzle Date: Wed, 27 Feb 2008 06:05:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libarchive archive_read_support_format_zip.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 06:06:01 -0000 kientzle 2008-02-27 06:05:59 UTC FreeBSD src repository Modified files: lib/libarchive archive_read_support_format_zip.c Log: Optimize skipping over Zip entries. Thanks to: Dan Nelson, who sent me the patch MFC after: 7 days Revision Changes Path 1.22 +5 -14 src/lib/libarchive/archive_read_support_format_zip.c From owner-cvs-all@FreeBSD.ORG Wed Feb 27 06:09:14 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 766611065673; Wed, 27 Feb 2008 06:09:14 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4972513C461; Wed, 27 Feb 2008 06:09:14 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R69E8G042136; Wed, 27 Feb 2008 06:09:14 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R69En9042135; Wed, 27 Feb 2008 06:09:14 GMT (envelope-from cperciva) Message-Id: <200802270609.m1R69En9042135@repoman.freebsd.org> From: Colin Percival Date: Wed, 27 Feb 2008 06:09:14 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/security security.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 06:09:14 -0000 cperciva 2008-02-27 06:09:14 UTC FreeBSD doc repository (src,ports committer) Modified files: en/security security.sgml Log: 7.0-RELEASE gets "Normal" support, not "Extended" support (I had the EoL date right, just had the wrong word). Submitted by: simon Revision Changes Path 1.198 +3 -3 www/en/security/security.sgml From owner-cvs-all@FreeBSD.ORG Wed Feb 27 06:16:42 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 00969106566C; Wed, 27 Feb 2008 06:16:41 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C81D013C46E; Wed, 27 Feb 2008 06:16:41 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R6GfeK042455; Wed, 27 Feb 2008 06:16:41 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R6Gf7Q042454; Wed, 27 Feb 2008 06:16:41 GMT (envelope-from kientzle) Message-Id: <200802270616.m1R6Gf7Q042454@repoman.freebsd.org> From: Tim Kientzle Date: Wed, 27 Feb 2008 06:16:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libarchive archive_write_disk.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 06:16:42 -0000 kientzle 2008-02-27 06:16:41 UTC FreeBSD src repository Modified files: lib/libarchive archive_write_disk.c Log: Spelling correction, thanks to Joerg Sonnenberger. Revision Changes Path 1.23 +1 -1 src/lib/libarchive/archive_write_disk.c From owner-cvs-all@FreeBSD.ORG Wed Feb 27 07:01:17 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8ABD51065672; Wed, 27 Feb 2008 07:01:17 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5E5BD13C45D; Wed, 27 Feb 2008 07:01:17 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R71HlJ043948; Wed, 27 Feb 2008 07:01:17 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R71HeY043947; Wed, 27 Feb 2008 07:01:17 GMT (envelope-from miwi) Message-Id: <200802270701.m1R71HeY043947@repoman.freebsd.org> From: Martin Wilke Date: Wed, 27 Feb 2008 07:01:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/math/convertall Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 07:01:17 -0000 miwi 2008-02-27 07:01:17 UTC FreeBSD ports repository Modified files: math/convertall Makefile distinfo pkg-descr pkg-plist Log: - Update to 0.4.1 PR: 121088 Submitted by: Ports Fury Revision Changes Path 1.13 +4 -4 ports/math/convertall/Makefile 1.6 +3 -3 ports/math/convertall/distinfo 1.2 +1 -1 ports/math/convertall/pkg-descr 1.7 +8 -2 ports/math/convertall/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Feb 27 07:33:00 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 06E311065680; Wed, 27 Feb 2008 07:33:00 +0000 (UTC) (envelope-from ganbold@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id CD75E13C4EE; Wed, 27 Feb 2008 07:32:59 +0000 (UTC) (envelope-from ganbold@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R7Ww0a046074; Wed, 27 Feb 2008 07:32:58 GMT (envelope-from ganbold@repoman.freebsd.org) Received: (from ganbold@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R7WwUE046073; Wed, 27 Feb 2008 07:32:58 GMT (envelope-from ganbold) Message-Id: <200802270732.m1R7WwUE046073@repoman.freebsd.org> From: Ganbold Tsagaankhuu Date: Wed, 27 Feb 2008 07:32:58 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors contrib.additional.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 07:33:00 -0000 ganbold 2008-02-27 07:32:58 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/contributors contrib.additional.sgml Log: Add Natsagdorj Shagdar and Bayanzul Lodoysamba for their contribution to FreeBSD Mongolian Documentation Project :) Approved by: keramida(mentor) Revision Changes Path 1.769 +10 -0 doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml From owner-cvs-all@FreeBSD.ORG Wed Feb 27 07:34:21 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D98901065673; Wed, 27 Feb 2008 07:34:21 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AD29A13C50B; Wed, 27 Feb 2008 07:34:21 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R7YLXs046187; Wed, 27 Feb 2008 07:34:21 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R7YLXZ046186; Wed, 27 Feb 2008 07:34:21 GMT (envelope-from miwi) Message-Id: <200802270734.m1R7YLXZ046186@repoman.freebsd.org> From: Martin Wilke Date: Wed, 27 Feb 2008 07:34:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/biology/migrate Makefile distinfo ports/biology/migrate/files patch-src-pretty-win32.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 07:34:22 -0000 miwi 2008-02-27 07:34:21 UTC FreeBSD ports repository Modified files: biology/migrate Makefile distinfo Added files: biology/migrate/files patch-src-pretty-win32.cpp Log: - File was rerolled for a small bugfix. Submitted by: pointyhat via pav/erwin Revision Changes Path 1.17 +1 -0 ports/biology/migrate/Makefile 1.12 +3 -3 ports/biology/migrate/distinfo 1.1 +12 -0 ports/biology/migrate/files/patch-src-pretty-win32.cpp (new) From owner-cvs-all@FreeBSD.ORG Wed Feb 27 07:37:13 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8389A106566B; Wed, 27 Feb 2008 07:37:13 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 57F2013C467; Wed, 27 Feb 2008 07:37:13 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R7bCXe046355; Wed, 27 Feb 2008 07:37:12 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R7bCqm046354; Wed, 27 Feb 2008 07:37:12 GMT (envelope-from miwi) Message-Id: <200802270737.m1R7bCqm046354@repoman.freebsd.org> From: Martin Wilke Date: Wed, 27 Feb 2008 07:37:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/swish++ Makefile distinfo ports/www/swish++/files patch-elements.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 07:37:13 -0000 miwi 2008-02-27 07:37:12 UTC FreeBSD ports repository Modified files: www/swish++ Makefile distinfo Removed files: www/swish++/files patch-elements.c Log: - Update to 6.1.5 PR: 121091 Submitted by: Ports Fury Revision Changes Path 1.31 +2 -4 ports/www/swish++/Makefile 1.24 +3 -3 ports/www/swish++/distinfo 1.2 +0 -11 ports/www/swish++/files/patch-elements.c (dead) From owner-cvs-all@FreeBSD.ORG Wed Feb 27 07:37:24 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AA80B1065670; Wed, 27 Feb 2008 07:37:24 +0000 (UTC) (envelope-from ganbold@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7FC5513C4D9; Wed, 27 Feb 2008 07:37:24 +0000 (UTC) (envelope-from ganbold@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R7bOxt046383; Wed, 27 Feb 2008 07:37:24 GMT (envelope-from ganbold@repoman.freebsd.org) Received: (from ganbold@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R7bOZS046382; Wed, 27 Feb 2008 07:37:24 GMT (envelope-from ganbold) Message-Id: <200802270737.m1R7bOZS046382@repoman.freebsd.org> From: Ganbold Tsagaankhuu Date: Wed, 27 Feb 2008 07:37:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/misc committers-doc.dot X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 07:37:24 -0000 ganbold 2008-02-27 07:37:24 UTC FreeBSD src repository (doc committer) Modified files: share/misc committers-doc.dot Log: Add myself to doc committers and to keramida's mentee list Approved by: keramida(mentor) Revision Changes Path 1.21 +2 -0 src/share/misc/committers-doc.dot From owner-cvs-all@FreeBSD.ORG Wed Feb 27 07:39:31 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A16A91065679; Wed, 27 Feb 2008 07:39:31 +0000 (UTC) (envelope-from ganbold@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 758FC13C474; Wed, 27 Feb 2008 07:39:31 +0000 (UTC) (envelope-from ganbold@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R7dVtU046440; Wed, 27 Feb 2008 07:39:31 GMT (envelope-from ganbold@repoman.freebsd.org) Received: (from ganbold@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R7dVen046439; Wed, 27 Feb 2008 07:39:31 GMT (envelope-from ganbold) Message-Id: <200802270739.m1R7dVen046439@repoman.freebsd.org> From: Ganbold Tsagaankhuu Date: Wed, 27 Feb 2008 07:39:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 07:39:31 -0000 ganbold 2008-02-27 07:39:31 UTC FreeBSD src repository (doc committer) Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Add my birthday. Approved by: keramida(mentor) Revision Changes Path 1.226 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-all@FreeBSD.ORG Wed Feb 27 07:41:30 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9A0241065672; Wed, 27 Feb 2008 07:41:30 +0000 (UTC) (envelope-from ganbold@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6C43213C46A; Wed, 27 Feb 2008 07:41:30 +0000 (UTC) (envelope-from ganbold@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R7fUn1046552; Wed, 27 Feb 2008 07:41:30 GMT (envelope-from ganbold@repoman.freebsd.org) Received: (from ganbold@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R7fUW2046551; Wed, 27 Feb 2008 07:41:30 GMT (envelope-from ganbold) Message-Id: <200802270741.m1R7fUW2046551@repoman.freebsd.org> From: Ganbold Tsagaankhuu Date: Wed, 27 Feb 2008 07:41:30 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/astro/xearth/files freebsd.committers.markers X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 07:41:30 -0000 ganbold 2008-02-27 07:41:30 UTC FreeBSD ports repository (doc committer) Modified files: astro/xearth/files freebsd.committers.markers Log: Add my location. Approved by: keramida(mentor) Revision Changes Path 1.389 +2 -1 ports/astro/xearth/files/freebsd.committers.markers From owner-cvs-all@FreeBSD.ORG Wed Feb 27 08:12:12 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 23E3F106566B; Wed, 27 Feb 2008 08:12:12 +0000 (UTC) (envelope-from ganbold@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id ED66B13C4F7; Wed, 27 Feb 2008 08:12:11 +0000 (UTC) (envelope-from ganbold@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R8CBQf048803; Wed, 27 Feb 2008 08:12:11 GMT (envelope-from ganbold@repoman.freebsd.org) Received: (from ganbold@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R8CBXv048802; Wed, 27 Feb 2008 08:12:11 GMT (envelope-from ganbold) Message-Id: <200802270812.m1R8CBXv048802@repoman.freebsd.org> From: Ganbold Tsagaankhuu Date: Wed, 27 Feb 2008 08:12:11 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/mn_MN.UTF-8/books/handbook/printing chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 08:12:12 -0000 ganbold 2008-02-27 08:12:11 UTC FreeBSD doc repository Modified files: mn_MN.UTF-8/books/handbook/printing chapter.sgml Log: Update the Mongolian Handbook translation (obtained from FreeBSD Mongolian Documentation project). Approved by: keramida(mentor) Revision Changes Path 1.6 +6 -5 doc/mn_MN.UTF-8/books/handbook/printing/chapter.sgml From owner-cvs-all@FreeBSD.ORG Wed Feb 27 08:44:36 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 49F31106566B; Wed, 27 Feb 2008 08:44:36 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 37EB713C428; Wed, 27 Feb 2008 08:44:36 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R8iadC052483; Wed, 27 Feb 2008 08:44:36 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R8ianP052482; Wed, 27 Feb 2008 08:44:36 GMT (envelope-from lth) Message-Id: <200802270844.m1R8ianP052482@repoman.freebsd.org> From: Lars Thegler Date: Wed, 27 Feb 2008 08:44:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules ports MOVED ports/www Makefile ports/www/libhttpd-persistent Makefile distinfo pkg-descr pkg-plist ports/www/libhttpd-persistent/files patch-makegen_library_unix.mm X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 08:44:36 -0000 lth 2008-02-27 08:44:35 UTC FreeBSD ports repository Modified files: . modules . MOVED www Makefile Removed files: www/libhttpd-persistent Makefile distinfo pkg-descr pkg-plist www/libhttpd-persistent/files patch-makegen_library_unix.mm Log: - Removed www/libhttpd-persistent (expired) 2007-11-04 www/libhttpd-persistent: Development stalled for years, outdated. Revision Changes Path 1.19440 +0 -1 CVSROOT/modules 1.1543 +2 -1 ports/MOVED 1.1987 +0 -1 ports/www/Makefile 1.9 +0 -51 ports/www/libhttpd-persistent/Makefile (dead) 1.6 +0 -3 ports/www/libhttpd-persistent/distinfo (dead) 1.2 +0 -28 ports/www/libhttpd-persistent/files/patch-makegen_library_unix.mm (dead) 1.2 +0 -9 ports/www/libhttpd-persistent/pkg-descr (dead) 1.4 +0 -8 ports/www/libhttpd-persistent/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Wed Feb 27 08:47:14 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AD96C106566B; Wed, 27 Feb 2008 08:47:14 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8588613C45A; Wed, 27 Feb 2008 08:47:14 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R8lEoO058906; Wed, 27 Feb 2008 08:47:14 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R8lERD058893; Wed, 27 Feb 2008 08:47:14 GMT (envelope-from scottl) Message-Id: <200802270847.m1R8lERD058893@repoman.freebsd.org> From: Scott Long Date: Wed, 27 Feb 2008 08:47:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/cam cam_xpt.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 08:47:14 -0000 scottl 2008-02-27 08:47:14 UTC FreeBSD src repository Modified files: sys/cam cam_xpt.c Log: When probing a newly found device, don't automatically assume that the device supports retrieving a serial number. Instead, first query the list of VPD pages it does support, and only query the serial number if it's supported, else silently move on. This eliminates a lot of noise during verbose booting, and will likely eliminate the need for most NOSERIAL quirks. Revision Changes Path 1.197 +95 -36 src/sys/cam/cam_xpt.c From owner-cvs-all@FreeBSD.ORG Wed Feb 27 08:57:41 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA819106566B; Wed, 27 Feb 2008 08:57:41 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 928A013C44B; Wed, 27 Feb 2008 08:57:41 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R8vf60061870; Wed, 27 Feb 2008 08:57:41 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R8vfHJ061869; Wed, 27 Feb 2008 08:57:41 GMT (envelope-from miwi) Message-Id: <200802270857.m1R8vfHJ061869@repoman.freebsd.org> From: Martin Wilke Date: Wed, 27 Feb 2008 08:57:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/p5-Test-URI Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 08:57:41 -0000 miwi 2008-02-27 08:57:41 UTC FreeBSD ports repository Modified files: net/p5-Test-URI Makefile distinfo Log: - Update to 1.08 PR: 121116 Submitted by: TAKAHASHI Kaoru (maintainer) Revision Changes Path 1.2 +2 -2 ports/net/p5-Test-URI/Makefile 1.2 +3 -3 ports/net/p5-Test-URI/distinfo From owner-cvs-all@FreeBSD.ORG Wed Feb 27 08:59:25 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3FC951065674; Wed, 27 Feb 2008 08:59:25 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1826613C459; Wed, 27 Feb 2008 08:59:25 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R8xOVM061962; Wed, 27 Feb 2008 08:59:24 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R8xOJi061961; Wed, 27 Feb 2008 08:59:24 GMT (envelope-from miwi) Message-Id: <200802270859.m1R8xOJi061961@repoman.freebsd.org> From: Martin Wilke Date: Wed, 27 Feb 2008 08:59:24 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/rtpbreak Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 08:59:25 -0000 miwi 2008-02-27 08:59:24 UTC FreeBSD ports repository Modified files: net/rtpbreak Makefile distinfo Log: - Update to 1.3 PR: 121128 Submitted by: Prudhvi Krishna (maintainer) Revision Changes Path 1.2 +3 -4 ports/net/rtpbreak/Makefile 1.2 +3 -3 ports/net/rtpbreak/distinfo From owner-cvs-all@FreeBSD.ORG Wed Feb 27 09:00:20 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E02C7106566C; Wed, 27 Feb 2008 09:00:20 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B8D0113C4E1; Wed, 27 Feb 2008 09:00:20 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R90KNZ062082; Wed, 27 Feb 2008 09:00:20 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R90KLN062081; Wed, 27 Feb 2008 09:00:20 GMT (envelope-from miwi) Message-Id: <200802270900.m1R90KLN062081@repoman.freebsd.org> From: Martin Wilke Date: Wed, 27 Feb 2008 09:00:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/databases/memcachedb Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 09:00:21 -0000 miwi 2008-02-27 09:00:20 UTC FreeBSD ports repository Modified files: databases/memcachedb Makefile distinfo Log: - Update to 1.0.1 beta PR: 120988 Submitted by: Gea-Suan Lin (maintainer) Revision Changes Path 1.7 +1 -4 ports/databases/memcachedb/Makefile 1.6 +3 -3 ports/databases/memcachedb/distinfo From owner-cvs-all@FreeBSD.ORG Wed Feb 27 09:02:13 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E9E4E1065677; Wed, 27 Feb 2008 09:02:13 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C220913C458; Wed, 27 Feb 2008 09:02:13 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R92DPm062142; Wed, 27 Feb 2008 09:02:13 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R92DQr062141; Wed, 27 Feb 2008 09:02:13 GMT (envelope-from miwi) Message-Id: <200802270902.m1R92DQr062141@repoman.freebsd.org> From: Martin Wilke Date: Wed, 27 Feb 2008 09:02:13 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/uif2iso Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 09:02:14 -0000 miwi 2008-02-27 09:02:13 UTC FreeBSD ports repository Modified files: sysutils/uif2iso Makefile distinfo Log: - Update to 1.1.2 PR: 121135 Submitted by: Martin Tournoij (maintainer) Revision Changes Path 1.2 +6 -3 ports/sysutils/uif2iso/Makefile 1.2 +3 -3 ports/sysutils/uif2iso/distinfo From owner-cvs-all@FreeBSD.ORG Wed Feb 27 09:03:12 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 62AED106566B; Wed, 27 Feb 2008 09:03:12 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3B40113C447; Wed, 27 Feb 2008 09:03:12 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R93CQ8063381; Wed, 27 Feb 2008 09:03:12 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R93Cg3063380; Wed, 27 Feb 2008 09:03:12 GMT (envelope-from miwi) Message-Id: <200802270903.m1R93Cg3063380@repoman.freebsd.org> From: Martin Wilke Date: Wed, 27 Feb 2008 09:03:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/daa2iso Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 09:03:12 -0000 miwi 2008-02-27 09:03:12 UTC FreeBSD ports repository Modified files: sysutils/daa2iso Makefile distinfo Log: - Update to 121136 PR: 121136 Submitted by: Martin Tournoij (maintainer) Revision Changes Path 1.2 +6 -3 ports/sysutils/daa2iso/Makefile 1.2 +3 -3 ports/sysutils/daa2iso/distinfo From owner-cvs-all@FreeBSD.ORG Wed Feb 27 09:33:43 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 522E11065671; Wed, 27 Feb 2008 09:33:43 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2C47513C4FD; Wed, 27 Feb 2008 09:33:43 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1R9Xgf1064359; Wed, 27 Feb 2008 09:33:42 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1R9Xg5X064358; Wed, 27 Feb 2008 09:33:42 GMT (envelope-from miwi) Message-Id: <200802270933.m1R9Xg5X064358@repoman.freebsd.org> From: Martin Wilke Date: Wed, 27 Feb 2008 09:33:42 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 09:33:43 -0000 miwi 2008-02-27 09:33:42 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: - Mark mail/up-imapproxy as safe Submitted by: Abdullah Ibn Hamad Al-Marri Revision Changes Path 1.1570 +3 -3 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Wed Feb 27 10:13:00 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9315D1065675; Wed, 27 Feb 2008 10:13:00 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6D9D413C45D; Wed, 27 Feb 2008 10:13:00 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RAD0jS066766; Wed, 27 Feb 2008 10:13:00 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RACwBT066763; Wed, 27 Feb 2008 10:12:58 GMT (envelope-from ehaupt) Message-Id: <200802271012.m1RACwBT066763@repoman.freebsd.org> From: Emanuel Haupt Date: Wed, 27 Feb 2008 10:12:56 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/wmbluecpu Makefile ports/sysutils/wmbluecpu/files cpu_freebsd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 10:13:00 -0000 ehaupt 2008-02-27 10:12:56 UTC FreeBSD ports repository Modified files: sysutils/wmbluecpu Makefile sysutils/wmbluecpu/files cpu_freebsd.c Log: sysutils/wmbluecpu builds under 8.0-CURRENT but exits as soon as run. It fails due to a legacy kvm call being changed. (8.0 uses a sysctl, before used a kvm call). This patch fixes that problem. Pass maintainership to submitter. PR: 121133 Submitted by: benjsc Revision Changes Path 1.6 +2 -2 ports/sysutils/wmbluecpu/Makefile 1.3 +20 -16 ports/sysutils/wmbluecpu/files/cpu_freebsd.c From owner-cvs-all@FreeBSD.ORG Wed Feb 27 10:14:58 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 56BA7106566C; Wed, 27 Feb 2008 10:14:58 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 31E8A13C4E5; Wed, 27 Feb 2008 10:14:58 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RAEwSK066826; Wed, 27 Feb 2008 10:14:58 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RAEw4k066825; Wed, 27 Feb 2008 10:14:58 GMT (envelope-from remko) Message-Id: <200802271014.m1RAEw4k066825@repoman.freebsd.org> From: Remko Lodder Date: Wed, 27 Feb 2008 10:14:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/drm drm_pciids.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 10:14:58 -0000 remko 2008-02-27 10:14:58 UTC FreeBSD src repository Modified files: sys/dev/drm drm_pciids.h Log: Add support for the 965GM. PR: kern/120978 Submitted by: Dominic Fandrey Approved by: imp (mentor, implicit), anholt (drm maintainer) MFC after: 3 days Revision Changes Path 1.8 +1 -0 src/sys/dev/drm/drm_pciids.h From owner-cvs-all@FreeBSD.ORG Wed Feb 27 10:17:53 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9C6E0106566B; Wed, 27 Feb 2008 10:17:53 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 77C5F13C461; Wed, 27 Feb 2008 10:17:53 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RAHrJN066961; Wed, 27 Feb 2008 10:17:53 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RAHrdi066960; Wed, 27 Feb 2008 10:17:53 GMT (envelope-from gabor) Message-Id: <200802271017.m1RAHrdi066960@repoman.freebsd.org> From: Gabor Kovesdan Date: Wed, 27 Feb 2008 10:17:53 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/share/sgml man-refs.ent X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 10:17:53 -0000 gabor 2008-02-27 10:17:53 UTC FreeBSD doc repository Modified files: share/sgml man-refs.ent Log: - Add man.rwlock.9 and man.vn.fullpath.9 man page entities Revision Changes Path 1.450 +2 -0 doc/share/sgml/man-refs.ent From owner-cvs-all@FreeBSD.ORG Wed Feb 27 10:23:53 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 61E701065671; Wed, 27 Feb 2008 10:23:53 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.freebsd.org (Postfix) with ESMTP id 1A03913C448; Wed, 27 Feb 2008 10:23:52 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id B814F2094; Wed, 27 Feb 2008 11:23:46 +0100 (CET) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: -0.3/3.0 X-Spam-Checker-Version: SpamAssassin 3.2.4 (2008-01-01) on tim.des.no Received: from ds4.des.no (des.no [80.203.243.180]) by smtp.des.no (Postfix) with ESMTP id B3DD3207F; Wed, 27 Feb 2008 11:23:45 +0100 (CET) From: =?utf-8?Q?Dag-Erling_Sm=C3=B8rgrav?= To: obrien@FreeBSD.org References: <200802250855.m1P8t3w6052042@repoman.freebsd.org> <47C29A07.2070908@FreeBSD.org> <86d4qli8a1.fsf@ds4.des.no> <20080226123107.N90776@fledge.watson.org> <86r6ezswnu.fsf@ds4.des.no> <20080226132155.W90776@fledge.watson.org> <20080226164608.GF23211@dragon.NUXI.org> Date: Wed, 27 Feb 2008 11:23:44 +0100 In-Reply-To: <20080226164608.GF23211@dragon.NUXI.org> (David O'Brien's message of "Tue\, 26 Feb 2008 08\:46\:08 -0800") Message-ID: <8663war93j.fsf@ds4.des.no> User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/23.0.60 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Cc: cvs-src@FreeBSD.org, Kris Kennaway , src-committers@FreeBSD.org, Robert Watson , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/fs/nullfs null_vfsops.c src/sys/fs/nwfs nwfs_vfsops.c src/sys/fs/smbfs smbfs_vfsops.c src/sys/ufs/ufs quota.h ufs_quota.c ufs_vfsops.c src/sys/kern vfs_default.c vfs_vnops.c vnode_if.src src/sys/sys mount.h vnode.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 10:23:53 -0000 "David O'Brien" writes: > Uggg!! Very sorry about that - I was using GENERIC so I could keep an up > to date bootable kernel between the commits. GENERIC was broken as well, unionfs is built as a module. DES --=20 Dag-Erling Sm=C3=B8rgrav - des@des.no From owner-cvs-all@FreeBSD.ORG Wed Feb 27 10:28:38 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 80F481065676; Wed, 27 Feb 2008 10:28:38 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5C72613C447; Wed, 27 Feb 2008 10:28:38 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RASb0j067352; Wed, 27 Feb 2008 10:28:37 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RASbDV067351; Wed, 27 Feb 2008 10:28:37 GMT (envelope-from gabor) Message-Id: <200802271028.m1RASbDV067351@repoman.freebsd.org> From: Gabor Kovesdan Date: Wed, 27 Feb 2008 10:28:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/astro/xearth/files freebsd.committers.markers X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 10:28:38 -0000 gabor 2008-02-27 10:28:37 UTC FreeBSD ports repository Modified files: astro/xearth/files freebsd.committers.markers Log: - Correct carvay's coordinates - Sort Submitted by: carvay Revision Changes Path 1.390 +8 -8 ports/astro/xearth/files/freebsd.committers.markers From owner-cvs-all@FreeBSD.ORG Wed Feb 27 10:54:43 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 53C701065674; Wed, 27 Feb 2008 10:54:43 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 7D32A8FC16; Wed, 27 Feb 2008 10:54:43 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RAWfYJ067538; Wed, 27 Feb 2008 10:32:41 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RAWfLT067537; Wed, 27 Feb 2008 10:32:41 GMT (envelope-from gabor) Message-Id: <200802271032.m1RAWfLT067537@repoman.freebsd.org> From: Gabor Kovesdan Date: Wed, 27 Feb 2008 10:32:41 +0000 (UTC) To: doc-committers@freebsd.org, cvs-doc@freebsd.org, cvs-all@freebsd.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/share/sgml man-refs.ent X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 10:54:43 -0000 gabor 2008-02-27 10:32:41 UTC FreeBSD doc repository Modified files: share/sgml man-refs.ent Log: - Oooops, I've forgotten the alphabet. Fix the order of vn.fullpath.9, added in the last commit. Pointed out by: brueffer Revision Changes Path 1.451 +1 -1 doc/share/sgml/man-refs.ent From owner-cvs-all@FreeBSD.ORG Wed Feb 27 10:54:43 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7DCAB1065675; Wed, 27 Feb 2008 10:54:43 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id A8AFD8FC17; Wed, 27 Feb 2008 10:54:43 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RAUZas067484; Wed, 27 Feb 2008 10:30:35 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RAUZjd067483; Wed, 27 Feb 2008 10:30:35 GMT (envelope-from miwi) Message-Id: <200802271030.m1RAUZjd067483@repoman.freebsd.org> From: Martin Wilke Date: Wed, 27 Feb 2008 10:30:35 +0000 (UTC) To: ports-committers@freebsd.org, cvs-ports@freebsd.org, cvs-all@freebsd.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-mgmt/nagios-devel Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 10:54:43 -0000 miwi 2008-02-27 10:30:35 UTC FreeBSD ports repository Modified files: net-mgmt/nagios-devel Makefile distinfo Log: - Update to 3.0.r3 PR: 121129 Submitted by: Jarrod Sayers (maintainer) Revision Changes Path 1.10 +1 -1 ports/net-mgmt/nagios-devel/Makefile 1.8 +3 -3 ports/net-mgmt/nagios-devel/distinfo From owner-cvs-all@FreeBSD.ORG Wed Feb 27 10:54:43 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A6981106568D; Wed, 27 Feb 2008 10:54:43 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id D19B68FC18; Wed, 27 Feb 2008 10:54:43 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RAdpTV067969; Wed, 27 Feb 2008 10:39:51 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RAdpp3067968; Wed, 27 Feb 2008 10:39:51 GMT (envelope-from gabor) Message-Id: <200802271039.m1RAdpp3067968@repoman.freebsd.org> From: Gabor Kovesdan Date: Wed, 27 Feb 2008 10:39:51 +0000 (UTC) To: ports-committers@freebsd.org, cvs-ports@freebsd.org, cvs-all@freebsd.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/p5-Net-Write Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 10:54:44 -0000 gabor 2008-02-27 10:39:51 UTC FreeBSD ports repository Modified files: net/p5-Net-Write Makefile distinfo Log: - Update to 1.02 - Better adjustment of dependencies PR: ports/121023 Submitted by: Felippe de Meirelles Motta Approved by: maintainer Revision Changes Path 1.6 +2 -3 ports/net/p5-Net-Write/Makefile 1.3 +3 -3 ports/net/p5-Net-Write/distinfo From owner-cvs-all@FreeBSD.ORG Wed Feb 27 10:54:44 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CDCCF106566B; Wed, 27 Feb 2008 10:54:43 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 06DF58FC19; Wed, 27 Feb 2008 10:54:44 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RAY1HM067655; Wed, 27 Feb 2008 10:34:01 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RAY12A067654; Wed, 27 Feb 2008 10:34:01 GMT (envelope-from miwi) Message-Id: <200802271034.m1RAY12A067654@repoman.freebsd.org> From: Martin Wilke Date: Wed, 27 Feb 2008 10:34:01 +0000 (UTC) To: ports-committers@freebsd.org, cvs-ports@freebsd.org, cvs-all@freebsd.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/databases/squirrel-sql Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 10:54:44 -0000 miwi 2008-02-27 10:34:01 UTC FreeBSD ports repository Modified files: databases/squirrel-sql Makefile distinfo pkg-plist Log: - Update to 2.6.4 - Take over maintainership Submitted by: Alex Pivovarov via ports@ Revision Changes Path 1.8 +4 -4 ports/databases/squirrel-sql/Makefile 1.7 +3 -3 ports/databases/squirrel-sql/distinfo 1.8 +17 -8 ports/databases/squirrel-sql/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Feb 27 10:54:44 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 04A2C106566C; Wed, 27 Feb 2008 10:54:44 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 2DE998FC1A; Wed, 27 Feb 2008 10:54:44 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RAfNOP068075; Wed, 27 Feb 2008 10:41:23 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RAfNpv068074; Wed, 27 Feb 2008 10:41:23 GMT (envelope-from gabor) Message-Id: <200802271041.m1RAfNpv068074@repoman.freebsd.org> From: Gabor Kovesdan Date: Wed, 27 Feb 2008 10:41:23 +0000 (UTC) To: ports-committers@freebsd.org, cvs-ports@freebsd.org, cvs-all@freebsd.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/p5-Net-Google-AuthSub Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 10:54:44 -0000 gabor 2008-02-27 10:41:23 UTC FreeBSD ports repository Modified files: net/p5-Net-Google-AuthSub Makefile pkg-plist Log: - Fix plist - Fix dependencies PR: ports/121127 Submitted by: Felippe de Meirelles Motta (maintainer) Reported by: pointyhat (via pav) Pointyhat to: gabor Revision Changes Path 1.2 +3 -1 ports/net/p5-Net-Google-AuthSub/Makefile 1.2 +3 -1 ports/net/p5-Net-Google-AuthSub/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Feb 27 10:54:44 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 31AF3106569E; Wed, 27 Feb 2008 10:54:44 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 588F98FC1B; Wed, 27 Feb 2008 10:54:44 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RAcSgw067875; Wed, 27 Feb 2008 10:38:28 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RAcSZp067874; Wed, 27 Feb 2008 10:38:28 GMT (envelope-from gabor) Message-Id: <200802271038.m1RAcSZp067874@repoman.freebsd.org> From: Gabor Kovesdan Date: Wed, 27 Feb 2008 10:38:28 +0000 (UTC) To: ports-committers@freebsd.org, cvs-ports@freebsd.org, cvs-all@freebsd.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/p5-CGI-Application-Plugin-HtmlTidy Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 10:54:45 -0000 gabor 2008-02-27 10:38:28 UTC FreeBSD ports repository Modified files: www/p5-CGI-Application-Plugin-HtmlTidy Makefile distinfo Log: - Update to 1.02 - Better adjustment of dependencies - Style PR: ports/121005 Submitted by: www/p5-CGI-Application-Plugin-HtmlTidy Approved by: maintainer Revision Changes Path 1.4 +4 -5 ports/www/p5-CGI-Application-Plugin-HtmlTidy/Makefile 1.3 +3 -3 ports/www/p5-CGI-Application-Plugin-HtmlTidy/distinfo From owner-cvs-all@FreeBSD.ORG Wed Feb 27 10:54:45 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5E2D610656E1; Wed, 27 Feb 2008 10:54:44 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 81EAA8FC1C; Wed, 27 Feb 2008 10:54:44 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RAk2YS068296; Wed, 27 Feb 2008 10:46:02 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RAk17k068293; Wed, 27 Feb 2008 10:46:01 GMT (envelope-from gabor) Message-Id: <200802271046.m1RAk17k068293@repoman.freebsd.org> From: Gabor Kovesdan Date: Wed, 27 Feb 2008 10:46:00 +0000 (UTC) To: ports-committers@freebsd.org, cvs-ports@freebsd.org, cvs-all@freebsd.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/p5-CGI-Application-Server Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 10:54:45 -0000 gabor 2008-02-27 10:46:00 UTC FreeBSD ports repository Modified files: www/p5-CGI-Application-Server Makefile distinfo pkg-plist Log: - Update to 0.050 - Better adjustment of dependencies - Use PERL_CONFIGURE instead of PERL_MODBUILD PR: ports/121006 Submitted by: Felippe de Meirelles Motta Approved by: maintainer Revision Changes Path 1.4 +10 -11 ports/www/p5-CGI-Application-Server/Makefile 1.3 +3 -3 ports/www/p5-CGI-Application-Server/distinfo 1.2 +4 -0 ports/www/p5-CGI-Application-Server/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Feb 27 10:54:45 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8FC2C106572E; Wed, 27 Feb 2008 10:54:44 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id AFFC28FC1D; Wed, 27 Feb 2008 10:54:44 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RAaw4R067818; Wed, 27 Feb 2008 10:36:58 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RAawve067817; Wed, 27 Feb 2008 10:36:58 GMT (envelope-from gabor) Message-Id: <200802271036.m1RAawve067817@repoman.freebsd.org> From: Gabor Kovesdan Date: Wed, 27 Feb 2008 10:36:58 +0000 (UTC) To: ports-committers@freebsd.org, cvs-ports@freebsd.org, cvs-all@freebsd.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/p5-CGI-Application-Plugin-DevPopup Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 10:54:45 -0000 gabor 2008-02-27 10:36:57 UTC FreeBSD ports repository Modified files: www/p5-CGI-Application-Plugin-DevPopup Makefile distinfo pkg-plist Log: - Update to 1.00 - Better adjustment of dependencies - Style PR: ports/121004 Submitted by: Felippe de Meirelles Motta Approved by: maintainer Revision Changes Path 1.4 +5 -5 ports/www/p5-CGI-Application-Plugin-DevPopup/Makefile 1.3 +3 -3 ports/www/p5-CGI-Application-Plugin-DevPopup/distinfo 1.2 +3 -0 ports/www/p5-CGI-Application-Plugin-DevPopup/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Feb 27 10:54:45 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BE8281065770; Wed, 27 Feb 2008 10:54:44 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id DC6FE8FC1E; Wed, 27 Feb 2008 10:54:44 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RAdhi3067940; Wed, 27 Feb 2008 10:39:43 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RAdh7O067939; Wed, 27 Feb 2008 10:39:43 GMT (envelope-from ehaupt) Message-Id: <200802271039.m1RAdh7O067939@repoman.freebsd.org> From: Emanuel Haupt Date: Wed, 27 Feb 2008 10:39:43 +0000 (UTC) To: ports-committers@freebsd.org, cvs-ports@freebsd.org, cvs-all@freebsd.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/wmwave Makefile ports/net/wmwave/files Makefile patch-wmwave.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 10:54:46 -0000 ehaupt 2008-02-27 10:39:43 UTC FreeBSD ports repository Modified files: net/wmwave Makefile net/wmwave/files patch-wmwave.c Removed files: net/wmwave/files Makefile Log: - Fix build on ${OSVERSION} >= 700042 - The app now makes use of the net80211 framework so the port will work with any wireless driver - Pass maintainership to submitter - Bring Makefile style up to date (self) PR: 121130 Submitted by: benjsc Revision Changes Path 1.12 +13 -13 ports/net/wmwave/Makefile 1.2 +0 -19 ports/net/wmwave/files/Makefile (dead) 1.6 +120 -580 ports/net/wmwave/files/patch-wmwave.c From owner-cvs-all@FreeBSD.ORG Wed Feb 27 10:57:51 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AC79D106566C; Wed, 27 Feb 2008 10:57:51 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BFD8A8FC21; Wed, 27 Feb 2008 10:57:51 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RAvpRX068644; Wed, 27 Feb 2008 10:57:51 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RAvppM068643; Wed, 27 Feb 2008 10:57:51 GMT (envelope-from remko) Message-Id: <200802271057.m1RAvppM068643@repoman.freebsd.org> From: Remko Lodder Date: Wed, 27 Feb 2008 10:57:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man4 uscanner.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 10:57:51 -0000 remko 2008-02-27 10:57:51 UTC FreeBSD src repository Modified files: share/man/man4 uscanner.4 Log: Add the Epson - CX5400 to the supported lists of epson scanners. Noticed by: simon Forgotten by: me Revision Changes Path 1.32 +3 -3 src/share/man/man4/uscanner.4 From owner-cvs-all@FreeBSD.ORG Wed Feb 27 11:09:40 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 321201065670; Wed, 27 Feb 2008 11:09:40 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D4F208FC1C; Wed, 27 Feb 2008 11:09:39 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RB9dil070234; Wed, 27 Feb 2008 11:09:39 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RB9dUq070233; Wed, 27 Feb 2008 11:09:39 GMT (envelope-from arved) Message-Id: <200802271109.m1RB9dUq070233@repoman.freebsd.org> From: Tilman Linneweh Date: Wed, 27 Feb 2008 11:09:39 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/libccid Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 11:09:40 -0000 arved 2008-02-27 11:09:39 UTC FreeBSD ports repository Modified files: devel/libccid Makefile distinfo Log: Update to 1.3.5 Revision Changes Path 1.15 +2 -2 ports/devel/libccid/Makefile 1.12 +3 -3 ports/devel/libccid/distinfo From owner-cvs-all@FreeBSD.ORG Wed Feb 27 12:02:19 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 82D521065676; Wed, 27 Feb 2008 12:02:19 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6BDCC8FC22; Wed, 27 Feb 2008 12:02:19 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RC2ISh072007; Wed, 27 Feb 2008 12:02:18 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RC2IFW072006; Wed, 27 Feb 2008 12:02:18 GMT (envelope-from ehaupt) Message-Id: <200802271202.m1RC2IFW072006@repoman.freebsd.org> From: Emanuel Haupt Date: Wed, 27 Feb 2008 12:02:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/gpodder Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 12:02:19 -0000 ehaupt 2008-02-27 12:02:18 UTC FreeBSD ports repository Modified files: multimedia/gpodder Makefile distinfo pkg-plist Log: Update to 0.11.0 PR: 121106 Submitted by: Chess Griffin (maintainer) Revision Changes Path 1.6 +1 -1 ports/multimedia/gpodder/Makefile 1.4 +3 -3 ports/multimedia/gpodder/distinfo 1.4 +4 -2 ports/multimedia/gpodder/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Feb 27 12:10:54 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C30B3106566C; Wed, 27 Feb 2008 12:10:54 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AD3F68FC1A; Wed, 27 Feb 2008 12:10:54 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RCAsrW073503; Wed, 27 Feb 2008 12:10:54 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RCAs1g073502; Wed, 27 Feb 2008 12:10:54 GMT (envelope-from ehaupt) Message-Id: <200802271210.m1RCAs1g073502@repoman.freebsd.org> From: Emanuel Haupt Date: Wed, 27 Feb 2008 12:10:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/dhcpcd Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 12:10:55 -0000 ehaupt 2008-02-27 12:10:54 UTC FreeBSD ports repository Modified files: net/dhcpcd Makefile distinfo pkg-descr Log: - Update to 3.2.3 - Update WWW PR: 121076 Submitted by: Roy Marples (maintainer) Revision Changes Path 1.3 +13 -14 ports/net/dhcpcd/Makefile 1.2 +3 -3 ports/net/dhcpcd/distinfo 1.2 +1 -1 ports/net/dhcpcd/pkg-descr From owner-cvs-all@FreeBSD.ORG Wed Feb 27 12:25:35 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4B9481065674; Wed, 27 Feb 2008 12:25:35 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3B4858FC14; Wed, 27 Feb 2008 12:25:35 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RCPZgu073977; Wed, 27 Feb 2008 12:25:35 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RCPYHQ073976; Wed, 27 Feb 2008 12:25:34 GMT (envelope-from ehaupt) Message-Id: <200802271225.m1RCPYHQ073976@repoman.freebsd.org> From: Emanuel Haupt Date: Wed, 27 Feb 2008 12:25:34 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/gosa Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 12:25:35 -0000 ehaupt 2008-02-27 12:25:34 UTC FreeBSD ports repository Modified files: sysutils/gosa Makefile Log: - Add missing PHP dependency (posix) - Bump PORTREVISION PR: 121138 Submitted by: Rob Evers Approved by: Denis Shaposhnikov (maintainer) Revision Changes Path 1.3 +2 -1 ports/sysutils/gosa/Makefile From owner-cvs-all@FreeBSD.ORG Wed Feb 27 13:52:33 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EC16E1065670; Wed, 27 Feb 2008 13:52:33 +0000 (UTC) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E4DA68FC14; Wed, 27 Feb 2008 13:52:33 +0000 (UTC) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RDqX7g086668; Wed, 27 Feb 2008 13:52:33 GMT (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RDqXeL086667; Wed, 27 Feb 2008 13:52:33 GMT (envelope-from dwmalone) Message-Id: <200802271352.m1RDqXeL086667@repoman.freebsd.org> From: David Malone Date: Wed, 27 Feb 2008 13:52:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/ipfw ipfw.8 ipfw2.c src/sys/netinet ip_dummynet.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 13:52:34 -0000 dwmalone 2008-02-27 13:52:33 UTC FreeBSD src repository Modified files: sbin/ipfw ipfw.8 ipfw2.c sys/netinet ip_dummynet.c Log: Dummynet has a limit of 100 slots queue size (or 1MB, if you give the limit in bytes) hard coded into both the kernel and userland. Make both these limits a sysctl, so it is easy to change the limit. If the userland part of ipfw finds that the sysctls don't exist, it will just fall back to the traditional limits. (100 packets is quite a small limit these days. If you want to test TCP at 100Mbps, 100 packets can only accommodate a DBP of 12ms.) Note these sysctls in the man page and warn against increasing them without thinking first. MFC after: 3 weeks Revision Changes Path 1.211 +14 -0 src/sbin/ipfw/ipfw.8 1.118 +18 -5 src/sbin/ipfw/ipfw2.c 1.115 +9 -2 src/sys/netinet/ip_dummynet.c From owner-cvs-all@FreeBSD.ORG Wed Feb 27 14:03:06 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F3FA81065672; Wed, 27 Feb 2008 14:03:05 +0000 (UTC) (envelope-from gallatin@cs.duke.edu) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.freebsd.org (Postfix) with ESMTP id B5A4D8FC26; Wed, 27 Feb 2008 14:03:05 +0000 (UTC) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.14.0/8.14.0) with ESMTP id m1RE1gao027477 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 27 Feb 2008 09:01:42 -0500 (EST) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.12.9p2/8.12.9/Submit) id m1RE1DKG048219; Wed, 27 Feb 2008 09:01:13 -0500 (EST) (envelope-from gallatin) Date: Wed, 27 Feb 2008 09:01:13 -0500 From: Andrew Gallatin To: Sam Leffler Message-ID: <20080227090113.A48182@grasshopper.cs.duke.edu> References: <200802260302.m1Q32KOT081487@repoman.freebsd.org> <200802261133.00942.jhb@freebsd.org> <47C4A083.2050602@errno.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <47C4A083.2050602@errno.com>; from sam@errno.com on Tue, Feb 26, 2008 at 03:27:40PM -0800 X-Operating-System: FreeBSD 4.9-RELEASE-p1 on an i386 Cc: src-committers@FreeBSD.org, Kip Macy , John Baldwin , Kip Macy , cvs-all@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/cxgb bin2h.pl cxgb_main.c cxgb_t3fw.c cxgb_t3fw.h t3fw-5.0.0.bin.gz.uu src/sys/modules/cxgb Makefile src/sys/modules/cxgb/cxgb Makefile src/sys/modules/cxgb/cxgb_t3fw Makefile src/sys/conf NOTES files X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 14:03:06 -0000 Sam Leffler [sam@errno.com] wrote: > Huh? What does "static linking" mean? If you're looking for an example > of a firmware image being embedded in a kernel look at the npe firmware > used by xscale. Kip, Before spending time on this, be warned that I tried this for mxge last year, and I gave up because it was such a headache. The final straw was that building the firmware into a .fwo file via a files file rule doesn't work on platforms like ia64 due some toolchain problems. Specifically, there was no way to get the constant-gp flag set on an ld -b binary image, which caused the final kernel link command to explode. Rather than use the .fwo method, I committed some .c shims (see dev/mxge/mxge_eth_z8e.c) which just #include my firmware header files. This avoids the linking problems, and turns out to be much, much easier to work with than the fw_stub files file method. Drew From owner-cvs-all@FreeBSD.ORG Wed Feb 27 15:04:20 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8E1AC1065672; Wed, 27 Feb 2008 15:04:20 +0000 (UTC) (envelope-from obrien@NUXI.org) Received: from dragon.nuxi.org (trang.nuxi.org [74.95.12.85]) by mx1.freebsd.org (Postfix) with ESMTP id 352E48FC22; Wed, 27 Feb 2008 15:04:15 +0000 (UTC) (envelope-from obrien@NUXI.org) Received: from dragon.nuxi.org (obrien@localhost [127.0.0.1]) by dragon.nuxi.org (8.14.1/8.14.1) with ESMTP id m1RF4C5N048177; Wed, 27 Feb 2008 07:04:12 -0800 (PST) (envelope-from obrien@dragon.nuxi.org) Received: (from obrien@localhost) by dragon.nuxi.org (8.14.2/8.14.1/Submit) id m1RF47mR048172; Wed, 27 Feb 2008 07:04:07 -0800 (PST) (envelope-from obrien) Date: Wed, 27 Feb 2008 07:04:07 -0800 From: "David O'Brien" To: Dag-Erling =?unknown-8bit?B?U23DuHJncmF2?= Message-ID: <20080227150407.GA48137@dragon.NUXI.org> References: <200802250855.m1P8t3w6052042@repoman.freebsd.org> <47C29A07.2070908@FreeBSD.org> <86d4qli8a1.fsf@ds4.des.no> <20080226123107.N90776@fledge.watson.org> <86r6ezswnu.fsf@ds4.des.no> <20080226132155.W90776@fledge.watson.org> <20080226164608.GF23211@dragon.NUXI.org> <8663war93j.fsf@ds4.des.no> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <8663war93j.fsf@ds4.des.no> X-Operating-System: FreeBSD 8.0-CURRENT User-Agent: Mutt/1.5.16 (2007-06-09) Cc: cvs-src@FreeBSD.org, Kris Kennaway , src-committers@FreeBSD.org, Robert Watson , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/fs/nullfs null_vfsops.c src/sys/fs/nwfs nwfs_vfsops.c src/sys/fs/smbfs smbfs_vfsops.c src/sys/ufs/ufs quota.h ufs_quota.c ufs_vfsops.c src/sys/kern vfs_default.c vfs_vnops.c vnode_if.src src/sys/sys mount.h vnode.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 15:04:20 -0000 On Wed, Feb 27, 2008 at 11:23:44AM +0100, Dag-Erling Smrgrav wrote: > "David O'Brien" writes: > > Uggg!! Very sorry about that - I was using GENERIC so I could keep an up > > to date bootable kernel between the commits. > > GENERIC was broken as well, unionfs is built as a module. OK, so I was using 'make kernel' and installed just that to boot with. -- -- David (obrien@FreeBSD.org) From owner-cvs-all@FreeBSD.ORG Wed Feb 27 15:10:55 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 961251065671; Wed, 27 Feb 2008 15:10:55 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 92D958FC16; Wed, 27 Feb 2008 15:10:55 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RFAt8c091926; Wed, 27 Feb 2008 15:10:55 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RFAtDt091925; Wed, 27 Feb 2008 15:10:55 GMT (envelope-from ehaupt) Message-Id: <200802271510.m1RFAtDt091925@repoman.freebsd.org> From: Emanuel Haupt Date: Wed, 27 Feb 2008 15:10:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/Mk bsd.sites.mk ports/databases/jakarta-commons-dbutils Makefile ports/devel/jakarta-commons-chain Makefile ports/devel/jakarta-commons-configuration Makefile ports/devel/jakarta-commons-daemon Makefile ports/devel/jakarta-commons-io Makefile ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 15:10:55 -0000 ehaupt 2008-02-27 15:10:54 UTC FreeBSD ports repository Modified files: Mk bsd.sites.mk databases/jakarta-commons-dbutils Makefile devel/jakarta-commons-chain Makefile devel/jakarta-commons-configuration Makefile devel/jakarta-commons-daemon Makefile devel/jakarta-commons-io Makefile devel/jakarta-commons-jxpath Makefile devel/jakarta-commons-modeler Makefile java/jakarta-commons-beanutils Makefile java/jakarta-commons-cli Makefile java/jakarta-commons-codec Makefile java/jakarta-commons-collections Makefile java/jakarta-commons-dbcp Makefile java/jakarta-commons-discovery Makefile java/jakarta-commons-httpclient Makefile java/jakarta-commons-lang Makefile java/jakarta-commons-logging Makefile java/jakarta-commons-pool Makefile java/jakarta-commons-primitives Makefile lang/jakarta-commons-jelly Makefile math/jakarta-commons-math Makefile net/jakarta-commons-net Makefile textproc/jakarta-commons-digester Makefile Log: Apache Commons project are no longer hosted under MASTER_SITES_APACHE jakarta/commons subdirectory, they have been moved one directory up. Introduce MASTER_SITE_APACHE_COMMONS_SOURCE and adjust 22 ports accordingly. PR: 121041 Submitted by: Marcin Cieslak Approved by: portmgr (linimon) Revision Changes Path 1.437 +11 -1 ports/Mk/bsd.sites.mk 1.6 +2 -2 ports/databases/jakarta-commons-dbutils/Makefile 1.4 +2 -2 ports/devel/jakarta-commons-chain/Makefile 1.5 +2 -2 ports/devel/jakarta-commons-configuration/Makefile 1.3 +2 -2 ports/devel/jakarta-commons-daemon/Makefile 1.9 +2 -2 ports/devel/jakarta-commons-io/Makefile 1.5 +2 -2 ports/devel/jakarta-commons-jxpath/Makefile 1.6 +2 -2 ports/devel/jakarta-commons-modeler/Makefile 1.12 +2 -2 ports/java/jakarta-commons-beanutils/Makefile 1.13 +2 -2 ports/java/jakarta-commons-cli/Makefile 1.4 +2 -2 ports/java/jakarta-commons-codec/Makefile 1.12 +2 -2 ports/java/jakarta-commons-collections/Makefile 1.9 +2 -2 ports/java/jakarta-commons-dbcp/Makefile 1.6 +2 -2 ports/java/jakarta-commons-discovery/Makefile 1.7 +2 -2 ports/java/jakarta-commons-httpclient/Makefile 1.15 +2 -2 ports/java/jakarta-commons-lang/Makefile 1.13 +2 -2 ports/java/jakarta-commons-logging/Makefile 1.11 +2 -2 ports/java/jakarta-commons-pool/Makefile 1.6 +2 -2 ports/java/jakarta-commons-primitives/Makefile 1.3 +2 -2 ports/lang/jakarta-commons-jelly/Makefile 1.4 +2 -2 ports/math/jakarta-commons-math/Makefile 1.9 +2 -2 ports/net/jakarta-commons-net/Makefile 1.5 +2 -2 ports/textproc/jakarta-commons-digester/Makefile From owner-cvs-all@FreeBSD.ORG Wed Feb 27 15:20:03 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1A1C11065672; Wed, 27 Feb 2008 15:20:03 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 016838FC1C; Wed, 27 Feb 2008 15:20:03 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RFK2HI092247; Wed, 27 Feb 2008 15:20:02 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RFK2cQ092246; Wed, 27 Feb 2008 15:20:02 GMT (envelope-from ahze) Message-Id: <200802271520.m1RFK2cQ092246@repoman.freebsd.org> From: Michael Johnson Date: Wed, 27 Feb 2008 15:20:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/gstreamer-plugins-fluendo-mpegdemux Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 15:20:03 -0000 ahze 2008-02-27 15:20:02 UTC FreeBSD ports repository Modified files: multimedia/gstreamer-plugins-fluendo-mpegdemux Makefile distinfo Log: Update to 0.10.15 Revision Changes Path 1.5 +1 -1 ports/multimedia/gstreamer-plugins-fluendo-mpegdemux/Makefile 1.3 +3 -3 ports/multimedia/gstreamer-plugins-fluendo-mpegdemux/distinfo From owner-cvs-all@FreeBSD.ORG Wed Feb 27 15:22:01 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E4C5B1065675; Wed, 27 Feb 2008 15:22:01 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id CD0848FC1E; Wed, 27 Feb 2008 15:22:01 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RFM1t0092380; Wed, 27 Feb 2008 15:22:01 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RFM13m092379; Wed, 27 Feb 2008 15:22:01 GMT (envelope-from sat) Message-Id: <200802271522.m1RFM13m092379@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 27 Feb 2008 15:22:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/xpi-flashgot Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 15:22:02 -0000 sat 2008-02-27 15:22:01 UTC FreeBSD ports repository Modified files: www/xpi-flashgot Makefile distinfo Log: - Update to 0.8.1 Revision Changes Path 1.19 +1 -1 ports/www/xpi-flashgot/Makefile 1.19 +3 -3 ports/www/xpi-flashgot/distinfo From owner-cvs-all@FreeBSD.ORG Wed Feb 27 15:22:33 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 34180106566C; Wed, 27 Feb 2008 15:22:33 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1C4A18FC17; Wed, 27 Feb 2008 15:22:33 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RFMWO2092423; Wed, 27 Feb 2008 15:22:32 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RFMW80092422; Wed, 27 Feb 2008 15:22:32 GMT (envelope-from sat) Message-Id: <200802271522.m1RFMW80092422@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 27 Feb 2008 15:22:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/xpi-noscript Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 15:22:33 -0000 sat 2008-02-27 15:22:32 UTC FreeBSD ports repository Modified files: www/xpi-noscript Makefile distinfo Log: - Update to 1.4.9 Revision Changes Path 1.35 +1 -1 ports/www/xpi-noscript/Makefile 1.33 +3 -3 ports/www/xpi-noscript/distinfo From owner-cvs-all@FreeBSD.ORG Wed Feb 27 15:44:09 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B4F51065678; Wed, 27 Feb 2008 15:44:09 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6647D8FC13; Wed, 27 Feb 2008 15:44:09 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RFi8f0093124; Wed, 27 Feb 2008 15:44:09 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RFi8gg093123; Wed, 27 Feb 2008 15:44:08 GMT (envelope-from sat) Message-Id: <200802271544.m1RFi8gg093123@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 27 Feb 2008 15:44:08 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/irc/p5-POE-Filter-IRCD Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 15:44:09 -0000 sat 2008-02-27 15:44:08 UTC FreeBSD ports repository Modified files: irc/p5-POE-Filter-IRCD Makefile distinfo Log: - Update to 2.35 (noop) PR: ports/120927 Submitted by: Felippe de Meirelles Motta Reported by: pointyhat via erwin, pav Revision Changes Path 1.12 +1 -1 ports/irc/p5-POE-Filter-IRCD/Makefile 1.12 +3 -3 ports/irc/p5-POE-Filter-IRCD/distinfo From owner-cvs-all@FreeBSD.ORG Wed Feb 27 15:54:29 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3BD39106567A; Wed, 27 Feb 2008 15:54:29 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 276818FC1A; Wed, 27 Feb 2008 15:54:29 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RFsSff093430; Wed, 27 Feb 2008 15:54:28 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RFsSfq093429; Wed, 27 Feb 2008 15:54:28 GMT (envelope-from sat) Message-Id: <200802271554.m1RFsSfq093429@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 27 Feb 2008 15:54:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/p5-POE-Component-Client-Ident Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 15:54:29 -0000 sat 2008-02-27 15:54:28 UTC FreeBSD ports repository Modified files: net/p5-POE-Component-Client-Ident Makefile distinfo Log: - Update to 1.10 (noop) PR: ports/121025 Submitted by: Felippe de Meirelles Motta Reported by: pointyhat via erwin Revision Changes Path 1.10 +1 -1 ports/net/p5-POE-Component-Client-Ident/Makefile 1.9 +3 -3 ports/net/p5-POE-Component-Client-Ident/distinfo From owner-cvs-all@FreeBSD.ORG Wed Feb 27 16:01:23 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E746C106566B; Wed, 27 Feb 2008 16:01:23 +0000 (UTC) (envelope-from sam@errno.com) Received: from ebb.errno.com (ebb.errno.com [69.12.149.25]) by mx1.freebsd.org (Postfix) with ESMTP id A9F948FC14; Wed, 27 Feb 2008 16:01:23 +0000 (UTC) (envelope-from sam@errno.com) Received: from trouble.errno.com (trouble.errno.com [10.0.0.248]) (authenticated bits=0) by ebb.errno.com (8.13.6/8.12.6) with ESMTP id m1RG1JNN017478 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 27 Feb 2008 08:01:20 -0800 (PST) (envelope-from sam@errno.com) Message-ID: <47C5894F.10301@errno.com> Date: Wed, 27 Feb 2008 08:01:19 -0800 From: Sam Leffler User-Agent: Thunderbird 2.0.0.9 (X11/20071125) MIME-Version: 1.0 To: Andrew Gallatin References: <200802260302.m1Q32KOT081487@repoman.freebsd.org> <200802261133.00942.jhb@freebsd.org> <47C4A083.2050602@errno.com> <20080227090113.A48182@grasshopper.cs.duke.edu> In-Reply-To: <20080227090113.A48182@grasshopper.cs.duke.edu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-DCC--Metrics: ebb.errno.com; whitelist Cc: Kip Macy , src-committers@FreeBSD.org, cvs-all@FreeBSD.org, John Baldwin , cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/cxgb bin2h.pl cxgb_main.c cxgb_t3fw.c cxgb_t3fw.h t3fw-5.0.0.bin.gz.uu src/sys/modules/cxgb Makefile src/sys/modules/cxgb/cxgb Makefile src/sys/modules/cxgb/cxgb_t3fw Makefile src/sys/conf NOTES files X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 16:01:24 -0000 Andrew Gallatin wrote: > Sam Leffler [sam@errno.com] wrote: > >> Huh? What does "static linking" mean? If you're looking for an example >> of a firmware image being embedded in a kernel look at the npe firmware >> used by xscale. >> > > Kip, > > Before spending time on this, be warned that I tried this for mxge > last year, and I gave up because it was such a headache. The final > straw was that building the firmware into a .fwo file via a files file > rule doesn't work on platforms like ia64 due some toolchain problems. > Specifically, there was no way to get the constant-gp flag set on an > ld -b binary image, which caused the final kernel link command to > explode. > > Rather than use the .fwo method, I committed some .c shims (see > dev/mxge/mxge_eth_z8e.c) which just #include my firmware header files. > This avoids the linking problems, and turns out to be much, much > easier to work with than the fw_stub files file method. > My recollection from working with you on this was that the issue was ia64, not that it was hard. Given working examples to cut&paste I find this argument weak. As to ia64, if it doesn't support our build mechanisms then it should not be part of make universe. When Kip and I talked about why he did stuff w/o using fw_stub.awk it turned out he wasn't aware of existing examples. This technique is documented in firmware(9) and has worked fine for me (but of course I came up with it). The bottom line however is that I don't particularly care how firmware images get built so long as drivers use firmware(9) to load them. I've dealt with firmware loading on a variety of non-freebsd systems and always miss it. Sam From owner-cvs-all@FreeBSD.ORG Wed Feb 27 16:12:12 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B3F4B1065676; Wed, 27 Feb 2008 16:12:12 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A27B78FC1F; Wed, 27 Feb 2008 16:12:12 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RGCC3L095232; Wed, 27 Feb 2008 16:12:12 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RGCBtr095231; Wed, 27 Feb 2008 16:12:11 GMT (envelope-from sat) Message-Id: <200802271612.m1RGCBtr095231@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 27 Feb 2008 16:12:11 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/freeciv Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 16:12:12 -0000 sat 2008-02-27 16:12:11 UTC FreeBSD ports repository Modified files: games/freeciv Makefile Log: - Fix build with pthread-enabled SDL PR: ports/121123 Submitted by: Denis Eremenko Revision Changes Path 1.88 +2 -1 ports/games/freeciv/Makefile From owner-cvs-all@FreeBSD.ORG Wed Feb 27 16:43:22 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 87293106566B; Wed, 27 Feb 2008 16:43:22 +0000 (UTC) (envelope-from gallatin@cs.duke.edu) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.freebsd.org (Postfix) with ESMTP id 71A2F8FC1A; Wed, 27 Feb 2008 16:43:22 +0000 (UTC) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.14.0/8.14.0) with ESMTP id m1RGfvSl025997 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 27 Feb 2008 11:41:57 -0500 (EST) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.12.9p2/8.12.9/Submit) id m1RGfSCo048361; Wed, 27 Feb 2008 11:41:28 -0500 (EST) (envelope-from gallatin) From: Andrew Gallatin MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18373.37583.482055.929142@grasshopper.cs.duke.edu> Date: Wed, 27 Feb 2008 11:41:28 -0500 (EST) To: Sam Leffler In-Reply-To: <47C5894F.10301@errno.com> References: <200802260302.m1Q32KOT081487@repoman.freebsd.org> <200802261133.00942.jhb@freebsd.org> <47C4A083.2050602@errno.com> <20080227090113.A48182@grasshopper.cs.duke.edu> <47C5894F.10301@errno.com> X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Cc: src-committers@FreeBSD.org, Andrew Gallatin , John Baldwin , Kip Macy , cvs-all@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/cxgb bin2h.pl cxgb_main.c cxgb_t3fw.c cxgb_t3fw.h t3fw-5.0.0.bin.gz.uu src/sys/modules/cxgb Makefile src/sys/modules/cxgb/cxgb Makefile src/sys/modules/cxgb/cxgb_t3fw Makefile src/sys/conf NOTES files X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 16:43:22 -0000 Sam Leffler writes: > Andrew Gallatin wrote: > > Sam Leffler [sam@errno.com] wrote: > > > >> Huh? What does "static linking" mean? If you're looking for an example > >> of a firmware image being embedded in a kernel look at the npe firmware > >> used by xscale. > >> > > > > Kip, > > > > Before spending time on this, be warned that I tried this for mxge > > last year, and I gave up because it was such a headache. The final > > straw was that building the firmware into a .fwo file via a files file > > rule doesn't work on platforms like ia64 due some toolchain problems. > > Specifically, there was no way to get the constant-gp flag set on an > > ld -b binary image, which caused the final kernel link command to > > explode. > > > > Rather than use the .fwo method, I committed some .c shims (see > > dev/mxge/mxge_eth_z8e.c) which just #include my firmware header files. > > This avoids the linking problems, and turns out to be much, much > > easier to work with than the fw_stub files file method. > > > > My recollection from working with you on this was that the issue was > ia64, not that it was hard. Given working examples to cut&paste I find > this argument weak. As to ia64, if it doesn't support our build > mechanisms then it should not be part of make universe. ia64 was the only example I knew of, but nobody seemed interested/able to fix it at the time. I don't think it deserves demotion for this issue. > When Kip and I talked about why he did stuff w/o using fw_stub.awk it > turned out he wasn't aware of existing examples. This technique is > documented in firmware(9) and has worked fine for me (but of course I > came up with it). I was just trying to prevent Kip from butting up against the same issue that I had with firmware(9), and pointing him at what I think is the only example of a driver which can compile in firmware and survive a make universe. For what its worth, I actually prefer my small shim files to the files file rules for the .fwo objects and I would resist going to the files file rules for mxge even if the ia64 issue is fixed. With the shim files, it is quite easy to understand what is going on. To my admittedly uneducated eyes, the files file magic looks almost like line noise. > The bottom line however is that I don't particularly care how firmware > images get built so long as drivers use firmware(9) to load them. I've > dealt with firmware loading on a variety of non-freebsd systems and > always miss it. I agree. It is much nicer than the alternatives on other systems. Drew From owner-cvs-all@FreeBSD.ORG Wed Feb 27 16:58:18 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A7E591065670; Wed, 27 Feb 2008 16:58:18 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9D0D08FC25; Wed, 27 Feb 2008 16:58:18 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RGwIMc005657; Wed, 27 Feb 2008 16:58:18 GMT (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RGwIVj005656; Wed, 27 Feb 2008 16:58:18 GMT (envelope-from mbr) Message-Id: <200802271658.m1RGwIVj005656@repoman.freebsd.org> From: Martin Blapp Date: Wed, 27 Feb 2008 16:58:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/up-imapproxy Makefile ports/mail/up-imapproxy/files patch-ssl X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 16:58:18 -0000 mbr 2008-02-27 16:58:18 UTC FreeBSD ports repository Modified files: mail/up-imapproxy Makefile mail/up-imapproxy/files patch-ssl Log: Make this port compile with FreeBSD 7.0 Revision Changes Path 1.16 +1 -0 ports/mail/up-imapproxy/Makefile 1.3 +5 -2 ports/mail/up-imapproxy/files/patch-ssl From owner-cvs-all@FreeBSD.ORG Wed Feb 27 17:12:23 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AB76D1065693; Wed, 27 Feb 2008 17:12:23 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A2CE58FC1F; Wed, 27 Feb 2008 17:12:23 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RHCN5H007387; Wed, 27 Feb 2008 17:12:23 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RHCNsx007386; Wed, 27 Feb 2008 17:12:23 GMT (envelope-from rwatson) Message-Id: <200802271712.m1RHCNsx007386@repoman.freebsd.org> From: Robert Watson Date: Wed, 27 Feb 2008 17:12:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/security/audit audit_worker.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 17:12:23 -0000 rwatson 2008-02-27 17:12:22 UTC FreeBSD src repository Modified files: sys/security/audit audit_worker.c Log: Replace somewhat awkward audit trail rotation scheme, which involved the global audit mutex and condition variables, with an sx lock which protects the trail vnode and credential while in use, and is acquired by the system call code when rotating the trail. Previously, a "message" would be sent to the kernel audit worker, which did the rotation, but the new code is simpler and (hopefully) less error-prone. Obtained from: TrustedBSD Project MFC after: 1 month Revision Changes Path 1.20 +98 -163 src/sys/security/audit/audit_worker.c From owner-cvs-all@FreeBSD.ORG Wed Feb 27 17:47:13 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 79B201065671; Wed, 27 Feb 2008 17:47:13 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 53D388FC1C; Wed, 27 Feb 2008 17:47:13 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RHlDO6008595; Wed, 27 Feb 2008 17:47:13 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RHlDRd008594; Wed, 27 Feb 2008 17:47:13 GMT (envelope-from ahze) Message-Id: <200802271747.m1RHlDRd008594@repoman.freebsd.org> From: Michael Johnson Date: Wed, 27 Feb 2008 17:47:13 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/kazehakase Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 17:47:13 -0000 ahze 2008-02-27 17:47:13 UTC FreeBSD ports repository Modified files: www/kazehakase Makefile distinfo Log: Update to 0.5.2 Revision Changes Path 1.61 +2 -2 ports/www/kazehakase/Makefile 1.31 +3 -3 ports/www/kazehakase/distinfo From owner-cvs-all@FreeBSD.ORG Wed Feb 27 18:17:46 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3CC251065670; Wed, 27 Feb 2008 18:17:46 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 196CA8FC12; Wed, 27 Feb 2008 18:17:46 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RIHjDL010723; Wed, 27 Feb 2008 18:17:45 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RIHjbN010722; Wed, 27 Feb 2008 18:17:45 GMT (envelope-from sat) Message-Id: <200802271817.m1RIHjbN010722@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 27 Feb 2008 18:17:45 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11/xkeyboard-config Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 18:17:46 -0000 sat 2008-02-27 18:17:45 UTC FreeBSD ports repository Modified files: x11/xkeyboard-config Makefile Log: - Force symlink creation PR: ports/118660 Reviewed by: x11 (silencio) Revision Changes Path 1.6 +1 -1 ports/x11/xkeyboard-config/Makefile From owner-cvs-all@FreeBSD.ORG Wed Feb 27 18:26:37 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7D5171065676; Wed, 27 Feb 2008 18:26:37 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 72E648FC21; Wed, 27 Feb 2008 18:26:37 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RIQbOu011090; Wed, 27 Feb 2008 18:26:37 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RIQbbW011089; Wed, 27 Feb 2008 18:26:37 GMT (envelope-from ehaupt) Message-Id: <200802271826.m1RIQbbW011089@repoman.freebsd.org> From: Emanuel Haupt Date: Wed, 27 Feb 2008 18:26:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/vpnc Makefile distinfo pkg-plist ports/security/vpnc/files patch-Makefile patch-config.c patch-vpnc-script X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 18:26:37 -0000 ehaupt 2008-02-27 18:26:36 UTC FreeBSD ports repository Modified files: security/vpnc Makefile distinfo security/vpnc/files patch-Makefile patch-config.c patch-vpnc-script Added files: security/vpnc pkg-plist Log: - Update to 0.5.1 - Take maintainership - Optional install cisco-decrypt utility - Optional build with hybrid support Revision Changes Path 1.28 +42 -23 ports/security/vpnc/Makefile 1.14 +3 -3 ports/security/vpnc/distinfo 1.7 +25 -13 ports/security/vpnc/files/patch-Makefile 1.7 +6 -7 ports/security/vpnc/files/patch-config.c 1.3 +5 -5 ports/security/vpnc/files/patch-vpnc-script 1.7 +7 -0 ports/security/vpnc/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Feb 27 18:31:18 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D21611065678; Wed, 27 Feb 2008 18:31:18 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AF9EF8FC20; Wed, 27 Feb 2008 18:31:18 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RIVI6r011273; Wed, 27 Feb 2008 18:31:18 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RIVIn1011272; Wed, 27 Feb 2008 18:31:18 GMT (envelope-from ehaupt) Message-Id: <200802271831.m1RIVIn1011272@repoman.freebsd.org> From: Emanuel Haupt Date: Wed, 27 Feb 2008 18:31:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports LEGAL X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 18:31:19 -0000 ehaupt 2008-02-27 18:31:18 UTC FreeBSD ports repository Modified files: . LEGAL Log: Add a note about vpnc Revision Changes Path 1.568 +2 -1 ports/LEGAL From owner-cvs-all@FreeBSD.ORG Wed Feb 27 18:58:29 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E6554106567A for ; Wed, 27 Feb 2008 18:58:29 +0000 (UTC) (envelope-from julian@elischer.org) Received: from outL.internet-mail-service.net (outL.internet-mail-service.net [216.240.47.235]) by mx1.freebsd.org (Postfix) with ESMTP id CEEDF8FC23 for ; Wed, 27 Feb 2008 18:58:29 +0000 (UTC) (envelope-from julian@elischer.org) Received: from mx0.idiom.com (HELO idiom.com) (216.240.32.160) by out.internet-mail-service.net (qpsmtpd/0.40) with ESMTP; Wed, 27 Feb 2008 10:45:40 -0800 Received: from julian-mac.elischer.org (localhost [127.0.0.1]) by idiom.com (Postfix) with ESMTP id 9C082127390; Wed, 27 Feb 2008 10:45:39 -0800 (PST) Message-ID: <47C5AFE4.6050302@elischer.org> Date: Wed, 27 Feb 2008 10:45:56 -0800 From: Julian Elischer User-Agent: Thunderbird 2.0.0.9 (Macintosh/20071031) MIME-Version: 1.0 To: obrien@FreeBSD.org References: <200802250855.m1P8t3w6052042@repoman.freebsd.org> <47C29A07.2070908@FreeBSD.org> <86d4qli8a1.fsf@ds4.des.no> <20080226123107.N90776@fledge.watson.org> <86r6ezswnu.fsf@ds4.des.no> <20080226132155.W90776@fledge.watson.org> <20080226164608.GF23211@dragon.NUXI.org> <8663war93j.fsf@ds4.des.no> <20080227150407.GA48137@dragon.NUXI.org> In-Reply-To: <20080227150407.GA48137@dragon.NUXI.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, Kris Kennaway , cvs-all@FreeBSD.org, Robert Watson , =?ISO-8859-1?Q?Dag-Erling_Sm=F8rgrav?= Subject: Re: cvs commit: src/sys/fs/nullfs null_vfsops.c src/sys/fs/nwfs nwfs_vfsops.c src/sys/fs/smbfs smbfs_vfsops.c src/sys/ufs/ufs quota.h ufs_quota.c ufs_vfsops.c src/sys/kern vfs_default.c vfs_vnops.c vnode_if.src src/sys/sys mount.h vnode.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 18:58:30 -0000 David O'Brien wrote: > On Wed, Feb 27, 2008 at 11:23:44AM +0100, Dag-Erling Smrgrav wrote: >> "David O'Brien" writes: >>> Uggg!! Very sorry about that - I was using GENERIC so I could keep an up >>> to date bootable kernel between the commits. >> GENERIC was broken as well, unionfs is built as a module. > > OK, so I was using 'make kernel' and installed just that to boot with. I'm storing this as defense material for my next breakage.. ok so blackmail material for one potential complainant, 197 to go.. From owner-cvs-all@FreeBSD.ORG Wed Feb 27 18:58:39 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9E532106593D for ; Wed, 27 Feb 2008 18:58:39 +0000 (UTC) (envelope-from julian@elischer.org) Received: from outF.internet-mail-service.net (outF.internet-mail-service.net [216.240.47.229]) by mx1.freebsd.org (Postfix) with ESMTP id 8E3AF8FC19 for ; Wed, 27 Feb 2008 18:58:29 +0000 (UTC) (envelope-from julian@elischer.org) Received: from mx0.idiom.com (HELO idiom.com) (216.240.32.160) by out.internet-mail-service.net (qpsmtpd/0.40) with ESMTP; Wed, 27 Feb 2008 10:43:42 -0800 Received: from julian-mac.elischer.org (localhost [127.0.0.1]) by idiom.com (Postfix) with ESMTP id 8197C1273BB; Wed, 27 Feb 2008 10:43:41 -0800 (PST) Message-ID: <47C5AF6E.5070503@elischer.org> Date: Wed, 27 Feb 2008 10:43:58 -0800 From: Julian Elischer User-Agent: Thunderbird 2.0.0.9 (Macintosh/20071031) MIME-Version: 1.0 To: David Malone References: <200802271352.m1RDqXeL086667@repoman.freebsd.org> In-Reply-To: <200802271352.m1RDqXeL086667@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/ipfw ipfw.8 ipfw2.c src/sys/netinet ip_dummynet.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 18:58:39 -0000 David Malone wrote: > dwmalone 2008-02-27 13:52:33 UTC > > FreeBSD src repository > > Modified files: > sbin/ipfw ipfw.8 ipfw2.c > sys/netinet ip_dummynet.c > Log: > Dummynet has a limit of 100 slots queue size (or 1MB, if you give > the limit in bytes) hard coded into both the kernel and userland. > Make both these limits a sysctl, so it is easy to change the limit. > If the userland part of ipfw finds that the sysctls don't exist, > it will just fall back to the traditional limits. "hooray!" > > (100 packets is quite a small limit these days. If you want to test > TCP at 100Mbps, 100 packets can only accommodate a DBP of 12ms.) > > Note these sysctls in the man page and warn against increasing them > without thinking first. > > MFC after: 3 weeks > > Revision Changes Path > 1.211 +14 -0 src/sbin/ipfw/ipfw.8 > 1.118 +18 -5 src/sbin/ipfw/ipfw2.c > 1.115 +9 -2 src/sys/netinet/ip_dummynet.c From owner-cvs-all@FreeBSD.ORG Wed Feb 27 19:02:04 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B433F106566B; Wed, 27 Feb 2008 19:02:04 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id ADEA58FC13; Wed, 27 Feb 2008 19:02:04 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RJ23SJ012247; Wed, 27 Feb 2008 19:02:03 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RJ23wd012246; Wed, 27 Feb 2008 19:02:03 GMT (envelope-from jhb) Message-Id: <200802271902.m1RJ23wd012246@repoman.freebsd.org> From: John Baldwin Date: Wed, 27 Feb 2008 19:02:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/stdio fdopen.c fopen.c freopen.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 19:02:04 -0000 jhb 2008-02-27 19:02:02 UTC FreeBSD src repository Modified files: lib/libc/stdio fdopen.c fopen.c freopen.c Log: File descriptors are an int, but our stdio FILE object uses a short to hold them. Thus, any fd whose value is greater than SHRT_MAX is handled incorrectly (the short value is sign-extended when converted to an int). An unpleasant side effect is that if fopen() opens a file and gets a backing fd that is greater than SHRT_MAX, fclose() will fail and the file descriptor will be leaked. Better handle this by fixing fopen(), fdopen(), and freopen() to fail attempts to use a fd greater than SHRT_MAX with EMFILE. At some point in the future we should look at expanding the file descriptor in FILE to an int, but that is a bit complicated due to ABI issues. MFC after: 1 week Discussed on: arch Reviewed by: wollman Revision Changes Path 1.9 +12 -0 src/lib/libc/stdio/fdopen.c 1.12 +13 -0 src/lib/libc/stdio/fopen.c 1.19 +14 -0 src/lib/libc/stdio/freopen.c From owner-cvs-all@FreeBSD.ORG Wed Feb 27 20:09:05 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5E49F106567E; Wed, 27 Feb 2008 20:09:05 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 426018FC15; Wed, 27 Feb 2008 20:09:05 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RK95I7016758; Wed, 27 Feb 2008 20:09:05 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RK95CR016757; Wed, 27 Feb 2008 20:09:05 GMT (envelope-from chinsan) Message-Id: <200802272009.m1RK95CR016757@repoman.freebsd.org> From: Chin-San Huang Date: Wed, 27 Feb 2008 20:09:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-im/amsn Makefile distinfo pkg-plist ports/net-im/amsn/files patch-Makefile.in patch-amsn X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 20:09:05 -0000 chinsan 2008-02-27 20:09:05 UTC FreeBSD ports repository Modified files: net-im/amsn Makefile distinfo pkg-plist net-im/amsn/files patch-Makefile.in Added files: net-im/amsn/files patch-amsn Log: - Update to 0.97 PR: ports/121002 Submitted by: maintainer Revision Changes Path 1.33 +4 -2 ports/net-im/amsn/Makefile 1.14 +3 -3 ports/net-im/amsn/distinfo 1.4 +8 -22 ports/net-im/amsn/files/patch-Makefile.in 1.1 +10 -0 ports/net-im/amsn/files/patch-amsn (new) 1.16 +726 -649 ports/net-im/amsn/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Feb 27 20:18:55 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C722610656C2; Wed, 27 Feb 2008 20:18:55 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from speedfactory.net (mail.speedfactory.net [66.23.216.219]) by mx1.freebsd.org (Postfix) with ESMTP id 0528F8FC26; Wed, 27 Feb 2008 20:18:49 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (unverified [66.23.211.162]) by speedfactory.net (SurgeMail 3.8s) with ESMTP id 233611897-1834499 for multiple; Wed, 27 Feb 2008 15:16:48 -0500 Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.14.2/8.14.2) with ESMTP id m1RKIjlL036063; Wed, 27 Feb 2008 15:18:45 -0500 (EST) (envelope-from jhb@freebsd.org) From: John Baldwin To: src-committers@freebsd.org Date: Wed, 27 Feb 2008 15:11:10 -0500 User-Agent: KMail/1.9.7 References: <200802271902.m1RJ23wd012246@repoman.freebsd.org> In-Reply-To: <200802271902.m1RJ23wd012246@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200802271511.10787.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Wed, 27 Feb 2008 15:18:45 -0500 (EST) X-Virus-Scanned: ClamAV 0.91.2/6012/Wed Feb 27 13:48:06 2008 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libc/stdio fdopen.c fopen.c freopen.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 20:18:55 -0000 On Wednesday 27 February 2008 02:02:03 pm John Baldwin wrote: > jhb 2008-02-27 19:02:02 UTC > > FreeBSD src repository > > Modified files: > lib/libc/stdio fdopen.c fopen.c freopen.c > Log: > File descriptors are an int, but our stdio FILE object uses a short to hold > them. Thus, any fd whose value is greater than SHRT_MAX is handled > incorrectly (the short value is sign-extended when converted to an int). > An unpleasant side effect is that if fopen() opens a file and gets a > backing fd that is greater than SHRT_MAX, fclose() will fail and the file > descriptor will be leaked. Better handle this by fixing fopen(), fdopen(), > and freopen() to fail attempts to use a fd greater than SHRT_MAX with > EMFILE. > > At some point in the future we should look at expanding the file descriptor > in FILE to an int, but that is a bit complicated due to ABI issues. To reproduce, open 32k fd's and then invoke gethostbyname() with 'files' enabled in nsswitch.conf for host lookups. A fd on /etc/hosts will be leaked for each invocation of gethostbyname(). -- John Baldwin From owner-cvs-all@FreeBSD.ORG Wed Feb 27 20:21:22 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 381FB106567C; Wed, 27 Feb 2008 20:21:22 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3721B8FC39; Wed, 27 Feb 2008 20:21:22 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RKLMGV017220; Wed, 27 Feb 2008 20:21:22 GMT (envelope-from beech@repoman.freebsd.org) Received: (from beech@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RKLMXK017219; Wed, 27 Feb 2008 20:21:22 GMT (envelope-from beech) Message-Id: <200802272021.m1RKLMXK017219@repoman.freebsd.org> From: Beech Rintoul Date: Wed, 27 Feb 2008 20:21:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/irc/psybnc Makefile ports/irc/psybnc/files patch-gcc_compile patch-src_match.c patch-src_p_blowfish.c patch-src_p_global.h patch-src_p_idea.c patch-src_p_memory.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 20:21:22 -0000 beech 2008-02-27 20:21:21 UTC FreeBSD ports repository Modified files: irc/psybnc Makefile Added files: irc/psybnc/files patch-src_match.c patch-src_p_blowfish.c patch-src_p_global.h patch-src_p_idea.c patch-src_p_memory.c Removed files: irc/psybnc/files patch-gcc_compile Log: - Fix with amd64 - Bump portrevision PR: ports/121097 Submitted by: Alexander Chernikov Revision Changes Path 1.11 +1 -4 ports/irc/psybnc/Makefile 1.2 +0 -79 ports/irc/psybnc/files/patch-gcc_compile (dead) 1.1 +11 -0 ports/irc/psybnc/files/patch-src_match.c (new) 1.1 +38 -0 ports/irc/psybnc/files/patch-src_p_blowfish.c (new) 1.1 +23 -0 ports/irc/psybnc/files/patch-src_p_global.h (new) 1.1 +22 -0 ports/irc/psybnc/files/patch-src_p_idea.c (new) 1.1 +34 -0 ports/irc/psybnc/files/patch-src_p_memory.c (new) From owner-cvs-all@FreeBSD.ORG Wed Feb 27 20:32:49 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DBAFC1065677; Wed, 27 Feb 2008 20:32:49 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C137F8FC33; Wed, 27 Feb 2008 20:32:49 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RKWnT4017573; Wed, 27 Feb 2008 20:32:49 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RKWnn0017572; Wed, 27 Feb 2008 20:32:49 GMT (envelope-from sat) Message-Id: <200802272032.m1RKWnn0017572@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 27 Feb 2008 20:32:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/deskutils/when Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 20:32:50 -0000 sat 2008-02-27 20:32:49 UTC FreeBSD ports repository Modified files: deskutils/when Makefile distinfo Log: - Update to 1.1.11 Revision Changes Path 1.13 +1 -2 ports/deskutils/when/Makefile 1.10 +3 -3 ports/deskutils/when/distinfo From owner-cvs-all@FreeBSD.ORG Wed Feb 27 20:37:48 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9E24B106568C; Wed, 27 Feb 2008 20:37:48 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 84F478FC2B; Wed, 27 Feb 2008 20:37:48 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RKbmP9017793; Wed, 27 Feb 2008 20:37:48 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RKbmIQ017792; Wed, 27 Feb 2008 20:37:48 GMT (envelope-from sat) Message-Id: <200802272037.m1RKbmIQ017792@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 27 Feb 2008 20:37:48 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-mgmt/nipper Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 20:37:48 -0000 sat 2008-02-27 20:37:48 UTC FreeBSD ports repository Modified files: net-mgmt/nipper Makefile distinfo Log: - Update to 0.11.4 Revision Changes Path 1.16 +1 -1 ports/net-mgmt/nipper/Makefile 1.16 +3 -3 ports/net-mgmt/nipper/distinfo From owner-cvs-all@FreeBSD.ORG Wed Feb 27 20:53:51 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2EB0A1065670; Wed, 27 Feb 2008 20:53:51 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 100168FC17; Wed, 27 Feb 2008 20:53:51 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RKO8PP017320; Wed, 27 Feb 2008 20:24:08 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RKO8b2017319; Wed, 27 Feb 2008 20:24:08 GMT (envelope-from sat) Message-Id: <200802272024.m1RKO8b2017319@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 27 Feb 2008 20:24:08 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/ddrescue Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 20:53:51 -0000 sat 2008-02-27 20:24:08 UTC FreeBSD ports repository Modified files: sysutils/ddrescue Makefile distinfo Log: - Update to 1.8 Revision Changes Path 1.4 +1 -1 ports/sysutils/ddrescue/Makefile 1.4 +3 -3 ports/sysutils/ddrescue/distinfo From owner-cvs-all@FreeBSD.ORG Wed Feb 27 20:58:15 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 88F2D1065683; Wed, 27 Feb 2008 20:58:15 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 691078FC29; Wed, 27 Feb 2008 20:58:15 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RKwF9u027383; Wed, 27 Feb 2008 20:58:15 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RKwFgY027382; Wed, 27 Feb 2008 20:58:15 GMT (envelope-from sat) Message-Id: <200802272058.m1RKwFgY027382@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 27 Feb 2008 20:58:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/dcraw Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 20:58:15 -0000 sat 2008-02-27 20:58:15 UTC FreeBSD ports repository Modified files: graphics/dcraw Makefile distinfo Log: - Update to 8.82 Revision Changes Path 1.49 +13 -1 ports/graphics/dcraw/Makefile 1.47 +3 -3 ports/graphics/dcraw/distinfo From owner-cvs-all@FreeBSD.ORG Wed Feb 27 21:02:55 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B00F31065673; Wed, 27 Feb 2008 21:02:55 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8DDA68FC26; Wed, 27 Feb 2008 21:02:55 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RL2tnB027540; Wed, 27 Feb 2008 21:02:55 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RL2tcZ027539; Wed, 27 Feb 2008 21:02:55 GMT (envelope-from ehaupt) Message-Id: <200802272102.m1RL2tcZ027539@repoman.freebsd.org> From: Emanuel Haupt Date: Wed, 27 Feb 2008 21:02:55 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/gatekeeper/files patch-configure.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 21:02:55 -0000 ehaupt 2008-02-27 21:02:55 UTC FreeBSD ports repository Added files: net/gatekeeper/files patch-configure.in Log: Correctly pickup MySQL headers if non default LOCALBASE is used. PR: 118173 Submitted by: Andrew Kolchoogin Approved by: maintainer timeout (98 days) Revision Changes Path 1.1 +11 -0 ports/net/gatekeeper/files/patch-configure.in (new) From owner-cvs-all@FreeBSD.ORG Wed Feb 27 21:05:04 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 319841065671; Wed, 27 Feb 2008 21:05:04 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EDFE08FC1E; Wed, 27 Feb 2008 21:05:03 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RL53uA028815; Wed, 27 Feb 2008 21:05:03 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RL53Bm028814; Wed, 27 Feb 2008 21:05:03 GMT (envelope-from sat) Message-Id: <200802272105.m1RL53Bm028814@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 27 Feb 2008 21:05:03 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/rsyslog Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 21:05:04 -0000 sat 2008-02-27 21:05:03 UTC FreeBSD ports repository Modified files: sysutils/rsyslog Makefile distinfo pkg-plist Log: - Update to 2.0.2 Revision Changes Path 1.32 +2 -1 ports/sysutils/rsyslog/Makefile 1.27 +3 -3 ports/sysutils/rsyslog/distinfo 1.4 +4 -1 ports/sysutils/rsyslog/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Feb 27 21:25:19 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D6C821065670; Wed, 27 Feb 2008 21:25:19 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B02838FC1B; Wed, 27 Feb 2008 21:25:19 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RLPJN2029534; Wed, 27 Feb 2008 21:25:19 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RLPJv8029533; Wed, 27 Feb 2008 21:25:19 GMT (envelope-from jhb) Message-Id: <200802272125.m1RLPJv8029533@repoman.freebsd.org> From: John Baldwin Date: Wed, 27 Feb 2008 21:25:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/stdio fdopen.c fopen.c freopen.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 21:25:20 -0000 jhb 2008-02-27 21:25:19 UTC FreeBSD src repository Modified files: lib/libc/stdio fdopen.c fopen.c freopen.c Log: Add for SHRT_MAX. Pointy hat to: jhb Revision Changes Path 1.10 +1 -0 src/lib/libc/stdio/fdopen.c 1.13 +1 -0 src/lib/libc/stdio/fopen.c 1.20 +1 -0 src/lib/libc/stdio/freopen.c From owner-cvs-all@FreeBSD.ORG Wed Feb 27 21:51:25 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6EE101065673; Wed, 27 Feb 2008 21:51:25 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from speedfactory.net (mail.speedfactory.net [66.23.216.219]) by mx1.freebsd.org (Postfix) with ESMTP id 8EB4F8FC19; Wed, 27 Feb 2008 21:51:24 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (unverified [66.23.211.162]) by speedfactory.net (SurgeMail 3.8s) with ESMTP id 233622234-1834499 for multiple; Wed, 27 Feb 2008 16:49:23 -0500 Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.14.2/8.14.2) with ESMTP id m1RLp8xa036786; Wed, 27 Feb 2008 16:51:21 -0500 (EST) (envelope-from jhb@freebsd.org) From: John Baldwin To: src-committers@freebsd.org Date: Wed, 27 Feb 2008 16:50:12 -0500 User-Agent: KMail/1.9.7 References: <200802272125.m1RLPJv8029533@repoman.freebsd.org> In-Reply-To: <200802272125.m1RLPJv8029533@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200802271650.12939.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Wed, 27 Feb 2008 16:51:21 -0500 (EST) X-Virus-Scanned: ClamAV 0.91.2/6014/Wed Feb 27 15:42:51 2008 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libc/stdio fdopen.c fopen.c freopen.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 21:51:25 -0000 On Wednesday 27 February 2008 04:25:19 pm John Baldwin wrote: > jhb 2008-02-27 21:25:19 UTC > > FreeBSD src repository > > Modified files: > lib/libc/stdio fdopen.c fopen.c freopen.c > Log: > Add for SHRT_MAX. > > Pointy hat to: jhb Sorry, the original patch compiles fine on 6.x. :-/ -- John Baldwin From owner-cvs-all@FreeBSD.ORG Wed Feb 27 22:07:16 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AC74E1065671; Wed, 27 Feb 2008 22:07:16 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 81D518FC21; Wed, 27 Feb 2008 22:07:16 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RM7Gmo032022; Wed, 27 Feb 2008 22:07:16 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RM7GNQ032021; Wed, 27 Feb 2008 22:07:16 GMT (envelope-from bmah) Message-Id: <200802272207.m1RM7GNQ032021@repoman.freebsd.org> From: "Bruce A. Mah" Date: Wed, 27 Feb 2008 22:07:16 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/releases/7.0R Makefile announce.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 22:07:16 -0000 bmah 2008-02-27 22:07:16 UTC FreeBSD doc repository Modified files: en/releases/7.0R Makefile Added files: en/releases/7.0R announce.sgml Log: Add 7.0-RELEASE announcement to Web site and hook up to build. Revision Changes Path 1.4 +2 -2 www/en/releases/7.0R/Makefile 1.1 +398 -0 www/en/releases/7.0R/announce.sgml (new) From owner-cvs-all@FreeBSD.ORG Wed Feb 27 22:09:32 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5996A1065676; Wed, 27 Feb 2008 22:09:32 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2E36A8FC20; Wed, 27 Feb 2008 22:09:32 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RM9VuB032134; Wed, 27 Feb 2008 22:09:31 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RM9Vag032133; Wed, 27 Feb 2008 22:09:31 GMT (envelope-from bmah) Message-Id: <200802272209.m1RM9Vag032133@repoman.freebsd.org> From: "Bruce A. Mah" Date: Wed, 27 Feb 2008 22:09:31 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en index.xsl www/share/sgml news.xml release.ent X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 22:09:32 -0000 bmah 2008-02-27 22:09:31 UTC FreeBSD doc repository Modified files: en index.xsl share/sgml news.xml release.ent Log: Update Web site entities for 7.0-RELEASE. Re-enable display on front page of multiple production releases. Add newsflash for 7.0-RELEASE. Revision Changes Path 1.163 +1 -3 www/en/index.xsl 1.149 +18 -1 www/share/sgml/news.xml 1.21 +9 -9 www/share/sgml/release.ent From owner-cvs-all@FreeBSD.ORG Wed Feb 27 22:09:37 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9379C1065671; Wed, 27 Feb 2008 22:09:37 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 813A38FC25; Wed, 27 Feb 2008 22:09:37 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RM9b1n032209; Wed, 27 Feb 2008 22:09:37 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RM9bIo032208; Wed, 27 Feb 2008 22:09:37 GMT (envelope-from ehaupt) Message-Id: <200802272209.m1RM9bIo032208@repoman.freebsd.org> From: Emanuel Haupt Date: Wed, 27 Feb 2008 22:09:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-mgmt Makefile ports/net-mgmt/fetchconfig Makefile distinfo pkg-descr pkg-plist ports/net-mgmt/fetchconfig/files patch-fetchconfig.pl X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 22:09:37 -0000 ehaupt 2008-02-27 22:09:37 UTC FreeBSD ports repository Modified files: net-mgmt Makefile Added files: net-mgmt/fetchconfig Makefile distinfo pkg-descr pkg-plist net-mgmt/fetchconfig/files patch-fetchconfig.pl Log: Add fetchconfig, a perl script for retrieving configuration of various network devices such as: * Cisco IOS * Cisco Catalyst * FortiGate * ProCurve * Parks * Alcatel Ethernet Routers (Riverstone) * Dell PowerConnect switches * Old Terayon 3200/3500 CMTS PR: 120843 Submitted by: salexanov at gmail.com Revision Changes Path 1.150 +1 -0 ports/net-mgmt/Makefile 1.1 +46 -0 ports/net-mgmt/fetchconfig/Makefile (new) 1.1 +3 -0 ports/net-mgmt/fetchconfig/distinfo (new) 1.1 +20 -0 ports/net-mgmt/fetchconfig/files/patch-fetchconfig.pl (new) 1.1 +13 -0 ports/net-mgmt/fetchconfig/pkg-descr (new) 1.1 +15 -0 ports/net-mgmt/fetchconfig/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Feb 27 22:09:44 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E4053106566C; Wed, 27 Feb 2008 22:09:44 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BA1C78FC14; Wed, 27 Feb 2008 22:09:44 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RM9i6K032243; Wed, 27 Feb 2008 22:09:44 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RM9irg032242; Wed, 27 Feb 2008 22:09:44 GMT (envelope-from ehaupt) Message-Id: <200802272209.m1RM9irg032242@repoman.freebsd.org> From: Emanuel Haupt Date: Wed, 27 Feb 2008 22:09:44 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 22:09:45 -0000 ehaupt 2008-02-27 22:09:44 UTC FreeBSD ports repository Modified files: . modules Log: fetchconfig --> ports/net-mgmt/fetchconfig Revision Changes Path 1.19441 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Feb 27 22:11:03 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 074D9106566C; Wed, 27 Feb 2008 22:11:03 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3F4328FC18; Wed, 27 Feb 2008 22:11:02 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RMB2C9032380; Wed, 27 Feb 2008 22:11:02 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RMB2P5032379; Wed, 27 Feb 2008 22:11:02 GMT (envelope-from bmah) Message-Id: <200802272211.m1RMB2P5032379@repoman.freebsd.org> From: "Bruce A. Mah" Date: Wed, 27 Feb 2008 22:11:02 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/releases index.sgml www/en/releng index.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 22:11:03 -0000 bmah 2008-02-27 22:11:02 UTC FreeBSD doc repository Modified files: en/releases index.sgml en/releng index.sgml Log: Update releases page by adding 5.5 to the set of old releases. Update releng page by removing 7.0 from upcoming release schedule and updating state of RELENG_7_0 branch. Revision Changes Path 1.115 +13 -2 www/en/releases/index.sgml 1.226 +2 -8 www/en/releng/index.sgml From owner-cvs-all@FreeBSD.ORG Wed Feb 27 22:12:33 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6B7FC106566B; Wed, 27 Feb 2008 22:12:33 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 407A48FC26; Wed, 27 Feb 2008 22:12:33 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RMCXUR032461; Wed, 27 Feb 2008 22:12:33 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RMCXLf032460; Wed, 27 Feb 2008 22:12:33 GMT (envelope-from ehaupt) Message-Id: <200802272212.m1RMCXLf032460@repoman.freebsd.org> From: Emanuel Haupt Date: Wed, 27 Feb 2008 22:12:33 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors contrib.additional.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 22:12:33 -0000 ehaupt 2008-02-27 22:12:33 UTC FreeBSD doc repository (ports committer) Modified files: en_US.ISO8859-1/articles/contributors contrib.additional.sgml Log: Add salexanov@gmail.com for net-mgmt/fetchconfig port Revision Changes Path 1.770 +5 -0 doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml From owner-cvs-all@FreeBSD.ORG Wed Feb 27 22:21:57 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 73A201065675; Wed, 27 Feb 2008 22:21:57 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 47FD98FC14; Wed, 27 Feb 2008 22:21:57 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RMLvkX032790; Wed, 27 Feb 2008 22:21:57 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RMLvM2032789; Wed, 27 Feb 2008 22:21:57 GMT (envelope-from bmah) Message-Id: <200802272221.m1RMLvM2032789@repoman.freebsd.org> From: "Bruce A. Mah" Date: Wed, 27 Feb 2008 22:21:57 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/releases/7.0R schedule.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 22:21:57 -0000 bmah 2008-02-27 22:21:56 UTC FreeBSD doc repository Modified files: en/releases/7.0R schedule.sgml Log: Note 7.0 release date. Revision Changes Path 1.16 +2 -2 www/en/releases/7.0R/schedule.sgml From owner-cvs-all@FreeBSD.ORG Wed Feb 27 22:23:26 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 220DD1065675; Wed, 27 Feb 2008 22:23:26 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EB3C58FC13; Wed, 27 Feb 2008 22:23:25 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RMNPhn032856; Wed, 27 Feb 2008 22:23:25 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RMNPJW032855; Wed, 27 Feb 2008 22:23:25 GMT (envelope-from bmah) Message-Id: <200802272223.m1RMNPJW032855@repoman.freebsd.org> From: "Bruce A. Mah" Date: Wed, 27 Feb 2008 22:23:25 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/releases/7.0R announce.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 22:23:26 -0000 bmah 2008-02-27 22:23:25 UTC FreeBSD doc repository Modified files: en/releases/7.0R announce.sgml Log: Update release announcement with actual date and subject. Revision Changes Path 1.2 +3 -3 www/en/releases/7.0R/announce.sgml From owner-cvs-all@FreeBSD.ORG Wed Feb 27 22:27:35 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D842E106567D; Wed, 27 Feb 2008 22:27:35 +0000 (UTC) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AD4288FC25; Wed, 27 Feb 2008 22:27:35 +0000 (UTC) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RMRZdI033008; Wed, 27 Feb 2008 22:27:35 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RMRZxB033007; Wed, 27 Feb 2008 22:27:35 GMT (envelope-from kensmith) Message-Id: <200802272227.m1RMRZxB033007@repoman.freebsd.org> From: Ken Smith Date: Wed, 27 Feb 2008 22:27:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sys/conf newvers.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 22:27:36 -0000 kensmith 2008-02-27 22:27:35 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/conf newvers.sh Log: 7.0-RELEASE is announced, start calling RELENG_7 -STABLE. Revision Changes Path 1.72.2.7 +1 -1 src/sys/conf/newvers.sh From owner-cvs-all@FreeBSD.ORG Wed Feb 27 22:47:21 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B016A106566B; Wed, 27 Feb 2008 22:47:21 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 845FD8FC14; Wed, 27 Feb 2008 22:47:21 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RMlLw0033783; Wed, 27 Feb 2008 22:47:21 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RMlL1i033782; Wed, 27 Feb 2008 22:47:21 GMT (envelope-from erwin) Message-Id: <200802272247.m1RMlL1i033782@repoman.freebsd.org> From: Erwin Lansing Date: Wed, 27 Feb 2008 22:47:20 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/releng index.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 22:47:22 -0000 erwin 2008-02-27 22:47:20 UTC FreeBSD doc repository (ports committer) Modified files: en/releng index.sgml Log: Reopen the ports tree now 7.0 has been announced. Revision Changes Path 1.227 +2 -2 www/en/releng/index.sgml From owner-cvs-all@FreeBSD.ORG Wed Feb 27 22:51:19 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 552401065671; Wed, 27 Feb 2008 22:51:19 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 292AA8FC15; Wed, 27 Feb 2008 22:51:19 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RMpJUp033928; Wed, 27 Feb 2008 22:51:19 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RMpJmO033927; Wed, 27 Feb 2008 22:51:19 GMT (envelope-from mezz) Message-Id: <200802272251.m1RMpJmO033927@repoman.freebsd.org> From: Jeremy Messenger Date: Wed, 27 Feb 2008 22:51:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/libcaca Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 22:51:19 -0000 mezz 2008-02-27 22:51:18 UTC FreeBSD ports repository Modified files: graphics/libcaca Makefile distinfo pkg-plist Log: Update to 0.99.beta13. PR: ports/118798 Submitted by: delphij Revision Changes Path 1.21 +7 -6 ports/graphics/libcaca/Makefile 1.7 +3 -3 ports/graphics/libcaca/distinfo 1.4 +11 -1 ports/graphics/libcaca/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Feb 27 23:28:20 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B7811066433; Wed, 27 Feb 2008 23:28:20 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 66B108FC15; Wed, 27 Feb 2008 23:28:20 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RNSKjD036473; Wed, 27 Feb 2008 23:28:20 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RNSK9P036472; Wed, 27 Feb 2008 23:28:20 GMT (envelope-from delphij) Message-Id: <200802272328.m1RNSK9P036472@repoman.freebsd.org> From: Xin LI Date: Wed, 27 Feb 2008 23:28:20 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/zh_CN/releases Makefile www/zh_CN/releases/7.0R Makefile docbook.css errata.html hardware.html readme.html relnotes.html X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 23:28:20 -0000 delphij 2008-02-27 23:28:20 UTC FreeBSD doc repository Modified files: zh_CN/releases Makefile Added files: zh_CN/releases/7.0R Makefile docbook.css errata.html hardware.html readme.html relnotes.html Log: Add 7.0 release documentations. Revision Changes Path 1.1 +17 -0 www/zh_CN/releases/7.0R/Makefile (new) 1.1 +159 -0 www/zh_CN/releases/7.0R/docbook.css (new) 1.1 +117 -0 www/zh_CN/releases/7.0R/errata.html (new) 1.1 +9655 -0 www/zh_CN/releases/7.0R/hardware.html (new) 1.1 +363 -0 www/zh_CN/releases/7.0R/readme.html (new) 1.1 +2191 -0 www/zh_CN/releases/7.0R/relnotes.html (new) 1.5 +1 -0 www/zh_CN/releases/Makefile From owner-cvs-all@FreeBSD.ORG Wed Feb 27 23:29:51 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4EA5B1066A67; Wed, 27 Feb 2008 23:29:51 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 212208FC1D; Wed, 27 Feb 2008 23:29:51 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RNTpCh036533; Wed, 27 Feb 2008 23:29:51 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RNTpVq036532; Wed, 27 Feb 2008 23:29:51 GMT (envelope-from mezz) Message-Id: <200802272329.m1RNTpVq036532@repoman.freebsd.org> From: Jeremy Messenger Date: Wed, 27 Feb 2008 23:29:51 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/p5-xmltv Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 23:29:51 -0000 mezz 2008-02-27 23:29:51 UTC FreeBSD ports repository Modified files: textproc/p5-xmltv Makefile distinfo pkg-plist Log: Update to 0.5.50. PR: ports/117873 Submitted by: Alex Varju Revision Changes Path 1.29 +3 -3 ports/textproc/p5-xmltv/Makefile 1.21 +3 -3 ports/textproc/p5-xmltv/distinfo 1.20 +5 -0 ports/textproc/p5-xmltv/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Feb 27 23:35:39 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DBF711067228; Wed, 27 Feb 2008 23:35:39 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id ADFFC8FC1B; Wed, 27 Feb 2008 23:35:39 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RNZdXE036789; Wed, 27 Feb 2008 23:35:39 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RNZdo7036788; Wed, 27 Feb 2008 23:35:39 GMT (envelope-from jhb) Message-Id: <200802272335.m1RNZdo7036788@repoman.freebsd.org> From: John Baldwin Date: Wed, 27 Feb 2008 23:35:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/boot/i386/btx/btx Makefile btx.S X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 23:35:40 -0000 jhb 2008-02-27 23:35:39 UTC FreeBSD src repository Modified files: sys/boot/i386/btx/btx Makefile btx.S Log: Retire the support for using paging in BTX. It hasn't been used since before 4.0. Submitted by: kib Revision Changes Path 1.20 +0 -4 src/sys/boot/i386/btx/btx/Makefile 1.45 +2 -53 src/sys/boot/i386/btx/btx/btx.S From owner-cvs-all@FreeBSD.ORG Wed Feb 27 23:35:54 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EB0B310675F1; Wed, 27 Feb 2008 23:35:54 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BD37F8FC1F; Wed, 27 Feb 2008 23:35:54 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RNZs09036814; Wed, 27 Feb 2008 23:35:54 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RNZshv036813; Wed, 27 Feb 2008 23:35:54 GMT (envelope-from delphij) Message-Id: <200802272335.m1RNZshv036813@repoman.freebsd.org> From: Xin LI Date: Wed, 27 Feb 2008 23:35:54 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/releng index.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 23:35:55 -0000 delphij 2008-02-27 23:35:54 UTC FreeBSD doc repository Modified files: en/releng index.sgml Log: Now that 7.0-RELEASE is out of the door, reflect the code freeze status for RELENG_7 and HEAD. Revision Changes Path 1.228 +3 -5 www/en/releng/index.sgml From owner-cvs-all@FreeBSD.ORG Wed Feb 27 23:37:12 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6D6BC1066D2C; Wed, 27 Feb 2008 23:37:12 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3F1378FC16; Wed, 27 Feb 2008 23:37:12 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RNbCNi036923; Wed, 27 Feb 2008 23:37:12 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RNbCrR036922; Wed, 27 Feb 2008 23:37:12 GMT (envelope-from ehaupt) Message-Id: <200802272337.m1RNbCrR036922@repoman.freebsd.org> From: Emanuel Haupt Date: Wed, 27 Feb 2008 23:37:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/nload Makefile distinfo ports/net/nload/files patch-ab X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 23:37:12 -0000 ehaupt 2008-02-27 23:37:12 UTC FreeBSD ports repository Modified files: net/nload Makefile distinfo Removed files: net/nload/files patch-ab Log: - Update to 0.7.1 - Take maintainership Revision Changes Path 1.10 +3 -4 ports/net/nload/Makefile 1.6 +3 -3 ports/net/nload/distinfo 1.3 +0 -11 ports/net/nload/files/patch-ab (dead) From owner-cvs-all@FreeBSD.ORG Wed Feb 27 23:52:08 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E8ABF1066ED1; Wed, 27 Feb 2008 23:52:08 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id CFDDA8FC20; Wed, 27 Feb 2008 23:52:08 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RNq8A5038108; Wed, 27 Feb 2008 23:52:08 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RNq8vX038107; Wed, 27 Feb 2008 23:52:08 GMT (envelope-from miwi) Message-Id: <200802272352.m1RNq8vX038107@repoman.freebsd.org> From: Martin Wilke Date: Wed, 27 Feb 2008 23:52:07 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules ports LEGAL MOVED ports/benchmarks Makefile ports/benchmarks/tsung Makefile distinfo pkg-descr pkg-plist ports/games Makefile ports/games/ggo Makefile distinfo pkg-descr pkg-plist ports/games/ggo/files ggo.sh.in ports/mail ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 23:52:09 -0000 miwi 2008-02-27 23:52:07 UTC FreeBSD ports repository Modified files: . modules . LEGAL MOVED benchmarks Makefile games Makefile mail Makefile net-mgmt Makefile sysutils Makefile www Makefile Removed files: benchmarks/tsung Makefile distinfo pkg-descr pkg-plist games/ggo Makefile distinfo pkg-descr pkg-plist games/ggo/files ggo.sh.in mail/claws-mail-etpan_privacy Makefile distinfo pkg-descr mail/claws-mail-etpan_privacy/files patch-src_etpan_privacy.c patch-update-plugin-api net-mgmt/netsaint Makefile distinfo pkg-descr pkg-install pkg-plist net-mgmt/netsaint/files patch-aa patch-ab patch-ad patch-ae patch-ag patch-ai patch-aj patch-ak patch-ba net-mgmt/netsaint/scripts checkps net-mgmt/netsaint-plugins Makefile distinfo pkg-descr pkg-plist net-mgmt/netsaint-plugins/files patch-ab patch-ac patch-check_by_ssh.c patch-check_mrtg.c patch-check_ntp.pl patch-check_snmp.c patch-check_ssh.c patch-plugins_check__swap.c patch-subst.in net-mgmt/netsaint-plugins/scripts configure sysutils/eventwatcher Makefile distinfo pkg-descr pkg-plist sysutils/p5-UPS-Nut Makefile distinfo pkg-descr pkg-plist www/vtiger4 Makefile distinfo pkg-descr pkg-plist www/vtiger4/files pkg-message.in www/xpi-surfkeys Makefile distinfo pkg-descr Log: 2007-10-31 www/vtiger4: This version is no longer supported by the developers 2007-12-01 www/xpi-surfkeys: Development has been ceased 2008-02-01 sysutils/eventwatcher: no active development 2007-10-27 sysutils/p5-UPS-Nut: Version branch long since retired 2007-10-31 net-mgmt/netsaint: Now developed as Nagios, see net-mgmt/nagios port 2007-10-31 net-mgmt/netsaint-plugins: Now developed as Nagios, see net-mgmt/nagios port 2008-01-22 benchmarks/tsung: "fails to install" 2007-10-03 games/ggo: developer's focus have moved elsewhere 2008-02-15 mail/claws-mail-etpan_privacy: no longer supported by developers Revision Changes Path 1.19442 +0 -9 CVSROOT/modules 1.569 +1 -2 ports/LEGAL 1.1544 +10 -1 ports/MOVED 1.62 +0 -1 ports/benchmarks/Makefile 1.3 +0 -39 ports/benchmarks/tsung/Makefile (dead) 1.2 +0 -3 ports/benchmarks/tsung/distinfo (dead) 1.2 +0 -5 ports/benchmarks/tsung/pkg-descr (dead) 1.2 +0 -176 ports/benchmarks/tsung/pkg-plist (dead) 1.1188 +0 -1 ports/games/Makefile 1.4 +0 -43 ports/games/ggo/Makefile (dead) 1.2 +0 -3 ports/games/ggo/distinfo (dead) 1.2 +0 -5 ports/games/ggo/files/ggo.sh.in (dead) 1.2 +0 -6 ports/games/ggo/pkg-descr (dead) 1.2 +0 -13 ports/games/ggo/pkg-plist (dead) 1.900 +0 -1 ports/mail/Makefile 1.24 +0 -33 ports/mail/claws-mail-etpan_privacy/Makefile (dead) 1.7 +0 -3 ports/mail/claws-mail-etpan_privacy/distinfo (dead) 1.2 +0 -11 ports/mail/claws-mail-etpan_privacy/files/patch-src_etpan_privacy.c (dead) 1.2 +0 -30 ports/mail/claws-mail-etpan_privacy/files/patch-update-plugin-api (dead) 1.2 +0 -2 ports/mail/claws-mail-etpan_privacy/pkg-descr (dead) 1.151 +0 -2 ports/net-mgmt/Makefile 1.35 +0 -52 ports/net-mgmt/netsaint-plugins/Makefile (dead) 1.8 +0 -3 ports/net-mgmt/netsaint-plugins/distinfo (dead) 1.7 +0 -297 ports/net-mgmt/netsaint-plugins/files/patch-ab (dead) 1.3 +0 -12 ports/net-mgmt/netsaint-plugins/files/patch-ac (dead) 1.3 +0 -29 ports/net-mgmt/netsaint-plugins/files/patch-check_by_ssh.c (dead) 1.2 +0 -15 ports/net-mgmt/netsaint-plugins/files/patch-check_mrtg.c (dead) 1.2 +0 -76 ports/net-mgmt/netsaint-plugins/files/patch-check_ntp.pl (dead) 1.2 +0 -20 ports/net-mgmt/netsaint-plugins/files/patch-check_snmp.c (dead) 1.2 +0 -20 ports/net-mgmt/netsaint-plugins/files/patch-check_ssh.c (dead) 1.2 +0 -15 ports/net-mgmt/netsaint-plugins/files/patch-plugins_check__swap.c (dead) 1.2 +0 -11 ports/net-mgmt/netsaint-plugins/files/patch-subst.in (dead) 1.3 +0 -16 ports/net-mgmt/netsaint-plugins/pkg-descr (dead) 1.6 +0 -52 ports/net-mgmt/netsaint-plugins/pkg-plist (dead) 1.12 +0 -108 ports/net-mgmt/netsaint-plugins/scripts/configure (dead) 1.35 +0 -73 ports/net-mgmt/netsaint/Makefile (dead) 1.12 +0 -6 ports/net-mgmt/netsaint/distinfo (dead) 1.8 +0 -39 ports/net-mgmt/netsaint/files/patch-aa (dead) 1.6 +0 -10 ports/net-mgmt/netsaint/files/patch-ab (dead) 1.7 +0 -23 ports/net-mgmt/netsaint/files/patch-ad (dead) 1.5 +0 -11 ports/net-mgmt/netsaint/files/patch-ae (dead) 1.2 +0 -31 ports/net-mgmt/netsaint/files/patch-ag (dead) 1.7 +0 -27 ports/net-mgmt/netsaint/files/patch-ai (dead) 1.5 +0 -11 ports/net-mgmt/netsaint/files/patch-aj (dead) 1.4 +0 -11 ports/net-mgmt/netsaint/files/patch-ak (dead) 1.2 +0 -20 ports/net-mgmt/netsaint/files/patch-ba (dead) 1.3 +0 -12 ports/net-mgmt/netsaint/pkg-descr (dead) 1.2 +0 -68 ports/net-mgmt/netsaint/pkg-install (dead) 1.11 +0 -297 ports/net-mgmt/netsaint/pkg-plist (dead) 1.4 +0 -10 ports/net-mgmt/netsaint/scripts/checkps (dead) 1.983 +0 -2 ports/sysutils/Makefile 1.13 +0 -38 ports/sysutils/eventwatcher/Makefile (dead) 1.5 +0 -3 ports/sysutils/eventwatcher/distinfo (dead) 1.2 +0 -9 ports/sysutils/eventwatcher/pkg-descr (dead) 1.4 +0 -49 ports/sysutils/eventwatcher/pkg-plist (dead) 1.5 +0 -28 ports/sysutils/p5-UPS-Nut/Makefile (dead) 1.4 +0 -3 ports/sysutils/p5-UPS-Nut/distinfo (dead) 1.2 +0 -2 ports/sysutils/p5-UPS-Nut/pkg-descr (dead) 1.4 +0 -5 ports/sysutils/p5-UPS-Nut/pkg-plist (dead) 1.1988 +0 -2 ports/www/Makefile 1.13 +0 -41 ports/www/vtiger4/Makefile (dead) 1.6 +0 -3 ports/www/vtiger4/distinfo (dead) 1.2 +0 -18 ports/www/vtiger4/files/pkg-message.in (dead) 1.2 +0 -7 ports/www/vtiger4/pkg-descr (dead) 1.5 +0 -3301 ports/www/vtiger4/pkg-plist (dead) 1.3 +0 -25 ports/www/xpi-surfkeys/Makefile (dead) 1.3 +0 -3 ports/www/xpi-surfkeys/distinfo (dead) 1.2 +0 -6 ports/www/xpi-surfkeys/pkg-descr (dead) From owner-cvs-all@FreeBSD.ORG Wed Feb 27 23:56:30 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6B0041066622; Wed, 27 Feb 2008 23:56:30 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3C4E98FC1E; Wed, 27 Feb 2008 23:56:30 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1RNuUhq038301; Wed, 27 Feb 2008 23:56:30 GMT (envelope-from gahr@repoman.freebsd.org) Received: (from gahr@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1RNuUis038295; Wed, 27 Feb 2008 23:56:30 GMT (envelope-from gahr) Message-Id: <200802272356.m1RNuUis038295@repoman.freebsd.org> From: Pietro Cerutti Date: Wed, 27 Feb 2008 23:56:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/meta-cvs Makefile ports/devel/meta-cvs/files patch-Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 23:56:30 -0000 gahr 2008-02-27 23:56:27 UTC FreeBSD ports repository Modified files: devel/meta-cvs Makefile devel/meta-cvs/files patch-Makefile Log: - Fix patch - Remove useless dependency - Adopt maintainship Approved by: miwi (mentor) Revision Changes Path 1.14 +1 -4 ports/devel/meta-cvs/Makefile 1.2 +2 -2 ports/devel/meta-cvs/files/patch-Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 00:40:56 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 153E01065675; Thu, 28 Feb 2008 00:40:56 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D8C748FC16; Thu, 28 Feb 2008 00:40:55 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S0etfX041063; Thu, 28 Feb 2008 00:40:55 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S0et3F041062; Thu, 28 Feb 2008 00:40:55 GMT (envelope-from ahze) Message-Id: <200802280040.m1S0et3F041062@repoman.freebsd.org> From: Michael Johnson Date: Thu, 28 Feb 2008 00:40:55 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/libdvbpsi Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 00:40:56 -0000 ahze 2008-02-28 00:40:55 UTC FreeBSD ports repository Modified files: multimedia/libdvbpsi Makefile distinfo pkg-descr pkg-plist Log: Update to 0.1.6 PR: ports/119639 Submitted by: thierry Revision Changes Path 1.19 +12 -4 ports/multimedia/libdvbpsi/Makefile 1.9 +3 -3 ports/multimedia/libdvbpsi/distinfo 1.4 +1 -1 ports/multimedia/libdvbpsi/pkg-descr 1.8 +3 -1 ports/multimedia/libdvbpsi/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 00:41:42 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B94131065671; Thu, 28 Feb 2008 00:41:42 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8904A8FC19; Thu, 28 Feb 2008 00:41:42 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S0fgfb041118; Thu, 28 Feb 2008 00:41:42 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S0fgId041117; Thu, 28 Feb 2008 00:41:42 GMT (envelope-from ahze) Message-Id: <200802280041.m1S0fgId041117@repoman.freebsd.org> From: Michael Johnson Date: Thu, 28 Feb 2008 00:41:42 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/libdvbpsi/files patch-examples_connect.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 00:41:42 -0000 ahze 2008-02-28 00:41:42 UTC FreeBSD ports repository Added files: multimedia/libdvbpsi/files patch-examples_connect.c Log: Update to 0.1.6 PR: ports/119639 Submitted by: thierry Revision Changes Path 1.1 +12 -0 ports/multimedia/libdvbpsi/files/patch-examples_connect.c (new) From owner-cvs-all@FreeBSD.ORG Thu Feb 28 00:42:12 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 88791106566B; Thu, 28 Feb 2008 00:42:12 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5806D8FC18; Thu, 28 Feb 2008 00:42:12 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S0gCu7041179; Thu, 28 Feb 2008 00:42:12 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S0gCnq041178; Thu, 28 Feb 2008 00:42:12 GMT (envelope-from ahze) Message-Id: <200802280042.m1S0gCnq041178@repoman.freebsd.org> From: Michael Johnson Date: Thu, 28 Feb 2008 00:42:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/vlc Makefile ports/multimedia/vlc-devel Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 00:42:12 -0000 ahze 2008-02-28 00:42:12 UTC FreeBSD ports repository Modified files: multimedia/vlc Makefile multimedia/vlc-devel Makefile Log: Chase libdvbpsi libversion bump Revision Changes Path 1.195 +2 -1 ports/multimedia/vlc-devel/Makefile 1.159 +2 -2 ports/multimedia/vlc/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 00:43:45 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D91B01065677; Thu, 28 Feb 2008 00:43:45 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A94798FC23; Thu, 28 Feb 2008 00:43:45 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S0hjhM041265; Thu, 28 Feb 2008 00:43:45 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S0hjJR041264; Thu, 28 Feb 2008 00:43:45 GMT (envelope-from ahze) Message-Id: <200802280043.m1S0hjJR041264@repoman.freebsd.org> From: Michael Johnson Date: Thu, 28 Feb 2008 00:43:45 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/vls Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 00:43:46 -0000 ahze 2008-02-28 00:43:45 UTC FreeBSD ports repository Modified files: net/vls Makefile Log: Mark DEPRECATED (use multimedia/vlc instead) with EXPIRATION_DATE of 2008-04-28 and mark BROKEN with latest libdvbpsi Revision Changes Path 1.24 +4 -0 ports/net/vls/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 00:45:26 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B655F1065673; Thu, 28 Feb 2008 00:45:26 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8602D8FC13; Thu, 28 Feb 2008 00:45:26 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S0jQXn041383; Thu, 28 Feb 2008 00:45:26 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S0jQLO041382; Thu, 28 Feb 2008 00:45:26 GMT (envelope-from miwi) Message-Id: <200802280045.m1S0jQLO041382@repoman.freebsd.org> From: Martin Wilke Date: Thu, 28 Feb 2008 00:45:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/libetpan Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 00:45:26 -0000 miwi 2008-02-28 00:45:26 UTC FreeBSD ports repository Modified files: mail/libetpan Makefile distinfo pkg-plist Log: - Update to 0.54 PR: 121057 Submitted by: Pawel Pekala (maintainer) Revision Changes Path 1.46 +1 -2 ports/mail/libetpan/Makefile 1.28 +3 -3 ports/mail/libetpan/distinfo 1.22 +3 -3 ports/mail/libetpan/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 00:49:04 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3427D1065672; Thu, 28 Feb 2008 00:49:04 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 03C478FC1D; Thu, 28 Feb 2008 00:49:04 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S0n3TJ050465; Thu, 28 Feb 2008 00:49:03 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S0n3mA050464; Thu, 28 Feb 2008 00:49:03 GMT (envelope-from miwi) Message-Id: <200802280049.m1S0n3mA050464@repoman.freebsd.org> From: Martin Wilke Date: Thu, 28 Feb 2008 00:49:03 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/claws-mail Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 00:49:04 -0000 miwi 2008-02-28 00:49:03 UTC FreeBSD ports repository Modified files: mail/claws-mail Makefile distinfo Log: - Update to 3.3.1 Approved by: netchild (maintainer implicit) Revision Changes Path 1.136 +1 -1 ports/mail/claws-mail/Makefile 1.67 +3 -3 ports/mail/claws-mail/distinfo From owner-cvs-all@FreeBSD.ORG Thu Feb 28 00:49:54 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E48261065670; Thu, 28 Feb 2008 00:49:54 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B40718FC1D; Thu, 28 Feb 2008 00:49:54 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S0nsfO050507; Thu, 28 Feb 2008 00:49:54 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S0nsgN050506; Thu, 28 Feb 2008 00:49:54 GMT (envelope-from miwi) Message-Id: <200802280049.m1S0nsgN050506@repoman.freebsd.org> From: Martin Wilke Date: Thu, 28 Feb 2008 00:49:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/clawsker Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 00:49:55 -0000 miwi 2008-02-28 00:49:54 UTC FreeBSD ports repository Modified files: mail/clawsker Makefile distinfo Log: - Update to 0.4.0 Approved by: maintainer implicit Revision Changes Path 1.2 +4 -2 ports/mail/clawsker/Makefile 1.2 +3 -3 ports/mail/clawsker/distinfo From owner-cvs-all@FreeBSD.ORG Thu Feb 28 00:50:45 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 84FFB1065674; Thu, 28 Feb 2008 00:50:45 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6B8148FC1C; Thu, 28 Feb 2008 00:50:45 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S0ojo8050923; Thu, 28 Feb 2008 00:50:45 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S0ojcw050922; Thu, 28 Feb 2008 00:50:45 GMT (envelope-from miwi) Message-Id: <200802280050.m1S0ojcw050922@repoman.freebsd.org> From: Martin Wilke Date: Thu, 28 Feb 2008 00:50:45 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/claws-mail-att_remover Makefile ports/mail/claws-mail-vcalendar Makefile ports/mail/claws-mail-tnef Makefile ports/mail/claws-mail-synce Makefile ports/mail/claws-mail-perl Makefile ports/mail/claws-mail-rssyl Makefile ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 00:50:45 -0000 miwi 2008-02-28 00:50:45 UTC FreeBSD ports repository Modified files: mail/claws-mail-att_remover Makefile mail/claws-mail-vcalendar Makefile mail/claws-mail-tnef Makefile mail/claws-mail-synce Makefile mail/claws-mail-perl Makefile mail/claws-mail-rssyl Makefile mail/claws-mail-smime Makefile mail/claws-mail-spamreport Makefile mail/claws-mail-pdf_viewer Makefile mail/claws-mail-attach_warner Makefile mail/claws-mail-notification Makefile mail/claws-mail-newmail Makefile mail/claws-mail-cachesaver Makefile mail/claws-mail-clamav Makefile mail/claws-mail-fetchinfo Makefile mail/claws-mail-mailmbox Makefile Log: - Bump PORTREVISION after claws-mail update Approved by: maintainer implicit Revision Changes Path 1.22 +3 -3 ports/mail/claws-mail-att_remover/Makefile 1.11 +3 -2 ports/mail/claws-mail-attach_warner/Makefile 1.22 +3 -3 ports/mail/claws-mail-cachesaver/Makefile 1.2 +3 -2 ports/mail/claws-mail-clamav/Makefile 1.22 +3 -2 ports/mail/claws-mail-fetchinfo/Makefile 1.22 +2 -2 ports/mail/claws-mail-mailmbox/Makefile 1.22 +2 -2 ports/mail/claws-mail-newmail/Makefile 1.28 +3 -2 ports/mail/claws-mail-notification/Makefile 1.13 +3 -2 ports/mail/claws-mail-pdf_viewer/Makefile 1.22 +3 -2 ports/mail/claws-mail-perl/Makefile 1.31 +3 -3 ports/mail/claws-mail-rssyl/Makefile 1.26 +3 -2 ports/mail/claws-mail-smime/Makefile 1.5 +3 -2 ports/mail/claws-mail-spamreport/Makefile 1.21 +3 -2 ports/mail/claws-mail-synce/Makefile 1.2 +3 -2 ports/mail/claws-mail-tnef/Makefile 1.29 +3 -2 ports/mail/claws-mail-vcalendar/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 00:52:51 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 419D41065674; Thu, 28 Feb 2008 00:52:51 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 10D8B8FC16; Thu, 28 Feb 2008 00:52:51 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S0qpFq051028; Thu, 28 Feb 2008 00:52:51 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S0qoCF051027; Thu, 28 Feb 2008 00:52:50 GMT (envelope-from miwi) Message-Id: <200802280052.m1S0qoCF051027@repoman.freebsd.org> From: Martin Wilke Date: Thu, 28 Feb 2008 00:52:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/claws-mail-gtkhtml2_viewer Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 00:52:51 -0000 miwi 2008-02-28 00:52:50 UTC FreeBSD ports repository Modified files: mail/claws-mail-gtkhtml2_viewer Makefile distinfo Log: - Update to 0.17.2 Approved by: maintainer implicit Revision Changes Path 1.27 +3 -3 ports/mail/claws-mail-gtkhtml2_viewer/Makefile 1.15 +3 -3 ports/mail/claws-mail-gtkhtml2_viewer/distinfo From owner-cvs-all@FreeBSD.ORG Thu Feb 28 01:07:11 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 64AA7106566B; Thu, 28 Feb 2008 01:07:11 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 498188FC1B; Thu, 28 Feb 2008 01:07:11 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S17BoD053261; Thu, 28 Feb 2008 01:07:11 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S17BM6053260; Thu, 28 Feb 2008 01:07:11 GMT (envelope-from miwi) Message-Id: <200802280107.m1S17BM6053260@repoman.freebsd.org> From: Martin Wilke Date: Thu, 28 Feb 2008 01:07:11 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules ports MOVED ports/misc Makefile ports/misc/seizedesktop Makefile distinfo pkg-descr pkg-plist ports/misc/seizedesktop/scripts post-install ports/net Makefile ports/net/gnu-finger Makefile distinfo pkg-descr pkg-plist ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 01:07:11 -0000 miwi 2008-02-28 01:07:11 UTC FreeBSD ports repository Modified files: . modules . MOVED misc Makefile net Makefile security Makefile sysutils Makefile x11-themes Makefile Removed files: misc/seizedesktop Makefile distinfo pkg-descr pkg-plist misc/seizedesktop/scripts post-install net/gnu-finger Makefile distinfo pkg-descr pkg-plist net/gnu-finger/files clients.sample fingerd.sh.sample patch-aa patch-ab patch-ac patch-ad patch-ae patch-af patch-ag security/amavis-perl Makefile distinfo pkg-deinstall.qmail pkg-deinstall.sendmail pkg-descr pkg-install.postfix pkg-install.qmail pkg-install.sendmail pkg-message.postfix pkg-message.qmail pkg-message.sendmail pkg-plist security/amavis-perl/files patch-aa patch-ab sysutils/cdbakeoven Makefile distinfo pkg-descr pkg-plist sysutils/cdbakeoven/files patch-cdbakeoven::cdbosettings::CdboConfigManager.cpp patch-cdbakeoven::cdbosettings::info::Makefile.in patch-cdbakeoven::dialogs::CdboDialogActionFactory.cpp patch-configure x11-themes/gtk-smooth-engine Makefile distinfo pkg-descr pkg-plist x11-themes/gtk-smooth-engine/files patch-configure patch-gtk1_gtk1_patches.c x11-themes/indubstrial Makefile distinfo pkg-descr pkg-plist Log: 2007-11-22 x11-themes/indubstrial: yes 2008-01-14 x11-themes/gtk-smooth-engine: Redundant port (now included in gtk-engines), no release since 2005 2007-09-21 security/amavis-perl: depends on misc/compat3x, which has security problems 2007-12-31 sysutils/cdbakeoven: Abandonware 2008-01-04 net/gnu-finger: no active development and known security vulnerabilities. 2007-11-16 misc/seizedesktop: development stalled for years, outdated, unmaintained Revision Changes Path 1.19443 +0 -6 CVSROOT/modules 1.1545 +7 -1 ports/MOVED 1.870 +0 -1 ports/misc/Makefile 1.18 +0 -37 ports/misc/seizedesktop/Makefile (dead) 1.4 +0 -3 ports/misc/seizedesktop/distinfo (dead) 1.5 +0 -4 ports/misc/seizedesktop/pkg-descr (dead) 1.4 +0 -141 ports/misc/seizedesktop/pkg-plist (dead) 1.4 +0 -20 ports/misc/seizedesktop/scripts/post-install (dead) 1.1971 +0 -1 ports/net/Makefile 1.28 +0 -55 ports/net/gnu-finger/Makefile (dead) 1.4 +0 -3 ports/net/gnu-finger/distinfo (dead) 1.2 +0 -3 ports/net/gnu-finger/files/clients.sample (dead) 1.3 +0 -19 ports/net/gnu-finger/files/fingerd.sh.sample (dead) 1.2 +0 -26 ports/net/gnu-finger/files/patch-aa (dead) 1.5 +0 -87 ports/net/gnu-finger/files/patch-ab (dead) 1.2 +0 -44 ports/net/gnu-finger/files/patch-ac (dead) 1.2 +0 -13 ports/net/gnu-finger/files/patch-ad (dead) 1.2 +0 -28 ports/net/gnu-finger/files/patch-ae (dead) 1.2 +0 -11 ports/net/gnu-finger/files/patch-af (dead) 1.5 +0 -40 ports/net/gnu-finger/files/patch-ag (dead) 1.5 +0 -23 ports/net/gnu-finger/pkg-descr (dead) 1.5 +0 -13 ports/net/gnu-finger/pkg-plist (dead) 1.941 +0 -1 ports/security/Makefile 1.16 +0 -102 ports/security/amavis-perl/Makefile (dead) 1.5 +0 -3 ports/security/amavis-perl/distinfo (dead) 1.3 +0 -38 ports/security/amavis-perl/files/patch-aa (dead) 1.3 +0 -20 ports/security/amavis-perl/files/patch-ab (dead) 1.2 +0 -25 ports/security/amavis-perl/pkg-deinstall.qmail (dead) 1.2 +0 -28 ports/security/amavis-perl/pkg-deinstall.sendmail (dead) 1.2 +0 -15 ports/security/amavis-perl/pkg-descr (dead) 1.2 +0 -31 ports/security/amavis-perl/pkg-install.postfix (dead) 1.2 +0 -39 ports/security/amavis-perl/pkg-install.qmail (dead) 1.2 +0 -93 ports/security/amavis-perl/pkg-install.sendmail (dead) 1.3 +0 -22 ports/security/amavis-perl/pkg-message.postfix (dead) 1.2 +0 -20 ports/security/amavis-perl/pkg-message.qmail (dead) 1.2 +0 -3 ports/security/amavis-perl/pkg-message.sendmail (dead) 1.4 +0 -10 ports/security/amavis-perl/pkg-plist (dead) 1.984 +0 -1 ports/sysutils/Makefile 1.17 +0 -35 ports/sysutils/cdbakeoven/Makefile (dead) 1.4 +0 -3 ports/sysutils/cdbakeoven/distinfo (dead) 1.2 +0 -11 ports/sysutils/cdbakeoven/files/patch-cdbakeoven::cdbosettings::CdboConfigManager.cpp (dead) 1.2 +0 -20 ports/sysutils/cdbakeoven/files/patch-cdbakeoven::cdbosettings::info::Makefile.in (dead) 1.2 +0 -43 ports/sysutils/cdbakeoven/files/patch-cdbakeoven::dialogs::CdboDialogActionFactory.cpp (dead) 1.2 +0 -57 ports/sysutils/cdbakeoven/files/patch-configure (dead) 1.2 +0 -13 ports/sysutils/cdbakeoven/pkg-descr (dead) 1.5 +0 -86 ports/sysutils/cdbakeoven/pkg-plist (dead) 1.204 +0 -2 ports/x11-themes/Makefile 1.19 +0 -74 ports/x11-themes/gtk-smooth-engine/Makefile (dead) 1.6 +0 -3 ports/x11-themes/gtk-smooth-engine/distinfo (dead) 1.3 +0 -20 ports/x11-themes/gtk-smooth-engine/files/patch-configure (dead) 1.4 +0 -30 ports/x11-themes/gtk-smooth-engine/files/patch-gtk1_gtk1_patches.c (dead) 1.2 +0 -8 ports/x11-themes/gtk-smooth-engine/pkg-descr (dead) 1.7 +0 -4 ports/x11-themes/gtk-smooth-engine/pkg-plist (dead) 1.11 +0 -42 ports/x11-themes/indubstrial/Makefile (dead) 1.3 +0 -3 ports/x11-themes/indubstrial/distinfo (dead) 1.2 +0 -3 ports/x11-themes/indubstrial/pkg-descr (dead) 1.3 +0 -10 ports/x11-themes/indubstrial/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Thu Feb 28 01:41:14 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1A924106566B; Thu, 28 Feb 2008 01:41:13 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A89A48FC1C; Thu, 28 Feb 2008 01:41:13 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S1fDtB054318; Thu, 28 Feb 2008 01:41:13 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S1fD8S054317; Thu, 28 Feb 2008 01:41:13 GMT (envelope-from tabthorpe) Message-Id: <200802280141.m1S1fD8S054317@repoman.freebsd.org> From: Thomas Abthorpe Date: Thu, 28 Feb 2008 01:41:13 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 01:41:14 -0000 tabthorpe 2008-02-28 01:41:13 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: - Document libxine -- buffer overflow vulnerability Reviewed by: miwi Revision Changes Path 1.1571 +29 -1 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Thu Feb 28 01:47:46 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 285C8106567D; Thu, 28 Feb 2008 01:47:46 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EA5E98FC22; Thu, 28 Feb 2008 01:47:45 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S1lj6t054517; Thu, 28 Feb 2008 01:47:45 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S1ljZC054516; Thu, 28 Feb 2008 01:47:45 GMT (envelope-from hrs) Message-Id: <200802280147.m1S1ljZC054516@repoman.freebsd.org> From: Hiroki Sato Date: Thu, 28 Feb 2008 01:47:45 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/releases index.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 01:47:46 -0000 hrs 2008-02-28 01:47:45 UTC FreeBSD doc repository Modified files: en/releases index.sgml Log: Remove a dead link to 7.0R installation notes. Revision Changes Path 1.116 +2 -3 www/en/releases/index.sgml From owner-cvs-all@FreeBSD.ORG Thu Feb 28 03:02:53 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C3B51106566B; Thu, 28 Feb 2008 03:02:53 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8F0538FC24; Thu, 28 Feb 2008 03:02:53 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S32rVw058146; Thu, 28 Feb 2008 03:02:53 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S32rwU058145; Thu, 28 Feb 2008 03:02:53 GMT (envelope-from ahze) Message-Id: <200802280302.m1S32rwU058145@repoman.freebsd.org> From: Michael Johnson Date: Thu, 28 Feb 2008 03:02:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/vlc Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 03:02:53 -0000 ahze 2008-02-28 03:02:53 UTC FreeBSD ports repository Modified files: multimedia/vlc Makefile distinfo Log: Update to 0.8.6e Security: http://www.videolan.org/security/sa0801.php http://www.videolan.org/security/sa0802.php Revision Changes Path 1.160 +1 -2 ports/multimedia/vlc/Makefile 1.24 +3 -3 ports/multimedia/vlc/distinfo From owner-cvs-all@FreeBSD.ORG Thu Feb 28 04:09:08 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 921CD1065670; Thu, 28 Feb 2008 04:09:08 +0000 (UTC) (envelope-from scf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6865F8FC1F; Thu, 28 Feb 2008 04:09:08 +0000 (UTC) (envelope-from scf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S498SA062562; Thu, 28 Feb 2008 04:09:08 GMT (envelope-from scf@repoman.freebsd.org) Received: (from scf@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S498YJ062561; Thu, 28 Feb 2008 04:09:08 GMT (envelope-from scf) Message-Id: <200802280409.m1S498YJ062561@repoman.freebsd.org> From: Sean Farley Date: Thu, 28 Feb 2008 04:09:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/stdlib getenv.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 04:09:08 -0000 scf 2008-02-28 04:09:08 UTC FreeBSD src repository Modified files: lib/libc/stdlib getenv.c Log: Replace the use of warnx() with direct output to stderr using _write(). This reduces the size of a statically-linked binary by approximately 100KB in a trivial "return (0)" test application. readelf -S was used to verify that the .text section was reduced and that using strlen() saved a few more bytes over using sizeof(). Since the section of code is only called when environ is corrupt (program bug), I went with fewer bytes over fewer cycles. I made minor edits to the submitted patch to make the output resemble warnx(). Submitted by: kib bz Approved by: wes (mentor) MFC after: 5 days Revision Changes Path 1.13 +36 -12 src/lib/libc/stdlib/getenv.c From owner-cvs-all@FreeBSD.ORG Thu Feb 28 04:19:47 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 86D9F1065675; Thu, 28 Feb 2008 04:19:47 +0000 (UTC) (envelope-from scf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 51C9A8FC17; Thu, 28 Feb 2008 04:19:47 +0000 (UTC) (envelope-from scf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S4JlXp062888; Thu, 28 Feb 2008 04:19:47 GMT (envelope-from scf@repoman.freebsd.org) Received: (from scf@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S4JlRx062887; Thu, 28 Feb 2008 04:19:47 GMT (envelope-from scf) Message-Id: <200802280419.m1S4JlRx062887@repoman.freebsd.org> From: Sean Farley Date: Thu, 28 Feb 2008 04:19:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/usr.sbin/pw pw.c pw_group.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 04:19:47 -0000 scf 2008-02-28 04:19:47 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) usr.sbin/pw pw.c pw_group.c Log: MFC: style(9) (verified no object changes) src/usr.sbin/pw/pw.c: rev 1.31 -> 1.32 src/usr.sbin/pw/pw_group.c: rev 1.14 -> 1.15 Approved by: wes (mentor) Revision Changes Path 1.31.2.1 +1 -1 src/usr.sbin/pw/pw.c 1.14.18.1 +1 -2 src/usr.sbin/pw/pw_group.c From owner-cvs-all@FreeBSD.ORG Thu Feb 28 04:25:04 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1EFD5106566C; Thu, 28 Feb 2008 04:25:04 +0000 (UTC) (envelope-from scf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 03CB88FC1D; Thu, 28 Feb 2008 04:25:04 +0000 (UTC) (envelope-from scf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S4P356063187; Thu, 28 Feb 2008 04:25:03 GMT (envelope-from scf@repoman.freebsd.org) Received: (from scf@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S4P35B063186; Thu, 28 Feb 2008 04:25:03 GMT (envelope-from scf) Message-Id: <200802280425.m1S4P35B063186@repoman.freebsd.org> From: Sean Farley Date: Thu, 28 Feb 2008 04:25:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/usr.sbin/pw pw.8 pw.c pw_group.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 04:25:04 -0000 scf 2008-02-28 04:25:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) usr.sbin/pw pw.8 pw.c pw_group.c Log: MFC: Add the groupmod '-d' option to pw to allow the deletion of existing users from a group without the need to perform the same operation by replacing the existing list via the '-M' option. The '-M' option requires someone to fetch the existing members with pw, deleting the undesired members from the list and sending the altered list back to pw. src/usr.sbin/pw/pw.c: rev 1.32 -> 1.33 src/usr.sbin/pw/pw_group.c: rev 1.15 -> 1.16 src/usr.sbin/pw/pw.8: rev 1.42 -> 1.43 Approved by: wes (mentor) Revision Changes Path 1.41.2.2 +10 -0 src/usr.sbin/pw/pw.8 1.31.2.2 +2 -1 src/usr.sbin/pw/pw.c 1.14.18.2 +80 -15 src/usr.sbin/pw/pw_group.c From owner-cvs-all@FreeBSD.ORG Thu Feb 28 04:34:59 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5EFFD1065671; Thu, 28 Feb 2008 04:34:59 +0000 (UTC) (envelope-from bmah@freebsd.org) Received: from a.mail.sonic.net (a.mail.sonic.net [64.142.16.245]) by mx1.freebsd.org (Postfix) with ESMTP id 38B9C8FC1B; Thu, 28 Feb 2008 04:34:59 +0000 (UTC) (envelope-from bmah@freebsd.org) Received: from Macintosh-2.local (hornet.kitchenlab.org [64.142.31.105]) (authenticated bits=0) by a.mail.sonic.net (8.13.8.Beta0-Sonic/8.13.7) with ESMTP id m1S4YtZH006782 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 27 Feb 2008 20:34:59 -0800 Message-ID: <47C639EF.7050508@freebsd.org> Date: Wed, 27 Feb 2008 20:34:55 -0800 From: "Bruce A. Mah" User-Agent: Thunderbird 2.0.0.12 (Macintosh/20080213) MIME-Version: 1.0 To: Hiroki Sato References: <200802280147.m1S1ljZC054516@repoman.freebsd.org> In-Reply-To: <200802280147.m1S1ljZC054516@repoman.freebsd.org> X-Enigmail-Version: 0.95.6 OpenPGP: id=5ba052c3 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig987C80B0E641149989ECB652" Cc: doc-committers@freebsd.org, cvs-doc@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: www/en/releases index.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 04:34:59 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig987C80B0E641149989ECB652 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable If memory serves me right, Hiroki Sato wrote: > hrs 2008-02-28 01:47:45 UTC >=20 > FreeBSD doc repository >=20 > Modified files: > en/releases index.sgml=20 > Log: > Remove a dead link to 7.0R installation notes. > =20 > Revision Changes Path > 1.116 +2 -3 www/en/releases/index.sgml Thanks! Bruce. --------------enig987C80B0E641149989ECB652 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFHxjnv2MoxcVugUsMRAmUGAKCup9+w6KjPWR86CYK01jhOmJS9YQCg6vyR wgdW2exJUP/xYRPxdRrjR1Y= =fDBa -----END PGP SIGNATURE----- --------------enig987C80B0E641149989ECB652-- From owner-cvs-all@FreeBSD.ORG Thu Feb 28 04:39:24 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 11B8F106566C; Thu, 28 Feb 2008 04:39:24 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E9DF88FC1E; Thu, 28 Feb 2008 04:39:23 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S4dNQj063710; Thu, 28 Feb 2008 04:39:23 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S4dN6s063709; Thu, 28 Feb 2008 04:39:23 GMT (envelope-from mezz) Message-Id: <200802280439.m1S4dN6s063709@repoman.freebsd.org> From: Jeremy Messenger Date: Thu, 28 Feb 2008 04:39:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/firefox Makefile pkg-message ports/www/xulrunner Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 04:39:24 -0000 mezz 2008-02-28 04:39:23 UTC FreeBSD ports repository Modified files: www/firefox Makefile pkg-message www/xulrunner Makefile Log: - Add "--with-default-mozilla-five-home=${PREFIX}/lib/${MOZILLA}" to fix other applications in the runtime. Some applications required to have set MOZILLA_FIVE_HOME or/and LD_LIBRARY_PATH to make it works in the runtime. Now, it's no longer need to set these variables, which this flag takes care of it. The MOZILLA_FIVE_HOME still works with this flag if someone need to use different one. I have learned about this flag from RPM, Debian, Gentoo ebuild and other packages. - Bump the PORTREVISION. Have been tested in MC CVS since Dec. Revision Changes Path 1.192 +5 -3 ports/www/firefox/Makefile 1.20 +1 -1 ports/www/firefox/pkg-message 1.14 +4 -3 ports/www/xulrunner/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 04:40:05 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7ED87106566C; Thu, 28 Feb 2008 04:40:05 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 633218FC13; Thu, 28 Feb 2008 04:40:05 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S4e5qw063833; Thu, 28 Feb 2008 04:40:05 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S4e5LE063832; Thu, 28 Feb 2008 04:40:05 GMT (envelope-from mezz) Message-Id: <200802280440.m1S4e5LE063832@repoman.freebsd.org> From: Jeremy Messenger Date: Thu, 28 Feb 2008 04:40:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/thunderbird Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 04:40:05 -0000 mezz 2008-02-28 04:40:05 UTC FreeBSD ports repository Modified files: mail/thunderbird Makefile Log: - Add "--with-default-mozilla-five-home=${PREFIX}/lib/${MOZILLA}" to fix other applications in the runtime. Some applications required to have set MOZILLA_FIVE_HOME or/and LD_LIBRARY_PATH to make it works in the runtime. Now, it's no longer need to set these variables, which this flag takes care of it. The MOZILLA_FIVE_HOME still works with this flag if someone need to use different one. I have learned about this flag from RPM, Debian, Gentoo ebuild and other packages. - Add two extensions, auth[1] and transformiix[2]. Have been tested in MC CVS since Dec. PR: ports/117734 [1] Submitted by: Nathan Whitehorn [1] Reported by: Juan Pablo Roig [2] Revision Changes Path 1.87 +5 -4 ports/mail/thunderbird/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 05:00:59 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E922A1065671; Thu, 28 Feb 2008 05:00:59 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B37328FC12; Thu, 28 Feb 2008 05:00:59 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S50x5F073934; Thu, 28 Feb 2008 05:00:59 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S50xnt073933; Thu, 28 Feb 2008 05:00:59 GMT (envelope-from simon) Message-Id: <200802280500.m1S50xnt073933@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Thu, 28 Feb 2008 05:00:59 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/security security.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 05:01:00 -0000 simon 2008-02-28 05:00:59 UTC FreeBSD doc repository Modified files: en/security security.sgml Log: FreeBSD 7.0 was actually released today, not yesterday, so update date in list of support releases for consistency. Revision Changes Path 1.199 +3 -3 www/en/security/security.sgml From owner-cvs-all@FreeBSD.ORG Thu Feb 28 05:40:50 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4E19B106566C; Thu, 28 Feb 2008 05:40:50 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2FEED8FC12; Thu, 28 Feb 2008 05:40:50 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S5eooU076367; Thu, 28 Feb 2008 05:40:50 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S5eoAb076366; Thu, 28 Feb 2008 05:40:50 GMT (envelope-from marcus) Message-Id: <200802280540.m1S5eoAb076366@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 28 Feb 2008 05:40:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/wireshark Makefile distinfo pkg-plist ports/net/wireshark/files patch-Makefile.in patch-epan_Makefile.in patch-wiretap_configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 05:40:50 -0000 marcus 2008-02-28 05:40:49 UTC FreeBSD ports repository Modified files: net/wireshark Makefile distinfo pkg-plist net/wireshark/files patch-Makefile.in patch-epan_Makefile.in patch-wiretap_configure Log: Update to 0.99.8. See http://www.wireshark.org/docs/relnotes/wireshark-0.99.8.html for a list of changes. Revision Changes Path 1.126 +2 -2 ports/net/wireshark/Makefile 1.60 +3 -3 ports/net/wireshark/distinfo 1.4 +15 -15 ports/net/wireshark/files/patch-Makefile.in 1.5 +7 -7 ports/net/wireshark/files/patch-epan_Makefile.in 1.4 +0 -29 ports/net/wireshark/files/patch-wiretap_configure 1.39 +4 -0 ports/net/wireshark/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 05:41:18 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 01C861065673; Thu, 28 Feb 2008 05:41:18 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D64868FC1C; Thu, 28 Feb 2008 05:41:17 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S5fHee076562; Thu, 28 Feb 2008 05:41:17 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S5fH1F076561; Thu, 28 Feb 2008 05:41:17 GMT (envelope-from oliver) Message-Id: <200802280541.m1S5fH1F076561@repoman.freebsd.org> From: Oliver Lehmann Date: Thu, 28 Feb 2008 05:41:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio/audacious-crossfade Makefile ports/audio/audacious-dumb Makefile distinfo ports/audio/audacious-dumb/files patch-Makefile ports/audio/audacious-mac Makefile distinfo ports/audio/audacious-mac/files patch-src-common.h patch-src-fileinfo.cpp ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 05:41:18 -0000 oliver 2008-02-28 05:41:17 UTC FreeBSD ports repository Modified files: audio/audacious-crossfade Makefile audio/audacious-dumb Makefile distinfo audio/audacious-dumb/files patch-Makefile audio/audacious-mac Makefile distinfo multimedia/audacious Makefile distinfo pkg-plist multimedia/audacious-plugins Makefile distinfo pkg-plist Added files: multimedia/audacious/files patch-src-audacious-Makefile patch-src-audtool-Makefile Removed files: audio/audacious-mac/files patch-src-common.h patch-src-fileinfo.cpp patch-src-mac.cpp url2filename.cpp Log: welcome audacious 1.4! Revision Changes Path 1.6 +2 -2 ports/audio/audacious-crossfade/Makefile 1.4 +1 -1 ports/audio/audacious-dumb/Makefile 1.2 +3 -3 ports/audio/audacious-dumb/distinfo 1.3 +5 -5 ports/audio/audacious-dumb/files/patch-Makefile 1.3 +2 -3 ports/audio/audacious-mac/Makefile 1.2 +3 -3 ports/audio/audacious-mac/distinfo 1.2 +0 -8 ports/audio/audacious-mac/files/patch-src-common.h (dead) 1.2 +0 -11 ports/audio/audacious-mac/files/patch-src-fileinfo.cpp (dead) 1.2 +0 -19 ports/audio/audacious-mac/files/patch-src-mac.cpp (dead) 1.2 +0 -57 ports/audio/audacious-mac/files/url2filename.cpp (dead) 1.43 +108 -28 ports/multimedia/audacious-plugins/Makefile 1.15 +3 -3 ports/multimedia/audacious-plugins/distinfo 1.21 +94 -93 ports/multimedia/audacious-plugins/pkg-plist 1.32 +36 -14 ports/multimedia/audacious/Makefile 1.12 +3 -3 ports/multimedia/audacious/distinfo 1.1 +49 -0 ports/multimedia/audacious/files/patch-src-audacious-Makefile (new) 1.1 +13 -0 ports/multimedia/audacious/files/patch-src-audtool-Makefile (new) 1.19 +191 -8 ports/multimedia/audacious/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 05:42:41 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8A2791065675; Thu, 28 Feb 2008 05:42:41 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 53DBD8FC19; Thu, 28 Feb 2008 05:42:41 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S5gfFK076621; Thu, 28 Feb 2008 05:42:41 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S5gfpV076620; Thu, 28 Feb 2008 05:42:41 GMT (envelope-from bmah) Message-Id: <200802280542.m1S5gfpV076620@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 28 Feb 2008 05:42:41 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/share/sgml freebsd.ent X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 05:42:41 -0000 bmah 2008-02-28 05:42:41 UTC FreeBSD doc repository Modified files: share/sgml freebsd.ent Log: Inform the doc/ tree that FreeBSD 7.0 has been released. Revision Changes Path 1.100 +4 -4 doc/share/sgml/freebsd.ent From owner-cvs-all@FreeBSD.ORG Thu Feb 28 05:47:43 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BDCCF1065670; Thu, 28 Feb 2008 05:47:43 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 86B898FC1E; Thu, 28 Feb 2008 05:47:43 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S5lhnI076856; Thu, 28 Feb 2008 05:47:43 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S5lhQX076855; Thu, 28 Feb 2008 05:47:43 GMT (envelope-from oliver) Message-Id: <200802280547.m1S5lhQX076855@repoman.freebsd.org> From: Oliver Lehmann Date: Thu, 28 Feb 2008 05:47:43 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/libzvbi Makefile distinfo pkg-plist ports/multimedia/xawtv Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 05:47:43 -0000 oliver 2008-02-28 05:47:43 UTC FreeBSD ports repository Modified files: devel/libzvbi Makefile distinfo pkg-plist multimedia/xawtv Makefile Log: update libzvbi to 0.2.29 Revision Changes Path 1.36 +2 -2 ports/devel/libzvbi/Makefile 1.23 +3 -3 ports/devel/libzvbi/distinfo 1.13 +1 -1 ports/devel/libzvbi/pkg-plist 1.66 +2 -2 ports/multimedia/xawtv/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 06:01:48 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BFB47106566B; Thu, 28 Feb 2008 06:01:48 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 89C4C8FC19; Thu, 28 Feb 2008 06:01:48 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S61mAO078286; Thu, 28 Feb 2008 06:01:48 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S61mKE078285; Thu, 28 Feb 2008 06:01:48 GMT (envelope-from bmah) Message-Id: <200802280601.m1S61mKE078285@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 28 Feb 2008 06:01:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/release/doc/en_US.ISO8859-1/share/sgml release.dsl X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 06:01:48 -0000 bmah 2008-02-28 06:01:48 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) release/doc/en_US.ISO8859-1/share/sgml release.dsl Log: Point RELENG_7 users at stable@ rather than current@. Reminded by: cnst Revision Changes Path 1.8.8.1 +2 -2 src/release/doc/en_US.ISO8859-1/share/sgml/release.dsl From owner-cvs-all@FreeBSD.ORG Thu Feb 28 06:08:40 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 927B3106566B; Thu, 28 Feb 2008 06:08:40 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5BB508FC19; Thu, 28 Feb 2008 06:08:40 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S68eaZ079686; Thu, 28 Feb 2008 06:08:40 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S68eaF079685; Thu, 28 Feb 2008 06:08:40 GMT (envelope-from brueffer) Message-Id: <200802280608.m1S68eaF079685@repoman.freebsd.org> From: Christian Brueffer Date: Thu, 28 Feb 2008 06:08:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/lib/libc/sys clock_gettime.2 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 06:08:40 -0000 brueffer 2008-02-28 06:08:40 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) lib/libc/sys clock_gettime.2 Log: MFC: rev. 1.25 Add missing words. Revision Changes Path 1.24.2.1 +2 -2 src/lib/libc/sys/clock_gettime.2 From owner-cvs-all@FreeBSD.ORG Thu Feb 28 06:09:23 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A7ADC106566B; Thu, 28 Feb 2008 06:09:23 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7127C8FC26; Thu, 28 Feb 2008 06:09:23 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S69Npe079728; Thu, 28 Feb 2008 06:09:23 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S69Nd9079727; Thu, 28 Feb 2008 06:09:23 GMT (envelope-from brueffer) Message-Id: <200802280609.m1S69Nd9079727@repoman.freebsd.org> From: Christian Brueffer Date: Thu, 28 Feb 2008 06:09:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/lib/libc/sys clock_gettime.2 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 06:09:23 -0000 brueffer 2008-02-28 06:09:23 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libc/sys clock_gettime.2 Log: MFC: rev. 1.25 Add missing words. Revision Changes Path 1.20.8.2 +2 -2 src/lib/libc/sys/clock_gettime.2 From owner-cvs-all@FreeBSD.ORG Thu Feb 28 06:33:30 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 52D9D10656A6; Thu, 28 Feb 2008 06:33:30 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3602D8FC16; Thu, 28 Feb 2008 06:33:30 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S6XU3B080578; Thu, 28 Feb 2008 06:33:30 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S6XUW1080577; Thu, 28 Feb 2008 06:33:30 GMT (envelope-from mezz) Message-Id: <200802280633.m1S6XUW1080577@repoman.freebsd.org> From: Jeremy Messenger Date: Thu, 28 Feb 2008 06:33:30 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/seamonkey Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 06:33:30 -0000 mezz 2008-02-28 06:33:30 UTC FreeBSD ports repository Modified files: www/seamonkey Makefile distinfo Log: - Update to 1.1.8. [1] - Add "--with-default-mozilla-five-home=${PREFIX}/lib/${MOZILLA}" to fix other applications in the runtime. Some applications required to have set MOZILLA_FIVE_HOME or/and LD_LIBRARY_PATH to make it works in the runtime. Now, it's no longer need to set these variables, which this flag takes care of it. The MOZILLA_FIVE_HOME still works with this flag if someone need to use different one. I have learned about this flag from RPM, Debian, Gentoo ebuild and other packages. Have been tested in MC CVS since Dec. PR: ports/120962 [1] Reminded by: Jordan Gordeev [1] Security: - MFSA 2007-08 onUnload + document.write() memory corruption - MFSA 2007-07 Embedded nulls in location.hostname confuse same-domain checks - MFSA 2007-06 Mozilla Network Security Services (NSS) SSLv2 buffer overflow - MFSA 2007-05 XSS and local file access by opening blocked popups - MFSA 2007-04 Spoofing using custom cursor and CSS3 hotspot - MFSA 2007-03 Information disclosure through cache collisions - MFSA 2007-02 Improvements to help protect against Cross-Site Scripting attacks - MFSA 2007-01 Crashes with evidence of memory corruption (rv:1.8.0.10/1.8.1.2) Revision Changes Path 1.274 +7 -5 ports/www/seamonkey/Makefile 1.101 +3 -3 ports/www/seamonkey/distinfo From owner-cvs-all@FreeBSD.ORG Thu Feb 28 06:54:25 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6F73D1065673; Thu, 28 Feb 2008 06:54:25 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 388B78FC32; Thu, 28 Feb 2008 06:54:25 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S6sOaV081226; Thu, 28 Feb 2008 06:54:24 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S6sOXu081225; Thu, 28 Feb 2008 06:54:24 GMT (envelope-from maxim) Message-Id: <200802280654.m1S6sOXu081225@repoman.freebsd.org> From: Maxim Konovalov Date: Thu, 28 Feb 2008 06:54:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/misc bsd-family-tree X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 06:54:25 -0000 maxim 2008-02-28 06:54:24 UTC FreeBSD src repository Modified files: share/misc bsd-family-tree Log: o Add FreeBSD 7.0, MacOS X 10.5 (belated), DragonFly BSD 1.12.0. Revision Changes Path 1.119 +12 -3 src/share/misc/bsd-family-tree From owner-cvs-all@FreeBSD.ORG Thu Feb 28 07:26:27 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C93981065670; Thu, 28 Feb 2008 07:26:27 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 92BC08FC14; Thu, 28 Feb 2008 07:26:27 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S7QRJ6084282; Thu, 28 Feb 2008 07:26:27 GMT (envelope-from johans@repoman.freebsd.org) Received: (from johans@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S7QRGP084281; Thu, 28 Feb 2008 07:26:27 GMT (envelope-from johans) Message-Id: <200802280726.m1S7QRGP084281@repoman.freebsd.org> From: Johan van Selst Date: Thu, 28 Feb 2008 07:26:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/xshttpd-devel Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 07:26:28 -0000 johans 2008-02-28 07:26:27 UTC FreeBSD ports repository Modified files: www/xshttpd-devel Makefile distinfo Log: - Update to 3.6 beta 5 Revision Changes Path 1.49 +2 -2 ports/www/xshttpd-devel/Makefile 1.44 +3 -3 ports/www/xshttpd-devel/distinfo From owner-cvs-all@FreeBSD.ORG Thu Feb 28 07:50:47 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 95CE21065736; Thu, 28 Feb 2008 07:50:47 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 352928FC1A; Thu, 28 Feb 2008 07:50:47 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S7olUe085760; Thu, 28 Feb 2008 07:50:47 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S7olos085759; Thu, 28 Feb 2008 07:50:47 GMT (envelope-from miwi) Message-Id: <200802280750.m1S7olos085759@repoman.freebsd.org> From: Martin Wilke Date: Thu, 28 Feb 2008 07:50:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules ports LEGAL MOVED ports/audio Makefile ports/audio/nogger Makefile distinfo pkg-descr ports/audio/nogger/files patch-Makefile ports/databases Makefile ports/databases/pgbash Makefile distinfo pkg-descr pkg-plist ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 07:50:47 -0000 miwi 2008-02-28 07:50:46 UTC FreeBSD ports repository Modified files: . modules . LEGAL MOVED audio Makefile databases Makefile french Makefile java Makefile net-im Makefile www Makefile Removed files: audio/nogger Makefile distinfo pkg-descr audio/nogger/files patch-Makefile databases/pgbash Makefile distinfo pkg-descr pkg-plist french/pluxml Makefile distinfo pkg-descr pkg-plist french/pluxml/files pkg-deinstall.in pkg-message.in french/pluxml-theme-bridge Makefile distinfo pkg-descr pkg-plist french/pluxml-theme-bridge/files pkg-message.in french/pluxml-theme-snowxml Makefile distinfo pkg-descr pkg-plist french/pluxml-theme-snowxml/files patch-template.php pkg-message.in java/linux-blackdown-jre11 Makefile distinfo pkg-descr pkg-plist java/linux-blackdown-jre11/files arch patch-aa patch-ab net-im/wildfire Makefile distinfo pkg-descr pkg-install pkg-plist net-im/wildfire/files pkg-message.in wildfire.in www/gekko Makefile distinfo pkg-descr pkg-plist www/gekko/files pkg-message.in www/gekko-modules Makefile distinfo pkg-descr Log: 2007-12-12 net-im/wildfire: Use net-im/openfire instead of this port 2008-01-20 www/gekko: This port is not being developed anymore. This was replaced by textmotion http://code.google.com/p/textmotion/ 2008-01-20 www/gekko-modules: This port is not being developed anymore. This was replaced by textmotion http://code.google.com/p/textmotion/ 2007-11-01 java/linux-blackdown-jre11: Obsolete version; Support for Java 1.1 is to be removed from the ports tree 2008-01-14 french/pluxml: no active development and known security vulnerabilities, see http://www.securityfocus.com/bid/24607/info for details 2008-01-14 french/pluxml-theme-bridge: pluxml is marked as deprecated 2008-01-14 french/pluxml-theme-snowxml: pluxml is marked as deprecated 2007-09-15 databases/pgbash: Last release in 2003, relies on outdated Postgre 7.3 and bash 2.05a 2007-11-01 audio/nogger: "just makes a humming noise"" Revision Changes Path 1.19444 +0 -9 CVSROOT/modules 1.570 +1 -3 ports/LEGAL 1.1546 +10 -1 ports/MOVED 1.930 +0 -1 ports/audio/Makefile 1.25 +0 -44 ports/audio/nogger/Makefile (dead) 1.6 +0 -3 ports/audio/nogger/distinfo (dead) 1.4 +0 -12 ports/audio/nogger/files/patch-Makefile (dead) 1.3 +0 -2 ports/audio/nogger/pkg-descr (dead) 1.665 +0 -1 ports/databases/Makefile 1.9 +0 -59 ports/databases/pgbash/Makefile (dead) 1.4 +0 -6 ports/databases/pgbash/distinfo (dead) 1.2 +0 -4 ports/databases/pgbash/pkg-descr (dead) 1.2 +0 -2 ports/databases/pgbash/pkg-plist (dead) 1.59 +0 -3 ports/french/Makefile 1.3 +0 -42 ports/french/pluxml-theme-bridge/Makefile (dead) 1.2 +0 -3 ports/french/pluxml-theme-bridge/distinfo (dead) 1.2 +0 -7 ports/french/pluxml-theme-bridge/files/pkg-message.in (dead) 1.2 +0 -3 ports/french/pluxml-theme-bridge/pkg-descr (dead) 1.2 +0 -7 ports/french/pluxml-theme-bridge/pkg-plist (dead) 1.3 +0 -41 ports/french/pluxml-theme-snowxml/Makefile (dead) 1.2 +0 -3 ports/french/pluxml-theme-snowxml/distinfo (dead) 1.2 +0 -15 ports/french/pluxml-theme-snowxml/files/patch-template.php (dead) 1.2 +0 -7 ports/french/pluxml-theme-snowxml/files/pkg-message.in (dead) 1.2 +0 -3 ports/french/pluxml-theme-snowxml/pkg-descr (dead) 1.2 +0 -7 ports/french/pluxml-theme-snowxml/pkg-plist (dead) 1.3 +0 -44 ports/french/pluxml/Makefile (dead) 1.2 +0 -3 ports/french/pluxml/distinfo (dead) 1.2 +0 -12 ports/french/pluxml/files/pkg-deinstall.in (dead) 1.2 +0 -16 ports/french/pluxml/files/pkg-message.in (dead) 1.2 +0 -7 ports/french/pluxml/pkg-descr (dead) 1.2 +0 -43 ports/french/pluxml/pkg-plist (dead) 1.205 +0 -1 ports/java/Makefile 1.11 +0 -64 ports/java/linux-blackdown-jre11/Makefile (dead) 1.4 +0 -3 ports/java/linux-blackdown-jre11/distinfo (dead) 1.2 +0 -2 ports/java/linux-blackdown-jre11/files/arch (dead) 1.3 +0 -45 ports/java/linux-blackdown-jre11/files/patch-aa (dead) 1.3 +0 -47 ports/java/linux-blackdown-jre11/files/patch-ab (dead) 1.2 +0 -1 ports/java/linux-blackdown-jre11/pkg-descr (dead) 1.6 +0 -84 ports/java/linux-blackdown-jre11/pkg-plist (dead) 1.79 +0 -1 ports/net-im/Makefile 1.8 +0 -89 ports/net-im/wildfire/Makefile (dead) 1.4 +0 -3 ports/net-im/wildfire/distinfo (dead) 1.3 +0 -24 ports/net-im/wildfire/files/pkg-message.in (dead) 1.3 +0 -88 ports/net-im/wildfire/files/wildfire.in (dead) 1.3 +0 -7 ports/net-im/wildfire/pkg-descr (dead) 1.3 +0 -36 ports/net-im/wildfire/pkg-install (dead) 1.4 +0 -318 ports/net-im/wildfire/pkg-plist (dead) 1.1989 +0 -2 ports/www/Makefile 1.10 +0 -172 ports/www/gekko-modules/Makefile (dead) 1.6 +0 -54 ports/www/gekko-modules/distinfo (dead) 1.2 +0 -3 ports/www/gekko-modules/pkg-descr (dead) 1.13 +0 -43 ports/www/gekko/Makefile (dead) 1.9 +0 -3 ports/www/gekko/distinfo (dead) 1.2 +0 -15 ports/www/gekko/files/pkg-message.in (dead) 1.2 +0 -6 ports/www/gekko/pkg-descr (dead) 1.9 +0 -791 ports/www/gekko/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Thu Feb 28 08:48:38 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 50A8B1065674; Thu, 28 Feb 2008 08:48:38 +0000 (UTC) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 243A88FC1A; Thu, 28 Feb 2008 08:48:38 +0000 (UTC) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S8mcoM097732; Thu, 28 Feb 2008 08:48:38 GMT (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S8mbZi097731; Thu, 28 Feb 2008 08:48:37 GMT (envelope-from ache) Message-Id: <200802280848.m1S8mbZi097731@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 28 Feb 2008 08:48:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/p5-Text-CSV_XS Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 08:48:38 -0000 ache 2008-02-28 08:48:37 UTC FreeBSD ports repository Modified files: textproc/p5-Text-CSV_XS Makefile distinfo pkg-descr pkg-plist Log: Update to 0.34 With minor mod to pkg-plist comparing to original PR PR: 120887 Submitted by: leeym Revision Changes Path 1.11 +4 -4 ports/textproc/p5-Text-CSV_XS/Makefile 1.6 +3 -3 ports/textproc/p5-Text-CSV_XS/distinfo 1.2 +8 -2 ports/textproc/p5-Text-CSV_XS/pkg-descr 1.4 +2 -2 ports/textproc/p5-Text-CSV_XS/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 09:05:31 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EF0F0106566C; Thu, 28 Feb 2008 09:05:31 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C3A958FC19; Thu, 28 Feb 2008 09:05:31 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S95Vlo099476; Thu, 28 Feb 2008 09:05:31 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S95VJC099475; Thu, 28 Feb 2008 09:05:31 GMT (envelope-from dinoex) Message-Id: <200802280905.m1S95VJC099475@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 28 Feb 2008 09:05:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/gnustep-base Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 09:05:32 -0000 dinoex 2008-02-28 09:05:31 UTC FreeBSD ports repository Modified files: lang/gnustep-base Makefile distinfo pkg-plist Log: - update to 1.14.2 Revision Changes Path 1.85 +2 -6 ports/lang/gnustep-base/Makefile 1.35 +3 -3 ports/lang/gnustep-base/distinfo 1.33 +665 -659 ports/lang/gnustep-base/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 09:07:37 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BE3F51065670; Thu, 28 Feb 2008 09:07:37 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AB5B58FC1A; Thu, 28 Feb 2008 09:07:37 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S97bTi099589; Thu, 28 Feb 2008 09:07:37 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S97bRS099588; Thu, 28 Feb 2008 09:07:37 GMT (envelope-from dinoex) Message-Id: <200802280907.m1S97bRS099588@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 28 Feb 2008 09:07:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/Mk bsd.gnustep.mk ports/x11-toolkits/gnustep-back Makefile distinfo ports/x11-toolkits/gnustep-gui Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 09:07:37 -0000 dinoex 2008-02-28 09:07:37 UTC FreeBSD ports repository Modified files: Mk bsd.gnustep.mk x11-toolkits/gnustep-back Makefile distinfo x11-toolkits/gnustep-gui Makefile distinfo pkg-plist Log: - udpate to 0.12.1 Revision Changes Path 1.45 +2 -2 ports/Mk/bsd.gnustep.mk 1.61 +4 -4 ports/x11-toolkits/gnustep-back/Makefile 1.23 +3 -3 ports/x11-toolkits/gnustep-back/distinfo 1.93 +3 -3 ports/x11-toolkits/gnustep-gui/Makefile 1.34 +3 -3 ports/x11-toolkits/gnustep-gui/distinfo 1.41 +51 -32 ports/x11-toolkits/gnustep-gui/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 09:09:34 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6261A1065670; Thu, 28 Feb 2008 09:09:34 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 372788FC16; Thu, 28 Feb 2008 09:09:34 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S99YeU099638; Thu, 28 Feb 2008 09:09:34 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S99Y48099637; Thu, 28 Feb 2008 09:09:34 GMT (envelope-from dinoex) Message-Id: <200802280909.m1S99Y48099637@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 28 Feb 2008 09:09:34 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/gnustep Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 09:09:34 -0000 dinoex 2008-02-28 09:09:34 UTC FreeBSD ports repository Modified files: devel/gnustep Makefile Log: - update to 1.14.2 Revision Changes Path 1.68 +2 -2 ports/devel/gnustep/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 09:13:04 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9FE3A106566C; Thu, 28 Feb 2008 09:13:04 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 746908FC22; Thu, 28 Feb 2008 09:13:04 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S9D43h099800; Thu, 28 Feb 2008 09:13:04 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S9D48O099799; Thu, 28 Feb 2008 09:13:04 GMT (envelope-from dinoex) Message-Id: <200802280913.m1S9D48O099799@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 28 Feb 2008 09:13:04 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11-themes/etoile-camaelon Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 09:13:04 -0000 dinoex 2008-02-28 09:13:04 UTC FreeBSD ports repository Modified files: x11-themes/etoile-camaelon Makefile distinfo Log: - update to snapshot 20061221 Revision Changes Path 1.7 +7 -6 ports/x11-themes/etoile-camaelon/Makefile 1.2 +3 -3 ports/x11-themes/etoile-camaelon/distinfo From owner-cvs-all@FreeBSD.ORG Thu Feb 28 09:14:32 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A6AD1106566B; Thu, 28 Feb 2008 09:14:32 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7B4A58FC21; Thu, 28 Feb 2008 09:14:32 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S9EWJw099852; Thu, 28 Feb 2008 09:14:32 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S9EWKI099851; Thu, 28 Feb 2008 09:14:32 GMT (envelope-from dinoex) Message-Id: <200802280914.m1S9EWKI099851@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 28 Feb 2008 09:14:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/misc/gnustep-examples Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 09:14:32 -0000 dinoex 2008-02-28 09:14:32 UTC FreeBSD ports repository Modified files: misc/gnustep-examples Makefile distinfo pkg-plist Log: - update to 1.2.0 Revision Changes Path 1.20 +2 -2 ports/misc/gnustep-examples/Makefile 1.6 +3 -3 ports/misc/gnustep-examples/distinfo 1.13 +21 -0 ports/misc/gnustep-examples/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 09:15:57 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C64E81065671; Thu, 28 Feb 2008 09:15:57 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9A0CB8FC2A; Thu, 28 Feb 2008 09:15:57 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S9Fv0K099965; Thu, 28 Feb 2008 09:15:57 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S9FvEV099964; Thu, 28 Feb 2008 09:15:57 GMT (envelope-from dinoex) Message-Id: <200802280915.m1S9FvEV099964@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 28 Feb 2008 09:15:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-mgmt/hobbit-server Makefile ports/net-mgmt/hobbit-server/files patch-bbwin X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 09:15:58 -0000 dinoex 2008-02-28 09:15:57 UTC FreeBSD ports repository Modified files: net-mgmt/hobbit-server Makefile Added files: net-mgmt/hobbit-server/files patch-bbwin Log: - add support for bbwin client Submitted by: Florian Smeets Obtained from: http://bbwin.sourceforge.net/ Revision Changes Path 1.3 +1 -1 ports/net-mgmt/hobbit-server/Makefile 1.1 +579 -0 ports/net-mgmt/hobbit-server/files/patch-bbwin (new) From owner-cvs-all@FreeBSD.ORG Thu Feb 28 09:19:43 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 62E90106566C; Thu, 28 Feb 2008 09:19:43 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3800B8FC22; Thu, 28 Feb 2008 09:19:43 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S9Jhws000167; Thu, 28 Feb 2008 09:19:43 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S9JhHH000166; Thu, 28 Feb 2008 09:19:43 GMT (envelope-from miwi) Message-Id: <200802280919.m1S9JhHH000166@repoman.freebsd.org> From: Martin Wilke Date: Thu, 28 Feb 2008 09:19:43 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/m17n-db Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 09:19:43 -0000 miwi 2008-02-28 09:19:43 UTC FreeBSD ports repository Modified files: devel/m17n-db Makefile distinfo pkg-plist Log: - Update to 1.5.1 PR: 120473 Submitted by: Ports Fury Revision Changes Path 1.16 +2 -2 ports/devel/m17n-db/Makefile 1.9 +3 -3 ports/devel/m17n-db/distinfo 1.9 +9 -0 ports/devel/m17n-db/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 09:20:21 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA0871065683; Thu, 28 Feb 2008 09:20:21 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 906068FC1C; Thu, 28 Feb 2008 09:20:21 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S9KLCj000261; Thu, 28 Feb 2008 09:20:21 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S9KLTa000260; Thu, 28 Feb 2008 09:20:21 GMT (envelope-from miwi) Message-Id: <200802280920.m1S9KLTa000260@repoman.freebsd.org> From: Martin Wilke Date: Thu, 28 Feb 2008 09:20:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/m17n-docs Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 09:20:22 -0000 miwi 2008-02-28 09:20:21 UTC FreeBSD ports repository Modified files: devel/m17n-docs Makefile distinfo Log: - Update to 1.5.0 PR: 120474 Submitted by: Ports Fury Revision Changes Path 1.7 +10 -1 ports/devel/m17n-docs/Makefile 1.5 +3 -3 ports/devel/m17n-docs/distinfo From owner-cvs-all@FreeBSD.ORG Thu Feb 28 09:21:35 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A2D0106566B; Thu, 28 Feb 2008 09:21:35 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4E0838FC25; Thu, 28 Feb 2008 09:21:35 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S9LZWJ000382; Thu, 28 Feb 2008 09:21:35 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S9LZ7i000381; Thu, 28 Feb 2008 09:21:35 GMT (envelope-from miwi) Message-Id: <200802280921.m1S9LZ7i000381@repoman.freebsd.org> From: Martin Wilke Date: Thu, 28 Feb 2008 09:21:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/m17n-lib Makefile distinfo pkg-plist ports/devel/m17n-lib/files patch-examples__Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 09:21:35 -0000 miwi 2008-02-28 09:21:35 UTC FreeBSD ports repository Modified files: devel/m17n-lib Makefile distinfo pkg-plist devel/m17n-lib/files patch-examples__Makefile.in Log: - Update to 1.5.1 PR: 120475 Submitted by: Ports Fury Revision Changes Path 1.18 +3 -3 ports/devel/m17n-lib/Makefile 1.9 +3 -3 ports/devel/m17n-lib/distinfo 1.2 +4 -4 ports/devel/m17n-lib/files/patch-examples__Makefile.in 1.6 +13 -7 ports/devel/m17n-lib/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 09:23:03 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1910F106566B; Thu, 28 Feb 2008 09:23:03 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E215A8FC13; Thu, 28 Feb 2008 09:23:02 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S9N2Am000461; Thu, 28 Feb 2008 09:23:02 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S9N2CV000460; Thu, 28 Feb 2008 09:23:02 GMT (envelope-from miwi) Message-Id: <200802280923.m1S9N2CV000460@repoman.freebsd.org> From: Martin Wilke Date: Thu, 28 Feb 2008 09:23:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11/mlterm Makefile ports/textproc/scim-m17n Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 09:23:03 -0000 miwi 2008-02-28 09:23:02 UTC FreeBSD ports repository Modified files: x11/mlterm Makefile textproc/scim-m17n Makefile Log: - Chase m17n-* libversion bump Revision Changes Path 1.4 +2 -2 ports/textproc/scim-m17n/Makefile 1.46 +2 -1 ports/x11/mlterm/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 09:26:13 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8E9C11065675; Thu, 28 Feb 2008 09:26:13 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 63EBA8FC1A; Thu, 28 Feb 2008 09:26:13 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S9QDWc000597; Thu, 28 Feb 2008 09:26:13 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S9QDWZ000596; Thu, 28 Feb 2008 09:26:13 GMT (envelope-from miwi) Message-Id: <200802280926.m1S9QDWZ000596@repoman.freebsd.org> From: Martin Wilke Date: Thu, 28 Feb 2008 09:26:13 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/blobandconquer Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 09:26:13 -0000 miwi 2008-02-28 09:26:13 UTC FreeBSD ports repository Modified files: games/blobandconquer Makefile Log: - Update MASTER_SITES PR: 121157 Submitted by: Dmitry Marakasov (maintainer) Revision Changes Path 1.17 +3 -5 ports/games/blobandconquer/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 09:31:35 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 16F401065672; Thu, 28 Feb 2008 09:31:35 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E03A38FC12; Thu, 28 Feb 2008 09:31:34 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S9VYkL000790; Thu, 28 Feb 2008 09:31:34 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S9VYWJ000789; Thu, 28 Feb 2008 09:31:34 GMT (envelope-from miwi) Message-Id: <200802280931.m1S9VYWJ000789@repoman.freebsd.org> From: Martin Wilke Date: Thu, 28 Feb 2008 09:31:34 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/mutt Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 09:31:35 -0000 miwi 2008-02-28 09:31:34 UTC FreeBSD ports repository Modified files: mail/mutt Makefile Log: - Fix dependency for the security/krb5 port. - Bump PORTREVISION PR: 117823 Submitted by: Udo Schweigert (maintainer) Revision Changes Path 1.179 +2 -2 ports/mail/mutt/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 09:38:12 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BEF55106566B; Thu, 28 Feb 2008 09:38:12 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AD1B58FC1A; Thu, 28 Feb 2008 09:38:12 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S9cCie001109; Thu, 28 Feb 2008 09:38:12 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S9cCmb001108; Thu, 28 Feb 2008 09:38:12 GMT (envelope-from miwi) Message-Id: <200802280938.m1S9cCmb001108@repoman.freebsd.org> From: Martin Wilke Date: Thu, 28 Feb 2008 09:38:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc Makefile ports/textproc/ctpp2 Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 09:38:12 -0000 miwi 2008-02-28 09:38:12 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/ctpp2 Makefile distinfo pkg-descr pkg-plist Log: This is a simple set of C++ classes which allow to use templates like perl module HTML::Template WWW: http://reki.ru/products/ctpp/ PR: ports/119979 Submitted by: reki at reki.ru (Andrei V. Shetuhin) Revision Changes Path 1.1221 +1 -0 ports/textproc/Makefile 1.1 +23 -0 ports/textproc/ctpp2/Makefile (new) 1.1 +3 -0 ports/textproc/ctpp2/distinfo (new) 1.1 +6 -0 ports/textproc/ctpp2/pkg-descr (new) 1.1 +52 -0 ports/textproc/ctpp2/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Feb 28 09:38:35 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D7C3B1065702; Thu, 28 Feb 2008 09:38:35 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AD67F8FC20; Thu, 28 Feb 2008 09:38:35 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S9cZbi001143; Thu, 28 Feb 2008 09:38:35 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S9cZ0T001142; Thu, 28 Feb 2008 09:38:35 GMT (envelope-from miwi) Message-Id: <200802280938.m1S9cZ0T001142@repoman.freebsd.org> From: Martin Wilke Date: Thu, 28 Feb 2008 09:38:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 09:38:36 -0000 miwi 2008-02-28 09:38:35 UTC FreeBSD ports repository Modified files: . modules Log: ctpp2 --> ports/textproc/ctpp2 Revision Changes Path 1.19445 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Feb 28 09:41:20 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A7104106566B; Thu, 28 Feb 2008 09:41:20 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7BE338FC28; Thu, 28 Feb 2008 09:41:20 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S9fKbc001292; Thu, 28 Feb 2008 09:41:20 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S9fKIt001291; Thu, 28 Feb 2008 09:41:20 GMT (envelope-from miwi) Message-Id: <200802280941.m1S9fKIt001291@repoman.freebsd.org> From: Martin Wilke Date: Thu, 28 Feb 2008 09:41:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/databases/ptop Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 09:41:20 -0000 miwi 2008-02-28 09:41:20 UTC FreeBSD ports repository Modified files: databases/ptop Makefile distinfo Log: - Update to 3.6.1b4 PR: 121109 Submitted by: Sunghyuk Do (maintainer) Revision Changes Path 1.2 +3 -3 ports/databases/ptop/Makefile 1.2 +3 -3 ports/databases/ptop/distinfo From owner-cvs-all@FreeBSD.ORG Thu Feb 28 09:48:30 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 35B911065674; Thu, 28 Feb 2008 09:48:30 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0A99E8FC20; Thu, 28 Feb 2008 09:48:30 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1S9mTgx001507; Thu, 28 Feb 2008 09:48:29 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1S9mTc5001506; Thu, 28 Feb 2008 09:48:29 GMT (envelope-from miwi) Message-Id: <200802280948.m1S9mTc5001506@repoman.freebsd.org> From: Martin Wilke Date: Thu, 28 Feb 2008 09:48:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/ike Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 09:48:30 -0000 miwi 2008-02-28 09:48:29 UTC FreeBSD ports repository Modified files: security/ike Makefile distinfo pkg-plist Log: - Update to 2.0.3 PR: 118303 Submitted by: Matthew Grooms (maintainer) Revision Changes Path 1.3 +1 -1 ports/security/ike/Makefile 1.3 +3 -3 ports/security/ike/distinfo 1.3 +2 -2 ports/security/ike/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 10:21:22 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A21F5106566B; Thu, 28 Feb 2008 10:21:22 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 766958FC36; Thu, 28 Feb 2008 10:21:22 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SALMiB004347; Thu, 28 Feb 2008 10:21:22 GMT (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SALM8q004346; Thu, 28 Feb 2008 10:21:22 GMT (envelope-from sobomax) Message-Id: <200802281021.m1SALM8q004346@repoman.freebsd.org> From: Maxim Sobolev Date: Thu, 28 Feb 2008 10:21:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/asterisk Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 10:21:22 -0000 sobomax 2008-02-28 10:21:21 UTC FreeBSD ports repository Modified files: net/asterisk Makefile Log: Port compiles on FreeBSD/powerpc just fine. Revision Changes Path 1.93 +1 -1 ports/net/asterisk/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 10:31:51 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 51F511065678; Thu, 28 Feb 2008 10:31:51 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.freebsd.org (Postfix) with ESMTP id 0B4D68FC24; Thu, 28 Feb 2008 10:31:50 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id 342792087; Thu, 28 Feb 2008 11:31:44 +0100 (CET) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: -0.3/3.0 X-Spam-Checker-Version: SpamAssassin 3.2.4 (2008-01-01) on tim.des.no Received: from ds4.des.no (des.no [80.203.243.180]) by smtp.des.no (Postfix) with ESMTP id 0D34A2049; Thu, 28 Feb 2008 11:31:42 +0100 (CET) From: =?utf-8?Q?Dag-Erling_Sm=C3=B8rgrav?= To: John Baldwin References: <200802271902.m1RJ23wd012246@repoman.freebsd.org> Date: Thu, 28 Feb 2008 11:31:42 +0100 In-Reply-To: <200802271902.m1RJ23wd012246@repoman.freebsd.org> (John Baldwin's message of "Wed\, 27 Feb 2008 19\:02\:03 +0000 \(UTC\)") Message-ID: <86ejax4bjl.fsf@ds4.des.no> User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/23.0.60 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/stdio fdopen.c fopen.c freopen.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 10:31:51 -0000 John Baldwin writes: > At some point in the future we should look at expanding the file descri= ptor > in FILE to an int, but that is a bit complicated due to ABI issues. There shouldn't be any ABI issues, since FILE should never, ever be used directly, only through FILE *. If someone out there is stupid enough to do FILE f =3D *fopen("foo", "r+"); then they deserve the breakage... DES --=20 Dag-Erling Sm=C3=B8rgrav - des@des.no From owner-cvs-all@FreeBSD.ORG Thu Feb 28 10:40:59 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 477801065678; Thu, 28 Feb 2008 10:40:59 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.freebsd.org (Postfix) with ESMTP id F3D4F8FC13; Thu, 28 Feb 2008 10:40:58 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id 7B0C3208C; Thu, 28 Feb 2008 11:40:55 +0100 (CET) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: -0.3/3.0 X-Spam-Checker-Version: SpamAssassin 3.2.4 (2008-01-01) on tim.des.no Received: from ds4.des.no (des.no [80.203.243.180]) by smtp.des.no (Postfix) with ESMTP id B99FD2049; Thu, 28 Feb 2008 11:40:54 +0100 (CET) From: =?utf-8?Q?Dag-Erling_Sm=C3=B8rgrav?= To: John Baldwin References: <200802271902.m1RJ23wd012246@repoman.freebsd.org> <86ejax4bjl.fsf@ds4.des.no> Date: Thu, 28 Feb 2008 11:40:54 +0100 In-Reply-To: <86ejax4bjl.fsf@ds4.des.no> ("Dag-Erling =?utf-8?Q?Sm=C3=B8rg?= =?utf-8?Q?rav=22's?= message of "Thu\, 28 Feb 2008 11\:31\:42 +0100") Message-ID: <867igp4b49.fsf@ds4.des.no> User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/23.0.60 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/stdio fdopen.c fopen.c freopen.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 10:40:59 -0000 Dag-Erling Sm=C3=B8rgrav writes: > John Baldwin writes: > > At some point in the future we should look at expanding the file descri= ptor > > in FILE to an int, but that is a bit complicated due to ABI issues. > There shouldn't be any ABI issues, since FILE should never, ever be used > directly, only through FILE *. After reading the discussion on -arch, I take that back; but as Garrett pointed out, a simple way of fixing it is to just return EMFILE if the fd we get from open() is >=3D32768. It's a pity we're not allowed to increase FOPEN_MAX beyond some ridiculously low number... DES --=20 Dag-Erling Sm=C3=B8rgrav - des@des.no From owner-cvs-all@FreeBSD.ORG Thu Feb 28 10:48:56 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 143931065674; Thu, 28 Feb 2008 10:48:56 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DC7518FC1C; Thu, 28 Feb 2008 10:48:55 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SAmtcl006032; Thu, 28 Feb 2008 10:48:55 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SAmtiu006031; Thu, 28 Feb 2008 10:48:55 GMT (envelope-from rafan) Message-Id: <200802281048.m1SAmtiu006031@repoman.freebsd.org> From: Rong-En Fan Date: Thu, 28 Feb 2008 10:48:55 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio/libmtp Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 10:48:56 -0000 rafan 2008-02-28 10:48:55 UTC FreeBSD ports repository Modified files: audio/libmtp Makefile distinfo pkg-plist Log: - Update to 0.2.4 PR: ports/118499 Submitted by: maintainer Revision Changes Path 1.9 +1 -4 ports/audio/libmtp/Makefile 1.7 +3 -3 ports/audio/libmtp/distinfo 1.5 +1 -1 ports/audio/libmtp/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 10:49:59 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B21641065674; Thu, 28 Feb 2008 10:49:59 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8595A8FC23; Thu, 28 Feb 2008 10:49:59 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SAnxEY006109; Thu, 28 Feb 2008 10:49:59 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SAnxMb006108; Thu, 28 Feb 2008 10:49:59 GMT (envelope-from rafan) Message-Id: <200802281049.m1SAnxMb006108@repoman.freebsd.org> From: Rong-En Fan Date: Thu, 28 Feb 2008 10:49:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/mtpfs Makefile ports/audio/gnomad2 Makefile ports/audio/amarok Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 10:49:59 -0000 rafan 2008-02-28 10:49:59 UTC FreeBSD ports repository Modified files: sysutils/mtpfs Makefile audio/gnomad2 Makefile audio/amarok Makefile Log: - Chase audio/libmtp share library version bump PR: 118499 Revision Changes Path 1.80 +2 -1 ports/audio/amarok/Makefile 1.6 +1 -1 ports/audio/gnomad2/Makefile 1.4 +1 -1 ports/sysutils/mtpfs/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 11:07:13 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 321FE106568C; Thu, 28 Feb 2008 11:07:13 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 05EFE8FC29; Thu, 28 Feb 2008 11:07:13 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SB7CHk007978; Thu, 28 Feb 2008 11:07:12 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SB7Cj2007977; Thu, 28 Feb 2008 11:07:12 GMT (envelope-from garga) Message-Id: <200802281107.m1SB7Cj2007977@repoman.freebsd.org> From: Renato Botelho Date: Thu, 28 Feb 2008 11:07:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio/wmauda Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 11:07:13 -0000 garga 2008-02-28 11:07:12 UTC FreeBSD ports repository Modified files: audio/wmauda Makefile distinfo Log: - Update to 0.7, this is the version that works with audacious 1.4.x Revision Changes Path 1.3 +1 -2 ports/audio/wmauda/Makefile 1.2 +3 -3 ports/audio/wmauda/distinfo From owner-cvs-all@FreeBSD.ORG Thu Feb 28 11:07:31 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7CD9C1065676; Thu, 28 Feb 2008 11:07:31 +0000 (UTC) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 50C638FC20; Thu, 28 Feb 2008 11:07:31 +0000 (UTC) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SB7VT2008013; Thu, 28 Feb 2008 11:07:31 GMT (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SB7VR3008012; Thu, 28 Feb 2008 11:07:31 GMT (envelope-from knu) Message-Id: <200802281107.m1SB7VR3008012@repoman.freebsd.org> From: Akinori MUSHA Date: Thu, 28 Feb 2008 11:07:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/converters/cocot Makefile pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 11:07:32 -0000 knu 2008-02-28 11:07:31 UTC FreeBSD ports repository Modified files: converters/cocot Makefile pkg-descr Log: Update addresses. Revision Changes Path 1.2 +1 -1 ports/converters/cocot/Makefile 1.2 +2 -2 ports/converters/cocot/pkg-descr From owner-cvs-all@FreeBSD.ORG Thu Feb 28 11:56:53 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 41FDE1065672 for ; Thu, 28 Feb 2008 11:56:53 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from capeta.freebsdbrasil.com.br (capeta.freebsdbrasil.com.br [201.48.151.3]) by mx1.freebsd.org (Postfix) with SMTP id 7DDBA8FC36 for ; Thu, 28 Feb 2008 11:56:52 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: (qmail 78410 invoked from network); 28 Feb 2008 08:30:09 -0300 Received: from unknown (HELO soc90.bluepex.com) (garga@201.28.114.106) by capeta.freebsdbrasil.com.br with SMTP; 28 Feb 2008 08:30:09 -0300 Received: (qmail 35760 invoked by uid 1001); 28 Feb 2008 08:30:06 -0300 Date: Thu, 28 Feb 2008 08:30:06 -0300 From: Renato Botelho To: Oliver Lehmann Message-ID: <20080228113004.GA72033@bluepex.com> Mail-Followup-To: Oliver Lehmann , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200802280541.m1S5fH1F076561@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; x-action=pgp-signed Content-Disposition: inline In-Reply-To: <200802280541.m1S5fH1F076561@repoman.freebsd.org> User-Agent: Mutt/1.5.17 (2007-11-01) Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/audio/audacious-crossfade Makefile ports/audio/audacious-dumb Makefile distinfo ports/audio/audacious-dumb/files patch-Makefile ports/audio/audacious-mac Makefile distinfo ports/audio/audacious-mac/files patch-src-common.h patch-src-fileinfo.cpp ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 11:56:53 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Thu, Feb 28, 2008 at 05:41:17AM +0000, Oliver Lehmann wrote: > oliver 2008-02-28 05:41:17 UTC > > FreeBSD ports repository > > Modified files: > audio/audacious-crossfade Makefile > audio/audacious-dumb Makefile distinfo > audio/audacious-dumb/files patch-Makefile > audio/audacious-mac Makefile distinfo > multimedia/audacious Makefile distinfo pkg-plist > multimedia/audacious-plugins Makefile distinfo pkg-plist > Added files: > multimedia/audacious/files patch-src-audacious-Makefile > patch-src-audtool-Makefile > Removed files: > audio/audacious-mac/files patch-src-common.h > patch-src-fileinfo.cpp > patch-src-mac.cpp url2filename.cpp > Log: > welcome audacious 1.4! I remembered to have same problem at 1.4.5 when i tested it: ===> Checking if multimedia/audacious already installed Successfully installed audacious.pc. Successfully installed audclient.pc. Successfully installed audacious.desktop. Entering directory src. Entering directory libaudclient. gmake[2]: *** No rule to make target `/usr/local/include/audacious/dbus.h', needed by `audctrl.o'. Stop. gmake[1]: *** [install] Error 1 gmake: *** [install] Error 1 *** Error code 2 Stop in /usr/ports/multimedia/audacious. *** Error code 1 Stop in /usr/ports/multimedia/audacious. - -- Renato Botelho GnuPG Key: http://www.FreeBSD.org/~garga/pubkey.asc Leveraging always beats prototyping. -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQFHxps86CRbiSJE7akRAsoAAJwNBsTjg0DryA3m+DPtQuwloel/NwCeInFF 2tVi/p/aZnBBIh7Zm4uehNE= =2RWu -----END PGP SIGNATURE----- From owner-cvs-all@FreeBSD.ORG Thu Feb 28 12:08:26 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4E3521065672; Thu, 28 Feb 2008 12:08:26 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 37A188FC26; Thu, 28 Feb 2008 12:08:26 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SC8QLH012701; Thu, 28 Feb 2008 12:08:26 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SC8Of4012700; Thu, 28 Feb 2008 12:08:24 GMT (envelope-from miwi) Message-Id: <200802281208.m1SC8Of4012700@repoman.freebsd.org> From: Martin Wilke Date: Thu, 28 Feb 2008 12:08:24 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules ports MOVED ports/devel Makefile ports/devel/php-dbg Makefile distinfo pkg-descr pkg-message pkg-plist ports/editors Makefile ports/editors/muggy Makefile distinfo pkg-descr pkg-plist ports/editors/muggy/scripts ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 12:08:26 -0000 miwi 2008-02-28 12:08:24 UTC FreeBSD ports repository Modified files: . modules . MOVED devel Makefile editors Makefile ftp Makefile graphics Makefile lang Makefile x11-fm Makefile x11-wm Makefile Removed files: devel/php-dbg Makefile distinfo pkg-descr pkg-message pkg-plist editors/muggy Makefile distinfo pkg-descr pkg-plist editors/muggy/scripts post-install ftp/axelq Makefile distinfo pkg-descr pkg-plist ftp/axelq/files axelq.rc graphics/jgv Makefile distinfo pkg-descr pkg-plist graphics/jgv/scripts post-install lang/fpc-devel Makefile distinfo pkg-descr pkg-install pkg-message pkg-plist lang/fpc-devel/files srcfiles x11-fm/binder Makefile distinfo pkg-descr pkg-plist x11-fm/binder/scripts post-install x11-wm/wmDeskGuide Makefile distinfo pkg-descr x11-wm/wmDeskGuide/files patch-Makefile Log: 2007-10-28 x11-wm/wmDeskGuide: Version branch long since retired 2008-02-23 ftp/axelq: Unmaintained, website disappeared 2007-11-09 lang/fpc-devel: now lags behind version in lang/fpc; use that instead 2007-11-13 devel/php-dbg: does not work with php5 and does not compile on gcc4.2 2007-11-16 graphics/jgv: development stalled for years, outdated, unmaintained 2007-11-16 editors/muggy: development stalled for years, unmaintained 2007-11-16 x11-fm/binder: development stalled for years, outdated, unmaintained Revision Changes Path 1.19446 +0 -7 CVSROOT/modules 1.1547 +8 -1 ports/MOVED 1.3010 +0 -1 ports/devel/Makefile 1.15 +0 -48 ports/devel/php-dbg/Makefile (dead) 1.7 +0 -3 ports/devel/php-dbg/distinfo (dead) 1.2 +0 -4 ports/devel/php-dbg/pkg-descr (dead) 1.4 +0 -25 ports/devel/php-dbg/pkg-message (dead) 1.5 +0 -2 ports/devel/php-dbg/pkg-plist (dead) 1.391 +0 -1 ports/editors/Makefile 1.19 +0 -42 ports/editors/muggy/Makefile (dead) 1.5 +0 -3 ports/editors/muggy/distinfo (dead) 1.4 +0 -16 ports/editors/muggy/pkg-descr (dead) 1.6 +0 -39 ports/editors/muggy/pkg-plist (dead) 1.5 +0 -19 ports/editors/muggy/scripts/post-install (dead) 1.136 +0 -1 ports/ftp/Makefile 1.11 +0 -38 ports/ftp/axelq/Makefile (dead) 1.5 +0 -3 ports/ftp/axelq/distinfo (dead) 1.2 +0 -20 ports/ftp/axelq/files/axelq.rc (dead) 1.3 +0 -4 ports/ftp/axelq/pkg-descr (dead) 1.2 +0 -2 ports/ftp/axelq/pkg-plist (dead) 1.1133 +0 -1 ports/graphics/Makefile 1.20 +0 -42 ports/graphics/jgv/Makefile (dead) 1.4 +0 -3 ports/graphics/jgv/distinfo (dead) 1.4 +0 -9 ports/graphics/jgv/pkg-descr (dead) 1.5 +0 -31 ports/graphics/jgv/pkg-plist (dead) 1.5 +0 -19 ports/graphics/jgv/scripts/post-install (dead) 1.584 +0 -1 ports/lang/Makefile 1.18 +0 -72 ports/lang/fpc-devel/Makefile (dead) 1.7 +0 -3 ports/lang/fpc-devel/distinfo (dead) 1.2 +0 -4264 ports/lang/fpc-devel/files/srcfiles (dead) 1.4 +0 -21 ports/lang/fpc-devel/pkg-descr (dead) 1.6 +0 -44 ports/lang/fpc-devel/pkg-install (dead) 1.2 +0 -8 ports/lang/fpc-devel/pkg-message (dead) 1.8 +0 -5682 ports/lang/fpc-devel/pkg-plist (dead) 1.68 +0 -1 ports/x11-fm/Makefile 1.23 +0 -44 ports/x11-fm/binder/Makefile (dead) 1.4 +0 -3 ports/x11-fm/binder/distinfo (dead) 1.4 +0 -5 ports/x11-fm/binder/pkg-descr (dead) 1.5 +0 -186 ports/x11-fm/binder/pkg-plist (dead) 1.5 +0 -30 ports/x11-fm/binder/scripts/post-install (dead) 1.216 +0 -1 ports/x11-wm/Makefile 1.10 +0 -40 ports/x11-wm/wmDeskGuide/Makefile (dead) 1.5 +0 -3 ports/x11-wm/wmDeskGuide/distinfo (dead) 1.3 +0 -28 ports/x11-wm/wmDeskGuide/files/patch-Makefile (dead) 1.2 +0 -5 ports/x11-wm/wmDeskGuide/pkg-descr (dead) From owner-cvs-all@FreeBSD.ORG Thu Feb 28 12:10:25 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E86B0106566C; Thu, 28 Feb 2008 12:10:23 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BB9B38FC32; Thu, 28 Feb 2008 12:10:23 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SCANlX012823; Thu, 28 Feb 2008 12:10:23 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SCANTw012822; Thu, 28 Feb 2008 12:10:23 GMT (envelope-from maho) Message-Id: <200802281210.m1SCANTw012822@repoman.freebsd.org> From: Maho Nakata Date: Thu, 28 Feb 2008 12:10:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/editors/openoffice.org-2-RC Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 12:10:25 -0000 maho 2008-02-28 12:10:23 UTC FreeBSD ports repository Modified files: editors/openoffice.org-2-RC Makefile distinfo Log: Update to OOH680_m8. This is the OOo 2.4RC2. Revision Changes Path 1.321 +2 -2 ports/editors/openoffice.org-2-RC/Makefile 1.125 +3 -3 ports/editors/openoffice.org-2-RC/distinfo From owner-cvs-all@FreeBSD.ORG Thu Feb 28 12:23:12 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F763106569A; Thu, 28 Feb 2008 12:23:12 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 73D298FC18; Thu, 28 Feb 2008 12:23:12 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SCNC9c015720; Thu, 28 Feb 2008 12:23:12 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SCNClc015719; Thu, 28 Feb 2008 12:23:12 GMT (envelope-from miwi) Message-Id: <200802281223.m1SCNClc015719@repoman.freebsd.org> From: Martin Wilke Date: Thu, 28 Feb 2008 12:23:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/guichan Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 12:23:12 -0000 miwi 2008-02-28 12:23:12 UTC FreeBSD ports repository Modified files: devel/guichan Makefile distinfo pkg-plist Log: - Update to 0.7.1 PR: 119056 Submitted by: maintainer Revision Changes Path 1.13 +2 -4 ports/devel/guichan/Makefile 1.5 +3 -3 ports/devel/guichan/distinfo 1.7 +2 -0 ports/devel/guichan/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 12:23:47 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BE56A1065686; Thu, 28 Feb 2008 12:23:47 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9190A8FC17; Thu, 28 Feb 2008 12:23:47 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SCNlOe015763; Thu, 28 Feb 2008 12:23:47 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SCNlqH015762; Thu, 28 Feb 2008 12:23:47 GMT (envelope-from miwi) Message-Id: <200802281223.m1SCNlqH015762@repoman.freebsd.org> From: Martin Wilke Date: Thu, 28 Feb 2008 12:23:47 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/tmw Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 12:23:47 -0000 miwi 2008-02-28 12:23:47 UTC FreeBSD ports repository Modified files: games/tmw Makefile distinfo pkg-plist Log: - Update to 0.0.24 PR: 119056 Submitted by: maintainer Revision Changes Path 1.17 +4 -4 ports/games/tmw/Makefile 1.11 +3 -3 ports/games/tmw/distinfo 1.10 +3 -0 ports/games/tmw/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 12:24:44 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C4BB31065676; Thu, 28 Feb 2008 12:24:44 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 987A18FC16; Thu, 28 Feb 2008 12:24:44 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SCOiZN015827; Thu, 28 Feb 2008 12:24:44 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SCOiTF015826; Thu, 28 Feb 2008 12:24:44 GMT (envelope-from miwi) Message-Id: <200802281224.m1SCOiTF015826@repoman.freebsd.org> From: Martin Wilke Date: Thu, 28 Feb 2008 12:24:44 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/diameter Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 12:24:44 -0000 miwi 2008-02-28 12:24:44 UTC FreeBSD ports repository Modified files: games/diameter Makefile Log: - Chase devel/guichan shalib version bump Revision Changes Path 1.9 +2 -1 ports/games/diameter/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 12:26:50 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 734FB106566C; Thu, 28 Feb 2008 12:26:50 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 46E8C8FC15; Thu, 28 Feb 2008 12:26:50 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SCQodM015924; Thu, 28 Feb 2008 12:26:50 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SCQodP015923; Thu, 28 Feb 2008 12:26:50 GMT (envelope-from miwi) Message-Id: <200802281226.m1SCQodP015923@repoman.freebsd.org> From: Martin Wilke Date: Thu, 28 Feb 2008 12:26:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/print/pslib Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 12:26:50 -0000 miwi 2008-02-28 12:26:50 UTC FreeBSD ports repository Modified files: print/pslib Makefile distinfo Log: - Update to 0.4.1 PR: 118226 Submitted by: Marcus von Appen (maintainer) Revision Changes Path 1.18 +3 -2 ports/print/pslib/Makefile 1.10 +3 -3 ports/print/pslib/distinfo From owner-cvs-all@FreeBSD.ORG Thu Feb 28 12:34:39 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DAB9C106566C; Thu, 28 Feb 2008 12:34:39 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id ADEBE8FC21; Thu, 28 Feb 2008 12:34:39 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SCYd5B016192; Thu, 28 Feb 2008 12:34:39 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SCYd4u016191; Thu, 28 Feb 2008 12:34:39 GMT (envelope-from edwin) Message-Id: <200802281234.m1SCYd4u016191@repoman.freebsd.org> From: Edwin Groothuis Date: Thu, 28 Feb 2008 12:34:39 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/german/tipp10 pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 12:34:40 -0000 edwin 2008-02-28 12:34:39 UTC FreeBSD ports repository Modified files: german/tipp10 pkg-descr Log: on dvl@s request: add http:// to the WWW line Revision Changes Path 1.2 +1 -1 ports/german/tipp10/pkg-descr From owner-cvs-all@FreeBSD.ORG Thu Feb 28 13:00:01 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4BB62106567C; Thu, 28 Feb 2008 13:00:01 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1F5418FC45; Thu, 28 Feb 2008 13:00:01 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SD01d6025975; Thu, 28 Feb 2008 13:00:01 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SD00Mf025954; Thu, 28 Feb 2008 13:00:00 GMT (envelope-from erwin) Message-Id: <200802281300.m1SD00Mf025954@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 28 Feb 2008 13:00:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/databases/xapian-core Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 13:00:01 -0000 erwin 2008-02-28 13:00:00 UTC FreeBSD ports repository Modified files: databases/xapian-core Makefile Log: Mark BROKEN: does not fetch. Revision Changes Path 1.15 +2 -0 ports/databases/xapian-core/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 13:24:52 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 346891065684; Thu, 28 Feb 2008 13:24:52 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 096C78FC1D; Thu, 28 Feb 2008 13:24:52 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SDOpjC029211; Thu, 28 Feb 2008 13:24:51 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SDOp4w029210; Thu, 28 Feb 2008 13:24:51 GMT (envelope-from sat) Message-Id: <200802281324.m1SDOp4w029210@repoman.freebsd.org> From: Andrew Pantyukhin Date: Thu, 28 Feb 2008 13:24:48 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/flex Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 13:24:52 -0000 sat 2008-02-28 13:24:48 UTC FreeBSD ports repository Modified files: textproc/flex Makefile distinfo Log: - Update to 2.5.35 Revision Changes Path 1.4 +1 -1 ports/textproc/flex/Makefile 1.3 +3 -3 ports/textproc/flex/distinfo From owner-cvs-all@FreeBSD.ORG Thu Feb 28 13:56:50 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 50F7E106566B; Thu, 28 Feb 2008 13:56:50 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from speedfactory.net (mail.speedfactory.net [66.23.216.219]) by mx1.freebsd.org (Postfix) with ESMTP id 71C7E8FC18; Thu, 28 Feb 2008 13:56:49 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (unverified [66.23.211.162]) by speedfactory.net (SurgeMail 3.8s) with ESMTP id 233689946-1834499 for multiple; Thu, 28 Feb 2008 08:54:42 -0500 Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.14.2/8.14.2) with ESMTP id m1SDuYQZ046128; Thu, 28 Feb 2008 08:56:35 -0500 (EST) (envelope-from jhb@freebsd.org) From: John Baldwin To: Dag-Erling =?utf-8?q?Sm=C3=B8rgrav?= Date: Thu, 28 Feb 2008 08:01:52 -0500 User-Agent: KMail/1.9.7 References: <200802271902.m1RJ23wd012246@repoman.freebsd.org> <86ejax4bjl.fsf@ds4.des.no> <867igp4b49.fsf@ds4.des.no> In-Reply-To: <867igp4b49.fsf@ds4.des.no> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200802280801.53162.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Thu, 28 Feb 2008 08:56:35 -0500 (EST) X-Virus-Scanned: ClamAV 0.91.2/6023/Thu Feb 28 07:50:11 2008 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libc/stdio fdopen.c fopen.c freopen.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 13:56:50 -0000 On Thursday 28 February 2008 05:40:54 am Dag-Erling Sm=C3=B8rgrav wrote: > Dag-Erling Sm=C3=B8rgrav writes: > > John Baldwin writes: > > > At some point in the future we should look at expanding the file=20 descriptor > > > in FILE to an int, but that is a bit complicated due to ABI issues. > > There shouldn't be any ABI issues, since FILE should never, ever be used > > directly, only through FILE *. >=20 > After reading the discussion on -arch, I take that back; but as Garrett > pointed out, a simple way of fixing it is to just return EMFILE if the > fd we get from open() is >=3D32768. >=20 > It's a pity we're not allowed to increase FOPEN_MAX beyond some > ridiculously low number... The problem is I'd also like it to work if we get a "large" fd. glibc hand= les=20 this fine. =2D-=20 John Baldwin From owner-cvs-all@FreeBSD.ORG Thu Feb 28 13:57:40 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4AE6B10656A0; Thu, 28 Feb 2008 13:57:40 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1B41D8FC1D; Thu, 28 Feb 2008 13:57:40 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SDvdpN030323; Thu, 28 Feb 2008 13:57:39 GMT (envelope-from ale@repoman.freebsd.org) Received: (from ale@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SDvdZn030322; Thu, 28 Feb 2008 13:57:39 GMT (envelope-from ale) Message-Id: <200802281357.m1SDvdZn030322@repoman.freebsd.org> From: Alex Dupre Date: Thu, 28 Feb 2008 13:57:39 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/converters/dumpasn1 Makefile distinfo ports/converters/dumpasn1/files patch-dumpasn1.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 13:57:40 -0000 ale 2008-02-28 13:57:39 UTC FreeBSD ports repository Modified files: converters/dumpasn1 Makefile distinfo converters/dumpasn1/files patch-dumpasn1.c Log: Update to 20080204 release. Revision Changes Path 1.20 +1 -1 ports/converters/dumpasn1/Makefile 1.17 +6 -6 ports/converters/dumpasn1/distinfo 1.2 +0 -9 ports/converters/dumpasn1/files/patch-dumpasn1.c From owner-cvs-all@FreeBSD.ORG Thu Feb 28 14:26:11 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6C2C21065670; Thu, 28 Feb 2008 14:26:11 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 557428FC14; Thu, 28 Feb 2008 14:26:11 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SEQBNq032790; Thu, 28 Feb 2008 14:26:11 GMT (envelope-from ale@repoman.freebsd.org) Received: (from ale@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SEQBhT032789; Thu, 28 Feb 2008 14:26:11 GMT (envelope-from ale) Message-Id: <200802281426.m1SEQBhT032789@repoman.freebsd.org> From: Alex Dupre Date: Thu, 28 Feb 2008 14:26:11 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www Makefile ports/www/tomcat-native Makefile distinfo pkg-descr pkg-plist ports/www/tomcat-native/files patch-Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 14:26:11 -0000 ale 2008-02-28 14:26:11 UTC FreeBSD ports repository Modified files: www Makefile Added files: www/tomcat-native Makefile distinfo pkg-descr pkg-plist www/tomcat-native/files patch-Makefile.in Log: Tomcat can use the Apache Portable Runtime to provide superior scalability, performance, and better integration with native server technologies. APR has many uses, including access to advanced IO functionality (such as sendfile, epoll and OpenSSL), OS level functionality (random number generation, system status, etc), and native process handling (shared memory, NT pipes and Unix sockets). These features allows making Tomcat a general purposewebserver, will enable much better integration with other native web technologies, and overall make Java much more viable as a full fledged webserver platform rather than simply a backend focused technology. Revision Changes Path 1.1990 +1 -0 ports/www/Makefile 1.1 +31 -0 ports/www/tomcat-native/Makefile (new) 1.1 +3 -0 ports/www/tomcat-native/distinfo (new) 1.1 +16 -0 ports/www/tomcat-native/files/patch-Makefile.in (new) 1.1 +14 -0 ports/www/tomcat-native/pkg-descr (new) 1.1 +4 -0 ports/www/tomcat-native/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Feb 28 14:26:27 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B62BF106567F; Thu, 28 Feb 2008 14:26:27 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 86E878FC2A; Thu, 28 Feb 2008 14:26:27 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SEQRhn032830; Thu, 28 Feb 2008 14:26:27 GMT (envelope-from ale@repoman.freebsd.org) Received: (from ale@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SEQRVd032829; Thu, 28 Feb 2008 14:26:27 GMT (envelope-from ale) Message-Id: <200802281426.m1SEQRVd032829@repoman.freebsd.org> From: Alex Dupre Date: Thu, 28 Feb 2008 14:26:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 14:26:28 -0000 ale 2008-02-28 14:26:27 UTC FreeBSD ports repository Modified files: . modules Log: tomcat-native --> ports/www/tomcat-native Revision Changes Path 1.19447 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Feb 28 14:27:50 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BCD5A106566C; Thu, 28 Feb 2008 14:27:50 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8D17D8FC12; Thu, 28 Feb 2008 14:27:50 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SERoNg032875; Thu, 28 Feb 2008 14:27:50 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SERo9T032874; Thu, 28 Feb 2008 14:27:50 GMT (envelope-from dinoex) Message-Id: <200802281427.m1SERo9T032874@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 28 Feb 2008 14:27:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/print/cups-base Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 14:27:50 -0000 dinoex 2008-02-28 14:27:50 UTC FreeBSD ports repository Modified files: print/cups-base Makefile distinfo pkg-plist Log: - update to 1.3.6 Revision Changes Path 1.88 +1 -2 ports/print/cups-base/Makefile 1.21 +3 -3 ports/print/cups-base/distinfo 1.43 +0 -18 ports/print/cups-base/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 14:28:29 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DE4B51065670; Thu, 28 Feb 2008 14:28:29 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AED528FC19; Thu, 28 Feb 2008 14:28:29 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SESTKX032931; Thu, 28 Feb 2008 14:28:29 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SESTb1032930; Thu, 28 Feb 2008 14:28:29 GMT (envelope-from dinoex) Message-Id: <200802281428.m1SESTb1032930@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 28 Feb 2008 14:28:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/print/cups Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 14:28:30 -0000 dinoex 2008-02-28 14:28:29 UTC FreeBSD ports repository Modified files: print/cups Makefile Log: - update to 1.3.6 Revision Changes Path 1.38 +1 -1 ports/print/cups/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 14:32:58 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F147C10656C8; Thu, 28 Feb 2008 14:32:58 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C141C8FC31; Thu, 28 Feb 2008 14:32:58 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SEWwtu033088; Thu, 28 Feb 2008 14:32:58 GMT (envelope-from ale@repoman.freebsd.org) Received: (from ale@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SEWwFK033087; Thu, 28 Feb 2008 14:32:58 GMT (envelope-from ale) Message-Id: <200802281432.m1SEWwFK033087@repoman.freebsd.org> From: Alex Dupre Date: Thu, 28 Feb 2008 14:32:58 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/java/langspec Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 14:32:59 -0000 ale 2008-02-28 14:32:58 UTC FreeBSD ports repository Modified files: java/langspec Makefile distinfo Log: Update to third edition. Revision Changes Path 1.2 +3 -5 ports/java/langspec/Makefile 1.3 +3 -3 ports/java/langspec/distinfo From owner-cvs-all@FreeBSD.ORG Thu Feb 28 14:42:44 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3BC8B106566B; Thu, 28 Feb 2008 14:42:44 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0BA498FC14; Thu, 28 Feb 2008 14:42:44 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SEgh5D035019; Thu, 28 Feb 2008 14:42:43 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SEghKI033496; Thu, 28 Feb 2008 14:42:43 GMT (envelope-from erwin) Message-Id: <200802281442.m1SEghKI033496@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 28 Feb 2008 14:42:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/mpeg_encode Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 14:42:44 -0000 erwin 2008-02-28 14:42:23 UTC FreeBSD ports repository Modified files: multimedia/mpeg_encode Makefile Log: Mark BROKEN: checksum mismatch Revision Changes Path 1.22 +2 -0 ports/multimedia/mpeg_encode/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 14:53:10 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A229A10656C1; Thu, 28 Feb 2008 14:53:10 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 71DAD8FC12; Thu, 28 Feb 2008 14:53:10 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SErAsB043108; Thu, 28 Feb 2008 14:53:10 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SErAua043107; Thu, 28 Feb 2008 14:53:10 GMT (envelope-from erwin) Message-Id: <200802281453.m1SErAua043107@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 28 Feb 2008 14:53:09 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/raknet Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 14:53:10 -0000 erwin 2008-02-28 14:53:09 UTC FreeBSD ports repository Modified files: devel/raknet Makefile Log: Mark BROKEN: checksum mismatch Revision Changes Path 1.8 +2 -0 ports/devel/raknet/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 14:59:00 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 777A9106566C; Thu, 28 Feb 2008 14:59:00 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 45ECF8FC14; Thu, 28 Feb 2008 14:59:00 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SEx0st043295; Thu, 28 Feb 2008 14:59:00 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SEx0vs043294; Thu, 28 Feb 2008 14:59:00 GMT (envelope-from erwin) Message-Id: <200802281459.m1SEx0vs043294@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 28 Feb 2008 14:58:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/sscep Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 14:59:00 -0000 erwin 2008-02-28 14:58:59 UTC FreeBSD ports repository Modified files: security/sscep Makefile Log: Mark BROKEN: checksum mismatch Revision Changes Path 1.4 +2 -0 ports/security/sscep/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 15:12:06 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AA977106567A; Thu, 28 Feb 2008 15:12:06 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 794FA8FC13; Thu, 28 Feb 2008 15:12:06 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SFC6Sh045014; Thu, 28 Feb 2008 15:12:06 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SFC61H045013; Thu, 28 Feb 2008 15:12:06 GMT (envelope-from yar) Message-Id: <200802281512.m1SFC61H045013@repoman.freebsd.org> From: Yar Tikhiy Date: Thu, 28 Feb 2008 15:12:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/games/fortune/datfiles fortunes X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 15:12:06 -0000 yar 2008-02-28 15:12:06 UTC FreeBSD src repository Modified files: games/fortune/datfiles fortunes Log: It was Plauger, not Ritchie, who co-authored both editions of "The Elements of Programming Style". Also spell the name of the book properly. Revision Changes Path 1.256 +1 -1 src/games/fortune/datfiles/fortunes From owner-cvs-all@FreeBSD.ORG Thu Feb 28 15:12:33 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1310D1065673; Thu, 28 Feb 2008 15:12:33 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D6F3E8FC16; Thu, 28 Feb 2008 15:12:32 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SFCWN2045467; Thu, 28 Feb 2008 15:12:32 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SFCWHX045466; Thu, 28 Feb 2008 15:12:32 GMT (envelope-from miwi) Message-Id: <200802281512.m1SFCWHX045466@repoman.freebsd.org> From: Martin Wilke Date: Thu, 28 Feb 2008 15:12:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/ruby-rbtree Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 15:12:33 -0000 miwi 2008-02-28 15:12:32 UTC FreeBSD ports repository Modified files: devel/ruby-rbtree Makefile distinfo Log: - File was rerolled for some spelling fixes. Submitted by: pointyhat via erwin Revision Changes Path 1.18 +1 -0 ports/devel/ruby-rbtree/Makefile 1.14 +3 -3 ports/devel/ruby-rbtree/distinfo From owner-cvs-all@FreeBSD.ORG Thu Feb 28 15:16:25 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 939A51065674; Thu, 28 Feb 2008 15:16:25 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 638A28FC2B; Thu, 28 Feb 2008 15:16:25 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SFGPiO045607; Thu, 28 Feb 2008 15:16:25 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SFGP63045606; Thu, 28 Feb 2008 15:16:25 GMT (envelope-from yar) Message-Id: <200802281516.m1SFGP63045606@repoman.freebsd.org> From: Yar Tikhiy Date: Thu, 28 Feb 2008 15:16:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/games/fortune/datfiles fortunes X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 15:16:25 -0000 yar 2008-02-28 15:16:25 UTC FreeBSD src repository Modified files: games/fortune/datfiles fortunes Log: Add another very relevant quote from "The Elements of Programming Style" by Kernighan and Plauger. Revision Changes Path 1.257 +3 -0 src/games/fortune/datfiles/fortunes From owner-cvs-all@FreeBSD.ORG Thu Feb 28 15:23:34 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 61081106566B; Thu, 28 Feb 2008 15:23:34 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2FBA08FC19; Thu, 28 Feb 2008 15:23:34 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SFNYWr045890; Thu, 28 Feb 2008 15:23:34 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SFNYsX045889; Thu, 28 Feb 2008 15:23:34 GMT (envelope-from ijliao) Message-Id: <200802281523.m1SFNYsX045889@repoman.freebsd.org> From: Ying-Chieh Liao Date: Thu, 28 Feb 2008 15:23:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/jsmin Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 15:23:34 -0000 ijliao 2008-02-28 15:23:33 UTC FreeBSD ports repository Modified files: devel/jsmin Makefile distinfo Log: upgrade to 20071204 Revision Changes Path 1.3 +1 -1 ports/devel/jsmin/Makefile 1.2 +3 -3 ports/devel/jsmin/distinfo From owner-cvs-all@FreeBSD.ORG Thu Feb 28 15:36:10 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 99A8F106566B; Thu, 28 Feb 2008 15:36:10 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 689E98FC20; Thu, 28 Feb 2008 15:36:10 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SFaA7E046314; Thu, 28 Feb 2008 15:36:10 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SFaAnc046313; Thu, 28 Feb 2008 15:36:10 GMT (envelope-from sat) Message-Id: <200802281536.m1SFaAnc046313@repoman.freebsd.org> From: Andrew Pantyukhin Date: Thu, 28 Feb 2008 15:36:10 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/deskutils/fbreader Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 15:36:10 -0000 sat 2008-02-28 15:36:10 UTC FreeBSD ports repository Modified files: deskutils/fbreader Makefile distinfo pkg-plist Log: - Update to 0.8.15 Revision Changes Path 1.25 +1 -1 ports/deskutils/fbreader/Makefile 1.22 +3 -3 ports/deskutils/fbreader/distinfo 1.13 +3 -0 ports/deskutils/fbreader/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 15:40:30 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 73FEE106569F; Thu, 28 Feb 2008 15:40:30 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 424DE8FC29; Thu, 28 Feb 2008 15:40:30 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SFeU93046456; Thu, 28 Feb 2008 15:40:30 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SFeTRY046455; Thu, 28 Feb 2008 15:40:29 GMT (envelope-from ijliao) Message-Id: <200802281540.m1SFeTRY046455@repoman.freebsd.org> From: Ying-Chieh Liao Date: Thu, 28 Feb 2008 15:40:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/libbgpdump Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 15:40:30 -0000 ijliao 2008-02-28 15:40:29 UTC FreeBSD ports repository Modified files: net/libbgpdump Makefile distinfo Log: upgrade to 1.4.99.8 Revision Changes Path 1.7 +2 -2 ports/net/libbgpdump/Makefile 1.6 +3 -3 ports/net/libbgpdump/distinfo From owner-cvs-all@FreeBSD.ORG Thu Feb 28 15:51:27 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B83C0106566B; Thu, 28 Feb 2008 15:51:27 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 870708FC1C; Thu, 28 Feb 2008 15:51:27 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SFpRXJ046920; Thu, 28 Feb 2008 15:51:27 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SFpRYl046919; Thu, 28 Feb 2008 15:51:27 GMT (envelope-from erwin) Message-Id: <200802281551.m1SFpRYl046919@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 28 Feb 2008 15:51:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/growspd Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 15:51:27 -0000 erwin 2008-02-28 15:51:27 UTC FreeBSD ports repository Modified files: sysutils/growspd Makefile Log: Reset maintainer. : host mx1.haiq.net[195.14.20.2] said: 550 5.1.1 : Recipient address rejected: User unknown in virtual alias table (in reply to RCPT TO command) Revision Changes Path 1.4 +1 -1 ports/sysutils/growspd/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 15:54:01 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A969106566C; Thu, 28 Feb 2008 15:54:01 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 486EA8FC2E; Thu, 28 Feb 2008 15:54:01 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SFs1xi047046; Thu, 28 Feb 2008 15:54:01 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SFs1As047045; Thu, 28 Feb 2008 15:54:01 GMT (envelope-from erwin) Message-Id: <200802281554.m1SFs1As047045@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 28 Feb 2008 15:54:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/japanese/today Makefile ports/converters/uudx Makefile ports/astro/luna Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 15:54:01 -0000 erwin 2008-02-28 15:54:01 UTC FreeBSD ports repository Modified files: japanese/today Makefile converters/uudx Makefile astro/luna Makefile Log: Reset maintainer. : host mx.iij4u.or.jp[210.138.174.71] said: 550 5.1.1 ... User Unknown (in reply to RCPT TO command) Revision Changes Path 1.16 +1 -1 ports/astro/luna/Makefile 1.18 +1 -1 ports/converters/uudx/Makefile 1.15 +1 -1 ports/japanese/today/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 15:55:05 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A57EF106567A; Thu, 28 Feb 2008 15:55:05 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 747718FC13; Thu, 28 Feb 2008 15:55:05 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SFt5PM047143; Thu, 28 Feb 2008 15:55:05 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SFt58N047142; Thu, 28 Feb 2008 15:55:05 GMT (envelope-from erwin) Message-Id: <200802281555.m1SFt58N047142@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 28 Feb 2008 15:55:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/rainbowcrack Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 15:55:05 -0000 erwin 2008-02-28 15:55:05 UTC FreeBSD ports repository Modified files: security/rainbowcrack Makefile Log: Reset maintainer. : host freshdns.net[75.126.204.224] said: 550 No Such User Here (in reply to RCPT TO command) Revision Changes Path 1.4 +1 -1 ports/security/rainbowcrack/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 16:04:34 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4F3031065676; Thu, 28 Feb 2008 16:04:34 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1D7118FC19; Thu, 28 Feb 2008 16:04:34 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SG4Xav049779; Thu, 28 Feb 2008 16:04:33 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SG4XJF049778; Thu, 28 Feb 2008 16:04:33 GMT (envelope-from arved) Message-Id: <200802281604.m1SG4XJF049778@repoman.freebsd.org> From: Tilman Linneweh Date: Thu, 28 Feb 2008 16:04:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-im/decibel Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 16:04:34 -0000 arved 2008-02-28 16:04:33 UTC FreeBSD ports repository Modified files: net-im/decibel Makefile Log: Mark broken on 5.x amd64 Reported by: miwi, pointyhat Revision Changes Path 1.3 +7 -1 ports/net-im/decibel/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 16:13:13 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 006A41065670; Thu, 28 Feb 2008 16:13:12 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C1E428FC1E; Thu, 28 Feb 2008 16:13:12 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SGDCSk050174; Thu, 28 Feb 2008 16:13:12 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SGDCN8050173; Thu, 28 Feb 2008 16:13:12 GMT (envelope-from dinoex) Message-Id: <200802281613.m1SGDCN8050173@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 28 Feb 2008 16:13:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/price Makefile distinfo pkg-plist ports/graphics/price/files patch-PRImageView.m X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 16:13:13 -0000 dinoex 2008-02-28 16:13:12 UTC FreeBSD ports repository Modified files: graphics/price Makefile distinfo pkg-plist Added files: graphics/price/files patch-PRImageView.m Log: - update to 0.8.2 Revision Changes Path 1.6 +2 -3 ports/graphics/price/Makefile 1.3 +3 -3 ports/graphics/price/distinfo 1.1 +17 -0 ports/graphics/price/files/patch-PRImageView.m (new) 1.4 +4 -0 ports/graphics/price/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 16:19:35 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 422BC1065670; Thu, 28 Feb 2008 16:19:35 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 106928FC2D; Thu, 28 Feb 2008 16:19:35 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SGJYWW050413; Thu, 28 Feb 2008 16:19:34 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SGJYqJ050412; Thu, 28 Feb 2008 16:19:34 GMT (envelope-from erwin) Message-Id: <200802281619.m1SGJYqJ050412@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 28 Feb 2008 16:19:34 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/xhtml-11 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 16:19:35 -0000 erwin 2008-02-28 16:19:34 UTC FreeBSD ports repository Modified files: textproc/xhtml-11 Makefile Log: Mark BROKEN: checksum mismatch Revision Changes Path 1.4 +2 -0 ports/textproc/xhtml-11/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 16:22:37 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 24E49106566B; Thu, 28 Feb 2008 16:22:37 +0000 (UTC) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0CF138FC14; Thu, 28 Feb 2008 16:22:37 +0000 (UTC) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SGMaBG050599; Thu, 28 Feb 2008 16:22:36 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SGMaMt050598; Thu, 28 Feb 2008 16:22:36 GMT (envelope-from bde) Message-Id: <200802281622.m1SGMaMt050598@repoman.freebsd.org> From: Bruce Evans Date: Thu, 28 Feb 2008 16:22:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/msun/src e_rem_pio2.c e_rem_pio2f.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 16:22:37 -0000 bde 2008-02-28 16:22:36 UTC FreeBSD src repository Modified files: lib/msun/src e_rem_pio2.c e_rem_pio2f.c Log: Fix and improve some magic numbers for the "medium size" case. e_rem_pio2.c: This case goes up to about 2**20pi/2, but the comment about it said that it goes up to about 2**19pi/2. It went too far above 2**pi/2, giving a multiplier fn with 21 significant bits in some cases. This would be harmful except for a numerical accident. It happens that the terms of the approximation to pi/2, when rounded to 33 bits so that multiplications by 20-bit fn's are exact, happen to be rounded to 32 bits so multiplications by 21-bit fn's are exact too, so the bug only complicates the error analysis (we might lose a bit of accuracy but have bits to spare). e_rem_pio2f.c: The bogus comment in e_rem_pio2.c was copied and the code was changed to be bug-for-bug compatible with it, except the limit was made 90 ulps smaller than necessary. The approximation to pi/2 was not modified except for discarding some of it. The same rough error analysis that justifies the limit of 2**20pi/2 for double precision only justifies a limit of 2**18pi/2 for float precision. We depended on exhaustive testing to check the magic numbers for float precision. More exaustive testing shows that we can go up to 2**28pi/2 using a 53+25 bit approximation to pi/2 for float precision, with a the maximum error for cosf() and sinf() unchanged at 0.5009 ulps despite the maximum error in rem_pio2f being ~0.25 ulps. Implement this. Revision Changes Path 1.18 +1 -1 src/lib/msun/src/e_rem_pio2.c 1.29 +3 -3 src/lib/msun/src/e_rem_pio2f.c From owner-cvs-all@FreeBSD.ORG Thu Feb 28 16:29:27 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5F128106566B; Thu, 28 Feb 2008 16:29:27 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2DAA88FC1A; Thu, 28 Feb 2008 16:29:27 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SGTRGJ050871; Thu, 28 Feb 2008 16:29:27 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SGTRF0050870; Thu, 28 Feb 2008 16:29:27 GMT (envelope-from hrs) Message-Id: <200802281629.m1SGTRF0050870@repoman.freebsd.org> From: Hiroki Sato Date: Thu, 28 Feb 2008 16:29:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/print/tgif2tex Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 16:29:27 -0000 hrs 2008-02-28 16:29:26 UTC FreeBSD ports repository Modified files: print/tgif2tex Makefile Log: Update MASTER_SITES. Spotted by: pointyhat Revision Changes Path 1.14 +1 -1 ports/print/tgif2tex/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 16:41:51 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B488C106566C; Thu, 28 Feb 2008 16:41:51 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8233F8FC16; Thu, 28 Feb 2008 16:41:51 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SGfpgA051857; Thu, 28 Feb 2008 16:41:51 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SGfpiF051856; Thu, 28 Feb 2008 16:41:51 GMT (envelope-from obrien) Message-Id: <200802281641.m1SGfpiF051856@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 28 Feb 2008 16:41:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/awk Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 16:41:51 -0000 obrien 2008-02-28 16:41:51 UTC FreeBSD src repository Modified files: usr.bin/awk Makefile Log: Now that we're way past our conversion from GNU awk to BWK awk, we don't need to primarily install as a non-conflicting name. Revision Changes Path 1.16 +3 -7 src/usr.bin/awk/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 16:45:38 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C46A21065675; Thu, 28 Feb 2008 16:45:38 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 90EEF8FC2E; Thu, 28 Feb 2008 16:45:38 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SGjcZu052188; Thu, 28 Feb 2008 16:45:38 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SGjcu1052187; Thu, 28 Feb 2008 16:45:38 GMT (envelope-from obrien) Message-Id: <200802281645.m1SGjcu1052187@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 28 Feb 2008 16:45:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/usr.bin/awk Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 16:45:38 -0000 obrien 2008-02-28 16:45:38 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) usr.bin/awk Makefile Log: MFC: rev 1.16: install as awk. Revision Changes Path 1.14.2.2 +3 -7 src/usr.bin/awk/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 16:49:09 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5144F1065673; Thu, 28 Feb 2008 16:49:09 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1EE288FC20; Thu, 28 Feb 2008 16:49:09 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SGn8bZ061259; Thu, 28 Feb 2008 16:49:08 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SGn8ZK061258; Thu, 28 Feb 2008 16:49:08 GMT (envelope-from blackend) Message-Id: <200802281649.m1SGn8ZK061258@repoman.freebsd.org> From: Marc Fonvieille Date: Thu, 28 Feb 2008 16:49:08 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/fr index.xsl X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 16:49:09 -0000 blackend 2008-02-28 16:49:08 UTC FreeBSD doc repository Modified files: fr index.xsl Log: MFen 1.162 --> 1.163 Revision Changes Path 1.36 +2 -4 www/fr/index.xsl From owner-cvs-all@FreeBSD.ORG Thu Feb 28 16:52:53 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 46EA11065673; Thu, 28 Feb 2008 16:52:53 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1404A8FC19; Thu, 28 Feb 2008 16:52:53 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SGqq7O061625; Thu, 28 Feb 2008 16:52:52 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SGqqCn061624; Thu, 28 Feb 2008 16:52:52 GMT (envelope-from erwin) Message-Id: <200802281652.m1SGqqCn061624@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 28 Feb 2008 16:52:52 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/rhtvision/files patch-conflib.pl X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 16:52:53 -0000 erwin 2008-02-28 16:52:52 UTC FreeBSD ports repository Added files: devel/rhtvision/files patch-conflib.pl Log: Fix the homegrew ar(1) detection on 8.0 by adding FreeBSD to the list of platforms with native ar(1). Submitted by: kaiw Revision Changes Path 1.1 +22 -0 ports/devel/rhtvision/files/patch-conflib.pl (new) From owner-cvs-all@FreeBSD.ORG Thu Feb 28 16:57:29 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9664E106566B; Thu, 28 Feb 2008 16:57:29 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 642138FC15; Thu, 28 Feb 2008 16:57:29 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SGvTQx065500; Thu, 28 Feb 2008 16:57:29 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SGvT6N065499; Thu, 28 Feb 2008 16:57:29 GMT (envelope-from miwi) Message-Id: <200802281657.m1SGvT6N065499@repoman.freebsd.org> From: Martin Wilke Date: Thu, 28 Feb 2008 16:57:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/shells/vshnu Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 16:57:29 -0000 miwi 2008-02-28 16:57:29 UTC FreeBSD ports repository Modified files: shells/vshnu Makefile distinfo Log: - File was repacked Submitted by: erwinbot Revision Changes Path 1.16 +3 -1 ports/shells/vshnu/Makefile 1.11 +3 -3 ports/shells/vshnu/distinfo From owner-cvs-all@FreeBSD.ORG Thu Feb 28 17:00:17 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8DB8E1065672; Thu, 28 Feb 2008 17:00:17 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5B1CB8FC1D; Thu, 28 Feb 2008 17:00:17 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SH0H2X066867; Thu, 28 Feb 2008 17:00:17 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SH0Hqh066866; Thu, 28 Feb 2008 17:00:17 GMT (envelope-from sam) Message-Id: <200802281700.m1SH0Hqh066866@repoman.freebsd.org> From: Sam Leffler Date: Thu, 28 Feb 2008 17:00:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/contrib/tcpdump print-802_11.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 17:00:17 -0000 sam 2008-02-28 17:00:17 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) contrib/tcpdump print-802_11.c Log: MFC 1.4: unbreak printing 802.11 tx/rx rates Revision Changes Path 1.2.2.2 +3 -3 src/contrib/tcpdump/print-802_11.c From owner-cvs-all@FreeBSD.ORG Thu Feb 28 17:08:06 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1FC5B106566B; Thu, 28 Feb 2008 17:08:06 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 06C3D8FC14; Thu, 28 Feb 2008 17:08:06 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SH85qb073217; Thu, 28 Feb 2008 17:08:05 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SH85uM073216; Thu, 28 Feb 2008 17:08:05 GMT (envelope-from jhb) Message-Id: <200802281708.m1SH85uM073216@repoman.freebsd.org> From: John Baldwin Date: Thu, 28 Feb 2008 17:08:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/boot/i386/boot2 boot2.c src/sys/boot/i386/gptboot gptboot.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 17:08:06 -0000 jhb 2008-02-28 17:08:05 UTC FreeBSD src repository Modified files: sys/boot/i386/boot2 boot2.c sys/boot/i386/gptboot gptboot.c Log: Rev 1.72 fixed a bug where if /boot.config changed the console its contents weren't displayed on the new console. However, the config string has been altered as part of being parsed so we only display the first option. Fix this by saving a copy of /boot.config before parsing it and displaying the saved copy after parsing. MFC after: 1 week PR: i386/103972 Submitted by: Alexandre Belloni alexandre.belloni of netasq.com Revision Changes Path 1.86 +3 -2 src/sys/boot/i386/boot2/boot2.c 1.87 +3 -2 src/sys/boot/i386/gptboot/gptboot.c From owner-cvs-all@FreeBSD.ORG Thu Feb 28 17:25:30 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B6FD1065673; Thu, 28 Feb 2008 17:25:30 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EC3778FC29; Thu, 28 Feb 2008 17:25:29 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SHPSIN075233; Thu, 28 Feb 2008 17:25:28 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SHPSPS075232; Thu, 28 Feb 2008 17:25:28 GMT (envelope-from oliver) Message-Id: <200802281725.m1SHPSPS075232@repoman.freebsd.org> From: Oliver Lehmann Date: Thu, 28 Feb 2008 17:25:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/ogre3d Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 17:25:30 -0000 oliver 2008-02-28 17:25:28 UTC FreeBSD ports repository Modified files: graphics/ogre3d Makefile distinfo pkg-plist Log: update to 1.4.6 Revision Changes Path 1.23 +1 -1 ports/graphics/ogre3d/Makefile 1.10 +3 -3 ports/graphics/ogre3d/distinfo 1.11 +2 -2 ports/graphics/ogre3d/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 17:26:41 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 948C31065671; Thu, 28 Feb 2008 17:26:41 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 609A68FC1C; Thu, 28 Feb 2008 17:26:41 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SHQfQQ075341; Thu, 28 Feb 2008 17:26:41 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SHQfs4075340; Thu, 28 Feb 2008 17:26:41 GMT (envelope-from oliver) Message-Id: <200802281726.m1SHQfs4075340@repoman.freebsd.org> From: Oliver Lehmann Date: Thu, 28 Feb 2008 17:26:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/eris Makefile distinfo pkg-plist ports/devel/eris/files patch-Eris-Calendar.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 17:26:41 -0000 oliver 2008-02-28 17:26:41 UTC FreeBSD ports repository Modified files: devel/eris Makefile distinfo pkg-plist Removed files: devel/eris/files patch-Eris-Calendar.cpp Log: update eris to 1.3.13 Revision Changes Path 1.18 +2 -2 ports/devel/eris/Makefile 1.12 +3 -3 ports/devel/eris/distinfo 1.2 +0 -27 ports/devel/eris/files/patch-Eris-Calendar.cpp (dead) 1.11 +1 -1 ports/devel/eris/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 17:27:37 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EADAC1065670; Thu, 28 Feb 2008 17:27:37 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B7AE98FC12; Thu, 28 Feb 2008 17:27:37 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SHRbMI075399; Thu, 28 Feb 2008 17:27:37 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SHRb1b075398; Thu, 28 Feb 2008 17:27:37 GMT (envelope-from oliver) Message-Id: <200802281727.m1SHRb1b075398@repoman.freebsd.org> From: Oliver Lehmann Date: Thu, 28 Feb 2008 17:27:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/ember Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 17:27:38 -0000 oliver 2008-02-28 17:27:37 UTC FreeBSD ports repository Modified files: games/ember Makefile distinfo pkg-plist Log: update to 0.5.1 take care of library updates of devel/eris and graphics/ogre3d Revision Changes Path 1.28 +6 -3 ports/games/ember/Makefile 1.11 +6 -6 ports/games/ember/distinfo 1.10 +758 -515 ports/games/ember/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 17:31:53 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 872B31065670; Thu, 28 Feb 2008 17:31:53 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 53AE38FC1E; Thu, 28 Feb 2008 17:31:53 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SHVrRv075590; Thu, 28 Feb 2008 17:31:53 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SHVrDk075589; Thu, 28 Feb 2008 17:31:53 GMT (envelope-from oliver) Message-Id: <200802281731.m1SHVrDk075589@repoman.freebsd.org> From: Oliver Lehmann Date: Thu, 28 Feb 2008 17:31:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/misc/mime-support Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 17:31:53 -0000 oliver 2008-02-28 17:31:53 UTC FreeBSD ports repository Modified files: misc/mime-support Makefile distinfo Log: update to 3.40.1.1 Revision Changes Path 1.15 +3 -3 ports/misc/mime-support/Makefile 1.13 +3 -3 ports/misc/mime-support/distinfo From owner-cvs-all@FreeBSD.ORG Thu Feb 28 17:33:06 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 788FA106566B; Thu, 28 Feb 2008 17:33:06 +0000 (UTC) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 45CAB8FC29; Thu, 28 Feb 2008 17:33:06 +0000 (UTC) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SHX6kx075675; Thu, 28 Feb 2008 17:33:06 GMT (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SHX6Nd075674; Thu, 28 Feb 2008 17:33:06 GMT (envelope-from nyan) Message-Id: <200802281733.m1SHX6Nd075674@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Thu, 28 Feb 2008 17:33:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/boot/pc98/btx/btx Makefile btx.S X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 17:33:06 -0000 nyan 2008-02-28 17:33:06 UTC FreeBSD src repository Modified files: sys/boot/pc98/btx/btx Makefile btx.S Log: MFi386: Retire the support for using paging in BTX. It hasn't been used since before 4.0. Revision Changes Path 1.13 +0 -4 src/sys/boot/pc98/btx/btx/Makefile 1.23 +2 -53 src/sys/boot/pc98/btx/btx/btx.S From owner-cvs-all@FreeBSD.ORG Thu Feb 28 17:36:27 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8E8A4106566B; Thu, 28 Feb 2008 17:36:27 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5AF628FC29; Thu, 28 Feb 2008 17:36:27 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SHaRck075862; Thu, 28 Feb 2008 17:36:27 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SHaRO3075861; Thu, 28 Feb 2008 17:36:27 GMT (envelope-from obrien) Message-Id: <200802281736.m1SHaRO3075861@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 28 Feb 2008 17:36:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/misc/figlet Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 17:36:27 -0000 obrien 2008-02-28 17:36:27 UTC FreeBSD ports repository Modified files: misc/figlet Makefile Log: Update MASTERSITES. Revision Changes Path 1.26 +3 -3 ports/misc/figlet/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 17:36:59 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 87C9F1065675; Thu, 28 Feb 2008 17:36:59 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 545688FC2C; Thu, 28 Feb 2008 17:36:59 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SHax9j075927; Thu, 28 Feb 2008 17:36:59 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SHaxu6075926; Thu, 28 Feb 2008 17:36:59 GMT (envelope-from leeym) Message-Id: <200802281736.m1SHaxu6075926@repoman.freebsd.org> From: Yen-Ming Lee Date: Thu, 28 Feb 2008 17:36:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/databases/libmemcached Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 17:36:59 -0000 leeym 2008-02-28 17:36:59 UTC FreeBSD ports repository Modified files: databases/libmemcached Makefile distinfo Log: - update to 0.17 - add NO_INSTALL_MANPAGES support Revision Changes Path 1.3 +7 -2 ports/databases/libmemcached/Makefile 1.3 +3 -3 ports/databases/libmemcached/distinfo From owner-cvs-all@FreeBSD.ORG Thu Feb 28 17:40:35 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 835611065675 for ; Thu, 28 Feb 2008 17:40:35 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from capeta.freebsdbrasil.com.br (capeta.freebsdbrasil.com.br [201.48.151.3]) by mx1.freebsd.org (Postfix) with SMTP id BA5AE8FC2B for ; Thu, 28 Feb 2008 17:40:34 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: (qmail 18885 invoked from network); 28 Feb 2008 14:40:32 -0300 Received: from unknown (HELO soc90.bluepex.com) (garga@201.28.114.106) by capeta.freebsdbrasil.com.br with SMTP; 28 Feb 2008 14:40:32 -0300 Received: (qmail 80245 invoked by uid 1001); 28 Feb 2008 14:40:30 -0300 Date: Thu, 28 Feb 2008 14:40:30 -0300 From: Renato Botelho To: Oliver Lehmann Message-ID: <20080228174029.GA80229@bluepex.com> Mail-Followup-To: Oliver Lehmann , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200802280541.m1S5fH1F076561@repoman.freebsd.org> <20080228113004.GA72033@bluepex.com> <20080228182621.6a77ebbd.oliver@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; x-action=pgp-signed Content-Disposition: inline In-Reply-To: <20080228182621.6a77ebbd.oliver@FreeBSD.org> User-Agent: Mutt/1.5.17 (2007-11-01) Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/audio/audacious-crossfade Makefile ports/audio/audacious-dumb Makefile distinfo ports/audio/audacious-dumb/files patch-Makefile ports/audio/audacious-mac Makefile distinfo ports/audio/audacious-mac/files patch-src-common.h patch-src-fileinfo.cpp ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 17:40:35 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Thu, Feb 28, 2008 at 06:26:21PM +0100, Oliver Lehmann wrote: > Renato Botelho wrote: > > > I remembered to have same problem at 1.4.5 when i tested it: > > ===> Checking if multimedia/audacious already installed > > Successfully installed audacious.pc. > > Successfully installed audclient.pc. > > Successfully installed audacious.desktop. > > Entering directory src. > > Entering directory libaudclient. > > gmake[2]: *** No rule to make target `/usr/local/include/audacious/dbus.h', > > Does this still appear? I cannot reproduce it with my 1.4.6. I had the > problems with 1.4.5 too at some point. It happened with me today when i deinstall 1.4.5 and try to install 1.4.6. After copy dbus.h to /usr/local/include/audacious/dbus.h it intalled ok. - -- Renato Botelho GnuPG Key: http://www.FreeBSD.org/~garga/pubkey.asc If it's Tuesday, this must be someone else's fortune. -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQFHxvIN6CRbiSJE7akRAq/fAJ987dGQe3LkG3GuMK8daGPkRSfyVwCghitn GpT1W9UO5xAAGGpni+KY/5Y= =VG2X -----END PGP SIGNATURE----- From owner-cvs-all@FreeBSD.ORG Thu Feb 28 17:49:24 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 740571065670; Thu, 28 Feb 2008 17:49:24 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 411998FC25; Thu, 28 Feb 2008 17:49:24 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SHnOc4076532; Thu, 28 Feb 2008 17:49:24 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SHnOmW076531; Thu, 28 Feb 2008 17:49:24 GMT (envelope-from jhb) Message-Id: <200802281749.m1SHnOmW076531@repoman.freebsd.org> From: John Baldwin Date: Thu, 28 Feb 2008 17:49:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/boot/i386/libi386 biosdisk.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 17:49:24 -0000 jhb 2008-02-28 17:49:23 UTC FreeBSD src repository Modified files: sys/boot/i386/libi386 biosdisk.c Log: Tweak the verbose disk printing a bit: - Consolidate the code to humanize the size of a disk partition into a single function based on the code for GPT partitions and use it for GPT partitions, BSD slices, and BSD partitions. - Teach the humanize code to use KB for small partitions (e.g. GPT boot partitions now show up as 64KB rather than 0MB). - Pad a few partition type names out so that things line up in the common case. MFC after: 1 week Revision Changes Path 1.55 +51 -59 src/sys/boot/i386/libi386/biosdisk.c From owner-cvs-all@FreeBSD.ORG Thu Feb 28 17:52:53 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C1011065671 for ; Thu, 28 Feb 2008 17:52:53 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from avocado.salatschuessel.net (avocado.salatschuessel.net [83.136.81.184]) by mx1.freebsd.org (Postfix) with SMTP id 5F7918FC2C for ; Thu, 28 Feb 2008 17:52:51 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: (qmail 27053 invoked by uid 89); 28 Feb 2008 17:26:09 -0000 Received: from unknown (HELO kartoffel.salatschuessel.net) (83.136.81.185) by avocado.salatschuessel.net with SMTP; 28 Feb 2008 17:26:09 -0000 Date: Thu, 28 Feb 2008 18:26:21 +0100 From: Oliver Lehmann To: Renato Botelho Message-Id: <20080228182621.6a77ebbd.oliver@FreeBSD.org> In-Reply-To: <20080228113004.GA72033@bluepex.com> References: <200802280541.m1S5fH1F076561@repoman.freebsd.org> <20080228113004.GA72033@bluepex.com> X-Mailer: Sylpheed 2.4.8 (GTK+ 2.12.8; amd64-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/audio/audacious-crossfade Makefile ports/audio/audacious-dumb Makefile distinfo ports/audio/audacious-dumb/files patch-Makefile ports/audio/audacious-mac Makefile distinfo ports/audio/audacious-mac/files patch-src-common.h patch-src-fileinfo.cpp ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 17:52:53 -0000 Renato Botelho wrote: > I remembered to have same problem at 1.4.5 when i tested it: > ===> Checking if multimedia/audacious already installed > Successfully installed audacious.pc. > Successfully installed audclient.pc. > Successfully installed audacious.desktop. > Entering directory src. > Entering directory libaudclient. > gmake[2]: *** No rule to make target `/usr/local/include/audacious/dbus.h', Does this still appear? I cannot reproduce it with my 1.4.6. I had the problems with 1.4.5 too at some point. -- Oliver Lehmann http://www.pofo.de/ http://wishlist.ans-netz.de/ From owner-cvs-all@FreeBSD.ORG Thu Feb 28 17:59:54 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D2C7B106566B; Thu, 28 Feb 2008 17:59:54 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9F7FE8FC17; Thu, 28 Feb 2008 17:59:54 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SHxsIn077080; Thu, 28 Feb 2008 17:59:54 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SHxsYb077079; Thu, 28 Feb 2008 17:59:54 GMT (envelope-from jhb) Message-Id: <200802281759.m1SHxsYb077079@repoman.freebsd.org> From: John Baldwin Date: Thu, 28 Feb 2008 17:59:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/i386/i386 identcpu.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 17:59:55 -0000 jhb 2008-02-28 17:59:54 UTC FreeBSD src repository Modified files: sys/i386/i386 identcpu.c Log: - Check for the extended CPUID registers on VIA CPUs so we can get the brand string. - Fix a nit in the previous commit. "Eden" is a product name, not a core name. The new ID is still for an "Esther" core. Revision Changes Path 1.182 +2 -2 src/sys/i386/i386/identcpu.c From owner-cvs-all@FreeBSD.ORG Thu Feb 28 18:14:51 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6EFAF10656C5 for ; Thu, 28 Feb 2008 18:14:51 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from avocado.salatschuessel.net (avocado.salatschuessel.net [83.136.81.184]) by mx1.freebsd.org (Postfix) with SMTP id 9E7088FC2E for ; Thu, 28 Feb 2008 18:14:50 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: (qmail 32771 invoked by uid 89); 28 Feb 2008 18:14:48 -0000 Received: from unknown (HELO kartoffel.salatschuessel.net) (83.136.81.185) by avocado.salatschuessel.net with SMTP; 28 Feb 2008 18:14:48 -0000 Date: Thu, 28 Feb 2008 19:15:00 +0100 From: Oliver Lehmann To: Renato Botelho Message-Id: <20080228191500.6bce2fcc.oliver@FreeBSD.org> In-Reply-To: <20080228174029.GA80229@bluepex.com> References: <200802280541.m1S5fH1F076561@repoman.freebsd.org> <20080228113004.GA72033@bluepex.com> <20080228182621.6a77ebbd.oliver@FreeBSD.org> <20080228174029.GA80229@bluepex.com> X-Mailer: Sylpheed 2.4.8 (GTK+ 2.12.8; amd64-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/audio/audacious-crossfade Makefile ports/audio/audacious-dumb Makefile distinfo ports/audio/audacious-dumb/files patch-Makefile ports/audio/audacious-mac Makefile distinfo ports/audio/audacious-mac/files patch-src-common.h patch-src-fileinfo.cpp ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 18:14:51 -0000 Renato Botelho wrote: > It happened with me today when i deinstall 1.4.5 and try to install 1.4.6. > After copy dbus.h to /usr/local/include/audacious/dbus.h it intalled ok. what are your config options? With the default options I cannot reproduce it neither on a clean i386 8 system nor on a amd64 7 system. -- Oliver Lehmann http://www.pofo.de/ http://wishlist.ans-netz.de/ From owner-cvs-all@FreeBSD.ORG Thu Feb 28 18:17:54 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 45512106566C; Thu, 28 Feb 2008 18:17:54 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 11F088FC27; Thu, 28 Feb 2008 18:17:54 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SIHr4e079399; Thu, 28 Feb 2008 18:17:53 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SIHrdN079397; Thu, 28 Feb 2008 18:17:53 GMT (envelope-from erwin) Message-Id: <200802281817.m1SIHrdN079397@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 28 Feb 2008 18:17:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/math/moo Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 18:17:54 -0000 erwin 2008-02-28 18:17:53 UTC FreeBSD ports repository Modified files: math/moo Makefile Log: Add extra MASTER_SITES Submitted by: Steven Kreuzer (maintainer), pointyhat Revision Changes Path 1.3 +3 -1 ports/math/moo/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 18:26:59 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1E12C106566B; Thu, 28 Feb 2008 18:26:59 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DE4E08FC1D; Thu, 28 Feb 2008 18:26:58 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SIQwqd079918; Thu, 28 Feb 2008 18:26:58 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SIQwA8079917; Thu, 28 Feb 2008 18:26:58 GMT (envelope-from sat) Message-Id: <200802281826.m1SIQwA8079917@repoman.freebsd.org> From: Andrew Pantyukhin Date: Thu, 28 Feb 2008 18:26:58 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/squirrel Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 18:26:59 -0000 sat 2008-02-28 18:26:58 UTC FreeBSD ports repository Modified files: lang/squirrel Makefile distinfo pkg-descr Log: - Update to 2.2 Revision Changes Path 1.4 +1 -1 ports/lang/squirrel/Makefile 1.3 +3 -3 ports/lang/squirrel/distinfo 1.2 +1 -1 ports/lang/squirrel/pkg-descr From owner-cvs-all@FreeBSD.ORG Thu Feb 28 18:31:54 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BED6A106566B; Thu, 28 Feb 2008 18:31:54 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8B3448FC14; Thu, 28 Feb 2008 18:31:54 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SIVsfq080212; Thu, 28 Feb 2008 18:31:54 GMT (envelope-from philip@repoman.freebsd.org) Received: (from philip@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SIVsRw080211; Thu, 28 Feb 2008 18:31:54 GMT (envelope-from philip) Message-Id: <200802281831.m1SIVsRw080211@repoman.freebsd.org> From: Philip Paeps Date: Thu, 28 Feb 2008 18:31:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/md md.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 18:31:54 -0000 philip 2008-02-28 18:31:54 UTC FreeBSD src repository Modified files: sys/dev/md md.c Log: Zero sc->vnode if mdsetcred() fails. This fixes the panic which happens when mdcreate_vnode() calls vn_close() and mddestroy() calls it again further down the error handling path. Reviewed by: kris, kib MFC after: 3 days Revision Changes Path 1.174 +1 -0 src/sys/dev/md/md.c From owner-cvs-all@FreeBSD.ORG Thu Feb 28 19:02:25 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1049A1065670; Thu, 28 Feb 2008 19:02:25 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E8AFA8FC22; Thu, 28 Feb 2008 19:02:24 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SJ2OYu082287; Thu, 28 Feb 2008 19:02:24 GMT (envelope-from beech@repoman.freebsd.org) Received: (from beech@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SJ2OSP082286; Thu, 28 Feb 2008 19:02:24 GMT (envelope-from beech) Message-Id: <200802281902.m1SJ2OSP082286@repoman.freebsd.org> From: Beech Rintoul Date: Thu, 28 Feb 2008 19:02:24 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/horde-base Makefile distinfo pkg-plist ports/www/horde-base/files patch-config_conf.xml patch-config_mime_drivers.php.dist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 19:02:25 -0000 beech 2008-02-28 19:02:24 UTC FreeBSD ports repository Modified files: www/horde-base Makefile distinfo pkg-plist www/horde-base/files patch-config_conf.xml patch-config_mime_drivers.php.dist Log: - Update to 3.2-rc2 - Many changes, see the following for details: http://www.horde.org/horde/docs/?f=CHANGES.html Revision Changes Path 1.65 +2 -8 ports/www/horde-base/Makefile 1.26 +3 -3 ports/www/horde-base/distinfo 1.2 +7 -7 ports/www/horde-base/files/patch-config_conf.xml 1.7 +257 -180 ports/www/horde-base/files/patch-config_mime_drivers.php.dist 1.23 +2487 -450 ports/www/horde-base/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 19:08:55 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 85FB6106566C; Thu, 28 Feb 2008 19:08:55 +0000 (UTC) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 51F378FC21; Thu, 28 Feb 2008 19:08:55 +0000 (UTC) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SJ8tBO083814; Thu, 28 Feb 2008 19:08:55 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SJ8tlI083813; Thu, 28 Feb 2008 19:08:55 GMT (envelope-from mnag) Message-Id: <200802281908.m1SJ8tlI083813@repoman.freebsd.org> From: Marcus Alves Grando Date: Thu, 28 Feb 2008 19:08:55 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/libesmtp Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 19:08:55 -0000 mnag 2008-02-28 19:08:55 UTC FreeBSD ports repository Modified files: mail/libesmtp Makefile Log: - Update two obsolete MASTER_SITES Notified by: erwinbot Revision Changes Path 1.39 +2 -2 ports/mail/libesmtp/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 19:10:42 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DDC8E1065670; Thu, 28 Feb 2008 19:10:42 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A9D9F8FC1C; Thu, 28 Feb 2008 19:10:42 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SJAgn6083977; Thu, 28 Feb 2008 19:10:42 GMT (envelope-from rpaulo@repoman.freebsd.org) Received: (from rpaulo@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SJAgm1083976; Thu, 28 Feb 2008 19:10:42 GMT (envelope-from rpaulo) Message-Id: <200802281910.m1SJAgm1083976@repoman.freebsd.org> From: Rui Paulo Date: Thu, 28 Feb 2008 19:10:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/i386/cpufreq est.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 19:10:43 -0000 rpaulo 2008-02-28 19:10:42 UTC FreeBSD src repository Modified files: sys/i386/cpufreq est.c Log: Validate the id16 values gathered from ACPI (previously a TODO item). Style changes by me and njl. Approved by: njl (mentor) Reviewed by: njl (mentor) Submitted by: Takeharu KATO PR: 119350 MFC after: 1 week Revision Changes Path 1.12 +59 -17 src/sys/i386/cpufreq/est.c From owner-cvs-all@FreeBSD.ORG Thu Feb 28 19:14:04 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 27FF11065670; Thu, 28 Feb 2008 19:14:04 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E84AE8FC29; Thu, 28 Feb 2008 19:14:03 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SJE3hx084151; Thu, 28 Feb 2008 19:14:03 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SJE35A084150; Thu, 28 Feb 2008 19:14:03 GMT (envelope-from erwin) Message-Id: <200802281914.m1SJE35A084150@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 28 Feb 2008 19:14:03 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/openclipart Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 19:14:04 -0000 erwin 2008-02-28 19:14:03 UTC FreeBSD ports repository Modified files: graphics/openclipart Makefile Log: Update MASTER_SITES Submitted by: Marcin Cieslak , pointyhat Revision Changes Path 1.8 +1 -1 ports/graphics/openclipart/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 19:15:14 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 325051065674; Thu, 28 Feb 2008 19:15:14 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F16AF8FC13; Thu, 28 Feb 2008 19:15:13 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SJFDih084282; Thu, 28 Feb 2008 19:15:13 GMT (envelope-from beech@repoman.freebsd.org) Received: (from beech@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SJFDep084277; Thu, 28 Feb 2008 19:15:13 GMT (envelope-from beech) Message-Id: <200802281915.m1SJFDep084277@repoman.freebsd.org> From: Beech Rintoul Date: Thu, 28 Feb 2008 19:15:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/horde-imp Makefile distinfo pkg-plist ports/mail/horde-imp/files patch-config::conf.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 19:15:14 -0000 beech 2008-02-28 19:15:12 UTC FreeBSD ports repository Modified files: mail/horde-imp Makefile distinfo pkg-plist mail/horde-imp/files patch-config::conf.xml Log: - Update to 4.2-rc2 - Many changes, see the following for details: http://www.horde.org/imp/docs/?f=CHANGES.html Revision Changes Path 1.53 +4 -2 ports/mail/horde-imp/Makefile 1.19 +3 -3 ports/mail/horde-imp/distinfo 1.3 +17 -12 ports/mail/horde-imp/files/patch-config::conf.xml 1.18 +445 -213 ports/mail/horde-imp/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 19:25:32 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A193106566C; Thu, 28 Feb 2008 19:25:32 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 45FD68FC21; Thu, 28 Feb 2008 19:25:32 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SJPWYg084837; Thu, 28 Feb 2008 19:25:32 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SJPWtp084836; Thu, 28 Feb 2008 19:25:32 GMT (envelope-from mezz) Message-Id: <200802281925.m1SJPWtp084836@repoman.freebsd.org> From: Jeremy Messenger Date: Thu, 28 Feb 2008 19:25:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/morpheus pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 19:25:32 -0000 mezz 2008-02-28 19:25:31 UTC FreeBSD ports repository Modified files: graphics/morpheus pkg-descr Log: Update the WWW, the old one is porn site. O-o Reported by: "Wes" Revision Changes Path 1.2 +1 -1 ports/graphics/morpheus/pkg-descr From owner-cvs-all@FreeBSD.ORG Thu Feb 28 19:32:43 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5914D1065671; Thu, 28 Feb 2008 19:32:43 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 24EED8FC1D; Thu, 28 Feb 2008 19:32:43 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SJWhtE085229; Thu, 28 Feb 2008 19:32:43 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SJWgXJ085228; Thu, 28 Feb 2008 19:32:42 GMT (envelope-from leeym) Message-Id: <200802281932.m1SJWgXJ085228@repoman.freebsd.org> From: Yen-Ming Lee Date: Thu, 28 Feb 2008 19:32:42 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-Class-Hook Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 19:32:43 -0000 leeym 2008-02-28 19:32:42 UTC FreeBSD ports repository Modified files: devel/p5-Class-Hook Makefile Log: - use CPAN macro - fix dependency - bump PORTREVISION Revision Changes Path 1.12 +9 -6 ports/devel/p5-Class-Hook/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 19:33:32 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8AA46106566B; Thu, 28 Feb 2008 19:33:32 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 569AA8FC15; Thu, 28 Feb 2008 19:33:32 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SJXW7X085329; Thu, 28 Feb 2008 19:33:32 GMT (envelope-from araujo@repoman.freebsd.org) Received: (from araujo@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SJXWEm085328; Thu, 28 Feb 2008 19:33:32 GMT (envelope-from araujo) Message-Id: <200802281933.m1SJXWEm085328@repoman.freebsd.org> From: Marcelo Araujo Date: Thu, 28 Feb 2008 19:33:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/math/ruby-algebra distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 19:33:32 -0000 araujo 2008-02-28 19:33:31 UTC FreeBSD ports repository Modified files: math/ruby-algebra distinfo Log: - Update distinfo (minor change: only a README.txt file). Submitted by: pointyhat via erwin Revision Changes Path 1.12 +3 -3 ports/math/ruby-algebra/distinfo From owner-cvs-all@FreeBSD.ORG Thu Feb 28 19:41:24 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 705CE1065671; Thu, 28 Feb 2008 19:41:24 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3C7F78FC24; Thu, 28 Feb 2008 19:41:24 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SJfO3T085805; Thu, 28 Feb 2008 19:41:24 GMT (envelope-from araujo@repoman.freebsd.org) Received: (from araujo@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SJfOPK085804; Thu, 28 Feb 2008 19:41:24 GMT (envelope-from araujo) Message-Id: <200802281941.m1SJfOPK085804@repoman.freebsd.org> From: Marcelo Araujo Date: Thu, 28 Feb 2008 19:41:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/libol Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 19:41:24 -0000 araujo 2008-02-28 19:41:23 UTC FreeBSD ports repository Modified files: devel/libol Makefile Log: - Update MASTER_SITES to make it fetchable again. Submitted by: pointyhat via erwin Revision Changes Path 1.29 +1 -1 ports/devel/libol/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 19:50:16 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1B52D1065672; Thu, 28 Feb 2008 19:50:16 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DB4EC8FC2A; Thu, 28 Feb 2008 19:50:15 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SJoFRk086300; Thu, 28 Feb 2008 19:50:15 GMT (envelope-from araujo@repoman.freebsd.org) Received: (from araujo@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SJoFdQ086299; Thu, 28 Feb 2008 19:50:15 GMT (envelope-from araujo) Message-Id: <200802281950.m1SJoFdQ086299@repoman.freebsd.org> From: Marcelo Araujo Date: Thu, 28 Feb 2008 19:50:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/align Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 19:50:16 -0000 araujo 2008-02-28 19:50:15 UTC FreeBSD ports repository Modified files: textproc/align Makefile distinfo Log: - File was repacked as .tgz Submitted by: pointyhat via erwin Revision Changes Path 1.14 +1 -0 ports/textproc/align/Makefile 1.9 +3 -3 ports/textproc/align/distinfo From owner-cvs-all@FreeBSD.ORG Thu Feb 28 19:55:18 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 330D81065670; Thu, 28 Feb 2008 19:55:18 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F1DA08FC1E; Thu, 28 Feb 2008 19:55:17 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SJtHIn086599; Thu, 28 Feb 2008 19:55:17 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SJtHvG086595; Thu, 28 Feb 2008 19:55:17 GMT (envelope-from erwin) Message-Id: <200802281955.m1SJtHvG086595@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 28 Feb 2008 19:55:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/benchmarks/nttcp Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 19:55:18 -0000 erwin 2008-02-28 19:55:17 UTC FreeBSD ports repository Modified files: benchmarks/nttcp Makefile Log: Mark BROKEN: checksum mismatch Revision Changes Path 1.17 +2 -0 ports/benchmarks/nttcp/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 20:03:00 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7CC171065670; Thu, 28 Feb 2008 20:03:00 +0000 (UTC) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 47D478FC15; Thu, 28 Feb 2008 20:03:00 +0000 (UTC) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SK305e087033; Thu, 28 Feb 2008 20:03:00 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SK30nQ087032; Thu, 28 Feb 2008 20:03:00 GMT (envelope-from mnag) Message-Id: <200802282003.m1SK30nQ087032@repoman.freebsd.org> From: Marcus Alves Grando Date: Thu, 28 Feb 2008 20:02:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/postfix-current Makefile distinfo pkg-install pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 20:03:00 -0000 mnag 2008-02-28 20:02:59 UTC FreeBSD ports repository Modified files: mail/postfix-current Makefile distinfo pkg-install pkg-plist Log: - Update to 2.6-20080221 Revision Changes Path 1.221 +10 -11 ports/mail/postfix-current/Makefile 1.159 +3 -3 ports/mail/postfix-current/distinfo 1.23 +2 -2 ports/mail/postfix-current/pkg-install 1.58 +3 -3 ports/mail/postfix-current/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 20:03:29 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AE2431065681; Thu, 28 Feb 2008 20:03:29 +0000 (UTC) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 79E5A8FC16; Thu, 28 Feb 2008 20:03:29 +0000 (UTC) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SK3T9u088269; Thu, 28 Feb 2008 20:03:29 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SK3T8W088268; Thu, 28 Feb 2008 20:03:29 GMT (envelope-from mnag) Message-Id: <200802282003.m1SK3T8W088268@repoman.freebsd.org> From: Marcus Alves Grando Date: Thu, 28 Feb 2008 20:03:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/postfix23 Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 20:03:29 -0000 mnag 2008-02-28 20:03:29 UTC FreeBSD ports repository Modified files: mail/postfix23 Makefile distinfo Log: - Update to 2.3.14 - Remove unecessary BROKEN in DOVECOT and SASL2 Revision Changes Path 1.133 +1 -7 ports/mail/postfix23/Makefile 1.90 +3 -3 ports/mail/postfix23/distinfo From owner-cvs-all@FreeBSD.ORG Thu Feb 28 20:04:09 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 936661065672; Thu, 28 Feb 2008 20:04:09 +0000 (UTC) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5F6B68FC1A; Thu, 28 Feb 2008 20:04:09 +0000 (UTC) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SK49eb088329; Thu, 28 Feb 2008 20:04:09 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SK49x3088328; Thu, 28 Feb 2008 20:04:09 GMT (envelope-from mnag) Message-Id: <200802282004.m1SK49x3088328@repoman.freebsd.org> From: Marcus Alves Grando Date: Thu, 28 Feb 2008 20:04:09 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/postfix24 Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 20:04:09 -0000 mnag 2008-02-28 20:04:09 UTC FreeBSD ports repository Modified files: mail/postfix24 Makefile distinfo Log: - Update to 2.4.7 - Update VDA patch to 2.4.6 - Change MAINTAINER - Added NO_LATEST_LINK Repocopied by: marcus Repocopy from: mail/postfix Revision Changes Path 1.136 +4 -4 ports/mail/postfix24/Makefile 1.93 +6 -6 ports/mail/postfix24/distinfo From owner-cvs-all@FreeBSD.ORG Thu Feb 28 20:04:27 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 366261065670; Thu, 28 Feb 2008 20:04:27 +0000 (UTC) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F3CCB8FC14; Thu, 28 Feb 2008 20:04:26 +0000 (UTC) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SK4QhF088363; Thu, 28 Feb 2008 20:04:26 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SK4QKj088362; Thu, 28 Feb 2008 20:04:26 GMT (envelope-from mnag) Message-Id: <200802282004.m1SK4QKj088362@repoman.freebsd.org> From: Marcus Alves Grando Date: Thu, 28 Feb 2008 20:04:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 20:04:27 -0000 mnag 2008-02-28 20:04:26 UTC FreeBSD ports repository Modified files: mail Makefile Log: - Connect postfix24 Revision Changes Path 1.901 +1 -0 ports/mail/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 20:06:32 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1AE301065673; Thu, 28 Feb 2008 20:06:31 +0000 (UTC) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D74138FC1C; Thu, 28 Feb 2008 20:06:30 +0000 (UTC) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SK6U3C088560; Thu, 28 Feb 2008 20:06:30 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SK6U6W088559; Thu, 28 Feb 2008 20:06:30 GMT (envelope-from mnag) Message-Id: <200802282006.m1SK6U6W088559@repoman.freebsd.org> From: Marcus Alves Grando Date: Thu, 28 Feb 2008 20:06:30 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/postfix Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 20:06:32 -0000 mnag 2008-02-28 20:06:30 UTC FreeBSD ports repository Modified files: mail/postfix Makefile distinfo pkg-plist Log: - Update to 2.5.1 - Mark as IGNORE VDA patch until patch does not apply clean Requested by: many Revision Changes Path 1.136 +3 -2 ports/mail/postfix/Makefile 1.93 +3 -6 ports/mail/postfix/distinfo 1.26 +3 -0 ports/mail/postfix/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 20:09:08 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7DFCB1065671; Thu, 28 Feb 2008 20:09:08 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 484F08FC1A; Thu, 28 Feb 2008 20:09:08 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SK98rT088753; Thu, 28 Feb 2008 20:09:08 GMT (envelope-from beech@repoman.freebsd.org) Received: (from beech@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SK98Tc088752; Thu, 28 Feb 2008 20:09:08 GMT (envelope-from beech) Message-Id: <200802282009.m1SK98Tc088752@repoman.freebsd.org> From: Beech Rintoul Date: Thu, 28 Feb 2008 20:09:08 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/horde-turba Makefile distinfo pkg-plist ports/mail/horde-turba/files patch-config::sources.php.dist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 20:09:08 -0000 beech 2008-02-28 20:09:08 UTC FreeBSD ports repository Modified files: mail/horde-turba Makefile distinfo pkg-plist mail/horde-turba/files patch-config::sources.php.dist Log: - Update to 2.2-rc3 - Many changes, please see the following: http://www.horde.org/turba/docs/?f=CHANGES.html Revision Changes Path 1.57 +2 -1 ports/mail/horde-turba/Makefile 1.25 +3 -3 ports/mail/horde-turba/distinfo 1.5 +40 -45 ports/mail/horde-turba/files/patch-config::sources.php.dist 1.26 +199 -104 ports/mail/horde-turba/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 20:09:23 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 973C01065671; Thu, 28 Feb 2008 20:09:23 +0000 (UTC) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 634E98FC26; Thu, 28 Feb 2008 20:09:23 +0000 (UTC) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SK9Njn088794; Thu, 28 Feb 2008 20:09:23 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SK9NgZ088793; Thu, 28 Feb 2008 20:09:23 GMT (envelope-from mnag) Message-Id: <200802282009.m1SK9NgZ088793@repoman.freebsd.org> From: Marcus Alves Grando Date: Thu, 28 Feb 2008 20:09:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 20:09:23 -0000 mnag 2008-02-28 20:09:23 UTC FreeBSD ports repository Modified files: . modules Log: postfix24 -> ports/mail/postfix24 Revision Changes Path 1.19448 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Feb 28 20:10:17 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CC321106566C; Thu, 28 Feb 2008 20:10:17 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B14C58FC16; Thu, 28 Feb 2008 20:10:17 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SKAHBq088940; Thu, 28 Feb 2008 20:10:17 GMT (envelope-from obraun@repoman.freebsd.org) Received: (from obraun@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SKAHDw088939; Thu, 28 Feb 2008 20:10:17 GMT (envelope-from obraun) Message-Id: <200802282010.m1SKAHDw088939@repoman.freebsd.org> From: Oliver Braun Date: Thu, 28 Feb 2008 20:10:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel Makefile ports/devel/hs-uulib Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 20:10:18 -0000 obraun 2008-02-28 20:10:17 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/hs-uulib Makefile distinfo pkg-descr pkg-plist Log: Fast Parser Combinators and Pretty Printing Combinators libraries by the Utrecht University. author: maintainer: Arie Middelkoop license: LGPL-2.1 WWW: http://www.cs.uu.nl/wiki/HUT/AttributeGrammarSystem package-url: http://nix.cs.uu.nl/dist/hut/ exposed-modules: UU.Parsing.CharParser UU.Parsing.Derived UU.Parsing.Interface UU.Parsing.MachineInterface UU.Parsing.Merge UU.Parsing.Offside UU.Parsing.Perms UU.Parsing.StateParser UU.Parsing UU.DData.IntBag UU.DData.Map UU.DData.MultiSet UU.DData.Queue UU.DData.Scc UU.DData.Seq UU.DData.Set UU.PPrint UU.Pretty.Ext UU.Pretty UU.Scanner.GenToken UU.Scanner.GenTokenOrd UU.Scanner.GenTokenParser UU.Scanner.GenTokenSymbol UU.Scanner.Position UU.Scanner.Scanner UU.Scanner.Token UU.Scanner.TokenParser UU.Scanner.TokenShow UU.Scanner UU.Util.BinaryTrees UU.Util.PermTree UU.Util.Utils UU.Pretty.Basic UU.Parsing.Machine UU.DData.IntMap UU.DData.IntSet PR: ports/121151 Submitted by: Giuseppe Pilichi aka Jacula Modyun Revision Changes Path 1.3011 +1 -0 ports/devel/Makefile 1.1 +46 -0 ports/devel/hs-uulib/Makefile (new) 1.1 +3 -0 ports/devel/hs-uulib/distinfo (new) 1.1 +24 -0 ports/devel/hs-uulib/pkg-descr (new) 1.1 +53 -0 ports/devel/hs-uulib/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Feb 28 20:12:54 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EBDDB1065672; Thu, 28 Feb 2008 20:12:54 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B7BF48FC22; Thu, 28 Feb 2008 20:12:54 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SKCsw7089111; Thu, 28 Feb 2008 20:12:54 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SKCswx089110; Thu, 28 Feb 2008 20:12:54 GMT (envelope-from erwin) Message-Id: <200802282012.m1SKCswx089110@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 28 Feb 2008 20:12:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/palm/pdbc Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 20:12:55 -0000 erwin 2008-02-28 20:12:54 UTC FreeBSD ports repository Modified files: palm/pdbc Makefile Log: Mark BROKEN: checksum mismatch Revision Changes Path 1.3 +2 -0 ports/palm/pdbc/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 20:14:30 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 03D85106566C; Thu, 28 Feb 2008 20:14:30 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C400D8FC1C; Thu, 28 Feb 2008 20:14:29 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SKET40089217; Thu, 28 Feb 2008 20:14:29 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SKETtN089216; Thu, 28 Feb 2008 20:14:29 GMT (envelope-from erwin) Message-Id: <200802282014.m1SKETtN089216@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 28 Feb 2008 20:14:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/misc/pdmenu Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 20:14:30 -0000 erwin 2008-02-28 20:14:29 UTC FreeBSD ports repository Modified files: misc/pdmenu Makefile Log: Mark BROKEN: does not fetch Revision Changes Path 1.24 +2 -0 ports/misc/pdmenu/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 20:14:30 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 657D51065673; Thu, 28 Feb 2008 20:14:30 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 31BB98FC15; Thu, 28 Feb 2008 20:14:30 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SKEUPf089223; Thu, 28 Feb 2008 20:14:30 GMT (envelope-from obraun@repoman.freebsd.org) Received: (from obraun@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SKEUTp089222; Thu, 28 Feb 2008 20:14:30 GMT (envelope-from obraun) Message-Id: <200802282014.m1SKEUTp089222@repoman.freebsd.org> From: Oliver Braun Date: Thu, 28 Feb 2008 20:14:30 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 20:14:30 -0000 obraun 2008-02-28 20:14:30 UTC FreeBSD ports repository Modified files: . modules Log: hs-uulib --> ports/devel/hs-uulib Revision Changes Path 1.19449 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Feb 28 20:28:12 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 745FF1065676; Thu, 28 Feb 2008 20:28:12 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3E6AC8FC15; Thu, 28 Feb 2008 20:28:12 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SKSCgk089995; Thu, 28 Feb 2008 20:28:12 GMT (envelope-from obraun@repoman.freebsd.org) Received: (from obraun@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SKSChs089994; Thu, 28 Feb 2008 20:28:12 GMT (envelope-from obraun) Message-Id: <200802282028.m1SKSChs089994@repoman.freebsd.org> From: Oliver Braun Date: Thu, 28 Feb 2008 20:28:11 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors contrib.additional.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 20:28:12 -0000 obraun 2008-02-28 20:28:11 UTC FreeBSD doc repository (ports committer) Modified files: en_US.ISO8859-1/articles/contributors contrib.additional.sgml Log: Add Jacula Modyun for devel/hs-uulib. Revision Changes Path 1.771 +5 -0 doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml From owner-cvs-all@FreeBSD.ORG Thu Feb 28 20:30:40 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 81D2C106573C; Thu, 28 Feb 2008 20:30:40 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4B7ED8FC20; Thu, 28 Feb 2008 20:30:40 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SKUeZR090198; Thu, 28 Feb 2008 20:30:40 GMT (envelope-from beech@repoman.freebsd.org) Received: (from beech@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SKUeIm090197; Thu, 28 Feb 2008 20:30:40 GMT (envelope-from beech) Message-Id: <200802282030.m1SKUeIm090197@repoman.freebsd.org> From: Beech Rintoul Date: Thu, 28 Feb 2008 20:30:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/horde-ingo Makefile distinfo pkg-plist ports/mail/horde-ingo/files patch-lib_Script_procmail.php X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 20:30:40 -0000 beech 2008-02-28 20:30:40 UTC FreeBSD ports repository Modified files: mail/horde-ingo Makefile distinfo pkg-plist mail/horde-ingo/files patch-lib_Script_procmail.php Log: - Update to 1.2-rc2 - Many changes, please see the following: http://www.horde.org/ingo/docs/?f=CHANGES.html Revision Changes Path 1.28 +2 -1 ports/mail/horde-ingo/Makefile 1.12 +3 -3 ports/mail/horde-ingo/distinfo 1.2 +13 -14 ports/mail/horde-ingo/files/patch-lib_Script_procmail.php 1.15 +137 -77 ports/mail/horde-ingo/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 20:34:32 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 12EBB1065672; Thu, 28 Feb 2008 20:34:32 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D27718FC13; Thu, 28 Feb 2008 20:34:31 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SKYV92090404; Thu, 28 Feb 2008 20:34:31 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SKYV21090403; Thu, 28 Feb 2008 20:34:31 GMT (envelope-from itetcu) Message-Id: <200802282034.m1SKYV21090403@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Thu, 28 Feb 2008 20:34:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/dt Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 20:34:32 -0000 itetcu 2008-02-28 20:34:31 UTC FreeBSD ports repository Modified files: sysutils/dt Makefile Log: - switch to my @FreeBSD.org address - mirror the distfile on a second server (the vendor site now caries a WIP tarball) Prompted by: ponty via erwin@ Revision Changes Path 1.8 +3 -2 ports/sysutils/dt/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 20:50:45 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3405A1065677; Thu, 28 Feb 2008 20:50:45 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F2F5E8FC1F; Thu, 28 Feb 2008 20:50:44 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SKoi1Z000370; Thu, 28 Feb 2008 20:50:44 GMT (envelope-from beech@repoman.freebsd.org) Received: (from beech@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SKoi7W000369; Thu, 28 Feb 2008 20:50:44 GMT (envelope-from beech) Message-Id: <200802282050.m1SKoi7W000369@repoman.freebsd.org> From: Beech Rintoul Date: Thu, 28 Feb 2008 20:50:44 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/deskutils/horde-mnemo Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 20:50:45 -0000 beech 2008-02-28 20:50:44 UTC FreeBSD ports repository Modified files: deskutils/horde-mnemo Makefile distinfo pkg-plist Log: - Update to 2.2-rc2 - Many changes, please see the following: http://www.horde.org/mnemo/docs/?f=CHANGES.html Revision Changes Path 1.30 +2 -1 ports/deskutils/horde-mnemo/Makefile 1.13 +3 -3 ports/deskutils/horde-mnemo/distinfo 1.16 +117 -76 ports/deskutils/horde-mnemo/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 20:53:43 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A62871065671; Thu, 28 Feb 2008 20:53:43 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8B1C48FC1B; Thu, 28 Feb 2008 20:53:43 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SKrhPx000547; Thu, 28 Feb 2008 20:53:43 GMT (envelope-from obraun@repoman.freebsd.org) Received: (from obraun@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SKrhD5000546; Thu, 28 Feb 2008 20:53:43 GMT (envelope-from obraun) Message-Id: <200802282053.m1SKrhD5000546@repoman.freebsd.org> From: Oliver Braun Date: Thu, 28 Feb 2008 20:53:43 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel Makefile ports/devel/hs-uuagc Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 20:53:43 -0000 obraun 2008-02-28 20:53:43 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/hs-uuagc Makefile distinfo pkg-descr pkg-plist Log: UUAG is the Utrecht University Attribute Grammar system. Generates Haskell files from an attribute grammar specification It is a preprocessor for Haskell which makes it easy to write catamorphisms (that is, functions that do to any datatype what foldr does to lists). You can define tree walks using the intuitive concepts of inherited and synthesized attributes, while keeping the full expressive power of Haskell. maintainer: Arie Middelkoop license: GPL-2 WWW: http://www.cs.uu.nl/wiki/HUT/AttributeGrammarSystem package-url: http://nix.cs.uu.nl/dist/hut/ PR: ports/121152 Submitted by: Giuseppe Pilichi aka Jacula Modyun Revision Changes Path 1.3012 +1 -0 ports/devel/Makefile 1.1 +41 -0 ports/devel/hs-uuagc/Makefile (new) 1.1 +3 -0 ports/devel/hs-uuagc/distinfo (new) 1.1 +12 -0 ports/devel/hs-uuagc/pkg-descr (new) 1.1 +3 -0 ports/devel/hs-uuagc/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Feb 28 20:55:16 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5B5EA1065672; Thu, 28 Feb 2008 20:55:16 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 26A8C8FC24; Thu, 28 Feb 2008 20:55:16 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SKtGlX000733; Thu, 28 Feb 2008 20:55:16 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SKtGCW000732; Thu, 28 Feb 2008 20:55:16 GMT (envelope-from itetcu) Message-Id: <200802282055.m1SKtGCW000732@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Thu, 28 Feb 2008 20:55:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/altermime Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 20:55:16 -0000 itetcu 2008-02-28 20:55:16 UTC FreeBSD ports repository Modified files: mail/altermime Makefile distinfo Log: Update to 0.3.8 Prompted by: poity via erwin@ Revision Changes Path 1.7 +1 -1 ports/mail/altermime/Makefile 1.5 +3 -3 ports/mail/altermime/distinfo From owner-cvs-all@FreeBSD.ORG Thu Feb 28 20:57:32 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 41AA51065671; Thu, 28 Feb 2008 20:57:32 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0DB398FC13; Thu, 28 Feb 2008 20:57:32 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SKvVTJ000844; Thu, 28 Feb 2008 20:57:31 GMT (envelope-from obraun@repoman.freebsd.org) Received: (from obraun@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SKvVfl000843; Thu, 28 Feb 2008 20:57:31 GMT (envelope-from obraun) Message-Id: <200802282057.m1SKvVfl000843@repoman.freebsd.org> From: Oliver Braun Date: Thu, 28 Feb 2008 20:57:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 20:57:32 -0000 obraun 2008-02-28 20:57:31 UTC FreeBSD ports repository Modified files: . modules Log: hs-uuagc --> ports/devel/hs-uuagc Revision Changes Path 1.19450 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Feb 28 21:02:50 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4AAE91065679 for ; Thu, 28 Feb 2008 21:02:50 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from capeta.freebsdbrasil.com.br (capeta.freebsdbrasil.com.br [201.48.151.3]) by mx1.freebsd.org (Postfix) with SMTP id 67F768FC27 for ; Thu, 28 Feb 2008 21:02:49 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: (qmail 44604 invoked from network); 28 Feb 2008 18:02:48 -0300 Received: from unknown (HELO garga.garga.local) (garga@201.92.249.156) by capeta.freebsdbrasil.com.br with SMTP; 28 Feb 2008 18:02:48 -0300 Received: (qmail 88230 invoked by uid 1001); 28 Feb 2008 18:02:47 -0300 Date: Thu, 28 Feb 2008 18:02:47 -0300 From: Renato Botelho To: Oliver Lehmann Message-ID: <20080228210246.GA1193@bluepex.com> Mail-Followup-To: Oliver Lehmann , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200802280541.m1S5fH1F076561@repoman.freebsd.org> <20080228113004.GA72033@bluepex.com> <20080228182621.6a77ebbd.oliver@FreeBSD.org> <20080228174029.GA80229@bluepex.com> <20080228191500.6bce2fcc.oliver@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; x-action=pgp-signed Content-Disposition: inline In-Reply-To: <20080228191500.6bce2fcc.oliver@FreeBSD.org> User-Agent: Mutt/1.5.17 (2007-11-01) Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/audio/audacious-crossfade Makefile ports/audio/audacious-dumb Makefile distinfo ports/audio/audacious-dumb/files patch-Makefile ports/audio/audacious-mac Makefile distinfo ports/audio/audacious-mac/files patch-src-common.h patch-src-fileinfo.cpp ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 21:02:50 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Thu, Feb 28, 2008 at 07:15:00PM +0100, Oliver Lehmann wrote: > Renato Botelho wrote: > > > It happened with me today when i deinstall 1.4.5 and try to install 1.4.6. > > After copy dbus.h to /usr/local/include/audacious/dbus.h it intalled ok. > > what are your config options? With the default options I cannot reproduce > it neither on a clean i386 8 system nor on a amd64 7 system. Here at home i upgraded from 1.3.x to 1.4.6 with default options without problems, i'll check options at work tomorrow and let you know. - -- We must die because we have known them. -- Ptah-hotep, 2000 B.C. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.8 (FreeBSD) iEYEARECAAYFAkfHIXYACgkQ6CRbiSJE7alSUQCdFZEH0Qm90rhVRAoLsg63MJGt DJIAoJSVUnFhyCDvtSQGXRIB/euo0U8m =4Fbm -----END PGP SIGNATURE----- From owner-cvs-all@FreeBSD.ORG Thu Feb 28 21:14:21 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D958106567E; Thu, 28 Feb 2008 21:14:21 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id ECB828FC2E; Thu, 28 Feb 2008 21:14:20 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SLEKwv002917; Thu, 28 Feb 2008 21:14:20 GMT (envelope-from beech@repoman.freebsd.org) Received: (from beech@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SLEKCx002916; Thu, 28 Feb 2008 21:14:20 GMT (envelope-from beech) Message-Id: <200802282114.m1SLEKCx002916@repoman.freebsd.org> From: Beech Rintoul Date: Thu, 28 Feb 2008 21:14:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/deskutils/horde-kronolith Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 21:14:21 -0000 beech 2008-02-28 21:14:20 UTC FreeBSD ports repository Modified files: deskutils/horde-kronolith Makefile distinfo pkg-plist Log: - Update to 2.2-rc2 - Many changes, please see the following: http://www.horde.org/kronolith/docs/?f=CHANGES.html Revision Changes Path 1.48 +3 -1 ports/deskutils/horde-kronolith/Makefile 1.24 +3 -3 ports/deskutils/horde-kronolith/distinfo 1.24 +277 -130 ports/deskutils/horde-kronolith/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 21:24:10 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C64D1065671; Thu, 28 Feb 2008 21:24:10 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 283BE8FC2D; Thu, 28 Feb 2008 21:24:10 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SLOA4H003487; Thu, 28 Feb 2008 21:24:10 GMT (envelope-from gahr@repoman.freebsd.org) Received: (from gahr@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SLO9SD003486; Thu, 28 Feb 2008 21:24:09 GMT (envelope-from gahr) Message-Id: <200802282124.m1SLO9SD003486@repoman.freebsd.org> From: Pietro Cerutti Date: Thu, 28 Feb 2008 21:24:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/jakelib2 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 21:24:10 -0000 gahr 2008-02-28 21:24:06 UTC FreeBSD ports repository Modified files: devel/jakelib2 Makefile Log: - Fix master site - Adopt mantainship Approved by: erwin (co-mentor) Revision Changes Path 1.10 +2 -2 ports/devel/jakelib2/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 21:24:20 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 70A701065675; Thu, 28 Feb 2008 21:24:20 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3C35A8FC1A; Thu, 28 Feb 2008 21:24:20 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SLOKUl003525; Thu, 28 Feb 2008 21:24:20 GMT (envelope-from obraun@repoman.freebsd.org) Received: (from obraun@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SLOK1o003524; Thu, 28 Feb 2008 21:24:20 GMT (envelope-from obraun) Message-Id: <200802282124.m1SLOK1o003524@repoman.freebsd.org> From: Oliver Braun Date: Thu, 28 Feb 2008 21:24:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/print/muttprint Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 21:24:20 -0000 obraun 2008-02-28 21:24:20 UTC FreeBSD ports repository Modified files: print/muttprint Makefile Log: Reset maintainer to ports@ Revision Changes Path 1.36 +1 -1 ports/print/muttprint/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 21:24:22 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E81871065769; Thu, 28 Feb 2008 21:24:22 +0000 (UTC) (envelope-from barner@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 19F598FC3A; Thu, 28 Feb 2008 21:24:22 +0000 (UTC) (envelope-from barner@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SLOLTW003554; Thu, 28 Feb 2008 21:24:22 GMT (envelope-from barner@repoman.freebsd.org) Received: (from barner@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SLOLFf003553; Thu, 28 Feb 2008 21:24:21 GMT (envelope-from barner) Message-Id: <200802282124.m1SLOLFf003553@repoman.freebsd.org> From: Simon Barner Date: Thu, 28 Feb 2008 21:24:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/stlfilt Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 21:24:23 -0000 barner 2008-02-28 21:24:21 UTC FreeBSD ports repository Modified files: devel/stlfilt Makefile distinfo Log: - Update to 2008/02/03 snapshot Requested by: pointyhat via erwin Revision Changes Path 1.7 +1 -1 ports/devel/stlfilt/Makefile 1.6 +3 -3 ports/devel/stlfilt/distinfo From owner-cvs-all@FreeBSD.ORG Thu Feb 28 21:26:09 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4ED9C1065672; Thu, 28 Feb 2008 21:26:09 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 19B888FC1C; Thu, 28 Feb 2008 21:26:08 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SLQ8d0003716; Thu, 28 Feb 2008 21:26:08 GMT (envelope-from obraun@repoman.freebsd.org) Received: (from obraun@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SLQ8so003715; Thu, 28 Feb 2008 21:26:08 GMT (envelope-from obraun) Message-Id: <200802282126.m1SLQ8so003715@repoman.freebsd.org> From: Oliver Braun Date: Thu, 28 Feb 2008 21:26:08 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/hs-hmake/files patch-src-hmake-Config.hs patch-src-hmake-PackageConfig.hs X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 21:26:09 -0000 obraun 2008-02-28 21:26:08 UTC FreeBSD ports repository Added files: devel/hs-hmake/files patch-src-hmake-Config.hs patch-src-hmake-PackageConfig.hs Log: Fix build with ghc 6.8.2. Revision Changes Path 1.1 +11 -0 ports/devel/hs-hmake/files/patch-src-hmake-Config.hs (new) 1.1 +11 -0 ports/devel/hs-hmake/files/patch-src-hmake-PackageConfig.hs (new) From owner-cvs-all@FreeBSD.ORG Thu Feb 28 21:43:29 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 049D2106566C; Thu, 28 Feb 2008 21:43:29 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DA3688FC13; Thu, 28 Feb 2008 21:43:28 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SLhSQ1005051; Thu, 28 Feb 2008 21:43:28 GMT (envelope-from gahr@repoman.freebsd.org) Received: (from gahr@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SLhSIO005050; Thu, 28 Feb 2008 21:43:28 GMT (envelope-from gahr) Message-Id: <200802282143.m1SLhSIO005050@repoman.freebsd.org> From: Pietro Cerutti Date: Thu, 28 Feb 2008 21:43:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio/beast Makefile distinfo pkg-plist ports/audio/beast/files patch-birnet_birnetcdefs.h patch-birnet_birnetcpu.c patch-bse_bseloader-bsewave.c patch-bse_bseloader-guspatch.cc patch-bse_bseloader-oggvorbis.c patch-bse_bseloader.h patch-sfi_glib-extra.c patch-sfi_glib-extra.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 21:43:29 -0000 gahr 2008-02-28 21:43:28 UTC FreeBSD ports repository Modified files: audio/beast Makefile distinfo pkg-plist Added files: audio/beast/files patch-birnet_birnetcdefs.h patch-birnet_birnetcpu.c patch-bse_bseloader-bsewave.c patch-bse_bseloader-guspatch.cc patch-bse_bseloader-oggvorbis.c patch-bse_bseloader.h Removed files: audio/beast/files patch-sfi_glib-extra.c patch-sfi_glib-extra.h Log: - Update to 0.7.1 - Fix build with GCC 4.2 - Adopt maintainship Approved by: miwi (mentor) Revision Changes Path 1.25 +12 -17 ports/audio/beast/Makefile 1.5 +3 -3 ports/audio/beast/distinfo 1.1 +16 -0 ports/audio/beast/files/patch-birnet_birnetcdefs.h (new) 1.1 +11 -0 ports/audio/beast/files/patch-birnet_birnetcpu.c (new) 1.1 +21 -0 ports/audio/beast/files/patch-bse_bseloader-bsewave.c (new) 1.1 +11 -0 ports/audio/beast/files/patch-bse_bseloader-guspatch.cc (new) 1.1 +11 -0 ports/audio/beast/files/patch-bse_bseloader-oggvorbis.c (new) 1.1 +11 -0 ports/audio/beast/files/patch-bse_bseloader.h (new) 1.2 +0 -21 ports/audio/beast/files/patch-sfi_glib-extra.c (dead) 1.2 +0 -11 ports/audio/beast/files/patch-sfi_glib-extra.h (dead) 1.10 +177 -157 ports/audio/beast/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 21:44:49 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 67A301065678; Thu, 28 Feb 2008 21:44:49 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 329088FC1A; Thu, 28 Feb 2008 21:44:49 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SLinb5005143; Thu, 28 Feb 2008 21:44:49 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SLinbr005142; Thu, 28 Feb 2008 21:44:49 GMT (envelope-from arved) Message-Id: <200802282144.m1SLinbr005142@repoman.freebsd.org> From: Tilman Linneweh Date: Thu, 28 Feb 2008 21:44:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/libgcrypt Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 21:44:49 -0000 arved 2008-02-28 21:44:49 UTC FreeBSD ports repository Modified files: security/libgcrypt Makefile distinfo pkg-plist Log: Update to 1.4.0 PR: 118541 Submitted by: Hirohisa Yamaguchi Revision Changes Path 1.37 +10 -2 ports/security/libgcrypt/Makefile 1.13 +3 -3 ports/security/libgcrypt/distinfo 1.9 +15 -1 ports/security/libgcrypt/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Feb 28 21:47:07 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 45ACC1065672; Thu, 28 Feb 2008 21:47:07 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 27BA28FC23; Thu, 28 Feb 2008 21:47:06 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SLl6gT005694; Thu, 28 Feb 2008 21:47:06 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SLl6lU005693; Thu, 28 Feb 2008 21:47:06 GMT (envelope-from arved) Message-Id: <200802282147.m1SLl6lU005693@repoman.freebsd.org> From: Tilman Linneweh Date: Thu, 28 Feb 2008 21:47:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/csync2 Makefile ports/net/cyphesis Makefile ports/security/dirmngr Makefile ports/security/fiked Makefile ports/emulators/fuse Makefile ports/security/gnome-keyring Makefile ports/security/gnupg Makefile ports/security/gnutls ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 21:47:07 -0000 arved 2008-02-28 21:47:06 UTC FreeBSD ports repository Modified files: net/csync2 Makefile net/cyphesis Makefile security/dirmngr Makefile security/fiked Makefile emulators/fuse Makefile security/gnome-keyring Makefile security/gnupg Makefile security/gnutls Makefile security/gnutls-devel Makefile security/gsasl Makefile emulators/libspectrum Makefile textproc/libxslt Makefile security/opencdk Makefile security/p5-Crypt-GCrypt Makefile security/pinentry Makefile security/seccure Makefile graphics/telak Makefile security/vpnc Makefile net/wireshark Makefile mail/wmbiff Makefile Log: Chase libgcrypt library version Revision Changes Path 1.13 +2 -1 ports/emulators/fuse/Makefile 1.11 +2 -1 ports/emulators/libspectrum/Makefile 1.8 +2 -2 ports/graphics/telak/Makefile 1.34 +2 -2 ports/mail/wmbiff/Makefile 1.6 +2 -1 ports/net/csync2/Makefile 1.26 +2 -1 ports/net/cyphesis/Makefile 1.127 +2 -2 ports/net/wireshark/Makefile 1.32 +2 -1 ports/security/dirmngr/Makefile 1.5 +2 -2 ports/security/fiked/Makefile 1.30 +2 -1 ports/security/gnome-keyring/Makefile 1.109 +2 -1 ports/security/gnupg/Makefile 1.55 +2 -1 ports/security/gnutls-devel/Makefile 1.55 +2 -2 ports/security/gnutls/Makefile 1.35 +2 -1 ports/security/gsasl/Makefile 1.28 +1 -1 ports/security/opencdk/Makefile 1.7 +2 -1 ports/security/p5-Crypt-GCrypt/Makefile 1.39 +2 -2 ports/security/pinentry/Makefile 1.2 +9 -8 ports/security/seccure/Makefile 1.29 +2 -1 ports/security/vpnc/Makefile 1.86 +2 -2 ports/textproc/libxslt/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 22:07:27 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 54380106566B; Thu, 28 Feb 2008 22:07:27 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1F7018FC27; Thu, 28 Feb 2008 22:07:27 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SM7Rdd007947; Thu, 28 Feb 2008 22:07:27 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SM7Qcd007946; Thu, 28 Feb 2008 22:07:26 GMT (envelope-from thierry) Message-Id: <200802282207.m1SM7Qcd007946@repoman.freebsd.org> From: Thierry Thomas Date: Thu, 28 Feb 2008 22:07:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/french/gibi Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 22:07:27 -0000 thierry 2008-02-28 22:07:26 UTC FreeBSD ports repository Modified files: french/gibi Makefile Log: Make fetchable again. Reported by: pointyhat via erwin Revision Changes Path 1.18 +1 -1 ports/french/gibi/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 22:15:45 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 982FE106566C; Thu, 28 Feb 2008 22:15:45 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 638BC8FC2B; Thu, 28 Feb 2008 22:15:45 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SMFjfk008702; Thu, 28 Feb 2008 22:15:45 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SMFjEF008701; Thu, 28 Feb 2008 22:15:45 GMT (envelope-from brooks) Message-Id: <200802282215.m1SMFjEF008701@repoman.freebsd.org> From: Brooks Davis Date: Thu, 28 Feb 2008 22:15:44 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/projects/ideas ideas.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 22:15:45 -0000 brooks 2008-02-28 22:15:44 UTC FreeBSD doc repository (src,ports committer) Modified files: en/projects/ideas ideas.xml Log: Add proxy auto-config support for libfetch. Discussed with: des Revision Changes Path 1.35 +34 -1 www/en/projects/ideas/ideas.xml From owner-cvs-all@FreeBSD.ORG Thu Feb 28 22:20:24 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E8DBA1065672; Thu, 28 Feb 2008 22:20:24 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B45978FC27; Thu, 28 Feb 2008 22:20:24 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SMKOm9009032; Thu, 28 Feb 2008 22:20:24 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SMKOTJ009031; Thu, 28 Feb 2008 22:20:24 GMT (envelope-from leeym) Message-Id: <200802282220.m1SMKOTJ009031@repoman.freebsd.org> From: Yen-Ming Lee Date: Thu, 28 Feb 2008 22:20:24 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-Params-Check Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 22:20:25 -0000 leeym 2008-02-28 22:20:24 UTC FreeBSD ports repository Modified files: devel/p5-Params-Check Makefile Log: - use CPAN macro - fix dependency - bump PORTREVISION Revision Changes Path 1.6 +5 -8 ports/devel/p5-Params-Check/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 22:30:41 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B80121065675; Thu, 28 Feb 2008 22:30:41 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 837588FC27; Thu, 28 Feb 2008 22:30:41 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SMUfZR009577; Thu, 28 Feb 2008 22:30:41 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SMUf7R009576; Thu, 28 Feb 2008 22:30:41 GMT (envelope-from marcel) Message-Id: <200802282230.m1SMUf7R009576@repoman.freebsd.org> From: Marcel Moolenaar Date: Thu, 28 Feb 2008 22:30:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/geom/part g_part_mbr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 22:30:42 -0000 marcel 2008-02-28 22:30:41 UTC FreeBSD src repository Modified files: sys/geom/part g_part_mbr.c Log: Better handle false positives. The MBR differs from the boot sector only because there's a partition table where the boot sector has boot code. Boot sectors without boot code look like a MBR for all practical purposes. This change adds a check for the partition table and fails the probe when it's obvously invalid. The assumption being that the sector contains a boot sector and not a MBR. More checks are needed to distinguish a boot secto without boot code from a (empty) MBR. Revision Changes Path 1.3 +24 -6 src/sys/geom/part/g_part_mbr.c From owner-cvs-all@FreeBSD.ORG Thu Feb 28 22:47:34 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 29046106566B; Thu, 28 Feb 2008 22:47:34 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E71C98FC16; Thu, 28 Feb 2008 22:47:33 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SMlXMO010632; Thu, 28 Feb 2008 22:47:33 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SMlXap010631; Thu, 28 Feb 2008 22:47:33 GMT (envelope-from thierry) Message-Id: <200802282247.m1SMlXap010631@repoman.freebsd.org> From: Thierry Thomas Date: Thu, 28 Feb 2008 22:47:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/deskutils/pinot Makefile distinfo ports/deskutils/pinot/files patch-082_01 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 22:47:34 -0000 thierry 2008-02-28 22:47:33 UTC FreeBSD ports repository Modified files: deskutils/pinot Makefile distinfo Removed files: deskutils/pinot/files patch-082_01 Log: Upgrade to 0.83. Changelog at Revision Changes Path 1.28 +1 -2 ports/deskutils/pinot/Makefile 1.11 +3 -3 ports/deskutils/pinot/distinfo 1.2 +0 -95 ports/deskutils/pinot/files/patch-082_01 (dead) From owner-cvs-all@FreeBSD.ORG Thu Feb 28 22:48:54 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F15ED1065670; Thu, 28 Feb 2008 22:48:54 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D5C828FC12; Thu, 28 Feb 2008 22:48:54 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SMmsVP010729; Thu, 28 Feb 2008 22:48:54 GMT (envelope-from beech@repoman.freebsd.org) Received: (from beech@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SMmseS010728; Thu, 28 Feb 2008 22:48:54 GMT (envelope-from beech) Message-Id: <200802282248.m1SMmseS010728@repoman.freebsd.org> From: Beech Rintoul Date: Thu, 28 Feb 2008 22:48:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel Makefile ports/devel/horde-whups Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 22:48:55 -0000 beech 2008-02-28 22:48:54 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/horde-whups Makefile distinfo pkg-descr pkg-plist Log: Whups is Horde's bug tracking/ticketing system. It is designed to be extremely flexible in letting users define kinds of tickets, different lifecycles (sets of states) and priorities for each kind of ticket, and mixing types of tickets into sets of queues. This design allows for very general and sophisticated multi-purpose uses of Whups. The code is near 1.0 quality and most features are fully implemented at this time. Revision Changes Path 1.3013 +1 -0 ports/devel/Makefile 1.1 +22 -0 ports/devel/horde-whups/Makefile (new) 1.1 +3 -0 ports/devel/horde-whups/distinfo (new) 1.1 +8 -0 ports/devel/horde-whups/pkg-descr (new) 1.1 +540 -0 ports/devel/horde-whups/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Feb 28 22:49:09 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 10A0F1065700; Thu, 28 Feb 2008 22:49:09 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D08538FC1B; Thu, 28 Feb 2008 22:49:08 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SMn8ce010778; Thu, 28 Feb 2008 22:49:08 GMT (envelope-from beech@repoman.freebsd.org) Received: (from beech@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SMn8db010777; Thu, 28 Feb 2008 22:49:08 GMT (envelope-from beech) Message-Id: <200802282249.m1SMn8db010777@repoman.freebsd.org> From: Beech Rintoul Date: Thu, 28 Feb 2008 22:49:08 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 22:49:09 -0000 beech 2008-02-28 22:49:08 UTC FreeBSD ports repository Modified files: . modules Log: horde-whups --> ports/devel/horde-whups Revision Changes Path 1.19451 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Feb 28 23:05:43 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 136E8106566B; Thu, 28 Feb 2008 23:05:43 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D2C6D8FC1C; Thu, 28 Feb 2008 23:05:42 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SN5g36014588; Thu, 28 Feb 2008 23:05:42 GMT (envelope-from beech@repoman.freebsd.org) Received: (from beech@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SN5gRs014587; Thu, 28 Feb 2008 23:05:42 GMT (envelope-from beech) Message-Id: <200802282305.m1SN5gRs014587@repoman.freebsd.org> From: Beech Rintoul Date: Thu, 28 Feb 2008 23:05:42 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/horde-meta Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 23:05:43 -0000 beech 2008-02-28 23:05:42 UTC FreeBSD ports repository Modified files: www/horde-meta Makefile Log: - Add devel/horde-whups Revision Changes Path 1.9 +6 -1 ports/www/horde-meta/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 23:07:57 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2962D1065679; Thu, 28 Feb 2008 23:07:57 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E8FE48FC1B; Thu, 28 Feb 2008 23:07:56 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SN7uKL015072; Thu, 28 Feb 2008 23:07:56 GMT (envelope-from beech@repoman.freebsd.org) Received: (from beech@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SN7uQw015071; Thu, 28 Feb 2008 23:07:56 GMT (envelope-from beech) Message-Id: <200802282307.m1SN7uQw015071@repoman.freebsd.org> From: Beech Rintoul Date: Thu, 28 Feb 2008 23:07:56 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/horde-meta Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 23:07:57 -0000 beech 2008-02-28 23:07:56 UTC FreeBSD ports repository Modified files: www/horde-meta Makefile Log: - Bump portrevision after last commit Revision Changes Path 1.10 +1 -1 ports/www/horde-meta/Makefile From owner-cvs-all@FreeBSD.ORG Thu Feb 28 23:35:58 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4DA6C1065671; Thu, 28 Feb 2008 23:35:58 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 328508FC2B; Thu, 28 Feb 2008 23:35:58 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SNZwDb016117; Thu, 28 Feb 2008 23:35:58 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SNZw2T016116; Thu, 28 Feb 2008 23:35:58 GMT (envelope-from mezz) Message-Id: <200802282335.m1SNZw2T016116@repoman.freebsd.org> From: Jeremy Messenger Date: Thu, 28 Feb 2008 23:35:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/thunderbird Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 23:35:58 -0000 mezz 2008-02-28 23:35:57 UTC FreeBSD ports repository Modified files: mail/thunderbird Makefile distinfo Log: Update to 2.0.0.12. PR: ports/121189 Submitted by: gpalmer Security: - MFSA 2008-12 Heap buffer overflow in external MIME bodies - MFSA 2008-07 Possible information disclosure in BMP decoder - MFSA 2008-05 Directory traversal via chrome: URI - MFSA 2008-03 Privilege escalation, XSS, Remote Code Execution - MFSA 2008-01 Crashes with evidence of memory corruption (rv:1.8.1.12) Revision Changes Path 1.88 +1 -2 ports/mail/thunderbird/Makefile 1.34 +3 -3 ports/mail/thunderbird/distinfo From owner-cvs-all@FreeBSD.ORG Thu Feb 28 23:43:24 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D0D56106566B; Thu, 28 Feb 2008 23:43:24 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9B7658FC13; Thu, 28 Feb 2008 23:43:24 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SNhO1D016361; Thu, 28 Feb 2008 23:43:24 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SNhOPr016360; Thu, 28 Feb 2008 23:43:24 GMT (envelope-from thierry) Message-Id: <200802282343.m1SNhOPr016360@repoman.freebsd.org> From: Thierry Thomas Date: Thu, 28 Feb 2008 23:43:24 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/french/mozilla-flp Makefile distinfo.seamonkey X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 23:43:25 -0000 thierry 2008-02-28 23:43:24 UTC FreeBSD ports repository Modified files: french/mozilla-flp Makefile distinfo.seamonkey Log: Chase SeaMonkey's upgrade to 1.1.8. Revision Changes Path 1.26 +1 -1 ports/french/mozilla-flp/Makefile 1.8 +3 -3 ports/french/mozilla-flp/distinfo.seamonkey From owner-cvs-all@FreeBSD.ORG Thu Feb 28 23:47:39 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 141B11065676; Thu, 28 Feb 2008 23:47:39 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D3AAD8FC18; Thu, 28 Feb 2008 23:47:38 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1SNlcAD016535; Thu, 28 Feb 2008 23:47:38 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1SNlciw016534; Thu, 28 Feb 2008 23:47:38 GMT (envelope-from leeym) Message-Id: <200802282347.m1SNlciw016534@repoman.freebsd.org> From: Yen-Ming Lee Date: Thu, 28 Feb 2008 23:47:38 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-String-Approx Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2008 23:47:39 -0000 leeym 2008-02-28 23:47:38 UTC FreeBSD ports repository Modified files: devel/p5-String-Approx Makefile Log: - fix dependency - bump PORTREVISION Revision Changes Path 1.12 +1 -2 ports/devel/p5-String-Approx/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 00:12:01 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C3531065670; Fri, 29 Feb 2008 00:12:01 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 498D88FC1A; Fri, 29 Feb 2008 00:12:01 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T0C1PA018516; Fri, 29 Feb 2008 00:12:01 GMT (envelope-from beech@repoman.freebsd.org) Received: (from beech@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T0C187018515; Fri, 29 Feb 2008 00:12:01 GMT (envelope-from beech) Message-Id: <200802290012.m1T0C187018515@repoman.freebsd.org> From: Beech Rintoul Date: Fri, 29 Feb 2008 00:12:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/deskutils/horde-nag Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 00:12:01 -0000 beech 2008-02-29 00:12:01 UTC FreeBSD ports repository Modified files: deskutils/horde-nag Makefile distinfo pkg-plist Log: - Update to 2.2-rc2 - Many changes, please see: http://www.horde.org/nag/docs/?f=CHANGES.html Revision Changes Path 1.33 +2 -1 ports/deskutils/horde-nag/Makefile 1.16 +3 -3 ports/deskutils/horde-nag/distinfo 1.17 +153 -87 ports/deskutils/horde-nag/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Feb 29 00:46:41 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6D72C1065679; Fri, 29 Feb 2008 00:46:41 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 398CF8FC15; Fri, 29 Feb 2008 00:46:41 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T0kfWB019582; Fri, 29 Feb 2008 00:46:41 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T0kfmB019581; Fri, 29 Feb 2008 00:46:41 GMT (envelope-from leeym) Message-Id: <200802290046.m1T0kfmB019581@repoman.freebsd.org> From: Yen-Ming Lee Date: Fri, 29 Feb 2008 00:46:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/p5-S3 Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 00:46:41 -0000 leeym 2008-02-29 00:46:40 UTC FreeBSD ports repository Modified files: net/p5-S3 Makefile distinfo pkg-plist Log: - update to 20071102 - fix dependency Revision Changes Path 1.5 +13 -9 ports/net/p5-S3/Makefile 1.3 +3 -3 ports/net/p5-S3/distinfo 1.2 +2 -1 ports/net/p5-S3/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Feb 29 01:09:38 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DFEFC1065670; Fri, 29 Feb 2008 01:09:38 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AD4178FC17; Fri, 29 Feb 2008 01:09:38 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T19ceR030327; Fri, 29 Feb 2008 01:09:38 GMT (envelope-from araujo@repoman.freebsd.org) Received: (from araujo@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T19cqi030326; Fri, 29 Feb 2008 01:09:38 GMT (envelope-from araujo) Message-Id: <200802290109.m1T19cqi030326@repoman.freebsd.org> From: Marcelo Araujo Date: Fri, 29 Feb 2008 01:09:38 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/jep Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 01:09:39 -0000 araujo 2008-02-29 01:09:38 UTC FreeBSD ports repository Modified files: devel/jep Makefile distinfo pkg-plist Log: - Update to 2.3. [1] - Pass maintainership to submitter. [1] - Fix pkg-plist. [2] PR: ports/121192 Submitted by: Felippe de Meirelles Motta [1], pointyhat via erwin [2] Revision Changes Path 1.13 +5 -7 ports/devel/jep/Makefile 1.6 +3 -3 ports/devel/jep/distinfo 1.5 +3 -1 ports/devel/jep/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Feb 29 01:45:08 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9038A106566C; Fri, 29 Feb 2008 01:45:08 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 606568FC18; Fri, 29 Feb 2008 01:45:08 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T1j8CT031440; Fri, 29 Feb 2008 01:45:08 GMT (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T1j8fl031439; Fri, 29 Feb 2008 01:45:08 GMT (envelope-from trhodes) Message-Id: <200802290145.m1T1j8fl031439@repoman.freebsd.org> From: Tom Rhodes Date: Fri, 29 Feb 2008 01:45:08 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/projects/ideas ideas.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 01:45:08 -0000 trhodes 2008-02-29 01:45:08 UTC FreeBSD doc repository Modified files: en/projects/ideas ideas.xml Log: Fix build. Revision Changes Path 1.36 +4 -4 www/en/projects/ideas/ideas.xml From owner-cvs-all@FreeBSD.ORG Fri Feb 29 01:57:20 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C62F31065670; Fri, 29 Feb 2008 01:57:20 +0000 (UTC) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 974D38FC1A; Fri, 29 Feb 2008 01:57:20 +0000 (UTC) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T1vKEc031797; Fri, 29 Feb 2008 01:57:20 GMT (envelope-from grehan@repoman.freebsd.org) Received: (from grehan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T1vKWc031796; Fri, 29 Feb 2008 01:57:20 GMT (envelope-from grehan) Message-Id: <200802290157.m1T1vKWc031796@repoman.freebsd.org> From: Peter Grehan Date: Fri, 29 Feb 2008 01:57:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/gdb gdb_main.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 01:57:20 -0000 grehan 2008-02-29 01:57:20 UTC FreeBSD src repository Modified files: sys/gdb gdb_main.c Log: Add support for kgdb's 'detach' command. Reviewed by: marcel Sponsored by: Network Appliance Revision Changes Path 1.8 +5 -0 src/sys/gdb/gdb_main.c From owner-cvs-all@FreeBSD.ORG Fri Feb 29 02:04:34 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1D671106566C; Fri, 29 Feb 2008 02:04:34 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E30138FC1A; Fri, 29 Feb 2008 02:04:33 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T24XE4033314; Fri, 29 Feb 2008 02:04:33 GMT (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T24XRP033313; Fri, 29 Feb 2008 02:04:33 GMT (envelope-from sobomax) Message-Id: <200802290204.m1T24XRP033313@repoman.freebsd.org> From: Maxim Sobolev Date: Fri, 29 Feb 2008 02:04:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/asterisk-addons Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 02:04:34 -0000 sobomax 2008-02-29 02:04:33 UTC FreeBSD ports repository Modified files: net/asterisk-addons Makefile Log: Remove BROKEN on ${OSVERSION} >= 700000 it builds just fine with 6-months old 7-CURRENT as well as with recent 7-STABLE. Also, add powerpc into the list of supported platform, the package builds on that arch just fine. Revision Changes Path 1.8 +1 -5 ports/net/asterisk-addons/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 02:17:04 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 874831065670; Fri, 29 Feb 2008 02:17:04 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 598FD8FC25; Fri, 29 Feb 2008 02:17:04 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T2H4U4033735; Fri, 29 Feb 2008 02:17:04 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T2H4P3033734; Fri, 29 Feb 2008 02:17:04 GMT (envelope-from leeym) Message-Id: <200802290217.m1T2H4P3033734@repoman.freebsd.org> From: Yen-Ming Lee Date: Fri, 29 Feb 2008 02:17:03 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/p5-Mail-Procmail Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 02:17:04 -0000 leeym 2008-02-29 02:17:03 UTC FreeBSD ports repository Modified files: mail/p5-Mail-Procmail Makefile Log: - use CPAN macro - fix dependency - bump PORTREVISION Revision Changes Path 1.3 +5 -6 ports/mail/p5-Mail-Procmail/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 02:57:51 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A1775106566C; Fri, 29 Feb 2008 02:57:51 +0000 (UTC) (envelope-from lx@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 75D418FC1F; Fri, 29 Feb 2008 02:57:51 +0000 (UTC) (envelope-from lx@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T2vpSx035076; Fri, 29 Feb 2008 02:57:51 GMT (envelope-from lx@repoman.freebsd.org) Received: (from lx@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T2vpD6035075; Fri, 29 Feb 2008 02:57:51 GMT (envelope-from lx) Message-Id: <200802290257.m1T2vpD6035075@repoman.freebsd.org> From: David Thiel Date: Fri, 29 Feb 2008 02:57:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/comms/uird Makefile pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 02:57:51 -0000 lx 2008-02-29 02:57:50 UTC FreeBSD ports repository Modified files: comms/uird Makefile pkg-descr Log: Chase master site move, add a mirror. Pointedoutby: erwin Revision Changes Path 1.4 +2 -1 ports/comms/uird/Makefile 1.2 +1 -1 ports/comms/uird/pkg-descr From owner-cvs-all@FreeBSD.ORG Fri Feb 29 03:38:13 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 50E34106566B; Fri, 29 Feb 2008 03:38:13 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 40DDC8FC1E; Fri, 29 Feb 2008 03:38:13 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T3cDcu038096; Fri, 29 Feb 2008 03:38:13 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from yongari@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T3cDg7038095; Fri, 29 Feb 2008 03:38:13 GMT (envelope-from yongari) Message-Id: <200802290338.m1T3cDg7038095@repoman.freebsd.org> From: Pyun YongHyeon Date: Fri, 29 Feb 2008 03:38:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/msk if_msk.c if_mskreg.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 03:38:13 -0000 yongari 2008-02-29 03:38:12 UTC FreeBSD src repository Modified files: sys/dev/msk if_msk.c if_mskreg.h Log: Workaround GMAC hardware hang of Yukon II on the receipt of pause frames. This bug seems to happen on certain hardware model/revision (e.g. 88E8053) but it's not identified which hardwares are affected. Revision 1.4 of if_mskreg.h was not enough to workaround the bug. To workaround it, inrease GMAC FIFO threshold by one FIFO word to flush received pause frames. Reported by: das, Kirill Nuzhdin < kirill.nuzhdin AT rad dot chem dot msu dot ru > Tested by: das, Kirill Nuzhdin Revision Changes Path 1.29 +5 -2 src/sys/dev/msk/if_msk.c 1.12 +1 -0 src/sys/dev/msk/if_mskreg.h From owner-cvs-all@FreeBSD.ORG Fri Feb 29 04:07:08 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 629A8106566B; Fri, 29 Feb 2008 04:07:08 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3A7268FC33; Fri, 29 Feb 2008 04:07:08 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T478LP040326; Fri, 29 Feb 2008 04:07:08 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T4786S040325; Fri, 29 Feb 2008 04:07:08 GMT (envelope-from sam) Message-Id: <200802290407.m1T4786S040325@repoman.freebsd.org> From: Sam Leffler Date: Fri, 29 Feb 2008 04:07:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/net80211 ieee80211_scan_sta.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 04:07:08 -0000 sam 2008-02-29 04:07:08 UTC FreeBSD src repository Modified files: sys/net80211 ieee80211_scan_sta.c Log: Fix adhoc mode to scan all available channels for a bss to join while still restricting auto-channel select to only those channels permitted by regulatory constraints (sorta, we're still missing the checks to honor radar and noadhoc status on channels). This somehow got lost in the initial merge of the revised scanning code. Reviewed by: jhay MFC after: 2 weeks Revision Changes Path 1.9 +63 -42 src/sys/net80211/ieee80211_scan_sta.c From owner-cvs-all@FreeBSD.ORG Fri Feb 29 04:36:53 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8F7111065670; Fri, 29 Feb 2008 04:36:53 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 672258FC15; Fri, 29 Feb 2008 04:36:53 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T4ar7T041274; Fri, 29 Feb 2008 04:36:53 GMT (envelope-from lwhsu@repoman.freebsd.org) Received: (from lwhsu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T4arvm041273; Fri, 29 Feb 2008 04:36:53 GMT (envelope-from lwhsu) Message-Id: <200802290436.m1T4arvm041273@repoman.freebsd.org> From: Li-Wen Hsu Date: Fri, 29 Feb 2008 04:36:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/py-pydasm Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 04:36:53 -0000 lwhsu 2008-02-29 04:36:53 UTC FreeBSD ports repository Modified files: devel/py-pydasm Makefile distinfo pkg-plist Log: - Update to 1.5 - Change maintainer's email to his FreeBSD.org one - Use NOPORTEXAMPLES PR: ports/121186 Submitted by: antoine Revision Changes Path 1.3 +3 -10 ports/devel/py-pydasm/Makefile 1.2 +3 -3 ports/devel/py-pydasm/distinfo 1.2 +2 -2 ports/devel/py-pydasm/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Feb 29 04:56:52 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0FDC9106566C; Fri, 29 Feb 2008 04:56:52 +0000 (UTC) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DC4138FC13; Fri, 29 Feb 2008 04:56:51 +0000 (UTC) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T4upJZ050840; Fri, 29 Feb 2008 04:56:51 GMT (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T4upBJ050839; Fri, 29 Feb 2008 04:56:51 GMT (envelope-from nyan) Message-Id: <200802290456.m1T4upBJ050839@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Fri, 29 Feb 2008 04:56:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/boot/pc98/libpc98 biosdisk.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 04:56:52 -0000 nyan 2008-02-29 04:56:51 UTC FreeBSD src repository Modified files: sys/boot/pc98/libpc98 biosdisk.c Log: MFi386: revision 1.55. Tweak the verbose disk printing a bit. Revision Changes Path 1.39 +27 -4 src/sys/boot/pc98/libpc98/biosdisk.c From owner-cvs-all@FreeBSD.ORG Fri Feb 29 05:01:11 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A51A106566C; Fri, 29 Feb 2008 05:01:11 +0000 (UTC) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 532698FC18; Fri, 29 Feb 2008 05:01:11 +0000 (UTC) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T51BtQ051017; Fri, 29 Feb 2008 05:01:11 GMT (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T51B37051016; Fri, 29 Feb 2008 05:01:11 GMT (envelope-from nyan) Message-Id: <200802290501.m1T51B37051016@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Fri, 29 Feb 2008 05:01:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/pc98/pc98 machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 05:01:11 -0000 nyan 2008-02-29 05:01:11 UTC FreeBSD src repository Modified files: sys/pc98/pc98 machdep.c Log: MFi386: revision 1.658 Add "show sysregs" command to ddb. On i386, this gives gdt, idt, ldt, cr0-4, etc. Support should be added for other platforms that have a different set of registers for system use. Revision Changes Path 1.400 +19 -0 src/sys/pc98/pc98/machdep.c From owner-cvs-all@FreeBSD.ORG Fri Feb 29 05:06:07 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5348C106566C; Fri, 29 Feb 2008 05:06:07 +0000 (UTC) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2BA208FC1F; Fri, 29 Feb 2008 05:06:07 +0000 (UTC) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T566gv052335; Fri, 29 Feb 2008 05:06:06 GMT (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T566Mn052334; Fri, 29 Feb 2008 05:06:06 GMT (envelope-from nyan) Message-Id: <200802290506.m1T566Mn052334@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Fri, 29 Feb 2008 05:06:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/boot/pc98/libpc98 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 05:06:07 -0000 nyan 2008-02-29 05:06:06 UTC FreeBSD src repository Modified files: sys/boot/pc98/libpc98 Makefile Log: MFi386: revision 1.43 Do not attempt to make an NFS rpc call if using tftp Revision Changes Path 1.25 +7 -0 src/sys/boot/pc98/libpc98/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 05:09:16 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6E6B6106566C; Fri, 29 Feb 2008 05:09:16 +0000 (UTC) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 47CE38FC17; Fri, 29 Feb 2008 05:09:16 +0000 (UTC) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T59GRp052449; Fri, 29 Feb 2008 05:09:16 GMT (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T59GFT052448; Fri, 29 Feb 2008 05:09:16 GMT (envelope-from nyan) Message-Id: <200802290509.m1T59GFT052448@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Fri, 29 Feb 2008 05:09:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/pc98/cbus sio.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 05:09:16 -0000 nyan 2008-02-29 05:09:16 UTC FreeBSD src repository Modified files: sys/pc98/cbus sio.c Log: Merged from sys/dev/sio/sio.c revision 1.472 Stop serial console and gdb serial port from getting all screwed up. Revision Changes Path 1.248 +1 -1 src/sys/pc98/cbus/sio.c From owner-cvs-all@FreeBSD.ORG Fri Feb 29 05:52:33 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DB1C0106566B; Fri, 29 Feb 2008 05:52:33 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B3A828FC16; Fri, 29 Feb 2008 05:52:33 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T5qXCh053899; Fri, 29 Feb 2008 05:52:33 GMT (envelope-from beech@repoman.freebsd.org) Received: (from beech@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T5qXlp053898; Fri, 29 Feb 2008 05:52:33 GMT (envelope-from beech) Message-Id: <200802290552.m1T5qXlp053898@repoman.freebsd.org> From: Beech Rintoul Date: Fri, 29 Feb 2008 05:52:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/phpmailer Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 05:52:34 -0000 beech 2008-02-29 05:52:33 UTC FreeBSD ports repository Modified files: mail/phpmailer Makefile distinfo pkg-plist Log: - Update to 2.0.0 PR: ports/120744 Submitted by: Joe Horn (maintainer) Revision Changes Path 1.2 +5 -6 ports/mail/phpmailer/Makefile 1.2 +3 -3 ports/mail/phpmailer/distinfo 1.2 +4 -1 ports/mail/phpmailer/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Feb 29 05:55:12 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A596A106566C; Fri, 29 Feb 2008 05:55:12 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 95EA48FC13; Fri, 29 Feb 2008 05:55:12 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T5tC7T054065; Fri, 29 Feb 2008 05:55:12 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T5tCKa054064; Fri, 29 Feb 2008 05:55:12 GMT (envelope-from rafan) Message-Id: <200802290555.m1T5tCKa054064@repoman.freebsd.org> From: Rong-En Fan Date: Fri, 29 Feb 2008 05:55:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/print/ghostscript-gpl Makefile Makefile.inc distinfo pkg-plist ports/print/ghostscript-gpl/files patch-epag__gdevepag.c patch-src-gdevvglb.c patch-src:unix-gcc.mak patch-src__gdevperm.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 05:55:12 -0000 rafan 2008-02-29 05:55:12 UTC FreeBSD ports repository Modified files: print/ghostscript-gpl Makefile Makefile.inc distinfo pkg-plist print/ghostscript-gpl/files patch-epag__gdevepag.c patch-src-gdevvglb.c patch-src:unix-gcc.mak patch-src__gdevperm.c Log: - Update to 8.61 PR: ports/118608 Submitted by: KATO Tsuguru Revision Changes Path 1.154 +14 -16 ports/print/ghostscript-gpl/Makefile 1.24 +2 -2 ports/print/ghostscript-gpl/Makefile.inc 1.64 +3 -3 ports/print/ghostscript-gpl/distinfo 1.3 +186 -4 ports/print/ghostscript-gpl/files/patch-epag__gdevepag.c 1.2 +4 -4 ports/print/ghostscript-gpl/files/patch-src-gdevvglb.c 1.14 +18 -26 ports/print/ghostscript-gpl/files/patch-src:unix-gcc.mak 1.2 +4 -4 ports/print/ghostscript-gpl/files/patch-src__gdevperm.c 1.44 +10 -1 ports/print/ghostscript-gpl/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Feb 29 06:19:47 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C00CF1065671; Fri, 29 Feb 2008 06:19:47 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 96B858FC13; Fri, 29 Feb 2008 06:19:47 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T6JlTa056001; Fri, 29 Feb 2008 06:19:47 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T6JkWt056000; Fri, 29 Feb 2008 06:19:46 GMT (envelope-from brueffer) Message-Id: <200802290619.m1T6JkWt056000@repoman.freebsd.org> From: Christian Brueffer Date: Fri, 29 Feb 2008 06:19:46 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/share/sgml press.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 06:19:47 -0000 brueffer 2008-02-29 06:19:46 UTC FreeBSD doc repository Modified files: share/sgml press.xml Log: New article: What's New in FreeBSD 7.0 Submitted by: James Turner , Matthew West Revision Changes Path 1.58 +16 -1 www/share/sgml/press.xml From owner-cvs-all@FreeBSD.ORG Fri Feb 29 07:13:19 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7E844106566C; Fri, 29 Feb 2008 07:13:19 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 511EA8FC13; Fri, 29 Feb 2008 07:13:19 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T7DJH2058927; Fri, 29 Feb 2008 07:13:19 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T7DJBJ058926; Fri, 29 Feb 2008 07:13:19 GMT (envelope-from maho) Message-Id: <200802290713.m1T7DJBJ058926@repoman.freebsd.org> From: Maho Nakata Date: Fri, 29 Feb 2008 07:13:19 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/math/sdpa distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 07:13:19 -0000 maho 2008-02-29 07:13:19 UTC FreeBSD ports repository Modified files: math/sdpa distinfo Log: Fix distinfo for the manual. According to the master site, > http://sdpa.indsys.chuo-u.ac.jp/sdpa/ > 2008.2.28 > The software manual of the SDPA (Ver. 7.0.5) is revised. [Download]. Also this is a correct one. (BTW: I'm one of the author of this manual) Revision Changes Path 1.10 +3 -3 ports/math/sdpa/distinfo From owner-cvs-all@FreeBSD.ORG Fri Feb 29 07:49:20 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EDE061065684; Fri, 29 Feb 2008 07:49:20 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C0E838FC20; Fri, 29 Feb 2008 07:49:20 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T7nKNu060417; Fri, 29 Feb 2008 07:49:20 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T7nKQD060416; Fri, 29 Feb 2008 07:49:20 GMT (envelope-from leeym) Message-Id: <200802290749.m1T7nKQD060416@repoman.freebsd.org> From: Yen-Ming Lee Date: Fri, 29 Feb 2008 07:49:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/p5-HTML-Parser Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 07:49:21 -0000 leeym 2008-02-29 07:49:20 UTC FreeBSD ports repository Modified files: www/p5-HTML-Parser Makefile Log: - use CPAN macro - simplify dependency - bump PORTREVISION Revision Changes Path 1.62 +4 -6 ports/www/p5-HTML-Parser/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 07:56:18 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4FB64106566B; Fri, 29 Feb 2008 07:56:18 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 234488FC15; Fri, 29 Feb 2008 07:56:18 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T7uIsG060699; Fri, 29 Feb 2008 07:56:18 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T7uH0B060698; Fri, 29 Feb 2008 07:56:17 GMT (envelope-from erwin) Message-Id: <200802290756.m1T7uH0B060698@repoman.freebsd.org> From: Erwin Lansing Date: Fri, 29 Feb 2008 07:56:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/sccmilter Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 07:56:18 -0000 erwin 2008-02-29 07:56:17 UTC FreeBSD ports repository Modified files: mail/sccmilter Makefile Log: Fix MASTER_SITES Submitted by: "Rashid N. Achilov" (maintainer), pointyhat Revision Changes Path 1.14 +2 -1 ports/mail/sccmilter/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 08:00:14 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 65A5D1065676; Fri, 29 Feb 2008 08:00:14 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 390C68FC28; Fri, 29 Feb 2008 08:00:14 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T80EZ5060889; Fri, 29 Feb 2008 08:00:14 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T80EZh060888; Fri, 29 Feb 2008 08:00:14 GMT (envelope-from sat) Message-Id: <200802290800.m1T80EZh060888@repoman.freebsd.org> From: Andrew Pantyukhin Date: Fri, 29 Feb 2008 08:00:14 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-mgmt/nipper Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 08:00:14 -0000 sat 2008-02-29 08:00:14 UTC FreeBSD ports repository Modified files: net-mgmt/nipper Makefile distinfo Log: - Update to 0.11.5 Revision Changes Path 1.17 +1 -1 ports/net-mgmt/nipper/Makefile 1.17 +3 -3 ports/net-mgmt/nipper/distinfo From owner-cvs-all@FreeBSD.ORG Fri Feb 29 08:03:17 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CD05B106566C; Fri, 29 Feb 2008 08:03:17 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A09BA8FC26; Fri, 29 Feb 2008 08:03:17 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T83H2l062162; Fri, 29 Feb 2008 08:03:17 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T83HWE062161; Fri, 29 Feb 2008 08:03:17 GMT (envelope-from sat) Message-Id: <200802290803.m1T83HWE062161@repoman.freebsd.org> From: Andrew Pantyukhin Date: Fri, 29 Feb 2008 08:03:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/namefix Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 08:03:18 -0000 sat 2008-02-29 08:03:17 UTC FreeBSD ports repository Modified files: sysutils/namefix Makefile distinfo Log: - Update to 4.0 RC10 Revision Changes Path 1.10 +4 -3 ports/sysutils/namefix/Makefile 1.8 +3 -3 ports/sysutils/namefix/distinfo From owner-cvs-all@FreeBSD.ORG Fri Feb 29 08:14:24 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 86E1F106566B; Fri, 29 Feb 2008 08:14:24 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2790A8FC25; Fri, 29 Feb 2008 08:14:24 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T8EOej062524; Fri, 29 Feb 2008 08:14:24 GMT (envelope-from bsam@repoman.freebsd.org) Received: (from bsam@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T8ENt4062523; Fri, 29 Feb 2008 08:14:23 GMT (envelope-from bsam) Message-Id: <200802290814.m1T8ENt4062523@repoman.freebsd.org> From: Boris Samorodov Date: Fri, 29 Feb 2008 08:14:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/web2ldap Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 08:14:24 -0000 bsam 2008-02-29 08:14:23 UTC FreeBSD ports repository Modified files: www/web2ldap Makefile distinfo Log: Update to 0.16.23, changelog: http://www.web2ldap.de/changes-0.16.html#0.16.23 Revision Changes Path 1.41 +1 -1 ports/www/web2ldap/Makefile 1.31 +3 -3 ports/www/web2ldap/distinfo From owner-cvs-all@FreeBSD.ORG Fri Feb 29 08:18:15 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 88A74106566B; Fri, 29 Feb 2008 08:18:15 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5C76C8FC1A; Fri, 29 Feb 2008 08:18:15 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T8IF2A062661; Fri, 29 Feb 2008 08:18:15 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T8IFni062660; Fri, 29 Feb 2008 08:18:15 GMT (envelope-from marcus) Message-Id: <200802290818.m1T8IFni062660@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 29 Feb 2008 08:18:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11/gnome2 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 08:18:15 -0000 marcus 2008-02-29 08:18:15 UTC FreeBSD ports repository Modified files: x11/gnome2 Makefile Log: GNOME is now at 2.20.3. This is a belated commit since this could have been consider a sweeping change. Revision Changes Path 1.143 +1 -1 ports/x11/gnome2/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 09:12:55 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3E162106566C; Fri, 29 Feb 2008 09:12:55 +0000 (UTC) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 13B1C8FC2B; Fri, 29 Feb 2008 09:12:55 +0000 (UTC) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T9CsT6074385; Fri, 29 Feb 2008 09:12:54 GMT (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T9CsDJ074384; Fri, 29 Feb 2008 09:12:54 GMT (envelope-from wilko) Message-Id: <200802290912.m1T9CsDJ074384@repoman.freebsd.org> From: Wilko Bulte Date: Fri, 29 Feb 2008 09:12:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT access X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 09:12:55 -0000 wilko 2008-02-29 09:12:54 UTC FreeBSD src repository Modified files: . access Log: Changes to email forwards can be made without core's approval. Please use "Approved by: core (implicit)" to that type of commits. Approved by: core (implicit) Revision Changes Path 1.860 +3 -0 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Fri Feb 29 09:32:22 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B31371065676; Fri, 29 Feb 2008 09:32:22 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 88BBA8FC19; Fri, 29 Feb 2008 09:32:22 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T9WMrE074978; Fri, 29 Feb 2008 09:32:22 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T9WMSv074977; Fri, 29 Feb 2008 09:32:22 GMT (envelope-from leeym) Message-Id: <200802290932.m1T9WMSv074977@repoman.freebsd.org> From: Yen-Ming Lee Date: Fri, 29 Feb 2008 09:32:22 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-mgmt/p5-Telnet-Cisco Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 09:32:22 -0000 leeym 2008-02-29 09:32:22 UTC FreeBSD ports repository Modified files: net-mgmt/p5-Telnet-Cisco Makefile Log: - use CPAN macro - fix dependency - bump PORTREVISION PR: 121208 Submitted by: leeym Approved by: maintainer Revision Changes Path 1.7 +4 -6 ports/net-mgmt/p5-Telnet-Cisco/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 09:32:39 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9D89B1065670; Fri, 29 Feb 2008 09:32:39 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7331E8FC1C; Fri, 29 Feb 2008 09:32:39 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T9WdGm075007; Fri, 29 Feb 2008 09:32:39 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T9Wd9n075006; Fri, 29 Feb 2008 09:32:39 GMT (envelope-from arved) Message-Id: <200802290932.m1T9Wd9n075006@repoman.freebsd.org> From: Tilman Linneweh Date: Fri, 29 Feb 2008 09:32:39 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/libgcrypt Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 09:32:39 -0000 arved 2008-02-29 09:32:39 UTC FreeBSD ports repository Modified files: security/libgcrypt Makefile Log: Disable padlock-support on 6.x PR: 121207 Submitted by: ale, Mark Andrews Revision Changes Path 1.38 +3 -0 ports/security/libgcrypt/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 09:34:54 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5CCF11065670; Fri, 29 Feb 2008 09:34:54 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 32E868FC16; Fri, 29 Feb 2008 09:34:54 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T9YsOj075124; Fri, 29 Feb 2008 09:34:54 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T9Ys5I075123; Fri, 29 Feb 2008 09:34:54 GMT (envelope-from ehaupt) Message-Id: <200802290934.m1T9Ys5I075123@repoman.freebsd.org> From: Emanuel Haupt Date: Fri, 29 Feb 2008 09:34:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/cmospwd Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 09:34:54 -0000 ehaupt 2008-02-29 09:34:54 UTC FreeBSD ports repository Modified files: sysutils/cmospwd Makefile distinfo Log: Update to 5.1 Revision Changes Path 1.11 +1 -1 ports/sysutils/cmospwd/Makefile 1.6 +3 -3 ports/sysutils/cmospwd/distinfo From owner-cvs-all@FreeBSD.ORG Fri Feb 29 09:41:03 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 98457106566B; Fri, 29 Feb 2008 09:41:03 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6D3D68FC18; Fri, 29 Feb 2008 09:41:03 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1T9f3cN075377; Fri, 29 Feb 2008 09:41:03 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1T9f3sa075376; Fri, 29 Feb 2008 09:41:03 GMT (envelope-from leeym) Message-Id: <200802290941.m1T9f3sa075376@repoman.freebsd.org> From: Yen-Ming Lee Date: Fri, 29 Feb 2008 09:41:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-Log-Dispatch-Config Makefile ports/devel/p5-Log-Dispatch-Config/files patch-Makefile.PL X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 09:41:03 -0000 leeym 2008-02-29 09:41:02 UTC FreeBSD ports repository Modified files: devel/p5-Log-Dispatch-Config Makefile Removed files: devel/p5-Log-Dispatch-Config/files patch-Makefile.PL Log: - use CPAN macro - simplify dependency - remove patch for old perl - bump PORTREVISION Submitted by: leeym Approved by: clsung Revision Changes Path 1.9 +6 -16 ports/devel/p5-Log-Dispatch-Config/Makefile 1.2 +0 -12 ports/devel/p5-Log-Dispatch-Config/files/patch-Makefile.PL (dead) From owner-cvs-all@FreeBSD.ORG Fri Feb 29 10:26:33 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C759106566C; Fri, 29 Feb 2008 10:26:33 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 338698FC13; Fri, 29 Feb 2008 10:26:33 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TAQX8S077984; Fri, 29 Feb 2008 10:26:33 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TAQWaq077983; Fri, 29 Feb 2008 10:26:32 GMT (envelope-from erwin) Message-Id: <200802291026.m1TAQWaq077983@repoman.freebsd.org> From: Erwin Lansing Date: Fri, 29 Feb 2008 10:26:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11-wm/fluxspace Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 10:26:33 -0000 erwin 2008-02-29 10:26:31 UTC FreeBSD ports repository Modified files: x11-wm/fluxspace Makefile Log: Mark BROKEN: checksum mismatch Revision Changes Path 1.12 +2 -0 ports/x11-wm/fluxspace/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 11:17:57 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F05721065670; Fri, 29 Feb 2008 11:17:57 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E027A8FC18; Fri, 29 Feb 2008 11:17:57 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TBHvV7080776; Fri, 29 Feb 2008 11:17:57 GMT (envelope-from mm@repoman.freebsd.org) Received: (from mm@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TBHvRh080775; Fri, 29 Feb 2008 11:17:57 GMT (envelope-from mm) Message-Id: <200802291117.m1TBHvRh080775@repoman.freebsd.org> From: Martin Matuska Date: Fri, 29 Feb 2008 11:17:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/tdom Makefile distinfo pkg-plist ports/www/tdom/files patch-Makefile.in patch-configure patch-expat-xmlparse.h patch-generic-dom.h patch-generic-tclexpat.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 11:17:58 -0000 mm 2008-02-29 11:17:57 UTC FreeBSD ports repository Modified files: www/tdom Makefile distinfo pkg-plist Added files: www/tdom/files patch-Makefile.in patch-configure patch-expat-xmlparse.h patch-generic-dom.h patch-generic-tclexpat.c Log: - Update to 0.8.2 Suggested by: mi Patches by: mi Revision Changes Path 1.7 +8 -2 ports/www/tdom/Makefile 1.3 +3 -3 ports/www/tdom/distinfo 1.1 +9 -0 ports/www/tdom/files/patch-Makefile.in (new) 1.1 +36 -0 ports/www/tdom/files/patch-configure (new) 1.1 +16 -0 ports/www/tdom/files/patch-expat-xmlparse.h (new) 1.1 +8 -0 ports/www/tdom/files/patch-generic-dom.h (new) 1.1 +9 -0 ports/www/tdom/files/patch-generic-tclexpat.c (new) 1.3 +1 -0 ports/www/tdom/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Feb 29 11:55:24 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C29A11065674; Fri, 29 Feb 2008 11:55:24 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9AC828FC31; Fri, 29 Feb 2008 11:55:24 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TBtO3b081926; Fri, 29 Feb 2008 11:55:24 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TBtOFh081925; Fri, 29 Feb 2008 11:55:24 GMT (envelope-from ehaupt) Message-Id: <200802291155.m1TBtOFh081925@repoman.freebsd.org> From: Emanuel Haupt Date: Fri, 29 Feb 2008 11:55:24 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio/audacious-dumb Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 11:55:25 -0000 ehaupt 2008-02-29 11:55:24 UTC FreeBSD ports repository Modified files: audio/audacious-dumb Makefile distinfo Log: Update to 0.57 Revision Changes Path 1.5 +1 -1 ports/audio/audacious-dumb/Makefile 1.3 +3 -3 ports/audio/audacious-dumb/distinfo From owner-cvs-all@FreeBSD.ORG Fri Feb 29 12:03:25 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3AA411065671; Fri, 29 Feb 2008 12:03:25 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1309E8FC2A; Fri, 29 Feb 2008 12:03:25 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TC3OoQ083359; Fri, 29 Feb 2008 12:03:24 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TC3ODm083358; Fri, 29 Feb 2008 12:03:24 GMT (envelope-from ehaupt) Message-Id: <200802291203.m1TC3ODm083358@repoman.freebsd.org> From: Emanuel Haupt Date: Fri, 29 Feb 2008 12:03:24 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/fractorama Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 12:03:25 -0000 ehaupt 2008-02-29 12:03:24 UTC FreeBSD ports repository Modified files: graphics/fractorama Makefile distinfo Log: Make it fetchable again. Notified by: erwin Revision Changes Path 1.20 +2 -2 ports/graphics/fractorama/Makefile 1.8 +3 -3 ports/graphics/fractorama/distinfo From owner-cvs-all@FreeBSD.ORG Fri Feb 29 12:44:31 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CCD531065673; Fri, 29 Feb 2008 12:44:31 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9D5568FC26; Fri, 29 Feb 2008 12:44:31 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TCiV8u025432; Fri, 29 Feb 2008 12:44:31 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TCiVah025431; Fri, 29 Feb 2008 12:44:31 GMT (envelope-from blackend) Message-Id: <200802291244.m1TCiVah025431@repoman.freebsd.org> From: Marc Fonvieille Date: Fri, 29 Feb 2008 12:44:30 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/install chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 12:44:32 -0000 blackend 2008-02-29 12:44:30 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/install chapter.sgml Log: - Update a bit the Partition Layout example to match 7.X requirements; - Inform the reader that the default sizes provided by the Auto Default mode are based on the size of the disk (present in the machine). (2 related screenshots will be updated in few hours) Requested by: many Revision Changes Path 1.386 +7 -7 doc/en_US.ISO8859-1/books/handbook/install/chapter.sgml From owner-cvs-all@FreeBSD.ORG Fri Feb 29 12:48:05 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 855CD1065670; Fri, 29 Feb 2008 12:48:04 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 54F378FC1E; Fri, 29 Feb 2008 12:48:04 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TCm4P2035602; Fri, 29 Feb 2008 12:48:04 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TCm4bx035601; Fri, 29 Feb 2008 12:48:04 GMT (envelope-from erwin) Message-Id: <200802291248.m1TCm4bx035601@repoman.freebsd.org> From: Erwin Lansing Date: Fri, 29 Feb 2008 12:48:04 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/enjoympeg Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 12:48:06 -0000 erwin 2008-02-29 12:48:04 UTC FreeBSD ports repository Modified files: multimedia/enjoympeg Makefile Log: Update MASTER_SITES Submitted by: Marcin Cieslak , pointyhat Revision Changes Path 1.12 +1 -1 ports/multimedia/enjoympeg/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 12:57:14 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B7E00106566C; Fri, 29 Feb 2008 12:57:14 +0000 (UTC) (envelope-from fanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8D7758FC16; Fri, 29 Feb 2008 12:57:14 +0000 (UTC) (envelope-from fanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TCvEvt044239; Fri, 29 Feb 2008 12:57:14 GMT (envelope-from fanf@repoman.freebsd.org) Received: (from fanf@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TCvEnr044238; Fri, 29 Feb 2008 12:57:14 GMT (envelope-from fanf) Message-Id: <200802291257.m1TCvEnr044238@repoman.freebsd.org> From: Tony Finch Date: Fri, 29 Feb 2008 12:57:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/unifdef unifdef.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 12:57:14 -0000 fanf 2008-02-29 12:57:14 UTC FreeBSD src repository Modified files: usr.bin/unifdef unifdef.c Log: Allow #if defined SYM as well as #if defined(SYM). Fix an abort caused by files that have #endif and no newline on the last line (reported by joe@). Also fix a benign uninitialized variable bug. Update and tidy the copyright. Revision Changes Path 1.21 +31 -18 src/usr.bin/unifdef/unifdef.c From owner-cvs-all@FreeBSD.ORG Fri Feb 29 13:18:12 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BD1F01065677; Fri, 29 Feb 2008 13:18:12 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 919818FC25; Fri, 29 Feb 2008 13:18:12 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TDIC6K054590; Fri, 29 Feb 2008 13:18:12 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TDICAl054589; Fri, 29 Feb 2008 13:18:12 GMT (envelope-from ahze) Message-Id: <200802291318.m1TDICAl054589@repoman.freebsd.org> From: Michael Johnson Date: Fri, 29 Feb 2008 13:18:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/transcode Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 13:18:13 -0000 ahze 2008-02-29 13:18:12 UTC FreeBSD ports repository Modified files: multimedia/transcode Makefile Log: - Add an additional master site from the Transcoding website - Allow WITH_* knobs to be disabled by users using WITHOUT_* PR: ports/121178 Submitted by: Naram Qashat Revision Changes Path 1.100 +11 -10 ports/multimedia/transcode/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 13:19:51 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5B63C106566B; Fri, 29 Feb 2008 13:19:51 +0000 (UTC) (envelope-from fanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 30B268FC14; Fri, 29 Feb 2008 13:19:51 +0000 (UTC) (envelope-from fanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TDJpQi054661; Fri, 29 Feb 2008 13:19:51 GMT (envelope-from fanf@repoman.freebsd.org) Received: (from fanf@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TDJpnu054660; Fri, 29 Feb 2008 13:19:51 GMT (envelope-from fanf) Message-Id: <200802291319.m1TDJpnu054660@repoman.freebsd.org> From: Tony Finch Date: Fri, 29 Feb 2008 13:19:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/unifdef unifdef.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 13:19:51 -0000 fanf 2008-02-29 13:19:51 UTC FreeBSD src repository Modified files: usr.bin/unifdef unifdef.c Log: A fix for other ways of triggering joe@'s bug. Revision Changes Path 1.22 +12 -9 src/usr.bin/unifdef/unifdef.c From owner-cvs-all@FreeBSD.ORG Fri Feb 29 13:34:38 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0A00C106566C; Fri, 29 Feb 2008 13:34:38 +0000 (UTC) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D39F58FC13; Fri, 29 Feb 2008 13:34:37 +0000 (UTC) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TDYbgF055149; Fri, 29 Feb 2008 13:34:37 GMT (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TDYbSN055148; Fri, 29 Feb 2008 13:34:37 GMT (envelope-from perky) Message-Id: <200802291334.m1TDYbSN055148@repoman.freebsd.org> From: Hye-Shik Chang Date: Fri, 29 Feb 2008 13:34:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/py-kqueue Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 13:34:38 -0000 perky 2008-02-29 13:34:36 UTC FreeBSD ports repository Modified files: devel/py-kqueue Makefile Log: Fix build for Python 2.5.2 Revision Changes Path 1.20 +2 -0 ports/devel/py-kqueue/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 13:36:36 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5CCA0106566B; Fri, 29 Feb 2008 13:36:36 +0000 (UTC) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 325148FC29; Fri, 29 Feb 2008 13:36:36 +0000 (UTC) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TDaaJ4055277; Fri, 29 Feb 2008 13:36:36 GMT (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TDaaEm055276; Fri, 29 Feb 2008 13:36:36 GMT (envelope-from perky) Message-Id: <200802291336.m1TDaaEm055276@repoman.freebsd.org> From: Hye-Shik Chang Date: Fri, 29 Feb 2008 13:36:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/misc/pybliographer Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 13:36:36 -0000 perky 2008-02-29 13:36:36 UTC FreeBSD ports repository Modified files: misc/pybliographer Makefile Log: Fix build with Python 2.5.2. Revision Changes Path 1.32 +4 -0 ports/misc/pybliographer/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 14:04:45 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0B2391065671; Fri, 29 Feb 2008 14:04:45 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D4A268FC1A; Fri, 29 Feb 2008 14:04:44 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TE4iYD059465; Fri, 29 Feb 2008 14:04:44 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TE4iCm059464; Fri, 29 Feb 2008 14:04:44 GMT (envelope-from ahze) Message-Id: <200802291404.m1TE4iCm059464@repoman.freebsd.org> From: Michael Johnson Date: Fri, 29 Feb 2008 14:04:44 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/libtheora Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 14:04:45 -0000 ahze 2008-02-29 14:04:44 UTC FreeBSD ports repository Modified files: multimedia/libtheora Makefile distinfo pkg-plist Log: Update to 1.0beta2 PR: ports/121125 Submitted by: Marcin Cieslak Revision Changes Path 1.21 +1 -1 ports/multimedia/libtheora/Makefile 1.9 +3 -3 ports/multimedia/libtheora/distinfo 1.7 +0 -2 ports/multimedia/libtheora/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Feb 29 14:05:32 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 37D1E1065671; Fri, 29 Feb 2008 14:05:32 +0000 (UTC) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0D7668FC18; Fri, 29 Feb 2008 14:05:32 +0000 (UTC) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TE5VBp059572; Fri, 29 Feb 2008 14:05:31 GMT (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TE5Vgj059571; Fri, 29 Feb 2008 14:05:31 GMT (envelope-from perky) Message-Id: <200802291405.m1TE5Vgj059571@repoman.freebsd.org> From: Hye-Shik Chang Date: Fri, 29 Feb 2008 14:05:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/python25/files patch-setup.py X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 14:05:32 -0000 perky 2008-02-29 14:05:31 UTC FreeBSD ports repository Modified files: lang/python25/files patch-setup.py Log: Force to build bsddb185 module to make pkg-plist consistent. Reported by: ports/121191 Revision Changes Path 1.17 +18 -9 ports/lang/python25/files/patch-setup.py From owner-cvs-all@FreeBSD.ORG Fri Feb 29 14:45:01 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 52F3F1065672; Fri, 29 Feb 2008 14:45:01 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2864F8FC21; Fri, 29 Feb 2008 14:45:01 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TEj0Kj060848; Fri, 29 Feb 2008 14:45:00 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TEj0fi060833; Fri, 29 Feb 2008 14:45:00 GMT (envelope-from ahze) Message-Id: <200802291445.m1TEj0fi060833@repoman.freebsd.org> From: Michael Johnson Date: Fri, 29 Feb 2008 14:45:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/libquicktime Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 14:45:01 -0000 ahze 2008-02-29 14:45:00 UTC FreeBSD ports repository Modified files: multimedia/libquicktime Makefile distinfo pkg-plist Log: Update to 1.0.2 PR: ports/120522 Submitted by: Naram Qashat Revision Changes Path 1.56 +99 -16 ports/multimedia/libquicktime/Makefile 1.15 +3 -3 ports/multimedia/libquicktime/distinfo 1.19 +15 -13 ports/multimedia/libquicktime/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Feb 29 14:58:09 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6BA03106566C; Fri, 29 Feb 2008 14:58:09 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 410708FC18; Fri, 29 Feb 2008 14:58:09 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TEw9Xm061238; Fri, 29 Feb 2008 14:58:09 GMT (envelope-from kib@repoman.freebsd.org) Received: (from kib@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TEw9aB061237; Fri, 29 Feb 2008 14:58:09 GMT (envelope-from kib) Message-Id: <200802291458.m1TEw9aB061237@repoman.freebsd.org> From: Konstantin Belousov Date: Fri, 29 Feb 2008 14:58:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sys/compat/linux linux_misc.c linux_misc.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 14:58:09 -0000 kib 2008-02-29 14:58:08 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/compat/linux linux_misc.c linux_misc.h Log: MFC rev. 1.3 of linux_misc.h, rev. 1.217 of linux_misc.c: Sanitize arguments to linux_mremap(). Check that only MREMAP_FIXED and MREMAP_MAYMOVE flags are specified. Check for the page alignment of the addr argument. Revision Changes Path 1.214.2.1 +15 -0 src/sys/compat/linux/linux_misc.c 1.2.2.1 +3 -0 src/sys/compat/linux/linux_misc.h From owner-cvs-all@FreeBSD.ORG Fri Feb 29 15:00:13 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5BB17106566C; Fri, 29 Feb 2008 15:00:13 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3159F8FC15; Fri, 29 Feb 2008 15:00:13 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TF0DQn061351; Fri, 29 Feb 2008 15:00:13 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TF0Dj1061350; Fri, 29 Feb 2008 15:00:13 GMT (envelope-from leeym) Message-Id: <200802291500.m1TF0Dj1061350@repoman.freebsd.org> From: Yen-Ming Lee Date: Fri, 29 Feb 2008 15:00:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio/p5-MP3-Find Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 15:00:13 -0000 leeym 2008-02-29 15:00:12 UTC FreeBSD ports repository Modified files: audio/p5-MP3-Find Makefile pkg-plist Log: - use CPAN macro - simplify dependency - bump PORTREVISION PR: 121214 Submitted by: leeym Approved by: maintainer Revision Changes Path 1.2 +10 -8 ports/audio/p5-MP3-Find/Makefile 1.2 +0 -1 ports/audio/p5-MP3-Find/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Feb 29 15:01:24 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 30C7C106566C; Fri, 29 Feb 2008 15:01:24 +0000 (UTC) (envelope-from dryice@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C65708FC1E; Fri, 29 Feb 2008 15:01:23 +0000 (UTC) (envelope-from dryice@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TF1NNe061420; Fri, 29 Feb 2008 15:01:23 GMT (envelope-from dryice@repoman.freebsd.org) Received: (from dryice@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TF1NXI061419; Fri, 29 Feb 2008 15:01:23 GMT (envelope-from dryice) Message-Id: <200802291501.m1TF1NXI061419@repoman.freebsd.org> From: Dryice Dong Liu Date: Fri, 29 Feb 2008 15:01:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/py-simplejson Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 15:01:24 -0000 dryice 2008-02-29 15:01:23 UTC FreeBSD ports repository Modified files: devel/py-simplejson Makefile Log: fix MASTER_SITES, notified by pointyhat Revision Changes Path 1.14 +2 -1 ports/devel/py-simplejson/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 15:10:00 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A576A1065673; Fri, 29 Feb 2008 15:10:00 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7AF8A8FC15; Fri, 29 Feb 2008 15:10:00 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TFA0vi062834; Fri, 29 Feb 2008 15:10:00 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TF9olg062833; Fri, 29 Feb 2008 15:09:50 GMT (envelope-from leeym) Message-Id: <200802291509.m1TF9olg062833@repoman.freebsd.org> From: Yen-Ming Lee Date: Fri, 29 Feb 2008 15:09:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-Config-Setting Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 15:10:00 -0000 leeym 2008-02-29 15:09:50 UTC FreeBSD ports repository Modified files: devel/p5-Config-Setting Makefile Log: - use CPAN macro - simplify dependency - bump PORTREVISION Revision Changes Path 1.8 +3 -5 ports/devel/p5-Config-Setting/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 15:46:24 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B7CB7106566C; Fri, 29 Feb 2008 15:46:24 +0000 (UTC) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8E5518FC1C; Fri, 29 Feb 2008 15:46:24 +0000 (UTC) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TFkOL5064122; Fri, 29 Feb 2008 15:46:24 GMT (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TFkOc2064121; Fri, 29 Feb 2008 15:46:24 GMT (envelope-from ache) Message-Id: <200802291546.m1TFkOc2064121@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Fri, 29 Feb 2008 15:46:24 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/jpeginfo Makefile pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 15:46:24 -0000 ache 2008-02-29 15:46:24 UTC FreeBSD ports repository Modified files: graphics/jpeginfo Makefile pkg-descr Log: Update master site & www page Revision Changes Path 1.9 +1 -1 ports/graphics/jpeginfo/Makefile 1.2 +1 -1 ports/graphics/jpeginfo/pkg-descr From owner-cvs-all@FreeBSD.ORG Fri Feb 29 16:09:36 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D2EAF1065671; Fri, 29 Feb 2008 16:09:36 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A90428FC1D; Fri, 29 Feb 2008 16:09:36 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TG9awj065947; Fri, 29 Feb 2008 16:09:36 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TG9ais065946; Fri, 29 Feb 2008 16:09:36 GMT (envelope-from blackend) Message-Id: <200802291609.m1TG9ais065946@repoman.freebsd.org> From: Marc Fonvieille Date: Fri, 29 Feb 2008 16:09:36 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/share/images/books/handbook/install disklabel-root2.scr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 16:09:37 -0000 blackend 2008-02-29 16:09:36 UTC FreeBSD doc repository Modified files: share/images/books/handbook/install disklabel-root2.scr Log: Update to match r1.386 of install/chapter.sgml Revision Changes Path 1.3 +1 -1 doc/share/images/books/handbook/install/disklabel-root2.scr From owner-cvs-all@FreeBSD.ORG Fri Feb 29 16:24:43 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6C1F9106566C; Fri, 29 Feb 2008 16:24:43 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 41F1E8FC1E; Fri, 29 Feb 2008 16:24:43 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TGOh0V066440; Fri, 29 Feb 2008 16:24:43 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TGOhiG066439; Fri, 29 Feb 2008 16:24:43 GMT (envelope-from blackend) Message-Id: <200802291624.m1TGOhiG066439@repoman.freebsd.org> From: Marc Fonvieille Date: Fri, 29 Feb 2008 16:24:40 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/share/images/books/handbook/install disklabel-ed2.scr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 16:24:43 -0000 blackend 2008-02-29 16:24:40 UTC FreeBSD doc repository Modified files: share/images/books/handbook/install disklabel-ed2.scr Log: Update to match r1.386 of install/chapter.sgml Revision Changes Path 1.3 +1 -1 doc/share/images/books/handbook/install/disklabel-ed2.scr From owner-cvs-all@FreeBSD.ORG Fri Feb 29 16:29:25 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 49199106566C; Fri, 29 Feb 2008 16:29:25 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 203FF8FC1F; Fri, 29 Feb 2008 16:29:25 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TGTOlg066687; Fri, 29 Feb 2008 16:29:24 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TGTOFt066686; Fri, 29 Feb 2008 16:29:24 GMT (envelope-from bms) Message-Id: <200802291629.m1TGTOFt066686@repoman.freebsd.org> From: Bruce M Simpson Date: Fri, 29 Feb 2008 16:29:24 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/k8048 Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 16:29:25 -0000 bms 2008-02-29 16:29:24 UTC FreeBSD ports repository (src committer) Modified files: devel/k8048 Makefile distinfo Log: Chase doc update. Revision Changes Path 1.4 +1 -1 ports/devel/k8048/Makefile 1.2 +3 -3 ports/devel/k8048/distinfo From owner-cvs-all@FreeBSD.ORG Fri Feb 29 16:33:01 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 276A31065670; Fri, 29 Feb 2008 16:33:01 +0000 (UTC) (envelope-from cokane@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F1A708FC23; Fri, 29 Feb 2008 16:33:00 +0000 (UTC) (envelope-from cokane@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TGX0km068104; Fri, 29 Feb 2008 16:33:00 GMT (envelope-from cokane@repoman.freebsd.org) Received: (from cokane@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TGX0Jo068103; Fri, 29 Feb 2008 16:33:00 GMT (envelope-from cokane) Message-Id: <200802291633.m1TGX0Jo068103@repoman.freebsd.org> From: Coleman Kane Date: Fri, 29 Feb 2008 16:33:00 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/share/pgpkeys cokane.key pgpkeys-developers.sgml pgpkeys.ent X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 16:33:01 -0000 cokane 2008-02-29 16:33:00 UTC FreeBSD doc repository (src committer) Modified files: share/pgpkeys pgpkeys-developers.sgml pgpkeys.ent Added files: share/pgpkeys cokane.key Log: Add my key to the PGP keys file Approved by: philip Revision Changes Path 1.1 +45 -0 doc/share/pgpkeys/cokane.key (new) 1.65 +5 -0 doc/share/pgpkeys/pgpkeys-developers.sgml 1.161 +1 -0 doc/share/pgpkeys/pgpkeys.ent From owner-cvs-all@FreeBSD.ORG Fri Feb 29 16:33:08 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E8B151065673; Fri, 29 Feb 2008 16:33:08 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BFD308FC22; Fri, 29 Feb 2008 16:33:08 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TGX8FU068148; Fri, 29 Feb 2008 16:33:08 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TGX8xR068147; Fri, 29 Feb 2008 16:33:08 GMT (envelope-from bms) Message-Id: <200802291633.m1TGX8xR068147@repoman.freebsd.org> From: Bruce M Simpson Date: Fri, 29 Feb 2008 16:33:08 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/pimdd Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 16:33:09 -0000 bms 2008-02-29 16:33:08 UTC FreeBSD ports repository (src committer) Modified files: net/pimdd Makefile Log: chase distfile location update Revision Changes Path 1.2 +1 -1 ports/net/pimdd/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 16:52:25 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E6C2F1065670; Fri, 29 Feb 2008 16:52:25 +0000 (UTC) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BE1818FC35; Fri, 29 Feb 2008 16:52:25 +0000 (UTC) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TGqPQn077758; Fri, 29 Feb 2008 16:52:25 GMT (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TGqPm4077757; Fri, 29 Feb 2008 16:52:25 GMT (envelope-from ache) Message-Id: <200802291652.m1TGqPm4077757@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Fri, 29 Feb 2008 16:52:25 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/lynx-current Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 16:52:26 -0000 ache 2008-02-29 16:52:25 UTC FreeBSD ports repository Modified files: www/lynx-current Makefile distinfo Log: Update to 2.8.7dev.8 Revision Changes Path 1.182 +2 -2 ports/www/lynx-current/Makefile 1.188 +3 -3 ports/www/lynx-current/distinfo From owner-cvs-all@FreeBSD.ORG Fri Feb 29 16:59:03 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CFFB11065681; Fri, 29 Feb 2008 16:59:03 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C05128FC27; Fri, 29 Feb 2008 16:59:03 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TGx33a078016; Fri, 29 Feb 2008 16:59:03 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TGx31s078015; Fri, 29 Feb 2008 16:59:03 GMT (envelope-from chinsan) Message-Id: <200802291659.m1TGx31s078015@repoman.freebsd.org> From: Chin-San Huang Date: Fri, 29 Feb 2008 16:59:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/science/hdf5 Makefile distinfo pkg-plist ports/science/hdf5/files patch-c++::configure patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 16:59:04 -0000 chinsan 2008-02-29 16:59:01 UTC FreeBSD ports repository Modified files: science/hdf5 Makefile distinfo pkg-plist Removed files: science/hdf5/files patch-c++::configure patch-configure Log: - Update to 1.6.7 - Sort pkg-plist PR: ports/121195 Submitted by: Sunpoet Po-Chuan Hsieh Revision Changes Path 1.46 +26 -17 ports/science/hdf5/Makefile 1.17 +3 -3 ports/science/hdf5/distinfo 1.2 +0 -10 ports/science/hdf5/files/patch-c++::configure (dead) 1.2 +0 -10 ports/science/hdf5/files/patch-configure (dead) 1.20 +40 -41 ports/science/hdf5/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Feb 29 17:17:51 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2FF10106568F; Fri, 29 Feb 2008 17:17:51 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 206C78FC30; Fri, 29 Feb 2008 17:17:51 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1THHoeF079862; Fri, 29 Feb 2008 17:17:50 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1THHoSn079861; Fri, 29 Feb 2008 17:17:50 GMT (envelope-from tabthorpe) Message-Id: <200802291717.m1THHoSn079861@repoman.freebsd.org> From: Thomas Abthorpe Date: Fri, 29 Feb 2008 17:17:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/archivers/paq Makefile distinfo pkg-plist ports/archivers/paq/files pkg-message.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 17:17:51 -0000 tabthorpe 2008-02-29 17:17:50 UTC FreeBSD ports repository Modified files: archivers/paq Makefile distinfo pkg-plist archivers/paq/files pkg-message.in Log: - Update to 8.o9 - Fixes a bug in .bmp detection that caused an infinite loop for files with invalid headers. Added grayscale .rgb support - Also bundle related archivers lpaq8, lpq1, and paq9a, which offer faster (de)compression, but may yield larger archives PR: ports/121111 Submitted by: bf (maintainer) Revision Changes Path 1.10 +27 -9 ports/archivers/paq/Makefile 1.9 +12 -3 ports/archivers/paq/distinfo 1.2 +2 -2 ports/archivers/paq/files/pkg-message.in 1.4 +9 -1 ports/archivers/paq/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Feb 29 17:23:44 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1BC75106566B; Fri, 29 Feb 2008 17:23:44 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E77B18FC18; Fri, 29 Feb 2008 17:23:43 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1THNh5C080109; Fri, 29 Feb 2008 17:23:43 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1THNhnl080108; Fri, 29 Feb 2008 17:23:43 GMT (envelope-from rafan) Message-Id: <200802291723.m1THNhnl080108@repoman.freebsd.org> From: Rong-En Fan Date: Fri, 29 Feb 2008 17:23:43 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-Curses Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 17:23:44 -0000 rafan 2008-02-29 17:23:43 UTC FreeBSD ports repository Modified files: devel/p5-Curses Makefile Log: - Enable form, menu, and panel support Submitted by: Jeffrey Smith Revision Changes Path 1.34 +8 -0 ports/devel/p5-Curses/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 17:48:26 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F44F10656EB; Fri, 29 Feb 2008 17:48:26 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8FDB08FC13; Fri, 29 Feb 2008 17:48:26 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1THmQ5i080997; Fri, 29 Feb 2008 17:48:26 GMT (envelope-from philip@repoman.freebsd.org) Received: (from philip@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1THmQ5j080996; Fri, 29 Feb 2008 17:48:26 GMT (envelope-from philip) Message-Id: <200802291748.m1THmQ5j080996@repoman.freebsd.org> From: Philip Paeps Date: Fri, 29 Feb 2008 17:48:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/sys mq_close.2 mq_getattr.2 mq_notify.2 mq_open.2 mq_receive.2 mq_send.2 mq_setattr.2 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 17:48:26 -0000 philip 2008-02-29 17:48:26 UTC FreeBSD src repository Modified files: lib/libc/sys mq_close.2 mq_getattr.2 mq_notify.2 mq_open.2 mq_receive.2 mq_send.2 mq_setattr.2 Log: Use the easily-greppable copyright notice template from src/share/examples/mdoc/POSIX-copyright. Requested by: ru Revision Changes Path 1.6 +17 -17 src/lib/libc/sys/mq_close.2 1.6 +17 -17 src/lib/libc/sys/mq_getattr.2 1.10 +17 -17 src/lib/libc/sys/mq_notify.2 1.10 +17 -17 src/lib/libc/sys/mq_open.2 1.7 +17 -17 src/lib/libc/sys/mq_receive.2 1.6 +17 -17 src/lib/libc/sys/mq_send.2 1.7 +17 -17 src/lib/libc/sys/mq_setattr.2 From owner-cvs-all@FreeBSD.ORG Fri Feb 29 18:26:11 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CAD12106567A; Fri, 29 Feb 2008 18:26:11 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B9F678FC30; Fri, 29 Feb 2008 18:26:11 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TIQB4u085063; Fri, 29 Feb 2008 18:26:11 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TIQB82085062; Fri, 29 Feb 2008 18:26:11 GMT (envelope-from ahze) Message-Id: <200802291826.m1TIQB82085062@repoman.freebsd.org> From: Michael Johnson Date: Fri, 29 Feb 2008 18:26:11 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/print/gimp-gutenprint Makefile ports/print/gutenprint Makefile ports/print/gutenprint-base Makefile distinfo pkg-plist ports/print/gutenprint-base/files patch-src_gimp2_Makefile.in ports/print/gutenprint-cups pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 18:26:11 -0000 ahze 2008-02-29 18:26:11 UTC FreeBSD ports repository Modified files: print/gimp-gutenprint Makefile print/gutenprint Makefile print/gutenprint-base Makefile distinfo pkg-plist print/gutenprint-base/files patch-src_gimp2_Makefile.in print/gutenprint-cups pkg-plist Log: Update to 5.1.6 Revision Changes Path 1.11 +1 -1 ports/print/gimp-gutenprint/Makefile 1.40 +2 -2 ports/print/gutenprint-base/Makefile 1.15 +3 -3 ports/print/gutenprint-base/distinfo 1.2 +3 -13 ports/print/gutenprint-base/files/patch-src_gimp2_Makefile.in 1.15 +9 -9 ports/print/gutenprint-base/pkg-plist 1.5 +612 -3010 ports/print/gutenprint-cups/pkg-plist 1.34 +1 -1 ports/print/gutenprint/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 18:33:42 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 495051065673; Fri, 29 Feb 2008 18:33:42 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 21AEA8FC20; Fri, 29 Feb 2008 18:33:42 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TIXfDe085324; Fri, 29 Feb 2008 18:33:42 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TIXf3x085323; Fri, 29 Feb 2008 18:33:41 GMT (envelope-from ahze) Message-Id: <200802291833.m1TIXf3x085323@repoman.freebsd.org> From: Michael Johnson Date: Fri, 29 Feb 2008 18:33:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/print/gutenprint Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 18:33:42 -0000 ahze 2008-02-29 18:33:41 UTC FreeBSD ports repository Modified files: print/gutenprint Makefile Log: Remove the option for the gimp print driver, let graphics/gimp handle that Revision Changes Path 1.35 +0 -1 ports/print/gutenprint/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 18:42:49 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 953FE1065673; Fri, 29 Feb 2008 18:42:49 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6D8188FC27; Fri, 29 Feb 2008 18:42:49 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TIgnMh085700; Fri, 29 Feb 2008 18:42:49 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TIgnWv085699; Fri, 29 Feb 2008 18:42:49 GMT (envelope-from ahze) Message-Id: <200802291842.m1TIgnWv085699@repoman.freebsd.org> From: Michael Johnson Date: Fri, 29 Feb 2008 18:42:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/gimp Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 18:42:49 -0000 ahze 2008-02-29 18:42:49 UTC FreeBSD ports repository Modified files: graphics/gimp Makefile Log: When WITH_PRINT is defined add print/gutenprint to depends so users have an option for cups drivers instead of just the standard gutenprint drivers. Revision Changes Path 1.208 +2 -0 ports/graphics/gimp/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 18:54:54 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4B91A1065675; Fri, 29 Feb 2008 18:54:54 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2346F8FC27; Fri, 29 Feb 2008 18:54:54 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TIsr8X086258; Fri, 29 Feb 2008 18:54:53 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TIsr2F086257; Fri, 29 Feb 2008 18:54:53 GMT (envelope-from ahze) Message-Id: <200802291854.m1TIsr2F086257@repoman.freebsd.org> From: Michael Johnson Date: Fri, 29 Feb 2008 18:54:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/finance/gnucash Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 18:54:54 -0000 ahze 2008-02-29 18:54:53 UTC FreeBSD ports repository Modified files: finance/gnucash Makefile Log: Remove unneeded depends on g-wrap PR: ports/119636 Submitted by: Nikolai Nespor Revision Changes Path 1.113 +0 -1 ports/finance/gnucash/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 18:59:29 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4F392106566B; Fri, 29 Feb 2008 18:59:29 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 26F928FC29; Fri, 29 Feb 2008 18:59:29 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TIxSnw086465; Fri, 29 Feb 2008 18:59:28 GMT (envelope-from antoine@repoman.freebsd.org) Received: (from antoine@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TIxSoP086464; Fri, 29 Feb 2008 18:59:28 GMT (envelope-from antoine) Message-Id: <200802291859.m1TIxSoP086464@repoman.freebsd.org> From: Antoine Brodin Date: Fri, 29 Feb 2008 18:59:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/tools/build/mk OptionalObsoleteFiles.inc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 18:59:29 -0000 antoine 2008-02-29 18:59:28 UTC FreeBSD src repository Modified files: tools/build/mk OptionalObsoleteFiles.inc Log: Add files to remove when MK_GCOV, MK_IPX or MK_NCP are defined. Note: it may be a good idea to deduce obsolete usr/lib32/ files from obsolete lib/ and usr/lib/ files. PR: 120492 PR: 121118 PR: 121121 Submitted by: KAMIYA Satosi, Richard Tector Approved by: rwatson (mentor) MFC after: 1 month Revision Changes Path 1.13 +57 -9 src/tools/build/mk/OptionalObsoleteFiles.inc From owner-cvs-all@FreeBSD.ORG Fri Feb 29 19:00:50 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 110DF1065678; Fri, 29 Feb 2008 19:00:50 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DC4AA8FC13; Fri, 29 Feb 2008 19:00:49 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TJ0nHV086637; Fri, 29 Feb 2008 19:00:49 GMT (envelope-from beech@repoman.freebsd.org) Received: (from beech@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TJ0nCJ086636; Fri, 29 Feb 2008 19:00:49 GMT (envelope-from beech) Message-Id: <200802291900.m1TJ0nCJ086636@repoman.freebsd.org> From: Beech Rintoul Date: Fri, 29 Feb 2008 19:00:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/horde-base Makefile ports/www/horde-base/files extra-patch-lib_Horde_NLS.php X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 19:00:50 -0000 beech 2008-02-29 19:00:49 UTC FreeBSD ports repository Modified files: www/horde-base Makefile www/horde-base/files extra-patch-lib_Horde_NLS.php Log: - Fix NLS.php patch - Bump portrevision Revision Changes Path 1.66 +1 -0 ports/www/horde-base/Makefile 1.2 +4 -3 ports/www/horde-base/files/extra-patch-lib_Horde_NLS.php From owner-cvs-all@FreeBSD.ORG Fri Feb 29 19:01:07 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 14671106567A; Fri, 29 Feb 2008 19:01:07 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E0D7C8FC1F; Fri, 29 Feb 2008 19:01:06 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TJ16JR086682; Fri, 29 Feb 2008 19:01:06 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TJ161N086681; Fri, 29 Feb 2008 19:01:06 GMT (envelope-from bmah) Message-Id: <200802291901.m1TJ161N086681@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 29 Feb 2008 19:01:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/release/doc/share/sgml release.ent X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 19:01:07 -0000 bmah 2008-02-29 19:01:06 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) release/doc/share/sgml release.ent Log: Set release type entities consistently. Revision Changes Path 1.28.2.4 +2 -2 src/release/doc/share/sgml/release.ent From owner-cvs-all@FreeBSD.ORG Fri Feb 29 19:18:10 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 014B2106567C; Fri, 29 Feb 2008 19:18:10 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id CDDBE8FC19; Fri, 29 Feb 2008 19:18:09 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TJI9Xk088455; Fri, 29 Feb 2008 19:18:09 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TJI9SL088454; Fri, 29 Feb 2008 19:18:09 GMT (envelope-from jhb) Message-Id: <200802291918.m1TJI9SL088454@repoman.freebsd.org> From: John Baldwin Date: Fri, 29 Feb 2008 19:18:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/i386/i386 identcpu.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 19:18:10 -0000 jhb 2008-02-29 19:18:09 UTC FreeBSD src repository Modified files: sys/i386/i386 identcpu.c Log: With the recent change to enable CPU brands from the VIA chips, the code to add padlock features to the CPU model on VIA CPUs was no longer effective. Change the code to instead output a separate printf during dmesg for VIA Padlock features similar to other cpuid feature bitmasks. MFC after: 1 week Revision Changes Path 1.183 +41 -24 src/sys/i386/i386/identcpu.c From owner-cvs-all@FreeBSD.ORG Fri Feb 29 19:20:05 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A3501106566B; Fri, 29 Feb 2008 19:20:05 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7C2DD8FC2C; Fri, 29 Feb 2008 19:20:05 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TJK5Vs088576; Fri, 29 Feb 2008 19:20:05 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TJK50h088575; Fri, 29 Feb 2008 19:20:05 GMT (envelope-from jhb) Message-Id: <200802291920.m1TJK50h088575@repoman.freebsd.org> From: John Baldwin Date: Fri, 29 Feb 2008 19:20:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/mk bsd.cpu.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 19:20:05 -0000 jhb 2008-02-29 19:20:05 UTC FreeBSD src repository Modified files: share/mk bsd.cpu.mk Log: Add a 'c7' CPUTYPE for VIA C7 CPUs that is 'c3-2' with the addition of i686, sse2, and sse3. MFC after: 1 week Revision Changes Path 1.64 +2 -0 src/share/mk/bsd.cpu.mk From owner-cvs-all@FreeBSD.ORG Fri Feb 29 19:25:35 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 723261065675; Fri, 29 Feb 2008 19:25:35 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 495098FC1B; Fri, 29 Feb 2008 19:25:35 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TJPZPl088829; Fri, 29 Feb 2008 19:25:35 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TJPZUX088828; Fri, 29 Feb 2008 19:25:35 GMT (envelope-from mezz) Message-Id: <200802291925.m1TJPZUX088828@repoman.freebsd.org> From: Jeremy Messenger Date: Fri, 29 Feb 2008 19:25:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-p2p/deluge Makefile distinfo pkg-plist ports/net-p2p/deluge/files patch-libtorrent_src_enum_net.cpp patch-setup.py X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 19:25:35 -0000 mezz 2008-02-29 19:25:35 UTC FreeBSD ports repository Modified files: net-p2p/deluge Makefile distinfo pkg-plist net-p2p/deluge/files patch-setup.py Added files: net-p2p/deluge/files patch-libtorrent_src_enum_net.cpp Log: Update to 0.5.8.5. Revision Changes Path 1.36 +1 -1 ports/net-p2p/deluge/Makefile 1.23 +3 -3 ports/net-p2p/deluge/distinfo 1.1 +10 -0 ports/net-p2p/deluge/files/patch-libtorrent_src_enum_net.cpp (new) 1.12 +6 -6 ports/net-p2p/deluge/files/patch-setup.py 1.19 +1 -0 ports/net-p2p/deluge/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Feb 29 19:35:33 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C0D95106567C; Fri, 29 Feb 2008 19:35:33 +0000 (UTC) (envelope-from lx@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 99E2C8FC2B; Fri, 29 Feb 2008 19:35:33 +0000 (UTC) (envelope-from lx@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TJZX0U091549; Fri, 29 Feb 2008 19:35:33 GMT (envelope-from lx@repoman.freebsd.org) Received: (from lx@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TJZXN7091548; Fri, 29 Feb 2008 19:35:33 GMT (envelope-from lx) Message-Id: <200802291935.m1TJZXN7091548@repoman.freebsd.org> From: David Thiel Date: Fri, 29 Feb 2008 19:35:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/libunp Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 19:35:33 -0000 lx 2008-02-29 19:35:33 UTC FreeBSD ports repository Modified files: net/libunp Makefile Log: Unbreak, now that it fetches. PR: ports/121164 Submitted by: Chess Griffin Revision Changes Path 1.13 +0 -2 ports/net/libunp/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 19:40:25 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7CFCD106566B; Fri, 29 Feb 2008 19:40:25 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 555958FC1E; Fri, 29 Feb 2008 19:40:25 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TJePE9091731; Fri, 29 Feb 2008 19:40:25 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TJePZm091730; Fri, 29 Feb 2008 19:40:25 GMT (envelope-from ahze) Message-Id: <200802291940.m1TJePZm091730@repoman.freebsd.org> From: Michael Johnson Date: Fri, 29 Feb 2008 19:40:25 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/kazehakase pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 19:40:25 -0000 ahze 2008-02-29 19:40:25 UTC FreeBSD ports repository Modified files: www/kazehakase pkg-plist Log: Fix plist Revision Changes Path 1.22 +0 -1 ports/www/kazehakase/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Feb 29 19:54:21 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6CF2E106566B; Fri, 29 Feb 2008 19:54:21 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5EB088FC25; Fri, 29 Feb 2008 19:54:21 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TJsLNi093025; Fri, 29 Feb 2008 19:54:21 GMT (envelope-from obraun@repoman.freebsd.org) Received: (from obraun@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TJsLpL093024; Fri, 29 Feb 2008 19:54:21 GMT (envelope-from obraun) Message-Id: <200802291954.m1TJsLpL093024@repoman.freebsd.org> From: Oliver Braun Date: Fri, 29 Feb 2008 19:54:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/print Makefile ports/print/hs-hscolour Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 19:54:21 -0000 obraun 2008-02-29 19:54:21 UTC FreeBSD ports repository Modified files: print Makefile Added files: print/hs-hscolour Makefile distinfo pkg-descr pkg-plist Log: hscolour is a small Haskell script to colourise Haskell code. It currently has four output formats: ANSI terminal codes, HTML 3.2 with tags, HTML 4.01 with CSS, and LaTeX. author: Malcolm Wallace maintainer: Malcolm Wallace license: GPL WWW: http://www.cs.york.ac.uk/fp/darcs/hscolour package-url: ftp://ftp.cs.york.ac.uk/pub/haskell/contrib/ Exposed-Modules: Language.Haskell.HsColour, Language.Haskell.HsColour.ANSI, Language.Haskell.HsColour.Anchors, Language.Haskell.HsColour.Classify, Language.Haskell.HsColour.ColourHighlight, Language.Haskell.HsColour.Colourise, Language.Haskell.HsColour.TTY, Language.Haskell.HsColour.HTML, Language.Haskell.HsColour.LaTeX, Language.Haskell.HsColour.General, Language.Haskell.HsColour.MIRC, Language.Haskell.HsColour.CSS PR: ports/120975 Submitted by: Giuseppe Pilichi aka Jacula Modyun Revision Changes Path 1.446 +1 -0 ports/print/Makefile 1.1 +60 -0 ports/print/hs-hscolour/Makefile (new) 1.1 +3 -0 ports/print/hs-hscolour/distinfo (new) 1.1 +24 -0 ports/print/hs-hscolour/pkg-descr (new) 1.1 +30 -0 ports/print/hs-hscolour/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Feb 29 19:56:35 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EB589106566B; Fri, 29 Feb 2008 19:56:35 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C44F48FC1B; Fri, 29 Feb 2008 19:56:35 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TJuZv0093217; Fri, 29 Feb 2008 19:56:35 GMT (envelope-from danfe@repoman.freebsd.org) Received: (from danfe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TJuZPR093216; Fri, 29 Feb 2008 19:56:35 GMT (envelope-from danfe) Message-Id: <200802291956.m1TJuZPR093216@repoman.freebsd.org> From: Alexey Dokuchaev Date: Fri, 29 Feb 2008 19:56:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports LEGAL X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 19:56:36 -0000 danfe 2008-02-29 19:56:35 UTC FreeBSD ports repository Modified files: . LEGAL Log: Usual round of cleanups: - Wrap excessively long lines, reformat - Consistency and spelling fixes - Language nits Revision Changes Path 1.571 +204 -161 ports/LEGAL From owner-cvs-all@FreeBSD.ORG Fri Feb 29 20:05:33 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 802BD106566B; Fri, 29 Feb 2008 20:05:33 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5909B8FC1A; Fri, 29 Feb 2008 20:05:33 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TK5X7E094939; Fri, 29 Feb 2008 20:05:33 GMT (envelope-from obraun@repoman.freebsd.org) Received: (from obraun@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TK5XvA094938; Fri, 29 Feb 2008 20:05:33 GMT (envelope-from obraun) Message-Id: <200802292005.m1TK5XvA094938@repoman.freebsd.org> From: Oliver Braun Date: Fri, 29 Feb 2008 20:05:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 20:05:33 -0000 obraun 2008-02-29 20:05:33 UTC FreeBSD ports repository Modified files: . modules Log: hs-hscolour --> ports/print/hs-hscolour Revision Changes Path 1.19452 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Feb 29 20:17:50 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CCB8D1065674; Fri, 29 Feb 2008 20:17:50 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A49ED8FC28; Fri, 29 Feb 2008 20:17:50 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TKHoVO095316; Fri, 29 Feb 2008 20:17:50 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TKHoQZ095315; Fri, 29 Feb 2008 20:17:50 GMT (envelope-from blackend) Message-Id: <200802292017.m1TKHoQZ095315@repoman.freebsd.org> From: Marc Fonvieille Date: Fri, 29 Feb 2008 20:17:50 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/install chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 20:17:51 -0000 blackend 2008-02-29 20:17:50 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/install chapter.sgml Log: Never start a sentence with a lowercase. Revision Changes Path 1.387 +1 -1 doc/en_US.ISO8859-1/books/handbook/install/chapter.sgml From owner-cvs-all@FreeBSD.ORG Fri Feb 29 20:25:59 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6058C106567F; Fri, 29 Feb 2008 20:25:59 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 392818FC32; Fri, 29 Feb 2008 20:25:59 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TKPxSw095726; Fri, 29 Feb 2008 20:25:59 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TKPxCN095725; Fri, 29 Feb 2008 20:25:59 GMT (envelope-from pav) Message-Id: <200802292025.m1TKPxCN095725@repoman.freebsd.org> From: Pav Lucistnik Date: Fri, 29 Feb 2008 20:25:58 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/exif Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 20:25:59 -0000 pav 2008-02-29 20:25:58 UTC FreeBSD ports repository Modified files: graphics/exif Makefile Log: - Bandaid build of gettext refusenicks PR: ports/121231 Submitted by: Helge Oldach Revision Changes Path 1.10 +2 -1 ports/graphics/exif/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 20:27:27 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1875B1065672; Fri, 29 Feb 2008 20:27:27 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E649B8FC2C; Fri, 29 Feb 2008 20:27:26 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TKRQTN095777; Fri, 29 Feb 2008 20:27:26 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TKRQke095776; Fri, 29 Feb 2008 20:27:26 GMT (envelope-from dinoex) Message-Id: <200802292027.m1TKRQke095776@repoman.freebsd.org> From: Dirk Meyer Date: Fri, 29 Feb 2008 20:27:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/svgviewer/files patch-SVGImageRep.m X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 20:27:27 -0000 dinoex 2008-02-29 20:27:26 UTC FreeBSD ports repository Added files: graphics/svgviewer/files patch-SVGImageRep.m Log: - fix build for updated gnustep-gui Revision Changes Path 1.1 +15 -0 ports/graphics/svgviewer/files/patch-SVGImageRep.m (new) From owner-cvs-all@FreeBSD.ORG Fri Feb 29 20:35:18 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 05A031065670; Fri, 29 Feb 2008 20:35:18 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EB8718FC22; Fri, 29 Feb 2008 20:35:17 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TKZHq1096129; Fri, 29 Feb 2008 20:35:17 GMT (envelope-from obraun@repoman.freebsd.org) Received: (from obraun@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TKZHSw096128; Fri, 29 Feb 2008 20:35:17 GMT (envelope-from obraun) Message-Id: <200802292035.m1TKZHSw096128@repoman.freebsd.org> From: Oliver Braun Date: Fri, 29 Feb 2008 20:35:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel Makefile ports/devel/hs-haddock-docs Makefile distinfo pkg-descr pkg-message pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 20:35:18 -0000 obraun 2008-02-29 20:35:17 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/hs-haddock-docs Makefile distinfo pkg-descr pkg-message pkg-plist Log: User documentation and hyperlinked documentation for the haddock libraries. This last documentaion is generated by HsColour and haddock. PR: ports/120975 Submitted by: Giuseppe Pilichi aka Jacula Modyun Revision Changes Path 1.3014 +1 -0 ports/devel/Makefile 1.1 +70 -0 ports/devel/hs-haddock-docs/Makefile (new) 1.1 +3 -0 ports/devel/hs-haddock-docs/distinfo (new) 1.1 +3 -0 ports/devel/hs-haddock-docs/pkg-descr (new) 1.1 +13 -0 ports/devel/hs-haddock-docs/pkg-message (new) 1.1 +94 -0 ports/devel/hs-haddock-docs/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Feb 29 20:39:09 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 63E7B1065674; Fri, 29 Feb 2008 20:39:09 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3D35E8FC20; Fri, 29 Feb 2008 20:39:09 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TKd9Ab096369; Fri, 29 Feb 2008 20:39:09 GMT (envelope-from obraun@repoman.freebsd.org) Received: (from obraun@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TKd93T096368; Fri, 29 Feb 2008 20:39:09 GMT (envelope-from obraun) Message-Id: <200802292039.m1TKd93T096368@repoman.freebsd.org> From: Oliver Braun Date: Fri, 29 Feb 2008 20:39:09 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 20:39:09 -0000 obraun 2008-02-29 20:39:09 UTC FreeBSD ports repository Modified files: . modules Log: hs-haddock-docs --> ports/devel/hs-haddock-docs Revision Changes Path 1.19453 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Feb 29 20:42:17 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C315B1065677; Fri, 29 Feb 2008 20:42:17 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9C3A18FC39; Fri, 29 Feb 2008 20:42:17 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TKgHJi096534; Fri, 29 Feb 2008 20:42:17 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TKgH5n096533; Fri, 29 Feb 2008 20:42:17 GMT (envelope-from sam) Message-Id: <200802292042.m1TKgH5n096533@repoman.freebsd.org> From: Sam Leffler Date: Fri, 29 Feb 2008 20:42:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/ifconfig ifconfig.8 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 20:42:18 -0000 sam 2008-02-29 20:42:17 UTC FreeBSD src repository Modified files: sbin/ifconfig ifconfig.8 Log: explain that you must set a default transmit key for WEP Submitted by: Jeremie Le Hen MFC after: 1 week Revision Changes Path 1.146 +7 -1 src/sbin/ifconfig/ifconfig.8 From owner-cvs-all@FreeBSD.ORG Fri Feb 29 20:47:06 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1386B1065670; Fri, 29 Feb 2008 20:47:06 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E02D98FC22; Fri, 29 Feb 2008 20:47:05 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TKl5gE099309; Fri, 29 Feb 2008 20:47:05 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TKl5xQ099288; Fri, 29 Feb 2008 20:47:05 GMT (envelope-from oliver) Message-Id: <200802292047.m1TKl5xQ099288@repoman.freebsd.org> From: Oliver Lehmann Date: Fri, 29 Feb 2008 20:47:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/libzvbi pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 20:47:06 -0000 oliver 2008-02-29 20:47:05 UTC FreeBSD ports repository Modified files: devel/libzvbi pkg-plist Log: fix pkg-plist Noted by: pointyhat Revision Changes Path 1.14 +1 -1 ports/devel/libzvbi/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Feb 29 20:50:33 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E98411065670; Fri, 29 Feb 2008 20:50:33 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DBC608FC26; Fri, 29 Feb 2008 20:50:33 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TKoXhN006181; Fri, 29 Feb 2008 20:50:33 GMT (envelope-from obraun@repoman.freebsd.org) Received: (from obraun@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TKoXkn006180; Fri, 29 Feb 2008 20:50:33 GMT (envelope-from obraun) Message-Id: <200802292050.m1TKoXkn006180@repoman.freebsd.org> From: Oliver Braun Date: Fri, 29 Feb 2008 20:50:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/print Makefile ports/print/hs-hscolour-docs Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 20:50:34 -0000 obraun 2008-02-29 20:50:33 UTC FreeBSD ports repository Modified files: print Makefile Added files: print/hs-hscolour-docs Makefile distinfo pkg-descr pkg-plist Log: Hyperlinked documentation for the HsColour libraries. This documentaion is generated by HsColour and haddock. PR: ports/120975 Submitted by: Giuseppe Pilichi aka Jacula Modyun Revision Changes Path 1.447 +1 -0 ports/print/Makefile 1.1 +43 -0 ports/print/hs-hscolour-docs/Makefile (new) 1.1 +3 -0 ports/print/hs-hscolour-docs/distinfo (new) 1.1 +2 -0 ports/print/hs-hscolour-docs/pkg-descr (new) 1.1 +60 -0 ports/print/hs-hscolour-docs/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Feb 29 20:52:11 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E8BDB1065670; Fri, 29 Feb 2008 20:52:11 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C1A128FC16; Fri, 29 Feb 2008 20:52:11 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TKqBdh006262; Fri, 29 Feb 2008 20:52:11 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TKqBG4006261; Fri, 29 Feb 2008 20:52:11 GMT (envelope-from oliver) Message-Id: <200802292052.m1TKqBG4006261@repoman.freebsd.org> From: Oliver Lehmann Date: Fri, 29 Feb 2008 20:52:11 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio/audacious-mac Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 20:52:12 -0000 oliver 2008-02-29 20:52:11 UTC FreeBSD ports repository Modified files: audio/audacious-mac Makefile Log: mark it BROKEN. Author is aware ofi it, the error occured with the first 1.4 audacious versions in 12/07 and is still there Revision Changes Path 1.4 +1 -0 ports/audio/audacious-mac/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 20:54:27 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 059B0106566B; Fri, 29 Feb 2008 20:54:27 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D2BA08FC23; Fri, 29 Feb 2008 20:54:26 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TKsQYM006316; Fri, 29 Feb 2008 20:54:26 GMT (envelope-from obraun@repoman.freebsd.org) Received: (from obraun@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TKsQnW006315; Fri, 29 Feb 2008 20:54:26 GMT (envelope-from obraun) Message-Id: <200802292054.m1TKsQnW006315@repoman.freebsd.org> From: Oliver Braun Date: Fri, 29 Feb 2008 20:54:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 20:54:27 -0000 obraun 2008-02-29 20:54:26 UTC FreeBSD ports repository Modified files: . modules Log: hs-hscolour-docs --> ports/print/hs-hscolour-docs Revision Changes Path 1.19454 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Feb 29 20:58:49 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9981A10656D1; Fri, 29 Feb 2008 20:58:49 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 723C88FC16; Fri, 29 Feb 2008 20:58:49 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TKwnaS006593; Fri, 29 Feb 2008 20:58:49 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TKwnB9006592; Fri, 29 Feb 2008 20:58:49 GMT (envelope-from oliver) Message-Id: <200802292058.m1TKwnB9006592@repoman.freebsd.org> From: Oliver Lehmann Date: Fri, 29 Feb 2008 20:58:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/libmowgli Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 20:58:49 -0000 oliver 2008-02-29 20:58:49 UTC FreeBSD ports repository Modified files: devel/libmowgli Makefile Log: fix a syntax error in the mowgli.h header file bump PORTREVISION Revision Changes Path 1.6 +3 -0 ports/devel/libmowgli/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 20:59:18 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B8CF51065673; Fri, 29 Feb 2008 20:59:18 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 91C248FC1A; Fri, 29 Feb 2008 20:59:18 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TKxIB3006632; Fri, 29 Feb 2008 20:59:18 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TKxIAc006631; Fri, 29 Feb 2008 20:59:18 GMT (envelope-from oliver) Message-Id: <200802292059.m1TKxIAc006631@repoman.freebsd.org> From: Oliver Lehmann Date: Fri, 29 Feb 2008 20:59:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio/audacious-mac Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 20:59:18 -0000 oliver 2008-02-29 20:59:18 UTC FreeBSD ports repository Modified files: audio/audacious-mac Makefile Log: remove BROKEN. The compilation error was fixed in libmowgli where the error comes from Revision Changes Path 1.5 +0 -1 ports/audio/audacious-mac/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 21:08:15 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D9FE71065675; Fri, 29 Feb 2008 21:08:15 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id CC0918FC30; Fri, 29 Feb 2008 21:08:15 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TL8FvD008259; Fri, 29 Feb 2008 21:08:15 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TL8F3h008258; Fri, 29 Feb 2008 21:08:15 GMT (envelope-from ehaupt) Message-Id: <200802292108.m1TL8F3h008258@repoman.freebsd.org> From: Emanuel Haupt Date: Fri, 29 Feb 2008 21:08:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/vpnc Makefile ports/security/vpnc/files patch-Makefile patch-config.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 21:08:16 -0000 ehaupt 2008-02-29 21:08:15 UTC FreeBSD ports repository Modified files: security/vpnc Makefile security/vpnc/files patch-Makefile patch-config.c Log: The upgrade of ports/security/vpnc to version 0.5.1 introduced some glitches against the documented behaviour. In particular, the configuration files are not searched in the documented locations: /usr/local/etc/vpnc/*.conf is not searched at all, and /usr/local/etc/vpnc/default.conf is skipped, both in contrast to the documentation. PR: 121229 Submitted by: Helge Oldach Revision Changes Path 1.30 +1 -1 ports/security/vpnc/Makefile 1.8 +10 -1 ports/security/vpnc/files/patch-Makefile 1.8 +3 -2 ports/security/vpnc/files/patch-config.c From owner-cvs-all@FreeBSD.ORG Fri Feb 29 21:08:51 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 85EF01065686; Fri, 29 Feb 2008 21:08:51 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5E8DD8FC26; Fri, 29 Feb 2008 21:08:51 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TL8pAI008294; Fri, 29 Feb 2008 21:08:51 GMT (envelope-from obraun@repoman.freebsd.org) Received: (from obraun@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TL8pP5008293; Fri, 29 Feb 2008 21:08:51 GMT (envelope-from obraun) Message-Id: <200802292108.m1TL8pP5008293@repoman.freebsd.org> From: Oliver Braun Date: Fri, 29 Feb 2008 21:08:51 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/hs-haddock Makefile pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 21:08:51 -0000 obraun 2008-02-29 21:08:51 UTC FreeBSD ports repository Modified files: devel/hs-haddock Makefile pkg-descr pkg-plist Log: * Add SLAVE option in order to install documentation for lang/ghc. * Remove documentation. It's now available through devel/hs-haddock-docs. * add devel/readline dependency if already installed. PR: ports/120975 Submitted by: Jacula Modyun Revision Changes Path 1.31 +30 -30 ports/devel/hs-haddock/Makefile 1.2 +6 -3 ports/devel/hs-haddock/pkg-descr 1.10 +24 -21 ports/devel/hs-haddock/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Feb 29 21:11:45 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6D8E21065671; Fri, 29 Feb 2008 21:11:45 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 46A3D8FC13; Fri, 29 Feb 2008 21:11:45 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TLBjl3008452; Fri, 29 Feb 2008 21:11:45 GMT (envelope-from lwhsu@repoman.freebsd.org) Received: (from lwhsu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TLBjrN008451; Fri, 29 Feb 2008 21:11:45 GMT (envelope-from lwhsu) Message-Id: <200802292111.m1TLBjrN008451@repoman.freebsd.org> From: Li-Wen Hsu Date: Fri, 29 Feb 2008 21:11:44 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/py-pp Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 21:11:45 -0000 lwhsu 2008-02-29 21:11:44 UTC FreeBSD ports repository Modified files: devel/py-pp Makefile distinfo Log: - Update to to 1.5.3 PR: ports/121233 Submitted by: Kirk Strauser Revision Changes Path 1.7 +1 -1 ports/devel/py-pp/Makefile 1.6 +3 -3 ports/devel/py-pp/distinfo From owner-cvs-all@FreeBSD.ORG Fri Feb 29 21:15:51 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6CEB8106566C; Fri, 29 Feb 2008 21:15:51 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5E8968FC23; Fri, 29 Feb 2008 21:15:51 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TLFpNd008597; Fri, 29 Feb 2008 21:15:51 GMT (envelope-from obraun@repoman.freebsd.org) Received: (from obraun@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TLFpaa008596; Fri, 29 Feb 2008 21:15:51 GMT (envelope-from obraun) Message-Id: <200802292115.m1TLFpaa008596@repoman.freebsd.org> From: Oliver Braun Date: Fri, 29 Feb 2008 21:15:51 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/ghc Makefile distinfo pkg-descr pkg-plist ports/lang/ghc/files patch-libraries-Cabal-Distribution-Simple-Haddock.hs pkg-message.haddock.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 21:15:51 -0000 obraun 2008-02-29 21:15:51 UTC FreeBSD ports repository Modified files: lang/ghc Makefile distinfo pkg-descr pkg-plist Added files: lang/ghc/files patch-libraries-Cabal-Distribution-Simple-Haddock.hs pkg-message.haddock.in Log: * Add new knob WITH_DOCS to install the user documentation and the hyperlinkable documentation, generated by haddock and HsColour. * Build haddock and HsColour for building documentaion only. * Install manpage. PR: ports/120975 Submitted by: Jacula Modyun Revision Changes Path 1.62 +98 -9 ports/lang/ghc/Makefile 1.30 +6 -0 ports/lang/ghc/distinfo 1.1 +11 -0 ports/lang/ghc/files/patch-libraries-Cabal-Distribution-Simple-Haddock.hs (new) 1.1 +9 -0 ports/lang/ghc/files/pkg-message.haddock.in (new) 1.2 +17 -7 ports/lang/ghc/pkg-descr 1.27 +1514 -1581 ports/lang/ghc/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Feb 29 21:24:58 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B17E11065670; Fri, 29 Feb 2008 21:24:58 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 89FED8FC1B; Fri, 29 Feb 2008 21:24:58 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TLOw6T008910; Fri, 29 Feb 2008 21:24:58 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TLOw7F008909; Fri, 29 Feb 2008 21:24:58 GMT (envelope-from tabthorpe) Message-Id: <200802292124.m1TLOw7F008909@repoman.freebsd.org> From: Thomas Abthorpe Date: Fri, 29 Feb 2008 21:24:58 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/math/sc Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 21:24:58 -0000 tabthorpe 2008-02-29 21:24:58 UTC FreeBSD ports repository Modified files: math/sc Makefile Log: 0 Deprecate - Set EXPIRATION_DATE PR: ports/121226 Submitted by: Heinz Tschabitscher (maintainer) Revision Changes Path 1.7 +3 -0 ports/math/sc/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 21:26:23 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3E7121065676; Fri, 29 Feb 2008 21:26:23 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 174928FC1B; Fri, 29 Feb 2008 21:26:23 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TLQMY7009039; Fri, 29 Feb 2008 21:26:22 GMT (envelope-from obraun@repoman.freebsd.org) Received: (from obraun@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TLQMkK009038; Fri, 29 Feb 2008 21:26:22 GMT (envelope-from obraun) Message-Id: <200802292126.m1TLQMkK009038@repoman.freebsd.org> From: Oliver Braun Date: Fri, 29 Feb 2008 21:26:22 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/ghc Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 21:26:23 -0000 obraun 2008-02-29 21:26:22 UTC FreeBSD ports repository Modified files: lang/ghc Makefile Log: Ups, forgot to remove local hack for testing in previous commit :-( Revision Changes Path 1.63 +2 -4 ports/lang/ghc/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 21:50:12 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 98FAD1065670; Fri, 29 Feb 2008 21:50:12 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 88C0D8FC24; Fri, 29 Feb 2008 21:50:12 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TLoC7J010437; Fri, 29 Feb 2008 21:50:12 GMT (envelope-from jfv@repoman.freebsd.org) Received: (from jfv@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TLoC72010436; Fri, 29 Feb 2008 21:50:12 GMT (envelope-from jfv) Message-Id: <200802292150.m1TLoC72010436@repoman.freebsd.org> From: Jack F Vogel Date: Fri, 29 Feb 2008 21:50:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/conf files src/sys/dev/em LICENSE e1000_80003es2lan.c e1000_80003es2lan.h e1000_82540.c e1000_82541.c e1000_82541.h e1000_82542.c e1000_82543.c e1000_82543.h e1000_82571.c e1000_82571.h e1000_82575.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 21:50:12 -0000 jfv 2008-02-29 21:50:11 UTC FreeBSD src repository Modified files: sys/conf files sys/dev/em LICENSE e1000_80003es2lan.c e1000_80003es2lan.h e1000_82540.c e1000_82541.c e1000_82541.h e1000_82542.c e1000_82543.c e1000_82543.h e1000_82571.c e1000_82571.h e1000_api.c e1000_api.h e1000_defines.h e1000_hw.h e1000_ich8lan.c e1000_ich8lan.h e1000_mac.c e1000_mac.h e1000_manage.c e1000_manage.h e1000_nvm.c e1000_nvm.h e1000_osdep.h e1000_phy.c e1000_phy.h e1000_regs.h if_em.c if_em.h sys/modules/em Makefile Added files: sys/dev/igb e1000_82575.c e1000_82575.h e1000_api.c e1000_api.h e1000_defines.h e1000_hw.h e1000_mac.c e1000_mac.h e1000_manage.c e1000_manage.h e1000_nvm.c e1000_nvm.h e1000_osdep.h e1000_phy.c e1000_phy.h e1000_regs.h if_igb.c if_igb.h sys/modules/igb Makefile Removed files: sys/dev/em e1000_82575.c e1000_82575.h Log: This change introduces a split to the Intel E1000 driver, now rather than just em, there is an igb driver (this follows behavior with our Linux drivers). All adapters up to the 82575 are supported in em, and new client/desktop support will continue to be in that adapter. The igb driver is for new server NICs like the 82575 and its followons. Advanced features for virtualization and performance will be in this driver. Also, both drivers now have shared code that is up to the latest we have released. Some stylistic changes as well. Enjoy :) Revision Changes Path 1.1271 +14 -0 src/sys/conf/files 1.7 +1 -1 src/sys/dev/em/LICENSE 1.5 +71 -23 src/sys/dev/em/e1000_80003es2lan.c 1.5 +3 -3 src/sys/dev/em/e1000_80003es2lan.h 1.5 +6 -7 src/sys/dev/em/e1000_82540.c 1.5 +4 -6 src/sys/dev/em/e1000_82541.c 1.5 +1 -1 src/sys/dev/em/e1000_82541.h 1.5 +3 -5 src/sys/dev/em/e1000_82542.c 1.5 +9 -11 src/sys/dev/em/e1000_82543.c 1.5 +1 -1 src/sys/dev/em/e1000_82543.h 1.5 +61 -28 src/sys/dev/em/e1000_82571.c 1.5 +9 -1 src/sys/dev/em/e1000_82571.h 1.5 +0 -1450 src/sys/dev/em/e1000_82575.c (dead) 1.5 +0 -316 src/sys/dev/em/e1000_82575.h (dead) 1.5 +17 -24 src/sys/dev/em/e1000_api.c 1.5 +12 -1 src/sys/dev/em/e1000_api.h 1.5 +60 -39 src/sys/dev/em/e1000_defines.h 1.5 +9 -5 src/sys/dev/em/e1000_hw.h 1.5 +156 -32 src/sys/dev/em/e1000_ich8lan.c 1.5 +6 -2 src/sys/dev/em/e1000_ich8lan.h 1.5 +20 -19 src/sys/dev/em/e1000_mac.c 1.5 +1 -1 src/sys/dev/em/e1000_mac.h 1.5 +7 -7 src/sys/dev/em/e1000_manage.c 1.5 +3 -3 src/sys/dev/em/e1000_manage.h 1.5 +5 -6 src/sys/dev/em/e1000_nvm.c 1.5 +5 -3 src/sys/dev/em/e1000_nvm.h 1.5 +1 -1 src/sys/dev/em/e1000_osdep.h 1.5 +429 -26 src/sys/dev/em/e1000_phy.c 1.5 +21 -1 src/sys/dev/em/e1000_phy.h 1.5 +21 -47 src/sys/dev/em/e1000_regs.h 1.190 +413 -659 src/sys/dev/em/if_em.c 1.66 +32 -28 src/sys/dev/em/if_em.h 1.1 +1431 -0 src/sys/dev/igb/e1000_82575.c (new) 1.1 +317 -0 src/sys/dev/igb/e1000_82575.h (new) 1.1 +1063 -0 src/sys/dev/igb/e1000_api.c (new) 1.1 +153 -0 src/sys/dev/igb/e1000_api.h (new) 1.1 +1402 -0 src/sys/dev/igb/e1000_defines.h (new) 1.1 +627 -0 src/sys/dev/igb/e1000_hw.h (new) 1.1 +2172 -0 src/sys/dev/igb/e1000_mac.c (new) 1.1 +101 -0 src/sys/dev/igb/e1000_mac.h (new) 1.1 +390 -0 src/sys/dev/igb/e1000_manage.c (new) 1.1 +87 -0 src/sys/dev/igb/e1000_manage.h (new) 1.1 +932 -0 src/sys/dev/igb/e1000_nvm.c (new) 1.1 +68 -0 src/sys/dev/igb/e1000_nvm.h (new) 1.1 +184 -0 src/sys/dev/igb/e1000_osdep.h (new) 1.1 +2146 -0 src/sys/dev/igb/e1000_phy.c (new) 1.1 +177 -0 src/sys/dev/igb/e1000_phy.h (new) 1.1 +326 -0 src/sys/dev/igb/e1000_regs.h (new) 1.1 +4439 -0 src/sys/dev/igb/if_igb.c (new) 1.1 +419 -0 src/sys/dev/igb/if_igb.h (new) 1.10 +1 -1 src/sys/modules/em/Makefile 1.1 +25 -0 src/sys/modules/igb/Makefile (new) From owner-cvs-all@FreeBSD.ORG Fri Feb 29 21:55:27 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 73DF6106567A; Fri, 29 Feb 2008 21:55:27 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4C9D58FC1B; Fri, 29 Feb 2008 21:55:27 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TLtQY3010685; Fri, 29 Feb 2008 21:55:26 GMT (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TLtQQN010684; Fri, 29 Feb 2008 21:55:26 GMT (envelope-from gerald) Message-Id: <200802292155.m1TLtQQN010684@repoman.freebsd.org> From: Gerald Pfeifer Date: Fri, 29 Feb 2008 21:55:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/gcc43 Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 21:55:27 -0000 gerald 2008-02-29 21:55:26 UTC FreeBSD ports repository Modified files: lang/gcc43 Makefile distinfo Log: Update to the 20080228 snapshot of GCC 4.3.0. Revision Changes Path 1.338 +1 -1 ports/lang/gcc43/Makefile 1.222 +18 -18 ports/lang/gcc43/distinfo From owner-cvs-all@FreeBSD.ORG Fri Feb 29 22:08:50 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 39B4F106567D; Fri, 29 Feb 2008 22:08:50 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1356A8FC31; Fri, 29 Feb 2008 22:08:50 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TM8nUX012615; Fri, 29 Feb 2008 22:08:49 GMT (envelope-from jfv@repoman.freebsd.org) Received: (from jfv@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TM8nSu012614; Fri, 29 Feb 2008 22:08:49 GMT (envelope-from jfv) Message-Id: <200802292208.m1TM8nSu012614@repoman.freebsd.org> From: Jack F Vogel Date: Fri, 29 Feb 2008 22:08:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 22:08:50 -0000 jfv 2008-02-29 22:08:49 UTC FreeBSD src repository Modified files: . UPDATING Log: Detail the em/igb split so no one gets confused. Revision Changes Path 1.521 +6 -0 src/UPDATING From owner-cvs-all@FreeBSD.ORG Fri Feb 29 22:27:19 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CFE72106566B; Fri, 29 Feb 2008 22:27:19 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A7A7A8FC15; Fri, 29 Feb 2008 22:27:19 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TMRJ5I013421; Fri, 29 Feb 2008 22:27:19 GMT (envelope-from piso@repoman.freebsd.org) Received: (from piso@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TMRJwb013420; Fri, 29 Feb 2008 22:27:19 GMT (envelope-from piso) Message-Id: <200802292227.m1TMRJwb013420@repoman.freebsd.org> From: Paolo Pisati Date: Fri, 29 Feb 2008 22:27:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/conf NOTES files src/sys/modules/ipfw_nat Makefile src/sys/netinet ip_fw.h ip_fw2.c ip_fw_nat.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 22:27:20 -0000 piso 2008-02-29 22:27:19 UTC FreeBSD src repository Modified files: sys/conf NOTES files sys/netinet ip_fw.h ip_fw2.c Added files: sys/modules/ipfw_nat Makefile sys/netinet ip_fw_nat.c Log: Move ipfw's nat code into its own kld: ipfw_nat. Revision Changes Path 1.1469 +1 -2 src/sys/conf/NOTES 1.1272 +1 -0 src/sys/conf/files 1.1 +8 -0 src/sys/modules/ipfw_nat/Makefile (new) 1.112 +32 -0 src/sys/netinet/ip_fw.h 1.182 +54 -552 src/sys/netinet/ip_fw2.c 1.1 +646 -0 src/sys/netinet/ip_fw_nat.c (new) From owner-cvs-all@FreeBSD.ORG Fri Feb 29 22:28:19 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0E72A1065674; Fri, 29 Feb 2008 22:28:19 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DC1BA8FC20; Fri, 29 Feb 2008 22:28:18 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TMSImr013472; Fri, 29 Feb 2008 22:28:18 GMT (envelope-from piso@repoman.freebsd.org) Received: (from piso@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TMSIkJ013471; Fri, 29 Feb 2008 22:28:18 GMT (envelope-from piso) Message-Id: <200802292228.m1TMSIkJ013471@repoman.freebsd.org> From: Paolo Pisati Date: Fri, 29 Feb 2008 22:28:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/modules Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 22:28:19 -0000 piso 2008-02-29 22:28:18 UTC FreeBSD src repository Modified files: sys/modules Makefile Log: Hook ipfw_nat to the build. Revision Changes Path 1.554 +1 -0 src/sys/modules/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 22:35:38 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8B9551065672; Fri, 29 Feb 2008 22:35:38 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 647768FC22; Fri, 29 Feb 2008 22:35:38 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TMZctU013790; Fri, 29 Feb 2008 22:35:38 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TMZctI013789; Fri, 29 Feb 2008 22:35:38 GMT (envelope-from sat) Message-Id: <200802292235.m1TMZctI013789@repoman.freebsd.org> From: Andrew Pantyukhin Date: Fri, 29 Feb 2008 22:35:38 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/xpi-imdbpreview Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 22:35:38 -0000 sat 2008-02-29 22:35:38 UTC FreeBSD ports repository Modified files: www/xpi-imdbpreview Makefile distinfo Log: - Update to 0.4.2 Revision Changes Path 1.6 +1 -1 ports/www/xpi-imdbpreview/Makefile 1.6 +3 -3 ports/www/xpi-imdbpreview/distinfo From owner-cvs-all@FreeBSD.ORG Fri Feb 29 22:38:12 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C40FE106567E; Fri, 29 Feb 2008 22:38:12 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9DBE58FC3D; Fri, 29 Feb 2008 22:38:12 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TMcCet013949; Fri, 29 Feb 2008 22:38:12 GMT (envelope-from jfv@repoman.freebsd.org) Received: (from jfv@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TMcCP3013948; Fri, 29 Feb 2008 22:38:12 GMT (envelope-from jfv) Message-Id: <200802292238.m1TMcCP3013948@repoman.freebsd.org> From: Jack F Vogel Date: Fri, 29 Feb 2008 22:38:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/em if_em.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 22:38:12 -0000 jfv 2008-02-29 22:38:12 UTC FreeBSD src repository Modified files: sys/dev/em if_em.h Log: Need to add define of FAST interrupts as default Revision Changes Path 1.67 +3 -0 src/sys/dev/em/if_em.h From owner-cvs-all@FreeBSD.ORG Fri Feb 29 22:41:37 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2937A1065673; Fri, 29 Feb 2008 22:41:37 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 01CC18FC25; Fri, 29 Feb 2008 22:41:37 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TMfauQ014383; Fri, 29 Feb 2008 22:41:36 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TMfao0014382; Fri, 29 Feb 2008 22:41:36 GMT (envelope-from marcel) Message-Id: <200802292241.m1TMfao0014382@repoman.freebsd.org> From: Marcel Moolenaar Date: Fri, 29 Feb 2008 22:41:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/geom/part g_part_mbr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 22:41:37 -0000 marcel 2008-02-29 22:41:36 UTC FreeBSD src repository Modified files: sys/geom/part g_part_mbr.c Log: Follow-up improvements to the handling of false positives: If the partition table is empty, check to see if we have something that looks sufficiently like a BPB. On non-i386 machines, the boot sector typically doesn't contain boot code; the end of the boot sector is all zeroes. This is also where the partition table is for MBRs. We only check the sector size and cluster size, as that seems to be the most reliable across implementations, BPB versions and platforms. Revision Changes Path 1.4 +32 -3 src/sys/geom/part/g_part_mbr.c From owner-cvs-all@FreeBSD.ORG Fri Feb 29 22:42:30 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 64E7D106566C; Fri, 29 Feb 2008 22:42:30 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3E4F08FC28; Fri, 29 Feb 2008 22:42:30 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TMgUWH014451; Fri, 29 Feb 2008 22:42:30 GMT (envelope-from jfv@repoman.freebsd.org) Received: (from jfv@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TMgU9l014450; Fri, 29 Feb 2008 22:42:30 GMT (envelope-from jfv) Message-Id: <200802292242.m1TMgU9l014450@repoman.freebsd.org> From: Jack F Vogel Date: Fri, 29 Feb 2008 22:42:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/modules Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 22:42:30 -0000 jfv 2008-02-29 22:42:30 UTC FreeBSD src repository Modified files: sys/modules Makefile Log: Add igb driver to the build Revision Changes Path 1.555 +1 -0 src/sys/modules/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 22:44:29 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E12F1106566C; Fri, 29 Feb 2008 22:44:29 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B9F358FC39; Fri, 29 Feb 2008 22:44:29 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TMiT1X014595; Fri, 29 Feb 2008 22:44:29 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TMiT9d014594; Fri, 29 Feb 2008 22:44:29 GMT (envelope-from mezz) Message-Id: <200802292244.m1TMiT9d014594@repoman.freebsd.org> From: Jeremy Messenger Date: Fri, 29 Feb 2008 22:44:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/libcaca/files patch-src_mygetopt.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 22:44:30 -0000 mezz 2008-02-29 22:44:29 UTC FreeBSD ports repository Added files: graphics/libcaca/files patch-src_mygetopt.c Log: Fix the build on amd64. Reported by: pointyhat Submitted by: Mel Marcin Cieslak Revision Changes Path 1.1 +11 -0 ports/graphics/libcaca/files/patch-src_mygetopt.c (new) From owner-cvs-all@FreeBSD.ORG Fri Feb 29 22:53:00 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4025D1065670; Fri, 29 Feb 2008 22:53:00 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 190888FC15; Fri, 29 Feb 2008 22:53:00 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TMqxQE014866; Fri, 29 Feb 2008 22:52:59 GMT (envelope-from jfv@repoman.freebsd.org) Received: (from jfv@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TMqxqN014865; Fri, 29 Feb 2008 22:52:59 GMT (envelope-from jfv) Message-Id: <200802292252.m1TMqxqN014865@repoman.freebsd.org> From: Jack F Vogel Date: Fri, 29 Feb 2008 22:52:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/modules Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 22:53:00 -0000 jfv 2008-02-29 22:52:59 UTC FreeBSD src repository Modified files: sys/modules Makefile Log: Last change was incomplete, instantiate the igb variable... Revision Changes Path 1.556 +4 -0 src/sys/modules/Makefile From owner-cvs-all@FreeBSD.ORG Fri Feb 29 23:09:47 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A784106566C; Fri, 29 Feb 2008 23:09:47 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 52CD58FC15; Fri, 29 Feb 2008 23:09:47 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TN9lmZ016564; Fri, 29 Feb 2008 23:09:47 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TN9iuo016563; Fri, 29 Feb 2008 23:09:44 GMT (envelope-from bmah) Message-Id: <200802292309.m1TN9iuo016563@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 29 Feb 2008 23:09:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 23:09:47 -0000 bmah 2008-02-29 23:09:42 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) release/doc/en_US.ISO8859-1/errata article.sgml Log: New 7.0 post-release errata: tcpdump(1) TX/RX printing issue, Linuxulator mmap(2) issue, re(4) data corruption issue, TCP options issue, page footer in release documentation, wrong KDE version number. Reviewed by: kensmith Submitted by: a cast of several Revision Changes Path 1.73.4.1 +33 -22 src/release/doc/en_US.ISO8859-1/errata/article.sgml From owner-cvs-all@FreeBSD.ORG Fri Feb 29 23:45:30 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F20941065670; Fri, 29 Feb 2008 23:45:29 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id CA77B8FC1A; Fri, 29 Feb 2008 23:45:29 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TNjTr3017799; Fri, 29 Feb 2008 23:45:29 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TNjTX0017798; Fri, 29 Feb 2008 23:45:29 GMT (envelope-from sat) Message-Id: <200802292345.m1TNjTX0017798@repoman.freebsd.org> From: Andrew Pantyukhin Date: Fri, 29 Feb 2008 23:45:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/linux-thunderbird Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 23:45:30 -0000 sat 2008-02-29 23:45:29 UTC FreeBSD ports repository Modified files: mail/linux-thunderbird Makefile distinfo pkg-plist Log: - Update to 2.0.0.12 Revision Changes Path 1.16 +1 -1 ports/mail/linux-thunderbird/Makefile 1.13 +3 -3 ports/mail/linux-thunderbird/distinfo 1.6 +10 -0 ports/mail/linux-thunderbird/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Feb 29 23:52:05 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6917F1065670; Fri, 29 Feb 2008 23:52:05 +0000 (UTC) (envelope-from niclas.zeising@gmail.com) Received: from mail.visit.se (smtpserver.stunet.se [85.194.0.110]) by mx1.freebsd.org (Postfix) with ESMTP id 1B6468FC15; Fri, 29 Feb 2008 23:52:04 +0000 (UTC) (envelope-from niclas.zeising@gmail.com) Received: by mail.visit.se (Postfix, from userid 503) id 6E32D36E0AB7; Sat, 1 Mar 2008 00:24:25 +0100 (CET) Received: from mail.stunet.se (mail.stunet.se [85.194.0.111]) by mail.visit.se (Postfix) with ESMTP id 102DC36E09DB; Sat, 1 Mar 2008 00:24:23 +0100 (CET) Received: from [10.0.0.2] (cust.fiber-lan.vnet.lk.85.194.50.150.stunet.se [85.194.50.150]) by mail.stunet.se (Postfix) with ESMTP id C2AA23660A; Sat, 1 Mar 2008 00:24:11 +0100 (CET) Message-ID: <47C7428C.9070609@gmail.com> Date: Fri, 29 Feb 2008 00:23:56 +0100 From: Niclas Zeising User-Agent: Thunderbird 2.0.0.9 (Windows/20071031) MIME-Version: 1.0 To: Jack F Vogel References: <200802292150.m1TLoC72010436@repoman.freebsd.org> In-Reply-To: <200802292150.m1TLoC72010436@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.0.6 (2005-12-07) on mail.visit.se X-Spam-Level: X-Spam-Status: No, score=-5.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00, DATE_IN_PAST_24_48 autolearn=ham version=3.0.6 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf files src/sys/dev/em LICENSE e1000_80003es2lan.c e1000_80003es2lan.h e1000_82540.c e1000_82541.c e1000_82541.h e1000_82542.c e1000_82543.c e1000_82543.h e1000_82571.c e1000_82571.h e1000_82575.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 23:52:05 -0000 Jack F Vogel wrote: > jfv 2008-02-29 21:50:11 UTC > > FreeBSD src repository > > Modified files: > sys/conf files > sys/dev/em LICENSE e1000_80003es2lan.c > e1000_80003es2lan.h e1000_82540.c > e1000_82541.c e1000_82541.h e1000_82542.c > e1000_82543.c e1000_82543.h e1000_82571.c > e1000_82571.h e1000_api.c e1000_api.h > e1000_defines.h e1000_hw.h > e1000_ich8lan.c e1000_ich8lan.h > e1000_mac.c e1000_mac.h e1000_manage.c > e1000_manage.h e1000_nvm.c e1000_nvm.h > e1000_osdep.h e1000_phy.c e1000_phy.h > e1000_regs.h if_em.c if_em.h > sys/modules/em Makefile > Added files: > sys/dev/igb e1000_82575.c e1000_82575.h e1000_api.c > e1000_api.h e1000_defines.h e1000_hw.h > e1000_mac.c e1000_mac.h e1000_manage.c > e1000_manage.h e1000_nvm.c e1000_nvm.h > e1000_osdep.h e1000_phy.c e1000_phy.h > e1000_regs.h if_igb.c if_igb.h > sys/modules/igb Makefile > Removed files: > sys/dev/em e1000_82575.c e1000_82575.h > Log: > This change introduces a split to the Intel E1000 driver, now rather than > just em, there is an igb driver (this follows behavior with our Linux drivers). > All adapters up to the 82575 are supported in em, and new client/desktop support > will continue to be in that adapter. > > The igb driver is for new server NICs like the 82575 and its followons. > Advanced features for virtualization and performance will be in this driver. > > Also, both drivers now have shared code that is up to the latest we have > released. Some stylistic changes as well. > > Enjoy :) > [Snip commit details] Shouldn't 'device igb' go into NOTES as well? Thanks for your excellent support! Regards! Niclas From owner-cvs-all@FreeBSD.ORG Fri Feb 29 23:53:49 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 030B2106567C; Fri, 29 Feb 2008 23:53:49 +0000 (UTC) (envelope-from nox@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D06618FC16; Fri, 29 Feb 2008 23:53:48 +0000 (UTC) (envelope-from nox@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1TNrmYs018035; Fri, 29 Feb 2008 23:53:48 GMT (envelope-from nox@repoman.freebsd.org) Received: (from nox@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1TNrmYr018034; Fri, 29 Feb 2008 23:53:48 GMT (envelope-from nox) Message-Id: <200802292353.m1TNrmYr018034@repoman.freebsd.org> From: Juergen Lock Date: Fri, 29 Feb 2008 23:53:48 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/latrine Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 23:53:49 -0000 nox 2008-02-29 23:53:48 UTC FreeBSD ports repository Modified files: games/latrine Makefile Log: Chase moved MASTER_SITE Submitted by: pointyhat via erwin Revision Changes Path 1.5 +1 -1 ports/games/latrine/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 00:02:13 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 586F21065673; Sat, 1 Mar 2008 00:02:13 +0000 (UTC) (envelope-from scf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 30E238FC17; Sat, 1 Mar 2008 00:02:13 +0000 (UTC) (envelope-from scf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m2102D2n018357; Sat, 1 Mar 2008 00:02:13 GMT (envelope-from scf@repoman.freebsd.org) Received: (from scf@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m2102D7n018356; Sat, 1 Mar 2008 00:02:13 GMT (envelope-from scf) Message-Id: <200803010002.m2102D7n018356@repoman.freebsd.org> From: Sean Farley Date: Sat, 1 Mar 2008 00:02:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/tools/regression/environ envctl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 00:02:13 -0000 scf 2008-03-01 00:02:12 UTC FreeBSD src repository Modified files: tools/regression/environ envctl.c Log: Remove a dereference. It was unintended and a no-op. Use the correct value of errno. Although the errno value passed into printf() follows the *env() call, it is not guaranteed to be the errno from that call. When I wrote the regression tester, the environment I used did pass the errno from the call. Consolidate the print for the return code and errno into a function in the process of fixing this. Approved by: wes (mentor) Revision Changes Path 1.3 +30 -20 src/tools/regression/environ/envctl.c From owner-cvs-all@FreeBSD.ORG Sat Mar 1 00:03:53 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 74BCC1065674; Sat, 1 Mar 2008 00:03:53 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 45ED28FC16; Sat, 1 Mar 2008 00:03:53 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m2103r2Y019581; Sat, 1 Mar 2008 00:03:53 GMT (envelope-from jfv@repoman.freebsd.org) Received: (from jfv@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m2103rNp019580; Sat, 1 Mar 2008 00:03:53 GMT (envelope-from jfv) Message-Id: <200803010003.m2103rNp019580@repoman.freebsd.org> From: Jack F Vogel Date: Sat, 1 Mar 2008 00:03:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/conf NOTES X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 00:03:53 -0000 jfv 2008-03-01 00:03:53 UTC FreeBSD src repository Modified files: sys/conf NOTES Log: Add entries for em, igb, and ixgbe adapters. Revision Changes Path 1.1470 +4 -0 src/sys/conf/NOTES From owner-cvs-all@FreeBSD.ORG Sat Mar 1 00:18:06 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 37F411065671 for ; Sat, 1 Mar 2008 00:18:06 +0000 (UTC) (envelope-from jfvogel@gmail.com) Received: from gv-out-0910.google.com (gv-out-0910.google.com [216.239.58.188]) by mx1.freebsd.org (Postfix) with ESMTP id B844C8FC1C for ; Sat, 1 Mar 2008 00:18:05 +0000 (UTC) (envelope-from jfvogel@gmail.com) Received: by gv-out-0910.google.com with SMTP id n40so2160927gve.39 for ; Fri, 29 Feb 2008 16:18:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=GYbGBeTvffBGWWfrjrmOSz/HVgBzbCZLLM80BmervWo=; b=tnhlGn0liUUZBHYbsmVWwGP+KnNN9OFHjdIlQ1uNm9UoetJjOAe5biZX5PeoUt8jYZzXJkmEFeWh90mW5CHO8oLuOwWnBhLFokoKpEO6fq344IY9C8GsiduUbvSl9Md6raa5daDbBHZss6Q4t3FcEmyzprNMpy6mhnZxfyIWfBA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=J2L2VuGudHi2NIcCVwQLH1dVFW5Dt/ouHKks7/RcVOKcGDZmNUfmACFTLvARw9BQcBmp5W4AFlZFGdtUcDMstxtFy6dmo87im1YAHdUPvUiV0j5oDBQ9oLltfpN68gu2S8dygTs+aSaepElHuubZ8x213iJpVtxmMjiNREmnv1g= Received: by 10.114.174.2 with SMTP id w2mr12481563wae.17.1204329167172; Fri, 29 Feb 2008 15:52:47 -0800 (PST) Received: by 10.114.177.4 with HTTP; Fri, 29 Feb 2008 15:52:46 -0800 (PST) Message-ID: <2a41acea0802291552j60a2d5f3w4fc66f7a44fb6c3@mail.gmail.com> Date: Fri, 29 Feb 2008 15:52:46 -0800 From: "Jack Vogel" To: "Niclas Zeising" In-Reply-To: <47C7428C.9070609@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200802292150.m1TLoC72010436@repoman.freebsd.org> <47C7428C.9070609@gmail.com> Cc: Jack F Vogel , cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/conf files src/sys/dev/em LICENSE e1000_80003es2lan.c e1000_80003es2lan.h e1000_82540.c e1000_82541.c e1000_82541.h e1000_82542.c e1000_82543.c e1000_82543.h e1000_82571.c e1000_82571.h e1000_82575.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 00:18:06 -0000 Ahhh, good point, I will do so. Thanks :) On Thu, Feb 28, 2008 at 3:23 PM, Niclas Zeising wrote: > > Jack F Vogel wrote: > > jfv 2008-02-29 21:50:11 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/conf files > > sys/dev/em LICENSE e1000_80003es2lan.c > > e1000_80003es2lan.h e1000_82540.c > > e1000_82541.c e1000_82541.h e1000_82542.c > > e1000_82543.c e1000_82543.h e1000_82571.c > > e1000_82571.h e1000_api.c e1000_api.h > > e1000_defines.h e1000_hw.h > > e1000_ich8lan.c e1000_ich8lan.h > > e1000_mac.c e1000_mac.h e1000_manage.c > > e1000_manage.h e1000_nvm.c e1000_nvm.h > > e1000_osdep.h e1000_phy.c e1000_phy.h > > e1000_regs.h if_em.c if_em.h > > sys/modules/em Makefile > > Added files: > > sys/dev/igb e1000_82575.c e1000_82575.h e1000_api.c > > e1000_api.h e1000_defines.h e1000_hw.h > > e1000_mac.c e1000_mac.h e1000_manage.c > > e1000_manage.h e1000_nvm.c e1000_nvm.h > > e1000_osdep.h e1000_phy.c e1000_phy.h > > e1000_regs.h if_igb.c if_igb.h > > sys/modules/igb Makefile > > Removed files: > > sys/dev/em e1000_82575.c e1000_82575.h > > Log: > > This change introduces a split to the Intel E1000 driver, now rather than > > just em, there is an igb driver (this follows behavior with our Linux drivers). > > All adapters up to the 82575 are supported in em, and new client/desktop support > > will continue to be in that adapter. > > > > The igb driver is for new server NICs like the 82575 and its followons. > > Advanced features for virtualization and performance will be in this driver. > > > > Also, both drivers now have shared code that is up to the latest we have > > released. Some stylistic changes as well. > > > > Enjoy :) > > > > [Snip commit details] > > Shouldn't 'device igb' go into NOTES as well? > > Thanks for your excellent support! > Regards! > Niclas > From owner-cvs-all@FreeBSD.ORG Sat Mar 1 00:38:16 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6F801106566C; Sat, 1 Mar 2008 00:38:16 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 450A18FC16; Sat, 1 Mar 2008 00:38:16 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m210cF41021776; Sat, 1 Mar 2008 00:38:15 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m210cFrN021775; Sat, 1 Mar 2008 00:38:15 GMT (envelope-from simon) Message-Id: <200803010038.m210cFrN021775@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 1 Mar 2008 00:38:15 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/security charter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 00:38:16 -0000 simon 2008-03-01 00:38:15 UTC FreeBSD doc repository Modified files: en/security charter.sgml Log: Remove duplicate header. Submitted by: bz Revision Changes Path 1.6 +1 -2 www/en/security/charter.sgml From owner-cvs-all@FreeBSD.ORG Sat Mar 1 01:09:36 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C59D1065670; Sat, 1 Mar 2008 01:09:36 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 335218FC12; Sat, 1 Mar 2008 01:09:36 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m2119ZKQ032833; Sat, 1 Mar 2008 01:09:35 GMT (envelope-from jfv@repoman.freebsd.org) Received: (from jfv@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m2119ZtW032832; Sat, 1 Mar 2008 01:09:35 GMT (envelope-from jfv) Message-Id: <200803010109.m2119ZtW032832@repoman.freebsd.org> From: Jack F Vogel Date: Sat, 1 Mar 2008 01:09:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/conf NOTES X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 01:09:36 -0000 jfv 2008-03-01 01:09:35 UTC FreeBSD src repository Modified files: sys/conf NOTES Log: Temporarily comment out new entries due to build problems, to be resolved next week. Revision Changes Path 1.1471 +3 -3 src/sys/conf/NOTES From owner-cvs-all@FreeBSD.ORG Sat Mar 1 01:44:31 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7BB6410656CA; Sat, 1 Mar 2008 01:44:31 +0000 (UTC) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 504648FC26; Sat, 1 Mar 2008 01:44:31 +0000 (UTC) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m211iVTI034047; Sat, 1 Mar 2008 01:44:31 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m211iVpw034046; Sat, 1 Mar 2008 01:44:31 GMT (envelope-from mnag) Message-Id: <200803010144.m211iVpw034046@repoman.freebsd.org> From: Marcus Alves Grando Date: Sat, 1 Mar 2008 01:44:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/postfix Makefile pkg-install ports/mail/postfix/files patch-conf::main.cf patch-conf__postfix-files X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 01:44:32 -0000 mnag 2008-03-01 01:44:31 UTC FreeBSD ports repository Modified files: mail/postfix Makefile pkg-install mail/postfix/files patch-conf::main.cf Added files: mail/postfix/files patch-conf__postfix-files Log: - Fix data_directory PR: 121236 Submitted by: Artis Caune Revision Changes Path 1.137 +2 -0 ports/mail/postfix/Makefile 1.4 +12 -5 ports/mail/postfix/files/patch-conf::main.cf 1.1 +11 -0 ports/mail/postfix/files/patch-conf__postfix-files (new) 1.26 +2 -1 ports/mail/postfix/pkg-install From owner-cvs-all@FreeBSD.ORG Sat Mar 1 01:50:09 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5501F1065670; Sat, 1 Mar 2008 01:50:09 +0000 (UTC) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 291738FC12; Sat, 1 Mar 2008 01:50:09 +0000 (UTC) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m211o9YO034281; Sat, 1 Mar 2008 01:50:09 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m211o9VS034280; Sat, 1 Mar 2008 01:50:09 GMT (envelope-from mnag) Message-Id: <200803010150.m211o9VS034280@repoman.freebsd.org> From: Marcus Alves Grando Date: Sat, 1 Mar 2008 01:50:09 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/postfix-current Makefile pkg-install ports/mail/postfix-current/files patch-conf::main.cf patch-conf__postfix-files X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 01:50:09 -0000 mnag 2008-03-01 01:50:09 UTC FreeBSD ports repository Modified files: mail/postfix-current Makefile pkg-install mail/postfix-current/files patch-conf::main.cf Added files: mail/postfix-current/files patch-conf__postfix-files Log: - Fix data_directory. Backported from mail/postfix Revision Changes Path 1.222 +2 -0 ports/mail/postfix-current/Makefile 1.3 +12 -5 ports/mail/postfix-current/files/patch-conf::main.cf 1.1 +11 -0 ports/mail/postfix-current/files/patch-conf__postfix-files (new) 1.24 +2 -1 ports/mail/postfix-current/pkg-install From owner-cvs-all@FreeBSD.ORG Sat Mar 1 01:55:27 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F07BA1065670; Sat, 1 Mar 2008 01:55:27 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DE8C48FC12; Sat, 1 Mar 2008 01:55:27 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m211tR6h034481; Sat, 1 Mar 2008 01:55:27 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m211tRx4034480; Sat, 1 Mar 2008 01:55:27 GMT (envelope-from simon) Message-Id: <200803010155.m211tRx4034480@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 1 Mar 2008 01:55:27 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/security Makefile advisories.sgml mkindex.xsl security.sgml so_public_key.asc www/share/sgml libcommon.xsl navibar.ent X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 01:55:28 -0000 simon 2008-03-01 01:55:27 UTC FreeBSD doc repository Modified files: en/security Makefile mkindex.xsl security.sgml share/sgml libcommon.xsl navibar.ent Added files: en/security advisories.sgml so_public_key.asc Log: - Split advisories into separate page and make it a table. - Add link to the new advisory page into the support sidebar. - Do not include release info in advisory list as it's not that interesting in this context. - Try to make it more clear where to report security issues to. - Include public key directly on web site instead of referring to FTP site. - Remove some stale information. - Misc minor cleanup. Reviewed by: cperciva, remko, bz (various versions) Revision Changes Path 1.16 +5 -1 www/en/security/Makefile 1.1 +26 -0 www/en/security/advisories.sgml (new) 1.6 +1 -7 www/en/security/mkindex.xsl 1.200 +42 -74 www/en/security/security.sgml 1.1 +52 -0 www/en/security/so_public_key.asc (new) 1.16 +26 -30 www/share/sgml/libcommon.xsl 1.16 +5 -2 www/share/sgml/navibar.ent From owner-cvs-all@FreeBSD.ORG Sat Mar 1 02:07:35 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DD9A91065677; Sat, 1 Mar 2008 02:07:35 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B2CD18FC19; Sat, 1 Mar 2008 02:07:35 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m2127ZFn036034; Sat, 1 Mar 2008 02:07:35 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m2127ZNT036033; Sat, 1 Mar 2008 02:07:35 GMT (envelope-from clsung) Message-Id: <200803010207.m2127ZNT036033@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 1 Mar 2008 02:07:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/p5-WWW-Wikipedia Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 02:07:36 -0000 clsung 2008-03-01 02:07:35 UTC FreeBSD ports repository Modified files: www/p5-WWW-Wikipedia Makefile distinfo Log: - Update to 1.94 (1.9.4) Changes: http://search.cpan.org/dist/WWW-Wikipedia/Changes Revision Changes Path 1.16 +1 -1 ports/www/p5-WWW-Wikipedia/Makefile 1.15 +3 -3 ports/www/p5-WWW-Wikipedia/distinfo From owner-cvs-all@FreeBSD.ORG Sat Mar 1 02:08:22 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0568E106566B; Sat, 1 Mar 2008 02:08:22 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id CED528FC23; Sat, 1 Mar 2008 02:08:21 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m2128Lwv036079; Sat, 1 Mar 2008 02:08:21 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m2128LuL036078; Sat, 1 Mar 2008 02:08:21 GMT (envelope-from clsung) Message-Id: <200803010208.m2128LuL036078@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 1 Mar 2008 02:08:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/p5-Net-Whois-Raw Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 02:08:22 -0000 clsung 2008-03-01 02:08:21 UTC FreeBSD ports repository Modified files: net/p5-Net-Whois-Raw Makefile distinfo Log: - Update to 1.42 Changes: http://search.cpan.org/dist/Net-Whois-Raw/Changes Revision Changes Path 1.27 +1 -1 ports/net/p5-Net-Whois-Raw/Makefile 1.28 +3 -3 ports/net/p5-Net-Whois-Raw/distinfo From owner-cvs-all@FreeBSD.ORG Sat Mar 1 02:12:08 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0FB4E106566B; Sat, 1 Mar 2008 02:12:08 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D8E548FC12; Sat, 1 Mar 2008 02:12:07 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m212C7s8036255; Sat, 1 Mar 2008 02:12:07 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m212C7OW036254; Sat, 1 Mar 2008 02:12:07 GMT (envelope-from clsung) Message-Id: <200803010212.m212C7OW036254@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 1 Mar 2008 02:12:07 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/p5-XML-Writer Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 02:12:08 -0000 clsung 2008-03-01 02:12:07 UTC FreeBSD ports repository Modified files: textproc/p5-XML-Writer Makefile distinfo Log: - Update to 0.604 Changes: http://search.cpan.org/dist/XML-Writer/Changes Revision Changes Path 1.20 +2 -3 ports/textproc/p5-XML-Writer/Makefile 1.15 +3 -3 ports/textproc/p5-XML-Writer/distinfo From owner-cvs-all@FreeBSD.ORG Sat Mar 1 02:13:21 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8EDFC106566B; Sat, 1 Mar 2008 02:13:21 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 63D208FC1B; Sat, 1 Mar 2008 02:13:21 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m212DLRu036299; Sat, 1 Mar 2008 02:13:21 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m212DLBn036298; Sat, 1 Mar 2008 02:13:21 GMT (envelope-from clsung) Message-Id: <200803010213.m212DLBn036298@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 1 Mar 2008 02:13:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/p5-URI-Template Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 02:13:21 -0000 clsung 2008-03-01 02:13:21 UTC FreeBSD ports repository Modified files: net/p5-URI-Template Makefile distinfo Log: - Update to 0.13 Changes: http://search.cpan.org/dist/URI-Template/Changes Revision Changes Path 1.4 +1 -1 ports/net/p5-URI-Template/Makefile 1.4 +3 -3 ports/net/p5-URI-Template/distinfo From owner-cvs-all@FreeBSD.ORG Sat Mar 1 02:23:23 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C98E9106566C for ; Sat, 1 Mar 2008 02:23:23 +0000 (UTC) (envelope-from simon@zaphod.nitro.dk) Received: from mx.nitro.dk (zarniwoop.nitro.dk [83.92.207.38]) by mx1.freebsd.org (Postfix) with ESMTP id 824278FC13 for ; Sat, 1 Mar 2008 02:23:22 +0000 (UTC) (envelope-from simon@zaphod.nitro.dk) Received: from zaphod.nitro.dk (unknown [192.168.3.39]) by mx.nitro.dk (Postfix) with ESMTP id 863A11E8C00; Sat, 1 Mar 2008 02:23:09 +0000 (UTC) Received: by zaphod.nitro.dk (Postfix, from userid 3000) id D84D111492; Fri, 29 Feb 2008 18:23:19 -0800 (PST) Date: Fri, 29 Feb 2008 18:23:19 -0800 From: "Simon L. Nielsen" To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20080301022317.GB1102@zaphod.nitro.dk> References: <200803010155.m211tRx4034480@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200803010155.m211tRx4034480@repoman.freebsd.org> User-Agent: Mutt/1.5.16 (2007-06-09) Cc: Subject: Re: cvs commit: www/en/security Makefile advisories.sgml mkindex.xsl security.sgml so_public_key.asc www/share/sgml libcommon.xsl navibar.ent X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 02:23:23 -0000 On 2008.03.01 01:55:27 +0000, Simon L. Nielsen wrote: > simon 2008-03-01 01:55:27 UTC > > FreeBSD doc repository > > Modified files: > en/security Makefile mkindex.xsl security.sgml > share/sgml libcommon.xsl navibar.ent > Added files: > en/security advisories.sgml so_public_key.asc > Log: > - Split advisories into separate page and make it a table. This is puts a few English words on the translated pages. I'm very open to ideas on how to not do that, but given that (from a quick check) only one version of the translated security pages isn't seriously out of date I didn't consider this a blocker to commit this. Hopefully this is just step one in larger improvment of the security pages, but I wanted to get this committed as I have had the changes locally for a looong time and I had the time to polish it off for commit now. -- Simon L. Nielsen From owner-cvs-all@FreeBSD.ORG Sat Mar 1 02:34:08 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7FFE41065671; Sat, 1 Mar 2008 02:34:08 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 542118FC1C; Sat, 1 Mar 2008 02:34:08 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m212Y81f049096; Sat, 1 Mar 2008 02:34:08 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m212Y88L049095; Sat, 1 Mar 2008 02:34:08 GMT (envelope-from vanilla) Message-Id: <200803010234.m212Y88L049095@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Sat, 1 Mar 2008 02:34:08 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/google-ctemplate Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 02:34:08 -0000 vanilla 2008-03-01 02:34:08 UTC FreeBSD ports repository Modified files: textproc/google-ctemplate Makefile distinfo Log: Upgrade to 0.9. Approved by: maintainer (clsung@) Revision Changes Path 1.10 +1 -1 ports/textproc/google-ctemplate/Makefile 1.9 +3 -3 ports/textproc/google-ctemplate/distinfo From owner-cvs-all@FreeBSD.ORG Sat Mar 1 02:36:20 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8913E1065671; Sat, 1 Mar 2008 02:36:20 +0000 (UTC) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5E3038FC1A; Sat, 1 Mar 2008 02:36:20 +0000 (UTC) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m212aKGV049217; Sat, 1 Mar 2008 02:36:20 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m212aKVp049216; Sat, 1 Mar 2008 02:36:20 GMT (envelope-from murray) Message-Id: <200803010236.m212aKVp049216@repoman.freebsd.org> From: Murray Stokely Date: Sat, 1 Mar 2008 02:36:20 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/news/2006 news.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 02:36:20 -0000 murray 2008-03-01 02:36:20 UTC FreeBSD doc repository Modified files: en/news/2006 news.xml Log: Note that Shteryana Shopova was a Summer of Code alumnus in the same style as newsflash entries for other students that were granted commit bits to make it easier to see how many SoC students have been given commit bits over the last 3 years. Revision Changes Path 1.2 +9 -3 www/en/news/2006/news.xml From owner-cvs-all@FreeBSD.ORG Sat Mar 1 02:46:05 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DFD72106566C; Sat, 1 Mar 2008 02:46:05 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B49E58FC27; Sat, 1 Mar 2008 02:46:05 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m212k4PP049520; Sat, 1 Mar 2008 02:46:04 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m212k40e049515; Sat, 1 Mar 2008 02:46:04 GMT (envelope-from marcus) Message-Id: <200803010246.m212k40e049515@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 1 Mar 2008 02:46:03 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/gnome/docs faq2.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 02:46:06 -0000 marcus 2008-03-01 02:46:03 UTC FreeBSD doc repository Modified files: en/gnome/docs faq2.sgml Log: Correct a typo in the HAL debugging instructions. Reported by: Andriy Gapon Revision Changes Path 1.130 +2 -2 www/en/gnome/docs/faq2.sgml From owner-cvs-all@FreeBSD.ORG Sat Mar 1 02:55:11 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A9F5F1065671; Sat, 1 Mar 2008 02:55:11 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7DB478FC18; Sat, 1 Mar 2008 02:55:11 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m212tBC9049791; Sat, 1 Mar 2008 02:55:11 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m212tBdq049790; Sat, 1 Mar 2008 02:55:11 GMT (envelope-from clsung) Message-Id: <200803010255.m212tBdq049790@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 1 Mar 2008 02:55:10 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-Test-Harness Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 02:55:11 -0000 clsung 2008-03-01 02:55:10 UTC FreeBSD ports repository Modified files: devel/p5-Test-Harness Makefile distinfo pkg-plist Log: - Update to 3.10 Changes: http://search.cpan.org/dist/Test-Harness/Changes Revision Changes Path 1.32 +2 -1 ports/devel/p5-Test-Harness/Makefile 1.24 +3 -3 ports/devel/p5-Test-Harness/distinfo 1.13 +1 -0 ports/devel/p5-Test-Harness/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Mar 1 02:56:17 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 57EF6106568B; Sat, 1 Mar 2008 02:56:17 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2B3898FC33; Sat, 1 Mar 2008 02:56:17 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m212uHWH049872; Sat, 1 Mar 2008 02:56:17 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m212uHZM049871; Sat, 1 Mar 2008 02:56:17 GMT (envelope-from clsung) Message-Id: <200803010256.m212uHZM049871@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 1 Mar 2008 02:56:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-Test-Simple Makefile distinfo ports/devel/p5-Test-Simple/files patch-Makefile.PL X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 02:56:17 -0000 clsung 2008-03-01 02:56:17 UTC FreeBSD ports repository Modified files: devel/p5-Test-Simple Makefile distinfo Removed files: devel/p5-Test-Simple/files patch-Makefile.PL Log: - Update to 0.78 Changes: http://search.cpan.org/dist/Test-Simple/Changes Revision Changes Path 1.34 +1 -1 ports/devel/p5-Test-Simple/Makefile 1.29 +3 -3 ports/devel/p5-Test-Simple/distinfo 1.5 +0 -11 ports/devel/p5-Test-Simple/files/patch-Makefile.PL (dead) From owner-cvs-all@FreeBSD.ORG Sat Mar 1 03:25:35 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A0E21106566C; Sat, 1 Mar 2008 03:25:34 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5B03E8FC20; Sat, 1 Mar 2008 03:25:34 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m213PYl3052041; Sat, 1 Mar 2008 03:25:34 GMT (envelope-from jfv@repoman.freebsd.org) Received: (from jfv@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m213PYme052040; Sat, 1 Mar 2008 03:25:34 GMT (envelope-from jfv) Message-Id: <200803010325.m213PYme052040@repoman.freebsd.org> From: Jack F Vogel Date: Sat, 1 Mar 2008 03:25:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/igb if_igb.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 03:25:35 -0000 jfv 2008-03-01 03:25:34 UTC FreeBSD src repository Modified files: sys/dev/igb if_igb.c Log: Missed some code that is ifdef STRICT_ALIGN :( Revision Changes Path 1.2 +1 -1 src/sys/dev/igb/if_igb.c From owner-cvs-all@FreeBSD.ORG Sat Mar 1 03:34:15 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4B9E01065678; Sat, 1 Mar 2008 03:34:15 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1E3818FC28; Sat, 1 Mar 2008 03:34:15 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m213YEqk052359; Sat, 1 Mar 2008 03:34:14 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m213YE5P052358; Sat, 1 Mar 2008 03:34:14 GMT (envelope-from dinoex) Message-Id: <200803010334.m213YE5P052358@repoman.freebsd.org> From: Dirk Meyer Date: Sat, 1 Mar 2008 03:34:14 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-mgmt/hobbit-client Makefile ports/net-mgmt/hobbit-client/files patch-freebsd-meminfo.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 03:34:15 -0000 dinoex 2008-03-01 03:34:14 UTC FreeBSD ports repository Modified files: net-mgmt/hobbit-client Makefile Added files: net-mgmt/hobbit-client/files patch-freebsd-meminfo.c Log: - Fix report of free memory on amd64 Submitted by: Florian Smeets Obtained from: http://www.hobbitmon.com/hobbiton/2006/10/msg00432.html Revision Changes Path 1.3 +1 -0 ports/net-mgmt/hobbit-client/Makefile 1.1 +11 -0 ports/net-mgmt/hobbit-client/files/patch-freebsd-meminfo.c (new) From owner-cvs-all@FreeBSD.ORG Sat Mar 1 03:56:08 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2144B1065670; Sat, 1 Mar 2008 03:56:08 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E8D558FC1B; Sat, 1 Mar 2008 03:56:07 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m213u75W053173; Sat, 1 Mar 2008 03:56:07 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m213u7VN053172; Sat, 1 Mar 2008 03:56:07 GMT (envelope-from vanilla) Message-Id: <200803010356.m213u7VN053172@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Sat, 1 Mar 2008 03:56:07 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/libmrss Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 03:56:08 -0000 vanilla 2008-03-01 03:56:07 UTC FreeBSD ports repository Modified files: textproc/libmrss Makefile distinfo Log: Upgrade to 0.19.1. Approved by: maintainer (clsung@) Revision Changes Path 1.11 +1 -1 ports/textproc/libmrss/Makefile 1.7 +3 -3 ports/textproc/libmrss/distinfo From owner-cvs-all@FreeBSD.ORG Sat Mar 1 03:58:49 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DF6EF106566B; Sat, 1 Mar 2008 03:58:49 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B3A1A8FC2A; Sat, 1 Mar 2008 03:58:49 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m213wnur053270; Sat, 1 Mar 2008 03:58:49 GMT (envelope-from jfv@repoman.freebsd.org) Received: (from jfv@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m213wnOh053269; Sat, 1 Mar 2008 03:58:49 GMT (envelope-from jfv) Message-Id: <200803010358.m213wnOh053269@repoman.freebsd.org> From: Jack F Vogel Date: Sat, 1 Mar 2008 03:58:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/conf files X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 03:58:50 -0000 jfv 2008-03-01 03:58:49 UTC FreeBSD src repository Modified files: sys/conf files Log: Somehow missed the stanza for 575 in the em driver Revision Changes Path 1.1273 +0 -2 src/sys/conf/files From owner-cvs-all@FreeBSD.ORG Sat Mar 1 04:08:12 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0EFC21065672; Sat, 1 Mar 2008 04:08:12 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D653B8FC12; Sat, 1 Mar 2008 04:08:11 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m2148Bkk054792; Sat, 1 Mar 2008 04:08:11 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m2148BYg054791; Sat, 1 Mar 2008 04:08:11 GMT (envelope-from tabthorpe) Message-Id: <200803010408.m2148BYg054791@repoman.freebsd.org> From: Thomas Abthorpe Date: Sat, 1 Mar 2008 04:08:11 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 04:08:12 -0000 tabthorpe 2008-03-01 04:08:11 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: - Document pcre -- buffer overflow vulnerability PR: ports/121224 Submitted by: Nick Barkas Revision Changes Path 1.1572 +30 -1 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Sat Mar 1 04:10:21 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 17C881065671; Sat, 1 Mar 2008 04:10:21 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DD8338FC12; Sat, 1 Mar 2008 04:10:20 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m214AKH5054923; Sat, 1 Mar 2008 04:10:20 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m214AK3o054922; Sat, 1 Mar 2008 04:10:20 GMT (envelope-from bmah) Message-Id: <200803010410.m214AK3o054922@repoman.freebsd.org> From: "Bruce A. Mah" Date: Sat, 1 Mar 2008 04:10:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 04:10:21 -0000 bmah 2008-03-01 04:10:20 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) release/doc/en_US.ISO8859-1/errata article.sgml Log: Break up a long sentence to make more grammatical sense and be easier to read. Problem pointed out by: ceri Revision Changes Path 1.73.4.2 +1 -1 src/release/doc/en_US.ISO8859-1/errata/article.sgml From owner-cvs-all@FreeBSD.ORG Sat Mar 1 04:12:55 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 32528106566B; Sat, 1 Mar 2008 04:12:55 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 05F6E8FC16; Sat, 1 Mar 2008 04:12:55 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m214CsUS054997; Sat, 1 Mar 2008 04:12:54 GMT (envelope-from jfv@repoman.freebsd.org) Received: (from jfv@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m214Csp8054996; Sat, 1 Mar 2008 04:12:54 GMT (envelope-from jfv) Message-Id: <200803010412.m214Csp8054996@repoman.freebsd.org> From: Jack F Vogel Date: Sat, 1 Mar 2008 04:12:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/igb if_igb.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 04:12:55 -0000 jfv 2008-03-01 04:12:54 UTC FreeBSD src repository Modified files: sys/dev/igb if_igb.c Log: Missing braces in link routine. Revision Changes Path 1.3 +2 -1 src/sys/dev/igb/if_igb.c From owner-cvs-all@FreeBSD.ORG Sat Mar 1 04:16:40 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CA4C1106566B; Sat, 1 Mar 2008 04:16:40 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9D81B8FC15; Sat, 1 Mar 2008 04:16:40 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m214Ge7C055159; Sat, 1 Mar 2008 04:16:40 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m214GeFP055158; Sat, 1 Mar 2008 04:16:40 GMT (envelope-from bmah) Message-Id: <200803010416.m214GeFP055158@repoman.freebsd.org> From: "Bruce A. Mah" Date: Sat, 1 Mar 2008 04:16:40 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/releases/7.0R errata.html X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 04:16:41 -0000 bmah 2008-03-01 04:16:40 UTC FreeBSD doc repository Modified files: en/releases/7.0R errata.html Log: Regen from errata/article.sgml 1.73.4.2. Revision Changes Path 1.2 +37 -9 www/en/releases/7.0R/errata.html From owner-cvs-all@FreeBSD.ORG Sat Mar 1 04:33:15 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 93932106566C; Sat, 1 Mar 2008 04:33:15 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 669F88FC16; Sat, 1 Mar 2008 04:33:15 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m214XFY1055814; Sat, 1 Mar 2008 04:33:15 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m214XF4l055813; Sat, 1 Mar 2008 04:33:15 GMT (envelope-from bmah) Message-Id: <200803010433.m214XF4l055813@repoman.freebsd.org> From: "Bruce A. Mah" Date: Sat, 1 Mar 2008 04:33:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 04:33:15 -0000 bmah 2008-03-01 04:33:15 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) release/doc/en_US.ISO8859-1/errata article.sgml Log: New errata items: Wrong KDE version number, Linux mmap(2) issues, multithreaded programs and fork(2) issue. Revision Changes Path 1.73.2.54 +12 -1 src/release/doc/en_US.ISO8859-1/errata/article.sgml From owner-cvs-all@FreeBSD.ORG Sat Mar 1 04:34:08 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4BB531065677; Sat, 1 Mar 2008 04:34:08 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1EE568FC19; Sat, 1 Mar 2008 04:34:08 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m214Y7JZ055859; Sat, 1 Mar 2008 04:34:08 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m214Y7q1055858; Sat, 1 Mar 2008 04:34:07 GMT (envelope-from bmah) Message-Id: <200803010434.m214Y7q1055858@repoman.freebsd.org> From: "Bruce A. Mah" Date: Sat, 1 Mar 2008 04:34:07 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/releases/6.3R errata.html X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 04:34:08 -0000 bmah 2008-03-01 04:34:07 UTC FreeBSD doc repository Modified files: en/releases/6.3R errata.html Log: Regen from errata/article.sgml 1.73.2.54. Revision Changes Path 1.4 +16 -2 www/en/releases/6.3R/errata.html From owner-cvs-all@FreeBSD.ORG Sat Mar 1 04:36:24 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 830A51065670; Sat, 1 Mar 2008 04:36:24 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 56FA58FC18; Sat, 1 Mar 2008 04:36:24 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m214aON1055960; Sat, 1 Mar 2008 04:36:24 GMT (envelope-from jfv@repoman.freebsd.org) Received: (from jfv@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m214aOmw055959; Sat, 1 Mar 2008 04:36:24 GMT (envelope-from jfv) Message-Id: <200803010436.m214aOmw055959@repoman.freebsd.org> From: Jack F Vogel Date: Sat, 1 Mar 2008 04:36:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/igb if_igb.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 04:36:24 -0000 jfv 2008-03-01 04:36:24 UTC FreeBSD src repository Modified files: sys/dev/igb if_igb.c Log: An error in the poll routine turned up during LINT build Revision Changes Path 1.4 +1 -1 src/sys/dev/igb/if_igb.c From owner-cvs-all@FreeBSD.ORG Sat Mar 1 05:01:52 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 289CC106602A; Sat, 1 Mar 2008 05:01:52 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EF64B8FC16; Sat, 1 Mar 2008 05:01:51 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m2151pm7065859; Sat, 1 Mar 2008 05:01:51 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m2151paa065858; Sat, 1 Mar 2008 05:01:51 GMT (envelope-from tabthorpe) Message-Id: <200803010501.m2151paa065858@repoman.freebsd.org> From: Thomas Abthorpe Date: Sat, 1 Mar 2008 05:01:51 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/drood Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 05:01:52 -0000 tabthorpe 2008-03-01 05:01:51 UTC FreeBSD ports repository Modified files: www/drood Makefile distinfo Log: - Update to 1.26 PR: ports/121248 Submitted by: James Bailie Revision Changes Path 1.17 +1 -1 ports/www/drood/Makefile 1.17 +3 -3 ports/www/drood/distinfo From owner-cvs-all@FreeBSD.ORG Sat Mar 1 05:03:07 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2604A1065F1B; Sat, 1 Mar 2008 05:03:07 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4919E8FC25; Sat, 1 Mar 2008 05:03:06 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21536Io066376; Sat, 1 Mar 2008 05:03:06 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m215365v066375; Sat, 1 Mar 2008 05:03:06 GMT (envelope-from tabthorpe) Message-Id: <200803010503.m215365v066375@repoman.freebsd.org> From: Thomas Abthorpe Date: Sat, 1 Mar 2008 05:03:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/virtualmin Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 05:03:07 -0000 tabthorpe 2008-03-01 05:03:06 UTC FreeBSD ports repository Modified files: sysutils/virtualmin Makefile distinfo pkg-plist Log: - Update to 3.53 Revision Changes Path 1.26 +1 -2 ports/sysutils/virtualmin/Makefile 1.24 +3 -3 ports/sysutils/virtualmin/distinfo 1.19 +5 -0 ports/sysutils/virtualmin/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Mar 1 06:21:18 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 85C1A1065670; Sat, 1 Mar 2008 06:21:18 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6E0F58FC22; Sat, 1 Mar 2008 06:21:18 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m216LIcI071228; Sat, 1 Mar 2008 06:21:18 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m216LIaJ071227; Sat, 1 Mar 2008 06:21:18 GMT (envelope-from marcus) Message-Id: <200803010621.m216LIaJ071227@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 1 Mar 2008 06:21:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/guile Makefile distinfo pkg-plist ports/lang/guile/files extra-patch-ia64 patch-ag patch-config.h.in patch-configure patch-configure.in patch-libguile___scm.h patch-libguile_eval.c patch-libguile_gc_os_dep.c patch-libguile_gen-scmconfig.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 06:21:18 -0000 marcus 2008-03-01 06:21:17 UTC FreeBSD ports repository Modified files: lang/guile Makefile distinfo pkg-plist lang/guile/files patch-libguile___scm.h patch-libguile_gc_os_dep.c Added files: lang/guile/files patch-config.h.in patch-configure.in patch-libguile_eval.c patch-libguile_gen-scmconfig.c patch-libguile_numbers.c patch-libguile_pthread-threads.h patch-libguile_read.c patch-libguile_threads.c Removed files: lang/guile/files extra-patch-ia64 patch-ag patch-configure patch-libguile_load.c patch-srfi_srfi-4.c Log: Update to 1.8.4, and assign maintainership to submitter. PR: 121137 Submitted by: David Barksdale Revision Changes Path 1.66 +4 -16 ports/lang/guile/Makefile 1.13 +3 -3 ports/lang/guile/distinfo 1.5 +0 -94 ports/lang/guile/files/extra-patch-ia64 (dead) 1.2 +0 -11 ports/lang/guile/files/patch-ag (dead) 1.1 +18 -0 ports/lang/guile/files/patch-config.h.in (new) 1.5 +0 -20 ports/lang/guile/files/patch-configure (dead) 1.1 +28 -0 ports/lang/guile/files/patch-configure.in (new) 1.3 +4 -4 ports/lang/guile/files/patch-libguile___scm.h 1.1 +11 -0 ports/lang/guile/files/patch-libguile_eval.c (new) 1.8 +10 -9 ports/lang/guile/files/patch-libguile_gc_os_dep.c 1.1 +10 -0 ports/lang/guile/files/patch-libguile_gen-scmconfig.c (new) 1.4 +0 -16 ports/lang/guile/files/patch-libguile_load.c (dead) 1.3 +11 -0 ports/lang/guile/files/patch-libguile_numbers.c (new) 1.1 +12 -0 ports/lang/guile/files/patch-libguile_pthread-threads.h (new) 1.1 +11 -0 ports/lang/guile/files/patch-libguile_read.c (new) 1.1 +27 -0 ports/lang/guile/files/patch-libguile_threads.c (new) 1.2 +0 -13 ports/lang/guile/files/patch-srfi_srfi-4.c (dead) 1.25 +98 -28 ports/lang/guile/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Mar 1 06:22:06 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7330B1065673; Sat, 1 Mar 2008 06:22:06 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 44EC88FC18; Sat, 1 Mar 2008 06:22:06 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m216M63i071310; Sat, 1 Mar 2008 06:22:06 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m216M6xC071309; Sat, 1 Mar 2008 06:22:06 GMT (envelope-from marcus) Message-Id: <200803010622.m216M6xC071309@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 1 Mar 2008 06:22:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/slib-guile Makefile pkg-plist ports/security/lsh Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 06:22:06 -0000 marcus 2008-03-01 06:22:06 UTC FreeBSD ports repository Modified files: lang/slib-guile Makefile pkg-plist security/lsh Makefile Log: Chase guile update. PR: 121137 Submitted by: David Barksdale Revision Changes Path 1.7 +3 -2 ports/lang/slib-guile/Makefile 1.3 +3 -3 ports/lang/slib-guile/pkg-plist 1.42 +2 -1 ports/security/lsh/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 06:22:43 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 174B21065676; Sat, 1 Mar 2008 06:22:43 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 000288FC1C; Sat, 1 Mar 2008 06:22:42 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m216Mgnk071859; Sat, 1 Mar 2008 06:22:42 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m216MgXh071858; Sat, 1 Mar 2008 06:22:42 GMT (envelope-from marcus) Message-Id: <200803010622.m216MgXh071858@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 1 Mar 2008 06:22:42 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio/glame Makefile ports/audio/snd Makefile ports/cad/gwave Makefile ports/cad/libgeda Makefile ports/deskutils/gnotime Makefile ports/devel/autogen Makefile ports/devel/gconf Makefile ports/devel/libmatheval Makefile ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 06:22:43 -0000 marcus 2008-03-01 06:22:42 UTC FreeBSD ports repository Modified files: audio/glame Makefile audio/snd Makefile cad/gwave Makefile cad/libgeda Makefile deskutils/gnotime Makefile devel/autogen Makefile devel/gconf Makefile devel/libmatheval Makefile editors/texmacs Makefile games/gnome-games Makefile games/gnurobots Makefile games/trackballs Makefile graphics/graphviz Makefile irc/bobot++ Makefile lang/gnustep-guile Makefile lang/mdk Makefile math/drgeo Makefile math/guppi Makefile net-p2p/gnunet Makefile net/dhcp-agent Makefile net/serveez Makefile print/lilypond Makefile science/libctl Makefile science/mpb Makefile x11-toolkits/guile-gtk Makefile x11/xbindkeys Makefile Log: Chase libguile shared lib version. Revision Changes Path 1.37 +2 -2 ports/audio/glame/Makefile 1.58 +2 -2 ports/audio/snd/Makefile 1.19 +2 -2 ports/cad/gwave/Makefile 1.26 +2 -2 ports/cad/libgeda/Makefile 1.25 +2 -2 ports/deskutils/gnotime/Makefile 1.61 +2 -1 ports/devel/autogen/Makefile 1.52 +2 -2 ports/devel/gconf/Makefile 1.7 +2 -1 ports/devel/libmatheval/Makefile 1.28 +2 -1 ports/editors/texmacs/Makefile 1.118 +2 -1 ports/games/gnome-games/Makefile 1.8 +2 -2 ports/games/gnurobots/Makefile 1.16 +2 -2 ports/games/trackballs/Makefile 1.90 +1 -1 ports/graphics/graphviz/Makefile 1.14 +2 -1 ports/irc/bobot++/Makefile 1.54 +2 -2 ports/lang/gnustep-guile/Makefile 1.29 +2 -2 ports/lang/mdk/Makefile 1.31 +2 -2 ports/math/drgeo/Makefile 1.32 +2 -2 ports/math/guppi/Makefile 1.62 +1 -1 ports/net-p2p/gnunet/Makefile 1.7 +2 -2 ports/net/dhcp-agent/Makefile 1.26 +2 -2 ports/net/serveez/Makefile 1.39 +2 -2 ports/print/lilypond/Makefile 1.8 +2 -2 ports/science/libctl/Makefile 1.9 +2 -2 ports/science/mpb/Makefile 1.37 +2 -2 ports/x11-toolkits/guile-gtk/Makefile 1.42 +1 -1 ports/x11/xbindkeys/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 06:24:16 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BEA06106566C; Sat, 1 Mar 2008 06:24:16 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 911178FC12; Sat, 1 Mar 2008 06:24:16 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m216OGj8071922; Sat, 1 Mar 2008 06:24:16 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m216OGS3071921; Sat, 1 Mar 2008 06:24:16 GMT (envelope-from marcus) Message-Id: <200803010624.m216OGS3071921@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 1 Mar 2008 06:24:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/finance/gnucash Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 06:24:16 -0000 marcus 2008-03-01 06:24:16 UTC FreeBSD ports repository Modified files: finance/gnucash Makefile Log: Chase guile update. PR: 121137 Submitted by: David Barksdale Revision Changes Path 1.114 +2 -2 ports/finance/gnucash/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 07:24:52 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AF3A31065671; Sat, 1 Mar 2008 07:24:52 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 963AF8FC23; Sat, 1 Mar 2008 07:24:52 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m217Oqnv074987; Sat, 1 Mar 2008 07:24:52 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m217OqfY074986; Sat, 1 Mar 2008 07:24:52 GMT (envelope-from rafan) Message-Id: <200803010724.m217OqfY074986@repoman.freebsd.org> From: Rong-En Fan Date: Sat, 1 Mar 2008 07:24:52 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/pwlib Makefile distinfo pkg-plist ports/devel/pwlib/files patch-configureac patch-include-ptclib-dtmf-h patch-plugins-configure patch-plugins-sound_esd-Makefile patch-plugins-sound_esd-sound_esd.h patch-plugins-sound_oss-sound_oss_cxx patch-plugins-vidinput_avc-Makefile patch-plugins-vidinput_bsd-vidinput_bsd.cxx ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 07:24:52 -0000 rafan 2008-03-01 07:24:52 UTC FreeBSD ports repository Modified files: devel/pwlib Makefile distinfo pkg-plist devel/pwlib/files patch-configureac patch-plugins-configure patch-src_ptlib_unix_tlibthrd.cxx Added files: devel/pwlib/files patch-include-ptclib-dtmf-h patch-plugins-sound_oss-sound_oss_cxx patch-src-ptlib-unix-tlib-cxx patch-src_ptclib_dtmf_cxx Removed files: devel/pwlib/files patch-plugins-sound_esd-Makefile patch-plugins-sound_esd-sound_esd.h patch-plugins-vidinput_avc-Makefile patch-plugins-vidinput_bsd-vidinput_bsd.cxx patch-plugins-vidinput_bsd-vidinput_bsd.h patch-plugins-vidinput_dc-Makefile.in patch-src-ptlib-unix-udll.cxx patch-src_ptlib_common_jidctflt.cxx Log: - Update to 1.12.0 PR: ports/119377 Submitted by: Steve Ames (maintainer) Revision Changes Path 1.43 +11 -5 ports/devel/pwlib/Makefile 1.10 +3 -3 ports/devel/pwlib/distinfo 1.8 +42 -107 ports/devel/pwlib/files/patch-configureac 1.1 +10 -0 ports/devel/pwlib/files/patch-include-ptclib-dtmf-h (new) 1.2 +18 -17 ports/devel/pwlib/files/patch-plugins-configure 1.2 +0 -11 ports/devel/pwlib/files/patch-plugins-sound_esd-Makefile (dead) 1.2 +0 -22 ports/devel/pwlib/files/patch-plugins-sound_esd-sound_esd.h (dead) 1.1 +10 -0 ports/devel/pwlib/files/patch-plugins-sound_oss-sound_oss_cxx (new) 1.2 +0 -11 ports/devel/pwlib/files/patch-plugins-vidinput_avc-Makefile (dead) 1.2 +0 -43 ports/devel/pwlib/files/patch-plugins-vidinput_bsd-vidinput_bsd.cxx (dead) 1.3 +0 -100 ports/devel/pwlib/files/patch-plugins-vidinput_bsd-vidinput_bsd.h (dead) 1.2 +0 -11 ports/devel/pwlib/files/patch-plugins-vidinput_dc-Makefile.in (dead) 1.1 +11 -0 ports/devel/pwlib/files/patch-src-ptlib-unix-tlib-cxx (new) 1.2 +0 -13 ports/devel/pwlib/files/patch-src-ptlib-unix-udll.cxx (dead) 1.1 +67 -0 ports/devel/pwlib/files/patch-src_ptclib_dtmf_cxx (new) 1.3 +0 -12 ports/devel/pwlib/files/patch-src_ptlib_common_jidctflt.cxx (dead) 1.2 +5 -5 ports/devel/pwlib/files/patch-src_ptlib_unix_tlibthrd.cxx 1.12 +11 -6 ports/devel/pwlib/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Mar 1 07:25:17 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C0CA1065670; Sat, 1 Mar 2008 07:25:17 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 14AFB8FC27; Sat, 1 Mar 2008 07:25:17 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m217PGEl075114; Sat, 1 Mar 2008 07:25:16 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m217PG3c075113; Sat, 1 Mar 2008 07:25:16 GMT (envelope-from rafan) Message-Id: <200803010725.m217PG3c075113@repoman.freebsd.org> From: Rong-En Fan Date: Sat, 1 Mar 2008 07:25:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/openh323 Makefile distinfo pkg-plist ports/net/openh323/files patch-include-h4601.h patch-include-mediafmt.h patch-src-h261codec-cxx patch-src-h323caps.cxx patch-src-h323ep-cxx patch-src-h323pluginmgr-cxx patch-src-mediafmt.cxx X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 07:25:17 -0000 rafan 2008-03-01 07:25:16 UTC FreeBSD ports repository Modified files: net/openh323 Makefile distinfo pkg-plist Added files: net/openh323/files patch-include-h4601.h patch-include-mediafmt.h patch-src-h261codec-cxx patch-src-h323caps.cxx patch-src-h323ep-cxx patch-src-h323pluginmgr-cxx patch-src-mediafmt.cxx Log: - Update to 1.19.0.1 PR: ports/119376 Submitted by: Steve Ames (maintainer) Revision Changes Path 1.80 +3 -4 ports/net/openh323/Makefile 1.28 +3 -3 ports/net/openh323/distinfo 1.1 +12 -0 ports/net/openh323/files/patch-include-h4601.h (new) 1.1 +19 -0 ports/net/openh323/files/patch-include-mediafmt.h (new) 1.1 +11 -0 ports/net/openh323/files/patch-src-h261codec-cxx (new) 1.1 +58 -0 ports/net/openh323/files/patch-src-h323caps.cxx (new) 1.1 +11 -0 ports/net/openh323/files/patch-src-h323ep-cxx (new) 1.1 +13 -0 ports/net/openh323/files/patch-src-h323pluginmgr-cxx (new) 1.1 +12 -0 ports/net/openh323/files/patch-src-mediafmt.cxx (new) 1.11 +1 -0 ports/net/openh323/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Mar 1 07:26:20 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6613F1065674; Sat, 1 Mar 2008 07:26:20 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 505C18FC19; Sat, 1 Mar 2008 07:26:20 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m217QKlt075191; Sat, 1 Mar 2008 07:26:20 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m217QKnp075190; Sat, 1 Mar 2008 07:26:20 GMT (envelope-from rafan) Message-Id: <200803010726.m217QKnp075190@repoman.freebsd.org> From: Rong-En Fan Date: Sat, 1 Mar 2008 07:26:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/gatekeeper Makefile ports/net/gatekeeper/files patch-Routing-cxx patch-addpasswd-cxx patch-capctrl-cxx patch-clirw-cxx patch-main-cxx X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 07:26:20 -0000 rafan 2008-03-01 07:26:20 UTC FreeBSD ports repository Modified files: net/gatekeeper Makefile Added files: net/gatekeeper/files patch-Routing-cxx patch-addpasswd-cxx patch-capctrl-cxx patch-clirw-cxx patch-main-cxx Log: - Fix build after devel/pwlib updated to 1.12.0 PR: ports/119375 Submitted by: Steve Ames (maintainer of devel/pwlib) Approved by: maintainer timeout (2 months) Revision Changes Path 1.47 +1 -1 ports/net/gatekeeper/Makefile 1.1 +12 -0 ports/net/gatekeeper/files/patch-Routing-cxx (new) 1.1 +11 -0 ports/net/gatekeeper/files/patch-addpasswd-cxx (new) 1.1 +22 -0 ports/net/gatekeeper/files/patch-capctrl-cxx (new) 1.1 +21 -0 ports/net/gatekeeper/files/patch-clirw-cxx (new) 1.1 +14 -0 ports/net/gatekeeper/files/patch-main-cxx (new) From owner-cvs-all@FreeBSD.ORG Sat Mar 1 07:40:29 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 87457106566B; Sat, 1 Mar 2008 07:40:29 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 58ED38FC1B; Sat, 1 Mar 2008 07:40:29 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m217eTko077196; Sat, 1 Mar 2008 07:40:29 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m217eSxe077195; Sat, 1 Mar 2008 07:40:28 GMT (envelope-from marcus) Message-Id: <200803010740.m217eSxe077195@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 1 Mar 2008 07:40:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/guile Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 07:40:29 -0000 marcus 2008-03-01 07:40:28 UTC FreeBSD ports repository Modified files: lang/guile Makefile Log: Add a missing dependency on libgmp4. Revision Changes Path 1.67 +3 -0 ports/lang/guile/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 07:46:21 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1B9C6106566B; Sat, 1 Mar 2008 07:46:21 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E0B948FC13; Sat, 1 Mar 2008 07:46:20 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m217kKwG077545; Sat, 1 Mar 2008 07:46:20 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m217kKES077544; Sat, 1 Mar 2008 07:46:20 GMT (envelope-from clsung) Message-Id: <200803010746.m217kKES077544@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 1 Mar 2008 07:46:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/dns/p5-Net-DNS-ToolKit Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 07:46:21 -0000 clsung 2008-03-01 07:46:20 UTC FreeBSD ports repository Modified files: dns/p5-Net-DNS-ToolKit Makefile distinfo Log: - Update to 0.36 Changes: http://search.cpan.org/dist/Net-DNS-ToolKit/Changes Revision Changes Path 1.8 +1 -1 ports/dns/p5-Net-DNS-ToolKit/Makefile 1.7 +3 -3 ports/dns/p5-Net-DNS-ToolKit/distinfo From owner-cvs-all@FreeBSD.ORG Sat Mar 1 07:49:28 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B1E9A106566B; Sat, 1 Mar 2008 07:49:28 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 82EFC8FC18; Sat, 1 Mar 2008 07:49:28 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m217nSIr077783; Sat, 1 Mar 2008 07:49:28 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m217nSWB077782; Sat, 1 Mar 2008 07:49:28 GMT (envelope-from clsung) Message-Id: <200803010749.m217nSWB077782@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 1 Mar 2008 07:49:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/dns/p5-POE-Component-Server-DNS Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 07:49:28 -0000 clsung 2008-03-01 07:49:27 UTC FreeBSD ports repository Modified files: dns/p5-POE-Component-Server-DNS Makefile distinfo Log: - Update to 0.14 Changes: http://search.cpan.org/dist/POE-Component-Server-DNS/Changes Revision Changes Path 1.7 +1 -1 ports/dns/p5-POE-Component-Server-DNS/Makefile 1.7 +3 -3 ports/dns/p5-POE-Component-Server-DNS/distinfo From owner-cvs-all@FreeBSD.ORG Sat Mar 1 08:01:04 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 50AA41065671; Sat, 1 Mar 2008 08:01:04 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2231D8FC24; Sat, 1 Mar 2008 08:01:04 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21814Xa078618; Sat, 1 Mar 2008 08:01:04 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21813Tu078617; Sat, 1 Mar 2008 08:01:03 GMT (envelope-from clsung) Message-Id: <200803010801.m21813Tu078617@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 1 Mar 2008 08:01:03 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/p5-Net-Amazon-S3 Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 08:01:04 -0000 clsung 2008-03-01 08:01:03 UTC FreeBSD ports repository Modified files: net/p5-Net-Amazon-S3 Makefile distinfo Log: - Update to 0.42 Changes: http://search.cpan.org/dist/Net-Amazon-S3/CHANGES Revision Changes Path 1.7 +1 -1 ports/net/p5-Net-Amazon-S3/Makefile 1.6 +3 -3 ports/net/p5-Net-Amazon-S3/distinfo From owner-cvs-all@FreeBSD.ORG Sat Mar 1 08:23:35 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D096B106566C; Sat, 1 Mar 2008 08:23:35 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A28008FC14; Sat, 1 Mar 2008 08:23:35 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m218NZFL081041; Sat, 1 Mar 2008 08:23:35 GMT (envelope-from jfv@repoman.freebsd.org) Received: (from jfv@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m218NZ67081040; Sat, 1 Mar 2008 08:23:35 GMT (envelope-from jfv) Message-Id: <200803010823.m218NZ67081040@repoman.freebsd.org> From: Jack F Vogel Date: Sat, 1 Mar 2008 08:23:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/igb if_igb.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 08:23:36 -0000 jfv 2008-03-01 08:23:35 UTC FreeBSD src repository Modified files: sys/dev/igb if_igb.c Log: Change data formating in debug code. Revision Changes Path 1.5 +12 -12 src/sys/dev/igb/if_igb.c From owner-cvs-all@FreeBSD.ORG Sat Mar 1 09:03:33 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 74E48106566B; Sat, 1 Mar 2008 09:03:33 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 45DB48FC1E; Sat, 1 Mar 2008 09:03:33 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m2193XBM098199; Sat, 1 Mar 2008 09:03:33 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m2193XRX098198; Sat, 1 Mar 2008 09:03:33 GMT (envelope-from blackend) Message-Id: <200803010903.m2193XRX098198@repoman.freebsd.org> From: Marc Fonvieille Date: Sat, 1 Mar 2008 09:03:33 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/install chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 09:03:33 -0000 blackend 2008-03-01 09:03:33 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/install chapter.sgml Log: Warn non-experienced users, they should really prefer the Auto Defaults function in the partition editor. Revision Changes Path 1.388 +7 -0 doc/en_US.ISO8859-1/books/handbook/install/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sat Mar 1 09:32:49 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E62E5106566C; Sat, 1 Mar 2008 09:32:49 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B80948FC15; Sat, 1 Mar 2008 09:32:49 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m219WnBp099065; Sat, 1 Mar 2008 09:32:49 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m219WnFs099064; Sat, 1 Mar 2008 09:32:49 GMT (envelope-from chinsan) Message-Id: <200803010932.m219WnFs099064@repoman.freebsd.org> From: Chin-San Huang Date: Sat, 1 Mar 2008 09:32:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio/dir2ogg Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 09:32:50 -0000 chinsan 2008-03-01 09:32:49 UTC FreeBSD ports repository Modified files: audio/dir2ogg Makefile distinfo Log: - Update to 0.11.2 Revision Changes Path 1.2 +1 -1 ports/audio/dir2ogg/Makefile 1.2 +3 -3 ports/audio/dir2ogg/distinfo From owner-cvs-all@FreeBSD.ORG Sat Mar 1 10:25:58 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1A007106566B; Sat, 1 Mar 2008 10:25:58 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E22B18FC1B; Sat, 1 Mar 2008 10:25:57 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21APvfm002306; Sat, 1 Mar 2008 10:25:57 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21APsOe002305; Sat, 1 Mar 2008 10:25:54 GMT (envelope-from chinsan) Message-Id: <200803011025.m21APsOe002305@repoman.freebsd.org> From: Chin-San Huang Date: Sat, 1 Mar 2008 10:25:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/vietnamese/urwvn Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 10:25:58 -0000 chinsan 2008-03-01 10:25:54 UTC FreeBSD ports repository Modified files: vietnamese/urwvn Makefile Log: - Add MASTER_SITES. Noticed by: erwin Revision Changes Path 1.4 +1 -1 ports/vietnamese/urwvn/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 10:40:22 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 572F4106566B; Sat, 1 Mar 2008 10:40:22 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2B9228FC1E; Sat, 1 Mar 2008 10:40:22 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21AeLHI002760; Sat, 1 Mar 2008 10:40:21 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21AeLPM002759; Sat, 1 Mar 2008 10:40:21 GMT (envelope-from brueffer) Message-Id: <200803011040.m21AeLPM002759@repoman.freebsd.org> From: Christian Brueffer Date: Sat, 1 Mar 2008 10:40:21 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/share/sgml press.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 10:40:22 -0000 brueffer 2008-03-01 10:40:21 UTC FreeBSD doc repository Modified files: share/sgml press.xml Log: New article: Faster Performance, Fewer Machines For FreeBSD? Revision Changes Path 1.59 +11 -1 www/share/sgml/press.xml From owner-cvs-all@FreeBSD.ORG Sat Mar 1 11:04:04 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C4DA51065672; Sat, 1 Mar 2008 11:04:04 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 991588FC19; Sat, 1 Mar 2008 11:04:04 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21B443m004996; Sat, 1 Mar 2008 11:04:04 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21B448G004995; Sat, 1 Mar 2008 11:04:04 GMT (envelope-from rwatson) Message-Id: <200803011104.m21B448G004995@repoman.freebsd.org> From: Robert Watson Date: Sat, 1 Mar 2008 11:04:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/security/audit audit_private.h audit_syscalls.c audit_trigger.c audit_worker.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 11:04:05 -0000 rwatson 2008-03-01 11:04:04 UTC FreeBSD src repository Modified files: sys/security/audit audit_private.h audit_syscalls.c audit_trigger.c audit_worker.c Log: Rename globally exposed symbol send_trigger() to audit_send_trigger(). MFC after: 1 month Revision Changes Path 1.18 +1 -1 src/sys/security/audit/audit_private.h 1.24 +1 -1 src/sys/security/audit/audit_syscalls.c 1.6 +1 -1 src/sys/security/audit/audit_trigger.c 1.21 +4 -3 src/sys/security/audit/audit_worker.c From owner-cvs-all@FreeBSD.ORG Sat Mar 1 11:07:52 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5F2E0106566C; Sat, 1 Mar 2008 11:07:52 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4CA948FC14; Sat, 1 Mar 2008 11:07:52 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21B7q7o005200; Sat, 1 Mar 2008 11:07:52 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21B7qBJ005199; Sat, 1 Mar 2008 11:07:52 GMT (envelope-from rafan) Message-Id: <200803011107.m21B7qBJ005199@repoman.freebsd.org> From: Rong-En Fan Date: Sat, 1 Mar 2008 11:07:52 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/print/ghostscript-gpl Makefile Makefile.inc distinfo pkg-plist ports/print/ghostscript-gpl/files patch-lib-FAPIcidfmap patch-src-int.mak X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 11:07:52 -0000 rafan 2008-03-01 11:07:52 UTC FreeBSD ports repository Modified files: print/ghostscript-gpl Makefile Makefile.inc distinfo pkg-plist Added files: print/ghostscript-gpl/files patch-lib-FAPIcidfmap patch-src-int.mak Log: - Add full support for Japanese fonts and ijs driver - Fix FT_BRIDGE issue - Use OPTIONS (not for driver selection) PR: ports/119566 Submitted by: Koji Yokota Revision Changes Path 1.155 +58 -9 ports/print/ghostscript-gpl/Makefile 1.25 +2 -2 ports/print/ghostscript-gpl/Makefile.inc 1.65 +3 -0 ports/print/ghostscript-gpl/distinfo 1.1 +9 -0 ports/print/ghostscript-gpl/files/patch-lib-FAPIcidfmap (new) 1.1 +11 -0 ports/print/ghostscript-gpl/files/patch-src-int.mak (new) 1.45 +167 -1 ports/print/ghostscript-gpl/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Mar 1 11:33:22 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9C6181065671; Sat, 1 Mar 2008 11:33:22 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8BD5D8FC16; Sat, 1 Mar 2008 11:33:22 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21BXMwo006028; Sat, 1 Mar 2008 11:33:22 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21BXMmm006027; Sat, 1 Mar 2008 11:33:22 GMT (envelope-from rwatson) Message-Id: <200803011133.m21BXMmm006027@repoman.freebsd.org> From: Robert Watson Date: Sat, 1 Mar 2008 11:33:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/nfsclient nfs_vnops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 11:33:22 -0000 rwatson 2008-03-01 11:33:22 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/nfsclient nfs_vnops.c Log: Merge nfs_vnops.c:1.277 from HEAD to RELENG_6: Remove hacks from the NFSv2/3 client intended to handle a lack of a server-side RPC retranmission cache for non-idempotent operations: these hacks substituted 0 (success) for the expected EEXIST in the event that a target name already existed for LINK, SYMLINK, and MKDIR operations, under the assumption that EEXIST represented a second application of the original RPC rather than a true failure. Background: certain NFS operations (in this case, LINK, SYMLINK, and MKDIR) are not idempotent, as they leave behind persisting state on the server that prevents them from being replayed without an error;if an UDP RPC reply is lost leading to a retransmission by theclient, the second reply will return EEXIST rather than success, asthe new object has already been created. The NFS client previouslysilently mapped the EEXIST return into success to paper over thisproblem. However, in all modern NFS server implementations, a reply cache is kept in order to retransmit the original reply to a retransmitted request, rather than performing the operation a second time, allowing this hack to be avoided. This allows link()-based filelocking over NFS to operate correctly, as an application requestingthe creation of a new link for a file to tell if it succeededatomically or not. Other NFS clients, including Solaris and Linux, generally follow this behavior for the same reasons. Most clients also now default to TCP, which also helps avoid the issue of retransmitted but non-idempotent requests in most cases. Reported by: Adam McDougall , Timo Sirainen Reviewed by: mohans Revision Changes Path 1.258.2.16 +4 -25 src/sys/nfsclient/nfs_vnops.c From owner-cvs-all@FreeBSD.ORG Sat Mar 1 11:35:32 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1B2D0106566B; Sat, 1 Mar 2008 11:35:32 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E50AA8FC1C; Sat, 1 Mar 2008 11:35:31 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21BZUJ9006160; Sat, 1 Mar 2008 11:35:30 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21BZUZi006159; Sat, 1 Mar 2008 11:35:30 GMT (envelope-from brueffer) Message-Id: <200803011135.m21BZUZi006159@repoman.freebsd.org> From: Christian Brueffer Date: Sat, 1 Mar 2008 11:35:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man4 ucycom.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 11:35:32 -0000 brueffer 2008-03-01 11:35:30 UTC FreeBSD src repository Modified files: share/man/man4 ucycom.4 Log: Move the HARDWARE section below the DESCRIPTION section, like it is everywhere else. MFC after: 3 days Revision Changes Path 1.5 +10 -10 src/share/man/man4/ucycom.4 From owner-cvs-all@FreeBSD.ORG Sat Mar 1 11:38:27 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0DF711065671; Sat, 1 Mar 2008 11:38:27 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D97FB8FC22; Sat, 1 Mar 2008 11:38:26 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21BcQ8d006230; Sat, 1 Mar 2008 11:38:26 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21BcQb9006229; Sat, 1 Mar 2008 11:38:26 GMT (envelope-from rwatson) Message-Id: <200803011138.m21BcQb9006229@repoman.freebsd.org> From: Robert Watson Date: Sat, 1 Mar 2008 11:38:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/net bpf.c bpf.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 11:38:27 -0000 rwatson 2008-03-01 11:38:26 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/net bpf.c bpf.h Log: Merge bpf.c:184, bpf.h:1.49 from HEAD to RELENG_6: Remove trailing whitespace from lines in BPF. Minor tweaks to account for minor changes between RELENG_6 and HEAD. Revision Changes Path 1.153.2.13 +3 -3 src/sys/net/bpf.c 1.39.2.4 +2 -2 src/sys/net/bpf.h From owner-cvs-all@FreeBSD.ORG Sat Mar 1 11:40:49 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F7FD1065673; Sat, 1 Mar 2008 11:40:49 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 74C9B8FC20; Sat, 1 Mar 2008 11:40:49 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21Ben97006382; Sat, 1 Mar 2008 11:40:49 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21Benxp006381; Sat, 1 Mar 2008 11:40:49 GMT (envelope-from rwatson) Message-Id: <200803011140.m21Benxp006381@repoman.freebsd.org> From: Robert Watson Date: Sat, 1 Mar 2008 11:40:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/security/audit audit.c audit_bsm_klib.c audit_private.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 11:40:49 -0000 rwatson 2008-03-01 11:40:49 UTC FreeBSD src repository Modified files: sys/security/audit audit.c audit_bsm_klib.c audit_private.h Log: Add audit_prefixes to two more globally visible functions in the Audit implementation. MFC after: 1 month Revision Changes Path 1.39 +2 -2 src/sys/security/audit/audit.c 1.11 +2 -2 src/sys/security/audit/audit_bsm_klib.c 1.19 +3 -3 src/sys/security/audit/audit_private.h From owner-cvs-all@FreeBSD.ORG Sat Mar 1 11:43:02 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F1CB1065679; Sat, 1 Mar 2008 11:43:02 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0532E8FC15; Sat, 1 Mar 2008 11:43:02 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21Bh1T8006485; Sat, 1 Mar 2008 11:43:01 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21Bh1d5006484; Sat, 1 Mar 2008 11:43:01 GMT (envelope-from rwatson) Message-Id: <200803011143.m21Bh1d5006484@repoman.freebsd.org> From: Robert Watson Date: Sat, 1 Mar 2008 11:43:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/kern uipc_sem.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 11:43:02 -0000 rwatson 2008-03-01 11:43:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern uipc_sem.c Log: Merge uipc_sem.c:1.30 from HEAD to RELENG_6: Free MAC label on a POSIX semaphore when the semaphore is freed. Submitted by: jhb Revision Changes Path 1.20.2.2 +3 -0 src/sys/kern/uipc_sem.c From owner-cvs-all@FreeBSD.ORG Sat Mar 1 11:44:30 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8F5EC1065671; Sat, 1 Mar 2008 11:44:30 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 65F9D8FC14; Sat, 1 Mar 2008 11:44:30 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21BiUfn006559; Sat, 1 Mar 2008 11:44:30 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21BiUbc006558; Sat, 1 Mar 2008 11:44:30 GMT (envelope-from rwatson) Message-Id: <200803011144.m21BiUbc006558@repoman.freebsd.org> From: Robert Watson Date: Sat, 1 Mar 2008 11:44:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sys/net netisr.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 11:44:30 -0000 rwatson 2008-03-01 11:44:30 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/net netisr.h Log: Merge netisr.h:1.34 from HEAD to RELENG_7: Update netisr comment for the SMPng world order: netisr is no longer implemented using the ISR facility, and cannot be triggered by calling splnet()/splx(). Revision Changes Path 1.33.10.1 +8 -13 src/sys/net/netisr.h From owner-cvs-all@FreeBSD.ORG Sat Mar 1 11:45:14 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BEF971065676; Sat, 1 Mar 2008 11:45:14 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 958518FC1F; Sat, 1 Mar 2008 11:45:14 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21BjEXs006656; Sat, 1 Mar 2008 11:45:14 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21BjEOM006655; Sat, 1 Mar 2008 11:45:14 GMT (envelope-from rwatson) Message-Id: <200803011145.m21BjEOM006655@repoman.freebsd.org> From: Robert Watson Date: Sat, 1 Mar 2008 11:45:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/net netisr.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 11:45:15 -0000 rwatson 2008-03-01 11:45:14 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/net netisr.h Log: Merge netisr.h:1.34 from HEAD to RELENG_6: Update netisr comment for the SMPng world order: netisr is no longer implemented using the ISR facility, and cannot be triggered by calling splnet()/splx(). Revision Changes Path 1.33.2.1 +8 -13 src/sys/net/netisr.h From owner-cvs-all@FreeBSD.ORG Sat Mar 1 11:50:02 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 06F9A1065673; Sat, 1 Mar 2008 11:50:02 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EB53B8FC23; Sat, 1 Mar 2008 11:50:01 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21Bo01I006790; Sat, 1 Mar 2008 11:50:00 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21Bo0JE006789; Sat, 1 Mar 2008 11:50:00 GMT (envelope-from rwatson) Message-Id: <200803011150.m21Bo0JE006789@repoman.freebsd.org> From: Robert Watson Date: Sat, 1 Mar 2008 11:50:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sys/netinet tcp_usrreq.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 11:50:02 -0000 rwatson 2008-03-01 11:50:00 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/netinet tcp_usrreq.c Log: Merge tcp_usrreq.c:1.166 from HEAD to RELENG_7: In tcp_ctloutput(), don't hold the inpcb lock over sooptcopyin(), rather, drop the lock and then re-acquire it, revalidating TCP connection state assumptions when we do so. This avoids a potential lock order reversal (and potential deadlock, although none have been reported) due to the inpcb lock being held over a page fault. PR: 102752 Reviewed by: bz Reported by: Václav Haisman Revision Changes Path 1.163.2.3 +55 -25 src/sys/netinet/tcp_usrreq.c From owner-cvs-all@FreeBSD.ORG Sat Mar 1 11:50:46 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 263451065670; Sat, 1 Mar 2008 11:50:46 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F0DEA8FC23; Sat, 1 Mar 2008 11:50:45 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21Boj97006925; Sat, 1 Mar 2008 11:50:45 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21BojCp006924; Sat, 1 Mar 2008 11:50:45 GMT (envelope-from rwatson) Message-Id: <200803011150.m21BojCp006924@repoman.freebsd.org> From: Robert Watson Date: Sat, 1 Mar 2008 11:50:45 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sys/kern uipc_usrreq.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 11:50:46 -0000 rwatson 2008-03-01 11:50:45 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/kern uipc_usrreq.c Log: Merge uipc_usrreq.c:1.211 from HEAD to RELENG_7: Correct typos in comments. Revision Changes Path 1.206.2.2 +2 -2 src/sys/kern/uipc_usrreq.c From owner-cvs-all@FreeBSD.ORG Sat Mar 1 11:51:12 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D5E381065671; Sat, 1 Mar 2008 11:51:12 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AC37A8FC16; Sat, 1 Mar 2008 11:51:12 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21BpCDo006963; Sat, 1 Mar 2008 11:51:12 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21BpCri006962; Sat, 1 Mar 2008 11:51:12 GMT (envelope-from rwatson) Message-Id: <200803011151.m21BpCri006962@repoman.freebsd.org> From: Robert Watson Date: Sat, 1 Mar 2008 11:51:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sys/kern tty_pts.c uipc_usrreq.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 11:51:13 -0000 rwatson 2008-03-01 11:51:12 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/kern tty_pts.c uipc_usrreq.c Log: Merge uipc_usrreq.c:1.212 from HEAD to RELENG_7: Remove "lock pushdown" todo item in comment -- I did that for 7.0. Revision Changes Path 1.16.2.1 +4 -0 src/sys/kern/tty_pts.c 1.206.2.3 +0 -1 src/sys/kern/uipc_usrreq.c From owner-cvs-all@FreeBSD.ORG Sat Mar 1 11:55:12 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4DAF7106566B; Sat, 1 Mar 2008 11:55:12 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3DC528FC19; Sat, 1 Mar 2008 11:55:12 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21BtCYH007147; Sat, 1 Mar 2008 11:55:12 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21BtCR7007146; Sat, 1 Mar 2008 11:55:12 GMT (envelope-from rwatson) Message-Id: <200803011155.m21BtCR7007146@repoman.freebsd.org> From: Robert Watson Date: Sat, 1 Mar 2008 11:55:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sys/security/mac_mls mac_mls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 11:55:12 -0000 rwatson 2008-03-01 11:55:12 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/security/mac_mls mac_mls.c Log: Merge mac_mls.c:1.99 from HEAD to RELENG_7: Properly return the error from mls_subject_privileged() in the ifnet relabel check for MLS rather than returning 0 directly. This problem didn't result in a vulnerability currently as the central implementation of ifnet relabeling also checks for UNIX privilege, and we currently don't guarantee containment for the root user in mac_mls, but we should be using the MLS definition of privilege as well as the UNIX definition in anticipation of supporting root containment at some point. Submitted by: Zhouyi Zhou Sponsored by: Google SoC 2007 Revision Changes Path 1.88.2.2 +1 -3 src/sys/security/mac_mls/mac_mls.c From owner-cvs-all@FreeBSD.ORG Sat Mar 1 12:50:46 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2E076106566B; Sat, 1 Mar 2008 12:50:46 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 054EF8FC1C; Sat, 1 Mar 2008 12:50:46 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21Cojgx019238; Sat, 1 Mar 2008 12:50:45 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21Cojt9019237; Sat, 1 Mar 2008 12:50:45 GMT (envelope-from erwin) Message-Id: <200803011250.m21Cojt9019237@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 1 Mar 2008 12:50:45 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/irit Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 12:50:46 -0000 erwin 2008-03-01 12:50:45 UTC FreeBSD ports repository Modified files: graphics/irit Makefile Log: Mark BROKEN: checksum mismatch Revision Changes Path 1.14 +2 -0 ports/graphics/irit/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 13:05:03 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 882D01065671; Sat, 1 Mar 2008 13:05:03 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5F9CD8FC1B; Sat, 1 Mar 2008 13:05:03 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21D537t021292; Sat, 1 Mar 2008 13:05:03 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21D53wr021291; Sat, 1 Mar 2008 13:05:03 GMT (envelope-from brueffer) Message-Id: <200803011305.m21D53wr021291@repoman.freebsd.org> From: Christian Brueffer Date: Sat, 1 Mar 2008 13:05:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man4 Makefile uchcom.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 13:05:03 -0000 brueffer 2008-03-01 13:05:03 UTC FreeBSD src repository Modified files: share/man/man4 Makefile Added files: share/man/man4 uchcom.4 Log: Manpage for the uchcom(4) driver, adapted from the one in NetBSD. Revision Changes Path 1.410 +1 -0 src/share/man/man4/Makefile 1.1 +94 -0 src/share/man/man4/uchcom.4 (new) From owner-cvs-all@FreeBSD.ORG Sat Mar 1 13:15:29 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B686E1065674; Sat, 1 Mar 2008 13:15:29 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8E0EC8FC19; Sat, 1 Mar 2008 13:15:29 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21DFTbS021657; Sat, 1 Mar 2008 13:15:29 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21DFTPS021656; Sat, 1 Mar 2008 13:15:29 GMT (envelope-from erwin) Message-Id: <200803011315.m21DFTPS021656@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 1 Mar 2008 13:15:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/maelstrom Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 13:15:29 -0000 erwin 2008-03-01 13:15:28 UTC FreeBSD ports repository Modified files: games/maelstrom Makefile Log: Mark BROKEN: size mismatch Revision Changes Path 1.35 +2 -0 ports/games/maelstrom/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 13:15:32 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ECA201065787; Sat, 1 Mar 2008 13:15:32 +0000 (UTC) (envelope-from tg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C44D98FC13; Sat, 1 Mar 2008 13:15:32 +0000 (UTC) (envelope-from tg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21DFWnq021686; Sat, 1 Mar 2008 13:15:32 GMT (envelope-from tg@repoman.freebsd.org) Received: (from tg@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21DFWOC021685; Sat, 1 Mar 2008 13:15:32 GMT (envelope-from tg) Message-Id: <200803011315.m21DFWOC021685@repoman.freebsd.org> From: Thomas Gellekum Date: Sat, 1 Mar 2008 13:15:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/math/py-numeric Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 13:15:33 -0000 tg 2008-03-01 13:15:32 UTC FreeBSD ports repository Modified files: math/py-numeric Makefile Log: MASTER_SITE for doc has moved. Revision Changes Path 1.50 +1 -1 ports/math/py-numeric/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 13:20:23 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 752671065671; Sat, 1 Mar 2008 13:20:23 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4CB078FC1F; Sat, 1 Mar 2008 13:20:23 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21DKNtK021903; Sat, 1 Mar 2008 13:20:23 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21DKN9E021902; Sat, 1 Mar 2008 13:20:23 GMT (envelope-from erwin) Message-Id: <200803011320.m21DKN9E021902@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 1 Mar 2008 13:20:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/quack Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 13:20:23 -0000 erwin 2008-03-01 13:20:23 UTC FreeBSD ports repository Modified files: lang/quack Makefile Log: Mark BROKEN: size mismatch Revision Changes Path 1.14 +2 -0 ports/lang/quack/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 13:22:51 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D098B1065674; Sat, 1 Mar 2008 13:22:51 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A86858FC15; Sat, 1 Mar 2008 13:22:51 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21DMp96022001; Sat, 1 Mar 2008 13:22:51 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21DMpYJ022000; Sat, 1 Mar 2008 13:22:51 GMT (envelope-from erwin) Message-Id: <200803011322.m21DMpYJ022000@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 1 Mar 2008 13:22:51 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/sam2p Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 13:22:52 -0000 erwin 2008-03-01 13:22:51 UTC FreeBSD ports repository Modified files: graphics/sam2p Makefile Log: Mark BROKEN: size mismatch Revision Changes Path 1.17 +2 -0 ports/graphics/sam2p/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 13:28:28 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4C29B106566B; Sat, 1 Mar 2008 13:28:28 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2366A8FC15; Sat, 1 Mar 2008 13:28:28 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21DSSBH022217; Sat, 1 Mar 2008 13:28:28 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21DSRsJ022216; Sat, 1 Mar 2008 13:28:27 GMT (envelope-from brueffer) Message-Id: <200803011328.m21DSRsJ022216@repoman.freebsd.org> From: Christian Brueffer Date: Sat, 1 Mar 2008 13:28:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man4 ucom.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 13:28:28 -0000 brueffer 2008-03-01 13:28:27 UTC FreeBSD src repository Modified files: share/man/man4 ucom.4 Log: Xref uchcom(4). Revision Changes Path 1.9 +2 -1 src/share/man/man4/ucom.4 From owner-cvs-all@FreeBSD.ORG Sat Mar 1 13:33:15 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A96F1065674; Sat, 1 Mar 2008 13:33:15 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 027C58FC15; Sat, 1 Mar 2008 13:33:15 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21DXEbi033158; Sat, 1 Mar 2008 13:33:14 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21DXEWi033157; Sat, 1 Mar 2008 13:33:14 GMT (envelope-from erwin) Message-Id: <200803011333.m21DXEWi033157@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 1 Mar 2008 13:33:14 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/tecnoballz Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 13:33:15 -0000 erwin 2008-03-01 13:33:14 UTC FreeBSD ports repository Modified files: games/tecnoballz Makefile Log: Mark BROKEN: size mismatch Revision Changes Path 1.10 +2 -0 ports/games/tecnoballz/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 13:36:54 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6A25D1065673; Sat, 1 Mar 2008 13:36:54 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 423FA8FC21; Sat, 1 Mar 2008 13:36:54 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21Das49033533; Sat, 1 Mar 2008 13:36:54 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21DasuU033532; Sat, 1 Mar 2008 13:36:54 GMT (envelope-from erwin) Message-Id: <200803011336.m21DasuU033532@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 1 Mar 2008 13:36:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/uim-m17nlib Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 13:36:54 -0000 erwin 2008-03-01 13:36:53 UTC FreeBSD ports repository Modified files: textproc/uim-m17nlib Makefile Log: Chase shared library version from devel/m17n-lib Submitted by: pointyhat Revision Changes Path 1.13 +1 -1 ports/textproc/uim-m17nlib/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 13:37:04 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DAA541065740; Sat, 1 Mar 2008 13:37:04 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B2D178FC1C; Sat, 1 Mar 2008 13:37:04 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21Db4lg033566; Sat, 1 Mar 2008 13:37:04 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21Db4vx033565; Sat, 1 Mar 2008 13:37:04 GMT (envelope-from oliver) Message-Id: <200803011337.m21Db4vx033565@repoman.freebsd.org> From: Oliver Lehmann Date: Sat, 1 Mar 2008 13:37:04 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/sylpheed Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 13:37:05 -0000 oliver 2008-03-01 13:37:04 UTC FreeBSD ports repository Modified files: mail/sylpheed Makefile Log: change MASTER_SITES Revision Changes Path 1.112 +1 -1 ports/mail/sylpheed/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 13:43:47 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 447C4106566B; Sat, 1 Mar 2008 13:43:47 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1C4BE8FC1F; Sat, 1 Mar 2008 13:43:47 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21Dhk6l033802; Sat, 1 Mar 2008 13:43:46 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21Dhkha033801; Sat, 1 Mar 2008 13:43:46 GMT (envelope-from brueffer) Message-Id: <200803011343.m21Dhkha033801@repoman.freebsd.org> From: Christian Brueffer Date: Sat, 1 Mar 2008 13:43:46 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/share/sgml events.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 13:43:47 -0000 brueffer 2008-03-01 13:43:46 UTC FreeBSD doc repository Modified files: share/sgml events.xml Log: Add EuroBSDCon 2008. Revision Changes Path 1.42 +25 -1 www/share/sgml/events.xml From owner-cvs-all@FreeBSD.ORG Sat Mar 1 13:54:36 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6A3571065675; Sat, 1 Mar 2008 13:54:36 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 424AF8FC34; Sat, 1 Mar 2008 13:54:36 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21Dsaw2034127; Sat, 1 Mar 2008 13:54:36 GMT (envelope-from obraun@repoman.freebsd.org) Received: (from obraun@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21DsZnJ034126; Sat, 1 Mar 2008 13:54:35 GMT (envelope-from obraun) Message-Id: <200803011354.m21DsZnJ034126@repoman.freebsd.org> From: Oliver Braun Date: Sat, 1 Mar 2008 13:54:34 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/ghc Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 13:54:36 -0000 obraun 2008-03-01 13:54:34 UTC FreeBSD ports repository Modified files: lang/ghc Makefile Log: Disable WITH_DOCS on amd64. PR: ports/121251 Submitted by: "Brian O'Hanlon" Revision Changes Path 1.64 +7 -2 ports/lang/ghc/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 14:00:34 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3ED77106567A; Sat, 1 Mar 2008 14:00:34 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 178548FC38; Sat, 1 Mar 2008 14:00:34 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21E0XxD034825; Sat, 1 Mar 2008 14:00:33 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21E0XEB034824; Sat, 1 Mar 2008 14:00:33 GMT (envelope-from erwin) Message-Id: <200803011400.m21E0XEB034824@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 1 Mar 2008 14:00:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/gnometelnet Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 14:00:34 -0000 erwin 2008-03-01 14:00:33 UTC FreeBSD ports repository Modified files: net/gnometelnet Makefile Log: Mark BROKEN: size mismatch Revision Changes Path 1.23 +2 -0 ports/net/gnometelnet/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 14:07:25 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9DCA01065670; Sat, 1 Mar 2008 14:07:25 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 75E2D8FC17; Sat, 1 Mar 2008 14:07:25 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21E7PHT036263; Sat, 1 Mar 2008 14:07:25 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21E7PQY036262; Sat, 1 Mar 2008 14:07:25 GMT (envelope-from erwin) Message-Id: <200803011407.m21E7PQY036262@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 1 Mar 2008 14:07:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/htmlize.el Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 14:07:25 -0000 erwin 2008-03-01 14:07:23 UTC FreeBSD ports repository Modified files: textproc/htmlize.el Makefile Log: Mark BROKEN: size mismatch Revision Changes Path 1.6 +2 -0 ports/textproc/htmlize.el/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 14:08:31 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2ADC9106566B; Sat, 1 Mar 2008 14:08:31 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 033158FC1F; Sat, 1 Mar 2008 14:08:31 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21E8UAJ036330; Sat, 1 Mar 2008 14:08:30 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21E8UCn036329; Sat, 1 Mar 2008 14:08:30 GMT (envelope-from erwin) Message-Id: <200803011408.m21E8UCn036329@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 1 Mar 2008 14:08:30 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/print/ifhp Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 14:08:31 -0000 erwin 2008-03-01 14:08:30 UTC FreeBSD ports repository Modified files: print/ifhp Makefile Log: Mark BROKEN: size mismatch Revision Changes Path 1.17 +2 -0 ports/print/ifhp/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 14:16:31 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C0487106566B; Sat, 1 Mar 2008 14:16:31 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9826E8FC2A; Sat, 1 Mar 2008 14:16:31 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21EGVI2036654; Sat, 1 Mar 2008 14:16:31 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21EGUJv036653; Sat, 1 Mar 2008 14:16:30 GMT (envelope-from erwin) Message-Id: <200803011416.m21EGUJv036653@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 1 Mar 2008 14:16:30 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/databases/mysql-query-browser Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 14:16:31 -0000 erwin 2008-03-01 14:16:30 UTC FreeBSD ports repository Modified files: databases/mysql-query-browser Makefile Log: Mark BROKEN: checksum mismatch Revision Changes Path 1.11 +2 -0 ports/databases/mysql-query-browser/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 14:19:15 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E13B81065679; Sat, 1 Mar 2008 14:19:15 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B9C7E8FC24; Sat, 1 Mar 2008 14:19:15 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21EJFe8036768; Sat, 1 Mar 2008 14:19:15 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21EJFqs036767; Sat, 1 Mar 2008 14:19:15 GMT (envelope-from erwin) Message-Id: <200803011419.m21EJFqs036767@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 1 Mar 2008 14:19:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-mgmt/NeTraMet Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 14:19:16 -0000 erwin 2008-03-01 14:19:15 UTC FreeBSD ports repository Modified files: net-mgmt/NeTraMet Makefile Log: Mark BROKEN: checksum mismatch Revision Changes Path 1.15 +2 -0 ports/net-mgmt/NeTraMet/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 14:36:35 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9A1911065670; Sat, 1 Mar 2008 14:36:35 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 724F28FC1B; Sat, 1 Mar 2008 14:36:35 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21EaY5g037480; Sat, 1 Mar 2008 14:36:34 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21EaXcU037479; Sat, 1 Mar 2008 14:36:33 GMT (envelope-from erwin) Message-Id: <200803011436.m21EaXcU037479@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 1 Mar 2008 14:36:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/irc/xchat-mircryption Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 14:36:35 -0000 erwin 2008-03-01 14:36:33 UTC FreeBSD ports repository Modified files: irc/xchat-mircryption Makefile Log: Mark BROKEN: size mismatch Revision Changes Path 1.11 +2 -0 ports/irc/xchat-mircryption/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 14:41:20 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E8B5F106566B; Sat, 1 Mar 2008 14:41:20 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C10448FC16; Sat, 1 Mar 2008 14:41:20 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21EfK5m037656; Sat, 1 Mar 2008 14:41:20 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21EfKVh037655; Sat, 1 Mar 2008 14:41:20 GMT (envelope-from erwin) Message-Id: <200803011441.m21EfKVh037655@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 1 Mar 2008 14:41:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/xmps-win32-plugin Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 14:41:21 -0000 erwin 2008-03-01 14:41:20 UTC FreeBSD ports repository Modified files: multimedia/xmps-win32-plugin Makefile Log: Also mark BROKEN on 7.0 Revision Changes Path 1.35 +1 -1 ports/multimedia/xmps-win32-plugin/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 14:52:07 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6D1D71065672; Sat, 1 Mar 2008 14:52:07 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5F9548FC20; Sat, 1 Mar 2008 14:52:07 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21Eq7cb038009; Sat, 1 Mar 2008 14:52:07 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21Eq7K7038008; Sat, 1 Mar 2008 14:52:07 GMT (envelope-from rwatson) Message-Id: <200803011452.m21Eq7K7038008@repoman.freebsd.org> From: Robert Watson Date: Sat, 1 Mar 2008 14:52:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/security/mac_mls mac_mls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 14:52:07 -0000 rwatson 2008-03-01 14:52:06 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/security/mac_mls mac_mls.c Log: Merge mac_mls.c:1.99 from HEAD to RELENG_6: Properly return the error from mls_subject_privileged() in the ifnet relabel check for MLS rather than returning 0 directly. This problem didn't result in a vulnerability currently as the central implementation of ifnet relabeling also checks for UNIX privilege, and we currently don't guarantee containment for the root user in mac_mls, but we should be using the MLS definition of privilege as well as the UNIX definition in anticipation of supporting root containment at some point. Submitted by: Zhouyi Zhou Sponsored by: Google SoC 2007 Revision Changes Path 1.72.2.6 +1 -3 src/sys/security/mac_mls/mac_mls.c From owner-cvs-all@FreeBSD.ORG Sat Mar 1 14:53:41 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E6D581065672; Sat, 1 Mar 2008 14:53:41 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BF6D28FC15; Sat, 1 Mar 2008 14:53:41 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21ErfVr038058; Sat, 1 Mar 2008 14:53:41 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21ErfSs038057; Sat, 1 Mar 2008 14:53:41 GMT (envelope-from erwin) Message-Id: <200803011453.m21ErfSs038057@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 1 Mar 2008 14:53:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11-wm/larswm Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 14:53:42 -0000 erwin 2008-03-01 14:53:41 UTC FreeBSD ports repository Modified files: x11-wm/larswm Makefile Log: Reset maintainer. SMTP error from remote mail server after RCPT TO:: host 63.208.196.167 [63.208.196.167]: 550 User/Domain Unknown Revision Changes Path 1.9 +1 -1 ports/x11-wm/larswm/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 14:55:18 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2158C1065673; Sat, 1 Mar 2008 14:55:18 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EE6438FC16; Sat, 1 Mar 2008 14:55:17 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21EtHqQ038170; Sat, 1 Mar 2008 14:55:17 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21EtHGo038169; Sat, 1 Mar 2008 14:55:17 GMT (envelope-from erwin) Message-Id: <200803011455.m21EtHGo038169@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 1 Mar 2008 14:55:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11/wmappl Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 14:55:18 -0000 erwin 2008-03-01 14:55:17 UTC FreeBSD ports repository Modified files: x11/wmappl Makefile Log: Reset maintainer od@iclub.nsu.ru retry time not reached for any host after a long failure period Revision Changes Path 1.6 +1 -1 ports/x11/wmappl/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 14:56:20 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 056B0106566B; Sat, 1 Mar 2008 14:56:20 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D22AB8FC1B; Sat, 1 Mar 2008 14:56:19 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21EuJKg038217; Sat, 1 Mar 2008 14:56:19 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21EuJXp038216; Sat, 1 Mar 2008 14:56:19 GMT (envelope-from erwin) Message-Id: <200803011456.m21EuJXp038216@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 1 Mar 2008 14:56:19 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/plod Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 14:56:20 -0000 erwin 2008-03-01 14:56:19 UTC FreeBSD ports repository Modified files: sysutils/plod Makefile Log: Reset maintainer. : host far2wise.net[199.237.239.220] said: 553 5.3.0 ... User unknown (in reply to RCPT TO command) Revision Changes Path 1.3 +1 -1 ports/sysutils/plod/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 14:59:39 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0C0D01065672; Sat, 1 Mar 2008 14:59:39 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F09FB8FC18; Sat, 1 Mar 2008 14:59:38 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21ExcdC038407; Sat, 1 Mar 2008 14:59:38 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21ExciE038406; Sat, 1 Mar 2008 14:59:38 GMT (envelope-from erwin) Message-Id: <200803011459.m21ExciE038406@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 1 Mar 2008 14:59:38 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/chinese/msttf Makefile ports/chinese/stardict2-dict-zh_CN Makefile ports/chinese/stardict2-dict-zh_TW Makefile ports/japanese/stardict2-dict-ja Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 14:59:39 -0000 erwin 2008-03-01 14:59:38 UTC FreeBSD ports repository Modified files: chinese/msttf Makefile chinese/stardict2-dict-zh_CN Makefile chinese/stardict2-dict-zh_TW Makefile japanese/stardict2-dict-ja Makefile Log: Reset maintainer. : Sorry, no mailbox here by that name. (#5.1.1) Revision Changes Path 1.4 +1 -1 ports/chinese/msttf/Makefile 1.9 +1 -1 ports/chinese/stardict2-dict-zh_CN/Makefile 1.9 +1 -1 ports/chinese/stardict2-dict-zh_TW/Makefile 1.9 +1 -1 ports/japanese/stardict2-dict-ja/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 15:00:25 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7AC1C1065677; Sat, 1 Mar 2008 15:00:25 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 533A88FC1E; Sat, 1 Mar 2008 15:00:25 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21F0P39038526; Sat, 1 Mar 2008 15:00:25 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21F0PFl038525; Sat, 1 Mar 2008 15:00:25 GMT (envelope-from erwin) Message-Id: <200803011500.m21F0PFl038525@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 1 Mar 2008 15:00:25 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/chinese/stardict2-dict-zh_TW Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 15:00:25 -0000 erwin 2008-03-01 15:00:25 UTC FreeBSD ports repository Modified files: chinese/stardict2-dict-zh_TW Makefile Log: Mark BROKEN: checksum mismatch Revision Changes Path 1.10 +2 -0 ports/chinese/stardict2-dict-zh_TW/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 15:02:51 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0969E1065671; Sat, 1 Mar 2008 15:02:51 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D59248FC1B; Sat, 1 Mar 2008 15:02:50 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21F2oO3038585; Sat, 1 Mar 2008 15:02:50 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21F2oXk038584; Sat, 1 Mar 2008 15:02:50 GMT (envelope-from lth) Message-Id: <200803011502.m21F2oXk038584@repoman.freebsd.org> From: Lars Thegler Date: Sat, 1 Mar 2008 15:02:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/finance/sql-ledger Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 15:02:51 -0000 lth 2008-03-01 15:02:50 UTC FreeBSD ports repository Modified files: finance/sql-ledger Makefile distinfo pkg-plist Log: Update to 2.8.13 For changes, see http://www.sql-ledger.org/cgi-bin/nav.pl?page=news.html&title=What's%20New Revision Changes Path 1.24 +1 -1 ports/finance/sql-ledger/Makefile 1.22 +3 -3 ports/finance/sql-ledger/distinfo 1.19 +2 -1 ports/finance/sql-ledger/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Mar 1 15:28:40 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 69E36106566B; Sat, 1 Mar 2008 15:28:40 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 421188FC30; Sat, 1 Mar 2008 15:28:40 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21FSePQ040898; Sat, 1 Mar 2008 15:28:40 GMT (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21FSe88040897; Sat, 1 Mar 2008 15:28:40 GMT (envelope-from gerald) Message-Id: <200803011528.m21FSe88040897@repoman.freebsd.org> From: Gerald Pfeifer Date: Sat, 1 Mar 2008 15:28:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/gcc44 Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 15:28:40 -0000 gerald 2008-03-01 15:28:40 UTC FreeBSD ports repository Modified files: lang/gcc44 Makefile distinfo pkg-descr pkg-plist Log: Repocopy lang/gcc43 to lang/gcc44 to track GCC 4.4. PR: 120984 Revision Changes Path 1.338 +0 -0 ports/lang/gcc44/Makefile 1.222 +0 -0 ports/lang/gcc44/distinfo 1.11 +0 -0 ports/lang/gcc44/pkg-descr 1.97 +1 -1 ports/lang/gcc44/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Mar 1 15:28:43 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7F1E5106567C; Sat, 1 Mar 2008 15:28:43 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 577668FC1F; Sat, 1 Mar 2008 15:28:43 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21FShCo040925; Sat, 1 Mar 2008 15:28:43 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21FShfv040924; Sat, 1 Mar 2008 15:28:43 GMT (envelope-from erwin) Message-Id: <200803011528.m21FShfv040924@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 1 Mar 2008 15:28:43 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/p5-Crypt-IDEA Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 15:28:43 -0000 erwin 2008-03-01 15:28:43 UTC FreeBSD ports repository Modified files: security/p5-Crypt-IDEA Makefile Log: - use CPAN macro - simplify dependency - bump PORTREVISION PR: 121211 Submitted by: leeym Revision Changes Path 1.29 +2 -4 ports/security/p5-Crypt-IDEA/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 15:29:36 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A23BC1065671; Sat, 1 Mar 2008 15:29:36 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7B06B8FC21; Sat, 1 Mar 2008 15:29:36 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21FTaVw040977; Sat, 1 Mar 2008 15:29:36 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21FTarN040976; Sat, 1 Mar 2008 15:29:36 GMT (envelope-from erwin) Message-Id: <200803011529.m21FTarN040976@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 1 Mar 2008 15:29:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-Perl6-Junction Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 15:29:36 -0000 erwin 2008-03-01 15:29:36 UTC FreeBSD ports repository Modified files: devel/p5-Perl6-Junction Makefile Log: - use CPAN macro - simplify dependency - bump PORTREVISION PR: 121200 Submitted by: leeym Revision Changes Path 1.2 +2 -5 ports/devel/p5-Perl6-Junction/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 15:30:01 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 71CD4106566B; Sat, 1 Mar 2008 15:30:01 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4A0478FC2F; Sat, 1 Mar 2008 15:30:01 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21FU1ml041015; Sat, 1 Mar 2008 15:30:01 GMT (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21FU1Ks041014; Sat, 1 Mar 2008 15:30:01 GMT (envelope-from gerald) Message-Id: <200803011530.m21FU1Ks041014@repoman.freebsd.org> From: Gerald Pfeifer Date: Sat, 1 Mar 2008 15:30:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/gcc44/files java-patch-hier X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 15:30:01 -0000 gerald 2008-03-01 15:30:01 UTC FreeBSD ports repository Modified files: lang/gcc44/files java-patch-hier Log: Repocopy lang/gcc43 to lang/gcc44 to track GCC 4.4. PR: 120984 Revision Changes Path 1.4 +0 -0 ports/lang/gcc44/files/java-patch-hier From owner-cvs-all@FreeBSD.ORG Sat Mar 1 15:38:26 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 169C71065679; Sat, 1 Mar 2008 15:38:26 +0000 (UTC) (envelope-from tg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E378C8FC28; Sat, 1 Mar 2008 15:38:25 +0000 (UTC) (envelope-from tg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21FcPmY041679; Sat, 1 Mar 2008 15:38:25 GMT (envelope-from tg@repoman.freebsd.org) Received: (from tg@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21FcPA9041678; Sat, 1 Mar 2008 15:38:25 GMT (envelope-from tg) Message-Id: <200803011538.m21FcPA9041678@repoman.freebsd.org> From: Thomas Gellekum Date: Sat, 1 Mar 2008 15:38:25 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11/xwit Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 15:38:26 -0000 tg 2008-03-01 15:38:25 UTC FreeBSD ports repository Modified files: x11/xwit Makefile Log: Use MASTER_SITE_XCONTRIB. Revision Changes Path 1.16 +2 -2 ports/x11/xwit/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 15:40:53 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B566B1065674; Sat, 1 Mar 2008 15:40:53 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A73028FC16; Sat, 1 Mar 2008 15:40:53 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21FerDA041815; Sat, 1 Mar 2008 15:40:53 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21FerSv041814; Sat, 1 Mar 2008 15:40:53 GMT (envelope-from rwatson) Message-Id: <200803011540.m21FerSv041814@repoman.freebsd.org> From: Robert Watson Date: Sat, 1 Mar 2008 15:40:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sys/kern uipc_sockbuf.c uipc_socket.c src/sys/sys socketvar.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 15:40:53 -0000 rwatson 2008-03-01 15:40:53 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/kern uipc_sockbuf.c uipc_socket.c sys/sys socketvar.h Log: Merge uipc_sockbuf.c:1.176, uipc_socket.c:1.305, socketvar.h:1.162 from HEAD to RELENG_7: Further clean up sorflush: - Expose sbrelease_internal(), a variant of sbrelease() with no expectations about the validity of locks in the socket buffer. - Use sbrelease_internel() in sorflush(), and as a result avoid initializing and destroying a socket buffer lock for the temporary stack copy of the actual buffer, asb. - Add a comment indicating why we do what we do, and remove an XXX since things have gotten less ugly in sorflush() lately. This makes socket close cleaner, and possibly also marginally faster. Revision Changes Path 1.171.2.3 +1 -2 src/sys/kern/uipc_sockbuf.c 1.302.2.2 +12 -12 src/sys/kern/uipc_socket.c 1.158.2.2 +1 -0 src/sys/sys/socketvar.h From owner-cvs-all@FreeBSD.ORG Sat Mar 1 15:42:01 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 88BD91065675; Sat, 1 Mar 2008 15:42:01 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 61C5E8FC24; Sat, 1 Mar 2008 15:42:01 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21Fg1vr041884; Sat, 1 Mar 2008 15:42:01 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21Fg1wv041883; Sat, 1 Mar 2008 15:42:01 GMT (envelope-from rwatson) Message-Id: <200803011542.m21Fg1wv041883@repoman.freebsd.org> From: Robert Watson Date: Sat, 1 Mar 2008 15:42:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sys/arm/xscale/ixp425 ixp425.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 15:42:01 -0000 rwatson 2008-03-01 15:42:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/arm/xscale/ixp425 ixp425.c Log: Merge ixp425.c:1.9 from HEAD to RELENG_7: On the ixp425, when we fail to initialize the memory rman instance, the panic message should read "memory", not "IRQ". Revision Changes Path 1.8.2.1 +1 -1 src/sys/arm/xscale/ixp425/ixp425.c From owner-cvs-all@FreeBSD.ORG Sat Mar 1 15:42:24 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 515D01065673; Sat, 1 Mar 2008 15:42:24 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2A2A18FC22; Sat, 1 Mar 2008 15:42:24 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21FgOxp041926; Sat, 1 Mar 2008 15:42:24 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21FgNvD041925; Sat, 1 Mar 2008 15:42:23 GMT (envelope-from rwatson) Message-Id: <200803011542.m21FgNvD041925@repoman.freebsd.org> From: Robert Watson Date: Sat, 1 Mar 2008 15:42:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sys/arm/include _bus.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 15:42:24 -0000 rwatson 2008-03-01 15:42:23 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/arm/include _bus.h Log: Merge _bus.h:1.2 from HEAD to RELENG_7: Remove errant % in license comment. Revision Changes Path 1.1.10.1 +1 -1 src/sys/arm/include/_bus.h From owner-cvs-all@FreeBSD.ORG Sat Mar 1 15:43:01 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 42F7F106567B; Sat, 1 Mar 2008 15:43:01 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1B7EA8FC20; Sat, 1 Mar 2008 15:43:01 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21Fh0os041980; Sat, 1 Mar 2008 15:43:00 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21Fh0be041979; Sat, 1 Mar 2008 15:43:00 GMT (envelope-from rwatson) Message-Id: <200803011543.m21Fh0be041979@repoman.freebsd.org> From: Robert Watson Date: Sat, 1 Mar 2008 15:43:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sys/fs/coda TODO X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 15:43:01 -0000 rwatson 2008-03-01 15:43:00 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/fs/coda TODO Log: Merge TODO:1.6 from HEAD to RELENG_7: Add "Make MPSAFE" to the Coda todo list. Revision Changes Path 1.3.2.1 +1 -0 src/sys/fs/coda/TODO From owner-cvs-all@FreeBSD.ORG Sat Mar 1 16:17:30 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C7AD51065670; Sat, 1 Mar 2008 16:17:30 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B79748FC19; Sat, 1 Mar 2008 16:17:30 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21GHUXP044321; Sat, 1 Mar 2008 16:17:30 GMT (envelope-from philip@repoman.freebsd.org) Received: (from philip@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21GHU1s044320; Sat, 1 Mar 2008 16:17:30 GMT (envelope-from philip) Message-Id: <200803011617.m21GHU1s044320@repoman.freebsd.org> From: Philip Paeps Date: Sat, 1 Mar 2008 16:17:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/lib/libc/sys mq_close.2 mq_getattr.2 mq_notify.2 mq_open.2 mq_receive.2 mq_send.2 mq_setattr.2 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 16:17:30 -0000 philip 2008-03-01 16:17:30 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) lib/libc/sys mq_close.2 mq_getattr.2 mq_notify.2 mq_open.2 mq_receive.2 mq_send.2 mq_setattr.2 Log: MFC: Note, as required by our agreement with IEEE/The Open Group, that the message queue manual pages excerpt the POSIX standard. Revision Changes Path 1.4.2.1 +20 -0 src/lib/libc/sys/mq_close.2 1.4.2.1 +20 -0 src/lib/libc/sys/mq_getattr.2 1.8.2.1 +20 -0 src/lib/libc/sys/mq_notify.2 1.8.2.1 +20 -0 src/lib/libc/sys/mq_open.2 1.5.2.1 +20 -0 src/lib/libc/sys/mq_receive.2 1.4.2.1 +20 -0 src/lib/libc/sys/mq_send.2 1.5.2.1 +20 -0 src/lib/libc/sys/mq_setattr.2 From owner-cvs-all@FreeBSD.ORG Sat Mar 1 16:21:59 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D88FF1065671; Sat, 1 Mar 2008 16:21:59 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AF2498FC1B; Sat, 1 Mar 2008 16:21:59 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21GLx8n044536; Sat, 1 Mar 2008 16:21:59 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21GLxRS044535; Sat, 1 Mar 2008 16:21:59 GMT (envelope-from itetcu) Message-Id: <200803011621.m21GLxRS044535@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Sat, 1 Mar 2008 16:21:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/dt Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 16:22:00 -0000 itetcu 2008-03-01 16:21:59 UTC FreeBSD ports repository Modified files: sysutils/dt Makefile Log: Fix typo in MASTER_SITES Revision Changes Path 1.9 +1 -1 ports/sysutils/dt/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 16:30:44 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0527E106566C; Sat, 1 Mar 2008 16:30:44 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C803B8FC15; Sat, 1 Mar 2008 16:30:43 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21GUhVR044919; Sat, 1 Mar 2008 16:30:43 GMT (envelope-from bsam@repoman.freebsd.org) Received: (from bsam@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21GUgtS044918; Sat, 1 Mar 2008 16:30:42 GMT (envelope-from bsam) Message-Id: <200803011630.m21GUgtS044918@repoman.freebsd.org> From: Boris Samorodov Date: Sat, 1 Mar 2008 16:30:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/eric4 Makefile.inc distinfo pkg-plist ports/devel/eric4/files config patch-eric_eric4.e4p ports/french/eric4 distinfo ports/german/eric4 distinfo ports/russian/eric4 distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 16:30:44 -0000 bsam 2008-03-01 16:30:41 UTC FreeBSD ports repository Modified files: devel/eric4 Makefile.inc distinfo pkg-plist devel/eric4/files config french/eric4 distinfo german/eric4 distinfo russian/eric4 distinfo Removed files: devel/eric4/files patch-eric_eric4.e4p Log: Update to 4.1.1: . bug-fix release; . a patch from devel/eric4/files/ incorporated upstream; . fix configuration file (mdir is rather mainDir but not manDir). Revision Changes Path 1.6 +2 -2 ports/devel/eric4/Makefile.inc 1.6 +3 -3 ports/devel/eric4/distinfo 1.3 +1 -1 ports/devel/eric4/files/config 1.2 +0 -18 ports/devel/eric4/files/patch-eric_eric4.e4p (dead) 1.4 +2 -2 ports/devel/eric4/pkg-plist 1.6 +3 -3 ports/french/eric4/distinfo 1.6 +3 -3 ports/german/eric4/distinfo 1.6 +3 -3 ports/russian/eric4/distinfo From owner-cvs-all@FreeBSD.ORG Sat Mar 1 16:39:03 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 13123106566C; Sat, 1 Mar 2008 16:39:03 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DC92E8FC1F; Sat, 1 Mar 2008 16:39:02 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21Gd2f9045195; Sat, 1 Mar 2008 16:39:02 GMT (envelope-from obraun@repoman.freebsd.org) Received: (from obraun@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21Gd2M3045194; Sat, 1 Mar 2008 16:39:02 GMT (envelope-from obraun) Message-Id: <200803011639.m21Gd2M3045194@repoman.freebsd.org> From: Oliver Braun Date: Sat, 1 Mar 2008 16:39:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/hs-drift Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 16:39:03 -0000 obraun 2008-03-01 16:39:02 UTC FreeBSD ports repository Modified files: devel/hs-drift Makefile distinfo Log: * Update to 2.2.3. * Fix mastersite. Revision Changes Path 1.22 +2 -3 ports/devel/hs-drift/Makefile 1.11 +3 -3 ports/devel/hs-drift/distinfo From owner-cvs-all@FreeBSD.ORG Sat Mar 1 16:56:10 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AF27B1065742; Sat, 1 Mar 2008 16:56:10 +0000 (UTC) (envelope-from brian@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 839848FC18; Sat, 1 Mar 2008 16:56:10 +0000 (UTC) (envelope-from brian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21GuA5q054701; Sat, 1 Mar 2008 16:56:10 GMT (envelope-from brian@repoman.freebsd.org) Received: (from brian@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21GuAtY054700; Sat, 1 Mar 2008 16:56:10 GMT (envelope-from brian) Message-Id: <200803011656.m21GuAtY054700@repoman.freebsd.org> From: Brian Somers Date: Sat, 1 Mar 2008 16:56:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT access X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 16:56:10 -0000 brian 2008-03-01 16:56:10 UTC FreeBSD src repository Modified files: . access Log: Change my email address to something that works... pending Awfulhak.org being updated. Approved by: core (wilko) Revision Changes Path 1.861 +1 -1 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Sat Mar 1 17:14:03 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5DDA1106566C; Sat, 1 Mar 2008 17:14:03 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 313BB8FC26; Sat, 1 Mar 2008 17:14:03 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21HE3Eu056510; Sat, 1 Mar 2008 17:14:03 GMT (envelope-from mav@repoman.freebsd.org) Received: (from mav@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21HE2O7056509; Sat, 1 Mar 2008 17:14:02 GMT (envelope-from mav) Message-Id: <200803011714.m21HE2O7056509@repoman.freebsd.org> From: Alexander Motin Date: Sat, 1 Mar 2008 17:14:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man4 ng_nat.4 src/sys/netgraph ng_nat.c ng_nat.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 17:14:03 -0000 mav 2008-03-01 17:14:02 UTC FreeBSD src repository Modified files: share/man/man4 ng_nat.4 sys/netgraph ng_nat.c ng_nat.h Log: Add support for the libalias redirect functionality. Submitted by: Vadim Goncharov Revision Changes Path 1.4 +188 -2 src/share/man/man4/ng_nat.4 1.11 +431 -1 src/sys/netgraph/ng_nat.c 1.3 +127 -0 src/sys/netgraph/ng_nat.h From owner-cvs-all@FreeBSD.ORG Sat Mar 1 17:16:27 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C370106566B; Sat, 1 Mar 2008 17:16:27 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5F42B8FC18; Sat, 1 Mar 2008 17:16:27 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21HGRok056635; Sat, 1 Mar 2008 17:16:27 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21HGR1i056634; Sat, 1 Mar 2008 17:16:27 GMT (envelope-from blackend) Message-Id: <200803011716.m21HGR1i056634@repoman.freebsd.org> From: Marc Fonvieille Date: Sat, 1 Mar 2008 17:16:27 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/fr_FR.ISO8859-1/books/handbook/install chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 17:16:27 -0000 blackend 2008-03-01 17:16:27 UTC FreeBSD doc repository Modified files: fr_FR.ISO8859-1/books/handbook/install chapter.sgml Log: MFen: 1.383 --> 1.388 Revision Changes Path 1.38 +62 -26 doc/fr_FR.ISO8859-1/books/handbook/install/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sat Mar 1 17:32:18 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B10B106566B; Sat, 1 Mar 2008 17:32:18 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 264EF8FC19; Sat, 1 Mar 2008 17:32:18 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21HWI3K057225; Sat, 1 Mar 2008 17:32:18 GMT (envelope-from jkois@repoman.freebsd.org) Received: (from jkois@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21HWIB2057224; Sat, 1 Mar 2008 17:32:18 GMT (envelope-from jkois) Message-Id: <200803011732.m21HWIB2057224@repoman.freebsd.org> From: Johann Kois Date: Sat, 1 Mar 2008 17:32:17 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/de developers.sgml index.xsl www/de/news/2006 news.xml www/de/security Makefile charter.sgml mkindex.xsl security.sgml www/de/share/sgml libcommon.xsl navibar.l10n.ent news.xml press.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 17:32:18 -0000 jkois 2008-03-01 17:32:17 UTC FreeBSD doc repository Modified files: de developers.sgml index.xsl de/news/2006 news.xml de/security Makefile charter.sgml security.sgml de/share/sgml libcommon.xsl navibar.l10n.ent news.xml press.xml Removed files: de/security mkindex.xsl Log: MFde: Update the German website. www/de/developers.sgml 1.186 -> 1.187 www/de/index.xsl 1.161 -> 1.163 www/de/news/2006/news.xml 1.1 -> 1.2 www/de/security/Makefile 1.14 -> 1.16 www/de/security/charter.sgml 1.5 -> 1.6 www/de/security/mkindex.xsl remove obsolete file www/de/security/security.sgml 1.196 -> 1.200 www/de/share/sgml/libcommon.xsl 1.13 -> 1.16 www/de/share/sgml/navibar.l10n.ent 1.15 -> 1.16 www/de/share/sgml/news.xml 1.146 -> 1.149 www/de/share/sgml/press.xml 1.57 -> 1.59 Obtained from: The FreeBSD German Documentation Project Revision Changes Path 1.21 +3 -2 www/de/developers.sgml 1.44 +2 -4 www/de/index.xsl 1.2 +11 -4 www/de/news/2006/news.xml 1.8 +2 -11 www/de/security/Makefile 1.6 +2 -3 www/de/security/charter.sgml 1.5 +0 -33 www/de/security/mkindex.xsl (dead) 1.26 +55 -73 www/de/security/security.sgml 1.8 +4 -3 www/de/share/sgml/libcommon.xsl 1.14 +7 -3 www/de/share/sgml/navibar.l10n.ent 1.45 +34 -2 www/de/share/sgml/news.xml 1.30 +27 -2 www/de/share/sgml/press.xml From owner-cvs-all@FreeBSD.ORG Sat Mar 1 17:36:41 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4D8C51065670 for ; Sat, 1 Mar 2008 17:36:41 +0000 (UTC) (envelope-from apache@mail.cti-miami.com) Received: from mail.cti-miami.com (mail.cti-miami.com [74.205.120.93]) by mx1.freebsd.org (Postfix) with ESMTP id 2405E8FC1D for ; Sat, 1 Mar 2008 17:36:40 +0000 (UTC) (envelope-from apache@mail.cti-miami.com) Received: by mail.cti-miami.com (Postfix, from userid 48) id 33EE418FB500; Sat, 1 Mar 2008 03:00:59 -0600 (CST) To: cvs-all@freebsd.org From: Office Of The Senate House MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 8bit Message-Id: <20080301090059.33EE418FB500@mail.cti-miami.com> Date: Sat, 1 Mar 2008 03:00:59 -0600 (CST) Subject: Your Payment Update USD10.5Million Via ATM Card X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: atmdeptafribank6@yahoo.es List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 17:36:41 -0000 OFFICE OF THE SENATE HOUSE FEDERAL REPUBLIC OF NIGERIA COMMITTEE ON FOREIGN PAYMENT (RESOLUTIONPANEL ON CONTRACT PAYMENT) IKOYI-LAGOS NIGERIA E-mail: senatehouseng@live.com FILE CODE #: ATM/LAG/NG ATTN: BENEFICIARY, IMMEDIATE RELEASE OF YOUR INHERITANCE FUND VIA ATM SWIFT CARD. In close consultation with the World Bank, IMF and the European Union (EU), this is to notify you of your enlistment as a beneficiary of a recent Debt Management and Settlement Forum organized on the status of global arrangement to have your beneficiary fund settled once and for all. Of course, In the hope that you must have been aware of the past financial leakages in the European foreign inheritance payment system, and frustrations associated there from in your last attempt to claim the fund, wherein fund beneficiaries (like your self) was subjected to unnecessary bureaucratic bottlenecks in lieu of claiming funds due them. The World Body, having solicited and received the cooperation of Nigerian Presidency, in harmonizing the sequence of payments, have discovered from records of outstanding foreign inheritance fund beneficiaries due them, that your name and payment has been with held and remain unpaid as a result of such bottleneck. On the prompting of this finding, I wish to officially notify you that all aspects of your payment claim is being harmonized, enabling payment to be released to you as urgently as you act on the instructions of this mail. Consequently, Afribank Nigeria Plc has been directed by the World Body to off set these outstanding debts, using ATM Swift Card payment arrangement. Already, a total amount of US$500 Million has been provided to the bank for this purpose and it is on first come first serve. With this arrangement, I wish to inform you that Afribank Nigeria Plc has been instructed to issue in your name an ATM Cash Card with the valued amount of US$10.5M. In paying this amount to you, please note that it is without Prejudice to your original inheritance sum. Rather, it is a stop-gap payment arrangement put in place by the World Body to on the one hand ensure that you receive part of your fund, while on the other hand ensure that the process is smooth and without any form of stress whatsoever, whereas a comprehensive arrangement shall be made in future to pay off the remaining fund due you. However, we are worried with the counter information received from one Mr. Jack Law, purporting to be from your directive, with express instruction to activate the ATM Cash Card for release of fund to his name a bank account in the "Cayman Islands" Obviously, we are hesitant to honor this instruction as it were, and would request that you clarify same upon your contact with Afribank Nigeria Plc . In addition to that, you should provide the bank with the following details to forestall any mistake of issuing the ATM Card with the wrong information already submitted by Mr. Jack Law: (1) Your full names, address, phone, fax and Cell numbers (up to date) for ease of contact (2) Beneficiary name for activation of your ATM CARD. Believing that this arrangement will suit your condition and expectations, we will therefore request for your expedited response to avoid any more delay. Your response should be directed to Afribank Nigeria Plc , Attention: Dr. David William ; Director Atm Payment Dept through his official email address: atmdeptafribank6@yahoo.es ,Tel/fax: 234-1-4720582 ,Your file reference code for your payment is ATM/LAG/NG and should be quoted in your contact mail to the bank otherwise the bank will not recognize/process your ATM Swift Payment. Senator David Mark (New Senate President Federal Republic OF Nigeria ) From owner-cvs-all@FreeBSD.ORG Sat Mar 1 17:38:37 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4E103106566C; Sat, 1 Mar 2008 17:38:37 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3AA1E8FC13; Sat, 1 Mar 2008 17:38:37 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21Hcb8V057493; Sat, 1 Mar 2008 17:38:37 GMT (envelope-from obraun@repoman.freebsd.org) Received: (from obraun@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21HcbpC057492; Sat, 1 Mar 2008 17:38:37 GMT (envelope-from obraun) Message-Id: <200803011738.m21HcbpC057492@repoman.freebsd.org> From: Oliver Braun Date: Sat, 1 Mar 2008 17:38:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics Makefile ports/graphics/hs-HGL-ghc Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 17:38:37 -0000 obraun 2008-03-01 17:38:37 UTC FreeBSD ports repository Modified files: graphics Makefile Added files: graphics/hs-HGL-ghc Makefile distinfo pkg-descr pkg-plist Log: A simple graphics library, designed to give the programmer access to most interesting parts of the Win32 Graphics Device Interface and X11 library without exposing the programmer to the pain and anguish usually associated with using these interfaces. The library also includes a module Graphics.SOE providing the interface used in "The Haskell School of Expression", by Paul Hudak, cf . author: Alastair Reid maintainer: license: BSD3 WWW: http://www.haskell.org/graphics/index.html package-url: http://hackage.haskell.org/packages/archive/HGL exposed-modules: Graphics.HGL.Core, Graphics.HGL.Draw, Graphics.HGL.Units, Graphics.HGL.Key, Graphics.HGL.Run, Graphics.HGL.Draw.Brush, Graphics.HGL.Draw.Font, Graphics.HGL.Draw.Monad, Graphics.HGL.Draw.Pen, Graphics.HGL.Draw.Picture, Graphics.HGL.Draw.Region, Graphics.HGL.Draw.Text, Graphics.HGL.Utils, Graphics.HGL.Window, Graphics.HGL, Graphics.SOE PR: ports/121081 Submitted by: Giuseppe Pilichi aka Jacula Modyun Revision Changes Path 1.1134 +1 -0 ports/graphics/Makefile 1.1 +65 -0 ports/graphics/hs-HGL-ghc/Makefile (new) 1.1 +3 -0 ports/graphics/hs-HGL-ghc/distinfo (new) 1.1 +23 -0 ports/graphics/hs-HGL-ghc/pkg-descr (new) 1.1 +43 -0 ports/graphics/hs-HGL-ghc/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Mar 1 17:42:33 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3F9DD1065672; Sat, 1 Mar 2008 17:42:33 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1372A8FC1D; Sat, 1 Mar 2008 17:42:33 +0000 (UTC) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21HgWit057651; Sat, 1 Mar 2008 17:42:32 GMT (envelope-from obraun@repoman.freebsd.org) Received: (from obraun@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21HgWoE057650; Sat, 1 Mar 2008 17:42:32 GMT (envelope-from obraun) Message-Id: <200803011742.m21HgWoE057650@repoman.freebsd.org> From: Oliver Braun Date: Sat, 1 Mar 2008 17:42:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 17:42:33 -0000 obraun 2008-03-01 17:42:32 UTC FreeBSD ports repository Modified files: . modules Log: hs-HGL-ghc --> ports/graphics/hs-HGL-ghc Revision Changes Path 1.19455 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Mar 1 17:50:04 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 56810106566B; Sat, 1 Mar 2008 17:50:04 +0000 (UTC) (envelope-from loader@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 296BA8FC24; Sat, 1 Mar 2008 17:50:04 +0000 (UTC) (envelope-from loader@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21Ho4A0057940; Sat, 1 Mar 2008 17:50:04 GMT (envelope-from loader@repoman.freebsd.org) Received: (from loader@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21Ho4Cw057939; Sat, 1 Mar 2008 17:50:04 GMT (envelope-from loader) Message-Id: <200803011750.m21Ho4Cw057939@repoman.freebsd.org> From: Fukang Chen Date: Sat, 1 Mar 2008 17:50:04 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/firewalls chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 17:50:04 -0000 loader 2008-03-01 17:50:03 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/firewalls chapter.sgml Log: s/option divert/option IPDIVERT/ to enable support for divert sockets. Obtained from: The FreeBSD Simplified Chinese Project Submitted by: zheng chengfu (iheaing at gmail.com) Revision Changes Path 1.81 +1 -1 doc/en_US.ISO8859-1/books/handbook/firewalls/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sat Mar 1 17:50:11 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7E79F10656C2; Sat, 1 Mar 2008 17:50:11 +0000 (UTC) (envelope-from piso@southcross.wired.org) Received: from mail.oltrelinux.com (krisma.oltrelinux.com [194.242.226.43]) by mx1.freebsd.org (Postfix) with ESMTP id 359CD8FC31; Sat, 1 Mar 2008 17:50:10 +0000 (UTC) (envelope-from piso@southcross.wired.org) Received: from southcross.wired.org (host-62-10-37-123.cust-adsl.tiscali.it [62.10.37.123]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.oltrelinux.com (Postfix) with ESMTP id E658811AE43; Sat, 1 Mar 2008 18:30:28 +0100 (CET) Received: (from piso@localhost) by southcross.wired.org (8.14.2/8.14.1/Submit) id m21HXP5m016066; Sat, 1 Mar 2008 18:33:25 +0100 (CET) (envelope-from piso) Date: Sat, 1 Mar 2008 18:33:24 +0100 From: Paolo Pisati To: Alexander Motin Message-ID: <20080301173324.GA16036@tin.it> References: <200803011714.m21HE2O7056509@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200803011714.m21HE2O7056509@repoman.freebsd.org> User-Agent: Mutt/1.5.17 (2007-11-01) X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at krisma.oltrelinux.com Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man4 ng_nat.4 src/sys/netgraph ng_nat.c ng_nat.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 17:50:11 -0000 On Sat, Mar 01, 2008 at 05:14:02PM +0000, Alexander Motin wrote: > mav 2008-03-01 17:14:02 UTC > > FreeBSD src repository > > Modified files: > share/man/man4 ng_nat.4 > sys/netgraph ng_nat.c ng_nat.h > Log: > Add support for the libalias redirect functionality. > > Submitted by: Vadim Goncharov Thanks! :) bye, P. From owner-cvs-all@FreeBSD.ORG Sat Mar 1 18:30:49 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 080E8106566C; Sat, 1 Mar 2008 18:30:49 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id CF8E88FC19; Sat, 1 Mar 2008 18:30:48 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21IUmOD060456; Sat, 1 Mar 2008 18:30:48 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21IUmZm060455; Sat, 1 Mar 2008 18:30:48 GMT (envelope-from simon) Message-Id: <200803011830.m21IUmZm060455@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 1 Mar 2008 18:30:48 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/share/sgml events.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 18:30:49 -0000 simon 2008-03-01 18:30:48 UTC FreeBSD doc repository Modified files: share/sgml events.xml Log: Update NYCBSDCon 2008 description. Submitted by: George Rosamond Revision Changes Path 1.43 +8 -7 www/share/sgml/events.xml From owner-cvs-all@FreeBSD.ORG Sat Mar 1 18:35:28 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9B6FD1065670; Sat, 1 Mar 2008 18:35:28 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6E9FE8FC18; Sat, 1 Mar 2008 18:35:28 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21IZSER061080; Sat, 1 Mar 2008 18:35:28 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21IZSrx061079; Sat, 1 Mar 2008 18:35:28 GMT (envelope-from obrien) Message-Id: <200803011835.m21IZSrx061079@repoman.freebsd.org> From: "David E. O'Brien" Date: Sat, 1 Mar 2008 18:35:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/ufs/ufs ufs_quota.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 18:35:28 -0000 obrien 2008-03-01 18:35:27 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/ufs/ufs ufs_quota.c Log: Sync with HEAD - remove unneeded cases. Revision Changes Path 1.74.2.10 +5 -5 src/sys/ufs/ufs/ufs_quota.c From owner-cvs-all@FreeBSD.ORG Sat Mar 1 18:57:38 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CAACC1065670; Sat, 1 Mar 2008 18:57:38 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9D9B58FC12; Sat, 1 Mar 2008 18:57:38 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21Ivccs063702; Sat, 1 Mar 2008 18:57:38 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21IvcPd063701; Sat, 1 Mar 2008 18:57:38 GMT (envelope-from hrs) Message-Id: <200803011857.m21IvcPd063701@repoman.freebsd.org> From: Hiroki Sato Date: Sat, 1 Mar 2008 18:57:38 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/print/latex-feynmf Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 18:57:39 -0000 hrs 2008-03-01 18:57:38 UTC FreeBSD ports repository Modified files: print/latex-feynmf Makefile distinfo pkg-plist Log: - Fix distinfo. latex-feynmf/feynmf.pl has been updated. - Use $PORTDOCS. Spotted by: pointyhat Revision Changes Path 1.6 +4 -4 ports/print/latex-feynmf/Makefile 1.5 +3 -3 ports/print/latex-feynmf/distinfo 1.3 +1 -9 ports/print/latex-feynmf/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Mar 1 19:04:40 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D8C301065670; Sat, 1 Mar 2008 19:04:40 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AB62E8FC18; Sat, 1 Mar 2008 19:04:40 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21J4eJS065120; Sat, 1 Mar 2008 19:04:40 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21J4eAY065119; Sat, 1 Mar 2008 19:04:40 GMT (envelope-from hrs) Message-Id: <200803011904.m21J4eAY065119@repoman.freebsd.org> From: Hiroki Sato Date: Sat, 1 Mar 2008 19:04:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/print/latex-caption Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 19:04:41 -0000 hrs 2008-03-01 19:04:40 UTC FreeBSD ports repository Modified files: print/latex-caption Makefile distinfo pkg-plist Log: - Update to 3.1.20071213. - Use $PORTDOCS. Revision Changes Path 1.17 +18 -13 ports/print/latex-caption/Makefile 1.10 +48 -21 ports/print/latex-caption/distinfo 1.5 +3 -14 ports/print/latex-caption/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Mar 1 19:15:30 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EF6051065671; Sat, 1 Mar 2008 19:15:30 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C2D218FC17; Sat, 1 Mar 2008 19:15:30 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21JFU4g065590; Sat, 1 Mar 2008 19:15:30 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21JFUFi065589; Sat, 1 Mar 2008 19:15:30 GMT (envelope-from ehaupt) Message-Id: <200803011915.m21JFUFi065589@repoman.freebsd.org> From: Emanuel Haupt Date: Sat, 1 Mar 2008 19:15:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/nload pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 19:15:31 -0000 ehaupt 2008-03-01 19:15:27 UTC FreeBSD ports repository Modified files: net/nload pkg-descr Log: Update WWW Revision Changes Path 1.2 +1 -1 ports/net/nload/pkg-descr From owner-cvs-all@FreeBSD.ORG Sat Mar 1 19:19:44 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA4691065671; Sat, 1 Mar 2008 19:19:44 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8D33C8FC12; Sat, 1 Mar 2008 19:19:44 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21JJial065707; Sat, 1 Mar 2008 19:19:44 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21JJiF0065706; Sat, 1 Mar 2008 19:19:44 GMT (envelope-from tabthorpe) Message-Id: <200803011919.m21JJiF0065706@repoman.freebsd.org> From: Thomas Abthorpe Date: Sat, 1 Mar 2008 19:19:44 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/munger Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 19:19:44 -0000 tabthorpe 2008-03-01 19:19:44 UTC FreeBSD ports repository Modified files: lang/munger Makefile distinfo pkg-plist Log: - Update to 1.46 PR: ports/121249 Submitted by: James Bailie Revision Changes Path 1.69 +1 -1 ports/lang/munger/Makefile 1.68 +3 -3 ports/lang/munger/distinfo 1.45 +1 -1 ports/lang/munger/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Mar 1 19:21:08 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AA87C106566B; Sat, 1 Mar 2008 19:21:08 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7DF458FC1C; Sat, 1 Mar 2008 19:21:08 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21JL8x3065843; Sat, 1 Mar 2008 19:21:08 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21JL8LJ065842; Sat, 1 Mar 2008 19:21:08 GMT (envelope-from tabthorpe) Message-Id: <200803011921.m21JL8LJ065842@repoman.freebsd.org> From: Thomas Abthorpe Date: Sat, 1 Mar 2008 19:21:08 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/editors/dkns Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 19:21:08 -0000 tabthorpe 2008-03-01 19:21:08 UTC FreeBSD ports repository Modified files: editors/dkns Makefile distinfo Log: - Update to 1.75 PR: ports/121250 Submitted by: James Bailie Revision Changes Path 1.2 +1 -1 ports/editors/dkns/Makefile 1.2 +3 -3 ports/editors/dkns/distinfo From owner-cvs-all@FreeBSD.ORG Sat Mar 1 19:25:10 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ADA3D1065671; Sat, 1 Mar 2008 19:25:10 +0000 (UTC) (envelope-from marck@rinet.ru) Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) by mx1.freebsd.org (Postfix) with ESMTP id 1F1ED8FC27; Sat, 1 Mar 2008 19:25:09 +0000 (UTC) (envelope-from marck@rinet.ru) Received: from localhost (localhost [127.0.0.1]) by woozle.rinet.ru (8.14.2/8.14.1) with ESMTP id m21JP8wk074762; Sat, 1 Mar 2008 22:25:08 +0300 (MSK) (envelope-from marck@rinet.ru) Date: Sat, 1 Mar 2008 22:25:08 +0300 (MSK) From: Dmitry Morozovsky To: Wilko Bulte In-Reply-To: <200802290912.m1T9CsDJ074384@repoman.freebsd.org> Message-ID: <20080301222414.P49885@woozle.rinet.ru> References: <200802290912.m1T9CsDJ074384@repoman.freebsd.org> X-NCC-RegID: ru.rinet X-OpenPGP-Key-ID: 6B691B03 MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (woozle.rinet.ru [0.0.0.0]); Sat, 01 Mar 2008 22:25:08 +0300 (MSK) Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: CVSROOT access X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 19:25:10 -0000 On Fri, 29 Feb 2008, Wilko Bulte wrote: WB> Modified files: WB> . access WB> Log: WB> Changes to email forwards can be made without core's approval. Please WB> use "Approved by: core (implicit)" to that type of commits. Don't you think similar comments should be added to other repositories' CVSROOT/access? Sincerely, D.Marck [DM5020, MCK-RIPE, DM3-RIPN] [ FreeBSD committer: marck@FreeBSD.org ] ------------------------------------------------------------------------ *** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru *** ------------------------------------------------------------------------ From owner-cvs-all@FreeBSD.ORG Sat Mar 1 19:28:15 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AADD0106566C; Sat, 1 Mar 2008 19:28:15 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7DCBA8FC13; Sat, 1 Mar 2008 19:28:15 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21JSFGm066098; Sat, 1 Mar 2008 19:28:15 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21JSF99066097; Sat, 1 Mar 2008 19:28:15 GMT (envelope-from chinsan) Message-Id: <200803011928.m21JSF99066097@repoman.freebsd.org> From: Chin-San Huang Date: Sat, 1 Mar 2008 19:28:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11/xdialog Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 19:28:15 -0000 chinsan 2008-03-01 19:28:15 UTC FreeBSD ports repository Modified files: x11/xdialog Makefile Log: - Add MASTER_SITES. Noticed by: erwin Revision Changes Path 1.33 +2 -1 ports/x11/xdialog/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 19:33:27 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 43243106566B; Sat, 1 Mar 2008 19:33:27 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 164B08FC18; Sat, 1 Mar 2008 19:33:27 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21JXQrQ066339; Sat, 1 Mar 2008 19:33:26 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21JXQSc066338; Sat, 1 Mar 2008 19:33:26 GMT (envelope-from chinsan) Message-Id: <200803011933.m21JXQSc066338@repoman.freebsd.org> From: Chin-San Huang Date: Sat, 1 Mar 2008 19:33:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/paexec Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 19:33:27 -0000 chinsan 2008-03-01 19:33:26 UTC FreeBSD ports repository Modified files: devel/paexec Makefile distinfo Log: - Update to 0.7.0 Revision Changes Path 1.2 +1 -1 ports/devel/paexec/Makefile 1.2 +3 -3 ports/devel/paexec/distinfo From owner-cvs-all@FreeBSD.ORG Sat Mar 1 19:35:28 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7807F106566C; Sat, 1 Mar 2008 19:35:28 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4B2308FC22; Sat, 1 Mar 2008 19:35:28 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21JZSJ1066501; Sat, 1 Mar 2008 19:35:28 GMT (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21JZSdQ066500; Sat, 1 Mar 2008 19:35:28 GMT (envelope-from glewis) Message-Id: <200803011935.m21JZSdQ066500@repoman.freebsd.org> From: Greg Lewis Date: Sat, 1 Mar 2008 19:35:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/archivers/libarchive Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 19:35:28 -0000 glewis 2008-03-01 19:35:28 UTC FreeBSD ports repository Modified files: archivers/libarchive Makefile distinfo Log: . Update to 2.4.13. Revision Changes Path 1.48 +1 -1 ports/archivers/libarchive/Makefile 1.43 +3 -3 ports/archivers/libarchive/distinfo From owner-cvs-all@FreeBSD.ORG Sat Mar 1 19:47:53 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 926AE1065675; Sat, 1 Mar 2008 19:47:53 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7BED48FC2B; Sat, 1 Mar 2008 19:47:53 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21JlrWw067076; Sat, 1 Mar 2008 19:47:53 GMT (envelope-from attilio@repoman.freebsd.org) Received: (from attilio@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21JlpmG067075; Sat, 1 Mar 2008 19:47:51 GMT (envelope-from attilio) Message-Id: <200803011947.m21JlpmG067075@repoman.freebsd.org> From: Attilio Rao Date: Sat, 1 Mar 2008 19:47:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb ehci.c src/sys/fs/nwfs nwfs_subr.c src/sys/kern kern_lock.c vfs_bio.c vfs_subr.c src/sys/netncp ncp_conn.h src/sys/netsmb smb_conn.h src/sys/nfs4client nfs4_idmap.c src/sys/sys buf.h bufobj.h lockmgr.h mount.h vnode.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 19:47:53 -0000 attilio 2008-03-01 19:47:50 UTC FreeBSD src repository Modified files: sys/dev/usb ehci.c sys/fs/nwfs nwfs_subr.c sys/kern kern_lock.c vfs_bio.c vfs_subr.c sys/netncp ncp_conn.h sys/netsmb smb_conn.h sys/nfs4client nfs4_idmap.c sys/sys buf.h bufobj.h lockmgr.h mount.h vnode.h Log: - Handle buffer lock waiters count directly in the buffer cache instead than rely on the lockmgr support [1]: * bump the waiters only if the interlock is held * let brelvp() return the waiters count * rely on brelvp() instead than BUF_LOCKWAITERS() in order to check for the waiters number - Remove a namespace pollution introduced recently with lockmgr.h including lock.h by including lock.h directly in the consumers and making it mandatory for using lockmgr. - Modify flags accepted by lockinit(): * introduce LK_NOPROFILE which disables lock profiling for the specified lockmgr * introduce LK_QUIET which disables ktr tracing for the specified lockmgr [2] * disallow LK_SLEEPFAIL and LK_NOWAIT to be passed there so that it can only be used on a per-instance basis - Remove BUF_LOCKWAITERS() and lockwaiters() as they are no longer used This patch breaks KPI so __FreBSD_version will be bumped and manpages updated by further commits. Additively, 'struct buf' changes results in a disturbed ABI also. [2] Really, currently there is no ktr tracing in the lockmgr, but it will be added soon. [1] Submitted by: kib Tested by: pho, Andrea Barberio Revision Changes Path 1.61 +1 -0 src/sys/dev/usb/ehci.c 1.18 +1 -1 src/sys/fs/nwfs/nwfs_subr.c 1.127 +8 -18 src/sys/kern/kern_lock.c 1.537 +8 -6 src/sys/kern/vfs_bio.c 1.720 +5 -1 src/sys/kern/vfs_subr.c 1.13 +1 -0 src/sys/netncp/ncp_conn.h 1.12 +1 -0 src/sys/netsmb/smb_conn.h 1.7 +1 -0 src/sys/nfs4client/nfs4_idmap.c 1.203 +33 -16 src/sys/sys/buf.h 1.19 +1 -0 src/sys/sys/bufobj.h 1.65 +26 -19 src/sys/sys/lockmgr.h 1.229 +1 -1 src/sys/sys/mount.h 1.331 +1 -8 src/sys/sys/vnode.h From owner-cvs-all@FreeBSD.ORG Sat Mar 1 19:53:27 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 61ACF1065676; Sat, 1 Mar 2008 19:53:27 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 34FF28FC29; Sat, 1 Mar 2008 19:53:27 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21JrRnn067538; Sat, 1 Mar 2008 19:53:27 GMT (envelope-from attilio@repoman.freebsd.org) Received: (from attilio@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21JrR84067537; Sat, 1 Mar 2008 19:53:27 GMT (envelope-from attilio) Message-Id: <200803011953.m21JrR84067537@repoman.freebsd.org> From: Attilio Rao Date: Sat, 1 Mar 2008 19:53:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/sys param.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 19:53:27 -0000 attilio 2008-03-01 19:53:26 UTC FreeBSD src repository Modified files: sys/sys param.h Log: Bump __FreeBSD_version in order to reflect: - lockwaiters() axing out - BUF_LOCKWAITERS() axing out - brelvp() prototype changing - lockinit() accepted arguments() range changing Revision Changes Path 1.340 +1 -1 src/sys/sys/param.h From owner-cvs-all@FreeBSD.ORG Sat Mar 1 20:05:21 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB3101065670; Sat, 1 Mar 2008 20:05:21 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9E5778FC18; Sat, 1 Mar 2008 20:05:21 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21K5Lsr069757; Sat, 1 Mar 2008 20:05:21 GMT (envelope-from attilio@repoman.freebsd.org) Received: (from attilio@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21K5Liw069756; Sat, 1 Mar 2008 20:05:21 GMT (envelope-from attilio) Message-Id: <200803012005.m21K5Liw069756@repoman.freebsd.org> From: Attilio Rao Date: Sat, 1 Mar 2008 20:05:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man9 lock.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 20:05:22 -0000 attilio 2008-03-01 20:05:20 UTC FreeBSD src repository Modified files: share/man/man9 lock.9 Log: Update lockmgr manpage with last lockmgr modifies: - Remove LK_SLEEPFAIL and LK_NOWAIT for lockinit() and add LK_QUIET and LK_NOPROFILE - Include sys/lock.h as mandatory for the lockmgr support Revision Changes Path 1.27 +9 -6 src/share/man/man9/lock.9 From owner-cvs-all@FreeBSD.ORG Sat Mar 1 20:14:49 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 61E371065674; Sat, 1 Mar 2008 20:14:49 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 349668FC1E; Sat, 1 Mar 2008 20:14:49 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21KEnxn070655; Sat, 1 Mar 2008 20:14:49 GMT (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21KEnxU070654; Sat, 1 Mar 2008 20:14:49 GMT (envelope-from gerald) Message-Id: <200803012014.m21KEnxU070654@repoman.freebsd.org> From: Gerald Pfeifer Date: Sat, 1 Mar 2008 20:14:48 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/gcc44 Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 20:14:49 -0000 gerald 2008-03-01 20:14:48 UTC FreeBSD ports repository Modified files: lang/gcc44 Makefile distinfo pkg-descr pkg-plist Log: Now track GCC 4.4 development (currently at 4.4.0 snapshot 20080229) via the new lang/gcc44 port. At this point, this is mostly identical to what we have in lang/gcc43 which is in the final stages before the GCC 4.3.0 release, but things will start diverging soon. PR: 120984 Revision Changes Path 1.339 +5 -5 ports/lang/gcc44/Makefile 1.223 +18 -18 ports/lang/gcc44/distinfo 1.12 +2 -2 ports/lang/gcc44/pkg-descr 1.98 +2 -2 ports/lang/gcc44/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Mar 1 20:15:46 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B22B41065670; Sat, 1 Mar 2008 20:15:46 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8547C8FC17; Sat, 1 Mar 2008 20:15:46 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21KFkA3070745; Sat, 1 Mar 2008 20:15:46 GMT (envelope-from beech@repoman.freebsd.org) Received: (from beech@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21KFkUM070744; Sat, 1 Mar 2008 20:15:46 GMT (envelope-from beech) Message-Id: <200803012015.m21KFkUM070744@repoman.freebsd.org> From: Beech Rintoul Date: Sat, 1 Mar 2008 20:15:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/ilias Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 20:15:46 -0000 beech 2008-03-01 20:15:46 UTC FreeBSD ports repository Modified files: www/ilias Makefile distinfo Log: - Update to 3.7.9 - Use SF macro PR: ports/121144 Submitted by: Wen heping Approved by: Bartek Rutkowski (maintainer) Revision Changes Path 1.3 +2 -3 ports/www/ilias/Makefile 1.2 +3 -3 ports/www/ilias/distinfo From owner-cvs-all@FreeBSD.ORG Sat Mar 1 20:16:01 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E7F031065676; Sat, 1 Mar 2008 20:16:01 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BBC0D8FC12; Sat, 1 Mar 2008 20:16:01 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21KG1Bq070797; Sat, 1 Mar 2008 20:16:01 GMT (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21KG1jH070796; Sat, 1 Mar 2008 20:16:01 GMT (envelope-from gerald) Message-Id: <200803012016.m21KG1jH070796@repoman.freebsd.org> From: Gerald Pfeifer Date: Sat, 1 Mar 2008 20:16:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 20:16:02 -0000 gerald 2008-03-01 20:16:01 UTC FreeBSD ports repository Modified files: . modules Log: Now track GCC 4.4 development (currently at 4.4.0 snapshot 20080229) via the new lang/gcc44 port. At this point, this is mostly identical to what we have in lang/gcc43 which is in the final stages before the GCC 4.3.0 release, but things will start diverging soon. PR: 120984 Revision Changes Path 1.19456 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Mar 1 20:18:35 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ED1CA10657D7; Sat, 1 Mar 2008 20:18:35 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7062C8FC13; Sat, 1 Mar 2008 20:18:34 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21KIYL7070862; Sat, 1 Mar 2008 20:18:34 GMT (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21KIYGj070861; Sat, 1 Mar 2008 20:18:34 GMT (envelope-from gerald) Message-Id: <200803012018.m21KIYGj070861@repoman.freebsd.org> From: Gerald Pfeifer Date: Sat, 1 Mar 2008 20:18:34 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 20:18:36 -0000 gerald 2008-03-01 20:18:34 UTC FreeBSD ports repository Modified files: lang Makefile Log: Now track GCC 4.4 development (currently at 4.4.0 snapshot 20080229) via the new lang/gcc44 port. At this point, this is mostly identical to what we have in lang/gcc43 which is in the final stages before the GCC 4.3.0 release, but things will start diverging soon. PR: 120984 Revision Changes Path 1.585 +1 -0 ports/lang/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 20:36:51 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B3963106566B; Sat, 1 Mar 2008 20:36:51 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8719D8FC16; Sat, 1 Mar 2008 20:36:51 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21Kap0o071491; Sat, 1 Mar 2008 20:36:51 GMT (envelope-from attilio@repoman.freebsd.org) Received: (from attilio@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21Kap7S071490; Sat, 1 Mar 2008 20:36:51 GMT (envelope-from attilio) Message-Id: <200803012036.m21Kap7S071490@repoman.freebsd.org> From: Attilio Rao Date: Sat, 1 Mar 2008 20:36:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man9 lock.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 20:36:51 -0000 attilio 2008-03-01 20:36:51 UTC FreeBSD src repository Modified files: share/man/man9 lock.9 Log: - Add the informations for lockmgr_args(9) - Sort rightly lockstatus(9) in the manpage Revision Changes Path 1.28 +22 -3 src/share/man/man9/lock.9 From owner-cvs-all@FreeBSD.ORG Sat Mar 1 20:39:56 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9427810656C7; Sat, 1 Mar 2008 20:39:56 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 54C918FC24; Sat, 1 Mar 2008 20:39:56 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21KduVD071561; Sat, 1 Mar 2008 20:39:56 GMT (envelope-from attilio@repoman.freebsd.org) Received: (from attilio@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21Kducf071560; Sat, 1 Mar 2008 20:39:56 GMT (envelope-from attilio) Message-Id: <200803012039.m21Kducf071560@repoman.freebsd.org> From: Attilio Rao Date: Sat, 1 Mar 2008 20:39:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man9 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 20:40:02 -0000 attilio 2008-03-01 20:39:56 UTC FreeBSD src repository Modified files: share/man/man9 Makefile Log: Connect lockmgr_args(9) to the build. Revision Changes Path 1.331 +1 -0 src/share/man/man9/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 21:24:11 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 25F811065674; Sat, 1 Mar 2008 21:24:11 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id ED8AD8FC21; Sat, 1 Mar 2008 21:24:10 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21LOADa083213; Sat, 1 Mar 2008 21:24:10 GMT (envelope-from attilio@repoman.freebsd.org) Received: (from attilio@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21LOAmj083212; Sat, 1 Mar 2008 21:24:10 GMT (envelope-from attilio) Message-Id: <200803012124.m21LOAmj083212@repoman.freebsd.org> From: Attilio Rao Date: Sat, 1 Mar 2008 21:24:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man9 lock.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 21:24:11 -0000 attilio 2008-03-01 21:24:08 UTC FreeBSD src repository Modified files: share/man/man9 lock.9 Log: Fix lockstatus sorting on the top list. Revision Changes Path 1.29 +1 -1 src/share/man/man9/lock.9 From owner-cvs-all@FreeBSD.ORG Sat Mar 1 21:44:56 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 08C28106566B; Sat, 1 Mar 2008 21:44:56 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D01F08FC21; Sat, 1 Mar 2008 21:44:55 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21LitRd083857; Sat, 1 Mar 2008 21:44:55 GMT (envelope-from araujo@repoman.freebsd.org) Received: (from araujo@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21Lit7r083856; Sat, 1 Mar 2008 21:44:55 GMT (envelope-from araujo) Message-Id: <200803012144.m21Lit7r083856@repoman.freebsd.org> From: Marcelo Araujo Date: Sat, 1 Mar 2008 21:44:55 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11-clocks/sanduhr Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 21:44:56 -0000 araujo 2008-03-01 21:44:55 UTC FreeBSD ports repository Modified files: x11-clocks/sanduhr Makefile Log: - Update MASTER_SITES to make it fetchable again. Submitted by: pointyhat via erwin Revision Changes Path 1.17 +1 -1 ports/x11-clocks/sanduhr/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 21:58:35 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 51AF11065670; Sat, 1 Mar 2008 21:58:35 +0000 (UTC) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 24D098FC1B; Sat, 1 Mar 2008 21:58:35 +0000 (UTC) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21LwZmp084544; Sat, 1 Mar 2008 21:58:35 GMT (envelope-from gibbs@repoman.freebsd.org) Received: (from gibbs@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21LwYIt084543; Sat, 1 Mar 2008 21:58:34 GMT (envelope-from gibbs) Message-Id: <200803012158.m21LwYIt084543@repoman.freebsd.org> From: "Justin T. Gibbs" Date: Sat, 1 Mar 2008 21:58:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/i386/cpufreq est.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 21:58:35 -0000 gibbs 2008-03-01 21:58:34 UTC FreeBSD src repository Modified files: sys/i386/cpufreq est.c Log: In est_acpi_info(), initialize count before passing its pointer to CPUFREQ_DRV_SETTINGS(). The value of count on input is used to prefent overflow of the settings buffer passed into CPUFREQ_DRV_SETTINGS(). This corrects the "est: CPU supports Enhanced Speedstep, but is not recognized." error on my system. MFC after: 1 week Revision Changes Path 1.13 +1 -0 src/sys/i386/cpufreq/est.c From owner-cvs-all@FreeBSD.ORG Sat Mar 1 22:14:46 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 44EE51065671; Sat, 1 Mar 2008 22:14:46 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 182B88FC14; Sat, 1 Mar 2008 22:14:46 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21MEjls086332; Sat, 1 Mar 2008 22:14:45 GMT (envelope-from attilio@repoman.freebsd.org) Received: (from attilio@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21MEjiU086331; Sat, 1 Mar 2008 22:14:45 GMT (envelope-from attilio) Message-Id: <200803012214.m21MEjiU086331@repoman.freebsd.org> From: Attilio Rao Date: Sat, 1 Mar 2008 22:14:45 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/sys lockmgr.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 22:14:46 -0000 attilio 2008-03-01 22:14:45 UTC FreeBSD src repository Modified files: sys/sys lockmgr.h Log: Split the kernel / userland interface with propert _KERNEL stub. This should have been always there, but an userland brekage for the recent lockmgr modifies showed it. Revision Changes Path 1.66 +5 -0 src/sys/sys/lockmgr.h From owner-cvs-all@FreeBSD.ORG Sat Mar 1 22:27:16 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 47E311065670; Sat, 1 Mar 2008 22:27:16 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1B7058FC13; Sat, 1 Mar 2008 22:27:16 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21MRFcg087085; Sat, 1 Mar 2008 22:27:15 GMT (envelope-from bz@repoman.freebsd.org) Received: (from bz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21MRFO4087084; Sat, 1 Mar 2008 22:27:15 GMT (envelope-from bz) Message-Id: <200803012227.m21MRFO4087084@repoman.freebsd.org> From: "Bjoern A. Zeeb" Date: Sat, 1 Mar 2008 22:27:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet tcp_input.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 22:27:16 -0000 bz 2008-03-01 22:27:15 UTC FreeBSD src repository Modified files: sys/netinet tcp_input.c Log: Fix indentation (whitespace changes only). MFC after: 6 days Revision Changes Path 1.372 +4 -4 src/sys/netinet/tcp_input.c From owner-cvs-all@FreeBSD.ORG Sat Mar 1 22:29:39 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 06B371065672; Sat, 1 Mar 2008 22:29:39 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id CE13D8FC25; Sat, 1 Mar 2008 22:29:38 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21MTc03087151; Sat, 1 Mar 2008 22:29:38 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21MTcNQ087150; Sat, 1 Mar 2008 22:29:38 GMT (envelope-from pav) Message-Id: <200803012229.m21MTcNQ087150@repoman.freebsd.org> From: Pav Lucistnik Date: Sat, 1 Mar 2008 22:29:38 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/misc/gkrellm-helium Makefile pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 22:29:39 -0000 pav 2008-03-01 22:29:38 UTC FreeBSD ports repository Modified files: misc/gkrellm-helium Makefile pkg-descr Log: - Fix fetch and update WWW Reported by: pointyhat via erwin Revision Changes Path 1.14 +1 -1 ports/misc/gkrellm-helium/Makefile 1.3 +1 -1 ports/misc/gkrellm-helium/pkg-descr From owner-cvs-all@FreeBSD.ORG Sat Mar 1 22:30:50 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F0CC4106566B; Sat, 1 Mar 2008 22:30:50 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C41F18FC2E; Sat, 1 Mar 2008 22:30:50 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21MUoEJ087247; Sat, 1 Mar 2008 22:30:50 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21MUomH087246; Sat, 1 Mar 2008 22:30:50 GMT (envelope-from pav) Message-Id: <200803012230.m21MUomH087246@repoman.freebsd.org> From: Pav Lucistnik Date: Sat, 1 Mar 2008 22:30:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/misc/gkrellweather2 Makefile pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 22:30:51 -0000 pav 2008-03-01 22:30:50 UTC FreeBSD ports repository Modified files: misc/gkrellweather2 Makefile pkg-descr Log: - Fix fetch and update WWW Reported by: pointyhat via erwin Revision Changes Path 1.17 +1 -1 ports/misc/gkrellweather2/Makefile 1.2 +1 -4 ports/misc/gkrellweather2/pkg-descr From owner-cvs-all@FreeBSD.ORG Sat Mar 1 22:51:38 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 37F93106566B; Sat, 1 Mar 2008 22:51:38 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0B7EE8FC25; Sat, 1 Mar 2008 22:51:38 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21MpbXK088420; Sat, 1 Mar 2008 22:51:37 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21Mpb4t088419; Sat, 1 Mar 2008 22:51:37 GMT (envelope-from erwin) Message-Id: <200803012251.m21Mpb4t088419@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 1 Mar 2008 22:51:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/hs-fps Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 22:51:38 -0000 erwin 2008-03-01 22:51:37 UTC FreeBSD ports repository Modified files: devel/hs-fps Makefile Log: Mark BROKEN: does not build. Revision Changes Path 1.7 +2 -0 ports/devel/hs-fps/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 22:54:43 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 35922106566B; Sat, 1 Mar 2008 22:54:43 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 085168FC23; Sat, 1 Mar 2008 22:54:43 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21MsgRA088508; Sat, 1 Mar 2008 22:54:42 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21Msgus088507; Sat, 1 Mar 2008 22:54:42 GMT (envelope-from marcel) Message-Id: <200803012254.m21Msgus088507@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 1 Mar 2008 22:54:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src UPDATING src/sys/vm vm_map.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 22:54:43 -0000 marcel 2008-03-01 22:54:42 UTC FreeBSD src repository Modified files: . UPDATING sys/vm vm_map.h Log: Make the vm_pmap field of struct vmspace the last field in the structure. This allows per-CPU variations of struct pmap on a single architecture without affecting the machine-independent fields. As such, the PMAP variations don't affect the ABI. They become part of it. Revision Changes Path 1.522 +8 -0 src/UPDATING 1.122 +6 -1 src/sys/vm/vm_map.h From owner-cvs-all@FreeBSD.ORG Sat Mar 1 23:15:37 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E2BE81065673; Sat, 1 Mar 2008 23:15:37 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B5CB28FC18; Sat, 1 Mar 2008 23:15:37 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21NFbOA090369; Sat, 1 Mar 2008 23:15:37 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21NFbtv090368; Sat, 1 Mar 2008 23:15:37 GMT (envelope-from marcus) Message-Id: <200803012315.m21NFbtv090368@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 1 Mar 2008 23:15:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11-toolkits/guile-gtk Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 23:15:38 -0000 marcus 2008-03-01 23:15:37 UTC FreeBSD ports repository Modified files: x11-toolkits/guile-gtk Makefile distinfo Log: Update to 0.60 to fix the build with guile 1.8. Revision Changes Path 1.38 +4 -5 ports/x11-toolkits/guile-gtk/Makefile 1.9 +3 -3 ports/x11-toolkits/guile-gtk/distinfo From owner-cvs-all@FreeBSD.ORG Sat Mar 1 23:17:14 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 11ED4106566B; Sat, 1 Mar 2008 23:17:14 +0000 (UTC) (envelope-from wb@freebie.xs4all.nl) Received: from smtp-vbr11.xs4all.nl (smtp-vbr11.xs4all.nl [194.109.24.31]) by mx1.freebsd.org (Postfix) with ESMTP id 8FB048FC1F; Sat, 1 Mar 2008 23:17:13 +0000 (UTC) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [82.95.250.254]) by smtp-vbr11.xs4all.nl (8.13.8/8.13.8) with ESMTP id m21NHBgt056532; Sun, 2 Mar 2008 00:17:11 +0100 (CET) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.13.8/8.13.3) with ESMTP id m21NHBqa059397; Sun, 2 Mar 2008 00:17:11 +0100 (CET) (envelope-from wb@freebie.xs4all.nl) Received: (from wb@localhost) by freebie.xs4all.nl (8.13.8/8.13.6/Submit) id m21NHArk059396; Sun, 2 Mar 2008 00:17:10 +0100 (CET) (envelope-from wb) Date: Sun, 2 Mar 2008 00:17:10 +0100 From: Wilko Bulte To: Dmitry Morozovsky Message-ID: <20080301231710.GA59383@freebie.xs4all.nl> References: <200802290912.m1T9CsDJ074384@repoman.freebsd.org> <20080301222414.P49885@woozle.rinet.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20080301222414.P49885@woozle.rinet.ru> User-Agent: Mutt/1.5.11 X-Virus-Scanned: by XS4ALL Virus Scanner Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, Wilko Bulte Subject: Re: cvs commit: CVSROOT access X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 23:17:14 -0000 Quoting Dmitry Morozovsky, who wrote on Sat, Mar 01, 2008 at 10:25:08PM +0300 .. > On Fri, 29 Feb 2008, Wilko Bulte wrote: > > WB> Modified files: > WB> . access > WB> Log: > WB> Changes to email forwards can be made without core's approval. Please > WB> use "Approved by: core (implicit)" to that type of commits. > > Don't you think similar comments should be added to other repositories' > CVSROOT/access? I'm all for that, but that is the responsibility of portmgr, doceng etc. -- Wilko Bulte wilko@FreeBSD.org From owner-cvs-all@FreeBSD.ORG Sat Mar 1 23:27:43 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 20231106566B; Sat, 1 Mar 2008 23:27:43 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E7D428FC13; Sat, 1 Mar 2008 23:27:42 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21NRgsg090756; Sat, 1 Mar 2008 23:27:42 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21NRglN090755; Sat, 1 Mar 2008 23:27:42 GMT (envelope-from marcus) Message-Id: <200803012327.m21NRglN090755@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 1 Mar 2008 23:27:42 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/guile Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 23:27:43 -0000 marcus 2008-03-01 23:27:42 UTC FreeBSD ports repository Modified files: lang/guile Makefile Log: This one is sneaky. Guile depends on gmake which brings in gettext. Guile detects gettext and links to it. However, gettext was not a RUN_DEPENDS or LIB_DEPENDS, so other packages which don't already install gettext fail. Fix this by adding USE_GETTEXT. Reported by: pointyhat via erwin Revision Changes Path 1.68 +2 -1 ports/lang/guile/Makefile From owner-cvs-all@FreeBSD.ORG Sat Mar 1 23:35:47 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 901631065678; Sat, 1 Mar 2008 23:35:47 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 636C38FC24; Sat, 1 Mar 2008 23:35:47 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21NZlK5091065; Sat, 1 Mar 2008 23:35:47 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21NZlM1091064; Sat, 1 Mar 2008 23:35:47 GMT (envelope-from marcus) Message-Id: <200803012335.m21NZlM1091064@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 1 Mar 2008 23:35:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/irc/bobot++/files patch-source_Parser.C X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 23:35:47 -0000 marcus 2008-03-01 23:35:46 UTC FreeBSD ports repository Added files: irc/bobot++/files patch-source_Parser.C Log: Fix build with guile 1.8. Reported by: pointyhat via erwin Revision Changes Path 1.1 +13 -0 ports/irc/bobot++/files/patch-source_Parser.C (new) From owner-cvs-all@FreeBSD.ORG Sat Mar 1 23:37:07 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B3905106566B; Sat, 1 Mar 2008 23:37:07 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 538278FC22; Sat, 1 Mar 2008 23:37:07 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m21Nb7Xv091114; Sat, 1 Mar 2008 23:37:07 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m21Nb70K091113; Sat, 1 Mar 2008 23:37:07 GMT (envelope-from erwin) Message-Id: <200803012337.m21Nb70K091113@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 1 Mar 2008 23:37:07 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT access X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2008 23:37:07 -0000 erwin 2008-03-01 23:37:07 UTC FreeBSD ports repository Modified files: . access Log: Changes to email forwards can be made without portmgr's approval. Please use "Approved by: portmgr (implicit)" to that type of commits. Approved by: portmgr (implicit) Revision Changes Path 1.826 +3 -0 CVSROOT/access