From owner-cvs-all@FreeBSD.ORG Sun Jul 30 00:09:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06C0516A4DA; Sun, 30 Jul 2006 00:09:55 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C073B43D5D; Sun, 30 Jul 2006 00:09:54 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6U09sgj071952; Sun, 30 Jul 2006 00:09:54 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6U09sXS071951; Sun, 30 Jul 2006 00:09:54 GMT (envelope-from sat) Message-Id: <200607300009.k6U09sXS071951@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sun, 30 Jul 2006 00:09: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/linux-thunderbird Makefile ports/www/linux-firefox Makefile ports/www/linux-firefox-devel Makefile ports/www/linux-seamonkey Makefile ports/www/linux-seamonkey-devel Makefile ports/www/linux-mozilla Makefile ports/www/linux-flock ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Jul 2006 00:09:55 -0000 sat 2006-07-30 00:09:54 UTC FreeBSD ports repository Modified files: mail/linux-thunderbird Makefile www/linux-firefox Makefile www/linux-firefox-devel Makefile www/linux-seamonkey Makefile www/linux-seamonkey-devel Makefile www/linux-mozilla Makefile www/linux-flock Makefile Log: - Bump portrevisions after the recent update Revision Changes Path 1.6 +1 -0 ports/mail/linux-thunderbird/Makefile 1.6 +1 -0 ports/www/linux-firefox-devel/Makefile 1.29 +1 -0 ports/www/linux-firefox/Makefile 1.7 +1 -0 ports/www/linux-flock/Makefile 1.52 +1 -1 ports/www/linux-mozilla/Makefile 1.5 +1 -0 ports/www/linux-seamonkey-devel/Makefile 1.10 +1 -0 ports/www/linux-seamonkey/Makefile From owner-cvs-all@FreeBSD.ORG Sun Jul 30 00:29:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D771016A4DF; Sun, 30 Jul 2006 00:29:01 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FAFB43D46; Sun, 30 Jul 2006 00:29:01 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6U0T1kn072960; Sun, 30 Jul 2006 00:29:01 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6U0T1cj072959; Sun, 30 Jul 2006 00:29:01 GMT (envelope-from kientzle) Message-Id: <200607300029.k6U0T1cj072959@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 30 Jul 2006 00:29: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/lib/libarchive archive.h.in archive_private.h archive_read.c archive_read_open_fd.c archive_read_open_file.c archive_read_support_compression_bzip2.c archive_read_support_compression_compress.c archive_read_support_compression_gzip.c archive_read_support_compression_none.c archive_read_support_format_tar.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, 30 Jul 2006 00:29:01 -0000 kientzle 2006-07-30 00:29:01 UTC FreeBSD src repository Modified files: lib/libarchive archive.h.in archive_private.h archive_read.c archive_read_open_fd.c archive_read_open_file.c archive_read_support_compression_bzip2.c archive_read_support_compression_compress.c archive_read_support_compression_gzip.c archive_read_support_compression_none.c archive_read_support_format_tar.c Log: Use 'skip' when ignoring data in tar archives. This dramatically increases performance when extracting a single entry from a large uncompressed archive, especially on slow devices such as USB hard drives. Requires a number of changes: * New archive_read_open2() supports a 'skip' client function * Old archive_read_open() is implemented as a wrapper now, to continue supporting the old API/ABI. * _read_open_fd and _read_open_file sprout new 'skip' functions. * compression layer gets a new 'skip' operation. * compression_none passes skip requests through to client. * compression_{gzip,bzip2,compress} simply ignore skip requests. Thanks to: Benjamin Lutz, who designed and implemented the whole thing. I'm just committing it. ;-) TODO: Need to update the documentation a little bit. Revision Changes Path 1.30 +10 -3 src/lib/libarchive/archive.h.in 1.22 +2 -0 src/lib/libarchive/archive_private.h 1.21 +15 -0 src/lib/libarchive/archive_read.c 1.6 +45 -3 src/lib/libarchive/archive_read_open_fd.c 1.10 +47 -2 src/lib/libarchive/archive_read_open_file.c 1.9 +1 -0 src/lib/libarchive/archive_read_support_compression_bzip2.c 1.5 +1 -0 src/lib/libarchive/archive_read_support_compression_compress.c 1.10 +1 -0 src/lib/libarchive/archive_read_support_compression_gzip.c 1.7 +72 -0 src/lib/libarchive/archive_read_support_compression_none.c 1.42 +46 -1 src/lib/libarchive/archive_read_support_format_tar.c From owner-cvs-all@FreeBSD.ORG Sun Jul 30 00:34:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C59A16A4E0; Sun, 30 Jul 2006 00:34:07 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CEAF43D5F; Sun, 30 Jul 2006 00:34:07 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6U0Y6Lj073293; Sun, 30 Jul 2006 00:34:06 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6U0Y6wT073292; Sun, 30 Jul 2006 00:34:06 GMT (envelope-from sat) Message-Id: <200607300034.k6U0Y6wT073292@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sun, 30 Jul 2006 00:34: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/www/xpi-greasemonkey 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, 30 Jul 2006 00:34:07 -0000 sat 2006-07-30 00:34:06 UTC FreeBSD ports repository Modified files: www/xpi-greasemonkey Makefile distinfo pkg-plist Log: - Update to 0.6.5.20060727 Revision Changes Path 1.3 +1 -1 ports/www/xpi-greasemonkey/Makefile 1.2 +3 -3 ports/www/xpi-greasemonkey/distinfo 1.2 +27 -0 ports/www/xpi-greasemonkey/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Jul 30 00:49:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0363D16A4DE; Sun, 30 Jul 2006 00:49:44 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B531143D46; Sun, 30 Jul 2006 00:49:43 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6U0nhO2081875; Sun, 30 Jul 2006 00:49:43 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6U0nh6n081874; Sun, 30 Jul 2006 00:49:43 GMT (envelope-from sat) Message-Id: <200607300049.k6U0nh6n081874@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sun, 30 Jul 2006 00:49: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/Mk bsd.sites.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: Sun, 30 Jul 2006 00:49:44 -0000 sat 2006-07-30 00:49:43 UTC FreeBSD ports repository Modified files: Mk bsd.sites.mk Log: - Introduce some macro expansion magic Reviewed by: ports@, portmgr@ Revision Changes Path 1.391 +50 -1 ports/Mk/bsd.sites.mk From owner-cvs-all@FreeBSD.ORG Sun Jul 30 02:30:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB50E16A500; Sun, 30 Jul 2006 02:30:35 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8000743D53; Sun, 30 Jul 2006 02:30:34 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6U2UYJa089001; Sun, 30 Jul 2006 02:30:34 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6U2UYgI089000; Sun, 30 Jul 2006 02:30:34 GMT (envelope-from maho) Message-Id: <200607300230.k6U2UYgI089000@repoman.freebsd.org> From: Maho Nakata Date: Sun, 30 Jul 2006 02:30: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/editors/ooo-build 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, 30 Jul 2006 02:30:36 -0000 maho 2006-07-30 02:30:33 UTC FreeBSD ports repository Modified files: editors/ooo-build Makefile distinfo Log: Update to 2.0.3.0 Note 2.0.3 and 2.0.3.0 shares the same portversion, % portversion -t 2.0.3 2.0.3.0 = thus Bumped PORTREVISION. Revision Changes Path 1.15 +3 -2 ports/editors/ooo-build/Makefile 1.10 +3 -3 ports/editors/ooo-build/distinfo From owner-cvs-all@FreeBSD.ORG Sun Jul 30 06:11:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E10D916A4DA; Sun, 30 Jul 2006 06:11:43 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D89943D45; Sun, 30 Jul 2006 06:11:43 +0000 (GMT) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6U6Bh48014531; Sun, 30 Jul 2006 06:11:43 GMT (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6U6Bh6f014530; Sun, 30 Jul 2006 06:11:43 GMT (envelope-from ume) Message-Id: <200607300611.k6U6Bh6f014530@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Sun, 30 Jul 2006 06:11: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/lib/libc/net getaddrinfo.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, 30 Jul 2006 06:11:44 -0000 ume 2006-07-30 06:11:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libc/net getaddrinfo.c Log: MFC 1.85: do not overload the port number on to the return value of str2number(). this could result in an unexpected code path. Revision Changes Path 1.69.2.9 +9 -8 src/lib/libc/net/getaddrinfo.c From owner-cvs-all@FreeBSD.ORG Sun Jul 30 06:28:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1772216A4DA; Sun, 30 Jul 2006 06:28:22 +0000 (UTC) (envelope-from anray@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C621843D45; Sun, 30 Jul 2006 06:28:21 +0000 (GMT) (envelope-from anray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6U6SLtW015421; Sun, 30 Jul 2006 06:28:21 GMT (envelope-from anray@repoman.freebsd.org) Received: (from anray@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6U6SL0F015420; Sun, 30 Jul 2006 06:28:21 GMT (envelope-from anray) Message-Id: <200607300628.k6U6SL0F015420@repoman.freebsd.org> From: Andrey Slusar Date: Sun, 30 Jul 2006 06:28: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/riece 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, 30 Jul 2006 06:28:22 -0000 anray 2006-07-30 06:28:21 UTC FreeBSD ports repository Modified files: irc/riece Makefile distinfo Log: Update to 3.1.0 PR: ports/101023 Submitted by: KIMURA Yasuhiro (maintainer) Revision Changes Path 1.33 +1 -1 ports/irc/riece/Makefile 1.18 +3 -3 ports/irc/riece/distinfo From owner-cvs-all@FreeBSD.ORG Sun Jul 30 06:30:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 176F316A4E1; Sun, 30 Jul 2006 06:30:03 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4C6043D45; Sun, 30 Jul 2006 06:30:02 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6U6U22a015578; Sun, 30 Jul 2006 06:30:02 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6U6U2Qt015577; Sun, 30 Jul 2006 06:30:02 GMT (envelope-from kientzle) Message-Id: <200607300630.k6U6U2Qt015577@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 30 Jul 2006 06:30: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/lib/libarchive COPYING INSTALL Makefile Makefile.am archive.h.in archive_entry.3 archive_entry.c archive_entry.h archive_platform.h archive_private.h archive_read.3 archive_read.c archive_read_data_into_fd.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, 30 Jul 2006 06:30:03 -0000 kientzle 2006-07-30 06:30:02 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libarchive COPYING Makefile archive.h.in archive_entry.3 archive_entry.c archive_entry.h archive_platform.h archive_private.h archive_read.3 archive_read.c archive_read_data_into_fd.c archive_read_extract.c archive_read_open_fd.c archive_read_open_file.c archive_read_support_compression_bzip2.c archive_read_support_compression_compress.c archive_read_support_format_cpio.c archive_read_support_format_iso9660.c archive_read_support_format_tar.c archive_read_support_format_zip.c archive_util.3 archive_util.c archive_write.3 archive_write.c archive_write_set_format_cpio.c archive_write_set_format_pax.c archive_write_set_format_ustar.c libarchive-formats.5 tar.5 Removed files: (Branch: RELENG_6) lib/libarchive INSTALL Makefile.am configure.ac.in Log: MFC libarchive 1.2.53 to FreeBSD 6. * Fixes bin/86690 (sparse file extraction) * Fixes bin/87911 (assertion failure after failed open) * Corrects handling of very old files (negative mtime) * Better error checking for memory allocation failures * Style and portability fixes * Documentation corrections * Initial extended attribute support Revision Changes Path 1.1.8.1 +1 -1 src/lib/libarchive/COPYING 1.1.8.1 +0 -39 src/lib/libarchive/INSTALL (dead) 1.36.2.2 +31 -53 src/lib/libarchive/Makefile 1.3.2.1 +0 -62 src/lib/libarchive/Makefile.am (dead) 1.23.2.1 +18 -5 src/lib/libarchive/archive.h.in 1.9.8.2 +4 -4 src/lib/libarchive/archive_entry.3 1.29.2.1 +185 -4 src/lib/libarchive/archive_entry.c 1.16.2.1 +24 -2 src/lib/libarchive/archive_entry.h 1.16.2.1 +7 -5 src/lib/libarchive/archive_platform.h 1.18.2.1 +2 -4 src/lib/libarchive/archive_private.h 1.20.2.2 +2 -2 src/lib/libarchive/archive_read.3 1.15.2.1 +62 -29 src/lib/libarchive/archive_read.c 1.8.2.1 +6 -3 src/lib/libarchive/archive_read_data_into_fd.c 1.41.2.2 +118 -21 src/lib/libarchive/archive_read_extract.c 1.3.8.1 +7 -0 src/lib/libarchive/archive_read_open_fd.c 1.8.2.1 +4 -0 src/lib/libarchive/archive_read_open_file.c 1.7.2.1 +1 -1 src/lib/libarchive/archive_read_support_compression_bzip2.c 1.3.2.1 +17 -9 src/lib/libarchive/archive_read_support_compression_compress.c 1.13.2.1 +29 -7 src/lib/libarchive/archive_read_support_format_cpio.c 1.8.2.1 +72 -12 src/lib/libarchive/archive_read_support_format_iso9660.c 1.32.2.1 +330 -78 src/lib/libarchive/archive_read_support_format_tar.c 1.5.2.1 +6 -2 src/lib/libarchive/archive_read_support_format_zip.c 1.3.2.1 +1 -1 src/lib/libarchive/archive_util.3 1.9.2.1 +1 -1 src/lib/libarchive/archive_util.c 1.12.2.1 +7 -7 src/lib/libarchive/archive_write.3 1.15.2.1 +1 -1 src/lib/libarchive/archive_write.c 1.5.2.1 +1 -1 src/lib/libarchive/archive_write_set_format_cpio.c 1.27.2.1 +252 -57 src/lib/libarchive/archive_write_set_format_pax.c 1.12.2.1 +8 -1 src/lib/libarchive/archive_write_set_format_ustar.c 1.6.2.1 +0 -87 src/lib/libarchive/configure.ac.in (dead) 1.7.2.1 +6 -5 src/lib/libarchive/libarchive-formats.5 1.12.2.1 +20 -6 src/lib/libarchive/tar.5 From owner-cvs-all@FreeBSD.ORG Sun Jul 30 06:32:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7654916A4DF; Sun, 30 Jul 2006 06:32:15 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19BB743D53; Sun, 30 Jul 2006 06:32:15 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6U6WEJH015843; Sun, 30 Jul 2006 06:32:14 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6U6WEXX015842; Sun, 30 Jul 2006 06:32:14 GMT (envelope-from kientzle) Message-Id: <200607300632.k6U6WEXX015842@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 30 Jul 2006 06:32: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/usr.bin/tar Makefile Makefile.am bsdtar.1 bsdtar.c bsdtar.h bsdtar_platform.h configure.ac.in getdate.y read.c tree.c util.c 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, 30 Jul 2006 06:32:15 -0000 kientzle 2006-07-30 06:32:14 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/tar Makefile bsdtar.1 bsdtar.c bsdtar.h bsdtar_platform.h getdate.y read.c tree.c util.c write.c Removed files: (Branch: RELENG_6) usr.bin/tar Makefile.am configure.ac.in Log: MFC bsdtar 1.2.53 to FreeBSD 6: * Fixes bin/87911 (internal error attempting -u with empty file) * Fixes bin/84993 (warnings with GCC 4.1) * Fixes bin/95175 (core dump on nonexistent symlink) * Documentation fixes * Corrections to pathname matching * Portability fixes * Initial extended attribute support Revision Changes Path 1.24.2.1 +2 -36 src/usr.bin/tar/Makefile 1.3.2.1 +0 -21 src/usr.bin/tar/Makefile.am (dead) 1.29.2.2 +5 -5 src/usr.bin/tar/bsdtar.1 1.63.2.3 +3 -7 src/usr.bin/tar/bsdtar.c 1.23.2.1 +1 -1 src/usr.bin/tar/bsdtar.h 1.15.2.2 +14 -4 src/usr.bin/tar/bsdtar_platform.h 1.9.2.1 +0 -117 src/usr.bin/tar/configure.ac.in (dead) 1.4.2.1 +4 -1 src/usr.bin/tar/getdate.y 1.23.2.1 +1 -3 src/usr.bin/tar/read.c 1.2.2.1 +3 -2 src/usr.bin/tar/tree.c 1.13.2.1 +0 -1 src/usr.bin/tar/util.c 1.41.2.1 +149 -29 src/usr.bin/tar/write.c From owner-cvs-all@FreeBSD.ORG Sun Jul 30 06:47:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.ORG Delivered-To: cvs-all@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53D7A16A4DA; Sun, 30 Jul 2006 06:47:35 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (vc4-2-0-87.dsl.netrack.net [199.45.160.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id D907443D45; Sun, 30 Jul 2006 06:47:34 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (localhost.village.org [127.0.0.1] (may be forged)) by harmony.bsdimp.com (8.13.4/8.13.4) with ESMTP id k6U6jXqW096601; Sun, 30 Jul 2006 00:45:33 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Sun, 30 Jul 2006 00:45:52 -0600 (MDT) Message-Id: <20060730.004552.1723235428.imp@bsdimp.com> To: marcel@FreeBSD.ORG From: "M. Warner Losh" In-Reply-To: <200607291838.k6TIctG4032258@repoman.freebsd.org> References: <200607291838.k6TIctG4032258@repoman.freebsd.org> X-Mailer: Mew version 4.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Sun, 30 Jul 2006 00:45:34 -0600 (MDT) Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/amd64/conf NOTES src/sys/conf NOTES files files.amd64 files.i386 files.pc98 options options.amd64 options.i386 options.pc98 src/sys/i386/conf NOTES src/sys/ia64/conf NOTES src/sys/pc98/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: Sun, 30 Jul 2006 06:47:35 -0000 In message: <200607291838.k6TIctG4032258@repoman.freebsd.org> Marcel Moolenaar writes: : sio(4) is usable on less than half the platforms, not counting : a future mips platform. Its presence in MI files is therefore : increasingly becoming a burden. I disagree. There's no need to remove it from the files* like you've done. It is not a burdon there. Please revert this part of the change. We have dozens of other drivers in the MI conf/files that work on only a couple of platforms. Warner From owner-cvs-all@FreeBSD.ORG Sun Jul 30 06:47:52 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A48E916A4E8 for ; Sun, 30 Jul 2006 06:47:52 +0000 (UTC) (envelope-from pyunyh@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F1A143D4C for ; Sun, 30 Jul 2006 06:47:50 +0000 (GMT) (envelope-from pyunyh@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so66408nzn for ; Sat, 29 Jul 2006 23:47:49 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:from:to:cc:subject:message-id:reply-to:references:mime-version:content-type:content-disposition:in-reply-to:user-agent; b=koc72UN9rtmNN6sttYE0BLH4Ctz/Bil0ESCm1pOVKPoTNhmTXJgZb9ZLtH5Ep9XMr32U4skjbQDfLh+S+uQ/zynXMs1GK0Suo53oRyX1seiLG6hhTO6xl5pJAoaZXrXLp/z67HwTVJBEEAYEX+P2qHx3Iq7admAcVrtCYc7I/OY= Received: by 10.65.114.11 with SMTP id r11mr1606767qbm; Sat, 29 Jul 2006 23:47:49 -0700 (PDT) Received: from michelle.cdnetworks.co.kr ( [211.53.35.84]) by mx.gmail.com with ESMTP id 14sm3285022nzp.2006.07.29.23.47.46; Sat, 29 Jul 2006 23:47:49 -0700 (PDT) Received: from michelle.cdnetworks.co.kr (localhost.cdnetworks.co.kr [127.0.0.1]) by michelle.cdnetworks.co.kr (8.13.5/8.13.5) with ESMTP id k6U6m8eO032986 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 30 Jul 2006 15:48:08 +0900 (KST) (envelope-from pyunyh@gmail.com) Received: (from yongari@localhost) by michelle.cdnetworks.co.kr (8.13.5/8.13.5/Submit) id k6U6m75S032985; Sun, 30 Jul 2006 15:48:07 +0900 (KST) (envelope-from pyunyh@gmail.com) Date: Sun, 30 Jul 2006 15:48:07 +0900 From: Pyun YongHyeon To: Yar Tikhiy Message-ID: <20060730064807.GA32731@cdnetworks.co.kr> References: <200607270043.k6R0hY8g088353@repoman.freebsd.org> <20060729205009.GA37970@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060729205009.GA37970@freefall.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, Pyun YongHyeon Subject: Re: cvs commit: src/sys/dev/em if_em.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pyunyh@gmail.com List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Jul 2006 06:47:52 -0000 On Sat, Jul 29, 2006 at 08:50:09PM +0000, Yar Tikhiy wrote: > On Thu, Jul 27, 2006 at 12:43:34AM +0000, Pyun YongHyeon wrote: > > yongari 2006-07-27 00:43:34 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/dev/em if_em.c > > Log: > > Prepending an mbuf after loading a DMA map results in unexpected > > result. So, modify mbuf chains before loading a DMA map. > > > > Revision Changes Path > > 1.122 +28 -31 src/sys/dev/em/if_em.c > > Thanks a lot! Do you think this can fix kern/72933? > I can't sure it helps as the submitter reported the same issue on bge(4). Btw, I think the VLAN fixup code should use m_prepend(9) insatead of M_PREEND(9) because we don't know whether a new mbuf is allocated or not after M_PREPEND(9) call. -- Regards, Pyun YongHyeon From owner-cvs-all@FreeBSD.ORG Sun Jul 30 06:48:41 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40D7916A4E5 for ; Sun, 30 Jul 2006 06:48:41 +0000 (UTC) (envelope-from pyunyh@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 879F743D58 for ; Sun, 30 Jul 2006 06:48:39 +0000 (GMT) (envelope-from pyunyh@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so66432nzn for ; Sat, 29 Jul 2006 23:48:39 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:from:to:cc:subject:message-id:reply-to:references:mime-version:content-type:content-disposition:in-reply-to:user-agent; b=Xl/9jdqi+uY+a6Y9t1x26jyye6219QYXsQdX/FNc9/UhyWTr5mEPHB+wZFPf9ZwIgsy69pej9N2TYGYCRV5NS2Jo7PGwuXC7Ns9fNnZVeC5QExHypQlSOkhThBmh7HVtU6At9AJaqqI4rDZHvzH+8/xJHYjbyOS1SNzLBpJHg94= Received: by 10.65.232.18 with SMTP id j18mr1616517qbr; Sat, 29 Jul 2006 23:48:38 -0700 (PDT) Received: from michelle.cdnetworks.co.kr ( [211.53.35.84]) by mx.gmail.com with ESMTP id i5sm634418nzi.2006.07.29.23.48.36; Sat, 29 Jul 2006 23:48:38 -0700 (PDT) Received: from michelle.cdnetworks.co.kr (localhost.cdnetworks.co.kr [127.0.0.1]) by michelle.cdnetworks.co.kr (8.13.5/8.13.5) with ESMTP id k6U6mxCn033000 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 30 Jul 2006 15:48:59 +0900 (KST) (envelope-from pyunyh@gmail.com) Received: (from yongari@localhost) by michelle.cdnetworks.co.kr (8.13.5/8.13.5/Submit) id k6U6mwML032999; Sun, 30 Jul 2006 15:48:58 +0900 (KST) (envelope-from pyunyh@gmail.com) Date: Sun, 30 Jul 2006 15:48:58 +0900 From: Pyun YongHyeon To: John Birrell Message-ID: <20060730064858.GB32731@cdnetworks.co.kr> References: <200607270043.k6R0hY8g088353@repoman.freebsd.org> <20060729220154.GA23870@what-creek.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060729220154.GA23870@what-creek.com> User-Agent: Mutt/1.4.2.1i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, Pyun YongHyeon Subject: Re: cvs commit: src/sys/dev/em if_em.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pyunyh@gmail.com List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Jul 2006 06:48:41 -0000 On Sat, Jul 29, 2006 at 10:01:54PM +0000, John Birrell wrote: > On Thu, Jul 27, 2006 at 12:43:34AM +0000, Pyun YongHyeon wrote: > > yongari 2006-07-27 00:43:34 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/dev/em if_em.c > > Log: > > Prepending an mbuf after loading a DMA map results in unexpected > > result. So, modify mbuf chains before loading a DMA map. > > > > Revision Changes Path > > 1.122 +28 -31 src/sys/dev/em/if_em.c > > The change immediately after the one that I tested on sun4v brought the > bus_dmamap_unload diagnostics back (worse than before). So much so, > I had to back the change out of my P4 tree. > > This is the change that causes the grief: > > > That's odd. Do you use VLAN with hardware tagging and the interface is in promiscuous mode? Would you should me the diagnostics trace again? -- Regards, Pyun YongHyeon From owner-cvs-all@FreeBSD.ORG Sun Jul 30 07:02:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37E2216A589; Sun, 30 Jul 2006 07:02:41 +0000 (UTC) (envelope-from jb@what-creek.com) Received: from what-creek.com (what-creek.com [66.111.37.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD34E43D45; Sun, 30 Jul 2006 07:02:40 +0000 (GMT) (envelope-from jb@what-creek.com) Received: by what-creek.com (Postfix, from userid 102) id 125F678C1F; Sun, 30 Jul 2006 07:02:37 +0000 (GMT) Date: Sun, 30 Jul 2006 07:02:37 +0000 From: John Birrell To: Pyun YongHyeon Message-ID: <20060730070237.GA26661@what-creek.com> References: <200607270043.k6R0hY8g088353@repoman.freebsd.org> <20060729220154.GA23870@what-creek.com> <20060730064858.GB32731@cdnetworks.co.kr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060730064858.GB32731@cdnetworks.co.kr> User-Agent: Mutt/1.4.2.1i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/em if_em.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, 30 Jul 2006 07:02:41 -0000 On Sun, Jul 30, 2006 at 03:48:58PM +0900, Pyun YongHyeon wrote: > That's odd. Do you use VLAN with hardware tagging and the interface > is in promiscuous mode? No. > Would you should me the diagnostics trace again? That will have to wait until another problem with sun4v is solved. -- John Birrell From owner-cvs-all@FreeBSD.ORG Sun Jul 30 07:04:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23B6116A4DD; Sun, 30 Jul 2006 07:04:19 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 670D443D5D; Sun, 30 Jul 2006 07:04:13 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6U74DcW018658; Sun, 30 Jul 2006 07:04:13 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6U74CDv018657; Sun, 30 Jul 2006 07:04:12 GMT (envelope-from novel) Message-Id: <200607300704.k6U74CDv018657@repoman.freebsd.org> From: Roman Bogorodskiy Date: Sun, 30 Jul 2006 07:04: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-p2p/mooseekd Makefile distinfo ports/net-p2p/mooseekd/files patch-mooseekal-ClientConnection.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: Sun, 30 Jul 2006 07:04:19 -0000 novel 2006-07-30 07:04:12 UTC FreeBSD ports repository Modified files: net-p2p/mooseekd Makefile distinfo Added files: net-p2p/mooseekd/files patch-mooseekal-ClientConnection.cc Log: Update to 0.04. Revision Changes Path 1.2 +7 -3 ports/net-p2p/mooseekd/Makefile 1.2 +3 -3 ports/net-p2p/mooseekd/distinfo 1.1 +15 -0 ports/net-p2p/mooseekd/files/patch-mooseekal-ClientConnection.cc (new) From owner-cvs-all@FreeBSD.ORG Sun Jul 30 07:14:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.ORG Delivered-To: cvs-all@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 72DD816A4DD; Sun, 30 Jul 2006 07:14:28 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (vc4-2-0-87.dsl.netrack.net [199.45.160.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 05D5743D45; Sun, 30 Jul 2006 07:14:27 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (localhost.village.org [127.0.0.1] (may be forged)) by harmony.bsdimp.com (8.13.4/8.13.4) with ESMTP id k6U7D9k1097008; Sun, 30 Jul 2006 01:13:10 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Sun, 30 Jul 2006 01:13:29 -0600 (MDT) Message-Id: <20060730.011329.-490997054.imp@bsdimp.com> To: marcel@FreeBSD.ORG From: "M. Warner Losh" In-Reply-To: <200607291838.k6TIctG4032258@repoman.freebsd.org> References: <200607291838.k6TIctG4032258@repoman.freebsd.org> X-Mailer: Mew version 4.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Sun, 30 Jul 2006 01:13:10 -0600 (MDT) Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/amd64/conf NOTES src/sys/conf NOTES files files.amd64 files.i386 files.pc98 options options.amd64 options.i386 options.pc98 src/sys/i386/conf NOTES src/sys/ia64/conf NOTES src/sys/pc98/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: Sun, 30 Jul 2006 07:14:28 -0000 In message: <200607291838.k6TIctG4032258@repoman.freebsd.org> Marcel Moolenaar writes: : sio(4) is usable on less than half the platforms, not counting : a future mips platform. Its presence in MI files is therefore : increasingly becoming a burden. On second thought, I guess I don't care enough to put up any kind of stink. Forget I said anything. Instead of arguing over this, I'm going to try to make these sorts of issues moot. The build system for the kernel is showing its age and it is time for a revolution. No sense planning one of those and quibbling over the old world order at the same time :-) Warner From owner-cvs-all@FreeBSD.ORG Sun Jul 30 07:22:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3553A16A4DF; Sun, 30 Jul 2006 07:22:10 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E61B643D4C; Sun, 30 Jul 2006 07:22:09 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6U7M9Nl019546; Sun, 30 Jul 2006 07:22:09 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6U7M9kS019545; Sun, 30 Jul 2006 07:22:09 GMT (envelope-from novel) Message-Id: <200607300722.k6U7M9kS019545@repoman.freebsd.org> From: Roman Bogorodskiy Date: Sun, 30 Jul 2006 07:22: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/tcpslice 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: Sun, 30 Jul 2006 07:22:10 -0000 novel 2006-07-30 07:22:09 UTC FreeBSD ports repository Modified files: net/tcpslice pkg-descr Log: Update pkg-descr. PR: 101042 Submitted by: Babak Farrokhi (maintainer) Revision Changes Path 1.2 +5 -9 ports/net/tcpslice/pkg-descr From owner-cvs-all@FreeBSD.ORG Sun Jul 30 07:41:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ADFBC16A4DA; Sun, 30 Jul 2006 07:41:29 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A55E43D45; Sun, 30 Jul 2006 07:41:29 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6U7fTDb020391; Sun, 30 Jul 2006 07:41:29 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6U7fTjj020390; Sun, 30 Jul 2006 07:41:29 GMT (envelope-from maxim) Message-Id: <200607300741.k6U7fTjj020390@repoman.freebsd.org> From: Maxim Konovalov Date: Sun, 30 Jul 2006 07:41: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/usr.bin/rev rev.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, 30 Jul 2006 07:41:29 -0000 maxim 2006-07-30 07:41:28 UTC FreeBSD src repository Modified files: usr.bin/rev rev.c Log: o Kill unneeded assignment. Obtained from: OpenBSD Revision Changes Path 1.9 +0 -1 src/usr.bin/rev/rev.c From owner-cvs-all@FreeBSD.ORG Sun Jul 30 09:12:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9886116A4E2; Sun, 30 Jul 2006 09:12:48 +0000 (UTC) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 66E9143D60; Sun, 30 Jul 2006 09:12:42 +0000 (GMT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6U9Cgla035093; Sun, 30 Jul 2006 09:12:42 GMT (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6U9CfhM035092; Sun, 30 Jul 2006 09:12:41 GMT (envelope-from clement) Message-Id: <200607300912.k6U9CfhM035092@repoman.freebsd.org> From: Clement Laforet Date: Sun, 30 Jul 2006 09:12: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/apache13-modperl Makefile distinfo ports/www/apache13-modperl/files patch-secfix-CVE-2006-3747 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Jul 2006 09:12:48 -0000 clement 2006-07-30 09:12:41 UTC FreeBSD ports repository Modified files: www/apache13-modperl Makefile distinfo Removed files: www/apache13-modperl/files patch-secfix-CVE-2006-3747 Log: - Update apache to 1.3.37 - Fix CONFLICTS Revision Changes Path 1.16 +3 -3 ports/www/apache13-modperl/Makefile 1.6 +3 -3 ports/www/apache13-modperl/distinfo 1.2 +0 -13 ports/www/apache13-modperl/files/patch-secfix-CVE-2006-3747 (dead) From owner-cvs-all@FreeBSD.ORG Sun Jul 30 09:51:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 496FA16A4DA; Sun, 30 Jul 2006 09:51:00 +0000 (UTC) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id A540643D68; Sun, 30 Jul 2006 09:50:58 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.4/8.13.3) with ESMTP id k6U9otAm036634; Sun, 30 Jul 2006 13:50:55 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.4/8.13.3/Submit) id k6U9ottF036633; Sun, 30 Jul 2006 13:50:55 +0400 (MSD) (envelope-from yar) Date: Sun, 30 Jul 2006 13:50:55 +0400 From: Yar Tikhiy To: Pyun YongHyeon Message-ID: <20060730095054.GA36267@comp.chem.msu.su> References: <200607270043.k6R0hY8g088353@repoman.freebsd.org> <20060729205009.GA37970@freefall.freebsd.org> <20060730064807.GA32731@cdnetworks.co.kr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060730064807.GA32731@cdnetworks.co.kr> User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, Pyun YongHyeon Subject: Re: cvs commit: src/sys/dev/em if_em.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, 30 Jul 2006 09:51:00 -0000 On Sun, Jul 30, 2006 at 03:48:07PM +0900, Pyun YongHyeon wrote: > On Sat, Jul 29, 2006 at 08:50:09PM +0000, Yar Tikhiy wrote: > > On Thu, Jul 27, 2006 at 12:43:34AM +0000, Pyun YongHyeon wrote: > > > yongari 2006-07-27 00:43:34 UTC > > > > > > FreeBSD src repository > > > > > > Modified files: > > > sys/dev/em if_em.c > > > Log: > > > Prepending an mbuf after loading a DMA map results in unexpected > > > result. So, modify mbuf chains before loading a DMA map. > > > > > > Revision Changes Path > > > 1.122 +28 -31 src/sys/dev/em/if_em.c > > > > Thanks a lot! Do you think this can fix kern/72933? > > > > I can't sure it helps as the submitter reported the same issue > on bge(4). Sorry, my question wasn't accurate. I believe that the original PR in fact described a different issue with similar symptoms; it was fixed quite a while ago. Then Lev Shamardin posted a follow-up that he was still seeing the symptoms with em(4), which we (Gleb Smirnoff and yours truly) couldn't fully understand because we were missing the peculiarities of the interaction between DMA and mbufs you're so well aware of. > Btw, I think the VLAN fixup code should use m_prepend(9) > insatead of M_PREEND(9) because we don't know whether a new mbuf > is allocated or not after M_PREPEND(9) call. If a new mbuf should be allocated to satisfy DMA, m_prepend(9) is the function to use. M_PREPEND(9) can use the free space at the beginning of the mbuf's data area if there is enough of it. I'm unsure though whether we really need a new mbuf there. em_encap() gets just a mbuf chain, which can be tweaked a little before starting the DMA magic on it. -- Yar From owner-cvs-all@FreeBSD.ORG Sun Jul 30 09:55:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63F8316A4DE; Sun, 30 Jul 2006 09:55:22 +0000 (UTC) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A38843D45; Sun, 30 Jul 2006 09:55:22 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6U9tLxX037004; Sun, 30 Jul 2006 09:55:22 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6U9tLUr037003; Sun, 30 Jul 2006 09:55:21 GMT (envelope-from sem) Message-Id: <200607300955.k6U9tLUr037003@repoman.freebsd.org> From: Sergey Matveychuk Date: Sun, 30 Jul 2006 09:55: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/lang/ruby18 Makefile ports/lang/ruby18/files patch-dir.c-security patch-eval.c-security patch-re.c-security X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Jul 2006 09:55:22 -0000 sem 2006-07-30 09:55:21 UTC FreeBSD ports repository Modified files: lang/ruby18 Makefile Added files: lang/ruby18/files patch-dir.c-security patch-eval.c-security patch-re.c-security Log: - Fix last discovered security vulnerabilities. VuXML id: 76562594-1f19-11db-b7d4-0008743bf21a Revision Changes Path 1.111 +1 -1 ports/lang/ruby18/Makefile 1.1 +30 -0 ports/lang/ruby18/files/patch-dir.c-security (new) 1.1 +35 -0 ports/lang/ruby18/files/patch-eval.c-security (new) 1.1 +11 -0 ports/lang/ruby18/files/patch-re.c-security (new) From owner-cvs-all@FreeBSD.ORG Sun Jul 30 09:58:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 728FD16A4DA; Sun, 30 Jul 2006 09:58:19 +0000 (UTC) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FB9B43D4C; Sun, 30 Jul 2006 09:58:19 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6U9wJaj037141; Sun, 30 Jul 2006 09:58:19 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6U9wJ0t037140; Sun, 30 Jul 2006 09:58:19 GMT (envelope-from sem) Message-Id: <200607300958.k6U9wJ0t037140@repoman.freebsd.org> From: Sergey Matveychuk Date: Sun, 30 Jul 2006 09: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/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: Sun, 30 Jul 2006 09:58:19 -0000 sem 2006-07-30 09:58:18 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: - The last vulnerabilities was fixed in ruby18 port Revision Changes Path 1.1092 +3 -2 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Sun Jul 30 10:03:41 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6ADB116A4DD; Sun, 30 Jul 2006 10:03:41 +0000 (UTC) (envelope-from remko@freebsd.org) Received: from caelis.elvandar.org (caelis.elvandar.org [217.148.169.59]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06CD943D45; Sun, 30 Jul 2006 10:03:41 +0000 (GMT) (envelope-from remko@freebsd.org) Received: from localhost (caelis.elvandar.org [217.148.169.59]) by caelis.elvandar.org (Postfix) with ESMTP id AF32192FE0C; Sun, 30 Jul 2006 12:03:37 +0200 (CEST) Received: from caelis.elvandar.org ([217.148.169.59]) by localhost (caelis.elvandar.org [217.148.169.59]) (amavisd-new, port 10024) with ESMTP id 64253-07; Sun, 30 Jul 2006 12:03:37 +0200 (CEST) Message-ID: <44CC83FB.1080308@FreeBSD.org> Date: Sun, 30 Jul 2006 12:03:39 +0200 From: Remko Lodder User-Agent: Thunderbird 1.5.0.5 (Macintosh/20060719) MIME-Version: 1.0 To: Sergey Matveychuk References: <200607300958.k6U9wJ0t037140@repoman.freebsd.org> In-Reply-To: <200607300958.k6U9wJ0t037140@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by the elvandar.org maildomain Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: remko@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: Sun, 30 Jul 2006 10:03:41 -0000 Sergey Matveychuk wrote: > sem 2006-07-30 09:58:18 UTC > > FreeBSD ports repository > > Modified files: > security/vuxml vuln.xml > Log: > - The last vulnerabilities was fixed in ruby18 port > > Revision Changes Path > 1.1092 +3 -2 ports/security/vuxml/vuln.xml Thanks Sergey! -- Kind regards, Remko Lodder ** remko@elvandar.org FreeBSD ** remko@FreeBSD.org /* Quis custodiet ipsos custodes */ From owner-cvs-all@FreeBSD.ORG Sun Jul 30 10:14:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87EA016A4DD; Sun, 30 Jul 2006 10:14:54 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4208B43D46; Sun, 30 Jul 2006 10:14:54 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UAEsK0039202; Sun, 30 Jul 2006 10:14:54 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UAEsaN039201; Sun, 30 Jul 2006 10:14:54 GMT (envelope-from sat) Message-Id: <200607301014.k6UAEsaN039201@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sun, 30 Jul 2006 10:14: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/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: Sun, 30 Jul 2006 10:14:54 -0000 sat 2006-07-30 10:14:53 UTC FreeBSD ports repository Modified files: irc/p5-POE-Filter-IRCD Makefile distinfo Log: - Update to 1.8 [1] - Use magic master site PR: ports/100954 (based on) [1] Submitted by: Gea-Suan Lin [1] Revision Changes Path 1.3 +2 -3 ports/irc/p5-POE-Filter-IRCD/Makefile 1.3 +3 -3 ports/irc/p5-POE-Filter-IRCD/distinfo From owner-cvs-all@FreeBSD.ORG Sun Jul 30 11:32:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCBA116A4E0; Sun, 30 Jul 2006 11:32:22 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 969EF43D6E; Sun, 30 Jul 2006 11:32:22 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UBWMH1043778; Sun, 30 Jul 2006 11:32:22 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UBWMdq043777; Sun, 30 Jul 2006 11:32:22 GMT (envelope-from pav) Message-Id: <200607301132.k6UBWMdq043777@repoman.freebsd.org> From: Pav Lucistnik Date: Sun, 30 Jul 2006 11: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/ctrace 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, 30 Jul 2006 11:32:23 -0000 pav 2006-07-30 11:32:22 UTC FreeBSD ports repository Modified files: net/ctrace Makefile distinfo Log: - Author restored the download location on his website Revision Changes Path 1.8 +1 -3 ports/net/ctrace/Makefile 1.6 +3 -3 ports/net/ctrace/distinfo From owner-cvs-all@FreeBSD.ORG Sun Jul 30 11:36:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0844216A4DA; Sun, 30 Jul 2006 11:36:50 +0000 (UTC) (envelope-from stefan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8B5B43D46; Sun, 30 Jul 2006 11:36:49 +0000 (GMT) (envelope-from stefan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UBanwt044020; Sun, 30 Jul 2006 11:36:49 GMT (envelope-from stefan@repoman.freebsd.org) Received: (from stefan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UBan8C044019; Sun, 30 Jul 2006 11:36:49 GMT (envelope-from stefan) Message-Id: <200607301136.k6UBan8C044019@repoman.freebsd.org> From: Stefan Walter Date: Sun, 30 Jul 2006 11:36: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/itext 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, 30 Jul 2006 11:36:50 -0000 stefan 2006-07-30 11:36:49 UTC FreeBSD ports repository Modified files: devel/itext Makefile distinfo Log: Update to 1.4.3. Approved by: arved (mentor) Revision Changes Path 1.17 +1 -1 ports/devel/itext/Makefile 1.12 +3 -3 ports/devel/itext/distinfo From owner-cvs-all@FreeBSD.ORG Sun Jul 30 11:44:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 52E0A16A4DF; Sun, 30 Jul 2006 11:44:54 +0000 (UTC) (envelope-from stefan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0953643D46; Sun, 30 Jul 2006 11:44:54 +0000 (GMT) (envelope-from stefan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UBirm5044412; Sun, 30 Jul 2006 11:44:53 GMT (envelope-from stefan@repoman.freebsd.org) Received: (from stefan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UBirN1044411; Sun, 30 Jul 2006 11:44:53 GMT (envelope-from stefan) Message-Id: <200607301144.k6UBirN1044411@repoman.freebsd.org> From: Stefan Walter Date: Sun, 30 Jul 2006 11:44: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/sysutils/worldtools Makefile ports/sysutils/worldtools/files patch-witw X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Jul 2006 11:44:54 -0000 stefan 2006-07-30 11:44:53 UTC FreeBSD ports repository Modified files: sysutils/worldtools Makefile Added files: sysutils/worldtools/files patch-witw Log: Add a patch to avoid cluttered screen on >= 6.x. PR: 99910 Submitted by: Matthias Andree Approved by: maintainer timeout (3 weeks) arved (mentor) Revision Changes Path 1.4 +1 -0 ports/sysutils/worldtools/Makefile 1.1 +12 -0 ports/sysutils/worldtools/files/patch-witw (new) From owner-cvs-all@FreeBSD.ORG Sun Jul 30 11:48:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 41A6916A4DA; Sun, 30 Jul 2006 11:48:25 +0000 (UTC) (envelope-from stefan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDC0943D45; Sun, 30 Jul 2006 11:48:24 +0000 (GMT) (envelope-from stefan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UBmOwZ044601; Sun, 30 Jul 2006 11:48:24 GMT (envelope-from stefan@repoman.freebsd.org) Received: (from stefan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UBmOkt044600; Sun, 30 Jul 2006 11:48:24 GMT (envelope-from stefan) Message-Id: <200607301148.k6UBmOkt044600@repoman.freebsd.org> From: Stefan Walter Date: Sun, 30 Jul 2006 11:48: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/libusb Makefile ports/devel/libusb/files patch-bsd.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, 30 Jul 2006 11:48:25 -0000 stefan 2006-07-30 11:48:24 UTC FreeBSD ports repository Modified files: devel/libusb Makefile Added files: devel/libusb/files patch-bsd.c Log: - Add usb_clear_halt implementation. - Bump PORTREVISION. PR: 100718 Submitted by: Robert Nilsson Approved by: maintainer arved (mentor) Revision Changes Path 1.20 +1 -0 ports/devel/libusb/Makefile 1.9 +26 -0 ports/devel/libusb/files/patch-bsd.c (new) From owner-cvs-all@FreeBSD.ORG Sun Jul 30 11:57:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2AB9E16A4DA; Sun, 30 Jul 2006 11:57:01 +0000 (UTC) (envelope-from stefan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D796C43D46; Sun, 30 Jul 2006 11:57:00 +0000 (GMT) (envelope-from stefan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UBv0vj045114; Sun, 30 Jul 2006 11:57:00 GMT (envelope-from stefan@repoman.freebsd.org) Received: (from stefan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UBv0qe045113; Sun, 30 Jul 2006 11:57:00 GMT (envelope-from stefan) Message-Id: <200607301157.k6UBv0qe045113@repoman.freebsd.org> From: Stefan Walter Date: Sun, 30 Jul 2006 11:57: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/libgnugetopt Makefile ports/devel/libgnugetopt/files patch-getopt.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, 30 Jul 2006 11:57:01 -0000 stefan 2006-07-30 11:57:00 UTC FreeBSD ports repository Modified files: devel/libgnugetopt Makefile Added files: devel/libgnugetopt/files patch-getopt.h Log: - Add a patch to allow compilation of print/hplip with libgnugetopt. - Bump PORTREVISION. PR: 99957 Submitted by: Steinar Børmer Patch by: Anish Mistry Approved by: arved (mentor) Revision Changes Path 1.28 +1 -0 ports/devel/libgnugetopt/Makefile 1.1 +11 -0 ports/devel/libgnugetopt/files/patch-getopt.h (new) From owner-cvs-all@FreeBSD.ORG Sun Jul 30 12:54:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A154C16A4DF; Sun, 30 Jul 2006 12:54:37 +0000 (UTC) (envelope-from mckay@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C9AC43D45; Sun, 30 Jul 2006 12:54:37 +0000 (GMT) (envelope-from mckay@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UCsbOF056670; Sun, 30 Jul 2006 12:54:37 GMT (envelope-from mckay@repoman.freebsd.org) Received: (from mckay@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UCsbiY056669; Sun, 30 Jul 2006 12:54:37 GMT (envelope-from mckay) Message-Id: <200607301254.k6UCsbiY056669@repoman.freebsd.org> From: Stephen McKay Date: Sun, 30 Jul 2006 12:54: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/etc/rc.d kernel X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Jul 2006 12:54:37 -0000 mckay 2006-07-30 12:54:37 UTC FreeBSD src repository Modified files: etc/rc.d kernel Log: This script should probably have an enabling variable since it can produce surprising results. For now, at least make it safe to boot the default kernel when /boot/kernel is already a symlink. Revision Changes Path 1.2 +4 -2 src/etc/rc.d/kernel From owner-cvs-all@FreeBSD.ORG Sun Jul 30 12:59:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 555F116A4DA; Sun, 30 Jul 2006 12:59:16 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E078143D45; Sun, 30 Jul 2006 12:59:15 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UCxF9n056947; Sun, 30 Jul 2006 12:59:15 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UCxF8I056946; Sun, 30 Jul 2006 12:59:15 GMT (envelope-from lth) Message-Id: <200607301259.k6UCxF8I056946@repoman.freebsd.org> From: Lars Thegler Date: Sun, 30 Jul 2006 12:59: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/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: Sun, 30 Jul 2006 12:59:16 -0000 lth 2006-07-30 12:59:15 UTC FreeBSD ports repository Modified files: finance/sql-ledger Makefile distinfo pkg-plist Log: Update to 2.6.15 For changes, see: http://www.sql-ledger.org/cgi-bin/nav.pl?page=news.html&title=What's%20New Revision Changes Path 1.10 +1 -1 ports/finance/sql-ledger/Makefile 1.8 +3 -3 ports/finance/sql-ledger/distinfo 1.8 +36 -1 ports/finance/sql-ledger/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Jul 30 13:03:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 389F716A4DD; Sun, 30 Jul 2006 13:03:22 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0495943D49; Sun, 30 Jul 2006 13:03:22 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UD3L9x058642; Sun, 30 Jul 2006 13:03:21 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UD3Ljf058641; Sun, 30 Jul 2006 13:03:21 GMT (envelope-from ehaupt) Message-Id: <200607301303.k6UD3Ljf058641@repoman.freebsd.org> From: Emanuel Haupt Date: Sun, 30 Jul 2006 13:03: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/x11-wm Makefile ports/x11-wm/dwm Makefile distinfo pkg-descr ports/x11-wm/dwm/files patch-config.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: Sun, 30 Jul 2006 13:03:22 -0000 ehaupt 2006-07-30 13:03:21 UTC FreeBSD ports repository Modified files: x11-wm Makefile Added files: x11-wm/dwm Makefile distinfo pkg-descr x11-wm/dwm/files patch-config.mk Log: Add dwm 0.5, a dynamic, small, fast and simple window manager. PR: 100806 Submitted by: Jeroen Schot Revision Changes Path 1.185 +1 -0 ports/x11-wm/Makefile 1.1 +22 -0 ports/x11-wm/dwm/Makefile (new) 1.1 +3 -0 ports/x11-wm/dwm/distinfo (new) 1.1 +34 -0 ports/x11-wm/dwm/files/patch-config.mk (new) 1.1 +9 -0 ports/x11-wm/dwm/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Sun Jul 30 13:03:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 677AF16A4DA; Sun, 30 Jul 2006 13:03:29 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 238ED43D46; Sun, 30 Jul 2006 13:03:29 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UD3TZx058690; Sun, 30 Jul 2006 13:03:29 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UD3TAw058689; Sun, 30 Jul 2006 13:03:29 GMT (envelope-from ehaupt) Message-Id: <200607301303.k6UD3TAw058689@repoman.freebsd.org> From: Emanuel Haupt Date: Sun, 30 Jul 2006 13: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: 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, 30 Jul 2006 13:03:29 -0000 ehaupt 2006-07-30 13:03:29 UTC FreeBSD ports repository Modified files: . modules Log: dwm --> ports/x11-wm/dwm Revision Changes Path 1.15810 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Jul 30 13:10:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2EF316A4DE; Sun, 30 Jul 2006 13:10:44 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B87343D45; Sun, 30 Jul 2006 13:10:44 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UDAiuT059116; Sun, 30 Jul 2006 13:10:44 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UDAiXv059115; Sun, 30 Jul 2006 13:10:44 GMT (envelope-from rafan) Message-Id: <200607301310.k6UDAiXv059115@repoman.freebsd.org> From: Rong-En Fan Date: Sun, 30 Jul 2006 13:10: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/p5-Baseball-Sabermetrics 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, 30 Jul 2006 13:10:44 -0000 rafan 2006-07-30 13:10:44 UTC FreeBSD ports repository Modified files: games/p5-Baseball-Sabermetrics Makefile distinfo Log: - Update to 0.02 PR: ports/101020 Submitted by: rafan Approved by: chinsan (maintainer) Revision Changes Path 1.2 +4 -3 ports/games/p5-Baseball-Sabermetrics/Makefile 1.2 +3 -3 ports/games/p5-Baseball-Sabermetrics/distinfo From owner-cvs-all@FreeBSD.ORG Sun Jul 30 13:13:06 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA53616A4DA; Sun, 30 Jul 2006 13:13:06 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82E7943D49; Sun, 30 Jul 2006 13:13:06 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UDD6kw059269; Sun, 30 Jul 2006 13:13:06 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UDD6a3059268; Sun, 30 Jul 2006 13:13:06 GMT (envelope-from ehaupt) Message-Id: <200607301313.k6UDD6a3059268@repoman.freebsd.org> From: Emanuel Haupt Date: Sun, 30 Jul 2006 13:13:06 +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, 30 Jul 2006 13:13:06 -0000 ehaupt 2006-07-30 13:13:06 UTC FreeBSD doc repository (ports committer) Modified files: en_US.ISO8859-1/articles/contributors contrib.additional.sgml Log: Add Jeroen Schot for x11-wm/dwm Revision Changes Path 1.595 +5 -0 doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml From owner-cvs-all@FreeBSD.ORG Sun Jul 30 13:18:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16A9D16A4DE; Sun, 30 Jul 2006 13:18:33 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C489643D45; Sun, 30 Jul 2006 13:18:32 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UDIWi5059499; Sun, 30 Jul 2006 13:18:32 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UDIWmM059498; Sun, 30 Jul 2006 13:18:32 GMT (envelope-from simon) Message-Id: <200607301318.k6UDIWmM059498@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 30 Jul 2006 13:18: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/security/vuxml/files tidy.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: Sun, 30 Jul 2006 13:18:33 -0000 simon 2006-07-30 13:18:32 UTC FreeBSD ports repository Modified files: security/vuxml/files tidy.xsl Log: Only sort on entry date, not modified date. It simply causes too much repo churn with little value to resort all entries which have been modified. Revision Changes Path 1.3 +1 -1 ports/security/vuxml/files/tidy.xsl From owner-cvs-all@FreeBSD.ORG Sun Jul 30 13:32:02 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 371F216A4DE; Sun, 30 Jul 2006 13:32:02 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6DF743D45; Sun, 30 Jul 2006 13:32:01 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UDW1sb060172; Sun, 30 Jul 2006 13:32:01 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UDW1Ip060171; Sun, 30 Jul 2006 13:32:01 GMT (envelope-from lth) Message-Id: <200607301332.k6UDW1Ip060171@repoman.freebsd.org> From: Lars Thegler Date: Sun, 30 Jul 2006 13:32: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/mail/p5-Email-Folder-IMAP 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, 30 Jul 2006 13:32:02 -0000 lth 2006-07-30 13:32:01 UTC FreeBSD ports repository Modified files: mail/p5-Email-Folder-IMAP Makefile distinfo Log: Update to 1.10 Revision Changes Path 1.2 +6 -6 ports/mail/p5-Email-Folder-IMAP/Makefile 1.3 +3 -3 ports/mail/p5-Email-Folder-IMAP/distinfo From owner-cvs-all@FreeBSD.ORG Sun Jul 30 13:32:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C4E316A4E1; Sun, 30 Jul 2006 13:32:43 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D969D43D45; Sun, 30 Jul 2006 13:32:42 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UDWgre060215; Sun, 30 Jul 2006 13:32:42 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UDWgkc060214; Sun, 30 Jul 2006 13:32:42 GMT (envelope-from simon) Message-Id: <200607301332.k6UDWgkc060214@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 30 Jul 2006 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/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: Sun, 30 Jul 2006 13:32:43 -0000 simon 2006-07-30 13:32:42 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Run make tidy to clean up some style issues. Revision Changes Path 1.1093 +105 -160 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Sun Jul 30 13:58:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E5A116A4DE; Sun, 30 Jul 2006 13:58:32 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE32C43D45; Sun, 30 Jul 2006 13:58:31 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UDwV6g061329; Sun, 30 Jul 2006 13:58:31 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UDwVSs061327; Sun, 30 Jul 2006 13:58:31 GMT (envelope-from simon) Message-Id: <200607301358.k6UDwVSs061327@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 30 Jul 2006 13:58: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/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: Sun, 30 Jul 2006 13:58:32 -0000 simon 2006-07-30 13:58:31 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Unbreak latest ruby entry by adding missing . Revision Changes Path 1.1094 +2 -2 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Sun Jul 30 14:01:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6839C16A4DD; Sun, 30 Jul 2006 14:01:21 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 22DAC43D45; Sun, 30 Jul 2006 14:01:21 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UE1LJ5061571; Sun, 30 Jul 2006 14:01:21 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UE1LNQ061570; Sun, 30 Jul 2006 14:01:21 GMT (envelope-from lth) Message-Id: <200607301401.k6UE1LNQ061570@repoman.freebsd.org> From: Lars Thegler Date: Sun, 30 Jul 2006 14:01: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/mail/p5-Email-Folder-IMAPS 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, 30 Jul 2006 14:01:21 -0000 lth 2006-07-30 14:01:20 UTC FreeBSD ports repository Modified files: mail/p5-Email-Folder-IMAPS Makefile distinfo Log: - Update to 1.10 - Use magic MASTER_SITES - Use versioned package dependencies Revision Changes Path 1.3 +6 -7 ports/mail/p5-Email-Folder-IMAPS/Makefile 1.4 +3 -3 ports/mail/p5-Email-Folder-IMAPS/distinfo From owner-cvs-all@FreeBSD.ORG Sun Jul 30 14:03:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8AC8616A4E1; Sun, 30 Jul 2006 14:03:05 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5EDD743D45; Sun, 30 Jul 2006 14:03:03 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UE33N1062734; Sun, 30 Jul 2006 14:03:03 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UE33gf062728; Sun, 30 Jul 2006 14:03:03 GMT (envelope-from simon) Message-Id: <200607301403.k6UE33gf062728@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 30 Jul 2006 14:03:03 +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/crypto/openssl/crypto/engine eng_padlock.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, 30 Jul 2006 14:03:05 -0000 simon 2006-07-30 14:03:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) crypto/openssl/crypto/engine eng_padlock.c Log: Fix a bug in the padlock engine when handling small data blocks. This could cause problem e.g. when using OpenVPN. This is a direct commit to RELENG_6 since the issue was fixed by the OpenSSL 0.9.8b import in -CURRENT. PR: bin/86598 Submitted by: Mike Tancsa Tested by: Mike Tancsa, pjd Obtained from: OpenSSL CVS (eng_padlock.c 1.12 -> 1.13 diff) Revision Changes Path 1.2.8.1 +3 -3 src/crypto/openssl/crypto/engine/eng_padlock.c From owner-cvs-all@FreeBSD.ORG Sun Jul 30 14:07:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B79A316A4DE; Sun, 30 Jul 2006 14:07:21 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5655243D6E; Sun, 30 Jul 2006 14:07:15 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UE7FOv063139; Sun, 30 Jul 2006 14:07:15 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UE7Frr063138; Sun, 30 Jul 2006 14:07:15 GMT (envelope-from remko) Message-Id: <200607301407.k6UE7Frr063138@repoman.freebsd.org> From: Remko Lodder Date: Sun, 30 Jul 2006 14:07: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/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: Sun, 30 Jul 2006 14:07:21 -0000 remko 2006-07-30 14:07:15 UTC FreeBSD ports repository (doc committer) Modified files: security/vuxml vuln.xml Log: We are not affected by: CAN-2005-0018 in the f2c entry (43cb40b3-c8c2-11da-a672-000e0c2e438a). We do not have the shellscript, and it is not installed. Reported by: thierry Revision Changes Path 1.1095 +2 -2 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Sun Jul 30 14:17:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA93816A4DF; Sun, 30 Jul 2006 14:17:54 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F3E243D45; Sun, 30 Jul 2006 14:17:54 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UEHs5M063714; Sun, 30 Jul 2006 14:17:54 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UEHsSl063713; Sun, 30 Jul 2006 14:17:54 GMT (envelope-from simon) Message-Id: <200607301417.k6UEHsSl063713@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 30 Jul 2006 14:17: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/crypto/openssl/crypto/engine eng_padlock.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, 30 Jul 2006 14:17:54 -0000 simon 2006-07-30 14:17:54 UTC FreeBSD src repository Modified files: crypto/openssl/crypto/engine eng_padlock.c Log: Resolve conflicts after import of OpenSSL 0.9.8b. This was missed the first time around since eng_padlock.c was not part of OpenSSL 0.9.7e and therefor did not have the v0_9_7e CVS tag used during original resolve of conflicts. Noticed by: Antoine Brodin Revision Changes Path 1.3 +215 -53 src/crypto/openssl/crypto/engine/eng_padlock.c From owner-cvs-all@FreeBSD.ORG Sun Jul 30 14:34:24 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B46B16A4DD; Sun, 30 Jul 2006 14:34:24 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE30743D5A; Sun, 30 Jul 2006 14:34:23 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UEYNfw067254; Sun, 30 Jul 2006 14:34:23 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UEYNfa067251; Sun, 30 Jul 2006 14:34:23 GMT (envelope-from sat) Message-Id: <200607301434.k6UEYNfa067251@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sun, 30 Jul 2006 14:34: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 Makefile ports/www/xpi-statusbarclock 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: Sun, 30 Jul 2006 14:34:24 -0000 sat 2006-07-30 14:34:23 UTC FreeBSD ports repository Modified files: www Makefile Added files: www/xpi-statusbarclock Makefile distinfo pkg-descr Log: Add port www/xpi-statusbarclock: Display the date and time in your browser's status bar. Features: * Displays the time and date in the status bar of your browser. * The time, date, and display formatting are all fully customizable. * Position the clock anywhere on the statusbar. Author: Cosmic Cat Creations WWW: http://www.cosmicat.com/extensions/timestatus/ PR: ports/100913 Submitted by: Simon Olofsson Revision Changes Path 1.1531 +1 -0 ports/www/Makefile 1.1 +28 -0 ports/www/xpi-statusbarclock/Makefile (new) 1.1 +3 -0 ports/www/xpi-statusbarclock/distinfo (new) 1.1 +8 -0 ports/www/xpi-statusbarclock/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Sun Jul 30 14:34:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B52416A4DF; Sun, 30 Jul 2006 14:34:55 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4D7F43D6A; Sun, 30 Jul 2006 14:34:52 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UEYqdj067353; Sun, 30 Jul 2006 14:34:52 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UEYqM8067352; Sun, 30 Jul 2006 14:34:52 GMT (envelope-from sat) Message-Id: <200607301434.k6UEYqM8067352@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sun, 30 Jul 2006 14:34: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: 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, 30 Jul 2006 14:34:55 -0000 sat 2006-07-30 14:34:52 UTC FreeBSD ports repository Modified files: . modules Log: xpi-statusbarclock --> ports/www/xpi-statusbarclock Revision Changes Path 1.15811 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Jul 30 14:40:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 29E1216A4DE; Sun, 30 Jul 2006 14:40:44 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D982D43D45; Sun, 30 Jul 2006 14:40:43 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UEehb5068491; Sun, 30 Jul 2006 14:40:43 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UEehr6068490; Sun, 30 Jul 2006 14:40:43 GMT (envelope-from erwin) Message-Id: <200607301440.k6UEehr6068490@repoman.freebsd.org> From: Erwin Lansing Date: Sun, 30 Jul 2006 14:40: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/Tools/portbuild/scripts dopackages.wrapper X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Jul 2006 14:40:44 -0000 erwin 2006-07-30 14:40:43 UTC FreeBSD ports repository Modified files: Tools/portbuild/scripts dopackages.wrapper Log: Change locking from per architecture to per architecture and branch. Especialy i386 has enough horsepower to run two branches simultaniously. This change has been on pointyhat for some time. Revision Changes Path 1.2 +2 -1 ports/Tools/portbuild/scripts/dopackages.wrapper From owner-cvs-all@FreeBSD.ORG Sun Jul 30 14:42:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A48B16A4DA; Sun, 30 Jul 2006 14:42:34 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C30A843D49; Sun, 30 Jul 2006 14:42:33 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UEgX4K068833; Sun, 30 Jul 2006 14:42:33 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UEgXFV068832; Sun, 30 Jul 2006 14:42:33 GMT (envelope-from miwi) Message-Id: <200607301442.k6UEgXFV068832@repoman.freebsd.org> From: Martin Wilke Date: Sun, 30 Jul 2006 14:42: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/comms/scmxx 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, 30 Jul 2006 14:42:34 -0000 miwi 2006-07-30 14:42:33 UTC FreeBSD ports repository Modified files: comms/scmxx pkg-plist Log: - Fix pkg-plist PR: ports/100927 Submitted by: Stanislav Sedov Approved by: krion (mentor),maintainer Revision Changes Path 1.11 +1 -5 ports/comms/scmxx/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Jul 30 14:53:57 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2B7E16A4DE; Sun, 30 Jul 2006 14:53:57 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54FC743D49; Sun, 30 Jul 2006 14:53:57 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UErv60069527; Sun, 30 Jul 2006 14:53:57 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UErvYh069526; Sun, 30 Jul 2006 14:53:57 GMT (envelope-from simon) Message-Id: <200607301453.k6UErvYh069526@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 30 Jul 2006 14:53: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: doc/en_US.ISO8859-1/books/handbook/mac 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: Sun, 30 Jul 2006 14:53:57 -0000 simon 2006-07-30 14:53:57 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/mac chapter.sgml Log: Remove duplicate mac_biba_load="YES" line. PR: docs/101058 Submitted by: Gabor Kovesdan Revision Changes Path 1.68 +0 -1 doc/en_US.ISO8859-1/books/handbook/mac/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sun Jul 30 15:33:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EE6316A4DD; Sun, 30 Jul 2006 15:33:07 +0000 (UTC) (envelope-from sem@FreeBSD.org) Received: from mail.ciam.ru (ns.ciam.ru [213.247.195.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71CFB43D45; Sun, 30 Jul 2006 15:33:06 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from [87.240.16.199] (helo=[192.168.0.4]) by mail.ciam.ru with esmtpa (Exim 4.x) id 1G7DHs-000KpV-Vw; Sun, 30 Jul 2006 19:33:05 +0400 Message-ID: <44CCD110.7080801@FreeBSD.org> Date: Sun, 30 Jul 2006 19:32:32 +0400 From: Sergey Matveychuk User-Agent: Thunderbird 1.5.0.5 (X11/20060729) MIME-Version: 1.0 To: "Simon L. Nielsen" References: <200607282159.k6SLxNOX000898@repoman.freebsd.org> In-Reply-To: <200607282159.k6SLxNOX000898@repoman.freebsd.org> Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 7bit Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: 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: Sun, 30 Jul 2006 15:33:07 -0000 Simon L. Nielsen wrote: > simon 2006-07-28 21:59:23 UTC > > FreeBSD ports repository > > Modified files: > security/vuxml vuln.xml > Log: > Document apache -- mod_rewrite ldap buffer overflow vulnerability. > > Thanks to remko for doing initial list of apache package names in an > earlier VuXML entry. > > Revision Changes Path > 1.1085 +100 -1 ports/security/vuxml/vuln.xml Simon, looks like you use wrong comparing operator tags in the entry. 1.3.28, 2.0.46 and 2.2.0 are not affected versions, so here should be , not . -- Dixi. Sem. From owner-cvs-all@FreeBSD.ORG Sun Jul 30 15:42:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 18A3516A4DA; Sun, 30 Jul 2006 15:42: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 7A21D43D45; Sun, 30 Jul 2006 15:42:21 +0000 (GMT) (envelope-from simon@zaphod.nitro.dk) Received: from zaphod.nitro.dk (unknown [192.168.3.39]) by mx.nitro.dk (Postfix) with ESMTP id 23E822D6C23; Sun, 30 Jul 2006 15:42:19 +0000 (UTC) Received: by zaphod.nitro.dk (Postfix, from userid 3000) id 91EC31141D; Sun, 30 Jul 2006 17:42:18 +0200 (CEST) Date: Sun, 30 Jul 2006 17:42:18 +0200 From: "Simon L. Nielsen" To: Sergey Matveychuk Message-ID: <20060730154217.GF1116@zaphod.nitro.dk> References: <200607282159.k6SLxNOX000898@repoman.freebsd.org> <44CCD110.7080801@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <44CCD110.7080801@FreeBSD.org> User-Agent: Mutt/1.5.11 Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: 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: Sun, 30 Jul 2006 15:42:23 -0000 On 2006.07.30 19:32:32 +0400, Sergey Matveychuk wrote: > Simon L. Nielsen wrote: > > simon 2006-07-28 21:59:23 UTC > > > > FreeBSD ports repository > > > > Modified files: > > security/vuxml vuln.xml > > Log: > > Document apache -- mod_rewrite ldap buffer overflow vulnerability. > > > > Thanks to remko for doing initial list of apache package names in an > > earlier VuXML entry. > > > > Revision Changes Path > > 1.1085 +100 -1 ports/security/vuxml/vuln.xml > > Simon, looks like you use wrong comparing operator tags in the entry. > 1.3.28, 2.0.46 and 2.2.0 are not affected versions, so here should be > , not . I'm pretty sure they are correct since those versions are affected. >From [1]: An off-by-one flaw exists in the Rewrite module, mod_rewrite, as shipped with Apache 1.3 since 1.3.28, 2.0 since 2.0.46, and 2.2 since 2.2.0. [1] http://marc.theaimsgroup.com/?l=apache-httpd-announce&m=115409818602955 -- Simon L. Nielsen From owner-cvs-all@FreeBSD.ORG Sun Jul 30 15:47:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A48A16A625; Sun, 30 Jul 2006 15:47:58 +0000 (UTC) (envelope-from sem@FreeBSD.org) Received: from mail.ciam.ru (ns.ciam.ru [213.247.195.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC32A43D7C; Sun, 30 Jul 2006 15:47:52 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from [87.240.16.199] (helo=[192.168.0.4]) by mail.ciam.ru with esmtpa (Exim 4.x) id 1G7DWB-000L5A-Vq; Sun, 30 Jul 2006 19:47:52 +0400 Message-ID: <44CCD487.7090306@FreeBSD.org> Date: Sun, 30 Jul 2006 19:47:19 +0400 From: Sergey Matveychuk User-Agent: Thunderbird 1.5.0.5 (X11/20060729) MIME-Version: 1.0 To: "Simon L. Nielsen" References: <200607282159.k6SLxNOX000898@repoman.freebsd.org> <44CCD110.7080801@FreeBSD.org> <20060730154217.GF1116@zaphod.nitro.dk> In-Reply-To: <20060730154217.GF1116@zaphod.nitro.dk> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: 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: Sun, 30 Jul 2006 15:47:58 -0000 Simon L. Nielsen wrote: > On 2006.07.30 19:32:32 +0400, Sergey Matveychuk wrote: >> Simon L. Nielsen wrote: >>> simon 2006-07-28 21:59:23 UTC >>> >>> FreeBSD ports repository >>> >>> Modified files: >>> security/vuxml vuln.xml >>> Log: >>> Document apache -- mod_rewrite ldap buffer overflow vulnerability. >>> >>> Thanks to remko for doing initial list of apache package names in an >>> earlier VuXML entry. >>> >>> Revision Changes Path >>> 1.1085 +100 -1 ports/security/vuxml/vuln.xml >> Simon, looks like you use wrong comparing operator tags in the entry. >> 1.3.28, 2.0.46 and 2.2.0 are not affected versions, so here should be >> , not . > > I'm pretty sure they are correct since those versions are affected. > From [1]: > > An off-by-one flaw exists in the Rewrite module, mod_rewrite, > as shipped with Apache 1.3 since 1.3.28, 2.0 since 2.0.46, and > 2.2 since 2.2.0. > > [1] http://marc.theaimsgroup.com/?l=apache-httpd-announce&m=115409818602955 > Oh, sorry, I'm wrong. -- Dixi. Sem. From owner-cvs-all@FreeBSD.ORG Sun Jul 30 15:55:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 70A1A16A4DA; Sun, 30 Jul 2006 15:55:23 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A8A243D67; Sun, 30 Jul 2006 15:55:23 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UFtN6I073603; Sun, 30 Jul 2006 15:55:23 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UFtMOH073602; Sun, 30 Jul 2006 15:55:22 GMT (envelope-from marcus) Message-Id: <200607301555.k6UFtMOH073602@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 30 Jul 2006 15: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/x11/zenity 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, 30 Jul 2006 15:55:23 -0000 marcus 2006-07-30 15:55:22 UTC FreeBSD ports repository Modified files: x11/zenity Makefile distinfo pkg-plist Log: Update to 2.14.3. Revision Changes Path 1.26 +1 -1 ports/x11/zenity/Makefile 1.20 +3 -3 ports/x11/zenity/distinfo 1.14 +16 -0 ports/x11/zenity/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Jul 30 16:21:02 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4DC516A4DA; Sun, 30 Jul 2006 16:21:02 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71CFB43D45; Sun, 30 Jul 2006 16:21:02 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UGL2S9076006; Sun, 30 Jul 2006 16:21:02 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UGL2IN076005; Sun, 30 Jul 2006 16:21:02 GMT (envelope-from marcus) Message-Id: <200607301621.k6UGL2IN076005@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 30 Jul 2006 16:21: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/accessibility/dasher 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, 30 Jul 2006 16:21:02 -0000 marcus 2006-07-30 16:21:02 UTC FreeBSD ports repository Modified files: accessibility/dasher Makefile distinfo pkg-plist Log: Update to 4.0.3. Revision Changes Path 1.31 +1 -1 ports/accessibility/dasher/Makefile 1.16 +3 -3 ports/accessibility/dasher/distinfo 1.16 +2 -0 ports/accessibility/dasher/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Jul 30 18:16:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 230B816A4E0; Sun, 30 Jul 2006 18:16:00 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D206943D45; Sun, 30 Jul 2006 18:15:59 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UIFx0X093212; Sun, 30 Jul 2006 18:15:59 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UIFxFw093211; Sun, 30 Jul 2006 18:15:59 GMT (envelope-from rafan) Message-Id: <200607301815.k6UIFxFw093211@repoman.freebsd.org> From: Rong-En Fan Date: Sun, 30 Jul 2006 18:15: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 Makefile ports/security/isnprober 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: Sun, 30 Jul 2006 18:16:00 -0000 rafan 2006-07-30 18:15:59 UTC FreeBSD ports repository Modified files: security Makefile Added files: security/isnprober Makefile distinfo pkg-descr Log: Add isnprober 1.02, penTest tool for TCP Initial Sequence Numbers research. PR: ports/101005 Submitted by: Yonatan Revision Changes Path 1.795 +1 -0 ports/security/Makefile 1.1 +34 -0 ports/security/isnprober/Makefile (new) 1.1 +3 -0 ports/security/isnprober/distinfo (new) 1.1 +5 -0 ports/security/isnprober/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Sun Jul 30 18:16:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C575416A4E7; Sun, 30 Jul 2006 18:16:18 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2962843D4C; Sun, 30 Jul 2006 18:16:18 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UIGIpG093275; Sun, 30 Jul 2006 18:16:18 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UIGIFI093274; Sun, 30 Jul 2006 18:16:18 GMT (envelope-from rafan) Message-Id: <200607301816.k6UIGIFI093274@repoman.freebsd.org> From: Rong-En Fan Date: Sun, 30 Jul 2006 18:16: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: 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, 30 Jul 2006 18:16:18 -0000 rafan 2006-07-30 18:16:18 UTC FreeBSD ports repository Modified files: . modules Log: isnprober --> ports/security/isnprober Revision Changes Path 1.15812 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Jul 30 18:33:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 871DC16A4DF; Sun, 30 Jul 2006 18:33:21 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4548343D49; Sun, 30 Jul 2006 18:33:21 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UIXLBM094270; Sun, 30 Jul 2006 18:33:21 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UIXLqD094269; Sun, 30 Jul 2006 18:33:21 GMT (envelope-from kientzle) Message-Id: <200607301833.k6UIXLqD094269@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 30 Jul 2006 18:33: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/lib/libarchive archive_read_support_format_cpio.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, 30 Jul 2006 18:33:21 -0000 kientzle 2006-07-30 18:33:21 UTC FreeBSD src repository Modified files: lib/libarchive archive_read_support_format_cpio.c Log: Conditionally include sys/mkdev.h on platforms (such as Solaris) that need it. Thanks to: VMiklos Revision Changes Path 1.18 +3 -0 src/lib/libarchive/archive_read_support_format_cpio.c From owner-cvs-all@FreeBSD.ORG Sun Jul 30 18:34:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0E1616A4DD; Sun, 30 Jul 2006 18:34:40 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70F2643D45; Sun, 30 Jul 2006 18:34:40 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UIYekE094346; Sun, 30 Jul 2006 18:34:40 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UIYemL094345; Sun, 30 Jul 2006 18:34:40 GMT (envelope-from kientzle) Message-Id: <200607301834.k6UIYemL094345@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 30 Jul 2006 18:34:40 +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/tar read.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, 30 Jul 2006 18:34:40 -0000 kientzle 2006-07-30 18:34:40 UTC FreeBSD src repository Modified files: usr.bin/tar read.c Log: Conditionally include sys/mkdev.h on platforms (such as Solaris) that need it. While I'm here, correctly alphabetize 't' after 's'. Thanks to: VMiklos Revision Changes Path 1.26 +4 -1 src/usr.bin/tar/read.c From owner-cvs-all@FreeBSD.ORG Sun Jul 30 19:09:09 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9418E16A4E0; Sun, 30 Jul 2006 19:09:09 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F052843D49; Sun, 30 Jul 2006 19:09:05 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UJ951X097085; Sun, 30 Jul 2006 19:09:05 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UJ95iV097084; Sun, 30 Jul 2006 19:09:05 GMT (envelope-from remko) Message-Id: <200607301909.k6UJ95iV097084@repoman.freebsd.org> From: Remko Lodder Date: Sun, 30 Jul 2006 19:09:05 +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 usergroups.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, 30 Jul 2006 19:09:09 -0000 remko 2006-07-30 19:09:05 UTC FreeBSD doc repository Modified files: share/sgml usergroups.xml Log: Add BANGBUG to the usergroups. PR: www/100975 Submitted by: John Sokol Revision Changes Path 1.37 +12 -1 www/share/sgml/usergroups.xml From owner-cvs-all@FreeBSD.ORG Sun Jul 30 19:20:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0C1216A4DA; Sun, 30 Jul 2006 19:20:53 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E27D43D4C; Sun, 30 Jul 2006 19:20:53 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UJKra3097693; Sun, 30 Jul 2006 19:20:53 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UJKrPE097692; Sun, 30 Jul 2006 19:20:53 GMT (envelope-from pav) Message-Id: <200607301920.k6UJKrPE097692@repoman.freebsd.org> From: Pav Lucistnik Date: Sun, 30 Jul 2006 19:20: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/astro/boinc-setiathome-enhanced Makefile distinfo pkg-descr pkg-message pkg-plist ports/astro/boinc-setiathome-enhanced/files app_info.xml.in 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, 30 Jul 2006 19:20:53 -0000 pav 2006-07-30 19:20:53 UTC FreeBSD ports repository Modified files: astro/boinc-setiathome-enhanced Makefile distinfo pkg-descr pkg-plist Added files: astro/boinc-setiathome-enhanced pkg-message astro/boinc-setiathome-enhanced/files app_info.xml.in Removed files: astro/boinc-setiathome-enhanced/files pkg-message.in Log: - Update to 5.13 - Compile from source PR: ports/101022 Submitted by: Rene Ladan (maintainer) Revision Changes Path 1.6 +47 -31 ports/astro/boinc-setiathome-enhanced/Makefile 1.3 +3 -3 ports/astro/boinc-setiathome-enhanced/distinfo 1.1 +17 -0 ports/astro/boinc-setiathome-enhanced/files/app_info.xml.in (new) 1.2 +0 -22 ports/astro/boinc-setiathome-enhanced/files/pkg-message.in (dead) 1.3 +14 -5 ports/astro/boinc-setiathome-enhanced/pkg-descr 1.4 +16 -0 ports/astro/boinc-setiathome-enhanced/pkg-message (new) 1.4 +0 -6 ports/astro/boinc-setiathome-enhanced/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Jul 30 19:29:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D67E016A4DD; Sun, 30 Jul 2006 19:29:26 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9635D43D45; Sun, 30 Jul 2006 19:29:26 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UJTQqn098063; Sun, 30 Jul 2006 19:29:26 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UJTQ3x098062; Sun, 30 Jul 2006 19:29:26 GMT (envelope-from simon) Message-Id: <200607301929.k6UJTQ3x098062@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 30 Jul 2006 19:29: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/libmp mpasbn.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, 30 Jul 2006 19:29:26 -0000 simon 2006-07-30 19:29:26 UTC FreeBSD src repository Modified files: lib/libmp mpasbn.c Log: Pass BN_CTX to internal functions instead of allocating it internally. This allows msqrt() to only call BN_CTX_new() once intead of many times. Suggested and reviewed by: stefanf Revision Changes Path 1.5 +35 -27 src/lib/libmp/mpasbn.c From owner-cvs-all@FreeBSD.ORG Sun Jul 30 19:32:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ADA9516A4DA; Sun, 30 Jul 2006 19:32:52 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C56343D46; Sun, 30 Jul 2006 19:32:52 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UJWq8P098351; Sun, 30 Jul 2006 19:32:52 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UJWq0W098350; Sun, 30 Jul 2006 19:32:52 GMT (envelope-from simon) Message-Id: <200607301932.k6UJWq0W098350@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 30 Jul 2006 19:32: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/tools/tools/nanobsd FlashDevice.sub X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Jul 2006 19:32:52 -0000 simon 2006-07-30 19:32:52 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) tools/tools/nanobsd FlashDevice.sub Log: MFC 1.7: Add Memory Corp 512MB CF Flash. Revision Changes Path 1.1.2.5 +15 -0 src/tools/tools/nanobsd/FlashDevice.sub From owner-cvs-all@FreeBSD.ORG Sun Jul 30 19:37:29 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1041C16A4DA for ; Sun, 30 Jul 2006 19:37:29 +0000 (UTC) (envelope-from zahidayar@gmail.com) Received: from qb-out-0506.google.com (qb-out-0506.google.com [72.14.204.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id 648CA43D53 for ; Sun, 30 Jul 2006 19:37:28 +0000 (GMT) (envelope-from zahidayar@gmail.com) Received: by qb-out-0506.google.com with SMTP id a10so38607qbd for ; Sun, 30 Jul 2006 12:37:27 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:sender:to:subject:in-reply-to:mime-version:content-type:references:x-google-sender-auth; b=F1WHKKRwTU0StFU6wep+K0UAZijODfuTpBHjxr/c+w6RXK+Pw4rV4bT4AIfea0HJdJSoSKL1Hk//hjsWhMdvshOTUNcRiNoKvDlwqGRwi9yL1toCt1jwsi9yhZ4rfbHFg6oj7Vw2V9nvkrQZuBnCLf0vZqm7utyH1hpI5CBIJP8= Received: by 10.65.97.18 with SMTP id z18mr204336qbl; Sun, 30 Jul 2006 12:37:23 -0700 (PDT) Received: by 10.35.122.11 with HTTP; Sun, 30 Jul 2006 12:37:23 -0700 (PDT) Message-ID: <245a5f160607301237m19852833xa244c7b1df52caa3@mail.gmail.com> Date: Sun, 30 Jul 2006 15:37:23 -0400 From: "Zahid Ayar" Sender: zahidayar@gmail.com To: cvs-all@freebsd.org In-Reply-To: <245a5f160607301236p22f7e198yeae3dc336f0635db@mail.gmail.com> MIME-Version: 1.0 References: <245a5f160607131218v3e84b166y810cedcddcf00d2a@mail.gmail.com> <245a5f160607301223u4e2656e5h603f436d1f6d9547@mail.gmail.com> <245a5f160607301225k779e5135vf5fe134bb4f0c47b@mail.gmail.com> <245a5f160607301228j29f4649br1e51f194489da89a@mail.gmail.com> <245a5f160607301230x33c58526tdb2661df9e54a9df@mail.gmail.com> <245a5f160607301231x4accc1e9pb39dac7abf91ffa0@mail.gmail.com> <245a5f160607301233t1b47f409ye67bb93130f85c7b@mail.gmail.com> <245a5f160607301234o594a60c8ibedec43d2366c6bd@mail.gmail.com> <245a5f160607301236m985cf36uc79d111011568df7@mail.gmail.com> <245a5f160607301236p22f7e198yeae3dc336f0635db@mail.gmail.com> X-Google-Sender-Auth: faa28862c76fc8c3 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: organize your information in 3d. X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Jul 2006 19:37:29 -0000 Hello, Check out Nelements , a 3d note-taking tool to organize your information by making lists that are stored in 3d for easy reviewal. try it out! i hope its helpful for you in organizing your information. Marvin Minksy from MIT thought Nelements was interesting... Zahid -- Allahumma Salli Ala Muhammad ---------------------------------------------------------- By Time! Verily mankind is in loss! Except the ones who have Iman, and do righteous deeds, and advise one another towards truth, and advise one another towards patience. Quran 103:1-3. ---------------------------------------------------------- Muhammed Zahid Ayar zahid@ayar.org 1-518-466-5631 blog.ayar.org ---------------------------------------------------------- Organize your knowledge with nelements.net ! From owner-cvs-all@FreeBSD.ORG Sun Jul 30 20:51:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DF1616A4DA; Sun, 30 Jul 2006 20:51:42 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D215343D46; Sun, 30 Jul 2006 20:51:41 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UKpfPb011189; Sun, 30 Jul 2006 20:51:41 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UKpfNU011188; Sun, 30 Jul 2006 20:51:41 GMT (envelope-from marcel) Message-Id: <200607302051.k6UKpfNU011188@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 30 Jul 2006 20:51: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/usr.sbin/kldxref 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, 30 Jul 2006 20:51:42 -0000 marcel 2006-07-30 20:51:41 UTC FreeBSD src repository Modified files: usr.sbin/kldxref Makefile Log: Use NO_SHARED=YES to force a static link. Pointed out by: ru@ Revision Changes Path 1.9 +1 -1 src/usr.sbin/kldxref/Makefile From owner-cvs-all@FreeBSD.ORG Sun Jul 30 20:52:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 520DD16A524; Sun, 30 Jul 2006 20:52:00 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1332343D45; Sun, 30 Jul 2006 20:52:00 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UKpxBC011236; Sun, 30 Jul 2006 20:51:59 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UKpx7m011235; Sun, 30 Jul 2006 20:51:59 GMT (envelope-from miwi) Message-Id: <200607302051.k6UKpx7m011235@repoman.freebsd.org> From: Martin Wilke Date: Sun, 30 Jul 2006 20:51: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/lang/moscow_ml 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, 30 Jul 2006 20:52:00 -0000 miwi 2006-07-30 20:51:59 UTC FreeBSD ports repository Modified files: lang/moscow_ml Makefile Log: - Fix file permissions - Makefile cleanup PR: ports/100968 Submitted by: Stanislav Sedov Approved by: krion (mentor) Revision Changes Path 1.31 +3 -2 ports/lang/moscow_ml/Makefile From owner-cvs-all@FreeBSD.ORG Sun Jul 30 20:57:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1479E16A4DD; Sun, 30 Jul 2006 20:57:31 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A0B143D68; Sun, 30 Jul 2006 20:57:30 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UKvUYp011485; Sun, 30 Jul 2006 20:57:30 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UKvUxX011484; Sun, 30 Jul 2006 20:57:30 GMT (envelope-from miwi) Message-Id: <200607302057.k6UKvUxX011484@repoman.freebsd.org> From: Martin Wilke Date: Sun, 30 Jul 2006 20:57: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/lang/huc 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, 30 Jul 2006 20:57:31 -0000 miwi 2006-07-30 20:57:30 UTC FreeBSD ports repository Modified files: lang/huc Makefile Log: - Fix file permissions PR: ports/100960 Submitted by: Stanislav Sedov Approved by: krion (mentor) Revision Changes Path 1.4 +6 -3 ports/lang/huc/Makefile From owner-cvs-all@FreeBSD.ORG Sun Jul 30 20:59:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EDB4716A4DE; Sun, 30 Jul 2006 20:59:22 +0000 (UTC) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 648EA43D64; Sun, 30 Jul 2006 20:59:19 +0000 (GMT) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UKxJ48011575; Sun, 30 Jul 2006 20:59:19 GMT (envelope-from alepulver@repoman.freebsd.org) Received: (from alepulver@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UKxJLA011574; Sun, 30 Jul 2006 20:59:19 GMT (envelope-from alepulver) Message-Id: <200607302059.k6UKxJLA011574@repoman.freebsd.org> From: Alejandro Pulver Date: Sun, 30 Jul 2006 20:59: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/games/tyrquake/files patch-common__model.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, 30 Jul 2006 20:59:23 -0000 alepulver 2006-07-30 20:59:19 UTC FreeBSD ports repository Added files: games/tyrquake/files patch-common__model.c Log: - Fix building on 4.x (since the last update stdint.h is included in another source file). Revision Changes Path 1.1 +11 -0 ports/games/tyrquake/files/patch-common__model.c (new) From owner-cvs-all@FreeBSD.ORG Sun Jul 30 20:59:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09FF316A4DF; Sun, 30 Jul 2006 20:59:30 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 986F843D64; Sun, 30 Jul 2006 20:59:29 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UKxTdL011615; Sun, 30 Jul 2006 20:59:29 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UKxTwO011614; Sun, 30 Jul 2006 20:59:29 GMT (envelope-from miwi) Message-Id: <200607302059.k6UKxTwO011614@repoman.freebsd.org> From: Martin Wilke Date: Sun, 30 Jul 2006 20:59: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/lang/elk 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: Sun, 30 Jul 2006 20:59:30 -0000 miwi 2006-07-30 20:59:29 UTC FreeBSD ports repository Modified files: lang/elk Makefile pkg-plist Log: - Fix file permissions - Use DATADIR macro PR: ports/100966 Submitted by: Stanislav Sedov Approved by: krion (mentor) Revision Changes Path 1.43 +1 -0 ports/lang/elk/Makefile 1.12 +26 -26 ports/lang/elk/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Jul 30 21:01:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A93616A4DD; Sun, 30 Jul 2006 21:01:33 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C77043D45; Sun, 30 Jul 2006 21:01:33 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UL1XTR011853; Sun, 30 Jul 2006 21:01:33 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UL1XWO011852; Sun, 30 Jul 2006 21:01:33 GMT (envelope-from miwi) Message-Id: <200607302101.k6UL1XWO011852@repoman.freebsd.org> From: Martin Wilke Date: Sun, 30 Jul 2006 21:01: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/sysutils/xcpustate 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, 30 Jul 2006 21:01:33 -0000 miwi 2006-07-30 21:01:33 UTC FreeBSD ports repository Modified files: sysutils/xcpustate Makefile distinfo Log: - Update to 2.9 PR: ports/100999 Submitted by: Soeren Straarup Approved by: krion (mentor) Revision Changes Path 1.30 +1 -1 ports/sysutils/xcpustate/Makefile 1.8 +3 -3 ports/sysutils/xcpustate/distinfo From owner-cvs-all@FreeBSD.ORG Sun Jul 30 21:06:57 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFC9E16A4DE; Sun, 30 Jul 2006 21:06:57 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF79E43D46; Sun, 30 Jul 2006 21:06:57 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UL6veK013391; Sun, 30 Jul 2006 21:06:57 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UL6vx7013390; Sun, 30 Jul 2006 21:06:57 GMT (envelope-from acm) Message-Id: <200607302106.k6UL6vx7013390@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Sun, 30 Jul 2006 21:06: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/editors Makefile ports/editors/lazarus Makefile distinfo pkg-descr pkg-plist ports/editors/lazarus/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: Sun, 30 Jul 2006 21:06:58 -0000 acm 2006-07-30 21:06:57 UTC FreeBSD ports repository Modified files: editors Makefile Added files: editors/lazarus Makefile distinfo pkg-descr pkg-plist editors/lazarus/files patch-Makefile Log: - New port: editors/lazarus Lazarus is the class libraries for Free Pascal that emulate Delphi. Free Pascal is a GPL'ed compiler that runs on Linux, Win32, OS/2, 68K and more. Free Pascal is designed to be able to understand and compile Delphi syntax, which is of course OOP. Lazarus is the part of the missing puzzle that will allow you to develop Delphi-like programs in all of the above platforms. Unlike Java which strives to be a write once run anywhere, Lazarus and Free Pascal strives for write once compile anywhere. WWW: http://www.lazarus.freepascal.org/ Approved by: garga (mentor) Revision Changes Path 1.350 +1 -0 ports/editors/Makefile 1.1 +134 -0 ports/editors/lazarus/Makefile (new) 1.1 +6 -0 ports/editors/lazarus/distinfo (new) 1.1 +24 -0 ports/editors/lazarus/files/patch-Makefile (new) 1.1 +11 -0 ports/editors/lazarus/pkg-descr (new) 1.1 +3619 -0 ports/editors/lazarus/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sun Jul 30 21:07:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17A8616A4DE; Sun, 30 Jul 2006 21:07:14 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B500E43D55; Sun, 30 Jul 2006 21:07:12 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UL7CIA013428; Sun, 30 Jul 2006 21:07:12 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UL7C63013427; Sun, 30 Jul 2006 21:07:12 GMT (envelope-from miwi) Message-Id: <200607302107.k6UL7C63013427@repoman.freebsd.org> From: Martin Wilke Date: Sun, 30 Jul 2006 21: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/databases/pgworksheet 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, 30 Jul 2006 21:07:14 -0000 miwi 2006-07-30 21:07:12 UTC FreeBSD ports repository Modified files: databases/pgworksheet pkg-plist Log: - Fix pkg-plist PR: ports/100828 Submitted by: Stanislav Sedov Approved by: krion (mentor), maintainer Revision Changes Path 1.5 +0 -5 ports/databases/pgworksheet/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Jul 30 21:09:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4249A16A4DD; Sun, 30 Jul 2006 21:09:34 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06DFD43D45; Sun, 30 Jul 2006 21:09:34 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UL9XFn013493; Sun, 30 Jul 2006 21:09:33 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UL9XbS013492; Sun, 30 Jul 2006 21:09:33 GMT (envelope-from acm) Message-Id: <200607302109.k6UL9XbS013492@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Sun, 30 Jul 2006 21:09: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: Sun, 30 Jul 2006 21:09:34 -0000 acm 2006-07-30 21:09:33 UTC FreeBSD ports repository Modified files: . modules Log: - lazarus --> ports/editors/lazarus Revision Changes Path 1.15813 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Jul 30 21:12:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C512716A4DA; Sun, 30 Jul 2006 21:12:29 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8927A43D49; Sun, 30 Jul 2006 21:12:29 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6ULCTkP013719; Sun, 30 Jul 2006 21:12:29 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6ULCTHC013718; Sun, 30 Jul 2006 21:12:29 GMT (envelope-from sat) Message-Id: <200607302112.k6ULCTHC013718@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sun, 30 Jul 2006 21:12: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 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: Sun, 30 Jul 2006 21:12:29 -0000 sat 2006-07-30 21:12:29 UTC FreeBSD ports repository Modified files: . LEGAL Log: - Add note about linux-unace Revision Changes Path 1.486 +3 -1 ports/LEGAL From owner-cvs-all@FreeBSD.ORG Sun Jul 30 21:21:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 117FC16A4DA; Sun, 30 Jul 2006 21:21:11 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D17BF43D46; Sun, 30 Jul 2006 21:21:10 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6ULLADK014192; Sun, 30 Jul 2006 21:21:10 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6ULLA1d014191; Sun, 30 Jul 2006 21:21:10 GMT (envelope-from acm) Message-Id: <200607302121.k6ULLA1d014191@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Sun, 30 Jul 2006 21:21: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/net Makefile ports/net/twinkle Makefile distinfo pkg-descr pkg-plist ports/net/twinkle/files patch-src-Makefile.in patch-src-call_script.cpp patch-src-parser_parser.yxx patch-src-threads_mutex.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, 30 Jul 2006 21:21:11 -0000 acm 2006-07-30 21:21:10 UTC FreeBSD ports repository Modified files: net Makefile Added files: net/twinkle Makefile distinfo pkg-descr pkg-plist net/twinkle/files patch-src-Makefile.in patch-src-call_script.cpp patch-src-parser_parser.yxx patch-src-threads_mutex.cpp Log: - New port: net/twinkle Twinkle is a soft phone for your voice over IP communcations using the SIP protocol. You can use it for direct IP phone to IP phone communication or in a network using a SIP proxy to route your calls. WWW: http://www.twinklephone.com/ Approved by: garga (mentor) Revision Changes Path 1.1705 +1 -0 ports/net/Makefile 1.1 +49 -0 ports/net/twinkle/Makefile (new) 1.1 +3 -0 ports/net/twinkle/distinfo (new) 1.1 +10 -0 ports/net/twinkle/files/patch-src-Makefile.in (new) 1.1 +33 -0 ports/net/twinkle/files/patch-src-call_script.cpp (new) 1.1 +11 -0 ports/net/twinkle/files/patch-src-parser_parser.yxx (new) 1.1 +11 -0 ports/net/twinkle/files/patch-src-threads_mutex.cpp (new) 1.1 +7 -0 ports/net/twinkle/pkg-descr (new) 1.1 +8 -0 ports/net/twinkle/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sun Jul 30 21:22:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A473316A4DE; Sun, 30 Jul 2006 21:22:22 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 450F643D46; Sun, 30 Jul 2006 21:22:22 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6ULMMMM014302; Sun, 30 Jul 2006 21:22:22 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6ULMMQF014301; Sun, 30 Jul 2006 21:22:22 GMT (envelope-from acm) Message-Id: <200607302122.k6ULMMQF014301@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Sun, 30 Jul 2006 21:22: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: 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, 30 Jul 2006 21:22:22 -0000 acm 2006-07-30 21:22:22 UTC FreeBSD ports repository Modified files: . modules Log: - twinkle --> ports/net/twinkle Revision Changes Path 1.15814 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Jul 30 21:22:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A31316A4DE; Sun, 30 Jul 2006 21:22:56 +0000 (UTC) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29F1043D46; Sun, 30 Jul 2006 21:22:56 +0000 (GMT) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6ULMtbg014344; Sun, 30 Jul 2006 21:22:55 GMT (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6ULMtjB014343; Sun, 30 Jul 2006 21:22:55 GMT (envelope-from lioux) Message-Id: <200607302122.k6ULMtjB014343@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Sun, 30 Jul 2006 21:22: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-p2p/py-bittorrent 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, 30 Jul 2006 21:22:56 -0000 lioux 2006-07-30 21:22:55 UTC FreeBSD ports repository Modified files: net-p2p/py-bittorrent Makefile distinfo pkg-plist Log: Update to 4.20.2 Revision Changes Path 1.44 +1 -1 ports/net-p2p/py-bittorrent/Makefile 1.18 +3 -3 ports/net-p2p/py-bittorrent/distinfo 1.15 +10 -38 ports/net-p2p/py-bittorrent/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Jul 30 21:31:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E92A916A4E0; Sun, 30 Jul 2006 21:31:26 +0000 (UTC) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 641AB43D5A; Sun, 30 Jul 2006 21:31:20 +0000 (GMT) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6ULVJcG014806; Sun, 30 Jul 2006 21:31:19 GMT (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6ULVJms014805; Sun, 30 Jul 2006 21:31:19 GMT (envelope-from lioux) Message-Id: <200607302131.k6ULVJms014805@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Sun, 30 Jul 2006 21:31: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/multimedia/tovid Makefile ports/multimedia/tovid/files patch-src__tovid.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, 30 Jul 2006 21:31:27 -0000 lioux 2006-07-30 21:31:19 UTC FreeBSD ports repository Modified files: multimedia/tovid Makefile multimedia/tovid/files patch-src__tovid.sh Log: o mplayer command line option "-vc dummy" has been deprecated in favor of "-vc null". Rectify that. o Bump PORTREVISION PR: 98668 Submitted by: David Kleiner Revision Changes Path 1.11 +1 -1 ports/multimedia/tovid/Makefile 1.3 +0 -9 ports/multimedia/tovid/files/patch-src__tovid.sh From owner-cvs-all@FreeBSD.ORG Sun Jul 30 22:22:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE37316A4E2; Sun, 30 Jul 2006 22:22:51 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 441C843D45; Sun, 30 Jul 2006 22:22:51 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UMMp1R018398; Sun, 30 Jul 2006 22:22:51 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UMMpqX018397; Sun, 30 Jul 2006 22:22:51 GMT (envelope-from sat) Message-Id: <200607302222.k6UMMpqX018397@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sun, 30 Jul 2006 22:22: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/Mk bsd.sites.mk ports/www/xpi-adblock Makefile.xpi X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Jul 2006 22:22:51 -0000 sat 2006-07-30 22:22:50 UTC FreeBSD ports repository Modified files: Mk bsd.sites.mk www/xpi-adblock Makefile.xpi Log: - Move my csme.ru mirrors from Makefile.xpi to bsd.sites.mk Revision Changes Path 1.392 +9 -1 ports/Mk/bsd.sites.mk 1.12 +5 -10 ports/www/xpi-adblock/Makefile.xpi From owner-cvs-all@FreeBSD.ORG Sun Jul 30 22:34:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F3F7A16A501; Sun, 30 Jul 2006 22:34:30 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E18343D45; Sun, 30 Jul 2006 22:34:30 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UMYUa3018944; Sun, 30 Jul 2006 22:34:30 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UMYUuq018943; Sun, 30 Jul 2006 22:34:30 GMT (envelope-from sat) Message-Id: <200607302234.k6UMYUuq018943@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sun, 30 Jul 2006 22:34: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/Mk bsd.linux-rpm.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: Sun, 30 Jul 2006 22:34:31 -0000 sat 2006-07-30 22:34:30 UTC FreeBSD ports repository Modified files: Mk bsd.linux-rpm.mk Log: - Only set default m_s_subdir if master_sites was undefined Revision Changes Path 1.9 +3 -1 ports/Mk/bsd.linux-rpm.mk From owner-cvs-all@FreeBSD.ORG Sun Jul 30 22:35:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C87516A4DF; Sun, 30 Jul 2006 22:35:05 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 849F343D5A; Sun, 30 Jul 2006 22:35:04 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UMZ4e8018987; Sun, 30 Jul 2006 22:35:04 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UMZ4bV018986; Sun, 30 Jul 2006 22:35:04 GMT (envelope-from clsung) Message-Id: <200607302235.k6UMZ4bV018986@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sun, 30 Jul 2006 22: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/mail/anomy-sanitizer 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, 30 Jul 2006 22:35:05 -0000 clsung 2006-07-30 22:35:04 UTC FreeBSD ports repository Modified files: mail/anomy-sanitizer Makefile Log: - fix running time error by installing missing perl module PR: ports/100800 Submitted by: Marshal Newrock Approved by: maintainer (Janos Mohacsi) Revision Changes Path 1.5 +2 -0 ports/mail/anomy-sanitizer/Makefile From owner-cvs-all@FreeBSD.ORG Sun Jul 30 22:46:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9010016A4DA; Sun, 30 Jul 2006 22:46:05 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44D6B43D45; Sun, 30 Jul 2006 22:46:05 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UMk5qP020643; Sun, 30 Jul 2006 22:46:05 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UMk56B020642; Sun, 30 Jul 2006 22:46:05 GMT (envelope-from sat) Message-Id: <200607302246.k6UMk56B020642@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sun, 30 Jul 2006 22:46: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/archivers/linux-unace Makefile ports/archivers/lzma Makefile ports/audio/bmp-mac Makefile ports/audio/bmp-modplug Makefile ports/audio/kexis Makefile ports/audio/laudio Makefile ports/audio/lpac Makefile ports/audio/optimfrog 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, 30 Jul 2006 22:46:05 -0000 sat 2006-07-30 22:46:04 UTC FreeBSD ports repository Modified files: archivers/linux-unace Makefile archivers/lzma Makefile audio/bmp-mac Makefile audio/bmp-modplug Makefile audio/kexis Makefile audio/laudio Makefile audio/lpac Makefile audio/optimfrog Makefile audio/p5-Audio-FLAC-Header Makefile audio/p5-Audio-Musepack Makefile audio/pacpl Makefile audio/xmms-crossfade Makefile audio/xmms-modplug Makefile converters/htx Makefile databases/p5-DBIx-SQLite-Simple Makefile deskutils/bitcollider Makefile deskutils/when Makefile devel/p5-Class-Std Makefile devel/p5-Config-Std Makefile devel/py-fusefs Makefile finance/xquote Makefile ftp/cmdftp Makefile games/dopewars Makefile games/freeciv Makefile graphics/dcraw Makefile graphics/synaesthesia Makefile misc/diary-hercules Makefile multimedia/libmpeg3 Makefile multimedia/p5-File-Format-RIFF Makefile multimedia/subtools Makefile net/p5-POE-Component-Client-Ident Makefile net/radvd Makefile net/spoofer Makefile net-im/cjc Makefile pkg-descr net-im/mcabber Makefile net-im/py-xmpppy Makefile net-im/py-xmpppy-irc Makefile security/parano Makefile security/secpanel Makefile sysutils/durep Makefile sysutils/fusefs-curlftpfs Makefile sysutils/unieject Makefile textproc/archmage Makefile textproc/p5-Text-Bastardize Makefile textproc/p5-Unicode-CheckUTF8 Makefile textproc/redet Makefile www/aria2 Makefile www/conkeror Makefile www/linux-seamonkey Makefile.common www/py-openssl-proxy Makefile www/xpi-greasemonkey Makefile www/xpi-joga Makefile www/xpi-mldonkey Makefile www/xpi-tabletools Makefile www/yabb Makefile x11/workrave Makefile x11-toolkits/otk Makefile Log: - Provide additional mirrors where needed - Convert to "magic" master sites - Various minor portlint-prodded fixes Revision Changes Path 1.13 +2 -2 ports/archivers/linux-unace/Makefile 1.7 +1 -1 ports/archivers/lzma/Makefile 1.3 +1 -1 ports/audio/bmp-mac/Makefile 1.6 +1 -1 ports/audio/bmp-modplug/Makefile 1.2 +1 -2 ports/audio/kexis/Makefile 1.3 +2 -3 ports/audio/laudio/Makefile 1.2 +1 -3 ports/audio/lpac/Makefile 1.3 +1 -3 ports/audio/optimfrog/Makefile 1.2 +1 -2 ports/audio/p5-Audio-FLAC-Header/Makefile 1.2 +1 -2 ports/audio/p5-Audio-Musepack/Makefile 1.2 +1 -2 ports/audio/pacpl/Makefile 1.31 +1 -4 ports/audio/xmms-crossfade/Makefile 1.6 +1 -1 ports/audio/xmms-modplug/Makefile 1.7 +1 -4 ports/converters/htx/Makefile 1.4 +1 -2 ports/databases/p5-DBIx-SQLite-Simple/Makefile 1.4 +1 -2 ports/deskutils/bitcollider/Makefile 1.5 +1 -3 ports/deskutils/when/Makefile 1.3 +1 -2 ports/devel/p5-Class-Std/Makefile 1.2 +1 -2 ports/devel/p5-Config-Std/Makefile 1.2 +2 -4 ports/devel/py-fusefs/Makefile 1.17 +1 -2 ports/finance/xquote/Makefile 1.11 +1 -2 ports/ftp/cmdftp/Makefile 1.34 +1 -2 ports/games/dopewars/Makefile 1.74 +1 -3 ports/games/freeciv/Makefile 1.18 +1 -4 ports/graphics/dcraw/Makefile 1.16 +1 -1 ports/graphics/synaesthesia/Makefile 1.3 +1 -2 ports/misc/diary-hercules/Makefile 1.8 +2 -2 ports/multimedia/libmpeg3/Makefile 1.2 +1 -2 ports/multimedia/p5-File-Format-RIFF/Makefile 1.4 +1 -2 ports/multimedia/subtools/Makefile 1.3 +1 -1 ports/net-im/cjc/Makefile 1.3 +1 -1 ports/net-im/cjc/pkg-descr 1.11 +1 -4 ports/net-im/mcabber/Makefile 1.3 +1 -1 ports/net-im/py-xmpppy-irc/Makefile 1.3 +1 -2 ports/net-im/py-xmpppy/Makefile 1.3 +1 -2 ports/net/p5-POE-Component-Client-Ident/Makefile 1.10 +1 -1 ports/net/radvd/Makefile 1.3 +1 -1 ports/net/spoofer/Makefile 1.7 +1 -5 ports/security/parano/Makefile 1.17 +1 -4 ports/security/secpanel/Makefile 1.14 +1 -2 ports/sysutils/durep/Makefile 1.4 +1 -2 ports/sysutils/fusefs-curlftpfs/Makefile 1.2 +1 -3 ports/sysutils/unieject/Makefile 1.9 +1 -2 ports/textproc/archmage/Makefile 1.2 +1 -2 ports/textproc/p5-Text-Bastardize/Makefile 1.2 +1 -2 ports/textproc/p5-Unicode-CheckUTF8/Makefile 1.15 +1 -3 ports/textproc/redet/Makefile 1.13 +1 -2 ports/www/aria2/Makefile 1.6 +1 -2 ports/www/conkeror/Makefile 1.4 +2 -2 ports/www/linux-seamonkey/Makefile.common 1.2 +1 -1 ports/www/py-openssl-proxy/Makefile 1.4 +1 -1 ports/www/xpi-greasemonkey/Makefile 1.5 +1 -1 ports/www/xpi-joga/Makefile 1.3 +2 -2 ports/www/xpi-mldonkey/Makefile 1.4 +1 -1 ports/www/xpi-tabletools/Makefile 1.6 +1 -2 ports/www/yabb/Makefile 1.5 +1 -2 ports/x11-toolkits/otk/Makefile 1.20 +1 -2 ports/x11/workrave/Makefile From owner-cvs-all@FreeBSD.ORG Sun Jul 30 23:25:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1C3A16A506; Sun, 30 Jul 2006 23:25:28 +0000 (UTC) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 38B1E43D7E; Sun, 30 Jul 2006 23:25:21 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UNPLB2023549; Sun, 30 Jul 2006 23:25:21 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UNPLvw023548; Sun, 30 Jul 2006 23:25:21 GMT (envelope-from wpaul) Message-Id: <200607302325.k6UNPLvw023548@repoman.freebsd.org> From: Bill Paul Date: Sun, 30 Jul 2006 23:25: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/sys/pci if_rlreg.h src/sys/dev/re if_re.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, 30 Jul 2006 23:25:28 -0000 wpaul 2006-07-30 23:25:21 UTC FreeBSD src repository Modified files: sys/pci if_rlreg.h sys/dev/re if_re.c Log: Fix the following bugs in re(4) - Correct the PCI ID for the 8169SC/8110SC in the device list (I added the macro for it to if_rlreg.h before, but forgot to use it.) - Remove the extra interrupt spinlock I added previously. After giving it some more thought, it's not really needed. - Work around a hardware bug in some versions of the 8169. When sending very small IP datagrams with checksum offload enabled, a conflict can occur between the TX autopadding feature and the hardware checksumming that can corrupt the outbound packet. This is the reason that checksum offload sometimes breaks NFS: if you're using NFS over UDP, and you're very unlucky, you might find yourself doing a fragmented NFS write where the last fragment is smaller than the minimum ethernet frame size (60 bytes). (It's rare, but if you keep NFS running long enough it'll happen.) If checksum offload is enabled, the chip will have to both autopad the fragment and calculate its checksum header. This confuses some revs of the 8169, causing the packet that appears on the wire to be corrupted. (The IP addresses and the checksum field are mangled.) This will cause the NFS write to fail. Unfortunately, when NFS retries, it sends the same write request over and over again, and it keeps failing, so NFS stays wedged. (A simple way to provoke the failure is to connect the failing system to a network with a known good machine and do "ping -s 1473 " from the good system. The ping will fail.) Someone had previously worked around this using the heavy-handed approahch of just disabling checksum offload. The correct fix is to manually pad short frames where the TCP/IP stack has requested checksum offloading. This allows us to have checksum offload turned on by default but still let NFS work right. - Not a bug, but change the ID strings for devices with hardware rev 0x30000000 and 0x38000000 to both be 8168B/8111B. According to RealTek, they're both the same device, but 0x30000000 is an earlier silicon spin. Revision Changes Path 1.70 +32 -21 src/sys/dev/re/if_re.c 1.59 +19 -19 src/sys/pci/if_rlreg.h From owner-cvs-all@FreeBSD.ORG Sun Jul 30 23:32:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 66C3E16A4DD; Sun, 30 Jul 2006 23:32:21 +0000 (UTC) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19F3A43D69; Sun, 30 Jul 2006 23:32:21 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6UNWK2q023996; Sun, 30 Jul 2006 23:32:20 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6UNWKON023995; Sun, 30 Jul 2006 23:32:20 GMT (envelope-from wpaul) Message-Id: <200607302332.k6UNWKON023995@repoman.freebsd.org> From: Bill Paul Date: Sun, 30 Jul 2006 23:32: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/sys/pci if_rlreg.h src/sys/dev/re if_re.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, 30 Jul 2006 23:32:21 -0000 wpaul 2006-07-30 23:32:20 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/pci if_rlreg.h sys/dev/re if_re.c Log: MFC: correct PCI ID for 8169SC/8110SC, remove spinlock, work around checksum offload bugs, correct device descriptions Revision Changes Path 1.46.2.17 +32 -21 src/sys/dev/re/if_re.c 1.51.2.6 +19 -19 src/sys/pci/if_rlreg.h From owner-cvs-all@FreeBSD.ORG Mon Jul 31 00:11:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C9B216A4E6; Mon, 31 Jul 2006 00:11:01 +0000 (UTC) (envelope-from tmclaugh@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A506443D53; Mon, 31 Jul 2006 00:11:00 +0000 (GMT) (envelope-from tmclaugh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V0B0Hr027287; Mon, 31 Jul 2006 00:11:00 GMT (envelope-from tmclaugh@repoman.freebsd.org) Received: (from tmclaugh@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V0B0b0027282; Mon, 31 Jul 2006 00:11:00 GMT (envelope-from tmclaugh) Message-Id: <200607310011.k6V0B0b0027282@repoman.freebsd.org> From: Tom McLaughlin Date: Mon, 31 Jul 2006 00:11: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-toolkits/libgdiplus 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, 31 Jul 2006 00:11:01 -0000 tmclaugh 2006-07-31 00:10:55 UTC FreeBSD ports repository Modified files: x11-toolkits/libgdiplus Makefile distinfo Log: Update to 1.1.13.6 Revision Changes Path 1.4 +1 -2 ports/x11-toolkits/libgdiplus/Makefile 1.2 +3 -3 ports/x11-toolkits/libgdiplus/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 00:16:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F60716A4DD; Mon, 31 Jul 2006 00:16:25 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CB3C43D45; Mon, 31 Jul 2006 00:16:25 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V0GPn8027567; Mon, 31 Jul 2006 00:16:25 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V0GPt7027566; Mon, 31 Jul 2006 00:16:25 GMT (envelope-from clsung) Message-Id: <200607310016.k6V0GPt7027566@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 31 Jul 2006 00:16: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/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: Mon, 31 Jul 2006 00:16:25 -0000 clsung 2006-07-31 00:16:25 UTC FreeBSD ports repository Modified files: net/p5-Net-Whois-Raw Makefile distinfo Log: - update to 1.10 Revision Changes Path 1.14 +1 -1 ports/net/p5-Net-Whois-Raw/Makefile 1.15 +3 -3 ports/net/p5-Net-Whois-Raw/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 00:18:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D567C16A4DD; Mon, 31 Jul 2006 00:18:38 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9103243D46; Mon, 31 Jul 2006 00:18:38 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V0IcXg027718; Mon, 31 Jul 2006 00:18:38 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V0IcR3027717; Mon, 31 Jul 2006 00:18:38 GMT (envelope-from clsung) Message-Id: <200607310018.k6V0IcR3027717@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 31 Jul 2006 00:18: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/dns/p5-Net-Domain-ExpireDate 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, 31 Jul 2006 00:18:38 -0000 clsung 2006-07-31 00:18:38 UTC FreeBSD ports repository Modified files: dns/p5-Net-Domain-ExpireDate Makefile distinfo Log: - update to 0.38 Revision Changes Path 1.5 +1 -1 ports/dns/p5-Net-Domain-ExpireDate/Makefile 1.6 +3 -3 ports/dns/p5-Net-Domain-ExpireDate/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 00:22:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2AE3216A4DF; Mon, 31 Jul 2006 00:22:39 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8108343D6E; Mon, 31 Jul 2006 00:22:36 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V0ManZ027997; Mon, 31 Jul 2006 00:22:36 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V0MaG8027996; Mon, 31 Jul 2006 00:22:36 GMT (envelope-from clsung) Message-Id: <200607310022.k6V0MaG8027996@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 31 Jul 2006 00:22: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/p5-Module-Signature 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, 31 Jul 2006 00:22:39 -0000 clsung 2006-07-31 00:22:36 UTC FreeBSD ports repository Modified files: security/p5-Module-Signature Makefile distinfo Log: - update to 0.55 Revision Changes Path 1.13 +1 -2 ports/security/p5-Module-Signature/Makefile 1.11 +3 -3 ports/security/p5-Module-Signature/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 00:25:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE43516A4DD; Mon, 31 Jul 2006 00:25:30 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D63043D45; Mon, 31 Jul 2006 00:25:30 +0000 (GMT) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V0PUZY028113; Mon, 31 Jul 2006 00:25:30 GMT (envelope-from lbr@repoman.freebsd.org) Received: (from lbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V0PUSr028112; Mon, 31 Jul 2006 00:25:30 GMT (envelope-from lbr) Message-Id: <200607310025.k6V0PUSr028112@repoman.freebsd.org> From: Lars Balker Rasmussen Date: Mon, 31 Jul 2006 00:25: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/devel/p5-Algorithm-C3 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, 31 Jul 2006 00:25:31 -0000 lbr 2006-07-31 00:25:30 UTC FreeBSD ports repository Modified files: devel/p5-Algorithm-C3 Makefile distinfo Log: Update to 0.02 Revision Changes Path 1.3 +1 -1 ports/devel/p5-Algorithm-C3/Makefile 1.2 +3 -3 ports/devel/p5-Algorithm-C3/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 01:27:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E678616A4DA; Mon, 31 Jul 2006 01:27:16 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1CC243D49; Mon, 31 Jul 2006 01:27:16 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V1RGHQ039757; Mon, 31 Jul 2006 01:27:16 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V1RGh2039756; Mon, 31 Jul 2006 01:27:16 GMT (envelope-from marcel) Message-Id: <200607310127.k6V1RGh2039756@repoman.freebsd.org> From: Marcel Moolenaar Date: Mon, 31 Jul 2006 01:27: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/release/doc/en_US.ISO8859-1/hardware/ia64 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, 31 Jul 2006 01:27:17 -0000 marcel 2006-07-31 01:27:16 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/hardware/ia64 Makefile Log: Add proc-ia64.sgml to SRCS (uncomment). Revision Changes Path 1.4 +1 -1 src/release/doc/en_US.ISO8859-1/hardware/ia64/Makefile From owner-cvs-all@FreeBSD.ORG Mon Jul 31 01:32:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64E5016A4E2; Mon, 31 Jul 2006 01:32:31 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A231243D46; Mon, 31 Jul 2006 01:32:30 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V1WUN4040265; Mon, 31 Jul 2006 01:32:30 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V1WUbx040264; Mon, 31 Jul 2006 01:32:30 GMT (envelope-from marcel) Message-Id: <200607310132.k6V1WUbx040264@repoman.freebsd.org> From: Marcel Moolenaar Date: Mon, 31 Jul 2006 01:32: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/release/doc/en_US.ISO8859-1/hardware Makefile src/release/doc/en_US.ISO8859-1/hardware/common hw.ent src/release/doc/en_US.ISO8859-1/hardware/powerpc Makefile article.sgml proc-powerpc.sgml src/release/doc/en_US.ISO8859-1/installation Makefile src/release/doc/en_US.ISO8859-1/installation/powerpc 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, 31 Jul 2006 01:32:31 -0000 marcel 2006-07-31 01:32:30 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/hardware Makefile release/doc/en_US.ISO8859-1/hardware/common hw.ent release/doc/en_US.ISO8859-1/installation Makefile release/doc/en_US.ISO8859-1/relnotes Makefile release/doc/share/examples Makefile.relnotesng Added files: release/doc/en_US.ISO8859-1/hardware/powerpc Makefile article.sgml proc-powerpc.sgml release/doc/en_US.ISO8859-1/installation/powerpc Makefile article.sgml release/doc/en_US.ISO8859-1/relnotes/powerpc Makefile article.sgml Log: Add the bones for PowerPC release documentation. This has been derived from ia64. Revision Changes Path 1.8 +1 -0 src/release/doc/en_US.ISO8859-1/hardware/Makefile 1.6 +1 -0 src/release/doc/en_US.ISO8859-1/hardware/common/hw.ent 1.1 +22 -0 src/release/doc/en_US.ISO8859-1/hardware/powerpc/Makefile (new) 1.1 +31 -0 src/release/doc/en_US.ISO8859-1/hardware/powerpc/article.sgml (new) 1.1 +9 -0 src/release/doc/en_US.ISO8859-1/hardware/powerpc/proc-powerpc.sgml (new) 1.8 +1 -0 src/release/doc/en_US.ISO8859-1/installation/Makefile 1.1 +20 -0 src/release/doc/en_US.ISO8859-1/installation/powerpc/Makefile (new) 1.1 +26 -0 src/release/doc/en_US.ISO8859-1/installation/powerpc/article.sgml (new) 1.8 +1 -0 src/release/doc/en_US.ISO8859-1/relnotes/Makefile 1.1 +18 -0 src/release/doc/en_US.ISO8859-1/relnotes/powerpc/Makefile (new) 1.1 +21 -0 src/release/doc/en_US.ISO8859-1/relnotes/powerpc/article.sgml (new) 1.13 +1 -1 src/release/doc/share/examples/Makefile.relnotesng From owner-cvs-all@FreeBSD.ORG Mon Jul 31 01:36:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F9C516A4DF; Mon, 31 Jul 2006 01:36:38 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D48243D4C; Mon, 31 Jul 2006 01:36:38 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V1acfM040485; Mon, 31 Jul 2006 01:36:38 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V1achx040484; Mon, 31 Jul 2006 01:36:38 GMT (envelope-from maho) Message-Id: <200607310136.k6V1achx040484@repoman.freebsd.org> From: Maho Nakata Date: Mon, 31 Jul 2006 01:36: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/editors/openoffice.org-2.0/files patch-i65512 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Jul 2006 01:36:38 -0000 maho 2006-07-31 01:36:37 UTC FreeBSD ports repository Modified files: editors/openoffice.org-2.0/files patch-i65512 Log: Fix build for 6.1-STABLE Revision Changes Path 1.4 +4 -4 ports/editors/openoffice.org-2.0/files/patch-i65512 From owner-cvs-all@FreeBSD.ORG Mon Jul 31 02:44:20 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CA8816A4E2 for ; Mon, 31 Jul 2006 02:44:20 +0000 (UTC) (envelope-from pyunyh@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 08D9943DA1 for ; Mon, 31 Jul 2006 02:43:27 +0000 (GMT) (envelope-from pyunyh@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so119876nzn for ; Sun, 30 Jul 2006 19:43:27 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:from:to:cc:subject:message-id:reply-to:references:mime-version:content-type:content-disposition:in-reply-to:user-agent; b=FSBOc/weoQxAd8bI64UWO/ys6M4FeoAmEkVniygsO2CZmLjqtb3KhnomNqv5DARZbPFA290PW2MbEBwPjog2xbXEGlD86Yh1XwM4lYPRRHT7HgFjYekYv96v7tFMspvgHJY9Yj1Zo8FCXNq8YsnbjF/1DskNHv0tKIEo6p8Jkek= Received: by 10.65.119.14 with SMTP id w14mr2693582qbm; Sun, 30 Jul 2006 19:43:27 -0700 (PDT) Received: from michelle.cdnetworks.co.kr ( [211.53.35.84]) by mx.gmail.com with ESMTP id 15sm4318243nzp.2006.07.30.19.43.23; Sun, 30 Jul 2006 19:43:26 -0700 (PDT) Received: from michelle.cdnetworks.co.kr (localhost.cdnetworks.co.kr [127.0.0.1]) by michelle.cdnetworks.co.kr (8.13.5/8.13.5) with ESMTP id k6V2hu6o036121 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 31 Jul 2006 11:43:56 +0900 (KST) (envelope-from pyunyh@gmail.com) Received: (from yongari@localhost) by michelle.cdnetworks.co.kr (8.13.5/8.13.5/Submit) id k6V2hsvU036120; Mon, 31 Jul 2006 11:43:54 +0900 (KST) (envelope-from pyunyh@gmail.com) Date: Mon, 31 Jul 2006 11:43:54 +0900 From: Pyun YongHyeon To: Yar Tikhiy Message-ID: <20060731024354.GA35573@cdnetworks.co.kr> References: <200607270043.k6R0hY8g088353@repoman.freebsd.org> <20060729205009.GA37970@freefall.freebsd.org> <20060730064807.GA32731@cdnetworks.co.kr> <20060730095054.GA36267@comp.chem.msu.su> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060730095054.GA36267@comp.chem.msu.su> User-Agent: Mutt/1.4.2.1i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, Pyun YongHyeon Subject: Re: cvs commit: src/sys/dev/em if_em.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pyunyh@gmail.com List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Jul 2006 02:44:20 -0000 On Sun, Jul 30, 2006 at 01:50:55PM +0400, Yar Tikhiy wrote: > On Sun, Jul 30, 2006 at 03:48:07PM +0900, Pyun YongHyeon wrote: > > On Sat, Jul 29, 2006 at 08:50:09PM +0000, Yar Tikhiy wrote: > > > On Thu, Jul 27, 2006 at 12:43:34AM +0000, Pyun YongHyeon wrote: > > > > yongari 2006-07-27 00:43:34 UTC > > > > > > > > FreeBSD src repository > > > > > > > > Modified files: > > > > sys/dev/em if_em.c > > > > Log: > > > > Prepending an mbuf after loading a DMA map results in unexpected > > > > result. So, modify mbuf chains before loading a DMA map. > > > > > > > > Revision Changes Path > > > > 1.122 +28 -31 src/sys/dev/em/if_em.c > > > > > > Thanks a lot! Do you think this can fix kern/72933? > > > > > > > I can't sure it helps as the submitter reported the same issue > > on bge(4). > > Sorry, my question wasn't accurate. I believe that the original > PR in fact described a different issue with similar symptoms; it > was fixed quite a while ago. Then Lev Shamardin posted a follow-up > that he was still seeing the symptoms with em(4), which we (Gleb > Smirnoff and yours truly) couldn't fully understand because we were > missing the peculiarities of the interaction between DMA and mbufs > you're so well aware of. > > > Btw, I think the VLAN fixup code should use m_prepend(9) > > insatead of M_PREEND(9) because we don't know whether a new mbuf > > is allocated or not after M_PREPEND(9) call. > > If a new mbuf should be allocated to satisfy DMA, m_prepend(9) is No, prepending a new mbuf with m_prepend(9) is not necessary for DMA to work. > the function to use. M_PREPEND(9) can use the free space at the > beginning of the mbuf's data area if there is enough of it. I'm > unsure though whether we really need a new mbuf there. em_encap() > gets just a mbuf chain, which can be tweaked a little before starting > the DMA magic on it. > Sorry, I'm confused. I've misread VLAN fixup code. From my limited testing, it seems that it works as expected. Previously em(4) may have failed VLAN tag insertion if M_PREPEND(9) added a new mbuf into existing mbuf chains. > -- > Yar -- Regards, Pyun YongHyeon From owner-cvs-all@FreeBSD.ORG Mon Jul 31 02:47:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 958D616A4DF; Mon, 31 Jul 2006 02:47:27 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DCC343D58; Mon, 31 Jul 2006 02:47:27 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V2lQvp049136; Mon, 31 Jul 2006 02:47:26 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V2lQS2049135; Mon, 31 Jul 2006 02:47:26 GMT (envelope-from clsung) Message-Id: <200607310247.k6V2lQS2049135@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 31 Jul 2006 02:47: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/libleaftag 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, 31 Jul 2006 02:47:27 -0000 clsung 2006-07-31 02:47:26 UTC FreeBSD ports repository Modified files: devel/libleaftag Makefile distinfo pkg-plist Log: - Update to 0.3.1 PR: ports/100589 Submitted by: Alexander Botero-Lowry Approved by: maintainer (Khairil Yusof) Revision Changes Path 1.2 +2 -1 ports/devel/libleaftag/Makefile 1.2 +3 -3 ports/devel/libleaftag/distinfo 1.2 +17 -0 ports/devel/libleaftag/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Jul 31 02:52:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D94A416A4DA; Mon, 31 Jul 2006 02:52:50 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5886E43D62; Mon, 31 Jul 2006 02:52:50 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V2qo2f049419; Mon, 31 Jul 2006 02:52:50 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V2qo7C049418; Mon, 31 Jul 2006 02:52:50 GMT (envelope-from clsung) Message-Id: <200607310252.k6V2qo7C049418@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 31 Jul 2006 02: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/japanese/mecab Makefile distinfo 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: Mon, 31 Jul 2006 02:52:51 -0000 clsung 2006-07-31 02:52:50 UTC FreeBSD ports repository Modified files: japanese/mecab Makefile distinfo pkg-message pkg-plist Log: - Update to 0.93 - Add WITH_CHARSET knob to set default charset - Install mecabrc as mecab.dist and preserve modified mecabrc PR: ports/101068 Submitted by: TAOKA Fumiyoshi Revision Changes Path 1.19 +18 -6 ports/japanese/mecab/Makefile 1.10 +3 -3 ports/japanese/mecab/distinfo 1.2 +0 -1 ports/japanese/mecab/pkg-message 1.6 +7 -5 ports/japanese/mecab/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Jul 31 02:58:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D0E416A4DD; Mon, 31 Jul 2006 02:58:47 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE1AA43D55; Mon, 31 Jul 2006 02:58:45 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V2wjLN049744; Mon, 31 Jul 2006 02:58:45 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V2wjl2049743; Mon, 31 Jul 2006 02:58:45 GMT (envelope-from clsung) Message-Id: <200607310258.k6V2wjl2049743@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 31 Jul 2006 02:58: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/devel/p5-version Makefile distinfo ports/devel/p5-version/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: Mon, 31 Jul 2006 02:58:47 -0000 clsung 2006-07-31 02:58:45 UTC FreeBSD ports repository Modified files: devel/p5-version Makefile distinfo Removed files: devel/p5-version/files patch-Makefile.PL Log: - update to 0.662 Revision Changes Path 1.20 +2 -2 ports/devel/p5-version/Makefile 1.21 +3 -3 ports/devel/p5-version/distinfo 1.2 +0 -11 ports/devel/p5-version/files/patch-Makefile.PL (dead) From owner-cvs-all@FreeBSD.ORG Mon Jul 31 03:04:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 94D5B16A4DE; Mon, 31 Jul 2006 03:04:36 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0AFB43D6B; Mon, 31 Jul 2006 03:04:33 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V34XDh051467; Mon, 31 Jul 2006 03:04:33 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V34XHa051466; Mon, 31 Jul 2006 03:04:33 GMT (envelope-from clsung) Message-Id: <200607310304.k6V34XHa051466@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 31 Jul 2006 03:04: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/net Makefile ports/net/p5-POE-Component-Client-Telnet 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, 31 Jul 2006 03:04:36 -0000 clsung 2006-07-31 03:04:32 UTC FreeBSD ports repository Modified files: net Makefile Added files: net/p5-POE-Component-Client-Telnet Makefile distinfo pkg-descr pkg-plist Log: Add p5-POE-Component-Client-Telnet 0.06, a POE component that provides non-blocking access to Net::Telnet. PR: ports/101072 Submitted by: Jin-Shan Tseng Revision Changes Path 1.1706 +1 -0 ports/net/Makefile 1.1 +33 -0 ports/net/p5-POE-Component-Client-Telnet/Makefile (new) 1.1 +3 -0 ports/net/p5-POE-Component-Client-Telnet/distinfo (new) 1.1 +7 -0 ports/net/p5-POE-Component-Client-Telnet/pkg-descr (new) 1.1 +10 -0 ports/net/p5-POE-Component-Client-Telnet/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Jul 31 03:04:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AAC0316A5AE; Mon, 31 Jul 2006 03:04:46 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6584A43D78; Mon, 31 Jul 2006 03:04:46 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V34k2B051505; Mon, 31 Jul 2006 03:04:46 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V34kUN051504; Mon, 31 Jul 2006 03:04:46 GMT (envelope-from clsung) Message-Id: <200607310304.k6V34kUN051504@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 31 Jul 2006 03:04: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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Jul 2006 03:04:46 -0000 clsung 2006-07-31 03:04:46 UTC FreeBSD ports repository Modified files: . modules Log: p5-POE-Component-Client-Telnet --> ports/net/p5-POE-Component-Client-Telnet Revision Changes Path 1.15815 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Jul 31 03:23:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C9C616A4DA; Mon, 31 Jul 2006 03:23:22 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 682C143D62; Mon, 31 Jul 2006 03:23:19 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V3NJ2Y052533; Mon, 31 Jul 2006 03:23:19 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V3NJtX052532; Mon, 31 Jul 2006 03:23:19 GMT (envelope-from clsung) Message-Id: <200607310323.k6V3NJtX052532@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 31 Jul 2006 03:23: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/japanese Makefile ports/japanese/p5-Text-MeCab 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, 31 Jul 2006 03:23:22 -0000 clsung 2006-07-31 03:23:19 UTC FreeBSD ports repository Modified files: japanese Makefile Added files: japanese/p5-Text-MeCab Makefile distinfo pkg-descr pkg-plist Log: Add p5-Text-MeCab 0.12, alternate Interface To libmecab. PR: ports/101039 Submitted by: TAOKA Fumiyoshi Revision Changes Path 1.630 +1 -0 ports/japanese/Makefile 1.1 +32 -0 ports/japanese/p5-Text-MeCab/Makefile (new) 1.1 +3 -0 ports/japanese/p5-Text-MeCab/distinfo (new) 1.1 +10 -0 ports/japanese/p5-Text-MeCab/pkg-descr (new) 1.1 +10 -0 ports/japanese/p5-Text-MeCab/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Jul 31 03:23:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 223BE16A5C1; Mon, 31 Jul 2006 03:23:35 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0ECA43D45; Mon, 31 Jul 2006 03:23:34 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V3NY9G052571; Mon, 31 Jul 2006 03:23:34 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V3NYgN052570; Mon, 31 Jul 2006 03:23:34 GMT (envelope-from clsung) Message-Id: <200607310323.k6V3NYgN052570@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 31 Jul 2006 03:23: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, 31 Jul 2006 03:23:35 -0000 clsung 2006-07-31 03:23:34 UTC FreeBSD ports repository Modified files: . modules Log: ja-p5-Text-MeCab --> ports/japanese/p5-Text-MeCab Revision Changes Path 1.15816 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Jul 31 03:41:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BDA2A16A4DA; Mon, 31 Jul 2006 03:41:49 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75A8E43D46; Mon, 31 Jul 2006 03:41:49 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V3fnNn053587; Mon, 31 Jul 2006 03:41:49 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V3fnab053586; Mon, 31 Jul 2006 03:41:49 GMT (envelope-from clsung) Message-Id: <200607310341.k6V3fnab053586@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 31 Jul 2006 03:41: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 Makefile ports/net/p5-Net-VNC 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, 31 Jul 2006 03:41:49 -0000 clsung 2006-07-31 03:41:49 UTC FreeBSD ports repository Modified files: net Makefile Added files: net/p5-Net-VNC Makefile distinfo pkg-descr pkg-plist Log: Add p5-Net-VNC 0.35, a simple VNC client. PR: ports/100998 Submitted by: Gea-Suan Lin Revision Changes Path 1.1707 +1 -0 ports/net/Makefile 1.1 +28 -0 ports/net/p5-Net-VNC/Makefile (new) 1.1 +3 -0 ports/net/p5-Net-VNC/distinfo (new) 1.1 +15 -0 ports/net/p5-Net-VNC/pkg-descr (new) 1.1 +7 -0 ports/net/p5-Net-VNC/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Jul 31 03:42:02 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C91F16A4DE; Mon, 31 Jul 2006 03:42:02 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0789043D46; Mon, 31 Jul 2006 03:42:02 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V3g1e1053630; Mon, 31 Jul 2006 03:42:01 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V3g1rI053629; Mon, 31 Jul 2006 03:42:01 GMT (envelope-from clsung) Message-Id: <200607310342.k6V3g1rI053629@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 31 Jul 2006 03:42: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: Mon, 31 Jul 2006 03:42:02 -0000 clsung 2006-07-31 03:42:01 UTC FreeBSD ports repository Modified files: . modules Log: p5-Net-VNC --> ports/net/p5-Net-VNC Revision Changes Path 1.15817 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Jul 31 03:45:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53EA416A4DF; Mon, 31 Jul 2006 03:45:50 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B9A443D46; Mon, 31 Jul 2006 03:45:49 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V3jnjF053803; Mon, 31 Jul 2006 03:45:49 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V3jnkU053802; Mon, 31 Jul 2006 03:45:49 GMT (envelope-from marcus) Message-Id: <200607310345.k6V3jnkU053802@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 31 Jul 2006 03:45: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/editors/gedit 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, 31 Jul 2006 03:45:50 -0000 marcus 2006-07-31 03:45:49 UTC FreeBSD ports repository Modified files: editors/gedit Makefile distinfo Log: Update to 2.14.4. Revision Changes Path 1.58 +1 -1 ports/editors/gedit/Makefile 1.27 +3 -3 ports/editors/gedit/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 03:51:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2EB5716A4DA; Mon, 31 Jul 2006 03:51:36 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD70A43D49; Mon, 31 Jul 2006 03:51:35 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V3pZCu054155; Mon, 31 Jul 2006 03:51:35 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V3pZpE054154; Mon, 31 Jul 2006 03:51:35 GMT (envelope-from clsung) Message-Id: <200607310351.k6V3pZpE054154@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 31 Jul 2006 03:51: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-Net-eBay 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, 31 Jul 2006 03:51:36 -0000 clsung 2006-07-31 03:51:35 UTC FreeBSD ports repository Modified files: www/p5-Net-eBay Makefile distinfo Log: - update to 0.35 PR: ports/101069 Submitted by: maintainer (Alexander Zhuravlev) Revision Changes Path 1.2 +1 -1 ports/www/p5-Net-eBay/Makefile 1.2 +3 -3 ports/www/p5-Net-eBay/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 03:51:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E607516A582; Mon, 31 Jul 2006 03:51:48 +0000 (UTC) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A128C43D46; Mon, 31 Jul 2006 03:51:48 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V3pmuC054190; Mon, 31 Jul 2006 03:51:48 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V3pmEU054189; Mon, 31 Jul 2006 03:51:48 GMT (envelope-from mnag) Message-Id: <200607310351.k6V3pmEU054189@repoman.freebsd.org> From: Marcus Alves Grando Date: Mon, 31 Jul 2006 03:51: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/mail/postfix 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, 31 Jul 2006 03:51:49 -0000 mnag 2006-07-31 03:51:48 UTC FreeBSD ports repository Modified files: mail/postfix Makefile distinfo Log: - Update to 2.3.2 - Update VDA patch to 2.3.1 Revision Changes Path 1.115 +2 -2 ports/mail/postfix/Makefile 1.78 +6 -6 ports/mail/postfix/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 04:04:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37BDC16A4E2; Mon, 31 Jul 2006 04:04:03 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E40B643D53; Mon, 31 Jul 2006 04:04:02 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V442LZ056010; Mon, 31 Jul 2006 04:04:02 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V442Sx056009; Mon, 31 Jul 2006 04:04:02 GMT (envelope-from marcus) Message-Id: <200607310404.k6V442Sx056009@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 31 Jul 2006 04:04: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/www/epiphany 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, 31 Jul 2006 04:04:03 -0000 marcus 2006-07-31 04:04:02 UTC FreeBSD ports repository Modified files: www/epiphany Makefile distinfo pkg-plist Log: Update to 2.14.3. Revision Changes Path 1.98 +1 -1 ports/www/epiphany/Makefile 1.51 +3 -3 ports/www/epiphany/distinfo 1.42 +9 -0 ports/www/epiphany/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Jul 31 04:48:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8919F16A4DD; Mon, 31 Jul 2006 04:48:10 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE23443D5C; Mon, 31 Jul 2006 04:48:09 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V4m96I070578; Mon, 31 Jul 2006 04:48:09 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V4m9p6070577; Mon, 31 Jul 2006 04:48:09 GMT (envelope-from clsung) Message-Id: <200607310448.k6V4m9p6070577@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 31 Jul 2006 04:48: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/www/p5-WWW-Search 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, 31 Jul 2006 04:48:10 -0000 clsung 2006-07-31 04:48:09 UTC FreeBSD ports repository Modified files: www/p5-WWW-Search Makefile distinfo Log: - update to 2.489 Revision Changes Path 1.47 +1 -1 ports/www/p5-WWW-Search/Makefile 1.29 +3 -3 ports/www/p5-WWW-Search/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 04:57:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E98C416A4DA; Mon, 31 Jul 2006 04:57:46 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A430243D49; Mon, 31 Jul 2006 04:57:46 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V4vkaB071024; Mon, 31 Jul 2006 04:57:46 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V4vkbE071023; Mon, 31 Jul 2006 04:57:46 GMT (envelope-from kientzle) Message-Id: <200607310457.k6V4vkbE071023@repoman.freebsd.org> From: Tim Kientzle Date: Mon, 31 Jul 2006 04:57: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/usr.bin/tar 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: Mon, 31 Jul 2006 04:57:47 -0000 kientzle 2006-07-31 04:57:46 UTC FreeBSD src repository Modified files: usr.bin/tar write.c Log: Remove two unused variables. Thanks to: Stefan Farfeleder Revision Changes Path 1.47 +0 -6 src/usr.bin/tar/write.c From owner-cvs-all@FreeBSD.ORG Mon Jul 31 05:30:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CFA516A4DA; Mon, 31 Jul 2006 05:30:43 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BACCC43D49; Mon, 31 Jul 2006 05:30:42 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V5Ug2q074970; Mon, 31 Jul 2006 05:30:42 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V5Ugwt074969; Mon, 31 Jul 2006 05:30:42 GMT (envelope-from marcus) Message-Id: <200607310530.k6V5Ugwt074969@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 31 Jul 2006 05:30: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/games/gnome-games 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, 31 Jul 2006 05:30:43 -0000 marcus 2006-07-31 05:30:42 UTC FreeBSD ports repository Modified files: games/gnome-games Makefile distinfo Log: Update to 2.14.3. Revision Changes Path 1.102 +2 -2 ports/games/gnome-games/Makefile 1.48 +3 -3 ports/games/gnome-games/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 05:31:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9EE4416A4E0; Mon, 31 Jul 2006 05:31:41 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5747843D45; Mon, 31 Jul 2006 05:31:41 +0000 (GMT) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V5Vf59075088; Mon, 31 Jul 2006 05:31:41 GMT (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V5VfmA075087; Mon, 31 Jul 2006 05:31:41 GMT (envelope-from gerald) Message-Id: <200607310531.k6V5VfmA075087@repoman.freebsd.org> From: Gerald Pfeifer Date: Mon, 31 Jul 2006 05: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/lang/gcc41 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, 31 Jul 2006 05:31:41 -0000 gerald 2006-07-31 05:31:41 UTC FreeBSD ports repository Modified files: lang/gcc41 Makefile distinfo Log: Update to the 20060728 snapshot of GCC 4.1.2. Revision Changes Path 1.281 +1 -1 ports/lang/gcc41/Makefile 1.166 +18 -18 ports/lang/gcc41/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 05:35:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4556716A4DF; Mon, 31 Jul 2006 05:35:04 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5B3043D49; Mon, 31 Jul 2006 05:35:03 +0000 (GMT) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V5Z3HB075493; Mon, 31 Jul 2006 05:35:03 GMT (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V5Z31c075492; Mon, 31 Jul 2006 05:35:03 GMT (envelope-from gerald) Message-Id: <200607310535.k6V5Z31c075492@repoman.freebsd.org> From: Gerald Pfeifer Date: Mon, 31 Jul 2006 05:35: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/lang/gcc42 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, 31 Jul 2006 05:35:04 -0000 gerald 2006-07-31 05:35:03 UTC FreeBSD ports repository Modified files: lang/gcc42 Makefile distinfo Log: Update to the 20060729 snapshot of GCC 4.2.0. Revision Changes Path 1.276 +1 -1 ports/lang/gcc42/Makefile 1.167 +18 -18 ports/lang/gcc42/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 06:00:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8009B16A4E1; Mon, 31 Jul 2006 06:00:33 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36F3D43D46; Mon, 31 Jul 2006 06:00:33 +0000 (GMT) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V60Xc9078130; Mon, 31 Jul 2006 06:00:33 GMT (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V60Wql078129; Mon, 31 Jul 2006 06:00:32 GMT (envelope-from gerald) Message-Id: <200607310600.k6V60Wql078129@repoman.freebsd.org> From: Gerald Pfeifer Date: Mon, 31 Jul 2006 06:00: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/emulators/wine 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, 31 Jul 2006 06:00:33 -0000 gerald 2006-07-31 06:00:32 UTC FreeBSD ports repository Modified files: emulators/wine Makefile distinfo pkg-plist Log: Update to Wine 0.9.18. This includes the following changes: - Still more work on Direct3D. - A lot of MSI bug fixes and improvements. - More compatible memory management. - Several fixes for Win64 support. - Some performance improvements. Revision Changes Path 1.214 +1 -1 ports/emulators/wine/Makefile 1.119 +3 -3 ports/emulators/wine/distinfo 1.97 +9 -2 ports/emulators/wine/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Jul 31 06:05:24 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D03ED16A4DE; Mon, 31 Jul 2006 06:05:24 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 88A2743D45; Mon, 31 Jul 2006 06:05:24 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V65OEZ079612; Mon, 31 Jul 2006 06:05:24 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V65OvR079611; Mon, 31 Jul 2006 06:05:24 GMT (envelope-from edwin) Message-Id: <200607310605.k6V65OvR079611@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Jul 2006 06:05: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/vtiger 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, 31 Jul 2006 06:05:24 -0000 edwin 2006-07-31 06:05:24 UTC FreeBSD ports repository Modified files: www/vtiger Makefile distinfo pkg-plist Log: update to version 4.2.4 Revision Changes Path 1.7 +4 -9 ports/www/vtiger/Makefile 1.5 +3 -6 ports/www/vtiger/distinfo 1.4 +3061 -616 ports/www/vtiger/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Jul 31 06:24:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76B0D16A4DA; Mon, 31 Jul 2006 06:24:32 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D26143D49; Mon, 31 Jul 2006 06:24:32 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V6OWlo080456; Mon, 31 Jul 2006 06:24:32 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V6OVXX080455; Mon, 31 Jul 2006 06:24:31 GMT (envelope-from edwin) Message-Id: <200607310624.k6V6OVXX080455@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Jul 2006 06:24: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/vtiger Makefile pkg-message ports/www/vtiger/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, 31 Jul 2006 06:24:32 -0000 edwin 2006-07-31 06:24:31 UTC FreeBSD ports repository Modified files: www/vtiger Makefile Added files: www/vtiger/files pkg-message.in Removed files: www/vtiger pkg-message Log: Make use of SUB_FILES Revision Changes Path 1.8 +3 -2 ports/www/vtiger/Makefile 1.1 +18 -0 ports/www/vtiger/files/pkg-message.in (new) 1.2 +0 -18 ports/www/vtiger/pkg-message (dead) From owner-cvs-all@FreeBSD.ORG Mon Jul 31 06:36:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A69F816A4DA; Mon, 31 Jul 2006 06:36:11 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F14F43D46; Mon, 31 Jul 2006 06:36:11 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V6aBf6081046; Mon, 31 Jul 2006 06:36:11 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V6aBXp081045; Mon, 31 Jul 2006 06:36:11 GMT (envelope-from sat) Message-Id: <200607310636.k6V6aBXp081045@repoman.freebsd.org> From: Andrew Pantyukhin Date: Mon, 31 Jul 2006 06:36: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/linux-flock 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, 31 Jul 2006 06:36:11 -0000 sat 2006-07-31 06:36:11 UTC FreeBSD ports repository Modified files: www/linux-flock Makefile distinfo Log: - Update to 0.7.4 Revision Changes Path 1.8 +2 -3 ports/www/linux-flock/Makefile 1.6 +3 -3 ports/www/linux-flock/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 07:14:08 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6AEDD16A4DD; Mon, 31 Jul 2006 07:14:08 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2243843D45; Mon, 31 Jul 2006 07:14:08 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V7E7uh084208; Mon, 31 Jul 2006 07:14:07 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V7E7hq084207; Mon, 31 Jul 2006 07:14:07 GMT (envelope-from clsung) Message-Id: <200607310714.k6V7E7hq084207@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 31 Jul 2006 07:14: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/devel/p5-Module-Build 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, 31 Jul 2006 07:14:08 -0000 clsung 2006-07-31 07:14:07 UTC FreeBSD ports repository Modified files: devel/p5-Module-Build Makefile distinfo Log: - update to 0.2805 - remove p5-version dependency Revision Changes Path 1.41 +1 -3 ports/devel/p5-Module-Build/Makefile 1.33 +3 -3 ports/devel/p5-Module-Build/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 07:17:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F36B616A4DD; Mon, 31 Jul 2006 07:17:35 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB88943D45; Mon, 31 Jul 2006 07:17:35 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V7HZRQ084371; Mon, 31 Jul 2006 07:17:35 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V7HZoN084370; Mon, 31 Jul 2006 07:17:35 GMT (envelope-from marcus) Message-Id: <200607310717.k6V7HZoN084370@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 31 Jul 2006 07:17: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/x11/yelp 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, 31 Jul 2006 07:17:36 -0000 marcus 2006-07-31 07:17:35 UTC FreeBSD ports repository Modified files: x11/yelp Makefile distinfo Log: Update to 2.14.3. Revision Changes Path 1.51 +1 -1 ports/x11/yelp/Makefile 1.32 +3 -3 ports/x11/yelp/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 07:41:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C957A16A4DA; Mon, 31 Jul 2006 07:41:04 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 805E543D45; Mon, 31 Jul 2006 07:41:04 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V7f4mW085569; Mon, 31 Jul 2006 07:41:04 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V7f47C085568; Mon, 31 Jul 2006 07:41:04 GMT (envelope-from erwin) Message-Id: <200607310741.k6V7f47C085568@repoman.freebsd.org> From: Erwin Lansing Date: Mon, 31 Jul 2006 07:41: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/security/amavisd-new Makefile ports/security/amavisd-new/files patch-amavisd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Jul 2006 07:41:04 -0000 erwin 2006-07-31 07:41:04 UTC FreeBSD ports repository Modified files: security/amavisd-new Makefile security/amavisd-new/files patch-amavisd Log: - Fix a bug when using LMTP transfer - Make some archiver support optionally PR: 101071 Submitted by: gabor (maintainer) Revision Changes Path 1.39 +42 -8 ports/security/amavisd-new/Makefile 1.11 +32 -3 ports/security/amavisd-new/files/patch-amavisd From owner-cvs-all@FreeBSD.ORG Mon Jul 31 07:51:09 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CE3D16A4E1; Mon, 31 Jul 2006 07:51:09 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32D5A43D7D; Mon, 31 Jul 2006 07:51:09 +0000 (GMT) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V7p9aj086015; Mon, 31 Jul 2006 07:51:09 GMT (envelope-from lbr@repoman.freebsd.org) Received: (from lbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V7p9qJ086014; Mon, 31 Jul 2006 07:51:09 GMT (envelope-from lbr) Message-Id: <200607310751.k6V7p9qJ086014@repoman.freebsd.org> From: Lars Balker Rasmussen Date: Mon, 31 Jul 2006 07:51: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/p5-Algorithm-C3 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, 31 Jul 2006 07:51:09 -0000 lbr 2006-07-31 07:51:08 UTC FreeBSD ports repository Modified files: devel/p5-Algorithm-C3 Makefile Log: No depends not already in base. Revision Changes Path 1.4 +0 -3 ports/devel/p5-Algorithm-C3/Makefile From owner-cvs-all@FreeBSD.ORG Mon Jul 31 08:03:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A88316A4DD; Mon, 31 Jul 2006 08:03:35 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0786D43D5E; Mon, 31 Jul 2006 08:03:35 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V83YXm087804; Mon, 31 Jul 2006 08:03:34 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V83Yat087803; Mon, 31 Jul 2006 08:03:34 GMT (envelope-from sat) Message-Id: <200607310803.k6V83Yat087803@repoman.freebsd.org> From: Andrew Pantyukhin Date: Mon, 31 Jul 2006 08:03: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/www/xpi-statusbarclock/files chrome.manifest X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Jul 2006 08:03:35 -0000 sat 2006-07-31 08:03:34 UTC FreeBSD ports repository Added files: www/xpi-statusbarclock/files chrome.manifest Log: - Add forgotten file Pointy hat to: sat Reported by: Simon Olofsson Revision Changes Path 1.1 +7 -0 ports/www/xpi-statusbarclock/files/chrome.manifest (new) From owner-cvs-all@FreeBSD.ORG Mon Jul 31 08:10:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8293F16A4DF; Mon, 31 Jul 2006 08:10:40 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10DD343D45; Mon, 31 Jul 2006 08:10:40 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V8Adnf088187; Mon, 31 Jul 2006 08:10:39 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V8Adll088186; Mon, 31 Jul 2006 08:10:39 GMT (envelope-from sat) Message-Id: <200607310810.k6V8Adll088186@repoman.freebsd.org> From: Andrew Pantyukhin Date: Mon, 31 Jul 2006 08:10: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/www/xpi-colorfultabs Makefile ports/www/xpi-mousegestures Makefile ports/www/xpi-tabmixplus 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, 31 Jul 2006 08:10:40 -0000 sat 2006-07-31 08:10:39 UTC FreeBSD ports repository Modified files: www/xpi-colorfultabs Makefile www/xpi-mousegestures Makefile www/xpi-tabmixplus Makefile Log: - Remove underscores from portnames for consistency with dirnames Suggested by: Simon Olofsson Revision Changes Path 1.4 +2 -1 ports/www/xpi-colorfultabs/Makefile 1.3 +2 -1 ports/www/xpi-mousegestures/Makefile 1.3 +2 -1 ports/www/xpi-tabmixplus/Makefile From owner-cvs-all@FreeBSD.ORG Mon Jul 31 08:25:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A16F116A4DE; Mon, 31 Jul 2006 08:25:52 +0000 (UTC) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B81143D5C; Mon, 31 Jul 2006 08:25:46 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.4/8.13.3) with ESMTP id k6V8Pfwe047635; Mon, 31 Jul 2006 12:25:41 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.4/8.13.3/Submit) id k6V8PeJh047633; Mon, 31 Jul 2006 12:25:40 +0400 (MSD) (envelope-from yar) Date: Mon, 31 Jul 2006 12:25:39 +0400 From: Yar Tikhiy To: Pyun YongHyeon Message-ID: <20060731082539.GD46403@comp.chem.msu.su> References: <200607270043.k6R0hY8g088353@repoman.freebsd.org> <20060729205009.GA37970@freefall.freebsd.org> <20060730064807.GA32731@cdnetworks.co.kr> <20060730095054.GA36267@comp.chem.msu.su> <20060731024354.GA35573@cdnetworks.co.kr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060731024354.GA35573@cdnetworks.co.kr> User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, Pyun YongHyeon Subject: Re: cvs commit: src/sys/dev/em if_em.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, 31 Jul 2006 08:25:52 -0000 On Mon, Jul 31, 2006 at 11:43:54AM +0900, Pyun YongHyeon wrote: > On Sun, Jul 30, 2006 at 01:50:55PM +0400, Yar Tikhiy wrote: > > On Sun, Jul 30, 2006 at 03:48:07PM +0900, Pyun YongHyeon wrote: > > > On Sat, Jul 29, 2006 at 08:50:09PM +0000, Yar Tikhiy wrote: > > > > On Thu, Jul 27, 2006 at 12:43:34AM +0000, Pyun YongHyeon wrote: > > > > > yongari 2006-07-27 00:43:34 UTC > > > > > > > > > > FreeBSD src repository > > > > > > > > > > Modified files: > > > > > sys/dev/em if_em.c > > > > > Log: > > > > > Prepending an mbuf after loading a DMA map results in unexpected > > > > > result. So, modify mbuf chains before loading a DMA map. > > > > > > > > > > Revision Changes Path > > > > > 1.122 +28 -31 src/sys/dev/em/if_em.c > > > > > > > > Thanks a lot! Do you think this can fix kern/72933? > > > > > > > > > > I can't sure it helps as the submitter reported the same issue > > > on bge(4). > > > > Sorry, my question wasn't accurate. I believe that the original > > PR in fact described a different issue with similar symptoms; it > > was fixed quite a while ago. Then Lev Shamardin posted a follow-up > > that he was still seeing the symptoms with em(4), which we (Gleb > > Smirnoff and yours truly) couldn't fully understand because we were > > missing the peculiarities of the interaction between DMA and mbufs > > you're so well aware of. > > > > > Btw, I think the VLAN fixup code should use m_prepend(9) > > > insatead of M_PREEND(9) because we don't know whether a new mbuf > > > is allocated or not after M_PREPEND(9) call. > > > > If a new mbuf should be allocated to satisfy DMA, m_prepend(9) is > > No, prepending a new mbuf with m_prepend(9) is not necessary for DMA > to work. > > > the function to use. M_PREPEND(9) can use the free space at the > > beginning of the mbuf's data area if there is enough of it. I'm > > unsure though whether we really need a new mbuf there. em_encap() > > gets just a mbuf chain, which can be tweaked a little before starting > > the DMA magic on it. > > > > Sorry, I'm confused. I've misread VLAN fixup code. From my limited testing, > it seems that it works as expected. > Previously em(4) may have failed VLAN tag insertion if M_PREPEND(9) added > a new mbuf into existing mbuf chains. Your analysis sounds correct to me. Previously the data from the mbuf chain passed to em_encap() were "wired" to the DMA engine (mapped through bus_dmamap_load*) first, and a VLAN header was prepended then, which was plain wrong and worked sometimes by accident, no matter M_PREPEND or m_prepend was used. With the order of the things being correct now, we can keep using M_PREPEND for efficiency. In the routing case, there is a fair chance that the packet came from another VLAN and there is some free leading space in the first mbuf. -- Yar From owner-cvs-all@FreeBSD.ORG Mon Jul 31 08:57:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A70516A4DD; Mon, 31 Jul 2006 08:57:32 +0000 (UTC) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2482843D46; Mon, 31 Jul 2006 08:57:32 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V8vWdl098386; Mon, 31 Jul 2006 08:57:32 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V8vWhs098385; Mon, 31 Jul 2006 08:57:32 GMT (envelope-from sem) Message-Id: <200607310857.k6V8vWhs098385@repoman.freebsd.org> From: Sergey Matveychuk Date: Mon, 31 Jul 2006 08: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: ports/net/cacti 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, 31 Jul 2006 08:57:32 -0000 sem 2006-07-31 08:57:31 UTC FreeBSD ports repository Modified files: net/cacti Makefile distinfo Log: - Add a vendor patch. - Change port version scheme. Revision Changes Path 1.26 +8 -4 ports/net/cacti/Makefile 1.18 +3 -0 ports/net/cacti/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 09:11:09 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B85816A4DD; Mon, 31 Jul 2006 09:11:09 +0000 (UTC) (envelope-from bde@zeta.org.au) Received: from mailout2.pacific.net.au (mailout2.pacific.net.au [61.8.0.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB04743D46; Mon, 31 Jul 2006 09:11:08 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailproxy2.pacific.net.au (mailproxy2.pacific.net.au [61.8.2.163]) by mailout2.pacific.net.au (Postfix) with ESMTP id B60A1189049; Mon, 31 Jul 2006 19:11:07 +1000 (EST) Received: from epsplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailproxy2.pacific.net.au (8.13.4/8.13.4/Debian-3sarge1) with ESMTP id k6V9B3bn021139; Mon, 31 Jul 2006 19:11:04 +1000 Date: Mon, 31 Jul 2006 19:11:02 +1000 (EST) From: Bruce Evans X-X-Sender: bde@epsplex.bde.org To: Jung-uk Kim In-Reply-To: <200607251525.11623.jkim@FreeBSD.org> Message-ID: <20060731172935.O923@epsplex.bde.org> References: <200607252001.aa18647@salmon.maths.tcd.ie> <200607251525.11623.jkim@FreeBSD.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, "Christian S.J. Peron" , cvs-all@FreeBSD.org, David Malone , Sam Leffler Subject: Re: cvs commit: src/sys/net 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: Mon, 31 Jul 2006 09:11:09 -0000 On Tue, 25 Jul 2006, Jung-uk Kim wrote: > On Tuesday 25 July 2006 03:01 pm, David Malone wrote: >> >> It sounds to me like a reasonable thing to do would be to pass up >> a raw version of the timestamp (as returned by the hardware). We'd >> also pass up the regular microtime() timestamp. You can then do any >> postprocessing to syncronise timestamps later in userland? > > Nope. In that case, you actually need to export few more things, > i.e., current hardware timecounter value, clock frequency, size of > the timecounter, etc. Even then, it's going to be hard to get > correct timeval without exposing few kernel internals. Synchronization is so hard to do that it is not done even in the kernel where all the variables are directly accessible (modulo locking), even for cases that are much more important. E.g.: - synchronization of TSCs across CPUs. This might require IPIs so it might be very inefficient. If all CPUs are driven by the same hardware clock then they might stay in sync even when the clock is throttled. Then IPIs would not be needed and the synchronization problems reduce to the next one. Otherwise it is difficult to keep the TSCs perfectly in sync even with IPIs and the next problem might need to be solved anyway (to keep the TSCs in sync with something). - synchronization of TSCs (or other efficient but possibly unstable timecounters) with "higher" quality timecounters (ones that are inefficient but possibly more stable). Before timecounters or SMP or much CPU throttling, the i386 TSC was synced with the i8254 on every clock tick. This worked OK, but was missing recalibration of the TSC and smoothing of jumps at sync points, and with CPU throttling recalibration is necessary else the jumps could be very large and remain large. Now there is some synchronization of "cpu ticks" with the active timecounter. This is missing almost the opposite things -- it has recalibration and doesn't need smoothing of jumps only since it doesn't have the jumps necessary for synchronhization. - synchronization of timecounters with themselves. The get*time() functions are not properly synchronized with the non-get versions, although this breaks the "get" versions, because proper synchronization would be less efficent and/or complicated. Synchronization only occurs every few msec in tc_windup(), but this is not enough for proper synchronization. E.g., timestamps made using time_second (as most file systems do) can be more that 1 second in the past relative to the current time, since updates of time_second are normally delayed by several msec. Userland can see this bug using code like "now = time(NULL); utimes(file, NULL); stat(file, &sb); assert(sb.st_mtime >= now);" -- time(3) uses microtime(9) and correctly rounds to seconds, while utimes(2) normally uses time_second which is the current time incorrectly rounded to seconds. I used to fix this in the non-SMP case by syncing time_second and other offsets in every call to a non-get function, using hackish locking that only works in the non-SMP case. >>> Okay. But I am worried about timecounter <-> timeval conversion >>> because I want to know timeval delta from system time, not just >>> some timer value. To get the delta, you would have to read the system time (not using a "get" function) so things might be slower than just reading the system time for everything. I think only cases where the hardware writes timestamps using DMA are interesting (if the timestamps involve bus accesses then they are likely to be slower than ACPI-"fast" ones which are hundreds of times slower than TSC accesses on most systems). Then the timestamps would have been made a relatively long time in the past and you would prefer to know the system time at which they were made, but it is impossible to know that time precisely. It is only possible to compare with the current time. The comparision might not need to be very precise but it should avoid obvious bugs like the ones for file times: now = time(NULL); assert(now >= packettime.tv_sec); Hardware could easily make incoherent timestamps here and then the system shouldn't just blindly convert them into negative deltas, etc. Bruce From owner-cvs-all@FreeBSD.ORG Mon Jul 31 09:25:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7656916A4DA; Mon, 31 Jul 2006 09:25:21 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1EB4743D53; Mon, 31 Jul 2006 09:25:21 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V9PKYn001184; Mon, 31 Jul 2006 09:25:20 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V9PKW1001183; Mon, 31 Jul 2006 09:25:20 GMT (envelope-from yar) Message-Id: <200607310925.k6V9PKW1001183@repoman.freebsd.org> From: Yar Tikhiy Date: Mon, 31 Jul 2006 09:25: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/bin/test test.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: Mon, 31 Jul 2006 09:25:21 -0000 yar 2006-07-31 09:25:20 UTC FreeBSD src repository Modified files: bin/test test.1 Log: Granting the amount of misunderstanding the last change received, extend it with an example to clarify the point. Revision Changes Path 1.25 +7 -1 src/bin/test/test.1 From owner-cvs-all@FreeBSD.ORG Mon Jul 31 09:26:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4A5216A4DE; Mon, 31 Jul 2006 09:26:00 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 663E643D49; Mon, 31 Jul 2006 09:26:00 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6V9Q0lv001233; Mon, 31 Jul 2006 09:26:00 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6V9Q0PA001230; Mon, 31 Jul 2006 09:26:00 GMT (envelope-from clsung) Message-Id: <200607310926.k6V9Q0PA001230@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 31 Jul 2006 09:26: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/archivers/nomarch 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, 31 Jul 2006 09:26:00 -0000 clsung 2006-07-31 09:26:00 UTC FreeBSD ports repository Modified files: archivers/nomarch Makefile distinfo Log: - Update to 1.4 PR: ports/101077 Submitted by: chinsan Revision Changes Path 1.12 +1 -2 ports/archivers/nomarch/Makefile 1.6 +3 -3 ports/archivers/nomarch/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 10:08:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 593FF16A4DD; Mon, 31 Jul 2006 10:08:47 +0000 (UTC) (envelope-from Alexander@Leidinger.net) Received: from www.ebusiness-leidinger.de (jojo.ms-net.de [84.16.236.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id 728DE43D4C; Mon, 31 Jul 2006 10:08:46 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from Andro-Beta.Leidinger.net (p54A5FCA2.dip.t-dialin.net [84.165.252.162]) (authenticated bits=0) by www.ebusiness-leidinger.de (8.13.6/8.13.6) with ESMTP id k6V9tYD4019044; Mon, 31 Jul 2006 11:55:35 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from Magellan.Leidinger.net (Magellan.Leidinger.net [192.168.1.1]) by Andro-Beta.Leidinger.net (8.13.4/8.13.3) with ESMTP id k6VA8kos049731; Mon, 31 Jul 2006 12:08:46 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Date: Mon, 31 Jul 2006 12:10:24 +0200 From: Alexander Leidinger To: Andrew Pantyukhin Message-ID: <20060731121024.3d6478b4@Magellan.Leidinger.net> In-Reply-To: <200607302234.k6UMYUuq018943@repoman.freebsd.org> References: <200607302234.k6UMYUuq018943@repoman.freebsd.org> X-Mailer: Sylpheed-Claws 2.3.1 (GTK+ 2.8.20; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/Mk bsd.linux-rpm.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: Mon, 31 Jul 2006 10:08:47 -0000 Quoting Andrew Pantyukhin (Sun, 30 Jul 2006 22:34:30 +0000 (UTC)): > sat 2006-07-30 22:34:30 UTC > > FreeBSD ports repository > > Modified files: > Mk bsd.linux-rpm.mk > Log: > - Only set default m_s_subdir if master_sites was undefined Would you please describe which problem this commit tries to solve (perhaps as a forced commit)? I'm not sure if we have some ports which set MS but depend on the auto assigning of MSS, but I would not be surprised if we have such ports. Did you check for such ports? Bye, Alexander. -- Professor: "Good news, everyone. Several years ago I tried to log onto AOL, and it just went through. Whee! We're online." http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 From owner-cvs-all@FreeBSD.ORG Mon Jul 31 11:19:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2370A16A4DD; Mon, 31 Jul 2006 11:19:11 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D381443D6D; Mon, 31 Jul 2006 11:19:10 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VBJAQc008933; Mon, 31 Jul 2006 11:19:10 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VBJAOJ008932; Mon, 31 Jul 2006 11:19:10 GMT (envelope-from sat) Message-Id: <200607311119.k6VBJAOJ008932@repoman.freebsd.org> From: Andrew Pantyukhin Date: Mon, 31 Jul 2006 11:19: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/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: Mon, 31 Jul 2006 11:19:11 -0000 sat 2006-07-31 11:19:10 UTC FreeBSD ports repository Modified files: graphics/dcraw Makefile distinfo Log: - Update to 8.27 Revision Changes Path 1.19 +1 -1 ports/graphics/dcraw/Makefile 1.17 +3 -3 ports/graphics/dcraw/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 11:25:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E27DB16A4DD; Mon, 31 Jul 2006 11:25:15 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FB4043D53; Mon, 31 Jul 2006 11:25:01 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VBP14x009282; Mon, 31 Jul 2006 11:25:01 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VBP0Ip009281; Mon, 31 Jul 2006 11:25:00 GMT (envelope-from sat) Message-Id: <200607311125.k6VBP0Ip009281@repoman.freebsd.org> From: Andrew Pantyukhin Date: Mon, 31 Jul 2006 11:25: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/linux-mplayer-plugin Makefile Makefile.npapi X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Jul 2006 11:25:16 -0000 sat 2006-07-31 11:25:00 UTC FreeBSD ports repository Modified files: www/linux-mplayer-plugin Makefile Makefile.npapi Log: - Add support for "native", "linux" and "embed" keywords in USE_NPAPI - Add support for embedded mode, useful for non-npapi apps to install npapi plugins - Move linkfarming from @exec/@unexec to pkg(de)install scripts - Minor fixes Revision Changes Path 1.2 +3 -6 ports/www/linux-mplayer-plugin/Makefile 1.2 +41 -21 ports/www/linux-mplayer-plugin/Makefile.npapi From owner-cvs-all@FreeBSD.ORG Mon Jul 31 11:32:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89F4616A4DE; Mon, 31 Jul 2006 11:32:13 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 474C843D49; Mon, 31 Jul 2006 11:32:13 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VBWDG6009667; Mon, 31 Jul 2006 11:32:13 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VBWD0i009666; Mon, 31 Jul 2006 11:32:13 GMT (envelope-from yar) Message-Id: <200607311132.k6VBWD0i009666@repoman.freebsd.org> From: Yar Tikhiy Date: Mon, 31 Jul 2006 11:32:13 +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 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: Mon, 31 Jul 2006 11:32:13 -0000 yar 2006-07-31 11:32:13 UTC FreeBSD src repository Modified files: bin/sh parser.c Log: Do not forget to increment the input line counter when reading a word spanning multiple lines. PR: bin/101094 MFC after: 5 days Revision Changes Path 1.57 +1 -0 src/bin/sh/parser.c From owner-cvs-all@FreeBSD.ORG Mon Jul 31 11:48:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1373616A4DA; Mon, 31 Jul 2006 11:48:39 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C12243D58; Mon, 31 Jul 2006 11:48:38 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VBmcTg010355; Mon, 31 Jul 2006 11:48:38 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VBmcIl010354; Mon, 31 Jul 2006 11:48:38 GMT (envelope-from erwin) Message-Id: <200607311148.k6VBmcIl010354@repoman.freebsd.org> From: Erwin Lansing Date: Mon, 31 Jul 2006 11:48: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/japanese/p5-MeCab 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, 31 Jul 2006 11:48:39 -0000 erwin 2006-07-31 11:48:38 UTC FreeBSD ports repository Modified files: japanese/p5-MeCab Makefile distinfo Log: - Update to 0.93 [1] - Mark for perl 5.8.0 and higher only due to its dependency on japanese/mecab PR: 101092 Submitted by: KIMURA Yasuhiro Revision Changes Path 1.11 +6 -2 ports/japanese/p5-MeCab/Makefile 1.7 +3 -3 ports/japanese/p5-MeCab/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 12:07:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7491C16A4DD; Mon, 31 Jul 2006 12:07:14 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 888FC43D66; Mon, 31 Jul 2006 12:07:08 +0000 (GMT) (envelope-from osa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VC78UK012619; Mon, 31 Jul 2006 12:07:08 GMT (envelope-from osa@repoman.freebsd.org) Received: (from osa@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VC78Pq012618; Mon, 31 Jul 2006 12:07:08 GMT (envelope-from osa) Message-Id: <200607311207.k6VC78Pq012618@repoman.freebsd.org> From: "Sergey A. Osokin" Date: Mon, 31 Jul 2006 12:07: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/www/nginx 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, 31 Jul 2006 12:07:14 -0000 osa 2006-07-31 12:07:08 UTC FreeBSD ports repository Modified files: www/nginx Makefile distinfo Log: Update to latest version: 0.3.55. Revision Changes Path 1.81 +1 -1 ports/www/nginx/Makefile 1.75 +3 -3 ports/www/nginx/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 12:41:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 79F6216A4E0; Mon, 31 Jul 2006 12:41:14 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36F5743D49; Mon, 31 Jul 2006 12:41:14 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VCfEIF014165; Mon, 31 Jul 2006 12:41:14 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VCfEA7014164; Mon, 31 Jul 2006 12:41:14 GMT (envelope-from yar) Message-Id: <200607311241.k6VCfEA7014164@repoman.freebsd.org> From: Yar Tikhiy Date: Mon, 31 Jul 2006 12:41:13 +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/options makeman X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Jul 2006 12:41:14 -0000 yar 2006-07-31 12:41:13 UTC FreeBSD src repository Modified files: tools/build/options makeman Log: Actually skip over undocumented options with "continue" to avoid artifacts in the manpage generated. Previously an orphaned paragraph on dependencies of such an option would appear. Revision Changes Path 1.5 +1 -0 src/tools/build/options/makeman From owner-cvs-all@FreeBSD.ORG Mon Jul 31 12:51:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F27416A4DA; Mon, 31 Jul 2006 12:51:39 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF6CA43D49; Mon, 31 Jul 2006 12:51:38 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VCpcZR022387; Mon, 31 Jul 2006 12:51:38 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VCpcNG022386; Mon, 31 Jul 2006 12:51:38 GMT (envelope-from lth) Message-Id: <200607311251.k6VCpcNG022386@repoman.freebsd.org> From: Lars Thegler Date: Mon, 31 Jul 2006 12:51: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-Filesys-Virtual-Plain 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, 31 Jul 2006 12:51:39 -0000 lth 2006-07-31 12:51:38 UTC FreeBSD ports repository Modified files: devel/p5-Filesys-Virtual-Plain Makefile distinfo Log: - Update to 0.09 - Use magic MASTER_SITES - Use versioned dependency Revision Changes Path 1.5 +3 -4 ports/devel/p5-Filesys-Virtual-Plain/Makefile 1.6 +3 -3 ports/devel/p5-Filesys-Virtual-Plain/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 13:08:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8097716A4DA; Mon, 31 Jul 2006 13:08:48 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B51F43D49; Mon, 31 Jul 2006 13:08:48 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VD8mbt024347; Mon, 31 Jul 2006 13:08:48 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VD8mPl024346; Mon, 31 Jul 2006 13:08:48 GMT (envelope-from yar) Message-Id: <200607311308.k6VD8mPl024346@repoman.freebsd.org> From: Yar Tikhiy Date: Mon, 31 Jul 2006 13:08: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/tools/build/options WITHOUT_GNU WITHOUT_NS_CACHING WITHOUT_PAM X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Jul 2006 13:08:48 -0000 yar 2006-07-31 13:08:47 UTC FreeBSD src repository Added files: tools/build/options WITHOUT_GNU WITHOUT_NS_CACHING WITHOUT_PAM Log: Document some more src.conf(5) options: WITHOUT_GNU, WITHOUT_NS_CACHING, WITHOUT_PAM. Noticed by: src/tools/build/options/makeman Revision Changes Path 1.1 +4 -0 src/tools/build/options/WITHOUT_GNU (new) 1.1 +7 -0 src/tools/build/options/WITHOUT_NS_CACHING (new) 1.1 +2 -0 src/tools/build/options/WITHOUT_PAM (new) From owner-cvs-all@FreeBSD.ORG Mon Jul 31 13:15:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F06FF16A4E2; Mon, 31 Jul 2006 13:15:06 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20B8143D5D; Mon, 31 Jul 2006 13:15:05 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VDF543024698; Mon, 31 Jul 2006 13:15:05 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VDF4Ye024697; Mon, 31 Jul 2006 13:15:04 GMT (envelope-from yar) Message-Id: <200607311315.k6VDF4Ye024697@repoman.freebsd.org> From: Yar Tikhiy Date: Mon, 31 Jul 2006 13:15: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/share/man/man5 src.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: Mon, 31 Jul 2006 13:15:07 -0000 yar 2006-07-31 13:15:04 UTC FreeBSD src repository Modified files: share/man/man5 src.conf.5 Log: Regen from src/tools/build/options. Revision Changes Path 1.5 +26 -8 src/share/man/man5/src.conf.5 From owner-cvs-all@FreeBSD.ORG Mon Jul 31 13:15:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60DC916A51A; Mon, 31 Jul 2006 13:15:20 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (cell.sick.ru [217.72.144.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDA0643D58; Mon, 31 Jul 2006 13:15:06 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (glebius@localhost [127.0.0.1]) by cell.sick.ru (8.13.4/8.13.3) with ESMTP id k6VDF3ZC001830 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 31 Jul 2006 17:15:03 +0400 (MSD) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.sick.ru (8.13.4/8.13.1/Submit) id k6VDF30Z001829; Mon, 31 Jul 2006 17:15:03 +0400 (MSD) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.sick.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Mon, 31 Jul 2006 17:15:02 +0400 From: Gleb Smirnoff To: Pyun YongHyeon Message-ID: <20060731131502.GS96644@FreeBSD.org> References: <200607200357.k6K3vwg2039627@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200607200357.k6K3vwg2039627@repoman.freebsd.org> User-Agent: Mutt/1.5.6i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/em if_em.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, 31 Jul 2006 13:15:20 -0000 On Thu, Jul 20, 2006 at 03:57:58AM +0000, Pyun YongHyeon wrote: P> yongari 2006-07-20 03:57:58 UTC P> P> FreeBSD src repository P> P> Modified files: P> sys/dev/em if_em.c P> Log: P> Honor IFF_DRV_OACTIVE in em_start_locked(). Isn't it better to shift this change to the em_start(), to avoid double check of IFF_DRV_RUNNING? Or may be just merge em_start_locked() into the em_start()? -- Totus tuus, Glebius. GLEBIUS-RIPN GLEB-RIPE From owner-cvs-all@FreeBSD.ORG Mon Jul 31 13:18:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 479EA16A4DF; Mon, 31 Jul 2006 13:18:22 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E22743D4C; Mon, 31 Jul 2006 13:18:21 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VDILfw024893; Mon, 31 Jul 2006 13:18:21 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VDILKK024892; Mon, 31 Jul 2006 13:18:21 GMT (envelope-from netchild) Message-Id: <200607311318.k6VDILKK024892@repoman.freebsd.org> From: Alexander Leidinger Date: Mon, 31 Jul 2006 13:18: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/graphics/linux_dri 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, 31 Jul 2006 13:18:22 -0000 netchild 2006-07-31 13:18:21 UTC FreeBSD ports repository Modified files: graphics/linux_dri Makefile Log: Mark IGNORE on 4.x, does not extract with the tar in 4.x. PR: 100714 Noticed by: Detlef Sax Revision Changes Path 1.19 +7 -1 ports/graphics/linux_dri/Makefile From owner-cvs-all@FreeBSD.ORG Mon Jul 31 13:18:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F199616A4DD; Mon, 31 Jul 2006 13:18:46 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADF0543D49; Mon, 31 Jul 2006 13:18:46 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VDIkGi024930; Mon, 31 Jul 2006 13:18:46 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VDIkIx024929; Mon, 31 Jul 2006 13:18:46 GMT (envelope-from erwin) Message-Id: <200607311318.k6VDIkIx024929@repoman.freebsd.org> From: Erwin Lansing Date: Mon, 31 Jul 2006 13:18: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/myghty 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, 31 Jul 2006 13:18:47 -0000 erwin 2006-07-31 13:18:46 UTC FreeBSD ports repository Modified files: www/myghty Makefile pkg-plist Log: Fix plist Submitted by: pointyhat Revision Changes Path 1.7 +1 -0 ports/www/myghty/Makefile 1.3 +1 -0 ports/www/myghty/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Jul 31 13:20:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E470416A4DD; Mon, 31 Jul 2006 13:20:19 +0000 (UTC) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC23343D53; Mon, 31 Jul 2006 13:20:18 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VDKIBS025055; Mon, 31 Jul 2006 13:20:18 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VDKI2o025054; Mon, 31 Jul 2006 13:20:18 GMT (envelope-from skv) Message-Id: <200607311320.k6VDKI2o025054@repoman.freebsd.org> From: Sergey Skvortsov Date: Mon, 31 Jul 2006 13:20: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-File-Flat 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, 31 Jul 2006 13:20:20 -0000 skv 2006-07-31 13:20:18 UTC FreeBSD ports repository Modified files: devel/p5-File-Flat Makefile distinfo Log: Update to 0.96 PR: ports/100539 Submitted by: Gea-Suan Lin Revision Changes Path 1.7 +3 -3 ports/devel/p5-File-Flat/Makefile 1.7 +3 -3 ports/devel/p5-File-Flat/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 13:20:45 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0046016A4E0; Mon, 31 Jul 2006 13:20:44 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAF1343D45; Mon, 31 Jul 2006 13:20:44 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VDKiLj025120; Mon, 31 Jul 2006 13:20:44 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VDKihd025119; Mon, 31 Jul 2006 13:20:44 GMT (envelope-from yar) Message-Id: <200607311320.k6VDKihd025119@repoman.freebsd.org> From: Yar Tikhiy Date: Mon, 31 Jul 2006 13:20: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/libexec/telnetd 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, 31 Jul 2006 13:20:45 -0000 yar 2006-07-31 13:20:44 UTC FreeBSD src repository Modified files: libexec/telnetd Makefile Log: telnetd(8) doesn't really go to the crunched floppies, so its Makefile needn't test for RELEASE_CRUNCH. Suggested by: ru Revision Changes Path 1.29 +0 -2 src/libexec/telnetd/Makefile From owner-cvs-all@FreeBSD.ORG Mon Jul 31 13:20:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60BEC16A614; Mon, 31 Jul 2006 13:20:55 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D9B443D45; Mon, 31 Jul 2006 13:20:55 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VDKtbT025175; Mon, 31 Jul 2006 13:20:55 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VDKso8025174; Mon, 31 Jul 2006 13:20:54 GMT (envelope-from netchild) Message-Id: <200607311320.k6VDKso8025174@repoman.freebsd.org> From: Alexander Leidinger Date: Mon, 31 Jul 2006 13:20: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 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: Mon, 31 Jul 2006 13:20:55 -0000 netchild 2006-07-31 13:20:54 UTC FreeBSD ports repository Modified files: . UPDATING Log: Document the sensitivity of the new default linux base port on the values of some compat.linux sysctls in the corresponding entry. Revision Changes Path 1.373 +7 -1 ports/UPDATING From owner-cvs-all@FreeBSD.ORG Mon Jul 31 13:26:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EEE116A4DD; Mon, 31 Jul 2006 13:26:13 +0000 (UTC) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CF0943D5C; Mon, 31 Jul 2006 13:26:13 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VDQDdZ025433; Mon, 31 Jul 2006 13:26:13 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VDQDWs025432; Mon, 31 Jul 2006 13:26:13 GMT (envelope-from skv) Message-Id: <200607311326.k6VDQDWs025432@repoman.freebsd.org> From: Sergey Skvortsov Date: Mon, 31 Jul 2006 13: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/devel/p5-Time-Duration 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, 31 Jul 2006 13:26:13 -0000 skv 2006-07-31 13:26:13 UTC FreeBSD ports repository Modified files: devel/p5-Time-Duration Makefile distinfo pkg-plist Log: Update to 1.04 PR: ports/100740 Submitted by: Gea-Suan Lin Revision Changes Path 1.4 +1 -1 ports/devel/p5-Time-Duration/Makefile 1.5 +3 -3 ports/devel/p5-Time-Duration/distinfo 1.4 +3 -2 ports/devel/p5-Time-Duration/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Jul 31 13:29:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EB5616A4DE; Mon, 31 Jul 2006 13:29:41 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9544043D5F; Mon, 31 Jul 2006 13:29:36 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VDTaxX025636; Mon, 31 Jul 2006 13:29:36 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VDTaQY025635; Mon, 31 Jul 2006 13:29:36 GMT (envelope-from yar) Message-Id: <200607311329.k6VDTaQY025635@repoman.freebsd.org> From: Yar Tikhiy Date: Mon, 31 Jul 2006 13:29: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/libtelnet Makefile src/libexec/telnetd Makefile src/usr.bin/telnet 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, 31 Jul 2006 13:29:41 -0000 yar 2006-07-31 13:29:36 UTC FreeBSD src repository Modified files: lib/libtelnet Makefile libexec/telnetd Makefile usr.bin/telnet Makefile Log: Stop enforcing dependencies between MK_* options at Makefile level. All the dependencies are satisfied now in . Revision Changes Path 1.24 +2 -1 src/lib/libtelnet/Makefile 1.30 +2 -1 src/libexec/telnetd/Makefile 1.31 +2 -1 src/usr.bin/telnet/Makefile From owner-cvs-all@FreeBSD.ORG Mon Jul 31 13:30:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6568516A4DD; Mon, 31 Jul 2006 13:30:25 +0000 (UTC) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C18643D6D; Mon, 31 Jul 2006 13:30:23 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VDUMEO025731; Mon, 31 Jul 2006 13:30:22 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VDUMaA025730; Mon, 31 Jul 2006 13:30:22 GMT (envelope-from skv) Message-Id: <200607311330.k6VDUMaA025730@repoman.freebsd.org> From: Sergey Skvortsov Date: Mon, 31 Jul 2006 13:30: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/p5-Class-Accessor 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, 31 Jul 2006 13:30:25 -0000 skv 2006-07-31 13:30:22 UTC FreeBSD ports repository Modified files: devel/p5-Class-Accessor Makefile distinfo pkg-plist Log: Update to 0.27 PR: ports/100549 Submitted by: Gea-Suan Lin Revision Changes Path 1.9 +5 -4 ports/devel/p5-Class-Accessor/Makefile 1.7 +3 -3 ports/devel/p5-Class-Accessor/distinfo 1.4 +5 -3 ports/devel/p5-Class-Accessor/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Jul 31 13:32:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 81C4F16A4E1; Mon, 31 Jul 2006 13:32:46 +0000 (UTC) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4855443D6D; Mon, 31 Jul 2006 13:32:39 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VDWd8E025892; Mon, 31 Jul 2006 13:32:39 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VDWdbI025891; Mon, 31 Jul 2006 13:32:39 GMT (envelope-from skv) Message-Id: <200607311332.k6VDWdbI025891@repoman.freebsd.org> From: Sergey Skvortsov Date: Mon, 31 Jul 2006 13: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/mail/libdomainkeys 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, 31 Jul 2006 13:32:46 -0000 skv 2006-07-31 13:32:39 UTC FreeBSD ports repository Modified files: mail/libdomainkeys Makefile pkg-plist Log: Install scripts to create and test keys PR: ports/100536 Submitted by: garga Revision Changes Path 1.6 +6 -1 ports/mail/libdomainkeys/Makefile 1.3 +3 -0 ports/mail/libdomainkeys/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Jul 31 13:34:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E3D7F16A4DA; Mon, 31 Jul 2006 13:34:39 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A032543D46; Mon, 31 Jul 2006 13:34:39 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VDYded026057; Mon, 31 Jul 2006 13:34:39 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VDYdPp026056; Mon, 31 Jul 2006 13:34:39 GMT (envelope-from blackend) Message-Id: <200607311334.k6VDYdPp026056@repoman.freebsd.org> From: Marc Fonvieille Date: Mon, 31 Jul 2006 13:34:39 +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 trademarks.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: Mon, 31 Jul 2006 13:34:40 -0000 blackend 2006-07-31 13:34:39 UTC FreeBSD doc repository Modified files: share/sgml trademarks.ent Log: Add &apple; and &airport; entities. I need them for a future Handbook addition. Revision Changes Path 1.35 +3 -1 doc/share/sgml/trademarks.ent From owner-cvs-all@FreeBSD.ORG Mon Jul 31 13:35:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FC8E16A4E9; Mon, 31 Jul 2006 13:35:32 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6410A43D72; Mon, 31 Jul 2006 13:35:26 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VDZQsS026180; Mon, 31 Jul 2006 13:35:26 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VDZQ13026179; Mon, 31 Jul 2006 13:35:26 GMT (envelope-from mat) Message-Id: <200607311335.k6VDZQ13026179@repoman.freebsd.org> From: Mathieu Arnold Date: Mon, 31 Jul 2006 13:35: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/p5-DateTime-Format-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: Mon, 31 Jul 2006 13:35:32 -0000 mat 2006-07-31 13:35:26 UTC FreeBSD ports repository Modified files: devel/p5-DateTime-Format-Mail Makefile distinfo Log: Update to 0.30 Revision Changes Path 1.9 +1 -2 ports/devel/p5-DateTime-Format-Mail/Makefile 1.8 +3 -3 ports/devel/p5-DateTime-Format-Mail/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 13:36:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F14716A4DA; Mon, 31 Jul 2006 13:36:40 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2D0E43D46; Mon, 31 Jul 2006 13:36:39 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VDadJV026260; Mon, 31 Jul 2006 13:36:39 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VDadVS026259; Mon, 31 Jul 2006 13:36:39 GMT (envelope-from mat) Message-Id: <200607311336.k6VDadVS026259@repoman.freebsd.org> From: Mathieu Arnold Date: Mon, 31 Jul 2006 13:36: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/p5-Alzabo 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, 31 Jul 2006 13:36:40 -0000 mat 2006-07-31 13:36:39 UTC FreeBSD ports repository Modified files: devel/p5-Alzabo Makefile distinfo Log: Update to 0.89.01 Revision Changes Path 1.9 +2 -1 ports/devel/p5-Alzabo/Makefile 1.9 +3 -3 ports/devel/p5-Alzabo/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 13:37:08 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0D1216A4DE; Mon, 31 Jul 2006 13:37:08 +0000 (UTC) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B58543D53; Mon, 31 Jul 2006 13:37:08 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VDb8QB026301; Mon, 31 Jul 2006 13:37:08 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VDb8Fm026300; Mon, 31 Jul 2006 13:37:08 GMT (envelope-from skv) Message-Id: <200607311337.k6VDb8Fm026300@repoman.freebsd.org> From: Sergey Skvortsov Date: Mon, 31 Jul 2006 13:37: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/p5-Schedule-Load 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, 31 Jul 2006 13:37:08 -0000 skv 2006-07-31 13:37:08 UTC FreeBSD ports repository Modified files: sysutils/p5-Schedule-Load Makefile distinfo pkg-plist Log: Update to 3.040 PR: ports/100554 Submitted by: Gea-Suan Lin Revision Changes Path 1.9 +1 -1 ports/sysutils/p5-Schedule-Load/Makefile 1.9 +3 -3 ports/sysutils/p5-Schedule-Load/distinfo 1.5 +10 -9 ports/sysutils/p5-Schedule-Load/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Jul 31 13:37:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CE0016A4DE; Mon, 31 Jul 2006 13:37:14 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49E8343D46; Mon, 31 Jul 2006 13:37:14 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VDbEtI026344; Mon, 31 Jul 2006 13:37:14 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VDbExL026343; Mon, 31 Jul 2006 13:37:14 GMT (envelope-from mat) Message-Id: <200607311337.k6VDbExL026343@repoman.freebsd.org> From: Mathieu Arnold Date: Mon, 31 Jul 2006 13:37: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/devel/p5-Class-AlzaboWrapper 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, 31 Jul 2006 13:37:14 -0000 mat 2006-07-31 13:37:14 UTC FreeBSD ports repository Modified files: devel/p5-Class-AlzaboWrapper Makefile distinfo Log: Update to 0.13 Revision Changes Path 1.4 +2 -2 ports/devel/p5-Class-AlzaboWrapper/Makefile 1.5 +3 -3 ports/devel/p5-Class-AlzaboWrapper/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 13:38:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D214E16A4E0; Mon, 31 Jul 2006 13:38:52 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A197243D46; Mon, 31 Jul 2006 13:38:52 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VDcqjD026427; Mon, 31 Jul 2006 13:38:52 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VDcqjM026426; Mon, 31 Jul 2006 13:38:52 GMT (envelope-from blackend) Message-Id: <200607311338.k6VDcqjM026426@repoman.freebsd.org> From: Marc Fonvieille Date: Mon, 31 Jul 2006 13:38:52 +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/advanced-networking 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: Mon, 31 Jul 2006 13:38:52 -0000 blackend 2006-07-31 13:38:52 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/advanced-networking chapter.sgml Log: Update of the wireless networking section: The old section is completely replaced with this new one. For the moment "FreeBSD as AP" is not covered (I'm working on it), but FreeBSD clients configuration and troubleshooting are detailled (how to find AP, basic settings with or without DHCP, authentication methods: WEP, WPA-PSK, WPA-TLS, WPA-TTLS and PEAP, IBSS mode is also discussed). This huge section would not exist without the help of loader@freebsdmall.com, murray@ and of course sam@ Revision Changes Path 1.384 +1129 -426 doc/en_US.ISO8859-1/books/handbook/advanced-networking/chapter.sgml From owner-cvs-all@FreeBSD.ORG Mon Jul 31 13:42:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4BC8B16A4DA; Mon, 31 Jul 2006 13:42:47 +0000 (UTC) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 05C9B43D46; Mon, 31 Jul 2006 13:42:47 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VDgkqo026675; Mon, 31 Jul 2006 13:42:46 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VDgkws026674; Mon, 31 Jul 2006 13:42:46 GMT (envelope-from skv) Message-Id: <200607311342.k6VDgkws026674@repoman.freebsd.org> From: Sergey Skvortsov Date: Mon, 31 Jul 2006 13:42: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/textproc/p5-Text-Glob 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, 31 Jul 2006 13:42:47 -0000 skv 2006-07-31 13:42:46 UTC FreeBSD ports repository Modified files: textproc/p5-Text-Glob Makefile distinfo pkg-plist Log: Update to 0.07 PR: ports/100306 Submitted by: Gea-Suan Lin Revision Changes Path 1.3 +1 -3 ports/textproc/p5-Text-Glob/Makefile 1.5 +3 -3 ports/textproc/p5-Text-Glob/distinfo 1.3 +2 -2 ports/textproc/p5-Text-Glob/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Jul 31 13:46:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 20DD416A4E8; Mon, 31 Jul 2006 13:46:47 +0000 (UTC) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D186D43D49; Mon, 31 Jul 2006 13:46:46 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VDkkk9026837; Mon, 31 Jul 2006 13:46:46 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VDkkTt026836; Mon, 31 Jul 2006 13:46:46 GMT (envelope-from skv) Message-Id: <200607311346.k6VDkkTt026836@repoman.freebsd.org> From: Sergey Skvortsov Date: Mon, 31 Jul 2006 13:46: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/textproc/p5-RDF-Core 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, 31 Jul 2006 13:46:47 -0000 skv 2006-07-31 13:46:46 UTC FreeBSD ports repository Modified files: textproc/p5-RDF-Core Makefile distinfo pkg-plist Log: Update to 0.50 PR: ports/100311 Submitted by: Gea-Suan Lin Revision Changes Path 1.8 +1 -1 ports/textproc/p5-RDF-Core/Makefile 1.7 +3 -3 ports/textproc/p5-RDF-Core/distinfo 1.4 +5 -5 ports/textproc/p5-RDF-Core/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Jul 31 13:48:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8490016A4E0; Mon, 31 Jul 2006 13:48:46 +0000 (UTC) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2363B43D69; Mon, 31 Jul 2006 13:48:46 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VDmk1K026926; Mon, 31 Jul 2006 13:48:46 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VDmke4026925; Mon, 31 Jul 2006 13:48:46 GMT (envelope-from skv) Message-Id: <200607311348.k6VDmke4026925@repoman.freebsd.org> From: Sergey Skvortsov Date: Mon, 31 Jul 2006 13:48: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/devel/p5-IO 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, 31 Jul 2006 13:48:46 -0000 skv 2006-07-31 13:48:45 UTC FreeBSD ports repository Modified files: devel/p5-IO Makefile pkg-plist Log: Cleanups: portlint and dirrm to dirrmtry PR: ports/100186 Submitted by: Gea-Suan Lin Revision Changes Path 1.5 +1 -1 ports/devel/p5-IO/Makefile 1.3 +10 -10 ports/devel/p5-IO/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Jul 31 13:49:08 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 249FA16A4E0; Mon, 31 Jul 2006 13:49:08 +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 F112C43D62; Mon, 31 Jul 2006 13:49:06 +0000 (GMT) (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 0C83E46CD9; Mon, 31 Jul 2006 09:49:06 -0400 (EDT) Date: Mon, 31 Jul 2006 14:49:05 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Gleb Smirnoff In-Reply-To: <20060731131502.GS96644@FreeBSD.org> Message-ID: <20060731144841.Y71432@fledge.watson.org> References: <200607200357.k6K3vwg2039627@repoman.freebsd.org> <20060731131502.GS96644@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, Pyun YongHyeon Subject: Re: cvs commit: src/sys/dev/em if_em.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, 31 Jul 2006 13:49:08 -0000 On Mon, 31 Jul 2006, Gleb Smirnoff wrote: > On Thu, Jul 20, 2006 at 03:57:58AM +0000, Pyun YongHyeon wrote: > P> yongari 2006-07-20 03:57:58 UTC > P> > P> FreeBSD src repository > P> > P> Modified files: > P> sys/dev/em if_em.c > P> Log: > P> Honor IFF_DRV_OACTIVE in em_start_locked(). > > Isn't it better to shift this change to the em_start(), to avoid double > check of IFF_DRV_RUNNING? Or may be just merge em_start_locked() into the > em_start()? Isn't em_start_locked() called from quite a few different places, including the interrupt handler, etc, where the mutex is already held? Robert N M Watson Computer Laboratory University of Cambridge From owner-cvs-all@FreeBSD.ORG Mon Jul 31 13:49:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95D4716A4E0; Mon, 31 Jul 2006 13:49:31 +0000 (UTC) (envelope-from chris@hitnet.RWTH-Aachen.DE) Received: from ms-dienst.rz.rwth-aachen.de (ms-1.rz.RWTH-Aachen.DE [134.130.3.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id A582C43D46; Mon, 31 Jul 2006 13:49:18 +0000 (GMT) (envelope-from chris@hitnet.RWTH-Aachen.DE) Received: from circe (circe.rz.RWTH-Aachen.DE [134.130.3.36]) by ms-dienst.rz.rwth-aachen.de (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTP id <0J39000A1T2424@ms-dienst.rz.rwth-aachen.de>; Mon, 31 Jul 2006 15:49:17 +0200 (MEST) Received: from talos.rz.RWTH-Aachen.DE ([134.130.3.22]) by circe (MailMonitor for SMTP v1.2.2 ) ; Mon, 31 Jul 2006 15:49:16 +0200 (MEST) Received: from bigboss.hitnet.rwth-aachen.de (bigspace.hitnet.RWTH-Aachen.DE [137.226.181.2]) by smarthost.rwth-aachen.de (8.13.7/8.13.1/1) with ESMTP id k6VDnFTe022894; Mon, 31 Jul 2006 15:49:15 +0200 Received: from haakonia.hitnet.rwth-aachen.de ([137.226.181.92]) by bigboss.hitnet.rwth-aachen.de with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.50) id 1G7Y8x-000259-Va; Mon, 31 Jul 2006 15:49:15 +0200 Received: by haakonia.hitnet.rwth-aachen.de (Postfix, from userid 1001) id 91E0E3F40A; Mon, 31 Jul 2006 15:49:15 +0200 (CEST) Date: Mon, 31 Jul 2006 15:49:15 +0200 From: Christian Brueffer In-reply-to: <200607311338.k6VDcqjM026426@repoman.freebsd.org> To: Marc Fonvieille Message-id: <20060731134915.GA1779@haakonia.hitnet.RWTH-Aachen.DE> MIME-version: 1.0 Content-type: multipart/signed; boundary=C7zPtVaVf+AK4Oqc; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-disposition: inline User-Agent: Mutt/1.5.11 X-Operating-System: FreeBSD 6.1-STABLE X-PGP-Key: http://people.FreeBSD.org/~brueffer/brueffer.key.asc X-PGP-Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D References: <200607311338.k6VDcqjM026426@repoman.freebsd.org> Cc: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/books/handbook/advanced-networking 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: Mon, 31 Jul 2006 13:49:31 -0000 --C7zPtVaVf+AK4Oqc Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jul 31, 2006 at 01:38:52PM +0000, Marc Fonvieille wrote: > blackend 2006-07-31 13:38:52 UTC >=20 > FreeBSD doc repository >=20 > Modified files: > en_US.ISO8859-1/books/handbook/advanced-networking=20 > chapter.sgml=20 > Log: > Update of the wireless networking section: > =20 > The old section is completely replaced with this new one. > For the moment "FreeBSD as AP" is not covered (I'm working on it), but > FreeBSD clients configuration and troubleshooting are detailled (how > to find AP, basic settings with or without DHCP, authentication > methods: WEP, WPA-PSK, WPA-TLS, WPA-TTLS and PEAP, IBSS mode is also > discussed). > =20 > This huge section would not exist without the help of > loader@freebsdmall.com, murray@ and of course sam@ > =20 > Revision Changes Path > 1.384 +1129 -426 doc/en_US.ISO8859-1/books/handbook/advanced-netwo= rking/chapter.sgml >=20 Hooray, thanks guys! - Christian --=20 Christian Brueffer chris@unixpages.org brueffer@FreeBSD.org GPG Key: http://people.freebsd.org/~brueffer/brueffer.key.asc GPG Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D --C7zPtVaVf+AK4Oqc Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.4 (FreeBSD) iD8DBQFEzgpbbHYXjKDtmC0RAum6AJ9uBc2BJDB5v9mv828f7s/mej8T/gCgmSuI Zi67tUe19VazhkCCTID479c= =Q/tV -----END PGP SIGNATURE----- --C7zPtVaVf+AK4Oqc-- From owner-cvs-all@FreeBSD.ORG Mon Jul 31 13:53:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14A2D16A4DF; Mon, 31 Jul 2006 13:53:29 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C18CE43D6D; Mon, 31 Jul 2006 13:53:28 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VDrSth027212; Mon, 31 Jul 2006 13:53:28 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VDrSEd027211; Mon, 31 Jul 2006 13:53:28 GMT (envelope-from yar) Message-Id: <200607311353.k6VDrSEd027211@repoman.freebsd.org> From: Yar Tikhiy Date: Mon, 31 Jul 2006 13:53: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/options WITHOUT_GNU WITHOUT_PAM X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Jul 2006 13:53:29 -0000 yar 2006-07-31 13:53:28 UTC FreeBSD src repository Modified files: tools/build/options WITHOUT_GNU WITHOUT_PAM Log: Tell the bitter truth that WITHOUT_GNU and WITHOUT_PAM don't have any effect now. Revision Changes Path 1.2 +1 -0 src/tools/build/options/WITHOUT_GNU 1.2 +1 -0 src/tools/build/options/WITHOUT_PAM From owner-cvs-all@FreeBSD.ORG Mon Jul 31 14:09:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 88C5516A4DA; Mon, 31 Jul 2006 14:09:56 +0000 (UTC) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7924A43D46; Mon, 31 Jul 2006 14:09:55 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.4/8.13.3) with ESMTP id k6VE9qRV050722; Mon, 31 Jul 2006 18:09:52 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.4/8.13.3/Submit) id k6VE9qgb050721; Mon, 31 Jul 2006 18:09:52 +0400 (MSD) (envelope-from yar) Date: Mon, 31 Jul 2006 18:09:52 +0400 From: Yar Tikhiy To: Marcel Moolenaar Message-ID: <20060731140951.GC48538@comp.chem.msu.su> References: <200607302051.k6UKpfNU011188@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200607302051.k6UKpfNU011188@repoman.freebsd.org> User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, ru@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/kldxref 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, 31 Jul 2006 14:09:56 -0000 On Sun, Jul 30, 2006 at 08:51:41PM +0000, Marcel Moolenaar wrote: > marcel 2006-07-30 20:51:41 UTC > > FreeBSD src repository > > Modified files: > usr.sbin/kldxref Makefile > Log: > Use NO_SHARED=YES to force a static link. > > Pointed out by: ru@ > > Revision Changes Path > 1.9 +1 -1 src/usr.sbin/kldxref/Makefile Perhaps it should be spelled just ``NO_SHARED='' in keeping with the current style? Unfortunately style.Makefile(5) doesn't seem to list this rule... -- Yar From owner-cvs-all@FreeBSD.ORG Mon Jul 31 14:13:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E37B16A4E0; Mon, 31 Jul 2006 14:13:29 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29C0F43D55; Mon, 31 Jul 2006 14:13:26 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VEDQZT029704; Mon, 31 Jul 2006 14:13:26 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VEDQVj029703; Mon, 31 Jul 2006 14:13:26 GMT (envelope-from yar) Message-Id: <200607311413.k6VEDQVj029703@repoman.freebsd.org> From: Yar Tikhiy Date: Mon, 31 Jul 2006 14:13: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/share/man/man5 src.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: Mon, 31 Jul 2006 14:13:29 -0000 yar 2006-07-31 14:13:25 UTC FreeBSD src repository Modified files: share/man/man5 src.conf.5 Log: Regen. Revision Changes Path 1.6 +4 -2 src/share/man/man5/src.conf.5 From owner-cvs-all@FreeBSD.ORG Mon Jul 31 14:13:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 94E7D16A5CC; Mon, 31 Jul 2006 14:13:33 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1652A43D69; Mon, 31 Jul 2006 14:13:31 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VEDUdn029762; Mon, 31 Jul 2006 14:13:30 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VEDUh8029761; Mon, 31 Jul 2006 14:13:30 GMT (envelope-from dinoex) Message-Id: <200607311413.k6VEDUh8029761@repoman.freebsd.org> From: Dirk Meyer Date: Mon, 31 Jul 2006 14:13: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/apache13-modssl Makefile distinfo ports/www/apache13-modssl/files patch-CVE-2006-3747 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Jul 2006 14:13:33 -0000 dinoex 2006-07-31 14:13:30 UTC FreeBSD ports repository Modified files: www/apache13-modssl Makefile distinfo Removed files: www/apache13-modssl/files patch-CVE-2006-3747 Log: - update to 2.8.28-1.3.37 Revision Changes Path 1.181 +3 -3 ports/www/apache13-modssl/Makefile 1.88 +6 -6 ports/www/apache13-modssl/distinfo 1.2 +0 -11 ports/www/apache13-modssl/files/patch-CVE-2006-3747 (dead) From owner-cvs-all@FreeBSD.ORG Mon Jul 31 14:17:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0ED3716A4DE; Mon, 31 Jul 2006 14:17:05 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B3C743D49; Mon, 31 Jul 2006 14:17:04 +0000 (GMT) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VEH4hk029932; Mon, 31 Jul 2006 14:17:04 GMT (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VEH4f2029931; Mon, 31 Jul 2006 14:17:04 GMT (envelope-from jkoshy) Message-Id: <200607311417.k6VEH4f2029931@repoman.freebsd.org> From: Joseph Koshy Date: Mon, 31 Jul 2006 14:17: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/usr.bin/hexdump conv.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, 31 Jul 2006 14:17:05 -0000 jkoshy 2006-07-31 14:17:04 UTC FreeBSD src repository Modified files: usr.bin/hexdump conv.c Log: In 'od -c' mode, deal with printable but zero-width combining characters correctly. These characters are displayed "combined" with a space character. PR: misc/100215 Submitted by: "J.R. Oldroyd" <> Reviewed by: "J.R. Oldroyd" <> (revised patch) MFC after: 3 days Revision Changes Path 1.9 +1 -1 src/usr.bin/hexdump/conv.c From owner-cvs-all@FreeBSD.ORG Mon Jul 31 14:18:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB24116A4E2; Mon, 31 Jul 2006 14:18:03 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7793D43D45; Mon, 31 Jul 2006 14:18:03 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VEI3kT029986; Mon, 31 Jul 2006 14:18:03 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VEI3Ji029985; Mon, 31 Jul 2006 14:18:03 GMT (envelope-from clsung) Message-Id: <200607311418.k6VEI3Ji029985@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 31 Jul 2006 14:18: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/japanese/ruby-mecab 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, 31 Jul 2006 14:18:03 -0000 clsung 2006-07-31 14:18:03 UTC FreeBSD ports repository Modified files: japanese/ruby-mecab Makefile distinfo Log: - update to 0.93 PR: ports/101093 Submitted by: KIMURA Yasuhiro Revision Changes Path 1.8 +2 -2 ports/japanese/ruby-mecab/Makefile 1.7 +3 -3 ports/japanese/ruby-mecab/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 15:09:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D47AF16A4DA; Mon, 31 Jul 2006 15:09:10 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5F4743D77; Mon, 31 Jul 2006 15:09:09 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VF99XM033681; Mon, 31 Jul 2006 15:09:09 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VF99uh033680; Mon, 31 Jul 2006 15:09:09 GMT (envelope-from itetcu) Message-Id: <200607311509.k6VF99uh033680@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Mon, 31 Jul 2006 15:09: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/libftdi 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, 31 Jul 2006 15:09:10 -0000 itetcu 2006-07-31 15:09:09 UTC FreeBSD ports repository Modified files: devel/libftdi Makefile Log: Fix build on 4.x Submitted by: maintainer Revision Changes Path 1.2 +2 -9 ports/devel/libftdi/Makefile From owner-cvs-all@FreeBSD.ORG Mon Jul 31 15:31:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 033B716A4DA; Mon, 31 Jul 2006 15:31:44 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6FFD43D45; Mon, 31 Jul 2006 15:31:43 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VFVhTW034974; Mon, 31 Jul 2006 15:31:43 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VFVhv3034973; Mon, 31 Jul 2006 15:31:43 GMT (envelope-from jhb) Message-Id: <200607311531.k6VFVhv3034973@repoman.freebsd.org> From: John Baldwin Date: Mon, 31 Jul 2006 15:31: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/sys/kern kern_ktrace.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, 31 Jul 2006 15:31:44 -0000 jhb 2006-07-31 15:31:43 UTC FreeBSD src repository Modified files: sys/kern kern_ktrace.c Log: Trim an obsolete comment. ktrgenio() stopped doing crazy gymnastics when ktrace was redone to be mostly synchronous again. Revision Changes Path 1.110 +0 -9 src/sys/kern/kern_ktrace.c From owner-cvs-all@FreeBSD.ORG Mon Jul 31 15:38:45 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D452816A4E1 for ; Mon, 31 Jul 2006 15:38:45 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.170]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA6A143D62 for ; Mon, 31 Jul 2006 15:38:40 +0000 (GMT) (envelope-from infofarmer@gmail.com) Received: by ug-out-1314.google.com with SMTP id m2so860332uge for ; Mon, 31 Jul 2006 08:38:33 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:sender:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=A9u63NwbFHl8DWvCWYXbPtoZDrd9XtNAuF/GwrA7qefANZYzuM5+aNWjJATx8GzO56p+hMXZdzyrXmp/zLYHHfzOAE28Pjltyhe11a3Hul2BFTGID7FUAiAnB5Kn9tQocgnM4Iq+vSxd/4678GZgQlwEjZ3kF6TZssDFBnqyL6E= Received: by 10.78.193.19 with SMTP id q19mr567029huf; Mon, 31 Jul 2006 08:38:33 -0700 (PDT) Received: by 10.35.105.10 with HTTP; Mon, 31 Jul 2006 08:38:33 -0700 (PDT) Message-ID: Date: Mon, 31 Jul 2006 19:38:33 +0400 From: "Andrew Pantyukhin" Sender: infofarmer@gmail.com To: "Alexander Leidinger" In-Reply-To: <20060731121024.3d6478b4@Magellan.Leidinger.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200607302234.k6UMYUuq018943@repoman.freebsd.org> <20060731121024.3d6478b4@Magellan.Leidinger.net> X-Google-Sender-Auth: 48819a44575ef248 Cc: cvs-ports@freebsd.org, cvs-all@freebsd.org, ports-committers@freebsd.org Subject: Re: cvs commit: ports/Mk bsd.linux-rpm.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: infofarmer@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, 31 Jul 2006 15:38:45 -0000 On 7/31/06, Alexander Leidinger wrote: > Quoting Andrew Pantyukhin (Sun, 30 Jul 2006 22:34:30 +0000 (UTC)): > > > sat 2006-07-30 22:34:30 UTC > > > > FreeBSD ports repository > > > > Modified files: > > Mk bsd.linux-rpm.mk > > Log: > > - Only set default m_s_subdir if master_sites was undefined > > Would you please describe which problem this commit tries to solve > (perhaps as a forced commit)? Fedora has a rather unique MSS scheme (related to its versioning) and applying the scheme to another MS does not seem very practical. In practice, a more relevant default value might be attempted to be set after bsd.linux-rpm.mk. > I'm not sure if we have some ports which set MS but depend on the auto > assigning of MSS, but I would not be surprised if we have such ports. > Did you check for such ports? Sure. There are 29 USE_LINUX_RPM ports, only three set MS, two of them don't need MSS at all and the third one would rather MSS was not touched by linux-rpm.mk. I'm sorry I committed this without prior discussion, but I tried to make sure the change was not desctructive and as simple as it gets. From owner-cvs-all@FreeBSD.ORG Mon Jul 31 15:44:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 553DD16A4E1; Mon, 31 Jul 2006 15:44:14 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12A4343D45; Mon, 31 Jul 2006 15:44:14 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VFiDrr035686; Mon, 31 Jul 2006 15:44:13 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VFiDkg035685; Mon, 31 Jul 2006 15:44:13 GMT (envelope-from obrien) Message-Id: <200607311544.k6VFiDkg035685@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 31 Jul 2006 15:44:13 +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/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, 31 Jul 2006 15:44:14 -0000 obrien 2006-07-31 15:44:13 UTC FreeBSD src repository Modified files: sys/ufs/ufs ufs_lookup.c Log: Rather than print out a nice error message giving details sufficent to fix a 'ufs_dirbad' and then panicing (making it very hard to see the details), put them in the panic message itself. Revision Changes Path 1.82 +5 -3 src/sys/ufs/ufs/ufs_lookup.c From owner-cvs-all@FreeBSD.ORG Mon Jul 31 15:47:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FAB816A4F4; Mon, 31 Jul 2006 15:47:32 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE65543D7B; Mon, 31 Jul 2006 15:47:28 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VFlS2S035873; Mon, 31 Jul 2006 15:47:28 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VFlS34035872; Mon, 31 Jul 2006 15:47:28 GMT (envelope-from dinoex) Message-Id: <200607311547.k6VFlS34035872@repoman.freebsd.org> From: Dirk Meyer Date: Mon, 31 Jul 2006 15:47: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/mail/popa3d/files setproctitle.patch X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Jul 2006 15:47:32 -0000 dinoex 2006-07-31 15:47:28 UTC FreeBSD ports repository Modified files: mail/popa3d/files setproctitle.patch Log: - update OPTION WITH_SETPROCTITLE to be cleaner Submitted by: osa Revision Changes Path 1.2 +1 -1 ports/mail/popa3d/files/setproctitle.patch From owner-cvs-all@FreeBSD.ORG Mon Jul 31 16:11:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C791616A4DF; Mon, 31 Jul 2006 16:11:27 +0000 (UTC) (envelope-from marcel@xcllnt.net) Received: from ns1.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B4FD43D69; Mon, 31 Jul 2006 16:11:20 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from [192.168.4.150] (pptp0.pn.xcllnt.net [192.168.4.150]) by ns1.xcllnt.net (8.13.6/8.13.6) with ESMTP id k6VGAq3g016257; Mon, 31 Jul 2006 09:10:53 -0700 (PDT) (envelope-from marcel@xcllnt.net) In-Reply-To: <20060731140951.GC48538@comp.chem.msu.su> References: <200607302051.k6UKpfNU011188@repoman.freebsd.org> <20060731140951.GC48538@comp.chem.msu.su> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Marcel Moolenaar Date: Mon, 31 Jul 2006 09:10:43 -0700 To: Yar Tikhiy X-Mailer: Apple Mail (2.752.2) Cc: cvs-src@FreeBSD.org, Marcel Moolenaar , ru@FreeBSD.org, cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/kldxref 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, 31 Jul 2006 16:11:27 -0000 On Jul 31, 2006, at 7:09 AM, Yar Tikhiy wrote: > On Sun, Jul 30, 2006 at 08:51:41PM +0000, Marcel Moolenaar wrote: >> marcel 2006-07-30 20:51:41 UTC >> >> FreeBSD src repository >> >> Modified files: >> usr.sbin/kldxref Makefile >> Log: >> Use NO_SHARED=YES to force a static link. >> >> Pointed out by: ru@ >> >> Revision Changes Path >> 1.9 +1 -1 src/usr.sbin/kldxref/Makefile > > Perhaps it should be spelled just ``NO_SHARED='' in keeping with > the current style? I really don't know. Those NO_FOO knobs are not logical in their use. > Unfortunately style.Makefile(5) doesn't seem > to list this rule... Feel free to change my commit to whatever you think is right. -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-all@FreeBSD.ORG Mon Jul 31 16:14:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC34116A4DE; Mon, 31 Jul 2006 16:14:13 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69F9A43D5D; Mon, 31 Jul 2006 16:14:13 +0000 (GMT) (envelope-from nobutaka@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VGEDXX038393; Mon, 31 Jul 2006 16:14:13 GMT (envelope-from nobutaka@repoman.freebsd.org) Received: (from nobutaka@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VGEDwU038392; Mon, 31 Jul 2006 16:14:13 GMT (envelope-from nobutaka) Message-Id: <200607311614.k6VGEDwU038392@repoman.freebsd.org> From: MANTANI Nobutaka Date: Mon, 31 Jul 2006 16:14: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/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: Mon, 31 Jul 2006 16:14:13 -0000 nobutaka 2006-07-31 16:14:13 UTC FreeBSD ports repository Modified files: textproc/uim-m17nlib Makefile Log: Fix module registration in the post-install target. Reported by: Dan Reinholz Revision Changes Path 1.6 +2 -2 ports/textproc/uim-m17nlib/Makefile From owner-cvs-all@FreeBSD.ORG Mon Jul 31 16:31:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B364E16A4DD; Mon, 31 Jul 2006 16:31:00 +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 5573643D66; Mon, 31 Jul 2006 16:31:00 +0000 (GMT) (envelope-from sam@errno.com) Received: from [10.0.0.248] (trouble.errno.com [10.0.0.248]) (authenticated bits=0) by ebb.errno.com (8.13.6/8.12.6) with ESMTP id k6VGUxGx016274 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 31 Jul 2006 09:30:59 -0700 (PDT) (envelope-from sam@errno.com) Message-ID: <44CE3042.8060509@errno.com> Date: Mon, 31 Jul 2006 09:30:58 -0700 From: Sam Leffler User-Agent: Thunderbird 1.5.0.4 (X11/20060724) MIME-Version: 1.0 To: Yar Tikhiy References: <200607311320.k6VDKihd025119@repoman.freebsd.org> In-Reply-To: <200607311320.k6VDKihd025119@repoman.freebsd.org> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/libexec/telnetd 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, 31 Jul 2006 16:31:00 -0000 Yar Tikhiy wrote: > yar 2006-07-31 13:20:44 UTC > > FreeBSD src repository > > Modified files: > libexec/telnetd Makefile > Log: > telnetd(8) doesn't really go to the crunched floppies, > so its Makefile needn't test for RELEASE_CRUNCH. What about folks building crunchgen'd images w/ telnetd; is there an equivalent way to do the same thing w/ the new build knobs? Sam From owner-cvs-all@FreeBSD.ORG Mon Jul 31 16:32:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A50416A4E2; Mon, 31 Jul 2006 16:32:21 +0000 (UTC) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CF3D43D8A; Mon, 31 Jul 2006 16:32:17 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.4/8.13.3) with ESMTP id k6VGWAPg053070; Mon, 31 Jul 2006 20:32:10 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.4/8.13.3/Submit) id k6VGWAW8053069; Mon, 31 Jul 2006 20:32:10 +0400 (MSD) (envelope-from yar) Date: Mon, 31 Jul 2006 20:32:09 +0400 From: Yar Tikhiy To: Marcel Moolenaar Message-ID: <20060731163209.GB50797@comp.chem.msu.su> References: <200607302051.k6UKpfNU011188@repoman.freebsd.org> <20060731140951.GC48538@comp.chem.msu.su> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, Marcel Moolenaar , ru@FreeBSD.org, cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/kldxref 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, 31 Jul 2006 16:32:21 -0000 On Mon, Jul 31, 2006 at 09:10:43AM -0700, Marcel Moolenaar wrote: > > On Jul 31, 2006, at 7:09 AM, Yar Tikhiy wrote: > > >On Sun, Jul 30, 2006 at 08:51:41PM +0000, Marcel Moolenaar wrote: > >>marcel 2006-07-30 20:51:41 UTC > >> > >> FreeBSD src repository > >> > >> Modified files: > >> usr.sbin/kldxref Makefile > >> Log: > >> Use NO_SHARED=YES to force a static link. > >> > >> Pointed out by: ru@ > >> > >> Revision Changes Path > >> 1.9 +1 -1 src/usr.sbin/kldxref/Makefile > > > >Perhaps it should be spelled just ``NO_SHARED='' in keeping with > >the current style? > > I really don't know. Those NO_FOO knobs are not logical in their > use. > > > Unfortunately style.Makefile(5) doesn't seem > >to list this rule... > > Feel free to change my commit to whatever you think is right. I was sly enough to add Ruslan to Cc in my previous mail :-) Let's wait for his opinion on this and below. In the meanwhile I peeked in /usr/share/mk and found that the handling of NO_* knobs is quite far from being consistent. For example: - NO_MAN -- can be just defined ("YES" and "NO" both mean true), handled at level (note that is often included separately now and includes some magic); - NO_OBJ -- can be just defined to be true, handled in , which is included from more convenient files like ; - NO_SHARED -- must be set to something != "no" for the effect, handled in . I'm unsure if there is a reason behind all this diversity. -- Yar From owner-cvs-all@FreeBSD.ORG Mon Jul 31 16:33:06 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF34F16A4DA; Mon, 31 Jul 2006 16:33:06 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97FCC43D53; Mon, 31 Jul 2006 16:33:06 +0000 (GMT) (envelope-from nobutaka@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VGX6mc039345; Mon, 31 Jul 2006 16:33:06 GMT (envelope-from nobutaka@repoman.freebsd.org) Received: (from nobutaka@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VGX6RF039334; Mon, 31 Jul 2006 16:33:06 GMT (envelope-from nobutaka) Message-Id: <200607311633.k6VGX6RF039334@repoman.freebsd.org> From: MANTANI Nobutaka Date: Mon, 31 Jul 2006 16:33: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/japanese/uim-canna Makefile ports/japanese/uim-prime 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, 31 Jul 2006 16:33:07 -0000 nobutaka 2006-07-31 16:33:06 UTC FreeBSD ports repository Modified files: japanese/uim-canna Makefile japanese/uim-prime Makefile Log: Fix module registration in the post-install target. Revision Changes Path 1.5 +2 -2 ports/japanese/uim-canna/Makefile 1.5 +2 -2 ports/japanese/uim-prime/Makefile From owner-cvs-all@FreeBSD.ORG Mon Jul 31 16:35:57 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B35816A4DA; Mon, 31 Jul 2006 16:35:57 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 27D0743D5E; Mon, 31 Jul 2006 16:35:57 +0000 (GMT) (envelope-from nobutaka@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VGZveM039569; Mon, 31 Jul 2006 16:35:57 GMT (envelope-from nobutaka@repoman.freebsd.org) Received: (from nobutaka@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VGZvhw039568; Mon, 31 Jul 2006 16:35:57 GMT (envelope-from nobutaka) Message-Id: <200607311635.k6VGZvhw039568@repoman.freebsd.org> From: MANTANI Nobutaka Date: Mon, 31 Jul 2006 16: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/textproc/uim 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, 31 Jul 2006 16:35:57 -0000 nobutaka 2006-07-31 16:35:57 UTC FreeBSD ports repository Modified files: textproc/uim Makefile Log: Make PORTREVISION overridable from slave ports. Revision Changes Path 1.58 +1 -1 ports/textproc/uim/Makefile From owner-cvs-all@FreeBSD.ORG Mon Jul 31 16:40:02 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B79A16A4E2; Mon, 31 Jul 2006 16:40:02 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2C7543D6E; Mon, 31 Jul 2006 16:40:01 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VGe1oM039758; Mon, 31 Jul 2006 16:40:01 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VGe1rK039757; Mon, 31 Jul 2006 16:40:01 GMT (envelope-from mat) Message-Id: <200607311640.k6VGe1rK039757@repoman.freebsd.org> From: Mathieu Arnold Date: Mon, 31 Jul 2006 16:40: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 UPDATING ports/graphics/GraphicsMagick 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, 31 Jul 2006 16:40:02 -0000 mat 2006-07-31 16:40:01 UTC FreeBSD ports repository Modified files: . UPDATING graphics/GraphicsMagick Makefile Log: In order to fix a symbol collision between GraphicsMagick and libtidy, GraphicsMagick has been updated so that all its symbols are now prefixed with 'Gm'. All depending ports will have to be recompiled as noted in UPDATING. PR: 94905 Submitted by: mat Revision Changes Path 1.374 +12 -1 ports/UPDATING 1.6 +3 -2 ports/graphics/GraphicsMagick/Makefile From owner-cvs-all@FreeBSD.ORG Mon Jul 31 16:43:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F67516A4E0; Mon, 31 Jul 2006 16:43:03 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18B5B43D45; Mon, 31 Jul 2006 16:43:03 +0000 (GMT) (envelope-from nobutaka@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VGh2Kl040032; Mon, 31 Jul 2006 16:43:02 GMT (envelope-from nobutaka@repoman.freebsd.org) Received: (from nobutaka@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VGh2ZX040031; Mon, 31 Jul 2006 16:43:02 GMT (envelope-from nobutaka) Message-Id: <200607311643.k6VGh2ZX040031@repoman.freebsd.org> From: MANTANI Nobutaka Date: Mon, 31 Jul 2006 16:43: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/japanese/uim-canna Makefile ports/japanese/uim-prime Makefile 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: Mon, 31 Jul 2006 16:43:03 -0000 nobutaka 2006-07-31 16:43:02 UTC FreeBSD ports repository Modified files: japanese/uim-canna Makefile japanese/uim-prime Makefile textproc/uim-m17nlib Makefile Log: Bump PORTREVISION for the previous fix. Revision Changes Path 1.6 +1 -0 ports/japanese/uim-canna/Makefile 1.6 +1 -0 ports/japanese/uim-prime/Makefile 1.7 +1 -0 ports/textproc/uim-m17nlib/Makefile From owner-cvs-all@FreeBSD.ORG Mon Jul 31 16:49:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2788616A4DD; Mon, 31 Jul 2006 16:49:26 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D82EF43D46; Mon, 31 Jul 2006 16:49:25 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VGnPuD048126; Mon, 31 Jul 2006 16:49:25 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VGnPot048125; Mon, 31 Jul 2006 16:49:25 GMT (envelope-from brueffer) Message-Id: <200607311649.k6VGnPot048125@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 31 Jul 2006 16:49: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/release/doc/en_US.ISO8859-1/relnotes/common new.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, 31 Jul 2006 16:49:26 -0000 brueffer 2006-07-31 16:49:25 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Mark two more items as merged. Revision Changes Path 1.959 +2 -2 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Mon Jul 31 16:52:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9684516A4DA; Mon, 31 Jul 2006 16:52:16 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52ED843D46; Mon, 31 Jul 2006 16:52:16 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VGqGg8048362; Mon, 31 Jul 2006 16:52:16 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VGqF6e048359; Mon, 31 Jul 2006 16:52:15 GMT (envelope-from brueffer) Message-Id: <200607311652.k6VGqF6e048359@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 31 Jul 2006 16:52: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/relnotes/common new.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, 31 Jul 2006 16:52:16 -0000 brueffer 2006-07-31 16:52:15 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: Note my(4) altq(4=) support. Revision Changes Path 1.883.2.31 +2 -0 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Mon Jul 31 16:58:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D13F16A4DD; Mon, 31 Jul 2006 16:58:16 +0000 (UTC) (envelope-from marcel@xcllnt.net) Received: from ns1.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id D968943D45; Mon, 31 Jul 2006 16:58:15 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from [192.168.4.150] (pptp0.pn.xcllnt.net [192.168.4.150]) by ns1.xcllnt.net (8.13.6/8.13.6) with ESMTP id k6VGvpPs016549; Mon, 31 Jul 2006 09:57:52 -0700 (PDT) (envelope-from marcel@xcllnt.net) In-Reply-To: <20060731163209.GB50797@comp.chem.msu.su> References: <200607302051.k6UKpfNU011188@repoman.freebsd.org> <20060731140951.GC48538@comp.chem.msu.su> <20060731163209.GB50797@comp.chem.msu.su> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <8F70D2AC-029E-4829-A775-600D6AABE69E@xcllnt.net> Content-Transfer-Encoding: 7bit From: Marcel Moolenaar Date: Mon, 31 Jul 2006 09:57:42 -0700 To: Yar Tikhiy X-Mailer: Apple Mail (2.752.2) Cc: cvs-src@FreeBSD.org, Marcel Moolenaar , Ruslan Ermilov , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/kldxref 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, 31 Jul 2006 16:58:16 -0000 On Jul 31, 2006, at 9:32 AM, Yar Tikhiy wrote: > On Mon, Jul 31, 2006 at 09:10:43AM -0700, Marcel Moolenaar wrote: >> >> On Jul 31, 2006, at 7:09 AM, Yar Tikhiy wrote: >> >>> On Sun, Jul 30, 2006 at 08:51:41PM +0000, Marcel Moolenaar wrote: >>>> marcel 2006-07-30 20:51:41 UTC >>>> >>>> FreeBSD src repository >>>> >>>> Modified files: >>>> usr.sbin/kldxref Makefile >>>> Log: >>>> Use NO_SHARED=YES to force a static link. >>>> >>>> Pointed out by: ru@ >>>> >>>> Revision Changes Path >>>> 1.9 +1 -1 src/usr.sbin/kldxref/Makefile >>> >>> Perhaps it should be spelled just ``NO_SHARED='' in keeping with >>> the current style? >> >> I really don't know. Those NO_FOO knobs are not logical in their >> use. >> >>> Unfortunately style.Makefile(5) doesn't seem >>> to list this rule... >> >> Feel free to change my commit to whatever you think is right. > > I was sly enough to add Ruslan to Cc in my previous mail :-) > Let's wait for his opinion on this and below. Sounds good. > In the meanwhile I peeked in /usr/share/mk and found that the handling > of NO_* knobs is quite far from being consistent. For example: > > - NO_MAN -- can be just defined ("YES" and "NO" both mean true), > handled at level (note that > is often included separately now and includes some magic); > > - NO_OBJ -- can be just defined to be true, handled in , > which is included from more convenient files like ; > > - NO_SHARED -- must be set to something != "no" for the effect, > handled in . > > I'm unsure if there is a reason behind all this diversity. I doubt there's a reason, because reason would be unreasonable then :-) I think the problem is inherent when the existence of the variable counts and not its value. It's not intuitive and people use it in different ways because of that. I personally like something simple like SHARED=NO or SHARED=YES. The lack of definition then meaning the default setting. This is trivially implemented with SHARED?=YES. Anyway: that's just me... -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-all@FreeBSD.ORG Mon Jul 31 17:04:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B61F16A4DD; Mon, 31 Jul 2006 17:04:29 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36ECB43D45; Mon, 31 Jul 2006 17:04:29 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VH4Tlh050180; Mon, 31 Jul 2006 17:04:29 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VH4TsT050179; Mon, 31 Jul 2006 17:04:29 GMT (envelope-from brueffer) Message-Id: <200607311704.k6VH4TsT050179@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 31 Jul 2006 17:04: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/release/doc/share/misc dev.archlist.txt X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Jul 2006 17:04:29 -0000 brueffer 2006-07-31 17:04:29 UTC FreeBSD src repository Modified files: release/doc/share/misc dev.archlist.txt Log: Note hardware supported by powerpc, based on GENERIC. Revision Changes Path 1.88 +13 -13 src/release/doc/share/misc/dev.archlist.txt From owner-cvs-all@FreeBSD.ORG Mon Jul 31 17:08:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A246E16A4DA; Mon, 31 Jul 2006 17:08:58 +0000 (UTC) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BBDF43D49; Mon, 31 Jul 2006 17:08:53 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.4/8.13.3) with ESMTP id k6VH8VIA053422; Mon, 31 Jul 2006 21:08:31 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.4/8.13.3/Submit) id k6VH8VRw053421; Mon, 31 Jul 2006 21:08:31 +0400 (MSD) (envelope-from yar) Date: Mon, 31 Jul 2006 21:08:30 +0400 From: Yar Tikhiy To: Sam Leffler Message-ID: <20060731170830.GC50797@comp.chem.msu.su> References: <200607311320.k6VDKihd025119@repoman.freebsd.org> <44CE3042.8060509@errno.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <44CE3042.8060509@errno.com> User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/libexec/telnetd 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, 31 Jul 2006 17:08:58 -0000 On Mon, Jul 31, 2006 at 09:30:58AM -0700, Sam Leffler wrote: > Yar Tikhiy wrote: > > yar 2006-07-31 13:20:44 UTC > > > > FreeBSD src repository > > > > Modified files: > > libexec/telnetd Makefile > > Log: > > telnetd(8) doesn't really go to the crunched floppies, > > so its Makefile needn't test for RELEASE_CRUNCH. > > What about folks building crunchgen'd images w/ telnetd; is there an > equivalent way to do the same thing w/ the new build knobs? I'd suggest using WITHOUT_CRYPT=yes, it will have the same effect for telnetd. Anyway, the RELEASE_CRUNCH knob's coverage is rather limited, it's respected by only those parts of src/ that are included in the standard boot floppies--telnetd was just an exception. The other exception is inetd, which puts its IPSEC stuff under RELEASE_CRUNCH. The better way would be to introduce the MK_IPSEC_SUPPORT knob. RELEASE_CRUNCH could be mostly handled in a single place then. Few tools build in a really special way if RELEASE_CRUNCH is defined; most tools just have crypto, IPX etc stuff omitted from them. P.S. Just found that telnetd and inetd are optional components of src/release/picobsd (left out by default.) This can justify putting RELEASE_CRUNCH back into telnetd's Makefile accompanied by a clarifying comment. It stays a rather limited solution though. -- Yar From owner-cvs-all@FreeBSD.ORG Mon Jul 31 17:16:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF91D16A4E6; Mon, 31 Jul 2006 17:16:35 +0000 (UTC) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40F6E43D64; Mon, 31 Jul 2006 17:16:29 +0000 (GMT) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VHGT5i050806; Mon, 31 Jul 2006 17:16:29 GMT (envelope-from markus@repoman.freebsd.org) Received: (from markus@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VHGTl1050805; Mon, 31 Jul 2006 17:16:29 GMT (envelope-from markus) Message-Id: <200607311716.k6VHGTl1050805@repoman.freebsd.org> From: Markus Brueffer Date: Mon, 31 Jul 2006 17:16: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-p2p Makefile ports/net-p2p/ktorrent-devel Makefile distinfo pkg-descr pkg-plist ports/net-p2p/ktorrent-devel/files patch-Makefile.in patch-apps-ktcachecheck-cachecheck.cpp patch-libktorrent-net-socket.cpp patch-libktorrent-util-sha1hash.cpp patch-plugins-partfileimport-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, 31 Jul 2006 17:16:36 -0000 markus 2006-07-31 17:16:29 UTC FreeBSD ports repository Modified files: net-p2p Makefile net-p2p/ktorrent-devel Makefile distinfo pkg-descr pkg-plist Added files: net-p2p/ktorrent-devel/files patch-libktorrent-net-socket.cpp Removed files: net-p2p/ktorrent-devel/files patch-Makefile.in patch-apps-ktcachecheck-cachecheck.cpp patch-libktorrent-util-sha1hash.cpp patch-plugins-partfileimport-Makefile.in patch-plugins-upnp-upnpmcastsocket.cpp Log: - Add a development version of net-p2p/ktorrent which adds a lot of new features and bugfixes compared to the latest stable version - Adjust WWW to point to the new projectsite - Add several new features to pkg-descr - Register CONFLICTS with ktorrent Related to PR: ports/100781 Submitted by: Yuan Jue Repocopied by: marcus Revision Changes Path 1.14 +1 -0 ports/net-p2p/Makefile 1.11 +10 -5 ports/net-p2p/ktorrent-devel/Makefile 1.6 +3 -3 ports/net-p2p/ktorrent-devel/distinfo 1.4 +0 -11 ports/net-p2p/ktorrent-devel/files/patch-Makefile.in (dead) 1.2 +0 -10 ports/net-p2p/ktorrent-devel/files/patch-apps-ktcachecheck-cachecheck.cpp (dead) 1.1 +29 -0 ports/net-p2p/ktorrent-devel/files/patch-libktorrent-net-socket.cpp (new) 1.2 +0 -11 ports/net-p2p/ktorrent-devel/files/patch-libktorrent-util-sha1hash.cpp (dead) 1.2 +0 -11 ports/net-p2p/ktorrent-devel/files/patch-plugins-partfileimport-Makefile.in (dead) 1.2 +0 -10 ports/net-p2p/ktorrent-devel/files/patch-plugins-upnp-upnpmcastsocket.cpp (dead) 1.2 +10 -1 ports/net-p2p/ktorrent-devel/pkg-descr 1.8 +291 -18 ports/net-p2p/ktorrent-devel/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Jul 31 17:18:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D79116A4DE; Mon, 31 Jul 2006 17:18:17 +0000 (UTC) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D0B343D77; Mon, 31 Jul 2006 17:18:14 +0000 (GMT) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VHIEHi050894; Mon, 31 Jul 2006 17:18:14 GMT (envelope-from markus@repoman.freebsd.org) Received: (from markus@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VHIEeU050893; Mon, 31 Jul 2006 17:18:14 GMT (envelope-from markus) Message-Id: <200607311718.k6VHIEeU050893@repoman.freebsd.org> From: Markus Brueffer Date: Mon, 31 Jul 2006 17:18: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: 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, 31 Jul 2006 17:18:17 -0000 markus 2006-07-31 17:18:13 UTC FreeBSD ports repository Modified files: . modules Log: ktorrent-devel --> ports/net-p2p/ktorrent-devel Revision Changes Path 1.15818 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Jul 31 17:30:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC82916A508; Mon, 31 Jul 2006 17:30:20 +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 B66E843D55; Mon, 31 Jul 2006 17:30:19 +0000 (GMT) (envelope-from marck@rinet.ru) Received: from localhost (localhost [127.0.0.1]) by woozle.rinet.ru (8.13.6/8.13.6) with ESMTP id k6VHUINl072932; Mon, 31 Jul 2006 21:30:18 +0400 (MSD) (envelope-from marck@rinet.ru) Date: Mon, 31 Jul 2006 21:30:18 +0400 (MSD) From: Dmitry Morozovsky To: Joel Dahl In-Reply-To: <200607280632.k6S6Wf23091308@repoman.freebsd.org> Message-ID: <20060731212844.L66129@woozle.rinet.ru> References: <200607280632.k6S6Wf23091308@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-2.0.2 (woozle.rinet.ru [0.0.0.0]); Mon, 31 Jul 2006 21:30:18 +0400 (MSD) Cc: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/articles/contributors contrib.core.sgml contrib.corealumni.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, 31 Jul 2006 17:30:20 -0000 On Fri, 28 Jul 2006, Joel Dahl wrote: JD> joel 2006-07-28 06:32:41 UTC JD> JD> FreeBSD doc repository JD> JD> Modified files: JD> en_US.ISO8859-1/articles/contributors contrib.core.sgml JD> contrib.corealumni.sgml JD> Log: JD> Update the Core Team and the Core Team Alumni. Doesn't it (results of new Core elections) worth news item? Sincerely, D.Marck [DM5020, MCK-RIPE, DM3-RIPN] ------------------------------------------------------------------------ *** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru *** ------------------------------------------------------------------------ From owner-cvs-all@FreeBSD.ORG Mon Jul 31 17:37:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64F3F16A4DF; Mon, 31 Jul 2006 17:37:26 +0000 (UTC) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E271443D68; Mon, 31 Jul 2006 17:37:24 +0000 (GMT) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VHbOiJ051949; Mon, 31 Jul 2006 17:37:24 GMT (envelope-from markus@repoman.freebsd.org) Received: (from markus@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VHbOw8051948; Mon, 31 Jul 2006 17:37:24 GMT (envelope-from markus) Message-Id: <200607311737.k6VHbOw8051948@repoman.freebsd.org> From: Markus Brueffer Date: Mon, 31 Jul 2006 17:37: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-p2p/ktorrent 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: Mon, 31 Jul 2006 17:37:26 -0000 markus 2006-07-31 17:37:24 UTC FreeBSD ports repository Modified files: net-p2p/ktorrent Makefile pkg-descr Log: - Register CONFLICTS with ktorrent-devel - Adjust WWW in order to point to the new projectsite Revision Changes Path 1.11 +2 -0 ports/net-p2p/ktorrent/Makefile 1.2 +1 -1 ports/net-p2p/ktorrent/pkg-descr From owner-cvs-all@FreeBSD.ORG Mon Jul 31 18:04:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A27F16A4DA; Mon, 31 Jul 2006 18:04:22 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1872143D73; Mon, 31 Jul 2006 18:04:22 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VI4Lp8054623; Mon, 31 Jul 2006 18:04:21 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VI4LcJ054622; Mon, 31 Jul 2006 18:04:21 GMT (envelope-from ahze) Message-Id: <200607311804.k6VI4LcJ054622@repoman.freebsd.org> From: Michael Johnson Date: Mon, 31 Jul 2006 18:04: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/x11-themes/gnome-themes 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, 31 Jul 2006 18:04:22 -0000 ahze 2006-07-31 18:04:21 UTC FreeBSD ports repository Modified files: x11-themes/gnome-themes Makefile distinfo pkg-plist Log: - Update to 2.14.3 Revision Changes Path 1.36 +1 -1 ports/x11-themes/gnome-themes/Makefile 1.25 +3 -3 ports/x11-themes/gnome-themes/distinfo 1.22 +3 -0 ports/x11-themes/gnome-themes/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Jul 31 18:16:06 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A575C16A4DE; Mon, 31 Jul 2006 18:16:06 +0000 (UTC) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 971C543D5F; Mon, 31 Jul 2006 18:16:05 +0000 (GMT) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VIG55C055202; Mon, 31 Jul 2006 18:16:05 GMT (envelope-from alepulver@repoman.freebsd.org) Received: (from alepulver@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VIG59f055201; Mon, 31 Jul 2006 18:16:05 GMT (envelope-from alepulver) Message-Id: <200607311816.k6VIG59f055201@repoman.freebsd.org> From: Alejandro Pulver Date: Mon, 31 Jul 2006 18:16: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/games/darkplaces 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, 31 Jul 2006 18:16:06 -0000 alepulver 2006-07-31 18:16:05 UTC FreeBSD ports repository Modified files: games/darkplaces Makefile Log: - Fix wrong check (WITH_GLX -> WITH_CLIENT). Revision Changes Path 1.6 +1 -1 ports/games/darkplaces/Makefile From owner-cvs-all@FreeBSD.ORG Mon Jul 31 18:27:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F5CE16A4E0; Mon, 31 Jul 2006 18:27:53 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4307043D79; Mon, 31 Jul 2006 18:27:48 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VIRmxh055747; Mon, 31 Jul 2006 18:27:48 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VIRmqf055746; Mon, 31 Jul 2006 18:27:48 GMT (envelope-from novel) Message-Id: <200607311827.k6VIRmqf055746@repoman.freebsd.org> From: Roman Bogorodskiy Date: Mon, 31 Jul 2006 18:27: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/ftp/lftp Makefile distinfo pkg-plist ports/ftp/lftp/files patch-post-config.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, 31 Jul 2006 18:27:53 -0000 novel 2006-07-31 18:27:47 UTC FreeBSD ports repository Modified files: ftp/lftp Makefile distinfo pkg-plist Removed files: ftp/lftp/files patch-post-config.h Log: - Update to 3.5.2 - Fix pkg-plist and clean up empty environment varibales - Fix bug with man page - Due to buggy readline in world-6 sources, force readline to be installed from ports PR: 101107 Submitted by: Dmitry A. Yanko (maintainer) Revision Changes Path 1.110 +5 -2 ports/ftp/lftp/Makefile 1.74 +6 -6 ports/ftp/lftp/distinfo 1.2 +0 -11 ports/ftp/lftp/files/patch-post-config.h (dead) 1.26 +22 -22 ports/ftp/lftp/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Jul 31 18:40:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A01316A4DE; Mon, 31 Jul 2006 18:40:53 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28C3743D45; Mon, 31 Jul 2006 18:40:53 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VIer56056586; Mon, 31 Jul 2006 18:40:53 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VIerGr056584; Mon, 31 Jul 2006 18:40:53 GMT (envelope-from novel) Message-Id: <200607311840.k6VIerGr056584@repoman.freebsd.org> From: Roman Bogorodskiy Date: Mon, 31 Jul 2006 18:40: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 Makefile ports/devel/pear-PEAR_Info 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, 31 Jul 2006 18:40:53 -0000 novel 2006-07-31 18:40:52 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/pear-PEAR_Info Makefile distinfo pkg-descr Log: This package generates a comprehensive information page for your current PEAR install. * The format for the page is similar to that for phpinfo() except using PEAR colors. * Has complete PEAR Credits (based on the packages you have installed). * Will show if there is a newer version than the one presently installed (and what its state is) * Each package has an anchor in the form pkg_PackageName - where PackageName is a case-sensitive PEAR package name With a few parameters, the entire package.xml is automatically updated with a listing of all files in a package. WWW: http://pear.php.net/package/PEAR_Info/ PR: ports/101102 Submitted by: chinsan Revision Changes Path 1.2367 +1 -0 ports/devel/Makefile 1.1 +25 -0 ports/devel/pear-PEAR_Info/Makefile (new) 1.1 +3 -0 ports/devel/pear-PEAR_Info/distinfo (new) 1.1 +15 -0 ports/devel/pear-PEAR_Info/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Mon Jul 31 18:41:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 801D616A4DA; Mon, 31 Jul 2006 18:41:00 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E73543D46; Mon, 31 Jul 2006 18:41:00 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VIf0XH056669; Mon, 31 Jul 2006 18:41:00 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VIf08Q056668; Mon, 31 Jul 2006 18:41:00 GMT (envelope-from novel) Message-Id: <200607311841.k6VIf08Q056668@repoman.freebsd.org> From: Roman Bogorodskiy Date: Mon, 31 Jul 2006 18:41: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, 31 Jul 2006 18:41:00 -0000 novel 2006-07-31 18:41:00 UTC FreeBSD ports repository Modified files: . modules Log: pear-PEAR_Info --> ports/devel/pear-PEAR_Info Revision Changes Path 1.15819 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Jul 31 18:48:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2979416A4DE; Mon, 31 Jul 2006 18:48:33 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B318D43D4C; Mon, 31 Jul 2006 18:48:32 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VImWgC057104; Mon, 31 Jul 2006 18:48:32 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VImW8Q057103; Mon, 31 Jul 2006 18:48:32 GMT (envelope-from ahze) Message-Id: <200607311848.k6VImW8Q057103@repoman.freebsd.org> From: Michael Johnson Date: Mon, 31 Jul 2006 18:48: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/x11/gnome-desktop 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, 31 Jul 2006 18:48:33 -0000 ahze 2006-07-31 18:48:32 UTC FreeBSD ports repository Modified files: x11/gnome-desktop Makefile distinfo pkg-plist Log: - Update to 2.14.3 Revision Changes Path 1.54 +2 -2 ports/x11/gnome-desktop/Makefile 1.39 +3 -3 ports/x11/gnome-desktop/distinfo 1.34 +3 -0 ports/x11/gnome-desktop/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Jul 31 18:51:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1E5B16A4DA; Mon, 31 Jul 2006 18:51:42 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7ED0B43D49; Mon, 31 Jul 2006 18:51:38 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VIpcU6057423; Mon, 31 Jul 2006 18:51:38 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VIpc2o057422; Mon, 31 Jul 2006 18:51:38 GMT (envelope-from novel) Message-Id: <200607311851.k6VIpc2o057422@repoman.freebsd.org> From: Roman Bogorodskiy Date: Mon, 31 Jul 2006 18: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/textproc Makefile ports/textproc/pecl-stem 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, 31 Jul 2006 18:51:42 -0000 novel 2006-07-31 18:51:37 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/pecl-stem Makefile distinfo pkg-descr Log: This stem extension for PHP provides stemming capability for a variety of languages using Dr. M.F. Porter's Snowball API, which can be found at: http://snowball.tartarus.org WWW: http://pecl.php.net/package/stem/ PR: ports/101106 Submitted by: chinsan Revision Changes Path 1.1033 +1 -0 ports/textproc/Makefile 1.1 +24 -0 ports/textproc/pecl-stem/Makefile (new) 1.1 +3 -0 ports/textproc/pecl-stem/distinfo (new) 1.1 +5 -0 ports/textproc/pecl-stem/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Mon Jul 31 18:51:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B80E16A4FE; Mon, 31 Jul 2006 18:51:46 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B5FD43D53; Mon, 31 Jul 2006 18:51:44 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VIphIQ057467; Mon, 31 Jul 2006 18:51:43 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VIphJg057466; Mon, 31 Jul 2006 18:51:43 GMT (envelope-from novel) Message-Id: <200607311851.k6VIphJg057466@repoman.freebsd.org> From: Roman Bogorodskiy Date: Mon, 31 Jul 2006 18:51: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: 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, 31 Jul 2006 18:51:46 -0000 novel 2006-07-31 18:51:43 UTC FreeBSD ports repository Modified files: . modules Log: pecl-stem --> ports/textproc/pecl-stem Revision Changes Path 1.15820 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Jul 31 18:53:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 98E4416A4EC; Mon, 31 Jul 2006 18:53:20 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3051443D72; Mon, 31 Jul 2006 18:53:10 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VIrA0g057585; Mon, 31 Jul 2006 18:53:10 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VIrAMJ057580; Mon, 31 Jul 2006 18:53:10 GMT (envelope-from jhb) Message-Id: <200607311853.k6VIrAMJ057580@repoman.freebsd.org> From: John Baldwin Date: Mon, 31 Jul 2006 18:53: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/dev/bce if_bce.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, 31 Jul 2006 18:53:20 -0000 jhb 2006-07-31 18:53:09 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/bce if_bce.c Log: MFC: Expand locking coverage to cover if_drv_flags in a few places where it wasn't locked. Revision Changes Path 1.2.2.5 +8 -4 src/sys/dev/bce/if_bce.c From owner-cvs-all@FreeBSD.ORG Mon Jul 31 18:53:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C014416A5A7; Mon, 31 Jul 2006 18:53:55 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E22C43D46; Mon, 31 Jul 2006 18:53:55 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VIrt8G057617; Mon, 31 Jul 2006 18:53:55 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VIrttg057616; Mon, 31 Jul 2006 18:53:55 GMT (envelope-from jhb) Message-Id: <200607311853.k6VIrttg057616@repoman.freebsd.org> From: John Baldwin Date: Mon, 31 Jul 2006 18:53:55 +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 subr_autoconf.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, 31 Jul 2006 18:53:55 -0000 jhb 2006-07-31 18:53:55 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern subr_autoconf.c Log: MFC: Add a mutex to protect the list of interrupt config hooks. Revision Changes Path 1.22.2.1 +21 -11 src/sys/kern/subr_autoconf.c From owner-cvs-all@FreeBSD.ORG Mon Jul 31 18:55:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50C0616A4DA; Mon, 31 Jul 2006 18:55:15 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EECB343D45; Mon, 31 Jul 2006 18:55:14 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VItESg057752; Mon, 31 Jul 2006 18:55:14 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VItEo7057751; Mon, 31 Jul 2006 18:55:14 GMT (envelope-from jhb) Message-Id: <200607311855.k6VItEo7057751@repoman.freebsd.org> From: John Baldwin Date: Mon, 31 Jul 2006 18:55: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/amd64/amd64 machdep.c src/sys/i386/i386 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: Mon, 31 Jul 2006 18:55:15 -0000 jhb 2006-07-31 18:55:14 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/amd64/amd64 machdep.c sys/i386/i386 machdep.c Log: MFC: Fix hw.physmem/MAXMEM usage on systems with SMAP (including systems with ACPI). Revision Changes Path 1.638.2.8 +7 -7 src/sys/amd64/amd64/machdep.c 1.616.2.6 +10 -1 src/sys/i386/i386/machdep.c From owner-cvs-all@FreeBSD.ORG Mon Jul 31 18:59:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6469016A4DA; Mon, 31 Jul 2006 18:59:16 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3E1543D46; Mon, 31 Jul 2006 18:59:15 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VIxFeV057931; Mon, 31 Jul 2006 18:59:15 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VIxFGY057930; Mon, 31 Jul 2006 18:59:15 GMT (envelope-from ahze) Message-Id: <200607311859.k6VIxFGY057930@repoman.freebsd.org> From: Michael Johnson Date: Mon, 31 Jul 2006 18:59: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/gnome-menus Makefile distinfo pkg-plist ports/x11/gnome-menus/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: Mon, 31 Jul 2006 18:59:16 -0000 ahze 2006-07-31 18:59:15 UTC FreeBSD ports repository Modified files: x11/gnome-menus Makefile distinfo pkg-plist x11/gnome-menus/files patch-Makefile.in Log: - Update to 2.14.3 Revision Changes Path 1.8 +1 -1 ports/x11/gnome-menus/Makefile 1.7 +3 -3 ports/x11/gnome-menus/distinfo 1.3 +5 -5 ports/x11/gnome-menus/files/patch-Makefile.in 1.7 +0 -1 ports/x11/gnome-menus/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Jul 31 19:01:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A10916A4E1; Mon, 31 Jul 2006 19:01:26 +0000 (UTC) (envelope-from joel@FreeBSD.org) Received: from av11-2-sn2.hy.skanova.net (av11-2-sn2.hy.skanova.net [81.228.8.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7758743D53; Mon, 31 Jul 2006 19:01:25 +0000 (GMT) (envelope-from joel@FreeBSD.org) Received: by av11-2-sn2.hy.skanova.net (Postfix, from userid 502) id DA1A7381AA; Mon, 31 Jul 2006 21:01:23 +0200 (CEST) Received: from smtp4-2-sn2.hy.skanova.net (smtp4-2-sn2.hy.skanova.net [81.228.8.93]) by av11-2-sn2.hy.skanova.net (Postfix) with ESMTP id CBF3F37E74; Mon, 31 Jul 2006 21:01:23 +0200 (CEST) Received: from dude.automatvapen.se (81-235-165-101-no21.tbcn.telia.com [81.235.165.101]) by smtp4-2-sn2.hy.skanova.net (Postfix) with ESMTP id 9FB1A37E47; Mon, 31 Jul 2006 21:01:23 +0200 (CEST) From: Joel Dahl To: Dmitry Morozovsky In-Reply-To: <20060731212844.L66129@woozle.rinet.ru> References: <200607280632.k6S6Wf23091308@repoman.freebsd.org> <20060731212844.L66129@woozle.rinet.ru> Content-Type: text/plain Date: Mon, 31 Jul 2006 21:01:23 +0200 Message-Id: <1154372483.666.3.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Cc: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/articles/contributors contrib.core.sgml contrib.corealumni.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, 31 Jul 2006 19:01:26 -0000 On Mon, 2006-07-31 at 21:30 +0400, Dmitry Morozovsky wrote: > On Fri, 28 Jul 2006, Joel Dahl wrote: > > JD> joel 2006-07-28 06:32:41 UTC > JD> > JD> FreeBSD doc repository > JD> > JD> Modified files: > JD> en_US.ISO8859-1/articles/contributors contrib.core.sgml > JD> contrib.corealumni.sgml > JD> Log: > JD> Update the Core Team and the Core Team Alumni. > > Doesn't it (results of new Core elections) worth news item? Yes, we should announce it on the front page. I'm a bit busy right now, so, any takers? -- Joel From owner-cvs-all@FreeBSD.ORG Mon Jul 31 19:15:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D44A16A4E8; Mon, 31 Jul 2006 19:15:10 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52F0D43D6E; Mon, 31 Jul 2006 19:15:10 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VJFA0u060602; Mon, 31 Jul 2006 19:15:10 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VJFAp9060601; Mon, 31 Jul 2006 19:15:10 GMT (envelope-from yar) Message-Id: <200607311915.k6VJFAp9060601@repoman.freebsd.org> From: Yar Tikhiy Date: Mon, 31 Jul 2006 19:15: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: src/libexec/telnetd Makefile src/usr.sbin/inetd 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, 31 Jul 2006 19:15:10 -0000 yar 2006-07-31 19:15:10 UTC FreeBSD src repository Modified files: libexec/telnetd Makefile usr.sbin/inetd Makefile Log: inetd and telnetd are not included in the standard release crunched floppies, but they can be included as options in src/release/picobsd (omitted by default though.) Therefore preserve the RELEASE_CRUNCH knob in their Makefiles, but tell its real purpose in a comment. Revision Changes Path 1.31 +3 -0 src/libexec/telnetd/Makefile 1.35 +1 -0 src/usr.sbin/inetd/Makefile From owner-cvs-all@FreeBSD.ORG Mon Jul 31 19:28:45 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E25616A4DD; Mon, 31 Jul 2006 19:28:45 +0000 (UTC) (envelope-from aaron@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1F6A43D49; Mon, 31 Jul 2006 19:28:44 +0000 (GMT) (envelope-from aaron@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VJSiSj061189; Mon, 31 Jul 2006 19:28:44 GMT (envelope-from aaron@repoman.freebsd.org) Received: (from aaron@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VJSi5T061188; Mon, 31 Jul 2006 19:28:44 GMT (envelope-from aaron) Message-Id: <200607311928.k6VJSi5T061188@repoman.freebsd.org> From: Aaron Dalton Date: Mon, 31 Jul 2006 19:28: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/converters/p5-XML-WBXML Makefile distinfo pkg-plist ports/converters/p5-XML-WBXML/files patch-Makefile.PL patch-WBXML.pm X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Jul 2006 19:28:45 -0000 aaron 2006-07-31 19:28:44 UTC FreeBSD ports repository Modified files: converters/p5-XML-WBXML Makefile distinfo pkg-plist converters/p5-XML-WBXML/files patch-Makefile.PL Removed files: converters/p5-XML-WBXML/files patch-WBXML.pm Log: - Update to v0.03 PR: ports/100947 Submitted by: Gea-Suan Lin Revision Changes Path 1.4 +1 -4 ports/converters/p5-XML-WBXML/Makefile 1.2 +3 -3 ports/converters/p5-XML-WBXML/distinfo 1.3 +2 -8 ports/converters/p5-XML-WBXML/files/patch-Makefile.PL 1.2 +0 -10 ports/converters/p5-XML-WBXML/files/patch-WBXML.pm (dead) 1.2 +1 -0 ports/converters/p5-XML-WBXML/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Jul 31 19:39:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1187216A4E6; Mon, 31 Jul 2006 19:39:50 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8258B43DB5; Mon, 31 Jul 2006 19:39:31 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VJdTRd061772; Mon, 31 Jul 2006 19:39:29 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VJdTMe061771; Mon, 31 Jul 2006 19:39:29 GMT (envelope-from ahze) Message-Id: <200607311939.k6VJdTMe061771@repoman.freebsd.org> From: Michael Johnson Date: Mon, 31 Jul 2006 19:39: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/x11/gnome-panel 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, 31 Jul 2006 19:39:50 -0000 ahze 2006-07-31 19:39:29 UTC FreeBSD ports repository Modified files: x11/gnome-panel Makefile distinfo pkg-plist Log: - Update to 2.14.3 Revision Changes Path 1.70 +2 -2 ports/x11/gnome-panel/Makefile 1.40 +3 -3 ports/x11/gnome-panel/distinfo 1.37 +11 -0 ports/x11/gnome-panel/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Jul 31 19:43:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE7B716A4DD; Mon, 31 Jul 2006 19:43:49 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (cell.sick.ru [217.72.144.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A75B43D70; Mon, 31 Jul 2006 19:43:23 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (glebius@localhost [127.0.0.1]) by cell.sick.ru (8.13.4/8.13.3) with ESMTP id k6VJhCTv004078 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 31 Jul 2006 23:43:12 +0400 (MSD) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.sick.ru (8.13.4/8.13.1/Submit) id k6VJhBRv004077; Mon, 31 Jul 2006 23:43:11 +0400 (MSD) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.sick.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Mon, 31 Jul 2006 23:43:11 +0400 From: Gleb Smirnoff To: Robert Watson Message-ID: <20060731194311.GV96644@FreeBSD.org> References: <200607200357.k6K3vwg2039627@repoman.freebsd.org> <20060731131502.GS96644@FreeBSD.org> <20060731144841.Y71432@fledge.watson.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <20060731144841.Y71432@fledge.watson.org> User-Agent: Mutt/1.5.6i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, Pyun YongHyeon Subject: Re: cvs commit: src/sys/dev/em if_em.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, 31 Jul 2006 19:43:50 -0000 On Mon, Jul 31, 2006 at 02:49:05PM +0100, Robert Watson wrote: R> On Mon, 31 Jul 2006, Gleb Smirnoff wrote: R> R> >On Thu, Jul 20, 2006 at 03:57:58AM +0000, Pyun YongHyeon wrote: R> >P> yongari 2006-07-20 03:57:58 UTC R> >P> R> >P> FreeBSD src repository R> >P> R> >P> Modified files: R> >P> sys/dev/em if_em.c R> >P> Log: R> >P> Honor IFF_DRV_OACTIVE in em_start_locked(). R> > R> >Isn't it better to shift this change to the em_start(), to avoid double R> >check of IFF_DRV_RUNNING? Or may be just merge em_start_locked() into the R> >em_start()? R> R> Isn't em_start_locked() called from quite a few different places, including R> the interrupt handler, etc, where the mutex is already held? It is, so the latter idea won't work. However, in all these places we can know the status of IFF_DRV_OACTIVE before calling the start routine. -- Totus tuus, Glebius. GLEBIUS-RIPN GLEB-RIPE From owner-cvs-all@FreeBSD.ORG Mon Jul 31 19:44:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CF2916A4E8; Mon, 31 Jul 2006 19:44:54 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 166C843DB4; Mon, 31 Jul 2006 19:44:23 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VJiDZ0062083; Mon, 31 Jul 2006 19:44:13 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VJiCxV062082; Mon, 31 Jul 2006 19:44:12 GMT (envelope-from novel) Message-Id: <200607311944.k6VJiCxV062082@repoman.freebsd.org> From: Roman Bogorodskiy Date: Mon, 31 Jul 2006 19:44: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/pecl-ssh2 Makefile distinfo ports/security/pecl-ssh2/files patch-config.m4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Jul 2006 19:44:54 -0000 novel 2006-07-31 19:44:12 UTC FreeBSD ports repository Modified files: security/pecl-ssh2 Makefile distinfo Removed files: security/pecl-ssh2/files patch-config.m4 Log: - Update to 0.10 - Pass maintainership to submitter PR: 101112 Submitted by: chinsan Revision Changes Path 1.3 +5 -3 ports/security/pecl-ssh2/Makefile 1.4 +3 -3 ports/security/pecl-ssh2/distinfo 1.2 +0 -11 ports/security/pecl-ssh2/files/patch-config.m4 (dead) From owner-cvs-all@FreeBSD.ORG Mon Jul 31 19:49:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A55916A4E0; Mon, 31 Jul 2006 19:49:19 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0108243D5E; Mon, 31 Jul 2006 19:48:56 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VJmuQ9062412; Mon, 31 Jul 2006 19:48:56 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VJmudk062411; Mon, 31 Jul 2006 19:48:56 GMT (envelope-from novel) Message-Id: <200607311948.k6VJmudk062411@repoman.freebsd.org> From: Roman Bogorodskiy Date: Mon, 31 Jul 2006 19:48: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: 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, 31 Jul 2006 19:49:19 -0000 novel 2006-07-31 19:48:56 UTC FreeBSD ports repository Modified files: . modules Log: pecl-stats --> ports/math/pecl-stats Revision Changes Path 1.15821 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Jul 31 19:49:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F83116A4DA; Mon, 31 Jul 2006 19:49:20 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EA8543DC3; Mon, 31 Jul 2006 19:48:49 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VJmnfw062368; Mon, 31 Jul 2006 19:48:49 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VJmn4t062367; Mon, 31 Jul 2006 19:48:49 GMT (envelope-from novel) Message-Id: <200607311948.k6VJmn4t062367@repoman.freebsd.org> From: Roman Bogorodskiy Date: Mon, 31 Jul 2006 19:48: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/math Makefile ports/math/pecl-stats 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, 31 Jul 2006 19:49:20 -0000 novel 2006-07-31 19:48:49 UTC FreeBSD ports repository Modified files: math Makefile Added files: math/pecl-stats Makefile distinfo pkg-descr Log: This ststs extension for PHP provides few dozens routines for statistical computation. WWW: http://pecl.php.net/package/stats/ PR: ports/101117 Submitted by: chinsan Revision Changes Path 1.410 +1 -0 ports/math/Makefile 1.1 +22 -0 ports/math/pecl-stats/Makefile (new) 1.1 +3 -0 ports/math/pecl-stats/distinfo (new) 1.1 +4 -0 ports/math/pecl-stats/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Mon Jul 31 19:55:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D88FC16A4E1; Mon, 31 Jul 2006 19:55:18 +0000 (UTC) (envelope-from aaron@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7460A43D49; Mon, 31 Jul 2006 19:55:18 +0000 (GMT) (envelope-from aaron@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VJtIdE062796; Mon, 31 Jul 2006 19:55:18 GMT (envelope-from aaron@repoman.freebsd.org) Received: (from aaron@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VJtILu062794; Mon, 31 Jul 2006 19:55:18 GMT (envelope-from aaron) Message-Id: <200607311955.k6VJtILu062794@repoman.freebsd.org> From: Aaron Dalton Date: Mon, 31 Jul 2006 19:55: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-Tree-Binary-Dictionary 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, 31 Jul 2006 19:55:19 -0000 aaron 2006-07-31 19:55:18 UTC FreeBSD ports repository Modified files: devel/p5-Tree-Binary-Dictionary Makefile distinfo Log: - Update to v1.01 - Same 'make test' errors exist as in previous versions. Reporting to vendor. PR: ports/101083 Submitted by: Gea-Suan Lin Revision Changes Path 1.2 +3 -3 ports/devel/p5-Tree-Binary-Dictionary/Makefile 1.2 +3 -3 ports/devel/p5-Tree-Binary-Dictionary/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 19:55:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.ORG Delivered-To: cvs-all@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D63716A4DA; Mon, 31 Jul 2006 19:55:51 +0000 (UTC) (envelope-from wb@freebie.xs4all.nl) Received: from smtp-vbr3.xs4all.nl (smtp-vbr3.xs4all.nl [194.109.24.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4226C43D46; Mon, 31 Jul 2006 19:55:50 +0000 (GMT) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by smtp-vbr3.xs4all.nl (8.13.6/8.13.6) with ESMTP id k6VJtmwe049179; Mon, 31 Jul 2006 21:55:48 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.13.6/8.13.3) with ESMTP id k6VJtllW002214; Mon, 31 Jul 2006 21:55:47 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: (from wb@localhost) by freebie.xs4all.nl (8.13.6/8.13.6/Submit) id k6VJtlM1002213; Mon, 31 Jul 2006 21:55:47 +0200 (CEST) (envelope-from wb) Date: Mon, 31 Jul 2006 21:55:47 +0200 From: Wilko Bulte To: Dmitry Morozovsky Message-ID: <20060731195547.GA2178@freebie.xs4all.nl> References: <200607280632.k6S6Wf23091308@repoman.freebsd.org> <20060731212844.L66129@woozle.rinet.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060731212844.L66129@woozle.rinet.ru> User-Agent: Mutt/1.5.11 X-Virus-Scanned: by XS4ALL Virus Scanner Cc: doc-committers@FreeBSD.ORG, cvs-doc@FreeBSD.ORG, cvs-all@FreeBSD.ORG, Joel Dahl Subject: Re: cvs commit: doc/en_US.ISO8859-1/articles/contributors contrib.core.sgml contrib.corealumni.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, 31 Jul 2006 19:55:51 -0000 On Mon, Jul 31, 2006 at 09:30:18PM +0400, Dmitry Morozovsky wrote.. > On Fri, 28 Jul 2006, Joel Dahl wrote: > > JD> joel 2006-07-28 06:32:41 UTC > JD> > JD> FreeBSD doc repository > JD> > JD> Modified files: > JD> en_US.ISO8859-1/articles/contributors contrib.core.sgml > JD> contrib.corealumni.sgml > JD> Log: > JD> Update the Core Team and the Core Team Alumni. > > Doesn't it (results of new Core elections) worth news item? One could think so yes :) No need to be stealthy, although I love our new flat-black core helicopter 8-P -- Wilko Bulte wilko@FreeBSD.org From owner-cvs-all@FreeBSD.ORG Mon Jul 31 19:56:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.ORG Delivered-To: cvs-all@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 395E716A4E6; Mon, 31 Jul 2006 19:56:22 +0000 (UTC) (envelope-from wb@freebie.xs4all.nl) Received: from smtp-vbr16.xs4all.nl (smtp-vbr16.xs4all.nl [194.109.24.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id A520F43D8A; Mon, 31 Jul 2006 19:56:10 +0000 (GMT) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by smtp-vbr16.xs4all.nl (8.13.6/8.13.6) with ESMTP id k6VJu9on072182; Mon, 31 Jul 2006 21:56:09 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.13.6/8.13.3) with ESMTP id k6VJu847002225; Mon, 31 Jul 2006 21:56:08 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: (from wb@localhost) by freebie.xs4all.nl (8.13.6/8.13.6/Submit) id k6VJu8g9002224; Mon, 31 Jul 2006 21:56:08 +0200 (CEST) (envelope-from wb) Date: Mon, 31 Jul 2006 21:56:08 +0200 From: Wilko Bulte To: Joel Dahl Message-ID: <20060731195608.GB2178@freebie.xs4all.nl> References: <200607280632.k6S6Wf23091308@repoman.freebsd.org> <20060731212844.L66129@woozle.rinet.ru> <1154372483.666.3.camel@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1154372483.666.3.camel@localhost> User-Agent: Mutt/1.5.11 X-Virus-Scanned: by XS4ALL Virus Scanner Cc: doc-committers@FreeBSD.ORG, Dmitry Morozovsky , cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: Re: cvs commit: doc/en_US.ISO8859-1/articles/contributors contrib.core.sgml contrib.corealumni.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, 31 Jul 2006 19:56:22 -0000 On Mon, Jul 31, 2006 at 09:01:23PM +0200, Joel Dahl wrote.. > On Mon, 2006-07-31 at 21:30 +0400, Dmitry Morozovsky wrote: > > On Fri, 28 Jul 2006, Joel Dahl wrote: > > > > JD> joel 2006-07-28 06:32:41 UTC > > JD> > > JD> FreeBSD doc repository > > JD> > > JD> Modified files: > > JD> en_US.ISO8859-1/articles/contributors contrib.core.sgml > > JD> contrib.corealumni.sgml > > JD> Log: > > JD> Update the Core Team and the Core Team Alumni. > > > > Doesn't it (results of new Core elections) worth news item? > > Yes, we should announce it on the front page. I'm a bit busy right now, > so, any takers? And that, my dear friend, will get worse.. -- Wilko Bulte wilko@FreeBSD.org From owner-cvs-all@FreeBSD.ORG Mon Jul 31 20:03:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 798BA16A4DE; Mon, 31 Jul 2006 20:03:28 +0000 (UTC) (envelope-from aaron@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B792643D6D; Mon, 31 Jul 2006 20:03:27 +0000 (GMT) (envelope-from aaron@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VK3RN8064479; Mon, 31 Jul 2006 20:03:27 GMT (envelope-from aaron@repoman.freebsd.org) Received: (from aaron@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VK3RPA064478; Mon, 31 Jul 2006 20:03:27 GMT (envelope-from aaron) Message-Id: <200607312003.k6VK3RPA064478@repoman.freebsd.org> From: Aaron Dalton Date: Mon, 31 Jul 2006 20:03: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/textproc/p5-CSS-Squish 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, 31 Jul 2006 20:03:28 -0000 aaron 2006-07-31 20:03:27 UTC FreeBSD ports repository Modified files: textproc/p5-CSS-Squish Makefile distinfo Log: - Update to v0.05 Revision Changes Path 1.2 +1 -1 ports/textproc/p5-CSS-Squish/Makefile 1.2 +3 -3 ports/textproc/p5-CSS-Squish/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 20:05:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2406016A4DD; Mon, 31 Jul 2006 20:05:13 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B909843D60; Mon, 31 Jul 2006 20:05:12 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VK5Ccv064549; Mon, 31 Jul 2006 20:05:12 GMT (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VK5CI3064548; Mon, 31 Jul 2006 20:05:12 GMT (envelope-from linimon) Message-Id: <200607312005.k6VK5CI3064548@repoman.freebsd.org> From: Mark Linimon Date: Mon, 31 Jul 2006 20:05: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/Tools/portbuild/scripts processonelog X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Jul 2006 20:05:13 -0000 linimon 2006-07-31 20:05:12 UTC FreeBSD ports repository Modified files: Tools/portbuild/scripts processonelog Log: Catch another case of 'disk full'. Revision Changes Path 1.9 +2 -2 ports/Tools/portbuild/scripts/processonelog From owner-cvs-all@FreeBSD.ORG Mon Jul 31 20:12:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A786516A4DD; Mon, 31 Jul 2006 20:12:16 +0000 (UTC) (envelope-from aaron@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E0E143D4C; Mon, 31 Jul 2006 20:12:16 +0000 (GMT) (envelope-from aaron@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VKCG28064961; Mon, 31 Jul 2006 20:12:16 GMT (envelope-from aaron@repoman.freebsd.org) Received: (from aaron@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VKCGVT064960; Mon, 31 Jul 2006 20:12:16 GMT (envelope-from aaron) Message-Id: <200607312012.k6VKCGVT064960@repoman.freebsd.org> From: Aaron Dalton Date: Mon, 31 Jul 2006 20:12: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/p5-Games-Dissociate 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, 31 Jul 2006 20:12:16 -0000 aaron 2006-07-31 20:12:16 UTC FreeBSD ports repository Modified files: textproc/p5-Games-Dissociate Makefile distinfo Log: - Update to v0.18 - Clean up Makefile Revision Changes Path 1.2 +2 -14 ports/textproc/p5-Games-Dissociate/Makefile 1.2 +3 -3 ports/textproc/p5-Games-Dissociate/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 20:24:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF43B16A4DA; Mon, 31 Jul 2006 20:24:46 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA07143D45; Mon, 31 Jul 2006 20:24:46 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VKOk2Y065487; Mon, 31 Jul 2006 20:24:46 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VKOk5O065486; Mon, 31 Jul 2006 20:24:46 GMT (envelope-from thompsa) Message-Id: <200607312024.k6VKOk5O065486@repoman.freebsd.org> From: Andrew Thompson Date: Mon, 31 Jul 2006 20:24: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/net bridgestp.c bridgestp.h if_bridge.c if_bridgevar.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, 31 Jul 2006 20:24:47 -0000 thompsa 2006-07-31 20:24:46 UTC FreeBSD src repository Modified files: sys/net bridgestp.c bridgestp.h if_bridge.c if_bridgevar.h Log: Add some statistics that are needed to support RFC4188 as part of the SoC2006 work on a bridge monitoring module for BSNMP. Submitted by: shteryana (SoC 2006) Revision Changes Path 1.15 +10 -0 src/sys/net/bridgestp.c 1.3 +2 -0 src/sys/net/bridgestp.h 1.73 +106 -1 src/sys/net/if_bridge.c 1.15 +43 -0 src/sys/net/if_bridgevar.h From owner-cvs-all@FreeBSD.ORG Mon Jul 31 20:26:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 905D416A4DE; Mon, 31 Jul 2006 20:26:46 +0000 (UTC) (envelope-from aaron@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D65E43D49; Mon, 31 Jul 2006 20:26:46 +0000 (GMT) (envelope-from aaron@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VKQkbj065661; Mon, 31 Jul 2006 20:26:46 GMT (envelope-from aaron@repoman.freebsd.org) Received: (from aaron@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VKQkoo065660; Mon, 31 Jul 2006 20:26:46 GMT (envelope-from aaron) Message-Id: <200607312026.k6VKQkoo065660@repoman.freebsd.org> From: Aaron Dalton Date: Mon, 31 Jul 2006 20: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/games/p5-Algorithm-Pair-Swiss 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, 31 Jul 2006 20:26:46 -0000 aaron 2006-07-31 20:26:46 UTC FreeBSD ports repository Modified files: games/p5-Algorithm-Pair-Swiss Makefile distinfo Log: - Update to v0.14 Revision Changes Path 1.3 +1 -1 ports/games/p5-Algorithm-Pair-Swiss/Makefile 1.3 +3 -3 ports/games/p5-Algorithm-Pair-Swiss/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 20:57:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FF2516A4DA; Mon, 31 Jul 2006 20:57:12 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D49043D45; Mon, 31 Jul 2006 20:57:12 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VKvCc1074813; Mon, 31 Jul 2006 20:57:12 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VKvCBa074812; Mon, 31 Jul 2006 20:57:12 GMT (envelope-from ahze) Message-Id: <200607312057.k6VKvCBa074812@repoman.freebsd.org> From: Michael Johnson Date: Mon, 31 Jul 2006 20: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/x11/gnome-session 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, 31 Jul 2006 20:57:12 -0000 ahze 2006-07-31 20:57:12 UTC FreeBSD ports repository Modified files: x11/gnome-session Makefile distinfo Log: - Update to 2.14.3 Revision Changes Path 1.47 +1 -1 ports/x11/gnome-session/Makefile 1.32 +3 -3 ports/x11/gnome-session/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 20:57:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A96316A4DA; Mon, 31 Jul 2006 20:57:25 +0000 (UTC) (envelope-from aaron@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA14243D45; Mon, 31 Jul 2006 20:57:24 +0000 (GMT) (envelope-from aaron@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VKvO7p074851; Mon, 31 Jul 2006 20:57:24 GMT (envelope-from aaron@repoman.freebsd.org) Received: (from aaron@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VKvOrR074850; Mon, 31 Jul 2006 20:57:24 GMT (envelope-from aaron) Message-Id: <200607312057.k6VKvOrR074850@repoman.freebsd.org> From: Aaron Dalton Date: Mon, 31 Jul 2006 20:57: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/p5-Net-EPP-Client 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, 31 Jul 2006 20:57:25 -0000 aaron 2006-07-31 20:57:24 UTC FreeBSD ports repository Modified files: net/p5-Net-EPP-Client Makefile distinfo Log: - Update to v0.06 Revision Changes Path 1.2 +1 -1 ports/net/p5-Net-EPP-Client/Makefile 1.2 +3 -3 ports/net/p5-Net-EPP-Client/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 21:20:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4005416A501; Mon, 31 Jul 2006 21:20:49 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB40D43D49; Mon, 31 Jul 2006 21:20:48 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VLKmd9080279; Mon, 31 Jul 2006 21:20:48 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VLKmME080277; Mon, 31 Jul 2006 21:20:48 GMT (envelope-from ahze) Message-Id: <200607312120.k6VLKmME080277@repoman.freebsd.org> From: Michael Johnson Date: Mon, 31 Jul 2006 21:20: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/x11-toolkits/libwnck 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, 31 Jul 2006 21:20:49 -0000 ahze 2006-07-31 21:20:48 UTC FreeBSD ports repository Modified files: x11-toolkits/libwnck Makefile distinfo Log: - Update to 2.14.3 Revision Changes Path 1.45 +2 -2 ports/x11-toolkits/libwnck/Makefile 1.30 +3 -3 ports/x11-toolkits/libwnck/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 21:24:45 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B76DF16A4DE; Mon, 31 Jul 2006 21:24:45 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D69543D5F; Mon, 31 Jul 2006 21:24:45 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VLOjU8080789; Mon, 31 Jul 2006 21:24:45 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VLOj1W080788; Mon, 31 Jul 2006 21:24:45 GMT (envelope-from ahze) Message-Id: <200607312124.k6VLOj1W080788@repoman.freebsd.org> From: Michael Johnson Date: Mon, 31 Jul 2006 21:24: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/sysutils/pessulus 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, 31 Jul 2006 21:24:45 -0000 ahze 2006-07-31 21:24:45 UTC FreeBSD ports repository Modified files: sysutils/pessulus Makefile distinfo pkg-plist Log: - Update to 0.9.3 Revision Changes Path 1.4 +1 -1 ports/sysutils/pessulus/Makefile 1.3 +3 -3 ports/sysutils/pessulus/distinfo 1.4 +2 -0 ports/sysutils/pessulus/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Jul 31 21:45:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3673D16A4DD; Mon, 31 Jul 2006 21:45:54 +0000 (UTC) (envelope-from aaron@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E212543D55; Mon, 31 Jul 2006 21:45:53 +0000 (GMT) (envelope-from aaron@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VLjrNI084477; Mon, 31 Jul 2006 21:45:53 GMT (envelope-from aaron@repoman.freebsd.org) Received: (from aaron@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VLjrCo084476; Mon, 31 Jul 2006 21:45:53 GMT (envelope-from aaron) Message-Id: <200607312145.k6VLjrCo084476@repoman.freebsd.org> From: Aaron Dalton Date: Mon, 31 Jul 2006 21:45: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/www/p5-WWW-Mechanize-Pluggable 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, 31 Jul 2006 21:45:54 -0000 aaron 2006-07-31 21:45:53 UTC FreeBSD ports repository Modified files: www/p5-WWW-Mechanize-Pluggable Makefile distinfo pkg-plist Log: - Update to v1.01 Revision Changes Path 1.2 +8 -4 ports/www/p5-WWW-Mechanize-Pluggable/Makefile 1.2 +3 -3 ports/www/p5-WWW-Mechanize-Pluggable/distinfo 1.2 +3 -0 ports/www/p5-WWW-Mechanize-Pluggable/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Jul 31 21:48:09 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D006816A4DA; Mon, 31 Jul 2006 21:48:09 +0000 (UTC) (envelope-from aaron@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8AEC843D46; Mon, 31 Jul 2006 21:48:09 +0000 (GMT) (envelope-from aaron@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VLm9ge084651; Mon, 31 Jul 2006 21:48:09 GMT (envelope-from aaron@repoman.freebsd.org) Received: (from aaron@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VLm9xj084650; Mon, 31 Jul 2006 21:48:09 GMT (envelope-from aaron) Message-Id: <200607312148.k6VLm9xj084650@repoman.freebsd.org> From: Aaron Dalton Date: Mon, 31 Jul 2006 21:48: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/www/p5-SWF-Chart 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, 31 Jul 2006 21:48:09 -0000 aaron 2006-07-31 21:48:09 UTC FreeBSD ports repository Modified files: www/p5-SWF-Chart Makefile distinfo Log: - Update to v1.4 Revision Changes Path 1.2 +1 -1 ports/www/p5-SWF-Chart/Makefile 1.3 +3 -3 ports/www/p5-SWF-Chart/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 21:51:57 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0DB9316A4E0; Mon, 31 Jul 2006 21:51:57 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD16543D4C; Mon, 31 Jul 2006 21:51:56 +0000 (GMT) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VLpuDT084907; Mon, 31 Jul 2006 21:51:56 GMT (envelope-from lbr@repoman.freebsd.org) Received: (from lbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VLpuZg084906; Mon, 31 Jul 2006 21:51:56 GMT (envelope-from lbr) Message-Id: <200607312151.k6VLpuZg084906@repoman.freebsd.org> From: Lars Balker Rasmussen Date: Mon, 31 Jul 2006 21:51: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/p5-Catalyst-Plugin-ConfigLoader 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, 31 Jul 2006 21:51:57 -0000 lbr 2006-07-31 21:51:56 UTC FreeBSD ports repository Modified files: www/p5-Catalyst-Plugin-ConfigLoader Makefile distinfo Log: Update to 0.12 Revision Changes Path 1.3 +3 -3 ports/www/p5-Catalyst-Plugin-ConfigLoader/Makefile 1.3 +3 -3 ports/www/p5-Catalyst-Plugin-ConfigLoader/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 22:00:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 85B4A16A4DF; Mon, 31 Jul 2006 22:00:56 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DC2843D46; Mon, 31 Jul 2006 22:00:56 +0000 (GMT) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VM0uAK085335; Mon, 31 Jul 2006 22:00:56 GMT (envelope-from lbr@repoman.freebsd.org) Received: (from lbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VM0u9F085334; Mon, 31 Jul 2006 22:00:56 GMT (envelope-from lbr) Message-Id: <200607312200.k6VM0u9F085334@repoman.freebsd.org> From: Lars Balker Rasmussen Date: Mon, 31 Jul 2006 22:00: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/p5-Catalyst-Plugin-Session-State-Cookie 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, 31 Jul 2006 22:00:56 -0000 lbr 2006-07-31 22:00:56 UTC FreeBSD ports repository Modified files: www/p5-Catalyst-Plugin-Session-State-Cookie Makefile distinfo pkg-plist Log: Update to 0.04 Revision Changes Path 1.5 +6 -6 ports/www/p5-Catalyst-Plugin-Session-State-Cookie/Makefile 1.4 +3 -3 ports/www/p5-Catalyst-Plugin-Session-State-Cookie/distinfo 1.3 +6 -0 ports/www/p5-Catalyst-Plugin-Session-State-Cookie/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Jul 31 22:08:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4399516A4DF; Mon, 31 Jul 2006 22:08:16 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEC3F43D5E; Mon, 31 Jul 2006 22:08:14 +0000 (GMT) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VM8EcA086892; Mon, 31 Jul 2006 22:08:14 GMT (envelope-from lbr@repoman.freebsd.org) Received: (from lbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VM8E0s086891; Mon, 31 Jul 2006 22:08:14 GMT (envelope-from lbr) Message-Id: <200607312208.k6VM8E0s086891@repoman.freebsd.org> From: Lars Balker Rasmussen Date: Mon, 31 Jul 2006 22:08: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/www/p5-Catalyst-Plugin-Session 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, 31 Jul 2006 22:08:16 -0000 lbr 2006-07-31 22:08:14 UTC FreeBSD ports repository Modified files: www/p5-Catalyst-Plugin-Session Makefile distinfo Log: Update to 0.09 Revision Changes Path 1.10 +4 -4 ports/www/p5-Catalyst-Plugin-Session/Makefile 1.7 +3 -3 ports/www/p5-Catalyst-Plugin-Session/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 22:10:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B693116A4E8; Mon, 31 Jul 2006 22:10:14 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 920D343D7F; Mon, 31 Jul 2006 22:10:04 +0000 (GMT) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VMA40U086968; Mon, 31 Jul 2006 22:10:04 GMT (envelope-from lbr@repoman.freebsd.org) Received: (from lbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VMA4Zs086967; Mon, 31 Jul 2006 22:10:04 GMT (envelope-from lbr) Message-Id: <200607312210.k6VMA4Zs086967@repoman.freebsd.org> From: Lars Balker Rasmussen Date: Mon, 31 Jul 2006 22:10: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/www/p5-Catalyst-Plugin-Session-State-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: Mon, 31 Jul 2006 22:10:14 -0000 lbr 2006-07-31 22:10:04 UTC FreeBSD ports repository Modified files: www/p5-Catalyst-Plugin-Session-State-URI Makefile distinfo Log: Update to 0.04 Revision Changes Path 1.5 +3 -3 ports/www/p5-Catalyst-Plugin-Session-State-URI/Makefile 1.4 +3 -3 ports/www/p5-Catalyst-Plugin-Session-State-URI/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 22:27:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D48CD16A4DD; Mon, 31 Jul 2006 22:27:03 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A235743D49; Mon, 31 Jul 2006 22:27:03 +0000 (GMT) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VMR30W087832; Mon, 31 Jul 2006 22:27:03 GMT (envelope-from lbr@repoman.freebsd.org) Received: (from lbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VMR34Z087831; Mon, 31 Jul 2006 22:27:03 GMT (envelope-from lbr) Message-Id: <200607312227.k6VMR34Z087831@repoman.freebsd.org> From: Lars Balker Rasmussen Date: Mon, 31 Jul 2006 22:27: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/www Makefile ports/www/p5-DBIx-Class-HTMLWidget 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, 31 Jul 2006 22:27:03 -0000 lbr 2006-07-31 22:27:03 UTC FreeBSD ports repository Modified files: www Makefile Added files: www/p5-DBIx-Class-HTMLWidget Makefile distinfo pkg-descr pkg-plist Log: New port: www/p5-DBIx-Class-HTMLWidget, Like Class::DBI::FromForm but with DBIx::Class and HTML::Widget Revision Changes Path 1.1532 +1 -0 ports/www/Makefile 1.1 +30 -0 ports/www/p5-DBIx-Class-HTMLWidget/Makefile (new) 1.1 +3 -0 ports/www/p5-DBIx-Class-HTMLWidget/distinfo (new) 1.1 +4 -0 ports/www/p5-DBIx-Class-HTMLWidget/pkg-descr (new) 1.1 +7 -0 ports/www/p5-DBIx-Class-HTMLWidget/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Jul 31 22:27:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C9A316A4DE; Mon, 31 Jul 2006 22:27:23 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEFD743D5A; Mon, 31 Jul 2006 22:27:22 +0000 (GMT) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VMRMHO087876; Mon, 31 Jul 2006 22:27:22 GMT (envelope-from lbr@repoman.freebsd.org) Received: (from lbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VMRMkR087875; Mon, 31 Jul 2006 22:27:22 GMT (envelope-from lbr) Message-Id: <200607312227.k6VMRMkR087875@repoman.freebsd.org> From: Lars Balker Rasmussen Date: Mon, 31 Jul 2006 22:27: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: 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, 31 Jul 2006 22:27:23 -0000 lbr 2006-07-31 22:27:22 UTC FreeBSD ports repository Modified files: . modules Log: p5-DBIx-Class-HTMLWidget --> ports/www/p5-DBIx-Class-HTMLWidget Revision Changes Path 1.15822 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Jul 31 22:31:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 450D516A4DF; Mon, 31 Jul 2006 22:31:53 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3B0643D49; Mon, 31 Jul 2006 22:31:52 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VMVq9X088137; Mon, 31 Jul 2006 22:31:52 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VMVqoZ088136; Mon, 31 Jul 2006 22:31:52 GMT (envelope-from marcus) Message-Id: <200607312231.k6VMVqoZ088136@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 31 Jul 2006 22:31: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/www/gtkhtml3 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, 31 Jul 2006 22:31:53 -0000 marcus 2006-07-31 22:31:52 UTC FreeBSD ports repository Modified files: www/gtkhtml3 Makefile distinfo Log: Update to 3.10.3. Revision Changes Path 1.84 +1 -1 ports/www/gtkhtml3/Makefile 1.43 +3 -3 ports/www/gtkhtml3/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 22:48:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D7FB016A4E6; Mon, 31 Jul 2006 22:48:15 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 876E043D4C; Mon, 31 Jul 2006 22:48:15 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VMmFgE089310; Mon, 31 Jul 2006 22:48:15 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VMmF0c089309; Mon, 31 Jul 2006 22:48:15 GMT (envelope-from miwi) Message-Id: <200607312248.k6VMmF0c089309@repoman.freebsd.org> From: Martin Wilke Date: Mon, 31 Jul 2006 22:48: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/german/wordpress 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, 31 Jul 2006 22:48:16 -0000 miwi 2006-07-31 22:48:15 UTC FreeBSD ports repository Modified files: german/wordpress Makefile Log: - Update to 2.0.4 - Cleanup Makefile Approved by: markus (co-mentor) via irc Revision Changes Path 1.2 +4 -4 ports/german/wordpress/Makefile From owner-cvs-all@FreeBSD.ORG Mon Jul 31 22:53:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93BC216A4E2; Mon, 31 Jul 2006 22:53:12 +0000 (UTC) (envelope-from ru@FreeBSD.org.ua) Received: from frdp.freebsd.org.ua (82.193.106.18.ipnet.kiev.ua [82.193.106.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9019F43D62; Mon, 31 Jul 2006 22:53:08 +0000 (GMT) (envelope-from ru@FreeBSD.org.ua) Received: from frdp.freebsd.org.ua (localhost [127.0.0.1]) by frdp.freebsd.org.ua (8.13.6/8.13.6) with ESMTP id k6VMt1S6094019; Tue, 1 Aug 2006 01:55:01 +0300 (EEST) (envelope-from ru@FreeBSD.org.ua) Received: (from ru@localhost) by frdp.freebsd.org.ua (8.13.6/8.13.6/Submit) id k6VMt0Gs093998; Tue, 1 Aug 2006 01:55:00 +0300 (EEST) (envelope-from ru) Date: Tue, 1 Aug 2006 01:55:00 +0300 From: Ruslan Ermilov To: Yar Tikhiy Message-ID: <20060731225500.GB46645@frdp.freebsd.org.ua> References: <200607302051.k6UKpfNU011188@repoman.freebsd.org> <20060731140951.GC48538@comp.chem.msu.su> <20060731163209.GB50797@comp.chem.msu.su> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="yNb1oOkm5a9FJOVX" Content-Disposition: inline In-Reply-To: <20060731163209.GB50797@comp.chem.msu.su> User-Agent: Mutt/1.5.12-2006-07-14 Cc: cvs-src@FreeBSD.org, Marcel Moolenaar , cvs-all@FreeBSD.org, src-committers@FreeBSD.org, Marcel Moolenaar Subject: Re: cvs commit: src/usr.sbin/kldxref 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, 31 Jul 2006 22:53:12 -0000 --yNb1oOkm5a9FJOVX Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jul 31, 2006 at 08:32:09PM +0400, Yar Tikhiy wrote: > On Mon, Jul 31, 2006 at 09:10:43AM -0700, Marcel Moolenaar wrote: > >=20 > > On Jul 31, 2006, at 7:09 AM, Yar Tikhiy wrote: > >=20 > > >On Sun, Jul 30, 2006 at 08:51:41PM +0000, Marcel Moolenaar wrote: > > >>marcel 2006-07-30 20:51:41 UTC > > >> > > >> FreeBSD src repository > > >> > > >> Modified files: > > >> usr.sbin/kldxref Makefile > > >> Log: > > >> Use NO_SHARED=3DYES to force a static link. > > >> > > >> Pointed out by: ru@ > > >> > > >> Revision Changes Path > > >> 1.9 +1 -1 src/usr.sbin/kldxref/Makefile > > > > > >Perhaps it should be spelled just ``NO_SHARED=3D'' in keeping with > > >the current style? > >=20 > > I really don't know. Those NO_FOO knobs are not logical in their > > use. > >=20 > > > Unfortunately style.Makefile(5) doesn't seem > > >to list this rule... > >=20 > > Feel free to change my commit to whatever you think is right. >=20 > I was sly enough to add Ruslan to Cc in my previous mail :-) > Let's wait for his opinion on this and below. >=20 NO_SHARED is special in that it's usually set for a group of programs, e.g. src/bin/Makefile.inc, and then needs to be reset for some of them, e.g. src/bin/rmail/Makefile. > In the meanwhile I peeked in /usr/share/mk and found that the handling > of NO_* knobs is quite far from being consistent. For example: >=20 > - NO_MAN -- can be just defined ("YES" and "NO" both mean true), > handled at level (note that > is often included separately now and includes some magic); >=20 > - NO_OBJ -- can be just defined to be true, handled in , > which is included from more convenient files like ; >=20 > - NO_SHARED -- must be set to something !=3D "no" for the effect, > handled in . >=20 > I'm unsure if there is a reason behind all this diversity. >=20 NO_MAN is new style, NO_OBJ is old style and should be easily convertable, NO_SHARED is old style and not easily convertable. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --yNb1oOkm5a9FJOVX Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.4 (FreeBSD) iD8DBQFEzopEqRfpzJluFF4RAo5wAJ9ZfNm6zb1IGUEHjfCyUtPz/IFaTwCeNI+5 7puYbvte7dwlqJBrQzgpLRA= =dtF6 -----END PGP SIGNATURE----- --yNb1oOkm5a9FJOVX-- From owner-cvs-all@FreeBSD.ORG Mon Jul 31 22:56:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D202316A4DD; Mon, 31 Jul 2006 22:56:43 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8AA9F43D5E; Mon, 31 Jul 2006 22:56:43 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VMuhjX089755; Mon, 31 Jul 2006 22:56:43 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VMuhuq089754; Mon, 31 Jul 2006 22:56:43 GMT (envelope-from marcus) Message-Id: <200607312256.k6VMuhuq089754@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 31 Jul 2006 22:56: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/databases/evolution-data-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: Mon, 31 Jul 2006 22:56:43 -0000 marcus 2006-07-31 22:56:43 UTC FreeBSD ports repository Modified files: databases/evolution-data-server Makefile distinfo pkg-plist Log: Update to 1.6.3. Revision Changes Path 1.26 +1 -1 ports/databases/evolution-data-server/Makefile 1.14 +3 -3 ports/databases/evolution-data-server/distinfo 1.16 +1 -1 ports/databases/evolution-data-server/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Jul 31 23:00:06 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92C1716A4DD; Mon, 31 Jul 2006 23:00:06 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4AF4343D49; Mon, 31 Jul 2006 23:00:06 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VN06vx089924; Mon, 31 Jul 2006 23:00:06 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VN06sQ089923; Mon, 31 Jul 2006 23:00:06 GMT (envelope-from rwatson) Message-Id: <200607312300.k6VN06sQ089923@repoman.freebsd.org> From: Robert Watson Date: Mon, 31 Jul 2006 23:00: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/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: Mon, 31 Jul 2006 23:00:06 -0000 rwatson 2006-07-31 23:00:05 UTC FreeBSD src repository Modified files: sys/kern uipc_usrreq.c Log: Close a race that occurs when using sendto() to connect and send on a UNIX domain socket at the same time as the remote host is closing the new connections as quickly as they open. Since the connect() and send() paths are non-atomic with respect to another, it is possible for the second thread's close() call to disconnect the two sockets as connect() returns, leading to the consumer (which plans to send()) with a NULL kernel pointer to its proposed peer. As a result, after acquiring the UNIX domain socket subsystem lock, we need to revalidate the connection pointers even though connect() has technically succeed, and reurn an error to say that there's no connection on which to perform the send. We might want to rethink the specific errno number, perhaps ECONNRESET would be better. PR: 100940 Reported by: Young Hyun MFC after: 2 weeks MFC note: Some adaptation will be required Revision Changes Path 1.183 +22 -2 src/sys/kern/uipc_usrreq.c From owner-cvs-all@FreeBSD.ORG Mon Jul 31 23:07:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0FA316A4DA; Mon, 31 Jul 2006 23:07:26 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B04243D49; Mon, 31 Jul 2006 23:07:26 +0000 (GMT) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VN7Q4D091611; Mon, 31 Jul 2006 23:07:26 GMT (envelope-from lbr@repoman.freebsd.org) Received: (from lbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VN7QH4091610; Mon, 31 Jul 2006 23:07:26 GMT (envelope-from lbr) Message-Id: <200607312307.k6VN7QH4091610@repoman.freebsd.org> From: Lars Balker Rasmussen Date: Mon, 31 Jul 2006 23: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/www/p5-Catalyst-Plugin-Session-State-URI 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, 31 Jul 2006 23:07:26 -0000 lbr 2006-07-31 23:07:26 UTC FreeBSD ports repository Modified files: www/p5-Catalyst-Plugin-Session-State-URI Makefile Log: Fix typo... Thanks to cperciva, pointy hat to me. Revision Changes Path 1.6 +1 -1 ports/www/p5-Catalyst-Plugin-Session-State-URI/Makefile From owner-cvs-all@FreeBSD.ORG Mon Jul 31 23:38:02 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1A8116A4DE; Mon, 31 Jul 2006 23:38:02 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC7E643D45; Mon, 31 Jul 2006 23:38:02 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VNc2Ee092990; Mon, 31 Jul 2006 23:38:02 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VNc2iI092989; Mon, 31 Jul 2006 23:38:02 GMT (envelope-from miwi) Message-Id: <200607312338.k6VNc2iI092989@repoman.freebsd.org> From: Martin Wilke Date: Mon, 31 Jul 2006 23:38: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/german/wordpress 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, 31 Jul 2006 23:38:03 -0000 miwi 2006-07-31 23:38:02 UTC FreeBSD ports repository Modified files: german/wordpress Makefile Log: - Bump PORTREVISION - Fix pkg-plist Submitted by: my tinderbox :) Approved by: markus (co-mentor) Revision Changes Path 1.3 +2 -2 ports/german/wordpress/Makefile From owner-cvs-all@FreeBSD.ORG Mon Jul 31 23:44:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D32116A4DD; Mon, 31 Jul 2006 23:44:44 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB3CE43D46; Mon, 31 Jul 2006 23:44:43 +0000 (GMT) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VNih4r093300; Mon, 31 Jul 2006 23:44:43 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VNihef093299; Mon, 31 Jul 2006 23:44:43 GMT (envelope-from mezz) Message-Id: <200607312344.k6VNihef093299@repoman.freebsd.org> From: Jeremy Messenger Date: Mon, 31 Jul 2006 23:44: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/graphics/comix 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, 31 Jul 2006 23:44:44 -0000 mezz 2006-07-31 23:44:43 UTC FreeBSD ports repository Modified files: graphics/comix Makefile distinfo pkg-plist Log: Update to 3.4, see changelog for details: http://comix.sourceforge.net/changelog.html Revision Changes Path 1.20 +3 -1 ports/graphics/comix/Makefile 1.18 +3 -3 ports/graphics/comix/distinfo 1.13 +10 -0 ports/graphics/comix/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Jul 31 23:48:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FA0116A4DF; Mon, 31 Jul 2006 23:48:28 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29D6B43D45; Mon, 31 Jul 2006 23:48:28 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VNmSrA093481; Mon, 31 Jul 2006 23:48:28 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VNmSeZ093480; Mon, 31 Jul 2006 23:48:28 GMT (envelope-from marcus) Message-Id: <200607312348.k6VNmSeZ093480@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 31 Jul 2006 23:48: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/mail/evolution 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, 31 Jul 2006 23:48:28 -0000 marcus 2006-07-31 23:48:27 UTC FreeBSD ports repository Modified files: mail/evolution Makefile distinfo Log: Update to 2.6.3. Revision Changes Path 1.128 +1 -2 ports/mail/evolution/Makefile 1.52 +3 -3 ports/mail/evolution/distinfo From owner-cvs-all@FreeBSD.ORG Mon Jul 31 23:58:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 234ED16A4E1; Mon, 31 Jul 2006 23:58:28 +0000 (UTC) (envelope-from aaron@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CFAD643D45; Mon, 31 Jul 2006 23:58:27 +0000 (GMT) (envelope-from aaron@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6VNwRro093984; Mon, 31 Jul 2006 23:58:27 GMT (envelope-from aaron@repoman.freebsd.org) Received: (from aaron@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6VNwRtW093983; Mon, 31 Jul 2006 23:58:27 GMT (envelope-from aaron) Message-Id: <200607312358.k6VNwRtW093983@repoman.freebsd.org> From: Aaron Dalton Date: Mon, 31 Jul 2006 23:58: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/p5-Net-EPP-Frame 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, 31 Jul 2006 23:58:28 -0000 aaron 2006-07-31 23:58:27 UTC FreeBSD ports repository Modified files: net/p5-Net-EPP-Frame Makefile distinfo pkg-plist Log: - Update to v0.06 Revision Changes Path 1.3 +11 -1 ports/net/p5-Net-EPP-Frame/Makefile 1.3 +3 -3 ports/net/p5-Net-EPP-Frame/distinfo 1.3 +12 -0 ports/net/p5-Net-EPP-Frame/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 1 00:39:41 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACB9C16A4E0 for ; Tue, 1 Aug 2006 00:39:41 +0000 (UTC) (envelope-from pyunyh@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A2A643D49 for ; Tue, 1 Aug 2006 00:39:38 +0000 (GMT) (envelope-from pyunyh@gmail.com) Received: by ug-out-1314.google.com with SMTP id m2so1111442uge for ; Mon, 31 Jul 2006 17:39:37 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:from:to:cc:subject:message-id:reply-to:references:mime-version:content-type:content-disposition:in-reply-to:user-agent; b=omnlnJoKTeZfkNwkbyJdQkG/wiw7ZbMxB/lBGJKuGHlQUXIaTe2dMLNDejSQFuzVz46cZLfPEV/vVYDd50fNHOpsauqNURViEPoFZ9gJXWAzH2DCTHi0yJy3Ql699TgWWxb1fwF3MZZDE+j91yfbO4l+huJFC2ZvgAF5lrlvYAU= Received: by 10.65.83.18 with SMTP id k18mr247578qbl; Mon, 31 Jul 2006 17:39:36 -0700 (PDT) Received: from michelle.cdnetworks.co.kr ( [211.53.35.84]) by mx.gmail.com with ESMTP id 15sm6467189nzp.2006.07.31.17.39.33; Mon, 31 Jul 2006 17:39:36 -0700 (PDT) Received: from michelle.cdnetworks.co.kr (localhost.cdnetworks.co.kr [127.0.0.1]) by michelle.cdnetworks.co.kr (8.13.5/8.13.5) with ESMTP id k710eHTR039896 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 1 Aug 2006 09:40:17 +0900 (KST) (envelope-from pyunyh@gmail.com) Received: (from yongari@localhost) by michelle.cdnetworks.co.kr (8.13.5/8.13.5/Submit) id k710eGHX039895; Tue, 1 Aug 2006 09:40:16 +0900 (KST) (envelope-from pyunyh@gmail.com) Date: Tue, 1 Aug 2006 09:40:16 +0900 From: Pyun YongHyeon To: Gleb Smirnoff Message-ID: <20060801004016.GB39581@cdnetworks.co.kr> References: <200607200357.k6K3vwg2039627@repoman.freebsd.org> <20060731131502.GS96644@FreeBSD.org> <20060731144841.Y71432@fledge.watson.org> <20060731194311.GV96644@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060731194311.GV96644@FreeBSD.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, Robert Watson , cvs-all@FreeBSD.org, Pyun YongHyeon Subject: Re: cvs commit: src/sys/dev/em if_em.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pyunyh@gmail.com List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Aug 2006 00:39:41 -0000 On Mon, Jul 31, 2006 at 11:43:11PM +0400, Gleb Smirnoff wrote: > On Mon, Jul 31, 2006 at 02:49:05PM +0100, Robert Watson wrote: > R> On Mon, 31 Jul 2006, Gleb Smirnoff wrote: > R> > R> >On Thu, Jul 20, 2006 at 03:57:58AM +0000, Pyun YongHyeon wrote: > R> >P> yongari 2006-07-20 03:57:58 UTC > R> >P> > R> >P> FreeBSD src repository > R> >P> > R> >P> Modified files: > R> >P> sys/dev/em if_em.c > R> >P> Log: > R> >P> Honor IFF_DRV_OACTIVE in em_start_locked(). > R> > > R> >Isn't it better to shift this change to the em_start(), to avoid double > R> >check of IFF_DRV_RUNNING? Or may be just merge em_start_locked() into the > R> >em_start()? > R> > R> Isn't em_start_locked() called from quite a few different places, including > R> the interrupt handler, etc, where the mutex is already held? > > It is, so the latter idea won't work. However, in all these places > we can know the status of IFF_DRV_OACTIVE before calling the start > routine. > You're right. Feel free to fix it. I have to solve re(4) issues on sparc64 at the moment... -- Regards, Pyun YongHyeon From owner-cvs-all@FreeBSD.ORG Tue Aug 1 00:43:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E4FDF16A4DE; Tue, 1 Aug 2006 00:43:52 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0FA4543D60; Tue, 1 Aug 2006 00:43:52 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k710hpNI097260; Tue, 1 Aug 2006 00:43:51 GMT (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k710hp3s097259; Tue, 1 Aug 2006 00:43:51 GMT (envelope-from linimon) Message-Id: <200608010043.k710hp3s097259@repoman.freebsd.org> From: Mark Linimon Date: Tue, 1 Aug 2006 00:43: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/editors/vim 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, 01 Aug 2006 00:43:53 -0000 linimon 2006-08-01 00:43:51 UTC FreeBSD ports repository Modified files: editors/vim Makefile Log: Unmark broken on 4.x. There have been 2 user reports that it builds fine on 4.x; further, it has started breaking on 5.x on pointyhat. This now seems to be pointyhat-specific. Revision Changes Path 1.280 +0 -4 ports/editors/vim/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 1 01:18:51 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8A2116A4F4; Tue, 1 Aug 2006 01:18:51 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (vc4-2-0-87.dsl.netrack.net [199.45.160.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76E6343D72; Tue, 1 Aug 2006 01:18:44 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (localhost.village.org [127.0.0.1] (may be forged)) by harmony.bsdimp.com (8.13.4/8.13.4) with ESMTP id k711FZEI033003; Mon, 31 Jul 2006 19:15:35 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Mon, 31 Jul 2006 19:15:58 -0600 (MDT) Message-Id: <20060731.191558.-1253045041.imp@bsdimp.com> To: yar@comp.chem.msu.su From: "M. Warner Losh" In-Reply-To: <20060731163209.GB50797@comp.chem.msu.su> References: <20060731140951.GC48538@comp.chem.msu.su> <20060731163209.GB50797@comp.chem.msu.su> X-Mailer: Mew version 4.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Mon, 31 Jul 2006 19:15:36 -0600 (MDT) Cc: marcel@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, marcel@xcllnt.net, src-committers@freebsd.org, ru@freebsd.org Subject: Re: cvs commit: src/usr.sbin/kldxref 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, 01 Aug 2006 01:18:51 -0000 In message: <20060731163209.GB50797@comp.chem.msu.su> Yar Tikhiy writes: : On Mon, Jul 31, 2006 at 09:10:43AM -0700, Marcel Moolenaar wrote: : > : > On Jul 31, 2006, at 7:09 AM, Yar Tikhiy wrote: : > : > >On Sun, Jul 30, 2006 at 08:51:41PM +0000, Marcel Moolenaar wrote: : > >>marcel 2006-07-30 20:51:41 UTC : > >> : > >> FreeBSD src repository : > >> : > >> Modified files: : > >> usr.sbin/kldxref Makefile : > >> Log: : > >> Use NO_SHARED=YES to force a static link. : > >> : > >> Pointed out by: ru@ : > >> : > >> Revision Changes Path : > >> 1.9 +1 -1 src/usr.sbin/kldxref/Makefile : > > : > >Perhaps it should be spelled just ``NO_SHARED='' in keeping with : > >the current style? : > : > I really don't know. Those NO_FOO knobs are not logical in their : > use. : > : > > Unfortunately style.Makefile(5) doesn't seem : > >to list this rule... : > : > Feel free to change my commit to whatever you think is right. : : I was sly enough to add Ruslan to Cc in my previous mail :-) : Let's wait for his opinion on this and below. : : In the meanwhile I peeked in /usr/share/mk and found that the handling : of NO_* knobs is quite far from being consistent. For example: : : - NO_MAN -- can be just defined ("YES" and "NO" both mean true), : handled at level (note that : is often included separately now and includes some magic); : : - NO_OBJ -- can be just defined to be true, handled in , : which is included from more convenient files like ; : : - NO_SHARED -- must be set to something != "no" for the effect, : handled in . : : I'm unsure if there is a reason behind all this diversity. Hysterical Raisons. It all started out '.if defined(NO_FOO)' or '.if !defined(NO_FOO)'. This is why NO_OBJ and NO_MAN are that way. Then people wanted to override the global default to force things to be linked statically. This was so that things like init could always be static back in the day. This accounts for NO_SHARED handling. It is a miss-mash. That's why we're not supposed to set NO_FOO anymore. MK_FOO is set to yes or no depending on defaults and WITH/WITHOUT_FOO. I'm not sure why ru@ didn't include the above in his big cleanup. Warner From owner-cvs-all@FreeBSD.ORG Tue Aug 1 01:20:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C3D4316A4DD; Tue, 1 Aug 2006 01:20:33 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B87443D45; Tue, 1 Aug 2006 01:20:33 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k711KXPX008573; Tue, 1 Aug 2006 01:20:33 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k711KX83008572; Tue, 1 Aug 2006 01:20:33 GMT (envelope-from itetcu) Message-Id: <200608010120.k711KX83008572@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 1 Aug 2006 01:20: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/www Makefile ports/www/ziproxy Makefile distinfo pkg-descr pkg-plist ports/www/ziproxy/files patch-ziproxy.conf pkg-message.in ziproxy.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, 01 Aug 2006 01:20:33 -0000 itetcu 2006-08-01 01:20:33 UTC FreeBSD ports repository Modified files: www Makefile Added files: www/ziproxy Makefile distinfo pkg-descr pkg-plist www/ziproxy/files patch-ziproxy.conf pkg-message.in ziproxy.in Log: Ziproxy is forwarding, non-caching, compressing proxy server. It squeezes images by converting them to low quality jpegs and optionally can also gzip HTML and other text-like data. It is intended to free bandwidth on dialup connections. WWW: http://ziproxy.sourceforge.net/ PR: ports/101070 Submitted by: Pankov Pavel Revision Changes Path 1.1533 +1 -0 ports/www/Makefile 1.1 +74 -0 ports/www/ziproxy/Makefile (new) 1.1 +3 -0 ports/www/ziproxy/distinfo (new) 1.1 +39 -0 ports/www/ziproxy/files/patch-ziproxy.conf (new) 1.1 +16 -0 ports/www/ziproxy/files/pkg-message.in (new) 1.1 +30 -0 ports/www/ziproxy/files/ziproxy.in (new) 1.1 +6 -0 ports/www/ziproxy/pkg-descr (new) 1.1 +11 -0 ports/www/ziproxy/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 01:20:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00F4C16A4DD; Tue, 1 Aug 2006 01:20:58 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83B5F43D66; Tue, 1 Aug 2006 01:20:56 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k711KuPM008649; Tue, 1 Aug 2006 01:20:56 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k711KuuE008648; Tue, 1 Aug 2006 01:20:56 GMT (envelope-from itetcu) Message-Id: <200608010120.k711KuuE008648@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 1 Aug 2006 01:20: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: 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, 01 Aug 2006 01:20:58 -0000 itetcu 2006-08-01 01:20:56 UTC FreeBSD ports repository Modified files: . modules Log: ziproxy --> ports/www/ziproxy Revision Changes Path 1.15823 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 01:21:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B360816A4DD; Tue, 1 Aug 2006 01:21:41 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (vc4-2-0-87.dsl.netrack.net [199.45.160.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 212E343D6A; Tue, 1 Aug 2006 01:21:37 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (localhost.village.org [127.0.0.1] (may be forged)) by harmony.bsdimp.com (8.13.4/8.13.4) with ESMTP id k711IpXf033027; Mon, 31 Jul 2006 19:18:51 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Mon, 31 Jul 2006 19:19:13 -0600 (MDT) Message-Id: <20060731.191913.139568459.imp@bsdimp.com> To: yar@comp.chem.msu.su From: "M. Warner Losh" In-Reply-To: <20060731170830.GC50797@comp.chem.msu.su> References: <200607311320.k6VDKihd025119@repoman.freebsd.org> <44CE3042.8060509@errno.com> <20060731170830.GC50797@comp.chem.msu.su> X-Mailer: Mew version 4.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Mon, 31 Jul 2006 19:18:51 -0600 (MDT) Cc: sam@errno.com, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/libexec/telnetd 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, 01 Aug 2006 01:21:41 -0000 In message: <20060731170830.GC50797@comp.chem.msu.su> Yar Tikhiy writes: : On Mon, Jul 31, 2006 at 09:30:58AM -0700, Sam Leffler wrote: : > Yar Tikhiy wrote: : > > yar 2006-07-31 13:20:44 UTC : > > : > > FreeBSD src repository : > > : > > Modified files: : > > libexec/telnetd Makefile : > > Log: : > > telnetd(8) doesn't really go to the crunched floppies, : > > so its Makefile needn't test for RELEASE_CRUNCH. : > : > What about folks building crunchgen'd images w/ telnetd; is there an : > equivalent way to do the same thing w/ the new build knobs? : : I'd suggest using WITHOUT_CRYPT=yes, it will have the same effect : for telnetd. Anyway, the RELEASE_CRUNCH knob's coverage is rather : limited, it's respected by only those parts of src/ that are included : in the standard boot floppies--telnetd was just an exception. The : other exception is inetd, which puts its IPSEC stuff under : RELEASE_CRUNCH. The better way would be to introduce the : MK_IPSEC_SUPPORT knob. RELEASE_CRUNCH could be mostly handled in : a single place then. Few tools build in a really special way if : RELEASE_CRUNCH is defined; most tools just have crypto, IPX etc : stuff omitted from them. We should test "MK_CRYPT" or "MK_IPSEC_SUPPORT" in the makefiles, set via WITH/WITHOUT_CRYPT/IPSEC_SUPPORT in configuration files. Warner From owner-cvs-all@FreeBSD.ORG Tue Aug 1 01:22:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9132E16A500; Tue, 1 Aug 2006 01:22:13 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (vc4-2-0-87.dsl.netrack.net [199.45.160.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00DE643D60; Tue, 1 Aug 2006 01:22:07 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (localhost.village.org [127.0.0.1] (may be forged)) by harmony.bsdimp.com (8.13.4/8.13.4) with ESMTP id k711Hebo033015; Mon, 31 Jul 2006 19:17:40 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Mon, 31 Jul 2006 19:18:03 -0600 (MDT) Message-Id: <20060731.191803.270754578.imp@bsdimp.com> To: marcel@xcllnt.net From: "M. Warner Losh" In-Reply-To: <8F70D2AC-029E-4829-A775-600D6AABE69E@xcllnt.net> References: <20060731163209.GB50797@comp.chem.msu.su> <8F70D2AC-029E-4829-A775-600D6AABE69E@xcllnt.net> X-Mailer: Mew version 4.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Mon, 31 Jul 2006 19:17:40 -0600 (MDT) Cc: marcel@FreeBSD.org, yar@comp.chem.msu.su, cvs-all@FreeBSD.org, src-committers@FreeBSD.org, ru@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/kldxref 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, 01 Aug 2006 01:22:13 -0000 In message: <8F70D2AC-029E-4829-A775-600D6AABE69E@xcllnt.net> Marcel Moolenaar writes: : I think the problem is inherent when the existence of the variable : counts and not its value. It's not intuitive and people use it in : different ways because of that. I personally like something simple : like SHARED=NO or SHARED=YES. The lack of definition then meaning : the default setting. This is trivially implemented with SHARED?=YES. : Anyway: that's just me... NO_SHARED=no has been a long-running joke around the office. However, going to a simple SHARED=?yes/no won't work either. It is inconsistant with the new world order. I'd expecte that MK_SHARED=yes/no would be the right thing to do, but there may be parse time issues that makes it hard to do this simple fix.. Warner From owner-cvs-all@FreeBSD.ORG Tue Aug 1 01:22:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D58C16A4E0; Tue, 1 Aug 2006 01:22:35 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9A1E43D5A; Tue, 1 Aug 2006 01:22:28 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k711MSFZ008825; Tue, 1 Aug 2006 01:22:28 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k711MSui008824; Tue, 1 Aug 2006 01:22:28 GMT (envelope-from clsung) Message-Id: <200608010122.k711MSui008824@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 01:22: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/misc/pear-Services_Weather 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, 01 Aug 2006 01:22:35 -0000 clsung 2006-08-01 01:22:28 UTC FreeBSD ports repository Modified files: misc/pear-Services_Weather Makefile distinfo Log: - Update to 1.4.0 - Take maintainership PR: ports/101086 Submitted by: maintainer (chinsan ) Revision Changes Path 1.7 +8 -9 ports/misc/pear-Services_Weather/Makefile 1.6 +3 -3 ports/misc/pear-Services_Weather/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 01:23:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA31616A4DE; Tue, 1 Aug 2006 01:23:39 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92D9843D49; Tue, 1 Aug 2006 01:23:39 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k711NdOs008899; Tue, 1 Aug 2006 01:23:39 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k711NdPV008898; Tue, 1 Aug 2006 01:23:39 GMT (envelope-from obrien) Message-Id: <200608010123.k711NdPV008898@repoman.freebsd.org> From: "David E. O'Brien" Date: Tue, 1 Aug 2006 01:23: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/i386/i386 identcpu.c src/sys/amd64/amd64 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: Tue, 01 Aug 2006 01:23:40 -0000 obrien 2006-08-01 01:23:39 UTC FreeBSD src repository Modified files: sys/i386/i386 identcpu.c sys/amd64/amd64 identcpu.c Log: Correct spelling of 3DNow!. Revision Changes Path 1.148 +2 -2 src/sys/amd64/amd64/identcpu.c 1.168 +2 -2 src/sys/i386/i386/identcpu.c From owner-cvs-all@FreeBSD.ORG Tue Aug 1 01:24:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F14116A4F1; Tue, 1 Aug 2006 01:24:21 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2939843D46; Tue, 1 Aug 2006 01:24:21 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k711OLJm008939; Tue, 1 Aug 2006 01:24:21 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k711OLSg008938; Tue, 1 Aug 2006 01:24:21 GMT (envelope-from itetcu) Message-Id: <200608010124.k711OLSg008938@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 1 Aug 2006 01:24: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/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, 01 Aug 2006 01:24:21 -0000 itetcu 2006-08-01 01:24:21 UTC FreeBSD doc repository (ports committer) Modified files: en_US.ISO8859-1/articles/contributors contrib.additional.sgml Log: Add Pavel Pankov for www/ziproxy Revision Changes Path 1.596 +5 -0 doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml From owner-cvs-all@FreeBSD.ORG Tue Aug 1 01:28:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF02516A4DA; Tue, 1 Aug 2006 01:28:51 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7727A43D49; Tue, 1 Aug 2006 01:28:51 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k711SpmH009205; Tue, 1 Aug 2006 01:28:51 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k711SpfJ009204; Tue, 1 Aug 2006 01:28:51 GMT (envelope-from vanilla) Message-Id: <200608010128.k711SpfJ009204@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Tue, 1 Aug 2006 01:28: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/chinese/irssi Makefile ports/chinese/irssi/files patch-utf8_break X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 01 Aug 2006 01:28:51 -0000 vanilla 2006-08-01 01:28:51 UTC FreeBSD ports repository Modified files: chinese/irssi Makefile Added files: chinese/irssi/files patch-utf8_break Log: Fix CJK length on utf8 mode. PR: ports/101126 Submitted by: mhsin at mhsin.com Revision Changes Path 1.26 +3 -2 ports/chinese/irssi/Makefile 1.1 +11 -0 ports/chinese/irssi/files/patch-utf8_break (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 01:31:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A01F216A4DF; Tue, 1 Aug 2006 01:31:25 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5845D43D46; Tue, 1 Aug 2006 01:31:25 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k711VPnw009464; Tue, 1 Aug 2006 01:31:25 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k711VPuw009463; Tue, 1 Aug 2006 01:31:25 GMT (envelope-from itetcu) Message-Id: <200608010131.k711VPuw009463@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 1 Aug 2006 01: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/hungarian/ispell Makefile distinfo ports/hungarian/ispell/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: Tue, 01 Aug 2006 01:31:25 -0000 itetcu 2006-08-01 01:31:25 UTC FreeBSD ports repository Modified files: hungarian/ispell Makefile distinfo hungarian/ispell/files patch-Makefile Log: Update to 1.0 PR: ports/101055 Submitted by: Janos Mohacsi (maintainer) Revision Changes Path 1.7 +2 -2 ports/hungarian/ispell/Makefile 1.7 +3 -3 ports/hungarian/ispell/distinfo 1.5 +101 -37 ports/hungarian/ispell/files/patch-Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 1 01:37:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA40916A4DE; Tue, 1 Aug 2006 01:37:10 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80CA143D46; Tue, 1 Aug 2006 01:37:10 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k711bAjc009766; Tue, 1 Aug 2006 01:37:10 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k711bA04009765; Tue, 1 Aug 2006 01:37:10 GMT (envelope-from clsung) Message-Id: <200608010137.k711bA04009765@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 01:37: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/textproc Makefile ports/textproc/pear-XML_DTD 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, 01 Aug 2006 01:37:10 -0000 clsung 2006-08-01 01:37:09 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/pear-XML_DTD Makefile distinfo pkg-descr Log: Add pear-XML_DTD 0.4.2, parsing of DTD files and DTD validation of XML files. PR: ports/101081 Submitted by: chinsan Revision Changes Path 1.1034 +1 -0 ports/textproc/Makefile 1.1 +31 -0 ports/textproc/pear-XML_DTD/Makefile (new) 1.1 +3 -0 ports/textproc/pear-XML_DTD/distinfo (new) 1.1 +9 -0 ports/textproc/pear-XML_DTD/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 01:37:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E37AA16A4DE; Tue, 1 Aug 2006 01:37:22 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D33B43D46; Tue, 1 Aug 2006 01:37:22 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k711bMYf009804; Tue, 1 Aug 2006 01:37:22 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k711bMVa009803; Tue, 1 Aug 2006 01:37:22 GMT (envelope-from clsung) Message-Id: <200608010137.k711bMVa009803@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 01:37: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: 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, 01 Aug 2006 01:37:23 -0000 clsung 2006-08-01 01:37:22 UTC FreeBSD ports repository Modified files: . modules Log: pear-XML_DTD --> ports/textproc/pear-XML_DTD Revision Changes Path 1.15824 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 01:39:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2DCC16A4DE; Tue, 1 Aug 2006 01:39:58 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89C9843D46; Tue, 1 Aug 2006 01:39:58 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k711dw7M009923; Tue, 1 Aug 2006 01:39:58 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k711dwmP009922; Tue, 1 Aug 2006 01:39:58 GMT (envelope-from ijliao) Message-Id: <200608010139.k711dwmP009922@repoman.freebsd.org> From: Ying-Chieh Liao Date: Tue, 1 Aug 2006 01:39: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 Makefile ports/lang/p5-Pugs-Compiler-Rule 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, 01 Aug 2006 01:39:58 -0000 ijliao 2006-08-01 01:39:58 UTC FreeBSD ports repository Modified files: lang Makefile Added files: lang/p5-Pugs-Compiler-Rule Makefile distinfo pkg-descr pkg-plist Log: add p5-Pugs-Compiler-Rule 0.12 Compiler for Perl 6 Rules Revision Changes Path 1.504 +1 -0 ports/lang/Makefile 1.1 +43 -0 ports/lang/p5-Pugs-Compiler-Rule/Makefile (new) 1.1 +3 -0 ports/lang/p5-Pugs-Compiler-Rule/distinfo (new) 1.1 +10 -0 ports/lang/p5-Pugs-Compiler-Rule/pkg-descr (new) 1.1 +30 -0 ports/lang/p5-Pugs-Compiler-Rule/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 01:40:45 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1313116A4DE; Tue, 1 Aug 2006 01:40:45 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC2D643D45; Tue, 1 Aug 2006 01:40:44 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k711eiiE010097; Tue, 1 Aug 2006 01:40:44 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k711ei41010096; Tue, 1 Aug 2006 01:40:44 GMT (envelope-from ijliao) Message-Id: <200608010140.k711ei41010096@repoman.freebsd.org> From: Ying-Chieh Liao Date: Tue, 1 Aug 2006 01:40: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: Tue, 01 Aug 2006 01:40:45 -0000 ijliao 2006-08-01 01:40:44 UTC FreeBSD ports repository Modified files: . modules Log: p5-Pugs-Compiler-Rule --> ports/lang/p5-Pugs-Compiler-Rule Revision Changes Path 1.15825 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 01:44:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71C1F16A4DD; Tue, 1 Aug 2006 01:44:13 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E4CC43D45; Tue, 1 Aug 2006 01:44:13 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k711iDna010288; Tue, 1 Aug 2006 01:44:13 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k711iDqD010287; Tue, 1 Aug 2006 01:44:13 GMT (envelope-from clsung) Message-Id: <200608010144.k711iDqD010287@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 01:44: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/audio/libtunepimp-old Makefile distinfo pkg-plist ports/audio/libtunepimp-old/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: Tue, 01 Aug 2006 01:44:13 -0000 clsung 2006-08-01 01:44:13 UTC FreeBSD ports repository Modified files: audio/libtunepimp-old Makefile distinfo pkg-plist Added files: audio/libtunepimp-old/files patch-configure Log: - back to previous 0.4 (with repocopy to another port name), since 0.5 breaks few ports. - bump PORTEPOCH Noted by: mich PR: ports/100989 Submitted by: clsung Revision Changes Path 1.15 +8 -9 ports/audio/libtunepimp-old/Makefile 1.7 +3 -3 ports/audio/libtunepimp-old/distinfo 1.3 +11 -0 ports/audio/libtunepimp-old/files/patch-configure (new) 1.8 +10 -15 ports/audio/libtunepimp-old/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 1 01:44:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 888E516A511; Tue, 1 Aug 2006 01:44:19 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4062A43D46; Tue, 1 Aug 2006 01:44:19 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k711iJ0T010321; Tue, 1 Aug 2006 01:44:19 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k711iJ63010320; Tue, 1 Aug 2006 01:44:19 GMT (envelope-from itetcu) Message-Id: <200608010144.k711iJ63010320@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 1 Aug 2006 01:44: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/security/metasploit 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: Tue, 01 Aug 2006 01:44:19 -0000 itetcu 2006-08-01 01:44:19 UTC FreeBSD ports repository Modified files: security/metasploit Makefile pkg-descr Log: A new port, security/metasploit-devel is coming to town. It will be based on Ruby instead of perl, have a different license, and some utilities (msfconsole, msfencode...) will conflict with the current metasploit package. This update comes to preempt the conflicts and to clarify the pkg-descr. Bump PORTREVISION. PR: ports/101090 Submitted by: Yonatan (maintianer) Revision Changes Path 1.9 +3 -0 ports/security/metasploit/Makefile 1.2 +3 -0 ports/security/metasploit/pkg-descr From owner-cvs-all@FreeBSD.ORG Tue Aug 1 01:51:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E805C16A4DA; Tue, 1 Aug 2006 01:51:47 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A384C43D45; Tue, 1 Aug 2006 01:51:47 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k711plFn010744; Tue, 1 Aug 2006 01:51:47 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k711pl4k010743; Tue, 1 Aug 2006 01:51:47 GMT (envelope-from clsung) Message-Id: <200608010151.k711pl4k010743@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 01:51: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 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: Tue, 01 Aug 2006 01:51:48 -0000 clsung 2006-08-01 01:51:47 UTC FreeBSD ports repository Modified files: . UPDATING Log: - add notes about audio/libtunepimp and audio/libtunepimp-old. PR: ports/100989 Submitted by: clsung Revision Changes Path 1.375 +10 -1 ports/UPDATING From owner-cvs-all@FreeBSD.ORG Tue Aug 1 01:52:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B9C7C16A4DA; Tue, 1 Aug 2006 01:52:19 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 457F943D4C; Tue, 1 Aug 2006 01:52:19 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k711qJ9d010835; Tue, 1 Aug 2006 01:52:19 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k711qJNr010834; Tue, 1 Aug 2006 01:52:19 GMT (envelope-from ijliao) Message-Id: <200608010152.k711qJNr010834@repoman.freebsd.org> From: Ying-Chieh Liao Date: Tue, 1 Aug 2006 01:52: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-Sub-Multi 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, 01 Aug 2006 01:52:19 -0000 ijliao 2006-08-01 01:52:19 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-Sub-Multi Makefile distinfo pkg-descr pkg-plist Log: add p5-Sub-Multi 0.002 Data::Bind-based multi-sub dispatch Revision Changes Path 1.2368 +1 -0 ports/devel/Makefile 1.1 +27 -0 ports/devel/p5-Sub-Multi/Makefile (new) 1.1 +3 -0 ports/devel/p5-Sub-Multi/distinfo (new) 1.1 +10 -0 ports/devel/p5-Sub-Multi/pkg-descr (new) 1.1 +5 -0 ports/devel/p5-Sub-Multi/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 01:52:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2344616A4DE; Tue, 1 Aug 2006 01:52:32 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2E3843D45; Tue, 1 Aug 2006 01:52:31 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k711qVug010873; Tue, 1 Aug 2006 01:52:31 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k711qVra010872; Tue, 1 Aug 2006 01:52:31 GMT (envelope-from ijliao) Message-Id: <200608010152.k711qVra010872@repoman.freebsd.org> From: Ying-Chieh Liao Date: Tue, 1 Aug 2006 01:52: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: Tue, 01 Aug 2006 01:52:32 -0000 ijliao 2006-08-01 01:52:31 UTC FreeBSD ports repository Modified files: . modules Log: p5-Sub-Multi --> ports/devel/p5-Sub-Multi Revision Changes Path 1.15826 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 01:54:45 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C62516A4DE; Tue, 1 Aug 2006 01:54:45 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CFAF143D49; Tue, 1 Aug 2006 01:54:44 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k711siK2010947; Tue, 1 Aug 2006 01:54:44 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k711siMY010946; Tue, 1 Aug 2006 01:54:44 GMT (envelope-from clsung) Message-Id: <200608010154.k711siMY010946@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 01:54: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/libcwd 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, 01 Aug 2006 01:54:45 -0000 clsung 2006-08-01 01:54:44 UTC FreeBSD ports repository Modified files: devel/libcwd Makefile distinfo Log: - Update to 0.99.44 PR: ports/101089 Submitted by: Gea-Suan Lin Revision Changes Path 1.14 +4 -9 ports/devel/libcwd/Makefile 1.6 +3 -3 ports/devel/libcwd/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 02:01:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 691E516A4DA; Tue, 1 Aug 2006 02:01:49 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 219F543D46; Tue, 1 Aug 2006 02:01:49 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7121n0G011356; Tue, 1 Aug 2006 02:01:49 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7121mpc011355; Tue, 1 Aug 2006 02:01:48 GMT (envelope-from clsung) Message-Id: <200608010201.k7121mpc011355@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 02:01: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/p5-Text-Trac 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, 01 Aug 2006 02:01:49 -0000 clsung 2006-08-01 02:01:48 UTC FreeBSD ports repository Modified files: textproc/p5-Text-Trac Makefile distinfo Log: - Update to 0.04 - Text::More only need in 'make test' phase, so leave it to maintainer to remove or put it in BUILD_DEPENDS. PR: ports/100797 Submitted by: clsung Approved by: maintainer (gslin_AT_gslin dot org) Revision Changes Path 1.2 +2 -2 ports/textproc/p5-Text-Trac/Makefile 1.2 +3 -3 ports/textproc/p5-Text-Trac/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 02:05:45 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1FD116A4DD; Tue, 1 Aug 2006 02:05:45 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B3FA43D49; Tue, 1 Aug 2006 02:05:45 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7125jHR012837; Tue, 1 Aug 2006 02:05:45 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7125jPq012836; Tue, 1 Aug 2006 02:05:45 GMT (envelope-from clsung) Message-Id: <200608010205.k7125jPq012836@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 02:05: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/p5-RPC-XML 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, 01 Aug 2006 02:05:46 -0000 clsung 2006-08-01 02:05:45 UTC FreeBSD ports repository Modified files: net/p5-RPC-XML Makefile distinfo Log: - Update to 0.59 PR: ports/100001 Submitted by: clsung Approved by: maintainer timeout Revision Changes Path 1.12 +1 -1 ports/net/p5-RPC-XML/Makefile 1.8 +3 -3 ports/net/p5-RPC-XML/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 02:08:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 65C2616A4DD; Tue, 1 Aug 2006 02:08:18 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2079C43D46; Tue, 1 Aug 2006 02:08:18 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7128I0H012968; Tue, 1 Aug 2006 02:08:18 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7128HPE012967; Tue, 1 Aug 2006 02:08:17 GMT (envelope-from clsung) Message-Id: <200608010208.k7128HPE012967@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 02:08: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-SVN-Notify 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, 01 Aug 2006 02:08:18 -0000 clsung 2006-08-01 02:08:17 UTC FreeBSD ports repository Modified files: devel/p5-SVN-Notify Makefile distinfo Log: - Update to 2.62 PR: ports/99995 Submitted by: clsung Approved by: maintainer timeout Revision Changes Path 1.5 +1 -1 ports/devel/p5-SVN-Notify/Makefile 1.6 +3 -3 ports/devel/p5-SVN-Notify/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 02:09:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E641816A4F1; Tue, 1 Aug 2006 02:09:50 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B7C443D45; Tue, 1 Aug 2006 02:09:50 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7129oaQ013050; Tue, 1 Aug 2006 02:09:50 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7129oYl013049; Tue, 1 Aug 2006 02:09:50 GMT (envelope-from clsung) Message-Id: <200608010209.k7129oYl013049@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 02: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/audio/ccaudio Makefile distinfo pkg-plist ports/audio/ccaudio/files patch-src-audiofile.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: Tue, 01 Aug 2006 02:09:51 -0000 clsung 2006-08-01 02:09:50 UTC FreeBSD ports repository Modified files: audio/ccaudio Makefile distinfo pkg-plist Added files: audio/ccaudio/files patch-src-audiofile.cpp Log: - Update to 1.2.0 PR: ports/101087 Submitted by: Gea-Suan Lin Revision Changes Path 1.19 +4 -12 ports/audio/ccaudio/Makefile 1.12 +3 -3 ports/audio/ccaudio/distinfo 1.1 +11 -0 ports/audio/ccaudio/files/patch-src-audiofile.cpp (new) 1.7 +6 -4 ports/audio/ccaudio/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 1 02:32:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC05616A4DD; Tue, 1 Aug 2006 02:32:22 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 929AF43D46; Tue, 1 Aug 2006 02:32:22 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k712WMGi014172; Tue, 1 Aug 2006 02:32:22 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k712WMI8014171; Tue, 1 Aug 2006 02:32:22 GMT (envelope-from ijliao) Message-Id: <200608010232.k712WMI8014171@repoman.freebsd.org> From: Ying-Chieh Liao Date: Tue, 1 Aug 2006 02: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/lang Makefile ports/lang/p5-v6 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, 01 Aug 2006 02:32:23 -0000 ijliao 2006-08-01 02:32:22 UTC FreeBSD ports repository Modified files: lang Makefile Added files: lang/p5-v6 Makefile distinfo pkg-descr pkg-plist Log: add p5-v6-alpha 0.011 An experimental compiler for Perl 6 Revision Changes Path 1.505 +1 -0 ports/lang/Makefile 1.1 +40 -0 ports/lang/p5-v6/Makefile (new) 1.1 +3 -0 ports/lang/p5-v6/distinfo (new) 1.1 +3 -0 ports/lang/p5-v6/pkg-descr (new) 1.1 +29 -0 ports/lang/p5-v6/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 02:32:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E7F6E16A4DF; Tue, 1 Aug 2006 02:32:40 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A3F2D43D46; Tue, 1 Aug 2006 02:32:40 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k712We2L014214; Tue, 1 Aug 2006 02:32:40 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k712We7K014213; Tue, 1 Aug 2006 02:32:40 GMT (envelope-from ijliao) Message-Id: <200608010232.k712We7K014213@repoman.freebsd.org> From: Ying-Chieh Liao Date: Tue, 1 Aug 2006 02: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: 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, 01 Aug 2006 02:32:41 -0000 ijliao 2006-08-01 02:32:40 UTC FreeBSD ports repository Modified files: . modules Log: p5-v6 --> ports/lang/p5-v6 Revision Changes Path 1.15827 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 02:41:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5149F16A4DA; Tue, 1 Aug 2006 02:41:42 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BD5F43D46; Tue, 1 Aug 2006 02:41:42 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k712ffr4014754; Tue, 1 Aug 2006 02:41:41 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k712ffZC014753; Tue, 1 Aug 2006 02:41:41 GMT (envelope-from ahze) Message-Id: <200608010241.k712ffZC014753@repoman.freebsd.org> From: Michael Johnson Date: Tue, 1 Aug 2006 02:41: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/gossip 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, 01 Aug 2006 02:41:42 -0000 ahze 2006-08-01 02:41:41 UTC FreeBSD ports repository Modified files: net-im/gossip Makefile distinfo pkg-plist Log: - Update to 0.13 Revision Changes Path 1.34 +1 -1 ports/net-im/gossip/Makefile 1.22 +3 -3 ports/net-im/gossip/distinfo 1.20 +1 -0 ports/net-im/gossip/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 1 02:47:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2638516A4F0; Tue, 1 Aug 2006 02:47:53 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD22F43D46; Tue, 1 Aug 2006 02:47:52 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k712lqlW015011; Tue, 1 Aug 2006 02:47:52 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k712lqo1015010; Tue, 1 Aug 2006 02:47:52 GMT (envelope-from ahze) Message-Id: <200608010247.k712lqo1015010@repoman.freebsd.org> From: Michael Johnson Date: Tue, 1 Aug 2006 02:47: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/x11/gdm 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, 01 Aug 2006 02:47:53 -0000 ahze 2006-08-01 02:47:52 UTC FreeBSD ports repository Modified files: x11/gdm Makefile distinfo Log: - Update to 2.14.10 Revision Changes Path 1.72 +1 -2 ports/x11/gdm/Makefile 1.29 +3 -3 ports/x11/gdm/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 02:48:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A95F016A51A; Tue, 1 Aug 2006 02:48:07 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6486243D46; Tue, 1 Aug 2006 02:48:07 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k712m7Ma015044; Tue, 1 Aug 2006 02:48:07 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k712m7cO015043; Tue, 1 Aug 2006 02:48:07 GMT (envelope-from clsung) Message-Id: <200608010248.k712m7cO015043@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 02:48: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/security/tor-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, 01 Aug 2006 02:48:07 -0000 clsung 2006-08-01 02:48:07 UTC FreeBSD ports repository Modified files: security/tor-devel Makefile distinfo Log: - Update to latest release (0.1.1.23) PR: ports/101131 Submitted by: maintainer (Peter Thoenen) Revision Changes Path 1.30 +1 -2 ports/security/tor-devel/Makefile 1.22 +3 -3 ports/security/tor-devel/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 02:52:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D8D216A4DD; Tue, 1 Aug 2006 02:52:18 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46A1E43D46; Tue, 1 Aug 2006 02:52:18 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k712qIcC015317; Tue, 1 Aug 2006 02:52:18 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k712qIp2015316; Tue, 1 Aug 2006 02:52:18 GMT (envelope-from clsung) Message-Id: <200608010252.k712qIp2015316@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 02:52: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/benchmarks/pybench 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, 01 Aug 2006 02:52:18 -0000 clsung 2006-08-01 02:52:18 UTC FreeBSD ports repository Modified files: benchmarks/pybench Makefile distinfo pkg-plist Log: - update to 2.0 PR: ports/101088 Submitted by: Gea-Suan Lin Revision Changes Path 1.8 +3 -3 ports/benchmarks/pybench/Makefile 1.6 +3 -3 ports/benchmarks/pybench/distinfo 1.6 +12 -1 ports/benchmarks/pybench/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 1 02:54:06 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D642016A4DD; Tue, 1 Aug 2006 02:54:06 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9038A43D45; Tue, 1 Aug 2006 02:54:06 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k712s6Zn015382; Tue, 1 Aug 2006 02:54:06 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k712s6Mn015381; Tue, 1 Aug 2006 02:54:06 GMT (envelope-from clsung) Message-Id: <200608010254.k712s6Mn015381@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 02:54: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/p5-Set-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: Tue, 01 Aug 2006 02:54:06 -0000 clsung 2006-08-01 02:54:06 UTC FreeBSD ports repository Modified files: devel/p5-Set-Object Makefile distinfo Log: - update to 1.17 Revision Changes Path 1.18 +1 -1 ports/devel/p5-Set-Object/Makefile 1.12 +3 -3 ports/devel/p5-Set-Object/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 02:55:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4390F16A4DA; Tue, 1 Aug 2006 02:55:38 +0000 (UTC) (envelope-from itetcu@people.tecnik93.com) Received: from it.buh.tecnik93.com (it.buh.tecnik93.com [81.196.204.98]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CDE743D45; Tue, 1 Aug 2006 02:55:35 +0000 (GMT) (envelope-from itetcu@people.tecnik93.com) Received: from it.buh.tecnik93.com (localhost [127.0.0.1]) by it.buh.tecnik93.com (Postfix) with ESMTP id C42591765C; Tue, 1 Aug 2006 05:55:33 +0300 (EEST) Date: Tue, 1 Aug 2006 05:55:33 +0300 From: Ion-Mihai Tetcu To: Mathieu Arnold Message-ID: <20060801055533.6b5d8122@it.buh.tecnik93.com> In-Reply-To: <200607311640.k6VGe1rK039757@repoman.freebsd.org> References: <200607311640.k6VGe1rK039757@repoman.freebsd.org> X-Mailer: Sylpheed-Claws 2.3.1 (GTK+ 2.8.20; i386-portbld-freebsd6.1) 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 UPDATING ports/graphics/GraphicsMagick 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, 01 Aug 2006 02:55:38 -0000 On Mon, 31 Jul 2006 16:40:01 +0000 (UTC) Mathieu Arnold wrote: > mat 2006-07-31 16:40:01 UTC > > FreeBSD ports repository > > Modified files: > . UPDATING > graphics/GraphicsMagick Makefile > Log: > In order to fix a symbol collision between GraphicsMagick and > libtidy, GraphicsMagick has been updated so that all its symbols are > now prefixed with 'Gm'. All depending ports will have to be > recompiled as noted in UPDATING. I have a nagging feeling this breaks more things that it fixes. For example: ---> Reinstalling 'pecl-imagick-0.9.11_5' (graphics/pecl-imagick) ---> Building '/usr/ports/graphics/pecl-imagick' ..... checking for imagick support... yes, shared checking for imagick support... yes Building with GraphicsMagick as backend checking for GraphicsMagick in provided path... found in /usr/local checking for GraphicsMagick 1.0.0 or later with /usr/local/bin/GraphicsMagick-config... 1.1.6 checking for InitializeMagick in -lGraphicsMagick... no configure: error: There is something wrong. Please check config.log for more information. ===> Script "configure" failed unexpectedly. -- IOnut - Un^d^dregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" BOFH excuse #42: spaghetti cable cause packet failure From owner-cvs-all@FreeBSD.ORG Tue Aug 1 03:02:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AAAC316A4DE; Tue, 1 Aug 2006 03:02:19 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4825543D45; Tue, 1 Aug 2006 03:02:19 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7132JCY015912; Tue, 1 Aug 2006 03:02:19 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7132J5J015911; Tue, 1 Aug 2006 03:02:19 GMT (envelope-from marcus) Message-Id: <200608010302.k7132J5J015911@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 1 Aug 2006 03: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/mail/evolution-exchange 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, 01 Aug 2006 03:02:19 -0000 marcus 2006-08-01 03:02:18 UTC FreeBSD ports repository Modified files: mail/evolution-exchange Makefile distinfo pkg-plist Log: Update to 2.6.3. Revision Changes Path 1.20 +1 -1 ports/mail/evolution-exchange/Makefile 1.13 +3 -3 ports/mail/evolution-exchange/distinfo 1.14 +1 -0 ports/mail/evolution-exchange/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 1 03:11:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E18616A4E0; Tue, 1 Aug 2006 03:11:34 +0000 (UTC) (envelope-from aaron@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0755543D4C; Tue, 1 Aug 2006 03:11:34 +0000 (GMT) (envelope-from aaron@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k713BX5n017657; Tue, 1 Aug 2006 03:11:33 GMT (envelope-from aaron@repoman.freebsd.org) Received: (from aaron@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k713BXTU017656; Tue, 1 Aug 2006 03:11:33 GMT (envelope-from aaron) Message-Id: <200608010311.k713BXTU017656@repoman.freebsd.org> From: Aaron Dalton Date: Tue, 1 Aug 2006 03:11: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/games/libfov Makefile distinfo pkg-plist ports/games/libfov/files Makefile.bsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 01 Aug 2006 03:11:34 -0000 aaron 2006-08-01 03:11:33 UTC FreeBSD ports repository Modified files: games/libfov Makefile distinfo pkg-plist games/libfov/files Makefile.bsd Log: - Update to v1.0.2 and use new Sourceforge source Revision Changes Path 1.2 +5 -4 ports/games/libfov/Makefile 1.2 +3 -3 ports/games/libfov/distinfo 1.2 +2 -2 ports/games/libfov/files/Makefile.bsd 1.2 +1 -1 ports/games/libfov/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 1 03:14:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84C8116A4DA; Tue, 1 Aug 2006 03:14:32 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FE0343D49; Tue, 1 Aug 2006 03:14:32 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k713EWck017783; Tue, 1 Aug 2006 03:14:32 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k713EWlb017782; Tue, 1 Aug 2006 03:14:32 GMT (envelope-from marcus) Message-Id: <200608010314.k713EWlb017782@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 1 Aug 2006 03:14: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/accessibility/dasher 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, 01 Aug 2006 03:14:32 -0000 marcus 2006-08-01 03:14:31 UTC FreeBSD ports repository Modified files: accessibility/dasher Makefile distinfo Log: Update to 4.0.4. Revision Changes Path 1.32 +1 -1 ports/accessibility/dasher/Makefile 1.17 +3 -3 ports/accessibility/dasher/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 03:24:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 815BF16A4E9; Tue, 1 Aug 2006 03:24:58 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BD1743D45; Tue, 1 Aug 2006 03:24:58 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k713Oweb018332; Tue, 1 Aug 2006 03:24:58 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k713OwRB018331; Tue, 1 Aug 2006 03:24:58 GMT (envelope-from marcus) Message-Id: <200608010324.k713OwRB018331@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 1 Aug 2006 03:24: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/x11/gnome-screensaver 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, 01 Aug 2006 03:24:58 -0000 marcus 2006-08-01 03:24:57 UTC FreeBSD ports repository Modified files: x11/gnome-screensaver Makefile distinfo pkg-plist Log: Update to 2.14.3. Revision Changes Path 1.18 +1 -1 ports/x11/gnome-screensaver/Makefile 1.10 +3 -3 ports/x11/gnome-screensaver/distinfo 1.7 +4 -0 ports/x11/gnome-screensaver/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 1 03:33:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9221B16A4DA; Tue, 1 Aug 2006 03:33:58 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 973EB43D4C; Tue, 1 Aug 2006 03:33:57 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k713Xv8g019000; Tue, 1 Aug 2006 03:33:57 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k713XvPP018999; Tue, 1 Aug 2006 03:33:57 GMT (envelope-from clsung) Message-Id: <200608010333.k713XvPP018999@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 03:33: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/textproc Makefile ports/textproc/p5-XML-RSS-Feed 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, 01 Aug 2006 03:33:58 -0000 clsung 2006-08-01 03:33:57 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/p5-XML-RSS-Feed Makefile distinfo pkg-descr pkg-plist Log: - p5-XML-RSS-Feed provide the ability of Persistant XML RSS Encapsulation Revision Changes Path 1.1035 +1 -0 ports/textproc/Makefile 1.1 +38 -0 ports/textproc/p5-XML-RSS-Feed/Makefile (new) 1.1 +3 -0 ports/textproc/p5-XML-RSS-Feed/distinfo (new) 1.1 +3 -0 ports/textproc/p5-XML-RSS-Feed/pkg-descr (new) 1.1 +12 -0 ports/textproc/p5-XML-RSS-Feed/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 03:34:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C5DF16A4F8; Tue, 1 Aug 2006 03:34:10 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2814343D46; Tue, 1 Aug 2006 03:34:10 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k713YABE019058; Tue, 1 Aug 2006 03:34:10 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k713YAh2019057; Tue, 1 Aug 2006 03:34:10 GMT (envelope-from clsung) Message-Id: <200608010334.k713YAh2019057@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 03:34: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: 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, 01 Aug 2006 03:34:10 -0000 clsung 2006-08-01 03:34:10 UTC FreeBSD ports repository Modified files: . modules Log: p5-XML-RSS-Feed --> ports/textproc/p5-XML-RSS-Feed Revision Changes Path 1.15828 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 03:41:02 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1370716A4DD; Tue, 1 Aug 2006 03:41:02 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C222E43D45; Tue, 1 Aug 2006 03:41:01 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k713f15P019421; Tue, 1 Aug 2006 03:41:01 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k713f10o019420; Tue, 1 Aug 2006 03:41:01 GMT (envelope-from marcus) Message-Id: <200608010341.k713f10o019420@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 1 Aug 2006 03:41: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/sysutils/nautilus-cd-burner 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, 01 Aug 2006 03:41:02 -0000 marcus 2006-08-01 03:41:01 UTC FreeBSD ports repository Modified files: sysutils/nautilus-cd-burner Makefile distinfo Log: Update to 2.14.3. Revision Changes Path 1.31 +1 -2 ports/sysutils/nautilus-cd-burner/Makefile 1.17 +3 -3 ports/sysutils/nautilus-cd-burner/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 03:47:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A573616A4DE; Tue, 1 Aug 2006 03:47:38 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6034243D45; Tue, 1 Aug 2006 03:47:38 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k713lcH9019697; Tue, 1 Aug 2006 03:47:38 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k713lcIS019696; Tue, 1 Aug 2006 03:47:38 GMT (envelope-from marcus) Message-Id: <200608010347.k713lcIS019696@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 1 Aug 2006 03: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/graphics/eog 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, 01 Aug 2006 03:47:38 -0000 marcus 2006-08-01 03:47:38 UTC FreeBSD ports repository Modified files: graphics/eog Makefile distinfo Log: Update to 2.14.3. Revision Changes Path 1.42 +1 -1 ports/graphics/eog/Makefile 1.18 +3 -3 ports/graphics/eog/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 03:55:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E03A816A4DE; Tue, 1 Aug 2006 03:55:56 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B8E043D45; Tue, 1 Aug 2006 03:55:56 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k713tulK020124; Tue, 1 Aug 2006 03:55:56 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k713tu6L020123; Tue, 1 Aug 2006 03:55:56 GMT (envelope-from marcus) Message-Id: <200608010355.k713tu6L020123@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 1 Aug 2006 03:55: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/x11-toolkits/eel 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, 01 Aug 2006 03:55:57 -0000 marcus 2006-08-01 03:55:56 UTC FreeBSD ports repository Modified files: x11-toolkits/eel Makefile distinfo pkg-plist Log: Update to 2.14.3. Revision Changes Path 1.26 +1 -1 ports/x11-toolkits/eel/Makefile 1.13 +3 -3 ports/x11-toolkits/eel/distinfo 1.12 +0 -1 ports/x11-toolkits/eel/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 1 04:11:08 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A4EB16A4E1; Tue, 1 Aug 2006 04:11:08 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 061BB43D55; Tue, 1 Aug 2006 04:11:08 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k714B7bi022118; Tue, 1 Aug 2006 04:11:07 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k714B7OP022117; Tue, 1 Aug 2006 04:11:07 GMT (envelope-from marcus) Message-Id: <200608010411.k714B7OP022117@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 1 Aug 2006 04:11: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/x11-fm/nautilus 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, 01 Aug 2006 04:11:08 -0000 marcus 2006-08-01 04:11:07 UTC FreeBSD ports repository Modified files: x11-fm/nautilus Makefile distinfo pkg-plist Log: Update to 2.14.3. Revision Changes Path 1.66 +1 -1 ports/x11-fm/nautilus/Makefile 1.11 +3 -3 ports/x11-fm/nautilus/distinfo 1.15 +1 -1 ports/x11-fm/nautilus/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 1 04:22:08 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 39CFA16A4DD; Tue, 1 Aug 2006 04:22:08 +0000 (UTC) (envelope-from aaron@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 048D643D46; Tue, 1 Aug 2006 04:22:08 +0000 (GMT) (envelope-from aaron@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k714M7od022784; Tue, 1 Aug 2006 04:22:07 GMT (envelope-from aaron@repoman.freebsd.org) Received: (from aaron@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k714M7Ax022783; Tue, 1 Aug 2006 04:22:07 GMT (envelope-from aaron) Message-Id: <200608010422.k714M7Ax022783@repoman.freebsd.org> From: Aaron Dalton Date: Tue, 1 Aug 2006 04:22: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/devel Makefile ports/devel/libs11n Makefile distinfo pkg-descr pkg-plist ports/devel/libs11n/files Makefile.bsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 01 Aug 2006 04:22:08 -0000 aaron 2006-08-01 04:22:07 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/libs11n Makefile distinfo pkg-descr pkg-plist devel/libs11n/files Makefile.bsd Log: Adding port devel/libs11n, A C++ library for easily serializing a wide variety of objects. Revision Changes Path 1.2369 +1 -0 ports/devel/Makefile 1.1 +37 -0 ports/devel/libs11n/Makefile (new) 1.1 +3 -0 ports/devel/libs11n/distinfo (new) 1.1 +126 -0 ports/devel/libs11n/files/Makefile.bsd (new) 1.1 +19 -0 ports/devel/libs11n/pkg-descr (new) 1.1 +91 -0 ports/devel/libs11n/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 04:22:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C567716A4DD; Tue, 1 Aug 2006 04:22:22 +0000 (UTC) (envelope-from aaron@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8302143D45; Tue, 1 Aug 2006 04:22:22 +0000 (GMT) (envelope-from aaron@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k714MMix022822; Tue, 1 Aug 2006 04:22:22 GMT (envelope-from aaron@repoman.freebsd.org) Received: (from aaron@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k714MMmg022821; Tue, 1 Aug 2006 04:22:22 GMT (envelope-from aaron) Message-Id: <200608010422.k714MMmg022821@repoman.freebsd.org> From: Aaron Dalton Date: Tue, 1 Aug 2006 04:22: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: 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, 01 Aug 2006 04:22:22 -0000 aaron 2006-08-01 04:22:22 UTC FreeBSD ports repository Modified files: . modules Log: libs11n --> ports/devel/libs11n Revision Changes Path 1.15829 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 04:44:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B242A16A4DA; Tue, 1 Aug 2006 04:44:01 +0000 (UTC) (envelope-from aaron@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FD2D43D45; Tue, 1 Aug 2006 04:44:01 +0000 (GMT) (envelope-from aaron@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k714i1R5023781; Tue, 1 Aug 2006 04:44:01 GMT (envelope-from aaron@repoman.freebsd.org) Received: (from aaron@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k714i17d023780; Tue, 1 Aug 2006 04:44:01 GMT (envelope-from aaron) Message-Id: <200608010444.k714i17d023780@repoman.freebsd.org> From: Aaron Dalton Date: Tue, 1 Aug 2006 04:44: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/libs11n 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, 01 Aug 2006 04:44:01 -0000 aaron 2006-08-01 04:44:01 UTC FreeBSD ports repository Modified files: devel/libs11n Makefile distinfo Log: - Update to v1.2.4 Revision Changes Path 1.2 +1 -1 ports/devel/libs11n/Makefile 1.2 +3 -3 ports/devel/libs11n/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 04:45:24 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0824616A4DF; Tue, 1 Aug 2006 04:45:24 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4C0543D49; Tue, 1 Aug 2006 04:45:23 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k714jNlZ023933; Tue, 1 Aug 2006 04:45:23 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k714jNKa023932; Tue, 1 Aug 2006 04:45:23 GMT (envelope-from clsung) Message-Id: <200608010445.k714jNKa023932@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 04:45: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/mail Makefile ports/mail/pecl-esmtp 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, 01 Aug 2006 04:45:24 -0000 clsung 2006-08-01 04:45:23 UTC FreeBSD ports repository Modified files: mail Makefile Added files: mail/pecl-esmtp Makefile distinfo pkg-descr Log: Add pecl-esmtp 0.3.1, PECL ESMTP client extenion. PR: ports/101133 Submitted by: chinsan Revision Changes Path 1.784 +1 -0 ports/mail/Makefile 1.1 +35 -0 ports/mail/pecl-esmtp/Makefile (new) 1.1 +3 -0 ports/mail/pecl-esmtp/distinfo (new) 1.1 +5 -0 ports/mail/pecl-esmtp/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 04:45:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9CFA616A4DD; Tue, 1 Aug 2006 04:45:43 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A48143D53; Tue, 1 Aug 2006 04:45:43 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k714jhQE023975; Tue, 1 Aug 2006 04:45:43 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k714jhKJ023974; Tue, 1 Aug 2006 04:45:43 GMT (envelope-from clsung) Message-Id: <200608010445.k714jhKJ023974@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 04:45: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: 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, 01 Aug 2006 04:45:43 -0000 clsung 2006-08-01 04:45:43 UTC FreeBSD ports repository Modified files: . modules Log: pecl-esmtp --> ports/mail/pecl-esmtp Revision Changes Path 1.15830 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 04:52:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92C3616A4DA; Tue, 1 Aug 2006 04:52:36 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4FF0C43D46; Tue, 1 Aug 2006 04:52:36 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k714qaFi032101; Tue, 1 Aug 2006 04:52:36 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k714qa8I032100; Tue, 1 Aug 2006 04:52:36 GMT (envelope-from ahze) Message-Id: <200608010452.k714qa8I032100@repoman.freebsd.org> From: Michael Johnson Date: Tue, 1 Aug 2006 04:52: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/Mk bsd.gstreamer.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: Tue, 01 Aug 2006 04:52:36 -0000 ahze 2006-08-01 04:52:35 UTC FreeBSD ports repository Modified files: Mk bsd.gstreamer.mk Log: - Add forgotten support for USE_GSTREAMER=python (depends on multimedia/py-gstreamer) Obtained from: marcuscom cvs Revision Changes Path 1.22 +12 -3 ports/Mk/bsd.gstreamer.mk From owner-cvs-all@FreeBSD.ORG Tue Aug 1 05:32:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A2EB16AD30; Tue, 1 Aug 2006 05:31:30 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A985643D46; Tue, 1 Aug 2006 05:31:29 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k715VTfa035091; Tue, 1 Aug 2006 05:31:29 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k715VTV8035090; Tue, 1 Aug 2006 05:31:29 GMT (envelope-from kientzle) Message-Id: <200608010531.k715VTV8035090@repoman.freebsd.org> From: Tim Kientzle Date: Tue, 1 Aug 2006 05:31: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/lib/libarchive archive_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: Tue, 01 Aug 2006 05:32:39 -0000 kientzle 2006-08-01 05:31:29 UTC FreeBSD src repository Modified files: lib/libarchive archive_write.c Log: If skip_file_dev and skip_file_ino haven't been set (are still == 0), then don't use them for testing for a recursive add. Thanks to: Spencer Minear MFC after: 7 days Revision Changes Path 1.17 +3 -1 src/lib/libarchive/archive_write.c From owner-cvs-all@FreeBSD.ORG Tue Aug 1 06:44:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7916E16A4DE; Tue, 1 Aug 2006 06:44:25 +0000 (UTC) (envelope-from ade@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2958C43D46; Tue, 1 Aug 2006 06:44:25 +0000 (GMT) (envelope-from ade@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k716iPDf039575; Tue, 1 Aug 2006 06:44:25 GMT (envelope-from ade@repoman.freebsd.org) Received: (from ade@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k716iOUa039574; Tue, 1 Aug 2006 06:44:24 GMT (envelope-from ade) Message-Id: <200608010644.k716iOUa039574@repoman.freebsd.org> From: Ade Lovett Date: Tue, 1 Aug 2006 06:44: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/security/courierpassd 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, 01 Aug 2006 06:44:25 -0000 ade 2006-08-01 06:44:24 UTC FreeBSD ports repository Modified files: security/courierpassd Makefile distinfo pkg-descr pkg-message Added files: security/courierpassd pkg-plist Log: Update to 1.1.2 Submitter (author) taking over maintainership from myself PR: 100916 Submitted by: andrew@arda.homeunix.net Revision Changes Path 1.8 +12 -5 ports/security/courierpassd/Makefile 1.5 +3 -3 ports/security/courierpassd/distinfo 1.3 +2 -2 ports/security/courierpassd/pkg-descr 1.3 +5 -0 ports/security/courierpassd/pkg-message 1.1 +8 -0 ports/security/courierpassd/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 07:16:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E589616A4DA; Tue, 1 Aug 2006 07:16:46 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B5B0943D45; Tue, 1 Aug 2006 07:16:46 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k717GkeA042379; Tue, 1 Aug 2006 07:16:46 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k717Gk52042378; Tue, 1 Aug 2006 07:16:46 GMT (envelope-from clsung) Message-Id: <200608010716.k717Gk52042378@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 07:16: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/devel Makefile ports/devel/p5-POE-Component-RSSAggregator 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, 01 Aug 2006 07:16:47 -0000 clsung 2006-08-01 07:16:45 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-POE-Component-RSSAggregator Makefile distinfo pkg-descr pkg-plist Log: - p5-POE-Component-RSSAggregator provide Watch Muliple RSS Feeds for New Headlines - a non-blocking way to watch multiple RSS sources with one process Revision Changes Path 1.2370 +1 -0 ports/devel/Makefile 1.1 +34 -0 ports/devel/p5-POE-Component-RSSAggregator/Makefile (new) 1.1 +3 -0 ports/devel/p5-POE-Component-RSSAggregator/distinfo (new) 1.1 +6 -0 ports/devel/p5-POE-Component-RSSAggregator/pkg-descr (new) 1.1 +7 -0 ports/devel/p5-POE-Component-RSSAggregator/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 07:17:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F8EE16A4E0; Tue, 1 Aug 2006 07:17:04 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB18443D66; Tue, 1 Aug 2006 07:17:03 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k717H3fH042430; Tue, 1 Aug 2006 07:17:03 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k717H3KD042429; Tue, 1 Aug 2006 07:17:03 GMT (envelope-from clsung) Message-Id: <200608010717.k717H3KD042429@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 07: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: 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, 01 Aug 2006 07:17:04 -0000 clsung 2006-08-01 07:17:03 UTC FreeBSD ports repository Modified files: . modules Log: p5-POE-Component-RSSAggregator --> ports/devel/p5-POE-Component-RSSAggregator Revision Changes Path 1.15831 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 07:23:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E90D816A4DD; Tue, 1 Aug 2006 07:23:56 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1A0343D45; Tue, 1 Aug 2006 07:23:56 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k717Numq043117; Tue, 1 Aug 2006 07:23:56 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k717NuUr043116; Tue, 1 Aug 2006 07:23:56 GMT (envelope-from clsung) Message-Id: <200608010723.k717NuUr043116@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 07:23: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 Makefile ports/www/pear-UDDI 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, 01 Aug 2006 07:23:57 -0000 clsung 2006-08-01 07:23:56 UTC FreeBSD ports repository Modified files: www Makefile Added files: www/pear-UDDI Makefile distinfo pkg-descr Log: Add pear-UDDI 0.2.3, PEAR UDDI for PHP. PR: ports/101084 Submitted by: chinsan Revision Changes Path 1.1534 +1 -0 ports/www/Makefile 1.1 +25 -0 ports/www/pear-UDDI/Makefile (new) 1.1 +3 -0 ports/www/pear-UDDI/distinfo (new) 1.1 +5 -0 ports/www/pear-UDDI/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 07:24:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 90A2A16A4E5; Tue, 1 Aug 2006 07:24:19 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F29543D45; Tue, 1 Aug 2006 07:24:19 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k717OJcO043163; Tue, 1 Aug 2006 07:24:19 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k717OJvP043162; Tue, 1 Aug 2006 07:24:19 GMT (envelope-from clsung) Message-Id: <200608010724.k717OJvP043162@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 07:24: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: 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, 01 Aug 2006 07:24:19 -0000 clsung 2006-08-01 07:24:19 UTC FreeBSD ports repository Modified files: . modules Log: pear-UDDI --> ports/www/pear-UDDI Revision Changes Path 1.15832 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 07:37:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A8FAF16A4DA; Tue, 1 Aug 2006 07:37:22 +0000 (UTC) (envelope-from avatar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67FBF43D46; Tue, 1 Aug 2006 07:37:22 +0000 (GMT) (envelope-from avatar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k717bMe9043769; Tue, 1 Aug 2006 07:37:22 GMT (envelope-from avatar@repoman.freebsd.org) Received: (from avatar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k717bMbU043768; Tue, 1 Aug 2006 07:37:22 GMT (envelope-from avatar) Message-Id: <200608010737.k717bMbU043768@repoman.freebsd.org> From: Tai-hwa Liang Date: Tue, 1 Aug 2006 07:37: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/dev/wi if_wi.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, 01 Aug 2006 07:37:22 -0000 avatar 2006-08-01 07:37:22 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/wi if_wi.c Log: MFC: (1.191) Fix "taskqueue_drain with the following non-sleepable locks held" witness(9) warning on detach. Ok'ed by: ru Tested on: 6-STABLE Revision Changes Path 1.180.2.8 +1 -1 src/sys/dev/wi/if_wi.c From owner-cvs-all@FreeBSD.ORG Tue Aug 1 07:48:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4CD716A4E1; Tue, 1 Aug 2006 07:48:12 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81B7443D5A; Tue, 1 Aug 2006 07:48:12 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k717mCC2044325; Tue, 1 Aug 2006 07:48:12 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k717mCEs044324; Tue, 1 Aug 2006 07:48:12 GMT (envelope-from erwin) Message-Id: <200608010748.k717mCEs044324@repoman.freebsd.org> From: Erwin Lansing Date: Tue, 1 Aug 2006 07:48: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/amavisd-new 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, 01 Aug 2006 07:48:12 -0000 erwin 2006-08-01 07:48:12 UTC FreeBSD ports repository Modified files: security/amavisd-new Makefile Log: Fix typo in UNZOO option PR: 101129 Submitted by: gabor (maintainer) Revision Changes Path 1.40 +2 -2 ports/security/amavisd-new/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 1 08:02:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 19E0A16A4DF; Tue, 1 Aug 2006 08:02:51 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60AB043D45; Tue, 1 Aug 2006 08:02:50 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7182oJ9045091; Tue, 1 Aug 2006 08:02:50 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7182oHx045090; Tue, 1 Aug 2006 08:02:50 GMT (envelope-from erwin) Message-Id: <200608010802.k7182oHx045090@repoman.freebsd.org> From: Erwin Lansing Date: Tue, 1 Aug 2006 08: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/mail/pflogsumm Makefile ports/mail/pflogsumm/files patch-pflogsumm X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 01 Aug 2006 08:02:51 -0000 erwin 2006-08-01 08:02:50 UTC FreeBSD ports repository Modified files: mail/pflogsumm Makefile mail/pflogsumm/files patch-pflogsumm Log: Fix for postfix 2.3.1 that changed the logging format. PR: 101137 Submitted by: Darren Pilgrim Obtained from: postfix source Revision Changes Path 1.22 +1 -1 ports/mail/pflogsumm/Makefile 1.2 +3 -3 ports/mail/pflogsumm/files/patch-pflogsumm From owner-cvs-all@FreeBSD.ORG Tue Aug 1 08:19:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A8C016A4DD; Tue, 1 Aug 2006 08:19:35 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36FB243D4C; Tue, 1 Aug 2006 08:19:35 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k718JZSs047065; Tue, 1 Aug 2006 08:19:35 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k718JZiU047064; Tue, 1 Aug 2006 08:19:35 GMT (envelope-from sat) Message-Id: <200608010819.k718JZiU047064@repoman.freebsd.org> From: Andrew Pantyukhin Date: Tue, 1 Aug 2006 08: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/www/linux-flashplugin7 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: Tue, 01 Aug 2006 08:19:35 -0000 sat 2006-08-01 08:19:34 UTC FreeBSD ports repository Modified files: www/linux-flashplugin7 Makefile pkg-descr Removed files: www/linux-flashplugin7 pkg-plist Log: - Add support for NPAPI infrastructure - Reflect Macromedia->Adobe change - Move plist to Makefile - Update pkg-descr Approved by: Jamie Jones (maintainer) Revision Changes Path 1.17 +10 -14 ports/www/linux-flashplugin7/Makefile 1.6 +4 -8 ports/www/linux-flashplugin7/pkg-descr 1.9 +0 -6 ports/www/linux-flashplugin7/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 08:35:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37AD216A4DD; Tue, 1 Aug 2006 08:35:34 +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 87F2443D45; Tue, 1 Aug 2006 08:35:33 +0000 (GMT) (envelope-from marck@rinet.ru) Received: from localhost (localhost [127.0.0.1]) by woozle.rinet.ru (8.13.6/8.13.6) with ESMTP id k718ZWZ7063995; Tue, 1 Aug 2006 12:35:32 +0400 (MSD) (envelope-from marck@rinet.ru) Date: Tue, 1 Aug 2006 12:35:32 +0400 (MSD) From: Dmitry Morozovsky To: Joel Dahl In-Reply-To: <1154372483.666.3.camel@localhost> Message-ID: <20060801123514.W1467@woozle.rinet.ru> References: <200607280632.k6S6Wf23091308@repoman.freebsd.org> <20060731212844.L66129@woozle.rinet.ru> <1154372483.666.3.camel@localhost> 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-2.0.2 (woozle.rinet.ru [0.0.0.0]); Tue, 01 Aug 2006 12:35:32 +0400 (MSD) Cc: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/articles/contributors contrib.core.sgml contrib.corealumni.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, 01 Aug 2006 08:35:34 -0000 On Mon, 31 Jul 2006, Joel Dahl wrote: JD> On Mon, 2006-07-31 at 21:30 +0400, Dmitry Morozovsky wrote: JD> > On Fri, 28 Jul 2006, Joel Dahl wrote: JD> > JD> > JD> joel 2006-07-28 06:32:41 UTC JD> > JD> JD> > JD> FreeBSD doc repository JD> > JD> JD> > JD> Modified files: JD> > JD> en_US.ISO8859-1/articles/contributors contrib.core.sgml JD> > JD> contrib.corealumni.sgml JD> > JD> Log: JD> > JD> Update the Core Team and the Core Team Alumni. JD> > JD> > Doesn't it (results of new Core elections) worth news item? JD> JD> Yes, we should announce it on the front page. I'm a bit busy right now, JD> so, any takers? Here is quick patch. Any objections? Sincerely, D.Marck [DM5020, MCK-RIPE, DM3-RIPN] ------------------------------------------------------------------------ *** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru *** ------------------------------------------------------------------------ Index: news.xml =================================================================== RCS file: /home/ncvs/www/en/news/news.xml,v retrieving revision 1.416 diff -u -r1.416 news.xml --- news.xml 19 Jul 2006 15:21:05 -0000 1.416 +++ news.xml 1 Aug 2006 08:35:04 -0000 @@ -31,6 +31,18 @@ 7 + 26 + + New FreeBSD Core Team elected + +

FreeBSD Core Team elections have been finished. + The announce is available here. +

+
+
+ + 19 Podcast Interview with FreeBSD Developer Greg Lehey From owner-cvs-all@FreeBSD.ORG Tue Aug 1 08:37:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBC6416A4DE; Tue, 1 Aug 2006 08:37:44 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E1B043D6B; Tue, 1 Aug 2006 08:37:34 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k718bYo8047990; Tue, 1 Aug 2006 08:37:34 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k718bYVk047989; Tue, 1 Aug 2006 08:37:34 GMT (envelope-from erwin) Message-Id: <200608010837.k718bYVk047989@repoman.freebsd.org> From: Erwin Lansing Date: Tue, 1 Aug 2006 08:37: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/x11-fonts/p5-Font-TTF 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, 01 Aug 2006 08:37:45 -0000 erwin 2006-08-01 08:37:34 UTC FreeBSD ports repository Modified files: x11-fonts/p5-Font-TTF Makefile distinfo pkg-plist Log: Update to 0.40 PR: 101146 Submitted by: Gea-Suan Lin Revision Changes Path 1.12 +11 -11 ports/x11-fonts/p5-Font-TTF/Makefile 1.10 +3 -3 ports/x11-fonts/p5-Font-TTF/distinfo 1.6 +49 -46 ports/x11-fonts/p5-Font-TTF/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 1 08:52:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76AF216A4E0; Tue, 1 Aug 2006 08:52:48 +0000 (UTC) (envelope-from Alexander@Leidinger.net) Received: from www.ebusiness-leidinger.de (jojo.ms-net.de [84.16.236.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id E989E43D49; Tue, 1 Aug 2006 08:52:46 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from Andro-Beta.Leidinger.net (p54A5EEFD.dip.t-dialin.net [84.165.238.253]) (authenticated bits=0) by www.ebusiness-leidinger.de (8.13.6/8.13.6) with ESMTP id k718dLQu024519; Tue, 1 Aug 2006 10:39:22 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from Magellan.Leidinger.net (Magellan.Leidinger.net [192.168.1.1]) by Andro-Beta.Leidinger.net (8.13.4/8.13.3) with ESMTP id k718qkTi043728; Tue, 1 Aug 2006 10:52:47 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Date: Tue, 1 Aug 2006 10:54:25 +0200 From: Alexander Leidinger To: infofarmer@FreeBSD.org Message-ID: <20060801105425.779a4b26@Magellan.Leidinger.net> In-Reply-To: References: <200607302234.k6UMYUuq018943@repoman.freebsd.org> <20060731121024.3d6478b4@Magellan.Leidinger.net> X-Mailer: Sylpheed-Claws 2.3.1 (GTK+ 2.8.20; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new Cc: cvs-ports@FreeBSD.org, sat@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/Mk bsd.linux-rpm.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: Tue, 01 Aug 2006 08:52:48 -0000 Quoting "Andrew Pantyukhin" (Mon, 31 Jul 2006 19:38:33 +0400): > On 7/31/06, Alexander Leidinger wrote: > > Quoting Andrew Pantyukhin (Sun, 30 Jul 2006 22:34:30 +0000 (UTC)): > > > > > sat 2006-07-30 22:34:30 UTC > > > > > > FreeBSD ports repository > > > > > > Modified files: > > > Mk bsd.linux-rpm.mk > > > Log: > > > - Only set default m_s_subdir if master_sites was undefined > > > > Would you please describe which problem this commit tries to solve > > (perhaps as a forced commit)? > > Fedora has a rather unique MSS scheme (related to its versioning) > and applying the scheme to another MS does not seem very > practical. In practice, a more relevant default value might be > attempted to be set after bsd.linux-rpm.mk. The default linux base is FC4, and most linux-infrastructure ports are from FC4 too. Those ports are the only ports which use this stuff ATM. So ATM it's very practical. > > I'm not sure if we have some ports which set MS but depend on the auto > > assigning of MSS, but I would not be surprised if we have such ports. > > Did you check for such ports? > > Sure. There are 29 USE_LINUX_RPM ports, only three set MS, > two of them don't need MSS at all and the third one would rather > MSS was not touched by linux-rpm.mk. Which port is the third one? > I'm sorry I committed this without prior discussion, but I tried to > make sure the change was not desctructive and as simple as it > gets. The mk is used by a lot of ports, so any bug may harm a lot of ports. I don't object if you want to join us at emulation@ (actually I would be very happy to see more contributors), but a review request for changes with a high impact ratio (in case of a bug) would be very nice next time. Bye, Alexander. -- Sometimes one should just look at things and think about things without doing things. -- Calvin http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 From owner-cvs-all@FreeBSD.ORG Tue Aug 1 09:21:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 216B816A4DA; Tue, 1 Aug 2006 09:21:58 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D32A043D49; Tue, 1 Aug 2006 09:21:57 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k719LvAI059746; Tue, 1 Aug 2006 09:21:57 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k719LvBG059745; Tue, 1 Aug 2006 09:21:57 GMT (envelope-from itetcu) Message-Id: <200608010921.k719LvBG059745@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 1 Aug 2006 09:21: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/jetspeed 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, 01 Aug 2006 09:21:58 -0000 itetcu 2006-08-01 09:21:57 UTC FreeBSD ports repository Modified files: www/jetspeed Makefile Log: - use INSTALL_PROGRAM macro; - add java as secondary CATEGORY [1] PR: ports/101065 Submitted by: Stanislav Sedov, me (itetcu) [1] Revision Changes Path 1.8 +4 -4 ports/www/jetspeed/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 1 09:23:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F74A16A4DA; Tue, 1 Aug 2006 09:23:49 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DE9D43D49; Tue, 1 Aug 2006 09:23:49 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k719Nmp2059891; Tue, 1 Aug 2006 09:23:49 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k719Nmdi059890; Tue, 1 Aug 2006 09:23:48 GMT (envelope-from clsung) Message-Id: <200608010923.k719Nmdi059890@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 09:23: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/multimedia/p5-FLV-Info 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, 01 Aug 2006 09:23:49 -0000 clsung 2006-08-01 09:23:48 UTC FreeBSD ports repository Modified files: multimedia/p5-FLV-Info Makefile distinfo Log: - Update to 0.12 PR: ports/101141 Submitted by: maintainer (Gea-Suan Lin) Revision Changes Path 1.6 +2 -3 ports/multimedia/p5-FLV-Info/Makefile 1.5 +3 -3 ports/multimedia/p5-FLV-Info/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 09:24:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC1EB16A4DF; Tue, 1 Aug 2006 09:24:49 +0000 (UTC) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id C6B3643D5E; Tue, 1 Aug 2006 09:24:47 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.4/8.13.3) with ESMTP id k719Oawg069028; Tue, 1 Aug 2006 13:24:36 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.4/8.13.3/Submit) id k719OZbV069023; Tue, 1 Aug 2006 13:24:35 +0400 (MSD) (envelope-from yar) Date: Tue, 1 Aug 2006 13:24:34 +0400 From: Yar Tikhiy To: "M. Warner Losh" Message-ID: <20060801092434.GA68364@comp.chem.msu.su> References: <200607311320.k6VDKihd025119@repoman.freebsd.org> <44CE3042.8060509@errno.com> <20060731170830.GC50797@comp.chem.msu.su> <20060731.191913.139568459.imp@bsdimp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060731.191913.139568459.imp@bsdimp.com> User-Agent: Mutt/1.5.9i Cc: sam@errno.com, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/libexec/telnetd 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, 01 Aug 2006 09:24:49 -0000 On Mon, Jul 31, 2006 at 07:19:13PM -0600, M. Warner Losh wrote: > In message: <20060731170830.GC50797@comp.chem.msu.su> > Yar Tikhiy writes: > : On Mon, Jul 31, 2006 at 09:30:58AM -0700, Sam Leffler wrote: > : > Yar Tikhiy wrote: > : > > yar 2006-07-31 13:20:44 UTC > : > > > : > > FreeBSD src repository > : > > > : > > Modified files: > : > > libexec/telnetd Makefile > : > > Log: > : > > telnetd(8) doesn't really go to the crunched floppies, > : > > so its Makefile needn't test for RELEASE_CRUNCH. > : > > : > What about folks building crunchgen'd images w/ telnetd; is there an > : > equivalent way to do the same thing w/ the new build knobs? > : > : I'd suggest using WITHOUT_CRYPT=yes, it will have the same effect > : for telnetd. Anyway, the RELEASE_CRUNCH knob's coverage is rather > : limited, it's respected by only those parts of src/ that are included > : in the standard boot floppies--telnetd was just an exception. The > : other exception is inetd, which puts its IPSEC stuff under > : RELEASE_CRUNCH. The better way would be to introduce the > : MK_IPSEC_SUPPORT knob. RELEASE_CRUNCH could be mostly handled in > : a single place then. Few tools build in a really special way if > : RELEASE_CRUNCH is defined; most tools just have crypto, IPX etc > : stuff omitted from them. > > We should test "MK_CRYPT" or "MK_IPSEC_SUPPORT" in the makefiles, set > via WITH/WITHOUT_CRYPT/IPSEC_SUPPORT in configuration files. And those Makefiles that decide whether to do something special depending on the status of RELEASE_CRUNCH can use a more general and convenient knob name, e.g., MK_MINIMAL (would be WITH_MINIMAL in src.conf). -- Yar From owner-cvs-all@FreeBSD.ORG Tue Aug 1 09:37:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 52ACB16A4DA; Tue, 1 Aug 2006 09:37:29 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F202943D46; Tue, 1 Aug 2006 09:37:28 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k719bSM5060697; Tue, 1 Aug 2006 09:37:28 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k719bS0i060696; Tue, 1 Aug 2006 09:37:28 GMT (envelope-from blackend) Message-Id: <200608010937.k719bS0i060696@repoman.freebsd.org> From: Marc Fonvieille Date: Tue, 1 Aug 2006 09:37:28 +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/disks 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: Tue, 01 Aug 2006 09:37:29 -0000 blackend 2006-08-01 09:37:28 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/disks chapter.sgml Log: It is now (since a while) possible to directly load atapicam support via the /boot/loader.conf file w/o requiring a kernel rebuild. Update the atapicam section to reflect that possibility. Revision Changes Path 1.263 +15 -4 doc/en_US.ISO8859-1/books/handbook/disks/chapter.sgml From owner-cvs-all@FreeBSD.ORG Tue Aug 1 09:47:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4989916A4DF; Tue, 1 Aug 2006 09:47:12 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0720D43D49; Tue, 1 Aug 2006 09:47:12 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k719lBnF061184; Tue, 1 Aug 2006 09:47:11 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k719lBsv061183; Tue, 1 Aug 2006 09:47:11 GMT (envelope-from yar) Message-Id: <200608010947.k719lBsv061183@repoman.freebsd.org> From: Yar Tikhiy Date: Tue, 1 Aug 2006 09:47: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/sys/geom/eli g_eli.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, 01 Aug 2006 09:47:12 -0000 yar 2006-08-01 09:47:11 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/geom/eli g_eli.c Log: MFC rev. 1.27: Fix a misspelled module name. Revision Changes Path 1.3.2.11 +1 -1 src/sys/geom/eli/g_eli.c From owner-cvs-all@FreeBSD.ORG Tue Aug 1 09:50:07 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F40A016A4E0 for ; Tue, 1 Aug 2006 09:50:06 +0000 (UTC) (envelope-from garyj@jennejohn.org) Received: from mail08b.verio.de (mail08b.verio.de [213.198.55.74]) by mx1.FreeBSD.org (Postfix) with SMTP id 18BB343D58 for ; Tue, 1 Aug 2006 09:50:04 +0000 (GMT) (envelope-from garyj@jennejohn.org) Received: from mx43.stngva01.us.mxservers.net (204.202.242.108) by mail08b.verio.de (RS ver 1.0.95vs) with SMTP id 0-0739985800; Tue, 1 Aug 2006 11:50:03 +0200 (CEST) Received: from www.jennejohn.org [213.198.5.174] (EHLO peedub.jennejohn.org) by mx43.stngva01.us.mxservers.net (mxl_mta-1.3.8-10p4) with ESMTP id 9c32fc44.12548.048.mx43.stngva01.us.mxservers.net; Tue, 01 Aug 2006 05:50:02 -0400 (EDT) Received: from jennejohn.org (localhost [127.0.0.1]) by peedub.jennejohn.org (8.13.7/8.11.6) with ESMTP id k719nwsS003379; Tue, 1 Aug 2006 11:49:59 +0200 (CEST) (envelope-from garyj@jennejohn.org) Message-Id: <200608010949.k719nwsS003379@peedub.jennejohn.org> X-Mailer: exmh version 2.7.2 01/07/2005 with nmh-1.0.4 To: Dmitry Morozovsky In-Reply-To: Message from Dmitry Morozovsky of "Tue, 01 Aug 2006 12:35:32 +0400." <20060801123514.W1467@woozle.rinet.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 01 Aug 2006 11:49:58 +0200 From: Gary Jennejohn X-Spam: [F=0.6766343268; heur=0.500(-18200); stat=0.582; spamtraq-heur=0.600(2006073114)] X-MAIL-FROM: X-SOURCE-IP: [213.198.5.174] X-Loop-Detect: 1 X-DistLoop-Detect: 1 Cc: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org, Joel Dahl Subject: Re: cvs commit: doc/en_US.ISO8859-1/articles/contributors contrib.core.sgml contrib.corealumni.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, 01 Aug 2006 09:50:07 -0000 Dmitry Morozovsky writes: > Here is quick patch. Any objections? > > Index: news.xml > =================================================================== > RCS file: /home/ncvs/www/en/news/news.xml,v > retrieving revision 1.416 > diff -u -r1.416 news.xml > --- news.xml 19 Jul 2006 15:21:05 -0000 1.416 > +++ news.xml 1 Aug 2006 08:35:04 -0000 > @@ -31,6 +31,18 @@ > > 7 > > + 26 > + > + New FreeBSD Core Team elected > + > +

FreeBSD Core Team elections have been finished. > + The announce is available + > href="http://docs.freebsd.org/cgi/getmsg.cgi?fetch=0+0+archive/2006/freebsd-a > nnounce/20060730.freebsd-announce">here. ^ should there be a space here? > +

> +
> +
> + > + > 19 > > Podcast Interview with FreeBSD Developer Greg Lehey > --- Gary Jennejohn / garyjATjennejohnDOTorg gjATfreebsdDOTorg garyjATdenxDOTde From owner-cvs-all@FreeBSD.ORG Tue Aug 1 09:50:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 809F816A501; Tue, 1 Aug 2006 09:50:27 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C44C43D45; Tue, 1 Aug 2006 09:50:27 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k719oQmM061358; Tue, 1 Aug 2006 09:50:26 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k719oQjD061357; Tue, 1 Aug 2006 09:50:26 GMT (envelope-from rafan) Message-Id: <200608010950.k719oQjD061357@repoman.freebsd.org> From: Rong-En Fan Date: Tue, 1 Aug 2006 09:50: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/multimedia/kbtv Makefile distinfo 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: Tue, 01 Aug 2006 09:50:27 -0000 rafan 2006-08-01 09:50:26 UTC FreeBSD ports repository Modified files: multimedia/kbtv Makefile distinfo pkg-message Log: - Update to 1.1.3 PR: ports/101034 Submitted by: Danny Pansters (maintainer) Revision Changes Path 1.7 +39 -16 ports/multimedia/kbtv/Makefile 1.5 +3 -3 ports/multimedia/kbtv/distinfo 1.2 +3 -4 ports/multimedia/kbtv/pkg-message From owner-cvs-all@FreeBSD.ORG Tue Aug 1 09:53:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E6C416A4DA; Tue, 1 Aug 2006 09:53:54 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0EFAC43D4C; Tue, 1 Aug 2006 09:53:54 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k719rrJv061561; Tue, 1 Aug 2006 09:53:53 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k719rrUn061560; Tue, 1 Aug 2006 09:53:53 GMT (envelope-from yar) Message-Id: <200608010953.k719rrUn061560@repoman.freebsd.org> From: Yar Tikhiy Date: Tue, 1 Aug 2006 09:53:53 +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/bin/test test.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: Tue, 01 Aug 2006 09:53:54 -0000 yar 2006-08-01 09:53:53 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) bin/test test.1 Log: MFC rev. 1.24-1.25: test(1) doesn't do shortcut evaluation in its logical operators. Revision Changes Path 1.23.2.1 +14 -1 src/bin/test/test.1 From owner-cvs-all@FreeBSD.ORG Tue Aug 1 09:58:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 467A116A4DD; Tue, 1 Aug 2006 09:58:53 +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 9875D43D46; Tue, 1 Aug 2006 09:58:52 +0000 (GMT) (envelope-from marck@rinet.ru) Received: from localhost (localhost [127.0.0.1]) by woozle.rinet.ru (8.13.6/8.13.6) with ESMTP id k719wpLp002737; Tue, 1 Aug 2006 13:58:51 +0400 (MSD) (envelope-from marck@rinet.ru) Date: Tue, 1 Aug 2006 13:58:51 +0400 (MSD) From: Dmitry Morozovsky To: Gary Jennejohn In-Reply-To: <200608010949.k719nwsS003379@peedub.jennejohn.org> Message-ID: <20060801135743.O1467@woozle.rinet.ru> References: <200608010949.k719nwsS003379@peedub.jennejohn.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-2.0.2 (woozle.rinet.ru [0.0.0.0]); Tue, 01 Aug 2006 13:58:51 +0400 (MSD) Cc: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org, Joel Dahl Subject: Re: cvs commit: doc/en_US.ISO8859-1/articles/contributors contrib.core.sgml contrib.corealumni.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, 01 Aug 2006 09:58:53 -0000 On Tue, 1 Aug 2006, Gary Jennejohn wrote: GJ> Dmitry Morozovsky writes: GJ> > Here is quick patch. Any objections? GJ> > GJ> > Index: news.xml GJ> > =================================================================== GJ> > RCS file: /home/ncvs/www/en/news/news.xml,v GJ> > retrieving revision 1.416 GJ> > diff -u -r1.416 news.xml GJ> > --- news.xml 19 Jul 2006 15:21:05 -0000 1.416 GJ> > +++ news.xml 1 Aug 2006 08:35:04 -0000 GJ> > @@ -31,6 +31,18 @@ GJ> > GJ> > 7 GJ> > GJ> > + 26 GJ> > + GJ> > + New FreeBSD Core Team elected GJ> > + GJ> > +

FreeBSD Core Team elections have been finished. GJ> > + The announce is available ^^^^^^^^ announcement Yes, sure. GJ> > + GJ> > href="http://docs.freebsd.org/cgi/getmsg.cgi?fetch=0+0+archive/2006/freebsd-a GJ> > nnounce/20060730.freebsd-announce">here. GJ> ^ should there be a space here? Hmm. What for? Or, did I misunderstood you? Sincerely, D.Marck [DM5020, MCK-RIPE, DM3-RIPN] ------------------------------------------------------------------------ *** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru *** ------------------------------------------------------------------------ From owner-cvs-all@FreeBSD.ORG Tue Aug 1 10:03:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B374E16A4DA; Tue, 1 Aug 2006 10:03:52 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70E6B43D45; Tue, 1 Aug 2006 10:03:52 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71A3qRC063445; Tue, 1 Aug 2006 10:03:52 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71A3qe7063444; Tue, 1 Aug 2006 10:03:52 GMT (envelope-from thompsa) Message-Id: <200608011003.k71A3qe7063444@repoman.freebsd.org> From: Andrew Thompson Date: Tue, 1 Aug 2006 10:03: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/sys/net if_bridge.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, 01 Aug 2006 10:03:52 -0000 thompsa 2006-08-01 10:03:52 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/net if_bridge.c Log: MFC r1.67 Remove variables that are overridden by ether_ifattach(). Revision Changes Path 1.11.2.35 +0 -3 src/sys/net/if_bridge.c From owner-cvs-all@FreeBSD.ORG Tue Aug 1 10:29:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C8E416A4DA; Tue, 1 Aug 2006 10:29:26 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DDDF743D45; Tue, 1 Aug 2006 10:29:25 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71ATPE5064642; Tue, 1 Aug 2006 10:29:25 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71ATP7A064641; Tue, 1 Aug 2006 10:29:25 GMT (envelope-from krion) Message-Id: <200608011029.k71ATP7A064641@repoman.freebsd.org> From: Kirill Ponomarew Date: Tue, 1 Aug 2006 10:29: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/mail/exim 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, 01 Aug 2006 10:29:26 -0000 krion 2006-08-01 10:29:25 UTC FreeBSD ports repository Modified files: mail/exim Makefile distinfo Log: Update to 4.63 Revision Changes Path 1.219 +1 -1 ports/mail/exim/Makefile 1.89 +3 -3 ports/mail/exim/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 10:30:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9FEB116A4DA; Tue, 1 Aug 2006 10:30:27 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FA7543D5D; Tue, 1 Aug 2006 10:30:27 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71AURDe064759; Tue, 1 Aug 2006 10:30:27 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71AURni064758; Tue, 1 Aug 2006 10:30:27 GMT (envelope-from rwatson) Message-Id: <200608011030.k71AURni064758@repoman.freebsd.org> From: Robert Watson Date: Tue, 1 Aug 2006 10:30: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/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: Tue, 01 Aug 2006 10:30:27 -0000 rwatson 2006-08-01 10:30:26 UTC FreeBSD src repository Modified files: sys/kern uipc_sockbuf.c uipc_socket.c sys/sys socketvar.h Log: Reimplement socket buffer tear-down in sofree(): as the socket is no longer referenced by other threads (hence our freeing it), we don't need to set the can't send and can't receive flags, wake up the consumers, perform two levels of locking, etc. Implement a fast-path teardown, sbdestroy(), which flushes and releases each socket buffer. A manual dom_dispose of the receive buffer is still required explicitly to GC any in-flight file descriptors, etc, before flushing the buffer. This results in a 9% UP performance improvement and 16% SMP performance improvement on a tight loop of socket();close(); in micro-benchmarking, but will likely also affect CPU-bound macro-benchmark performance. Revision Changes Path 1.163 +53 -13 src/sys/kern/uipc_sockbuf.c 1.276 +22 -14 src/sys/kern/uipc_socket.c 1.154 +1 -0 src/sys/sys/socketvar.h From owner-cvs-all@FreeBSD.ORG Tue Aug 1 10:59:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 776BE16A4DA; Tue, 1 Aug 2006 10:59:42 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE42043D49; Tue, 1 Aug 2006 10:59:41 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71AxfTJ067124; Tue, 1 Aug 2006 10:59:41 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71Axfrv067123; Tue, 1 Aug 2006 10:59:41 GMT (envelope-from acm) Message-Id: <200608011059.k71Axfrv067123@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Tue, 1 Aug 2006 10:59: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/emulators/xgngeo Makefile distinfo pkg-plist ports/emulators/xgngeo/files patch-data-py___init__.py patch-data-py_configfile.py patch-setup.py patch-xgngeo.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: Tue, 01 Aug 2006 10:59:42 -0000 acm 2006-08-01 10:59:41 UTC FreeBSD ports repository Modified files: emulators/xgngeo Makefile distinfo pkg-plist emulators/xgngeo/files patch-data-py_configfile.py Added files: emulators/xgngeo/files patch-data-py___init__.py patch-setup.py Removed files: emulators/xgngeo/files patch-xgngeo.py Log: - Update to 16b Approved by: garga (mentor) Revision Changes Path 1.3 +4 -24 ports/emulators/xgngeo/Makefile 1.2 +3 -3 ports/emulators/xgngeo/distinfo 1.1 +11 -0 ports/emulators/xgngeo/files/patch-data-py___init__.py (new) 1.2 +9 -30 ports/emulators/xgngeo/files/patch-data-py_configfile.py 1.1 +19 -0 ports/emulators/xgngeo/files/patch-setup.py (new) 1.2 +0 -80 ports/emulators/xgngeo/files/patch-xgngeo.py (dead) 1.2 +35 -20 ports/emulators/xgngeo/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 1 11:02:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6B6D16A4E9 for ; Tue, 1 Aug 2006 11:02:00 +0000 (UTC) (envelope-from ru@FreeBSD.org.ua) Received: from frdp.freebsd.org.ua (82.193.106.18.ipnet.kiev.ua [82.193.106.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12B9A43D53 for ; Tue, 1 Aug 2006 11:01:59 +0000 (GMT) (envelope-from ru@FreeBSD.org.ua) Received: from frdp.freebsd.org.ua (localhost [127.0.0.1]) by frdp.freebsd.org.ua (8.13.6/8.13.6) with ESMTP id k71B3l1P035109; Tue, 1 Aug 2006 14:03:47 +0300 (EEST) (envelope-from ru@FreeBSD.org.ua) Received: (from ru@localhost) by frdp.freebsd.org.ua (8.13.6/8.13.6/Submit) id k71B3lEi035104; Tue, 1 Aug 2006 14:03:47 +0300 (EEST) (envelope-from ru) Date: Tue, 1 Aug 2006 14:03:47 +0300 From: Ruslan Ermilov To: "M. Warner Losh" Message-ID: <20060801110347.GA35056@frdp.freebsd.org.ua> References: <20060731140951.GC48538@comp.chem.msu.su> <20060731163209.GB50797@comp.chem.msu.su> <20060731.191558.-1253045041.imp@bsdimp.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Q68bSM7Ycu6FN28Q" Content-Disposition: inline In-Reply-To: <20060731.191558.-1253045041.imp@bsdimp.com> User-Agent: Mutt/1.5.12-2006-07-14 Cc: marcel@FreeBSD.org, yar@comp.chem.msu.su, cvs-all@FreeBSD.org, marcel@xcllnt.net, src-committers@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/kldxref 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, 01 Aug 2006 11:02:00 -0000 --Q68bSM7Ycu6FN28Q Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jul 31, 2006 at 07:15:58PM -0600, M. Warner Losh wrote: > It all started out '.if defined(NO_FOO)' or '.if !defined(NO_FOO)'. > This is why NO_OBJ and NO_MAN are that way. Then people wanted to > override the global default to force things to be linked statically. > This was so that things like init could always be static back in the > day. This accounts for NO_SHARED handling. It is a miss-mash. >=20 > That's why we're not supposed to set NO_FOO anymore. MK_FOO is set to > yes or no depending on defaults and WITH/WITHOUT_FOO. I'm not sure > why ru@ didn't include the above in his big cleanup. >=20 NO_MAN has been converted, and is preserved for backwards compatibility. NO_OBJ I didn't test yet. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --Q68bSM7Ycu6FN28Q Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.4 (FreeBSD) iD8DBQFEzzUTqRfpzJluFF4RAhcWAJ4tAgwYAuLPGoANVwELv/qjliq6IQCfV6oV gD8kMBi05rb6j/UbH3qGbas= =qvVE -----END PGP SIGNATURE----- --Q68bSM7Ycu6FN28Q-- From owner-cvs-all@FreeBSD.ORG Tue Aug 1 11:12:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2B6716A4DA; Tue, 1 Aug 2006 11:12:26 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAFE943D46; Tue, 1 Aug 2006 11:12:26 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71BCQ1F069171; Tue, 1 Aug 2006 11:12:26 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71BCQKk069170; Tue, 1 Aug 2006 11:12:26 GMT (envelope-from acm) Message-Id: <200608011112.k71BCQKk069170@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Tue, 1 Aug 2006 11:12: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/security Makefile ports/security/gpass 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, 01 Aug 2006 11:12:27 -0000 acm 2006-08-01 11:12:26 UTC FreeBSD ports repository Modified files: security Makefile Added files: security/gpass Makefile distinfo pkg-descr pkg-plist Log: New port: security/gpass The GNOME Password Manager - GPass for short - is a simple application, written for the GNOME 2 desktop, that lets you manage a collection of passwords. The password collection is stored in an encrypted file, protected by a master-password. GPass is released under the GNU GPL2 licence. Features: * Clean and easy-to-use user interface. * Quick-search facility. * Username and password may easily be copied to the clipboard. * Encryption is done using the OpenSSL cryptographics library. * The built-in password generator helps you generate secure passwords. * You can launch a website and the associated username/passwords direct from GPass Author: Kouji TAKAO WWW: http://projects.netlab.jp/gpass/ PR: ports/100845 Submitted by: ports_at_c0decafe.net Approved by: garga (mentor) Revision Changes Path 1.796 +1 -0 ports/security/Makefile 1.1 +35 -0 ports/security/gpass/Makefile (new) 1.1 +3 -0 ports/security/gpass/distinfo (new) 1.1 +19 -0 ports/security/gpass/pkg-descr (new) 1.1 +17 -0 ports/security/gpass/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 11:13:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A861816A4DE; Tue, 1 Aug 2006 11:13:18 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41DBB43D58; Tue, 1 Aug 2006 11:13:18 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71BDHI2069221; Tue, 1 Aug 2006 11:13:17 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71BDHYH069220; Tue, 1 Aug 2006 11:13:17 GMT (envelope-from acm) Message-Id: <200608011113.k71BDHYH069220@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Tue, 1 Aug 2006 11:13: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: 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, 01 Aug 2006 11:13:18 -0000 acm 2006-08-01 11:13:17 UTC FreeBSD ports repository Modified files: . modules Log: gpass --> ports/security/gpass Revision Changes Path 1.15833 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 11:20:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58CC216A4DA; Tue, 1 Aug 2006 11:20:59 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2106843D45; Tue, 1 Aug 2006 11:20:59 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71BKw6j069686; Tue, 1 Aug 2006 11:20:59 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71BKwZQ069685; Tue, 1 Aug 2006 11:20:58 GMT (envelope-from acm) Message-Id: <200608011120.k71BKwZQ069685@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Tue, 1 Aug 2006 11:20: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/devel Makefile ports/devel/pikdev Makefile distinfo pkg-descr pkg-plist ports/devel/pikdev/files patch-pikdev_Config.cpp patch-pikdev_uparport.cc patch-pikdev_uparport.hh 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: Tue, 01 Aug 2006 11:20:59 -0000 acm 2006-08-01 11:20:58 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/pikdev Makefile distinfo pkg-descr pkg-plist devel/pikdev/files patch-pikdev_Config.cpp patch-pikdev_uparport.cc patch-pikdev_uparport.hh pkg-message.in Log: New port: devel/pikdev PiKdev is a simple graphic IDE for the development of PIC-based applications. It currently supports assembly language. C language is also supported for PIC 18 devices. PiKdev is developed in C++ under Linux, FreeBSD and is based on the KDE environment. WWW: http://pikdev.free.fr/ Approved by: garga (mentor) Revision Changes Path 1.2371 +1 -0 ports/devel/Makefile 1.1 +66 -0 ports/devel/pikdev/Makefile (new) 1.1 +3 -0 ports/devel/pikdev/distinfo (new) 1.1 +29 -0 ports/devel/pikdev/files/patch-pikdev_Config.cpp (new) 1.1 +163 -0 ports/devel/pikdev/files/patch-pikdev_uparport.cc (new) 1.1 +16 -0 ports/devel/pikdev/files/patch-pikdev_uparport.hh (new) 1.1 +21 -0 ports/devel/pikdev/files/pkg-message.in (new) 1.1 +6 -0 ports/devel/pikdev/pkg-descr (new) 1.1 +48 -0 ports/devel/pikdev/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 11:23:02 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3486E16A4DD; Tue, 1 Aug 2006 11:23:02 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6A9F43D55; Tue, 1 Aug 2006 11:23:01 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71BN12W069851; Tue, 1 Aug 2006 11:23:01 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71BN1Q7069850; Tue, 1 Aug 2006 11:23:01 GMT (envelope-from acm) Message-Id: <200608011123.k71BN1Q7069850@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Tue, 1 Aug 2006 11:23: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: Tue, 01 Aug 2006 11:23:02 -0000 acm 2006-08-01 11:23:01 UTC FreeBSD ports repository Modified files: . modules Log: pikdev --> ports/devel/pikdev Revision Changes Path 1.15834 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 11:52:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5762D16A4E2; Tue, 1 Aug 2006 11:52:55 +0000 (UTC) (envelope-from vd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAB7943D66; Tue, 1 Aug 2006 11:52:53 +0000 (GMT) (envelope-from vd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71Bqrko071198; Tue, 1 Aug 2006 11:52:53 GMT (envelope-from vd@repoman.freebsd.org) Received: (from vd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71BqrYM071197; Tue, 1 Aug 2006 11:52:53 GMT (envelope-from vd) Message-Id: <200608011152.k71BqrYM071197@repoman.freebsd.org> From: Vasil Dimov Date: Tue, 1 Aug 2006 11:52: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: 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, 01 Aug 2006 11:52:55 -0000 vd 2006-08-01 11:52:53 UTC FreeBSD ports repository Modified files: . access Log: I am back! Revision Changes Path 1.717 +1 -1 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Tue Aug 1 12:15:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 42BF816A4DA; Tue, 1 Aug 2006 12:15:15 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D82DE43DB1; Tue, 1 Aug 2006 12:12:03 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71CBqbK073344; Tue, 1 Aug 2006 12:11:52 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71CBqIP073343; Tue, 1 Aug 2006 12:11:52 GMT (envelope-from clsung) Message-Id: <200608011211.k71CBqIP073343@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 12:11: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/mail/p5-Email-Date 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, 01 Aug 2006 12:15:15 -0000 clsung 2006-08-01 12:11:52 UTC FreeBSD ports repository Modified files: mail/p5-Email-Date Makefile distinfo Log: - update to 1.101 - take maintainership Revision Changes Path 1.4 +3 -2 ports/mail/p5-Email-Date/Makefile 1.5 +3 -3 ports/mail/p5-Email-Date/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 12:19:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB53316A4DA; Tue, 1 Aug 2006 12:19:35 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9342343D86; Tue, 1 Aug 2006 12:19:05 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71CJ5ZC073638; Tue, 1 Aug 2006 12:19:05 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71CJ5BK073637; Tue, 1 Aug 2006 12:19:05 GMT (envelope-from clsung) Message-Id: <200608011219.k71CJ5BK073637@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 12:19: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/qterm Makefile distinfo pkg-descr pkg-message pkg-plist ports/chinese/qterm/files patch-qterm-main.cpp patch-qterm-qtermwindow.h patch-qterm_qtermcanvas.cpp patch-qterm_qtermiplocation.cpp patch-qterm_qtermtextline.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: Tue, 01 Aug 2006 12:19:36 -0000 clsung 2006-08-01 12:19:05 UTC FreeBSD ports repository Modified files: chinese/qterm Makefile distinfo pkg-descr pkg-message pkg-plist Added files: chinese/qterm/files patch-qterm-main.cpp patch-qterm-qtermwindow.h Removed files: chinese/qterm/files patch-qterm_qtermcanvas.cpp patch-qterm_qtermiplocation.cpp patch-qterm_qtermtextline.cpp Log: - upgrade from 0.4.0-pre2 to 0.4.0-release - pass maintainership PR: ports/100918 Submitted by: maintainer (Yuan Jue) Approved by: maintainer (gavin_AT_FreeBSDChina dot org) Revision Changes Path 1.25 +5 -6 ports/chinese/qterm/Makefile 1.15 +3 -3 ports/chinese/qterm/distinfo 1.1 +18 -0 ports/chinese/qterm/files/patch-qterm-main.cpp (new) 1.1 +17 -0 ports/chinese/qterm/files/patch-qterm-qtermwindow.h (new) 1.2 +0 -11 ports/chinese/qterm/files/patch-qterm_qtermcanvas.cpp (dead) 1.3 +0 -28 ports/chinese/qterm/files/patch-qterm_qtermiplocation.cpp (dead) 1.2 +0 -11 ports/chinese/qterm/files/patch-qterm_qtermtextline.cpp (dead) 1.4 +7 -5 ports/chinese/qterm/pkg-descr 1.2 +9 -0 ports/chinese/qterm/pkg-message 1.10 +6 -2 ports/chinese/qterm/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 1 12:26:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CAD6416A4DF; Tue, 1 Aug 2006 12:26:26 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9992843D67; Tue, 1 Aug 2006 12:26:26 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71CQQmf074114; Tue, 1 Aug 2006 12:26:26 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71CQQeO074113; Tue, 1 Aug 2006 12:26:26 GMT (envelope-from clsung) Message-Id: <200608011226.k71CQQeO074113@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 12:26: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/textproc Makefile ports/textproc/p5-XML-Literal 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, 01 Aug 2006 12:26:26 -0000 clsung 2006-08-01 12:26:26 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/p5-XML-Literal Makefile distinfo pkg-descr pkg-plist Log: Add p5-XML-Literal 0.01, syntax suppor for XML literals. PR: ports/101155 Submitted by: Gea-Suan Lin Revision Changes Path 1.1036 +1 -0 ports/textproc/Makefile 1.1 +28 -0 ports/textproc/p5-XML-Literal/Makefile (new) 1.1 +3 -0 ports/textproc/p5-XML-Literal/distinfo (new) 1.1 +8 -0 ports/textproc/p5-XML-Literal/pkg-descr (new) 1.1 +6 -0 ports/textproc/p5-XML-Literal/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 12:26:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D984B16A4DE; Tue, 1 Aug 2006 12:26:48 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3963043D81; Tue, 1 Aug 2006 12:26:45 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71CQjop074166; Tue, 1 Aug 2006 12:26:45 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71CQjJX074165; Tue, 1 Aug 2006 12:26:45 GMT (envelope-from clsung) Message-Id: <200608011226.k71CQjJX074165@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 12:26: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: 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, 01 Aug 2006 12:26:49 -0000 clsung 2006-08-01 12:26:45 UTC FreeBSD ports repository Modified files: . modules Log: p5-XML-Literal --> ports/textproc/p5-XML-Literal Revision Changes Path 1.15835 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 12:29:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7ED7816A4DD; Tue, 1 Aug 2006 12:29:48 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C89D43D6A; Tue, 1 Aug 2006 12:29:48 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71CTmmH074331; Tue, 1 Aug 2006 12:29:48 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71CTmhP074330; Tue, 1 Aug 2006 12:29:48 GMT (envelope-from clsung) Message-Id: <200608011229.k71CTmhP074330@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 12:29: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 Makefile ports/textproc/p5-Text-Delimited 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, 01 Aug 2006 12:29:48 -0000 clsung 2006-08-01 12:29:47 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/p5-Text-Delimited Makefile distinfo pkg-descr pkg-plist Log: Add p5-Text-Delimited 2.00, module for parsing delimited text files. PR: ports/101158 Submitted by: Gea-Suan Lin Revision Changes Path 1.1037 +1 -0 ports/textproc/Makefile 1.1 +28 -0 ports/textproc/p5-Text-Delimited/Makefile (new) 1.1 +3 -0 ports/textproc/p5-Text-Delimited/distinfo (new) 1.1 +10 -0 ports/textproc/p5-Text-Delimited/pkg-descr (new) 1.1 +6 -0 ports/textproc/p5-Text-Delimited/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 12:30:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F34E916A4E0; Tue, 1 Aug 2006 12:30:02 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76ED943D7D; Tue, 1 Aug 2006 12:30:02 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71CU2Yd074379; Tue, 1 Aug 2006 12:30:02 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71CU2CN074378; Tue, 1 Aug 2006 12:30:02 GMT (envelope-from clsung) Message-Id: <200608011230.k71CU2CN074378@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 12:30: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: 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, 01 Aug 2006 12:30:03 -0000 clsung 2006-08-01 12:30:02 UTC FreeBSD ports repository Modified files: . modules Log: p5-Text-Delimited --> ports/textproc/p5-Text-Delimited Revision Changes Path 1.15836 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 12:36:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE0AA16A4DA; Tue, 1 Aug 2006 12:36:21 +0000 (UTC) (envelope-from vd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6769F43D46; Tue, 1 Aug 2006 12:36:21 +0000 (GMT) (envelope-from vd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71CaLcC075008; Tue, 1 Aug 2006 12:36:21 GMT (envelope-from vd@repoman.freebsd.org) Received: (from vd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71CaLT2075007; Tue, 1 Aug 2006 12:36:21 GMT (envelope-from vd) Message-Id: <200608011236.k71CaLT2075007@repoman.freebsd.org> From: Vasil Dimov Date: Tue, 1 Aug 2006 12: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: CVSROOT modules ports MOVED ports/japanese Makefile ports/japanese/eb3 Makefile distinfo pkg-descr pkg-plist ports/japanese/eb3/files patch-configure ports/mail Makefile ports/mail/dspampd 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, 01 Aug 2006 12:36:21 -0000 vd 2006-08-01 12:36:21 UTC FreeBSD ports repository Modified files: . modules . MOVED japanese Makefile mail Makefile net Makefile Removed files: japanese/eb3 Makefile distinfo pkg-descr pkg-plist japanese/eb3/files patch-configure mail/dspampd Makefile distinfo pkg-descr pkg-plist mail/dspampd/files dspampd.rc lpatch-dspampd_system_users.diff patch-dspampd.conf patch-dspampd.relaycontrol net/svnc Makefile distinfo pkg-descr Log: Remove expired leaf ports: 2006-07-19 japanese/eb3 2006-07-30 mail/dspampd 2006-07-28 net/svnc Revision Changes Path 1.15837 +0 -3 CVSROOT/modules 1.1105 +4 -1 ports/MOVED 1.631 +0 -1 ports/japanese/Makefile 1.54 +0 -101 ports/japanese/eb3/Makefile (dead) 1.26 +0 -99 ports/japanese/eb3/distinfo (dead) 1.2 +0 -10 ports/japanese/eb3/files/patch-configure (dead) 1.4 +0 -10 ports/japanese/eb3/pkg-descr (dead) 1.18 +0 -321 ports/japanese/eb3/pkg-plist (dead) 1.785 +0 -1 ports/mail/Makefile 1.6 +0 -160 ports/mail/dspampd/Makefile (dead) 1.3 +0 -3 ports/mail/dspampd/distinfo (dead) 1.3 +0 -40 ports/mail/dspampd/files/dspampd.rc (dead) 1.2 +0 -14 ports/mail/dspampd/files/lpatch-dspampd_system_users.diff (dead) 1.2 +0 -134 ports/mail/dspampd/files/patch-dspampd.conf (dead) 1.2 +0 -10 ports/mail/dspampd/files/patch-dspampd.relaycontrol (dead) 1.2 +0 -9 ports/mail/dspampd/pkg-descr (dead) 1.2 +0 -10 ports/mail/dspampd/pkg-plist (dead) 1.1708 +0 -1 ports/net/Makefile 1.15 +0 -75 ports/net/svnc/Makefile (dead) 1.4 +0 -6 ports/net/svnc/distinfo (dead) 1.4 +0 -22 ports/net/svnc/pkg-descr (dead) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 12:36:24 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B177D16A58D; Tue, 1 Aug 2006 12:36:24 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2966543D46; Tue, 1 Aug 2006 12:36:24 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71CaOji075039; Tue, 1 Aug 2006 12:36:24 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71CaOgR075038; Tue, 1 Aug 2006 12:36:24 GMT (envelope-from sat) Message-Id: <200608011236.k71CaOgR075038@repoman.freebsd.org> From: Andrew Pantyukhin Date: Tue, 1 Aug 2006 12: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/textproc/p5-Unicode-CheckUTF8 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: Tue, 01 Aug 2006 12:36:24 -0000 sat 2006-08-01 12:36:23 UTC FreeBSD ports repository Modified files: textproc/p5-Unicode-CheckUTF8 Makefile pkg-plist Log: - Fix plist PR: ports/101098 Submitted by: erwin Revision Changes Path 1.3 +1 -0 ports/textproc/p5-Unicode-CheckUTF8/Makefile 1.2 +2 -0 ports/textproc/p5-Unicode-CheckUTF8/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 1 12:38:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0667416A4DF; Tue, 1 Aug 2006 12:38:50 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C906A43D46; Tue, 1 Aug 2006 12:38:49 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71CcniJ075262; Tue, 1 Aug 2006 12:38:49 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71Ccngc075261; Tue, 1 Aug 2006 12:38:49 GMT (envelope-from clsung) Message-Id: <200608011238.k71Ccngc075261@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 12:38: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 Makefile ports/devel/p5-Term-Menus 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, 01 Aug 2006 12:38:50 -0000 clsung 2006-08-01 12:38:49 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-Term-Menus Makefile distinfo pkg-descr pkg-plist Log: Add p5-Term-Menus 1.16, create Powerful Terminal, Console and CMD Enviroment Menus. PR: ports/101143 Submitted by: Gea-Suan Lin Revision Changes Path 1.2372 +1 -0 ports/devel/Makefile 1.1 +22 -0 ports/devel/p5-Term-Menus/Makefile (new) 1.1 +3 -0 ports/devel/p5-Term-Menus/distinfo (new) 1.1 +11 -0 ports/devel/p5-Term-Menus/pkg-descr (new) 1.1 +5 -0 ports/devel/p5-Term-Menus/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 12:39:02 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F69B16A4DD; Tue, 1 Aug 2006 12:39:02 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FBFA43D53; Tue, 1 Aug 2006 12:39:02 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71Cd2EZ075303; Tue, 1 Aug 2006 12:39:02 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71Cd2EJ075302; Tue, 1 Aug 2006 12:39:02 GMT (envelope-from sat) Message-Id: <200608011239.k71Cd2EJ075302@repoman.freebsd.org> From: Andrew Pantyukhin Date: Tue, 1 Aug 2006 12: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/textproc/p5-Text-Bastardize 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: Tue, 01 Aug 2006 12:39:02 -0000 sat 2006-08-01 12:39:02 UTC FreeBSD ports repository Modified files: textproc/p5-Text-Bastardize Makefile Added files: textproc/p5-Text-Bastardize pkg-plist Log: - Fix plist PR: ports/101099 Submitted by: erwin Revision Changes Path 1.3 +1 -4 ports/textproc/p5-Text-Bastardize/Makefile 1.1 +5 -0 ports/textproc/p5-Text-Bastardize/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 12:39:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A7F2E16A4DA; Tue, 1 Aug 2006 12:39:17 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32AA243D45; Tue, 1 Aug 2006 12:39:16 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71CdGgG075333; Tue, 1 Aug 2006 12:39:16 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71CdGI2075332; Tue, 1 Aug 2006 12:39:16 GMT (envelope-from clsung) Message-Id: <200608011239.k71CdGI2075332@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 12:39: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: 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, 01 Aug 2006 12:39:17 -0000 clsung 2006-08-01 12:39:16 UTC FreeBSD ports repository Modified files: . modules Log: p5-Term-Menus --> ports/devel/p5-Term-Menus Revision Changes Path 1.15838 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 12:41:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8E0016A4DD; Tue, 1 Aug 2006 12:41:46 +0000 (UTC) (envelope-from marck@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C64343D7D; Tue, 1 Aug 2006 12:41:43 +0000 (GMT) (envelope-from marck@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71CfhcY075527; Tue, 1 Aug 2006 12:41:43 GMT (envelope-from marck@repoman.freebsd.org) Received: (from marck@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71Cfhve075521; Tue, 1 Aug 2006 12:41:43 GMT (envelope-from marck) Message-Id: <200608011241.k71Cfhve075521@repoman.freebsd.org> From: Dmitry Morozovsky Date: Tue, 1 Aug 2006 12:41:42 +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 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, 01 Aug 2006 12:41:47 -0000 marck 2006-08-01 12:41:42 UTC FreeBSD doc repository Modified files: en/news news.xml Log: Announce Core Team 2006 elections results. Revision Changes Path 1.417 +13 -1 www/en/news/news.xml From owner-cvs-all@FreeBSD.ORG Tue Aug 1 12:55:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A64A916A4E6; Tue, 1 Aug 2006 12:55:48 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D622E43D73; Tue, 1 Aug 2006 12:55:43 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71CthLH084063; Tue, 1 Aug 2006 12:55:43 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71CthYe084062; Tue, 1 Aug 2006 12:55:43 GMT (envelope-from clsung) Message-Id: <200608011255.k71CthYe084062@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 12:55: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/p5-Tie-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, 01 Aug 2006 12:55:48 -0000 clsung 2006-08-01 12:55:43 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-Tie-Simple Makefile distinfo pkg-descr pkg-plist Log: Add p5-Tie-Simple 1.03, variable ties made easier: much, much, much easier. PR: ports/101156 Submitted by: Gea-Suan Lin Revision Changes Path 1.2373 +1 -0 ports/devel/Makefile 1.1 +22 -0 ports/devel/p5-Tie-Simple/Makefile (new) 1.1 +3 -0 ports/devel/p5-Tie-Simple/distinfo (new) 1.1 +14 -0 ports/devel/p5-Tie-Simple/pkg-descr (new) 1.1 +12 -0 ports/devel/p5-Tie-Simple/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 12:56:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 65D1C16A4E2; Tue, 1 Aug 2006 12:56:13 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 422F543D53; Tue, 1 Aug 2006 12:56:02 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71Cu2EQ084117; Tue, 1 Aug 2006 12:56:02 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71Cu1qC084116; Tue, 1 Aug 2006 12:56:01 GMT (envelope-from clsung) Message-Id: <200608011256.k71Cu1qC084116@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 12:56: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: Tue, 01 Aug 2006 12:56:13 -0000 clsung 2006-08-01 12:56:01 UTC FreeBSD ports repository Modified files: . modules Log: p5-Tie-Simple --> ports/devel/p5-Tie-Simple Revision Changes Path 1.15839 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 13:03:24 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C8A916A4DE; Tue, 1 Aug 2006 13:03:24 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB4D743D45; Tue, 1 Aug 2006 13:03:23 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71D3NKZ085792; Tue, 1 Aug 2006 13:03:23 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71D3N3W085791; Tue, 1 Aug 2006 13:03:23 GMT (envelope-from clsung) Message-Id: <200608011303.k71D3N3W085791@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 13:03: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/udmsearch Makefile distinfo pkg-plist ports/www/udmsearch/files patch-aa patch-ab patch-configure.in patch-sql.c patch-src-sql.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, 01 Aug 2006 13:03:24 -0000 clsung 2006-08-01 13:03:23 UTC FreeBSD ports repository Modified files: www/udmsearch Makefile distinfo pkg-plist Added files: www/udmsearch/files patch-configure.in patch-src-sql.c Removed files: www/udmsearch/files patch-aa patch-ab patch-sql.c Log: - Update to 3.1.5 PR: ports/101164 Submitted by: Gea-Suan Lin Revision Changes Path 1.27 +18 -27 ports/www/udmsearch/Makefile 1.11 +3 -3 ports/www/udmsearch/distinfo 1.3 +0 -16 ports/www/udmsearch/files/patch-aa (dead) 1.3 +0 -11 ports/www/udmsearch/files/patch-ab (dead) 1.1 +16 -0 ports/www/udmsearch/files/patch-configure.in (new) 1.2 +0 -12 ports/www/udmsearch/files/patch-sql.c (dead) 1.1 +11 -0 ports/www/udmsearch/files/patch-src-sql.c (new) 1.8 +104 -73 ports/www/udmsearch/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 1 13:06:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 746B516A4DD; Tue, 1 Aug 2006 13:06:56 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02C5643D4C; Tue, 1 Aug 2006 13:06:56 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71D6tOc086015; Tue, 1 Aug 2006 13:06:55 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71D6tcD086014; Tue, 1 Aug 2006 13:06:55 GMT (envelope-from rafan) Message-Id: <200608011306.k71D6tcD086014@repoman.freebsd.org> From: Rong-En Fan Date: Tue, 1 Aug 2006 13:06: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/security Makefile ports/security/httprint 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, 01 Aug 2006 13:06:56 -0000 rafan 2006-08-01 13:06:55 UTC FreeBSD ports repository Modified files: security Makefile Added files: security/httprint Makefile distinfo pkg-descr pkg-plist Log: Add httprint 301, web server fingerprinting tool. PR: ports/101004 Submitted by: Yonatan Revision Changes Path 1.797 +1 -0 ports/security/Makefile 1.1 +28 -0 ports/security/httprint/Makefile (new) 1.1 +3 -0 ports/security/httprint/distinfo (new) 1.1 +10 -0 ports/security/httprint/pkg-descr (new) 1.1 +47 -0 ports/security/httprint/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 13:08:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 484C316A4DA; Tue, 1 Aug 2006 13:08:03 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 053D543D53; Tue, 1 Aug 2006 13:08:03 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71D82Wt086129; Tue, 1 Aug 2006 13:08:02 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71D82EL086128; Tue, 1 Aug 2006 13:08:02 GMT (envelope-from rafan) Message-Id: <200608011308.k71D82EL086128@repoman.freebsd.org> From: Rong-En Fan Date: Tue, 1 Aug 2006 13:08: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: 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, 01 Aug 2006 13:08:03 -0000 rafan 2006-08-01 13:08:02 UTC FreeBSD ports repository Modified files: . modules Log: httprint --> ports/security/httprint Revision Changes Path 1.15840 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 13:09:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60C6F16A4E1; Tue, 1 Aug 2006 13:09:20 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 071AD43D46; Tue, 1 Aug 2006 13:09:20 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71D9JVN086205; Tue, 1 Aug 2006 13:09:19 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71D9J8r086204; Tue, 1 Aug 2006 13:09:19 GMT (envelope-from rafan) Message-Id: <200608011309.k71D9J8r086204@repoman.freebsd.org> From: Rong-En Fan Date: Tue, 1 Aug 2006 13:09: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 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: Tue, 01 Aug 2006 13:09:20 -0000 rafan 2006-08-01 13:09:19 UTC FreeBSD ports repository Modified files: . LEGAL Log: - Add note about security/httprint Revision Changes Path 1.487 +2 -1 ports/LEGAL From owner-cvs-all@FreeBSD.ORG Tue Aug 1 13:25:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFF0C16A4DE; Tue, 1 Aug 2006 13:25:12 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77D1343D46; Tue, 1 Aug 2006 13:25:12 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71DPCvk087407; Tue, 1 Aug 2006 13:25:12 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71DPC9V087400; Tue, 1 Aug 2006 13:25:12 GMT (envelope-from clsung) Message-Id: <200608011325.k71DPC9V087400@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 13:25: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: CVSROOT modules ports MOVED ports/devel Makefile ports/devel/p5-IPC-Mmap-SimpleShare 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, 01 Aug 2006 13:25:12 -0000 clsung 2006-08-01 13:25:12 UTC FreeBSD ports repository Modified files: . modules . MOVED devel Makefile Removed files: devel/p5-IPC-Mmap-SimpleShare Makefile distinfo pkg-descr pkg-plist Log: - this p5- Module has been renamed to IPC-Mmap-Share(ports/100417) - fresh port, no need to repocopy Revision Changes Path 1.15841 +0 -1 CVSROOT/modules 1.1106 +2 -1 ports/MOVED 1.2374 +0 -1 ports/devel/Makefile 1.2 +0 -31 ports/devel/p5-IPC-Mmap-SimpleShare/Makefile (dead) 1.2 +0 -3 ports/devel/p5-IPC-Mmap-SimpleShare/distinfo (dead) 1.2 +0 -7 ports/devel/p5-IPC-Mmap-SimpleShare/pkg-descr (dead) 1.2 +0 -8 ports/devel/p5-IPC-Mmap-SimpleShare/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 13:29:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E1A316A4E6; Tue, 1 Aug 2006 13:29:04 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B172E43D49; Tue, 1 Aug 2006 13:29:03 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71DT3SE090185; Tue, 1 Aug 2006 13:29:03 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71DT3d3090184; Tue, 1 Aug 2006 13:29:03 GMT (envelope-from clsung) Message-Id: <200608011329.k71DT3d3090184@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 13:29: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/devel Makefile ports/devel/p5-IPC-Mmap-Share 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, 01 Aug 2006 13:29:04 -0000 clsung 2006-08-01 13:29:03 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-IPC-Mmap-Share Makefile distinfo pkg-descr pkg-plist Log: Add p5-IPC-Mmap-Share 0.03, safely share structures among processes using anonymous mmap. PR: ports/100417 Submitted by: Gea-Suan Lin Revision Changes Path 1.2375 +1 -0 ports/devel/Makefile 1.1 +31 -0 ports/devel/p5-IPC-Mmap-Share/Makefile (new) 1.1 +3 -0 ports/devel/p5-IPC-Mmap-Share/distinfo (new) 1.1 +7 -0 ports/devel/p5-IPC-Mmap-Share/pkg-descr (new) 1.1 +8 -0 ports/devel/p5-IPC-Mmap-Share/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 13:29:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76FD916A512; Tue, 1 Aug 2006 13:29:16 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D71343D45; Tue, 1 Aug 2006 13:29:16 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71DTFWJ090224; Tue, 1 Aug 2006 13:29:15 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71DTFGS090223; Tue, 1 Aug 2006 13:29:15 GMT (envelope-from clsung) Message-Id: <200608011329.k71DTFGS090223@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 13:29: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: 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, 01 Aug 2006 13:29:16 -0000 clsung 2006-08-01 13:29:15 UTC FreeBSD ports repository Modified files: . modules Log: p5-IPC-Mmap-Share --> ports/devel/p5-IPC-Mmap-Share Revision Changes Path 1.15842 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 13:42:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5089D16A4DD; Tue, 1 Aug 2006 13:42:18 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BA2C43D5E; Tue, 1 Aug 2006 13:42:17 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71DgHTt093413; Tue, 1 Aug 2006 13:42:17 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71DgHd6093412; Tue, 1 Aug 2006 13:42:17 GMT (envelope-from clsung) Message-Id: <200608011342.k71DgHd6093412@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 13:42: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/security Makefile ports/security/pecl-tcpwrap 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, 01 Aug 2006 13:42:18 -0000 clsung 2006-08-01 13:42:17 UTC FreeBSD ports repository Modified files: security Makefile Added files: security/pecl-tcpwrap Makefile distinfo pkg-descr Log: Add pecl-tcpwrap 1.0, a PECL extension which provides tcpwrappers binding. PR: ports/101136 Submitted by: chinsan Revision Changes Path 1.798 +1 -0 ports/security/Makefile 1.1 +25 -0 ports/security/pecl-tcpwrap/Makefile (new) 1.1 +3 -0 ports/security/pecl-tcpwrap/distinfo (new) 1.1 +4 -0 ports/security/pecl-tcpwrap/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 13:42:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DEA3216A4E5; Tue, 1 Aug 2006 13:42:35 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 420AC43D5F; Tue, 1 Aug 2006 13:42:35 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71DgZV3093452; Tue, 1 Aug 2006 13:42:35 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71DgZxv093451; Tue, 1 Aug 2006 13:42:35 GMT (envelope-from clsung) Message-Id: <200608011342.k71DgZxv093451@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 13:42: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: Tue, 01 Aug 2006 13:42:36 -0000 clsung 2006-08-01 13:42:35 UTC FreeBSD ports repository Modified files: . modules Log: pecl-tcpwrap --> ports/security/pecl-tcpwrap Revision Changes Path 1.15843 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 14:02:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3124516A4DD; Tue, 1 Aug 2006 14:02:55 +0000 (UTC) (envelope-from gallatin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E0DF543D46; Tue, 1 Aug 2006 14:02:54 +0000 (GMT) (envelope-from gallatin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71E2sgq094354; Tue, 1 Aug 2006 14:02:54 GMT (envelope-from gallatin@repoman.freebsd.org) Received: (from gallatin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71E2slR094353; Tue, 1 Aug 2006 14:02:54 GMT (envelope-from gallatin) Message-Id: <200608011402.k71E2slR094353@repoman.freebsd.org> From: Andrew Gallatin Date: Tue, 1 Aug 2006 14:02: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/mxge if_mxge.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, 01 Aug 2006 14:02:55 -0000 gallatin 2006-08-01 14:02:54 UTC FreeBSD src repository Modified files: sys/dev/mxge if_mxge.c Log: - add read only sysctl to indicate if write-combining was enabled - enable mxge_dummy_rdma() right after reset, and make sure to disable when detaching the driver. Revision Changes Path 1.8 +7 -1 src/sys/dev/mxge/if_mxge.c From owner-cvs-all@FreeBSD.ORG Tue Aug 1 14:15:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83C9516A4DD; Tue, 1 Aug 2006 14:15:52 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5241143D46; Tue, 1 Aug 2006 14:15:52 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71EFqP8096276; Tue, 1 Aug 2006 14:15:52 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71EFpdp096275; Tue, 1 Aug 2006 14:15:51 GMT (envelope-from sat) Message-Id: <200608011415.k71EFpdp096275@repoman.freebsd.org> From: Andrew Pantyukhin Date: Tue, 1 Aug 2006 14: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/devel Makefile ports/devel/p5-Class-Field 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, 01 Aug 2006 14:15:52 -0000 sat 2006-08-01 14:15:51 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-Class-Field Makefile distinfo pkg-descr pkg-plist Log: Add port devel/p5-Class-Field: Class::Field exports two subroutines, field and const. These functions are used to declare fields and constants in your class. Class::Field generates custom code for each accessor that is optimized for speed. WWW: http://search.cpan.org/dist/Class-Field/ Revision Changes Path 1.2376 +1 -0 ports/devel/Makefile 1.1 +21 -0 ports/devel/p5-Class-Field/Makefile (new) 1.1 +3 -0 ports/devel/p5-Class-Field/distinfo (new) 1.1 +7 -0 ports/devel/p5-Class-Field/pkg-descr (new) 1.1 +5 -0 ports/devel/p5-Class-Field/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 14:16:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7652A16A4E5; Tue, 1 Aug 2006 14:16:53 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 33E3743D46; Tue, 1 Aug 2006 14:16:53 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71EGrhI096367; Tue, 1 Aug 2006 14:16:53 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71EGrsq096366; Tue, 1 Aug 2006 14:16:53 GMT (envelope-from sat) Message-Id: <200608011416.k71EGrsq096366@repoman.freebsd.org> From: Andrew Pantyukhin Date: Tue, 1 Aug 2006 14:16: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: 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, 01 Aug 2006 14:16:53 -0000 sat 2006-08-01 14:16:53 UTC FreeBSD ports repository Modified files: . modules Log: p5-Class-Field --> ports/devel/p5-Class-Field Revision Changes Path 1.15844 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 14:17:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5BFD16A4DD; Tue, 1 Aug 2006 14:17:52 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A8EEE43D7E; Tue, 1 Aug 2006 14:17:48 +0000 (GMT) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71EHmWH096422; Tue, 1 Aug 2006 14:17:48 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71EHmLI096421; Tue, 1 Aug 2006 14:17:48 GMT (envelope-from oliver) Message-Id: <200608011417.k71EHmLI096421@repoman.freebsd.org> From: Oliver Lehmann Date: Tue, 1 Aug 2006 14:17: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/mail/sylpheed2 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, 01 Aug 2006 14:17:52 -0000 oliver 2006-08-01 14:17:47 UTC FreeBSD ports repository Modified files: mail/sylpheed2 Makefile distinfo Log: update to 2.2.7 Revision Changes Path 1.140 +1 -1 ports/mail/sylpheed2/Makefile 1.96 +3 -3 ports/mail/sylpheed2/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 14:30:06 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8A4D16A4DD; Tue, 1 Aug 2006 14:30:05 +0000 (UTC) (envelope-from joel@FreeBSD.org) Received: from av9-1-sn3.vrr.skanova.net (av9-1-sn3.vrr.skanova.net [81.228.9.185]) by mx1.FreeBSD.org (Postfix) with ESMTP id E706E43D7F; Tue, 1 Aug 2006 14:29:57 +0000 (GMT) (envelope-from joel@FreeBSD.org) Received: by av9-1-sn3.vrr.skanova.net (Postfix, from userid 502) id BA30738207; Tue, 1 Aug 2006 16:29:56 +0200 (CEST) Received: from smtp3-2-sn3.vrr.skanova.net (smtp3-2-sn3.vrr.skanova.net [81.228.9.102]) by av9-1-sn3.vrr.skanova.net (Postfix) with ESMTP id AA48637F7A; Tue, 1 Aug 2006 16:29:56 +0200 (CEST) Received: from dude.automatvapen.se (81-235-165-101-no21.tbcn.telia.com [81.235.165.101]) by smtp3-2-sn3.vrr.skanova.net (Postfix) with ESMTP id 80D4C37E45; Tue, 1 Aug 2006 16:29:56 +0200 (CEST) From: Joel Dahl To: Dmitry Morozovsky In-Reply-To: <200608011241.k71Cfhve075521@repoman.freebsd.org> References: <200608011241.k71Cfhve075521@repoman.freebsd.org> Content-Type: text/plain Date: Tue, 01 Aug 2006 16:29:56 +0200 Message-Id: <1154442596.667.0.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Cc: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: www/en/news 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, 01 Aug 2006 14:30:06 -0000 On Tue, 2006-08-01 at 12:41 +0000, Dmitry Morozovsky wrote: > marck 2006-08-01 12:41:42 UTC > > FreeBSD doc repository > > Modified files: > en/news news.xml > Log: > Announce Core Team 2006 elections results. Thanks! -- Joel From owner-cvs-all@FreeBSD.ORG Tue Aug 1 14:51:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8070D16A4E0; Tue, 1 Aug 2006 14:51:28 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D70843D7D; Tue, 1 Aug 2006 14:51:28 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71EpSmY098275; Tue, 1 Aug 2006 14:51:28 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71EpShl098274; Tue, 1 Aug 2006 14:51:28 GMT (envelope-from sat) Message-Id: <200608011451.k71EpShl098274@repoman.freebsd.org> From: Andrew Pantyukhin Date: Tue, 1 Aug 2006 14:51: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 Makefile ports/www/xpi-mrtech-local-install 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, 01 Aug 2006 14:51:28 -0000 sat 2006-08-01 14:51:28 UTC FreeBSD ports repository Modified files: www Makefile Added files: www/xpi-mrtech-local-install Makefile distinfo pkg-descr pkg-plist Log: Add port www/xpi-mrtech-local-install: The primary goal of this extension is to provide the tools needed to install and manage extensions and themes locally. To do this the extension provides multi-extension installation support, hacking capabilities to the Extension/Theme manager windows, features to find and troubleshoot Extensions/Themes Build, GUID and Profile information. WWW: http://mrtech.com/extensions/local_install/ PR: ports/101119 Submitted by: chinsan Revision Changes Path 1.1535 +1 -0 ports/www/Makefile 1.1 +20 -0 ports/www/xpi-mrtech-local-install/Makefile (new) 1.1 +3 -0 ports/www/xpi-mrtech-local-install/distinfo (new) 1.1 +7 -0 ports/www/xpi-mrtech-local-install/pkg-descr (new) 1.1 +16 -0 ports/www/xpi-mrtech-local-install/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 14:52:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B5E5316A4DE; Tue, 1 Aug 2006 14:52:04 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D605043D67; Tue, 1 Aug 2006 14:51:57 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71Epv4q098314; Tue, 1 Aug 2006 14:51:57 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71EpvoV098313; Tue, 1 Aug 2006 14:51:57 GMT (envelope-from sat) Message-Id: <200608011451.k71EpvoV098313@repoman.freebsd.org> From: Andrew Pantyukhin Date: Tue, 1 Aug 2006 14:51: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: 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, 01 Aug 2006 14:52:04 -0000 sat 2006-08-01 14:51:57 UTC FreeBSD ports repository Modified files: . modules Log: xpi-mrtech-local-install --> ports/www/xpi-mrtech-local-install Revision Changes Path 1.15845 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 15:08:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B1AE16A4E2; Tue, 1 Aug 2006 15:08:00 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 980B643D70; Tue, 1 Aug 2006 15:07:56 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71F7tJg000474; Tue, 1 Aug 2006 15:07:55 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71F7so0000473; Tue, 1 Aug 2006 15:07:54 GMT (envelope-from clsung) Message-Id: <200608011507.k71F7so0000473@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 15:07: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/science Makefile ports/science/svmlight 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, 01 Aug 2006 15:08:00 -0000 clsung 2006-08-01 15:07:54 UTC FreeBSD ports repository Modified files: science Makefile Added files: science/svmlight Makefile distinfo pkg-descr pkg-plist Log: Add svmlight 6.01, an implementation of Support Vector Machines (SVMs) in C. PR: ports/100944 Submitted by: Gea-Suan Lin Revision Changes Path 1.99 +1 -0 ports/science/Makefile 1.1 +43 -0 ports/science/svmlight/Makefile (new) 1.1 +6 -0 ports/science/svmlight/distinfo (new) 1.1 +18 -0 ports/science/svmlight/pkg-descr (new) 1.1 +8 -0 ports/science/svmlight/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 15:08:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C20EE16A4EA; Tue, 1 Aug 2006 15:08:10 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F66A43D55; Tue, 1 Aug 2006 15:08:10 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71F8Al7000522; Tue, 1 Aug 2006 15:08:10 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71F8AxR000521; Tue, 1 Aug 2006 15:08:10 GMT (envelope-from clsung) Message-Id: <200608011508.k71F8AxR000521@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 15:08: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: 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, 01 Aug 2006 15:08:10 -0000 clsung 2006-08-01 15:08:10 UTC FreeBSD ports repository Modified files: . modules Log: svmlight --> ports/science/svmlight Revision Changes Path 1.15846 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 15:14:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD1F316A4DD; Tue, 1 Aug 2006 15:14:37 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0075443D5A; Tue, 1 Aug 2006 15:14:27 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71FE8lv000832; Tue, 1 Aug 2006 15:14:08 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71FE83Q000831; Tue, 1 Aug 2006 15:14:08 GMT (envelope-from clsung) Message-Id: <200608011514.k71FE83Q000831@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 15:14: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 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: Tue, 01 Aug 2006 15:14:37 -0000 clsung 2006-08-01 15:14:08 UTC FreeBSD ports repository Modified files: . LEGAL Log: - Add note about science/svmlight Revision Changes Path 1.488 +4 -1 ports/LEGAL From owner-cvs-all@FreeBSD.ORG Tue Aug 1 15:23:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB34416A4DA; Tue, 1 Aug 2006 15:23:45 +0000 (UTC) (envelope-from mich@FreeBSD.org) Received: from mail2.itxmarket.com (fw.itxmarket.com [84.14.136.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id B856A43D9D; Tue, 1 Aug 2006 15:23:17 +0000 (GMT) (envelope-from mich@FreeBSD.org) Received: from icommerce.fr (mich2.itxmarket.com [192.168.2.26]) by mail2.itxmarket.com (Postfix) with ESMTP id 1617E1C095C; Tue, 1 Aug 2006 17:23:16 +0200 (CEST) Received: by icommerce.fr (Postfix, from userid 1001) id 123EF22840; Tue, 1 Aug 2006 17:23:16 +0200 (CEST) Date: Tue, 1 Aug 2006 17:23:16 +0200 From: Michael Landin Hostbaek To: MANTANI Nobutaka Message-ID: <20060801152315.GW95100@mich2.itxmarket.com> Mail-Followup-To: Michael Landin Hostbaek , MANTANI Nobutaka , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200607291800.k6TI05jp029075@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200607291800.k6TI05jp029075@repoman.freebsd.org> X-Operating-System: FreeBSD 6.1-STABLE i386 X-PGP-Key: http://www.freebsdcluster.org/~mich/ User-Agent: Mutt/1.5.12-2006-07-14 Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/multimedia/libxine Makefile distinfo pkg-plist ports/multimedia/libxine/files patch-configure patch-src:input:input_cdda.c patch-src:libffmpeg:libavcodec:h263.c patch-src:libffmpeg:libavcodec:mpeg12.c patch-src:libffmpeg:libavcodec:msmpeg4.c patch-src:libreal:audio_decoder.c patch-src:libreal:xine_decoder.c patch-src_input_input_http.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, 01 Aug 2006 15:23:46 -0000 MANTANI Nobutaka (nobutaka) writes: > nobutaka 2006-07-29 18:00:05 UTC > > FreeBSD ports repository > > Modified files: > multimedia/libxine Makefile distinfo pkg-plist > multimedia/libxine/files patch-configure > patch-src:libreal:audio_decoder.c > patch-src:libreal:xine_decoder.c > Removed files: > multimedia/libxine/files patch-src:input:input_cdda.c > patch-src:libffmpeg:libavcodec:h263.c > patch-src:libffmpeg:libavcodec:mpeg12.c > patch-src:libffmpeg:libavcodec:msmpeg4.c > patch-src_input_input_http.c > Log: > - Update to 1.1.2. > - Enable Theora codec support by default and remove WITH_THEORA knob. The build is broken on 5.x cc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../.. -I../../../include -I../../../include -I../../../src -I../../../src/xine-engine -I../../../src/xine-engine -I../../../src/xine-utils -I../../../src/input -I../../../src/input -I../../../lib -I../../../lib -DSIMPLE_IDCT -DHAVE_AV_CONFIG_H -DRUNTIME_CPUDETECT -DUSE_FASTMEMCPY -DCONFIG_RISKY -DCONFIG_DECODERS -DXINE_MPEG_ENCODER -DCONFIG_ZLIB -DCONFIG_GPL -I../../../src/libffmpeg/libavutil -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include -D_THREAD_SAFE -fno-strict-aliasing -mtune=i386 -O3 -pipe -fomit-frame-pointer -falign-functions=4 -falign-loops=4 -falign-jumps=4 -mpreferred-stack-boundary=2 -fexpensive-optimizations -fschedule-insns2 -ffast-math -finline-functions -Wall -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -DNDEBUG -D_REENTRANT -D_FILE_OFFSET_BITS=64 -DXINE_COMPILE -DENABLE_IPV6 -O -pipe -fno-force-addr -I/usr/local/include -I/usr/local/include/dvdread -I/usr/X11R6/include -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT h263.lo -MD -MP -MF .deps/h263.Tpo -c h263.c -fPIC -DPIC -o .libs/h263.o h263.c: In function `mpeg4_decode_partition_a': h263.c:69: sorry, unimplemented: inlining failed in call to 'mpeg4_decode_dc': function body not available h263.c:3447: sorry, unimplemented: called from here h263.c: At top level: h263.c:73: warning: 'mpeg4_get_block_length' declared `static' but never defined Here's a full buildlog: http://tb3.droso.net/errors/5-mich/libxine-1.1.2.log This is the case for both amd64 and i386. /mich From owner-cvs-all@FreeBSD.ORG Tue Aug 1 15:26:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C83D216A4F4; Tue, 1 Aug 2006 15:26:43 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8614343DCB; Tue, 1 Aug 2006 15:26:09 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71FQ9HD001511; Tue, 1 Aug 2006 15:26:09 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71FQ9F8001510; Tue, 1 Aug 2006 15:26:09 GMT (envelope-from maxim) Message-Id: <200608011526.k71FQ9F8001510@repoman.freebsd.org> From: Maxim Konovalov Date: Tue, 1 Aug 2006 15:26: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/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: Tue, 01 Aug 2006 15:26:43 -0000 maxim 2006-08-01 15:26:09 UTC FreeBSD src repository Modified files: share/misc bsd-family-tree Log: o Reserve space for 3.x releases similar to 2.1. o 3.0.1 is a security/critical release. Submitted by: rpaulo@netbsd Revision Changes Path 1.107 +7 -7 src/share/misc/bsd-family-tree From owner-cvs-all@FreeBSD.ORG Tue Aug 1 15:28:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00A5316A4DA; Tue, 1 Aug 2006 15:28:38 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35CD143D68; Tue, 1 Aug 2006 15:28:37 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71FSbQP001679; Tue, 1 Aug 2006 15:28:37 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71FSbr1001678; Tue, 1 Aug 2006 15:28:37 GMT (envelope-from clsung) Message-Id: <200608011528.k71FSbr1001678@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 15: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/textproc/dictfmt 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, 01 Aug 2006 15:28:38 -0000 clsung 2006-08-01 15:28:36 UTC FreeBSD ports repository Modified files: textproc/dictfmt Makefile distinfo Log: - update to 1.10.7 Revision Changes Path 1.23 +1 -1 ports/textproc/dictfmt/Makefile 1.17 +3 -3 ports/textproc/dictfmt/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 15:29:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23E4C16A4DA; Tue, 1 Aug 2006 15:29:47 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D447243D72; Tue, 1 Aug 2006 15:29:46 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71FTkZl001733; Tue, 1 Aug 2006 15:29:46 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71FTkwV001732; Tue, 1 Aug 2006 15:29:46 GMT (envelope-from jhb) Message-Id: <200608011529.k71FTkwV001732@repoman.freebsd.org> From: John Baldwin Date: Tue, 1 Aug 2006 15:29: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/ddb db_ps.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, 01 Aug 2006 15:29:47 -0000 jhb 2006-08-01 15:29:46 UTC FreeBSD src repository Modified files: sys/ddb db_ps.c Log: Some cosmetic tweaks: - Right justify 'pid' label. - Move the uid column to the right 2 columns so that the 3 process id columns (pid, ppid, pgrp) are grouped together. - Expand the uid column to 5 chars. - Don't indent the tid for multithreaded processes. Requested by: bde (1, 2, 4) Revision Changes Path 1.62 +10 -10 src/sys/ddb/db_ps.c From owner-cvs-all@FreeBSD.ORG Tue Aug 1 15:30:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E28BF16A4E0; Tue, 1 Aug 2006 15:30:59 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F58543D60; Tue, 1 Aug 2006 15:30:57 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71FUvKG001859; Tue, 1 Aug 2006 15:30:57 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71FUvTJ001858; Tue, 1 Aug 2006 15:30:57 GMT (envelope-from jhb) Message-Id: <200608011530.k71FUvTJ001858@repoman.freebsd.org> From: John Baldwin Date: Tue, 1 Aug 2006 15:30: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/kern kern_fork.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, 01 Aug 2006 15:31:00 -0000 jhb 2006-08-01 15:30:56 UTC FreeBSD src repository Modified files: sys/kern kern_fork.c Log: Don't lock each of the processes while looking for a pid. The allproc and proctree locks that we already hold provide sufficient protection. Revision Changes Path 1.260 +1 -5 src/sys/kern/kern_fork.c From owner-cvs-all@FreeBSD.ORG Tue Aug 1 15:32:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C15C616A4DA; Tue, 1 Aug 2006 15:32:25 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7128943D7B; Tue, 1 Aug 2006 15:32:25 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71FWPsC002001; Tue, 1 Aug 2006 15:32:25 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71FWPYF002000; Tue, 1 Aug 2006 15:32:25 GMT (envelope-from jhb) Message-Id: <200608011532.k71FWPYF002000@repoman.freebsd.org> From: John Baldwin Date: Tue, 1 Aug 2006 15:32: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/sys/nfsserver nfs_srvcache.c nfs_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: Tue, 01 Aug 2006 15:32:25 -0000 jhb 2006-08-01 15:32:25 UTC FreeBSD src repository Modified files: sys/nfsserver nfs_srvcache.c nfs_syscalls.c Log: Use TAILQ_FOREACH_SAFE() in a couple of places. Revision Changes Path 1.42 +1 -2 src/sys/nfsserver/nfs_srvcache.c 1.106 +1 -3 src/sys/nfsserver/nfs_syscalls.c From owner-cvs-all@FreeBSD.ORG Tue Aug 1 15:39:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2362A16A4E0; Tue, 1 Aug 2006 15:39:13 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D11BC43D76; Tue, 1 Aug 2006 15:39:12 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71FdCwv002427; Tue, 1 Aug 2006 15:39:12 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71FdC6C002426; Tue, 1 Aug 2006 15:39:12 GMT (envelope-from clsung) Message-Id: <200608011539.k71FdC6C002426@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 15:39: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/p5-Mail-Address-MobileJp 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, 01 Aug 2006 15:39:13 -0000 clsung 2006-08-01 15:39:12 UTC FreeBSD ports repository Modified files: mail/p5-Mail-Address-MobileJp Makefile distinfo Log: - update to 0.06 Revision Changes Path 1.3 +2 -2 ports/mail/p5-Mail-Address-MobileJp/Makefile 1.3 +3 -3 ports/mail/p5-Mail-Address-MobileJp/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 15:51:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 28CD616A4DA; Tue, 1 Aug 2006 15:51:21 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 585BB43D69; Tue, 1 Aug 2006 15:51:19 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71FpJJS003328; Tue, 1 Aug 2006 15:51:19 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71FpJfi003327; Tue, 1 Aug 2006 15:51:19 GMT (envelope-from clsung) Message-Id: <200608011551.k71FpJfi003327@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 15:51: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/www/b2evolution Makefile 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: Tue, 01 Aug 2006 15:51:21 -0000 clsung 2006-08-01 15:51:19 UTC FreeBSD ports repository Modified files: www/b2evolution Makefile pkg-message Log: - All web applications should be now installed into ${PREFIX}/www/appname PR: ports/101179 Submitted by: maintainer () Revision Changes Path 1.10 +4 -21 ports/www/b2evolution/Makefile 1.4 +8 -2 ports/www/b2evolution/pkg-message From owner-cvs-all@FreeBSD.ORG Tue Aug 1 15:52:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 821AF16A4DE; Tue, 1 Aug 2006 15:52:14 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EA2243D46; Tue, 1 Aug 2006 15:52:14 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71FqEgu003375; Tue, 1 Aug 2006 15:52:14 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71FqEH7003374; Tue, 1 Aug 2006 15:52:14 GMT (envelope-from clsung) Message-Id: <200608011552.k71FqEH7003374@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 15:52: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 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: Tue, 01 Aug 2006 15:52:14 -0000 clsung 2006-08-01 15:52:14 UTC FreeBSD ports repository Modified files: . UPDATING Log: - add notes about www/b2evolution PR: ports/101179 Submitted by: maintainer () Revision Changes Path 1.376 +8 -1 ports/UPDATING From owner-cvs-all@FreeBSD.ORG Tue Aug 1 16:03:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BAFC16A4DE; Tue, 1 Aug 2006 16:03:48 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B63043D6A; Tue, 1 Aug 2006 16:03:42 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71G3gnH005246; Tue, 1 Aug 2006 16:03:42 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71G3gJe005245; Tue, 1 Aug 2006 16:03:42 GMT (envelope-from clsung) Message-Id: <200608011603.k71G3gJe005245@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 16:03: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/mail/p5-Mail-Address-MobileJp 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, 01 Aug 2006 16:03:48 -0000 clsung 2006-08-01 16:03:42 UTC FreeBSD ports repository Modified files: mail/p5-Mail-Address-MobileJp Makefile Log: - add missing dependency Observed from: ports/101182 PR: ports/101182 Revision Changes Path 1.4 +2 -1 ports/mail/p5-Mail-Address-MobileJp/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 1 16:10:06 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0631016A4E0; Tue, 1 Aug 2006 16:10:05 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47C2743D66; Tue, 1 Aug 2006 16:10:05 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71GA5sf005557; Tue, 1 Aug 2006 16:10:05 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71GA4tM005553; Tue, 1 Aug 2006 16:10:04 GMT (envelope-from clsung) Message-Id: <200608011610.k71GA4tM005553@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 16:10: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/www/mimetex 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, 01 Aug 2006 16:10:06 -0000 clsung 2006-08-01 16:10:04 UTC FreeBSD ports repository Modified files: www/mimetex Makefile distinfo pkg-plist Log: - - Update to 20060727.1.64 PR: ports/101186 Submitted by: maintainer (Nicola Vitale) Revision Changes Path 1.5 +2 -2 ports/www/mimetex/Makefile 1.4 +3 -3 ports/www/mimetex/distinfo 1.2 +2 -1 ports/www/mimetex/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 1 16:14:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6040716A4DD; Tue, 1 Aug 2006 16:14:25 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E55EC43D70; Tue, 1 Aug 2006 16:14:24 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71GEOG9005901; Tue, 1 Aug 2006 16:14:24 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71GEOPE005900; Tue, 1 Aug 2006 16:14:24 GMT (envelope-from clsung) Message-Id: <200608011614.k71GEOPE005900@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 16:14: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/pecl-svn Makefile distinfo ports/devel/pecl-svn/files patch-config.m4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 01 Aug 2006 16:14:25 -0000 clsung 2006-08-01 16:14:24 UTC FreeBSD ports repository Modified files: devel/pecl-svn Makefile distinfo Removed files: devel/pecl-svn/files patch-config.m4 Log: - Update to 0.2 PR: ports/101109 Submitted by: chinsan Approved by: maintainer (Alex Kiesel) Revision Changes Path 1.4 +4 -1 ports/devel/pecl-svn/Makefile 1.2 +3 -3 ports/devel/pecl-svn/distinfo 1.2 +0 -16 ports/devel/pecl-svn/files/patch-config.m4 (dead) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 16:27:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EB3716A4DE; Tue, 1 Aug 2006 16:27:16 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F33943D45; Tue, 1 Aug 2006 16:27:15 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71GRF81006559; Tue, 1 Aug 2006 16:27:15 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71GRFrm006558; Tue, 1 Aug 2006 16:27:15 GMT (envelope-from jhb) Message-Id: <200608011627.k71GRFrm006558@repoman.freebsd.org> From: John Baldwin Date: Tue, 1 Aug 2006 16: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/nfsserver nfs.h nfs_srvcache.c nfs_srvsubs.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, 01 Aug 2006 16:27:16 -0000 jhb 2006-08-01 16:27:15 UTC FreeBSD src repository Modified files: sys/nfsserver nfs.h nfs_srvcache.c nfs_srvsubs.c Log: - Add a new function nfsrv_destroycache() to tear down the server request cache when unloading the nfsserver module. This fixes a memory leak and a stale pointer. - Use callout_drain() rather than callout_stop() when unloading the nfsserver module. MFC after: 3 days Revision Changes Path 1.80 +1 -0 src/sys/nfsserver/nfs.h 1.43 +14 -2 src/sys/nfsserver/nfs_srvcache.c 1.143 +2 -1 src/sys/nfsserver/nfs_srvsubs.c From owner-cvs-all@FreeBSD.ORG Tue Aug 1 16:31:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1852616A4DD; Tue, 1 Aug 2006 16:31:26 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF89243D68; Tue, 1 Aug 2006 16:31:25 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71GVPV9006851; Tue, 1 Aug 2006 16:31:25 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71GVPam006850; Tue, 1 Aug 2006 16:31:25 GMT (envelope-from netchild) Message-Id: <200608011631.k71GVPam006850@repoman.freebsd.org> From: Alexander Leidinger Date: Tue, 1 Aug 2006 16: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/mail/sylpheed-claws 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, 01 Aug 2006 16:31:26 -0000 netchild 2006-08-01 16:31:25 UTC FreeBSD ports repository Modified files: mail/sylpheed-claws Makefile distinfo pkg-plist Log: Update to 2.4.0. Revision Changes Path 1.101 +3 -3 ports/mail/sylpheed-claws/Makefile 1.49 +3 -3 ports/mail/sylpheed-claws/distinfo 1.46 +1 -0 ports/mail/sylpheed-claws/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 1 16:32:24 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23A5016A4E0; Tue, 1 Aug 2006 16:32:24 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E0F6443D69; Tue, 1 Aug 2006 16:32:20 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71GWKOC006942; Tue, 1 Aug 2006 16:32:20 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71GWKMJ006941; Tue, 1 Aug 2006 16:32:20 GMT (envelope-from jhb) Message-Id: <200608011632.k71GWKMJ006941@repoman.freebsd.org> From: John Baldwin Date: Tue, 1 Aug 2006 16:32: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/kern kern_syscalls.c src/sys/sys kernel.h sysent.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, 01 Aug 2006 16:32:24 -0000 jhb 2006-08-01 16:32:20 UTC FreeBSD src repository Modified files: sys/kern kern_syscalls.c sys/sys kernel.h sysent.h Log: Make system call modules a bit more robust: - If we fail to register the system call during MOD_LOAD, then note that so that we don't try to deregister it or invoke the chained event handler during the subsequent MOD_UNLOAD event. Doing the deregister when the register failed could result in trashing system call entries. - Add a SI_SUB_SYSCALLS just before starting up init and use that to register syscall modules instead of SI_SUB_DRIVERS. Registering system calls as late as possible increases the chances that any other module event handlers or SYSINITs in a module are executed to initialize the data in a kld before a syscall dependent on that data is able to be invoked. MFC after: 3 days Revision Changes Path 1.12 +11 -1 src/sys/kern/kern_syscalls.c 1.131 +1 -0 src/sys/sys/kernel.h 1.49 +1 -1 src/sys/sys/sysent.h From owner-cvs-all@FreeBSD.ORG Tue Aug 1 16:55:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49DD516A4E8; Tue, 1 Aug 2006 16:55:00 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 586CD43D6B; Tue, 1 Aug 2006 16:54:56 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71Gsu2r015910; Tue, 1 Aug 2006 16:54:56 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71GsuTC015909; Tue, 1 Aug 2006 16:54:56 GMT (envelope-from garga) Message-Id: <200608011654.k71GsuTC015909@repoman.freebsd.org> From: Renato Botelho Date: Tue, 1 Aug 2006 16:54: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/devel Makefile ports/devel/p5-Logfile-Rotate 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, 01 Aug 2006 16:55:00 -0000 garga 2006-08-01 16:54:55 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-Logfile-Rotate Makefile distinfo pkg-descr pkg-plist Log: Add p5-Logfile-Rotate 1.04, perl module to rotate logfiles. Revision Changes Path 1.2377 +1 -0 ports/devel/Makefile 1.1 +21 -0 ports/devel/p5-Logfile-Rotate/Makefile (new) 1.1 +3 -0 ports/devel/p5-Logfile-Rotate/distinfo (new) 1.1 +4 -0 ports/devel/p5-Logfile-Rotate/pkg-descr (new) 1.1 +6 -0 ports/devel/p5-Logfile-Rotate/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 16:55:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F21A16A4E0; Tue, 1 Aug 2006 16:55:58 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACF6A43D5A; Tue, 1 Aug 2006 16:55:55 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71Gttmu016022; Tue, 1 Aug 2006 16:55:55 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71GttsJ016021; Tue, 1 Aug 2006 16:55:55 GMT (envelope-from garga) Message-Id: <200608011655.k71GttsJ016021@repoman.freebsd.org> From: Renato Botelho Date: Tue, 1 Aug 2006 16:55: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: 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, 01 Aug 2006 16:55:58 -0000 garga 2006-08-01 16:55:55 UTC FreeBSD ports repository Modified files: . modules Log: p5-Logfile-Rotate --> ports/devel/p5-Logfile-Rotate Revision Changes Path 1.15847 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 16:56:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5796316A4DE; Tue, 1 Aug 2006 16:56:58 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC82B43D70; Tue, 1 Aug 2006 16:56:56 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71GuuK6016106; Tue, 1 Aug 2006 16:56:56 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71Guule016105; Tue, 1 Aug 2006 16:56:56 GMT (envelope-from pav) Message-Id: <200608011656.k71Guule016105@repoman.freebsd.org> From: Pav Lucistnik Date: Tue, 1 Aug 2006 16:56: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/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: Tue, 01 Aug 2006 16:56:58 -0000 pav 2006-08-01 16:56:56 UTC FreeBSD ports repository Modified files: net/liferea Makefile distinfo Log: - Update to 1.0.19 Revision Changes Path 1.69 +1 -1 ports/net/liferea/Makefile 1.50 +3 -3 ports/net/liferea/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 17:18:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A01B16A4DA; Tue, 1 Aug 2006 17:18:26 +0000 (UTC) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2BD643D78; Tue, 1 Aug 2006 17:18:25 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71HIP96018879; Tue, 1 Aug 2006 17:18:25 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71HIP4M018878; Tue, 1 Aug 2006 17:18:25 GMT (envelope-from wpaul) Message-Id: <200608011718.k71HIP4M018878@repoman.freebsd.org> From: Bill Paul Date: Tue, 1 Aug 2006 17:18: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/sys/dev/re if_re.c src/sys/pci if_rlreg.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, 01 Aug 2006 17:18:26 -0000 wpaul 2006-08-01 17:18:25 UTC FreeBSD src repository Modified files: sys/dev/re if_re.c sys/pci if_rlreg.h Log: Another small update to the re(4) driver: - Change the workaround for the autopad/checksum offload bug so that instead of lying about the map size, we actually create a properly padded mbuf and map it as usual. The other trick works, but is ugly. This approach also gives us a chance to zero the pad space to avoid possibly leaking data. - With the PCIe devices, it looks issuing a TX command while there's already a transmission in progress doesn't have any effect. In other words, if you send two packets in rapid succession, the second one may end up sitting in the TX DMA ring until another transmit command is issued later in the future. Basically, if re_txeof() sees that there are still descriptors outstanding, it needs to manually resume the TX DMA channel by issuing another TX command to make sure all transmissions are flushed out. (The PCI devices seem to keep the TX channel moving until all descriptors have been consumed. I'm not sure why the PCIe devices behave differently.) (You can see this issue if you do the following test: plug an re(4) interface into another host via crossover cable, and from the other host do 'ping -c 2 ' to prime the ARP cache, then do 'ping -c 1 -s 1473 '. You're supposed to see two packets sent in response, but you may only see one. If you do 'ping -c 1 -s 1473 ' again, you'll see two packets, but one will be the missing fragment from the last ping, followed by one of the fragments from this ping.) - Add the PCI ID for the US Robotics 997902 NIC, which is based on the RTL8169S. - Add a tsleep() of 1 second in re_detach() after the interrupt handler is disconnected. This should allow any tasks queued up by the ISR to drain. Now, I know you're supposed to use taskqueue_drain() for this, but something about the way taskqueue_drain() works with taskqueue_fast queues doesn't seem quite right, and I refuse to be tricked into fixing it. Revision Changes Path 1.71 +52 -23 src/sys/dev/re/if_re.c 1.60 +8 -0 src/sys/pci/if_rlreg.h From owner-cvs-all@FreeBSD.ORG Tue Aug 1 17:19:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 533B116A4E5; Tue, 1 Aug 2006 17:19:00 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B54F43D97; Tue, 1 Aug 2006 17:18:59 +0000 (GMT) (envelope-from nobutaka@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71HIxUn018981; Tue, 1 Aug 2006 17:18:59 GMT (envelope-from nobutaka@repoman.freebsd.org) Received: (from nobutaka@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71HIxQf018980; Tue, 1 Aug 2006 17:18:59 GMT (envelope-from nobutaka) Message-Id: <200608011718.k71HIxQf018980@repoman.freebsd.org> From: MANTANI Nobutaka Date: Tue, 1 Aug 2006 17: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/multimedia/libxine Makefile ports/multimedia/libxine/files patch-src:libffmpeg:libavcodec:h263.c patch-src:libffmpeg:libavcodec:mpeg12.c patch-src:libffmpeg:libavcodec:msmpeg4.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, 01 Aug 2006 17:19:00 -0000 nobutaka 2006-08-01 17:18:59 UTC FreeBSD ports repository Modified files: multimedia/libxine Makefile Added files: multimedia/libxine/files patch-src:libffmpeg:libavcodec:h263.c patch-src:libffmpeg:libavcodec:mpeg12.c patch-src:libffmpeg:libavcodec:msmpeg4.c Log: - Fix build error with CFLAGS="-O -pipe". [1] - Remove message about obsolete WITH_THERORA knob. [2] PR: ports/101051 [1] Submitted by: Bo Briggs [1] Reported by: Randy Pratt [1], bland [1] [2] Revision Changes Path 1.96 +0 -5 ports/multimedia/libxine/Makefile 1.7 +31 -0 ports/multimedia/libxine/files/patch-src:libffmpeg:libavcodec:h263.c (new) 1.6 +94 -0 ports/multimedia/libxine/files/patch-src:libffmpeg:libavcodec:mpeg12.c (new) 1.6 +20 -0 ports/multimedia/libxine/files/patch-src:libffmpeg:libavcodec:msmpeg4.c (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 17:28:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 537F016A4EF; Tue, 1 Aug 2006 17:28:11 +0000 (UTC) (envelope-from qingli@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D5F243D6B; Tue, 1 Aug 2006 17:28:11 +0000 (GMT) (envelope-from qingli@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71HSAh5019498; Tue, 1 Aug 2006 17:28:10 GMT (envelope-from qingli@repoman.freebsd.org) Received: (from qingli@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71HSA9m019497; Tue, 1 Aug 2006 17:28:10 GMT (envelope-from qingli) Message-Id: <200608011728.k71HSA9m019497@repoman.freebsd.org> From: Qing Li Date: Tue, 1 Aug 2006 17:28: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: src/sys/net if_vlan.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, 01 Aug 2006 17:28:11 -0000 qingli 2006-08-01 17:28:10 UTC FreeBSD src repository Modified files: sys/net if_vlan.c Log: In vlan_input(), if the network interface does not perform h/w based vlan tag processing, the code will use bcopy() to remove the vlan tag field but the code copies 2 bytes too many, which essentially overwrites the protocol type field. Also, a tag value of -1 is generated for unrecognized interface type, which would cause an invalid memory access in the vlans[] array. In addition, removed a line of dead code and its associated comments. Reviewed by: sam Revision Changes Path 1.107 +9 -15 src/sys/net/if_vlan.c From owner-cvs-all@FreeBSD.ORG Tue Aug 1 17:36:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE4A916A4E2; Tue, 1 Aug 2006 17:36:51 +0000 (UTC) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F182F43D5F; Tue, 1 Aug 2006 17:36:50 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71HaoxA020094; Tue, 1 Aug 2006 17:36:50 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71Hao1o020093; Tue, 1 Aug 2006 17:36:50 GMT (envelope-from wpaul) Message-Id: <200608011736.k71Hao1o020093@repoman.freebsd.org> From: Bill Paul Date: Tue, 1 Aug 2006 17:36:50 +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/re if_re.c src/sys/pci if_rlreg.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, 01 Aug 2006 17:36:52 -0000 wpaul 2006-08-01 17:36:50 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/re if_re.c sys/pci if_rlreg.h Log: MFC: fix padding of short checksum offload frames, fix TX DMA channel stall, add USR NIC PCI ID, add tsleep() to re_detach() to avoid possible crash when unloading module Revision Changes Path 1.46.2.18 +52 -23 src/sys/dev/re/if_re.c 1.51.2.7 +8 -0 src/sys/pci/if_rlreg.h From owner-cvs-all@FreeBSD.ORG Tue Aug 1 17:40:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 69C9516A4DA; Tue, 1 Aug 2006 17:40:14 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3286643D45; Tue, 1 Aug 2006 17:40:14 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71HeEkh020276; Tue, 1 Aug 2006 17:40:14 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71HeEsP020273; Tue, 1 Aug 2006 17:40:14 GMT (envelope-from jhb) Message-Id: <200608011740.k71HeEsP020273@repoman.freebsd.org> From: John Baldwin Date: Tue, 1 Aug 2006 17:40: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/conf files src/sys/kern kern_mutex.c kern_sx.c subr_lock.c subr_turnstile.c subr_witness.c src/sys/sys lock.h mutex.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, 01 Aug 2006 17:40:14 -0000 jhb 2006-08-01 17:40:13 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/conf files sys/kern kern_mutex.c kern_sx.c subr_turnstile.c subr_witness.c sys/sys lock.h mutex.h Added files: (Branch: RELENG_6) sys/kern subr_lock.c Log: MFC: Sync up with HEAD in some of the locking primitive details: - Teach WITNESS_SAVE() and WITNESS_RESTORE() to work with spin locks instead of only sleep locks. - Do the extra step required when destroying a locked spin mutex. - Initialize thread0.td_contested in init_turnstiles() rather than mutex_init(). - Add LOCK_CLASS() macro and sync with HEAD on its usage. For RELENG_6 this just maps to lock->lo_class. (In HEAD lo_class was removed an array index was encoded into lo_flags instead.) - Add subr_lock.c including adding lock_init() and lock_destroy() functions as we as moving the 'show lock' command into this file from kern_mutex.c. Revision Changes Path 1.1031.2.34 +1 -0 src/sys/conf/files 1.154.2.6 +31 -49 src/sys/kern/kern_mutex.c 1.25.2.2 +3 -16 src/sys/kern/kern_sx.c 1.4.2.1 +100 -0 src/sys/kern/subr_lock.c (new) 1.152.2.3 +1 -0 src/sys/kern/subr_turnstile.c 1.195.2.10 +48 -38 src/sys/kern/subr_witness.c 1.52.2.2 +12 -5 src/sys/sys/lock.h 1.79.2.3 +1 -1 src/sys/sys/mutex.h From owner-cvs-all@FreeBSD.ORG Tue Aug 1 17:54:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 555C916A4DA; Tue, 1 Aug 2006 17:54:21 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0022643D4C; Tue, 1 Aug 2006 17:54:20 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71HsKfQ021152; Tue, 1 Aug 2006 17:54:20 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71HsK02021151; Tue, 1 Aug 2006 17:54:20 GMT (envelope-from marcus) Message-Id: <200608011754.k71HsK02021151@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 1 Aug 2006 17:54: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/x11-themes/gtk-engines2 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, 01 Aug 2006 17:54:21 -0000 marcus 2006-08-01 17:54:20 UTC FreeBSD ports repository Modified files: x11-themes/gtk-engines2 Makefile distinfo Log: Update to 2.6.10. Revision Changes Path 1.60 +1 -1 ports/x11-themes/gtk-engines2/Makefile 1.20 +3 -3 ports/x11-themes/gtk-engines2/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 18:04:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0854916A4E8; Tue, 1 Aug 2006 18:04:17 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 836A043D96; Tue, 1 Aug 2006 18:01:26 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71I12jp021912; Tue, 1 Aug 2006 18:01:02 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71I12K2021911; Tue, 1 Aug 2006 18:01:02 GMT (envelope-from marcus) Message-Id: <200608011801.k71I12K2021911@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 1 Aug 2006 18:01: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/archivers/file-roller 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, 01 Aug 2006 18:04:17 -0000 marcus 2006-08-01 18:01:02 UTC FreeBSD ports repository Modified files: archivers/file-roller Makefile distinfo Log: Update to 2.14.4. Revision Changes Path 1.56 +1 -1 ports/archivers/file-roller/Makefile 1.34 +3 -3 ports/archivers/file-roller/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 18:20:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D56016A4ED; Tue, 1 Aug 2006 18:20:30 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BA9843D46; Tue, 1 Aug 2006 18:20:28 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71IKShG025698; Tue, 1 Aug 2006 18:20:28 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71IKSPC025696; Tue, 1 Aug 2006 18:20:28 GMT (envelope-from itetcu) Message-Id: <200608011820.k71IKSPC025696@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 1 Aug 2006 18:20: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/mail/postfix 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, 01 Aug 2006 18:20:30 -0000 itetcu 2006-08-01 18:20:27 UTC FreeBSD ports repository Modified files: mail/postfix Makefile Log: Make rc.d start postfix later, like sendmail does. PR: 100750 Submitted by: KIMURA Yasuhiro Approved by: Vivek Khera (maintainer) Revision Changes Path 1.116 +2 -1 ports/mail/postfix/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 1 18:27:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A0CA16A4DA; Tue, 1 Aug 2006 18:27:59 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA01E43D6B; Tue, 1 Aug 2006 18:27:53 +0000 (GMT) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71IRr83026634; Tue, 1 Aug 2006 18:27:53 GMT (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71IRr1l026633; Tue, 1 Aug 2006 18:27:53 GMT (envelope-from glewis) Message-Id: <200608011827.k71IRr1l026633@repoman.freebsd.org> From: Greg Lewis Date: Tue, 1 Aug 2006 18:27: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/x11-wm/afterstep-stable Makefile distinfo pkg-plist ports/x11-wm/afterstep-stable/files patch-configure patch-configure.h.in patch-libAfterBase::configure patch-libAfterBase::parse.c patch-libAfterConf::Makefile.in patch-libAfterImage::configure patch-libAfterStep::kde.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, 01 Aug 2006 18:27:59 -0000 glewis 2006-08-01 18:27:53 UTC FreeBSD ports repository Modified files: x11-wm/afterstep-stable Makefile distinfo pkg-plist x11-wm/afterstep-stable/files patch-configure patch-configure.h.in patch-src::ASDocGen::Makefile.in Added files: x11-wm/afterstep-stable/files patch-libAfterBase::configure patch-libAfterBase::parse.c patch-libAfterConf::Makefile.in patch-libAfterImage::configure patch-libAfterStep::kde.c patch-libAfterStep::parser.c patch-src::WinCommand::WinCommand.c Log: . Update to 2.2.2. . Use ${REINPLACE} rather than ${PERL}. This isn't based on the changes in PR 100705. Extra changes present there will be incorporated in the near future. Revision Changes Path 1.68 +17 -8 ports/x11-wm/afterstep-stable/Makefile 1.34 +3 -3 ports/x11-wm/afterstep-stable/distinfo 1.4 +32 -5 ports/x11-wm/afterstep-stable/files/patch-configure 1.2 +15 -15 ports/x11-wm/afterstep-stable/files/patch-configure.h.in 1.1 +13 -0 ports/x11-wm/afterstep-stable/files/patch-libAfterBase::configure (new) 1.1 +13 -0 ports/x11-wm/afterstep-stable/files/patch-libAfterBase::parse.c (new) 1.1 +13 -0 ports/x11-wm/afterstep-stable/files/patch-libAfterConf::Makefile.in (new) 1.1 +16 -0 ports/x11-wm/afterstep-stable/files/patch-libAfterImage::configure (new) 1.1 +15 -0 ports/x11-wm/afterstep-stable/files/patch-libAfterStep::kde.c (new) 1.1 +14 -0 ports/x11-wm/afterstep-stable/files/patch-libAfterStep::parser.c (new) 1.2 +23 -11 ports/x11-wm/afterstep-stable/files/patch-src::ASDocGen::Makefile.in 1.1 +20 -0 ports/x11-wm/afterstep-stable/files/patch-src::WinCommand::WinCommand.c (new) 1.27 +200 -1984 ports/x11-wm/afterstep-stable/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 1 18:30:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6500316A4E2; Tue, 1 Aug 2006 18:30:28 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2117243D46; Tue, 1 Aug 2006 18:30:28 +0000 (GMT) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71IUR4m026855; Tue, 1 Aug 2006 18:30:27 GMT (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71IURlx026854; Tue, 1 Aug 2006 18:30:27 GMT (envelope-from ume) Message-Id: <200608011830.k71IURlx026854@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Tue, 1 Aug 2006 18:30: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/mail/qpopper 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, 01 Aug 2006 18:30:28 -0000 ume 2006-08-01 18:30:27 UTC FreeBSD ports repository Modified files: mail/qpopper Makefile distinfo Log: Re-enable IPv6 support after upgrading to 4.0.9. Approved by: bc979__at__lafn.org (maintainer) Revision Changes Path 1.92 +6 -5 ports/mail/qpopper/Makefile 1.36 +3 -3 ports/mail/qpopper/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 18:30:45 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 21EDD16A4E5; Tue, 1 Aug 2006 18:30:45 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF32E43D76; Tue, 1 Aug 2006 18:30:37 +0000 (GMT) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71IUbks026900; Tue, 1 Aug 2006 18:30:37 GMT (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71IUbr6026899; Tue, 1 Aug 2006 18:30:37 GMT (envelope-from glewis) Message-Id: <200608011830.k71IUbr6026899@repoman.freebsd.org> From: Greg Lewis Date: Tue, 1 Aug 2006 18:30: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/java/jdk15 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, 01 Aug 2006 18:30:45 -0000 glewis 2006-08-01 18:30:37 UTC FreeBSD ports repository Modified files: java/jdk15 Makefile Log: . Space out the arguments to OPTIONS with tabs rather than spaces. . Add a JAIL which allows the port to be built in a jail. [1] Submitted by: anders@ [1] Revision Changes Path 1.112 +7 -4 ports/java/jdk15/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 1 18:38:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D324316A4DD; Tue, 1 Aug 2006 18:38:33 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E46643D49; Tue, 1 Aug 2006 18:38:25 +0000 (GMT) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71IcPI7027403; Tue, 1 Aug 2006 18:38:25 GMT (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71IcP6v027402; Tue, 1 Aug 2006 18:38:25 GMT (envelope-from glewis) Message-Id: <200608011838.k71IcP6v027402@repoman.freebsd.org> From: Greg Lewis Date: Tue, 1 Aug 2006 18: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/java/jdk15 Makefile ports/java/jdk15/files patch-j2se::font::t1.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, 01 Aug 2006 18:38:33 -0000 glewis 2006-08-01 18:38:25 UTC FreeBSD ports repository Modified files: java/jdk15 Makefile Added files: java/jdk15/files patch-j2se::font::t1.c Log: . Fix a segfault caused by fonts with illegal glyph names or glyph names which begin with an underscore (although the patch doesn't handle these). . Bump PORTREVISION. Submitted by: Kurt Miller Revision Changes Path 1.113 +1 -1 ports/java/jdk15/Makefile 1.1 +17 -0 ports/java/jdk15/files/patch-j2se::font::t1.c (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 18:38:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 873BD16A4DF; Tue, 1 Aug 2006 18:38:41 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5B7943D80; Tue, 1 Aug 2006 18:38:35 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71IcZEI027454; Tue, 1 Aug 2006 18:38:35 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71IcZxs027453; Tue, 1 Aug 2006 18:38:35 GMT (envelope-from jhb) Message-Id: <200608011838.k71IcZxs027453@repoman.freebsd.org> From: John Baldwin Date: Tue, 1 Aug 2006 18:38:35 +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 kern_mutex.c src/sys/sys mutex.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, 01 Aug 2006 18:38:41 -0000 jhb 2006-08-01 18:38:35 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern kern_mutex.c sys/sys mutex.h Log: MFC: Write a magic value into mtx_lock when destroying a mutex. Revision Changes Path 1.154.2.7 +11 -0 src/sys/kern/kern_mutex.c 1.79.2.4 +5 -0 src/sys/sys/mutex.h From owner-cvs-all@FreeBSD.ORG Tue Aug 1 18:39:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B2DE16A4E1; Tue, 1 Aug 2006 18:39:48 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6DA5C43D72; Tue, 1 Aug 2006 18:39:40 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71IdebT027534; Tue, 1 Aug 2006 18:39:40 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71IdebX027533; Tue, 1 Aug 2006 18:39:40 GMT (envelope-from jhb) Message-Id: <200608011839.k71IdebX027533@repoman.freebsd.org> From: John Baldwin Date: Tue, 1 Aug 2006 18:39: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/kern kern_mutex.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, 01 Aug 2006 18:39:48 -0000 jhb 2006-08-01 18:39:40 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern kern_mutex.c Log: MFC: Mark the thread pointer used during an adaptive spin volatile. Revision Changes Path 1.154.2.8 +1 -1 src/sys/kern/kern_mutex.c From owner-cvs-all@FreeBSD.ORG Tue Aug 1 18:48:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D01F416A4DD; Tue, 1 Aug 2006 18:48:27 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BF4543D70; Tue, 1 Aug 2006 18:48:27 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71ImReM028025; Tue, 1 Aug 2006 18:48:27 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71ImRZJ028024; Tue, 1 Aug 2006 18:48:27 GMT (envelope-from erwin) Message-Id: <200608011848.k71ImRZJ028024@repoman.freebsd.org> From: Erwin Lansing Date: Tue, 1 Aug 2006 18:48: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 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, 01 Aug 2006 18:48:27 -0000 erwin 2006-08-01 18:48:27 UTC FreeBSD ports repository Modified files: . access Log: Neil Blakey-Milner has returned his commit bit for safe keeping. Thanks for all your work so far and hope to see you back some day. Hat: portmgr secretary Revision Changes Path 1.718 +0 -1 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Tue Aug 1 18:48:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77F7D16A4E6; Tue, 1 Aug 2006 18:48:42 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1359543D7F; Tue, 1 Aug 2006 18:48:42 +0000 (GMT) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71ImfKD028082; Tue, 1 Aug 2006 18:48:41 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71Imaim028081; Tue, 1 Aug 2006 18:48:36 GMT (envelope-from mezz) Message-Id: <200608011848.k71Imaim028081@repoman.freebsd.org> From: Jeremy Messenger Date: Tue, 1 Aug 2006 18:48: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/www/linux-opera Makefile pkg-plist ports/www/linux-opera/files patch-ini::pluginpath.ini X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 01 Aug 2006 18:48:42 -0000 mezz 2006-08-01 18:48:36 UTC FreeBSD ports repository Modified files: www/linux-opera Makefile pkg-plist www/linux-opera/files patch-ini::pluginpath.ini Log: - Add lib/npapi/symlinks/linux-opera in the plugins list to chase a few of other plugins that have been moved in there. - @dirrm -> @dirrmtry on share/linux-opera and share/linux-opera/plugins. - Bump the PORTREVISION. Revision Changes Path 1.74 +1 -1 ports/www/linux-opera/Makefile 1.9 +5 -3 ports/www/linux-opera/files/patch-ini::pluginpath.ini 1.29 +2 -2 ports/www/linux-opera/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 1 18:53:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C827216A4DD; Tue, 1 Aug 2006 18:53:35 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD53843D6E; Tue, 1 Aug 2006 18:53:31 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71IrVmM028343; Tue, 1 Aug 2006 18:53:31 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71IrVNs028342; Tue, 1 Aug 2006 18:53:31 GMT (envelope-from itetcu) Message-Id: <200608011853.k71IrVNs028342@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 1 Aug 2006 18:53: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/print/abcm2ps 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, 01 Aug 2006 18:53:35 -0000 itetcu 2006-08-01 18:53:31 UTC FreeBSD ports repository Modified files: print/abcm2ps Makefile distinfo Log: Update to version 4.12.23 PR: ports/101195 Submitted by: KATO Tsuguru Revision Changes Path 1.12 +1 -1 ports/print/abcm2ps/Makefile 1.14 +3 -3 ports/print/abcm2ps/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 18:56:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C0FC16A4E1; Tue, 1 Aug 2006 18:56:54 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67E7E43D8A; Tue, 1 Aug 2006 18:56:48 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71IumCS028549; Tue, 1 Aug 2006 18:56:48 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71IulTJ028548; Tue, 1 Aug 2006 18:56:47 GMT (envelope-from delphij) Message-Id: <200608011856.k71IulTJ028548@repoman.freebsd.org> From: Xin LI Date: Tue, 1 Aug 2006 18:56: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/openldap23-server 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, 01 Aug 2006 18:56:54 -0000 delphij 2006-08-01 18:56:47 UTC FreeBSD ports repository Modified files: net/openldap23-server Makefile distinfo Log: Update to 2.3.25, a maintaince release which contains a lot of bugfixes. Revision Changes Path 1.138 +1 -1 ports/net/openldap23-server/Makefile 1.63 +3 -3 ports/net/openldap23-server/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 19:03:15 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 44D0816A4DF; Tue, 1 Aug 2006 19:03:15 +0000 (UTC) (envelope-from mike@sentex.net) Received: from smarthost2.sentex.ca (smarthost2.sentex.ca [205.211.164.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C6CD43D92; Tue, 1 Aug 2006 19:03:08 +0000 (GMT) (envelope-from mike@sentex.net) Received: from lava.sentex.ca (pyroxene.sentex.ca [199.212.134.18]) by smarthost2.sentex.ca (8.13.6/8.13.4) with ESMTP id k71J37Ge052221; Tue, 1 Aug 2006 15:03:07 -0400 (EDT) (envelope-from mike@sentex.net) Received: from simian.sentex.net (simeon.sentex.ca [192.168.43.27]) by lava.sentex.ca (8.13.3P/8.13.3) with ESMTP id k71J36as079921 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 1 Aug 2006 15:03:06 -0400 (EDT) (envelope-from mike@sentex.net) Message-Id: <6.2.3.4.0.20060801145513.044677d0@64.7.153.2> X-Mailer: QUALCOMM Windows Eudora Version 6.2.3.4 Date: Tue, 01 Aug 2006 15:02:32 -0400 To: Michael Reifenberger , src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org From: Mike Tancsa In-Reply-To: <200607211512.k6LFC3rR069466@repoman.freebsd.org> References: <200607211512.k6LFC3rR069466@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Cc: Subject: Re: cvs commit: src/sys/crypto/via padlock.c src/sys/dev/random probe.c src/sys/i386/i386 identcpu.c initcpu.c src/sys/i386/include md_var.h specialreg.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, 01 Aug 2006 19:03:15 -0000 Hi, This patch seems to incorrectly identify my C3 as a C7 It used to show CPU: VIA C3 Nehemiah+RNG+ACE (796.77-MHz 686-class CPU) Origin = "CentaurHauls" Id = 0x698 Stepping = 8 Features=0x381b03f real memory = 517865472 (493 MB) avail memory = 497397760 (474 MB) now it shows Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: VIA C7 Esther+RNG+AES (796.77-MHz 686-class CPU) Origin = "CentaurHauls" Id = 0x698 Stepping = 8 Features=0x381b03f real memory = 517865472 (493 MB) avail memory = 497381376 (474 MB) PADLOCK: HW support loadedacpi0: on motherboard acpi0: Power Button (fixed) Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x408-0x40b on acpi0 This is just a plain old C3 ---Mike At 11:12 AM 21/07/2006, Michael Reifenberger wrote: >mr 2006-07-21 15:12:03 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_6) > sys/crypto/via padlock.c > sys/dev/random probe.c > sys/i386/i386 identcpu.c initcpu.c > sys/i386/include md_var.h specialreg.h > Log: > MFC VIA C7 support. > > Obtained from: mostly OpenBSD > > Revision Changes Path > 1.1.2.2 +5 -16 src/sys/crypto/via/padlock.c > 1.4.2.1 +4 -13 src/sys/dev/random/probe.c > 1.145.2.4 +24 -8 src/sys/i386/i386/identcpu.c > 1.52.2.3 +83 -0 src/sys/i386/i386/initcpu.c > 1.72.2.3 +2 -0 src/sys/i386/include/md_var.h > 1.27.8.2 +35 -0 src/sys/i386/include/specialreg.h >_______________________________________________ >cvs-all@freebsd.org mailing list >http://lists.freebsd.org/mailman/listinfo/cvs-all >To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-cvs-all@FreeBSD.ORG Tue Aug 1 19:05:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 906D616A4DA; Tue, 1 Aug 2006 19:05:04 +0000 (UTC) (envelope-from shaun@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12B9143D46; Tue, 1 Aug 2006 19:05:04 +0000 (GMT) (envelope-from shaun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71J53vS030187; Tue, 1 Aug 2006 19:05:03 GMT (envelope-from shaun@repoman.freebsd.org) Received: (from shaun@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71J53ov030186; Tue, 1 Aug 2006 19:05:03 GMT (envelope-from shaun) Message-Id: <200608011905.k71J53ov030186@repoman.freebsd.org> From: Shaun Amott Date: Tue, 1 Aug 2006 19: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/science/openbabel 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, 01 Aug 2006 19:05:04 -0000 shaun 2006-08-01 19:05:03 UTC FreeBSD ports repository Modified files: science/openbabel Makefile distinfo Log: - Upgrade to 2.0.2 [1] - portlint(1) tweak PR: ports/101196 Submitted by: KATO Tsuguru Revision Changes Path 1.13 +3 -3 ports/science/openbabel/Makefile 1.7 +3 -3 ports/science/openbabel/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 19:06:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4F1716A4EA; Tue, 1 Aug 2006 19:06:07 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C58F43D6E; Tue, 1 Aug 2006 19:06:06 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71J66hI030436; Tue, 1 Aug 2006 19:06:06 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71J66pX030435; Tue, 1 Aug 2006 19:06:06 GMT (envelope-from alc) Message-Id: <200608011906.k71J66pX030435@repoman.freebsd.org> From: Alan Cox Date: Tue, 1 Aug 2006 19: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/amd64/amd64 pmap.c src/sys/arm/arm pmap.c src/sys/i386/i386 pmap.c src/sys/ia64/ia64 pmap.c src/sys/powerpc/powerpc mmu_if.m mmu_oea.c pmap_dispatch.c src/sys/sparc64/sparc64 pmap.c src/sys/vm pmap.h 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, 01 Aug 2006 19:06:07 -0000 alc 2006-08-01 19:06:06 UTC FreeBSD src repository Modified files: sys/amd64/amd64 pmap.c sys/arm/arm pmap.c sys/i386/i386 pmap.c sys/ia64/ia64 pmap.c sys/powerpc/powerpc mmu_if.m mmu_oea.c pmap_dispatch.c sys/sparc64/sparc64 pmap.c sys/vm pmap.h vm_object.c vm_page.c vm_pageout.c Log: Complete the transition from pmap_page_protect() to pmap_remove_write(). Originally, I had adopted sparc64's name, pmap_clear_write(), for the function that is now pmap_remove_write(). However, this function is more like pmap_remove_all() than like pmap_clear_modify() or pmap_clear_reference(), hence, the name change. The higher-level rationale behind this change is described in src/sys/amd64/amd64/pmap.c revision 1.567. The short version is that I'm trying to clean up and fix our support for execute access. Reviewed by: marcel@ (ia64) Revision Changes Path 1.568 +1 -18 src/sys/amd64/amd64/pmap.c 1.67 +1 -27 src/sys/arm/arm/pmap.c 1.572 +1 -18 src/sys/i386/i386/pmap.c 1.178 +37 -34 src/sys/ia64/ia64/pmap.c 1.6 +12 -14 src/sys/powerpc/powerpc/mmu_if.m 1.111 +44 -77 src/sys/powerpc/powerpc/mmu_oea.c 1.7 +6 -6 src/sys/powerpc/powerpc/pmap_dispatch.c 1.157 +1 -18 src/sys/sparc64/sparc64/pmap.c 1.79 +1 -2 src/sys/vm/pmap.h 1.363 +3 -3 src/sys/vm/vm_object.c 1.319 +1 -1 src/sys/vm/vm_page.c 1.276 +1 -1 src/sys/vm/vm_pageout.c From owner-cvs-all@FreeBSD.ORG Tue Aug 1 19:11:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 842A416A4DA; Tue, 1 Aug 2006 19:11:25 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07B7043D5C; Tue, 1 Aug 2006 19:11:25 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71JBOCF030781; Tue, 1 Aug 2006 19:11:24 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71JBOlh030780; Tue, 1 Aug 2006 19:11:24 GMT (envelope-from itetcu) Message-Id: <200608011911.k71JBOlh030780@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 1 Aug 2006 19:11: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/kbarcode 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, 01 Aug 2006 19:11:25 -0000 itetcu 2006-08-01 19:11:24 UTC FreeBSD ports repository Modified files: graphics/kbarcode Makefile distinfo Log: Update to version 2.0.4 PR: ports/101192 Submitted by: KATO Tsuguru Revision Changes Path 1.20 +3 -1 ports/graphics/kbarcode/Makefile 1.13 +3 -3 ports/graphics/kbarcode/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 19:13:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E32A216A4E2; Tue, 1 Aug 2006 19:13:40 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F78143D7C; Tue, 1 Aug 2006 19:13:36 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71JDaJf030963; Tue, 1 Aug 2006 19:13:36 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71JDap9030962; Tue, 1 Aug 2006 19:13:36 GMT (envelope-from erwin) Message-Id: <200608011913.k71JDap9030962@repoman.freebsd.org> From: Erwin Lansing Date: Tue, 1 Aug 2006 19:13: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/www/pnews 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: Tue, 01 Aug 2006 19:13:41 -0000 erwin 2006-08-01 19:13:36 UTC FreeBSD ports repository Modified files: www/pnews Makefile pkg-plist Log: Don't remove a directory that is in mtree. PR: 101167 Submitted by: erwin, pointyhat Approved by: maintainer Revision Changes Path 1.6 +1 -0 ports/www/pnews/Makefile 1.3 +1 -2 ports/www/pnews/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 1 19:19:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12EFE16A4FB; Tue, 1 Aug 2006 19:19:16 +0000 (UTC) (envelope-from shaun@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0806D43DBF; Tue, 1 Aug 2006 19:18:12 +0000 (GMT) (envelope-from shaun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71JIBZZ031181; Tue, 1 Aug 2006 19:18:11 GMT (envelope-from shaun@repoman.freebsd.org) Received: (from shaun@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71JIBun031180; Tue, 1 Aug 2006 19:18:11 GMT (envelope-from shaun) Message-Id: <200608011918.k71JIBun031180@repoman.freebsd.org> From: Shaun Amott Date: Tue, 1 Aug 2006 19:18: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/editors/zile 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, 01 Aug 2006 19:19:16 -0000 shaun 2006-08-01 19:18:11 UTC FreeBSD ports repository Modified files: editors/zile Makefile distinfo Log: Upgrade to 2.2.17 PR: ports/101191 Submitted by: KATO Tsuguru Revision Changes Path 1.36 +1 -1 ports/editors/zile/Makefile 1.31 +3 -3 ports/editors/zile/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 19:25:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 519B616A4DE; Tue, 1 Aug 2006 19:25:22 +0000 (UTC) (envelope-from barner@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36DDB43D73; Tue, 1 Aug 2006 19:25:18 +0000 (GMT) (envelope-from barner@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71JPICS032738; Tue, 1 Aug 2006 19:25:18 GMT (envelope-from barner@repoman.freebsd.org) Received: (from barner@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71JPITG032737; Tue, 1 Aug 2006 19:25:18 GMT (envelope-from barner) Message-Id: <200608011925.k71JPITG032737@repoman.freebsd.org> From: Simon Barner Date: Tue, 1 Aug 2006 19:25: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/boost Makefile ports/devel/boost/files patch-boost_regex_pending_object_cache.hpp patch-boost_regex_v4_cpp_regex_traits.hpp patch-boost_regex_v4_w32_regex_traits.hpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 01 Aug 2006 19:25:22 -0000 barner 2006-08-01 19:25:18 UTC FreeBSD ports repository Modified files: devel/boost Makefile Added files: devel/boost/files patch-boost_regex_pending_object_cache.hpp patch-boost_regex_v4_cpp_regex_traits.hpp patch-boost_regex_v4_w32_regex_traits.hpp Log: - Fix const-correctness bug in Boost.Regex-1.33.x that strikes only in multithreaded programs on Unix platforms, if: * Multiple threads construct regexes concurrently, or * Multiple threads perform search and replace operations concurrently. - Bump PORTREVISION (threads are enabled in the port's default configuration) Submitted by: John Maddock via boost-announce Found by: Aleksey Sanin See also: http://lists.boost.org/boost-announce/2006/08/0097.php Revision Changes Path 1.33 +1 -1 ports/devel/boost/Makefile 1.1 +49 -0 ports/devel/boost/files/patch-boost_regex_pending_object_cache.hpp (new) 1.1 +74 -0 ports/devel/boost/files/patch-boost_regex_v4_cpp_regex_traits.hpp (new) 1.1 +38 -0 ports/devel/boost/files/patch-boost_regex_v4_w32_regex_traits.hpp (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 19:36:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01A5416A4E0; Tue, 1 Aug 2006 19:36:53 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C368243D55; Tue, 1 Aug 2006 19:36:52 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71Jaq3b033508; Tue, 1 Aug 2006 19:36:52 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71JaqvR033507; Tue, 1 Aug 2006 19:36:52 GMT (envelope-from itetcu) Message-Id: <200608011936.k71JaqvR033507@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 1 Aug 2006 19:36: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/graphics/meshviewer Makefile distinfo pkg-plist ports/graphics/meshviewer/files patch-Makefile patch-mesh.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, 01 Aug 2006 19:36:53 -0000 itetcu 2006-08-01 19:36:52 UTC FreeBSD ports repository Modified files: graphics/meshviewer Makefile distinfo pkg-plist Removed files: graphics/meshviewer/files patch-Makefile patch-mesh.cc Log: Update to version 0.3.0 PR: ports/101193 Submitted by: KATO Tsuguru Revision Changes Path 1.9 +13 -2 ports/graphics/meshviewer/Makefile 1.8 +3 -3 ports/graphics/meshviewer/distinfo 1.4 +0 -35 ports/graphics/meshviewer/files/patch-Makefile (dead) 1.3 +0 -11 ports/graphics/meshviewer/files/patch-mesh.cc (dead) 1.4 +14 -9 ports/graphics/meshviewer/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 1 19:41:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E503A16A4E5; Tue, 1 Aug 2006 19:41:10 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B05E143D55; Tue, 1 Aug 2006 19:41:10 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71JfAoI033807; Tue, 1 Aug 2006 19:41:10 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71JfAOZ033806; Tue, 1 Aug 2006 19:41:10 GMT (envelope-from itetcu) Message-Id: <200608011941.k71JfAOZ033806@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 1 Aug 2006 19:41: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/kdissert Makefile distinfo pkg-plist ports/deskutils/kdissert/files patch-SConstruct patch-src__kdissert__wscript_build X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 01 Aug 2006 19:41:11 -0000 itetcu 2006-08-01 19:41:10 UTC FreeBSD ports repository Modified files: deskutils/kdissert Makefile distinfo pkg-plist Added files: deskutils/kdissert/files patch-src__kdissert__wscript_build Removed files: deskutils/kdissert/files patch-SConstruct Log: Update to version 1.0.6 PR: ports/101190 Submitted by: KATO Tsuguru Revision Changes Path 1.23 +16 -13 ports/deskutils/kdissert/Makefile 1.15 +3 -3 ports/deskutils/kdissert/distinfo 1.5 +0 -13 ports/deskutils/kdissert/files/patch-SConstruct (dead) 1.1 +11 -0 ports/deskutils/kdissert/files/patch-src__kdissert__wscript_build (new) 1.17 +13 -2 ports/deskutils/kdissert/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 1 19:43:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B69916A4E8; Tue, 1 Aug 2006 19:43:44 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 170F543DBC; Tue, 1 Aug 2006 19:43:15 +0000 (GMT) (envelope-from jkois@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71JhE9A034302; Tue, 1 Aug 2006 19:43:14 GMT (envelope-from jkois@repoman.freebsd.org) Received: (from jkois@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71JhEra034301; Tue, 1 Aug 2006 19:43:14 GMT (envelope-from jkois) Message-Id: <200608011943.k71JhEra034301@repoman.freebsd.org> From: Johann Kois Date: Tue, 1 Aug 2006 19:43: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: doc/de_DE.ISO8859-1/articles/explaining-bsd article.sgml doc/de_DE.ISO8859-1/books/faq book.sgml doc/de_DE.ISO8859-1/books/fdp-primer book.sgml doc/de_DE.ISO8859-1/books/fdp-primer/translations chapter.sgml doc/de_DE.ISO8859-1/books/handbook/advanced-networking chapter.sgml doc/de_DE.ISO8859-1/books/handbook/basics 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: Tue, 01 Aug 2006 19:43:44 -0000 jkois 2006-08-01 19:43:14 UTC FreeBSD doc repository Modified files: de_DE.ISO8859-1/articles/explaining-bsd article.sgml de_DE.ISO8859-1/books/faq book.sgml de_DE.ISO8859-1/books/fdp-primer book.sgml de_DE.ISO8859-1/books/fdp-primer/translations chapter.sgml de_DE.ISO8859-1/books/handbook/advanced-networking chapter.sgml de_DE.ISO8859-1/books/handbook/basics chapter.sgml de_DE.ISO8859-1/books/handbook/bibliography chapter.sgml de_DE.ISO8859-1/books/handbook/boot chapter.sgml de_DE.ISO8859-1/books/handbook/config chapter.sgml de_DE.ISO8859-1/books/handbook/cutting-edge chapter.sgml de_DE.ISO8859-1/books/handbook/disks chapter.sgml de_DE.ISO8859-1/books/handbook/eresources chapter.sgml de_DE.ISO8859-1/books/handbook/firewalls chapter.sgml de_DE.ISO8859-1/books/handbook/install chapter.sgml de_DE.ISO8859-1/books/handbook/kernelconfig chapter.sgml de_DE.ISO8859-1/books/handbook/l10n chapter.sgml de_DE.ISO8859-1/books/handbook/linuxemu chapter.sgml de_DE.ISO8859-1/books/handbook/mirrors chapter.sgml de_DE.ISO8859-1/books/handbook/multimedia chapter.sgml de_DE.ISO8859-1/books/handbook/network-servers chapter.sgml de_DE.ISO8859-1/books/handbook/ports chapter.sgml de_DE.ISO8859-1/books/handbook/ppp-and-slip chapter.sgml de_DE.ISO8859-1/books/handbook/printing chapter.sgml de_DE.ISO8859-1/books/handbook/security chapter.sgml de_DE.ISO8859-1/books/handbook/serialcomms chapter.sgml de_DE.ISO8859-1/books/handbook/users chapter.sgml de_DE.ISO8859-1/books/handbook/x11 chapter.sgml de_DE.ISO8859-1/share/sgml mailing-lists.ent Log: MFbed: Update the German documentation set. articles/explaining-bsd/article.sgml 1.20 -> 1.22 books/faq/book.sgml 1.781 -> 1.785 books/fdp-primer/book.sgml 1.28 -> 1.29 books/fdp-primer/translations/chapter.sgml 1.30 -> 1.31 books/handbook/advanced-networking/chapter.sgml 1.380 -> 1.383 books/handbook/basics/chapter.sgml 1.144 -> 1.145 books/handbook/bibliography/chapter.sgml 1.76 -> 1.77 books/handbook/boot/chapter.sgml 1.64 -> 1.65 books/handbook/config/chapter.sgml 1.216 -> 1.221 books/handbook/cutting-edge/chapter.sgml 1.222 -> 1.225 books/handbook/disks/chapter.sgml 1.257 -> 1.263 books/handbook/eresources/chapter.sgml 1.175 -> 1.177 books/handbook/firewalls/chapter.sgml 1.67 -> 1.70 books/handbook/install/chapter.sgml 1.331 -> 1.333 books/handbook/kernelconfig/chapter.sgml 1.163 -> 1.167 books/handbook/l10n/chapter.sgml 1.118 -> 1.119 books/handbook/linuxemu/chapter.sgml 1.130 -> 1.132 books/handbook/mirrors/chapter.sgml 1.418 -> 1.420 books/handbook/multimedia/chapter.sgml 1.115 -> 1.116 books/handbook/network-servers/chapter.sgml 1.81 -> 1.87 books/handbook/ports/chapter.sgml 1.256 -> 1.259 books/handbook/ppp-and-slip/chapter.sgml 1.172 -> 1.173 books/handbook/printing/chapter.sgml 1.95 -> 1.96 books/handbook/security/chapter.sgml 1.293 -> 1.296 books/handbook/serialcomms/chapter.sgml 1.112 -> 1.113 books/handbook/users/chapter.sgml 1.54 -> 1.55 books/handbook/x11/chapter.sgml 1.172 -> 1.173 share/sgml/mailing-lists.ent 1.49 -> 1.51 Obtained from: The FreeBSD German Documentation Project. Revision Changes Path 1.5 +11 -2 doc/de_DE.ISO8859-1/articles/explaining-bsd/article.sgml 1.67 +19 -17 doc/de_DE.ISO8859-1/books/faq/book.sgml 1.9 +2 -2 doc/de_DE.ISO8859-1/books/fdp-primer/book.sgml 1.7 +3 -3 doc/de_DE.ISO8859-1/books/fdp-primer/translations/chapter.sgml 1.33 +41 -815 doc/de_DE.ISO8859-1/books/handbook/advanced-networking/chapter.sgml 1.42 +16 -26 doc/de_DE.ISO8859-1/books/handbook/basics/chapter.sgml 1.30 +14 -5 doc/de_DE.ISO8859-1/books/handbook/bibliography/chapter.sgml 1.31 +11 -12 doc/de_DE.ISO8859-1/books/handbook/boot/chapter.sgml 1.42 +175 -111 doc/de_DE.ISO8859-1/books/handbook/config/chapter.sgml 1.35 +33 -164 doc/de_DE.ISO8859-1/books/handbook/cutting-edge/chapter.sgml 1.49 +87 -331 doc/de_DE.ISO8859-1/books/handbook/disks/chapter.sgml 1.30 +44 -9 doc/de_DE.ISO8859-1/books/handbook/eresources/chapter.sgml 1.5 +2 -55 doc/de_DE.ISO8859-1/books/handbook/firewalls/chapter.sgml 1.9 +15 -354 doc/de_DE.ISO8859-1/books/handbook/install/chapter.sgml 1.38 +77 -369 doc/de_DE.ISO8859-1/books/handbook/kernelconfig/chapter.sgml 1.29 +9 -19 doc/de_DE.ISO8859-1/books/handbook/l10n/chapter.sgml 1.30 +9 -11 doc/de_DE.ISO8859-1/books/handbook/linuxemu/chapter.sgml 1.46 +28 -2 doc/de_DE.ISO8859-1/books/handbook/mirrors/chapter.sgml 1.28 +10 -84 doc/de_DE.ISO8859-1/books/handbook/multimedia/chapter.sgml 1.14 +313 -764 doc/de_DE.ISO8859-1/books/handbook/network-servers/chapter.sgml 1.37 +36 -10 doc/de_DE.ISO8859-1/books/handbook/ports/chapter.sgml 1.31 +6 -70 doc/de_DE.ISO8859-1/books/handbook/ppp-and-slip/chapter.sgml 1.17 +20 -106 doc/de_DE.ISO8859-1/books/handbook/printing/chapter.sgml 1.46 +94 -246 doc/de_DE.ISO8859-1/books/handbook/security/chapter.sgml 1.32 +9 -78 doc/de_DE.ISO8859-1/books/handbook/serialcomms/chapter.sgml 1.22 +4 -86 doc/de_DE.ISO8859-1/books/handbook/users/chapter.sgml 1.26 +6 -34 doc/de_DE.ISO8859-1/books/handbook/x11/chapter.sgml 1.22 +6 -2 doc/de_DE.ISO8859-1/share/sgml/mailing-lists.ent From owner-cvs-all@FreeBSD.ORG Tue Aug 1 19:51:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B91A16A4DA; Tue, 1 Aug 2006 19:51:20 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A84143D8C; Tue, 1 Aug 2006 19:51:09 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71Jp9ZK034700; Tue, 1 Aug 2006 19:51:09 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71Jp9NX034699; Tue, 1 Aug 2006 19:51:09 GMT (envelope-from itetcu) Message-Id: <200608011951.k71Jp9NX034699@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 1 Aug 2006 19:51: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/cad/gerbv 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, 01 Aug 2006 19:51:20 -0000 itetcu 2006-08-01 19:51:09 UTC FreeBSD ports repository Modified files: cad/gerbv Makefile distinfo Log: Update to version 1.0.2 PR: ports/101188 Submitted by: KATO Tsuguru Revision Changes Path 1.24 +4 -5 ports/cad/gerbv/Makefile 1.12 +3 -3 ports/cad/gerbv/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 19:53:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E044216A4F1; Tue, 1 Aug 2006 19:53:22 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7112443D6B; Tue, 1 Aug 2006 19:53:16 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71JrGoK034802; Tue, 1 Aug 2006 19:53:16 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71JrGes034801; Tue, 1 Aug 2006 19:53:16 GMT (envelope-from itetcu) Message-Id: <200608011953.k71JrGes034801@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 1 Aug 2006 19:53: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/math/jsmath 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, 01 Aug 2006 19:53:23 -0000 itetcu 2006-08-01 19:53:16 UTC FreeBSD ports repository Modified files: math/jsmath Makefile distinfo pkg-plist Log: Update to 3.3c PR: ports/101181 Submitted by: Nicola Vitale (maintainer) Revision Changes Path 1.3 +1 -1 ports/math/jsmath/Makefile 1.3 +3 -3 ports/math/jsmath/distinfo 1.2 +1 -0 ports/math/jsmath/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 1 19:58:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B836516A4DE; Tue, 1 Aug 2006 19:58:37 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74CE243D5A; Tue, 1 Aug 2006 19:58:37 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71JwbqQ035029; Tue, 1 Aug 2006 19:58:37 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71JwbUS035028; Tue, 1 Aug 2006 19:58:37 GMT (envelope-from itetcu) Message-Id: <200608011958.k71JwbUS035028@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 1 Aug 2006 19:58: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/dns/dnsmasq 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, 01 Aug 2006 19:58:37 -0000 itetcu 2006-08-01 19:58:37 UTC FreeBSD ports repository Modified files: dns/dnsmasq Makefile Log: - fix dbus dependency issue - change IPv6 OPTION default to off - bump PORTREVISION PR: ports/101172 Submitted by: Babak Farrokhi (maintainer) Revision Changes Path 1.29 +5 -2 ports/dns/dnsmasq/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 1 20:05:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7217B16A4DA; Tue, 1 Aug 2006 20:05:31 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42E6543D53; Tue, 1 Aug 2006 20:05:31 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71K5ViG036698; Tue, 1 Aug 2006 20:05:31 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71K5Vx0036697; Tue, 1 Aug 2006 20:05:31 GMT (envelope-from itetcu) Message-Id: <200608012005.k71K5Vx0036697@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 1 Aug 2006 20: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/audio Makefile ports/audio/herrie 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, 01 Aug 2006 20:05:31 -0000 itetcu 2006-08-01 20:05:31 UTC FreeBSD ports repository Modified files: audio Makefile Added files: audio/herrie Makefile distinfo pkg-descr Log: Herrie is a small command line music player. It has vim-like controls and has some unique features, like chroot()'ing and dropping privileges. This makes it an ideal application for low-end jukeboxes. WWW: http://g-rave.nl/projects/herrie/ PR: ports/101159 Submitted by: Ed Schouten Revision Changes Path 1.756 +1 -0 ports/audio/Makefile 1.1 +32 -0 ports/audio/herrie/Makefile (new) 1.1 +3 -0 ports/audio/herrie/distinfo (new) 1.1 +5 -0 ports/audio/herrie/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 20:06:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F075216A4E2; Tue, 1 Aug 2006 20:06:00 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB4AB43D46; Tue, 1 Aug 2006 20:06:00 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71K60vE036742; Tue, 1 Aug 2006 20:06:00 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71K600M036741; Tue, 1 Aug 2006 20:06:00 GMT (envelope-from itetcu) Message-Id: <200608012006.k71K600M036741@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 1 Aug 2006 20:06: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: Tue, 01 Aug 2006 20:06:01 -0000 itetcu 2006-08-01 20:06:00 UTC FreeBSD ports repository Modified files: . modules Log: herrie --> ports/audio/herrie Revision Changes Path 1.15848 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 20:12:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DDB1F16A4DE; Tue, 1 Aug 2006 20:12:19 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B10743D4C; Tue, 1 Aug 2006 20:12:19 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71KCJBW037199; Tue, 1 Aug 2006 20:12:19 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71KCJba037198; Tue, 1 Aug 2006 20:12:19 GMT (envelope-from sat) Message-Id: <200608012012.k71KCJba037198@repoman.freebsd.org> From: Andrew Pantyukhin Date: Tue, 1 Aug 2006 20:12: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-Linux-Pid 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, 01 Aug 2006 20:12:20 -0000 sat 2006-08-01 20:12:19 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-Linux-Pid Makefile distinfo pkg-descr pkg-plist Log: Add port devel/p5-Linux-Pid: Why should one use a module to get the PID and the PPID of a process where there are the $$ variable and the getppid() builtin? (Not mentioning the equivalent POSIX::getpid() and POSIX::getppid() functions.) In fact, this is useful on Linux, with multithreaded programs. Linux' C library, using the linux thread model, returns different values of the PID and the PPID from different threads. (Other thread models such as NPTL don't have the same behaviour). This module forces perl to call the underlying C functions getpid() and getppid(). WWW: http://search.cpan.org/dist/Linux-Pid/ Revision Changes Path 1.2378 +1 -0 ports/devel/Makefile 1.1 +21 -0 ports/devel/p5-Linux-Pid/Makefile (new) 1.1 +3 -0 ports/devel/p5-Linux-Pid/distinfo (new) 1.1 +12 -0 ports/devel/p5-Linux-Pid/pkg-descr (new) 1.1 +7 -0 ports/devel/p5-Linux-Pid/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 20:12:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0DC7E16A4DA; Tue, 1 Aug 2006 20:12:53 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C42543D45; Tue, 1 Aug 2006 20:12:52 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71KCqFT037238; Tue, 1 Aug 2006 20:12:52 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71KCqGp037237; Tue, 1 Aug 2006 20:12:52 GMT (envelope-from sat) Message-Id: <200608012012.k71KCqGp037237@repoman.freebsd.org> From: Andrew Pantyukhin Date: Tue, 1 Aug 2006 20:12: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: 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, 01 Aug 2006 20:12:53 -0000 sat 2006-08-01 20:12:52 UTC FreeBSD ports repository Modified files: . modules Log: p5-Linux-Pid --> ports/devel/p5-Linux-Pid Revision Changes Path 1.15849 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 20:22:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E811016A4DE; Tue, 1 Aug 2006 20:22:16 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DDDB43D69; Tue, 1 Aug 2006 20:22:12 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71KMBPe037866; Tue, 1 Aug 2006 20:22:11 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71KMB5e037865; Tue, 1 Aug 2006 20:22:11 GMT (envelope-from itetcu) Message-Id: <200608012022.k71KMB5e037865@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 1 Aug 2006 20:22: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/cad Makefile ports/cad/gspiceui Makefile distinfo pkg-descr pkg-plist ports/cad/gspiceui/files patch-src_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, 01 Aug 2006 20:22:17 -0000 itetcu 2006-08-01 20:22:11 UTC FreeBSD ports repository Modified files: cad Makefile Added files: cad/gspiceui Makefile distinfo pkg-descr pkg-plist cad/gspiceui/files patch-src_Makefile Log: This port provides a GUI for two freely available SPICE electronic circuit simulation engines: GNU-Cap and Ng-Spice. Current features: Import gschem schematic files using gentlist. Load and parse circuit description (net list) files. Provides a GUI interface for GNU-Cap OP, DC, AC and Transient analyses and generates appropriate simulator commands based on user input. Provides a GUI interface for Ng-Spice DC, AC and Transient analyses and generates appropriate simulator commands based on user input. The raw output may be viewed for any processes initiated by gspiceui. Formatting of simulator output so that it may be plotted using gwave. WWW: http://www.geda.seul.org/tools/gspiceui/index.html PR: ports/99357 Submitted by: Stanislav Sedov Revision Changes Path 1.91 +1 -0 ports/cad/Makefile 1.1 +65 -0 ports/cad/gspiceui/Makefile (new) 1.1 +3 -0 ports/cad/gspiceui/distinfo (new) 1.1 +24 -0 ports/cad/gspiceui/files/patch-src_Makefile (new) 1.1 +16 -0 ports/cad/gspiceui/pkg-descr (new) 1.1 +36 -0 ports/cad/gspiceui/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 20:22:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C85416A4DD; Tue, 1 Aug 2006 20:22:38 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2CF843D73; Tue, 1 Aug 2006 20:22:34 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71KMYfh037904; Tue, 1 Aug 2006 20:22:34 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71KMYln037903; Tue, 1 Aug 2006 20:22:34 GMT (envelope-from itetcu) Message-Id: <200608012022.k71KMYln037903@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 1 Aug 2006 20:22: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: Tue, 01 Aug 2006 20:22:38 -0000 itetcu 2006-08-01 20:22:34 UTC FreeBSD ports repository Modified files: . modules Log: gspiceui --> ports/cad/gspiceui Revision Changes Path 1.15850 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 20:29:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC9D616A4DD; Tue, 1 Aug 2006 20:29:35 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6AC6743D45; Tue, 1 Aug 2006 20:29:35 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71KTZsC038200; Tue, 1 Aug 2006 20:29:35 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71KTZRK038199; Tue, 1 Aug 2006 20:29:35 GMT (envelope-from itetcu) Message-Id: <200608012029.k71KTZRK038199@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 1 Aug 2006 20:29: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/mail/postfix 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, 01 Aug 2006 20:29:35 -0000 itetcu 2006-08-01 20:29:35 UTC FreeBSD ports repository Modified files: mail/postfix Makefile Log: Fix "typo" in previous commit. Submitted by: KIMURA Yasuhiro Revision Changes Path 1.117 +1 -1 ports/mail/postfix/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 1 20:32:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F2B616A4DA; Tue, 1 Aug 2006 20:32:41 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DECB43D6D; Tue, 1 Aug 2006 20:32:41 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71KWfT0038469; Tue, 1 Aug 2006 20:32:41 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71KWfNu038468; Tue, 1 Aug 2006 20:32:41 GMT (envelope-from itetcu) Message-Id: <200608012032.k71KWfNu038468@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 1 Aug 2006 20:32: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/editors Makefile ports/editors/richtext Makefile distinfo pkg-descr ports/editors/richtext/files patch-Imakefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 01 Aug 2006 20:32:41 -0000 itetcu 2006-08-01 20:32:41 UTC FreeBSD ports repository Modified files: editors Makefile Added files: editors/richtext Makefile distinfo pkg-descr editors/richtext/files patch-Imakefile Log: This a simple editor for Microsoft RTF files ver. 1.3. Author: David Stes WWW: http://users.pandora.be/stes/ PR: ports/101047 Submitted by: Stanislav Sedov Revision Changes Path 1.351 +1 -0 ports/editors/Makefile 1.1 +32 -0 ports/editors/richtext/Makefile (new) 1.1 +3 -0 ports/editors/richtext/distinfo (new) 1.1 +18 -0 ports/editors/richtext/files/patch-Imakefile (new) 1.1 +4 -0 ports/editors/richtext/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 20:33:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A6BE16A4DD; Tue, 1 Aug 2006 20:33:10 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E3CF43D69; Tue, 1 Aug 2006 20:33:07 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71KX6hE038530; Tue, 1 Aug 2006 20:33:06 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71KX6nL038527; Tue, 1 Aug 2006 20:33:06 GMT (envelope-from itetcu) Message-Id: <200608012033.k71KX6nL038527@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 1 Aug 2006 20:33: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: 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, 01 Aug 2006 20:33:10 -0000 itetcu 2006-08-01 20:33:06 UTC FreeBSD ports repository Modified files: . modules Log: richtext --> ports/editors/richtext Revision Changes Path 1.15851 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 20:36:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 279B516A4DD; Tue, 1 Aug 2006 20:36:10 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAA2D43D68; Tue, 1 Aug 2006 20:36:09 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71Ka9W5038728; Tue, 1 Aug 2006 20:36:09 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71Ka9qk038727; Tue, 1 Aug 2006 20:36:09 GMT (envelope-from flz) Message-Id: <200608012036.k71Ka9qk038727@repoman.freebsd.org> From: Florent Thoumie Date: Tue, 1 Aug 2006 20:36: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/multimedia/pwcbsd 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: Tue, 01 Aug 2006 20:36:10 -0000 flz 2006-08-01 20:36:09 UTC FreeBSD ports repository Modified files: multimedia/pwcbsd Makefile pkg-plist Log: Don't install . This is moving to a brand new multimedia/v4l_compat port. Approved by: maintainer Revision Changes Path 1.5 +1 -1 ports/multimedia/pwcbsd/Makefile 1.2 +0 -2 ports/multimedia/pwcbsd/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 1 20:41:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4247416A4DF; Tue, 1 Aug 2006 20:41:22 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10E4C43D46; Tue, 1 Aug 2006 20:41:22 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71KfLZe039096; Tue, 1 Aug 2006 20:41:21 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71KfLP9039095; Tue, 1 Aug 2006 20:41:21 GMT (envelope-from flz) Message-Id: <200608012041.k71KfLP9039095@repoman.freebsd.org> From: Florent Thoumie Date: Tue, 1 Aug 2006 20:41: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/v4l_compat Makefile pkg-descr pkg-plist ports/multimedia/v4l_compat/files videodev.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, 01 Aug 2006 20:41:22 -0000 flz 2006-08-01 20:41:21 UTC FreeBSD ports repository Modified files: multimedia Makefile Added files: multimedia/v4l_compat Makefile pkg-descr pkg-plist multimedia/v4l_compat/files videodev.h Log: Add multimedia/v4l_compat port, a port that installs the header file needed to build some piece of software with video4linux support. Just BUILD_DEPENDS on it, and you should be fine. Revision Changes Path 1.172 +1 -0 ports/multimedia/Makefile 1.1 +24 -0 ports/multimedia/v4l_compat/Makefile (new) 1.1 +355 -0 ports/multimedia/v4l_compat/files/videodev.h (new) 1.1 +4 -0 ports/multimedia/v4l_compat/pkg-descr (new) 1.1 +2 -0 ports/multimedia/v4l_compat/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 20:42:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CFEA116A4DA; Tue, 1 Aug 2006 20:42:40 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F49443D4C; Tue, 1 Aug 2006 20:42:40 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71KgexV039172; Tue, 1 Aug 2006 20:42:40 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71KgeDC039171; Tue, 1 Aug 2006 20:42:40 GMT (envelope-from flz) Message-Id: <200608012042.k71KgeDC039171@repoman.freebsd.org> From: Florent Thoumie Date: Tue, 1 Aug 2006 20:42: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: 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, 01 Aug 2006 20:42:40 -0000 flz 2006-08-01 20:42:40 UTC FreeBSD ports repository Modified files: . modules Log: v4l_compat --> ports/multimedia/v4l_compat Revision Changes Path 1.15852 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 20:46:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BE4416A4E6; Tue, 1 Aug 2006 20:46:14 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D65D643D97; Tue, 1 Aug 2006 20:45:50 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71KjoBD039393; Tue, 1 Aug 2006 20:45:50 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71Kjo29039392; Tue, 1 Aug 2006 20:45:50 GMT (envelope-from sat) Message-Id: <200608012045.k71Kjo29039392@repoman.freebsd.org> From: Andrew Pantyukhin Date: Tue, 1 Aug 2006 20:45: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 Makefile ports/devel/p5-Log-Dispatch-Email-EmailSend 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, 01 Aug 2006 20:46:14 -0000 sat 2006-08-01 20:45:50 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-Log-Dispatch-Email-EmailSend Makefile distinfo pkg-descr pkg-plist Log: Add port devel/p5-Log-Dispatch-Email-EmailSend: This is a subclass of Log::Dispatch::Email that implements the send_email method using the Email::Send module. WWW: http://search.cpan.org/dist/Log-Dispatch-Email-EmailSend/ Revision Changes Path 1.2379 +1 -0 ports/devel/Makefile 1.1 +27 -0 ports/devel/p5-Log-Dispatch-Email-EmailSend/Makefile (new) 1.1 +3 -0 ports/devel/p5-Log-Dispatch-Email-EmailSend/distinfo (new) 1.1 +4 -0 ports/devel/p5-Log-Dispatch-Email-EmailSend/pkg-descr (new) 1.1 +4 -0 ports/devel/p5-Log-Dispatch-Email-EmailSend/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 20:47:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BEF6216A4DD; Tue, 1 Aug 2006 20:47:03 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8073D43DD9; Tue, 1 Aug 2006 20:46:27 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71KkDvp039432; Tue, 1 Aug 2006 20:46:13 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71KkDcH039431; Tue, 1 Aug 2006 20:46:13 GMT (envelope-from sat) Message-Id: <200608012046.k71KkDcH039431@repoman.freebsd.org> From: Andrew Pantyukhin Date: Tue, 1 Aug 2006 20:46: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: 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, 01 Aug 2006 20:47:03 -0000 sat 2006-08-01 20:46:13 UTC FreeBSD ports repository Modified files: . modules Log: p5-Log-Dispatch-Email-EmailSend --> ports/devel/p5-Log-Dispatch-Email-EmailSend Revision Changes Path 1.15853 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 20:49:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2DED316A4DD; Tue, 1 Aug 2006 20:49:59 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91E3B43D7E; Tue, 1 Aug 2006 20:49:52 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71Knqld047331; Tue, 1 Aug 2006 20:49:52 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71Knql4047330; Tue, 1 Aug 2006 20:49:52 GMT (envelope-from itetcu) Message-Id: <200608012049.k71Knql4047330@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 1 Aug 2006 20:49: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/comms/ktrack/files patch-ktrack_calculator.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: Tue, 01 Aug 2006 20:49:59 -0000 itetcu 2006-08-01 20:49:52 UTC FreeBSD ports repository Added files: comms/ktrack/files patch-ktrack_calculator.cpp Log: Unbreak PR: ports/100993 Submitted by: Diane Bruce (maintainer) Revision Changes Path 1.1 +10 -0 ports/comms/ktrack/files/patch-ktrack_calculator.cpp (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 21:30:08 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3796B16A4DE; Tue, 1 Aug 2006 21:30:08 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC44743D5A; Tue, 1 Aug 2006 21:30:07 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71LU7Xx050605; Tue, 1 Aug 2006 21:30:07 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71LU7hq050604; Tue, 1 Aug 2006 21:30:07 GMT (envelope-from marcel) Message-Id: <200608012130.k71LU7hq050604@repoman.freebsd.org> From: Marcel Moolenaar Date: Tue, 1 Aug 2006 21:30: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/dev/uart uart_tty.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, 01 Aug 2006 21:30:08 -0000 marcel 2006-08-01 21:30:07 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/uart uart_tty.c Log: MFC rev. 1.29: Propagate overrun conditions to the TTY layer. Revision Changes Path 1.22.2.2 +2 -0 src/sys/dev/uart/uart_tty.c From owner-cvs-all@FreeBSD.ORG Tue Aug 1 21:50:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 892D316A4E6; Tue, 1 Aug 2006 21:50:53 +0000 (UTC) (envelope-from erwin@mail.droso.net) Received: from mail.droso.net (koala.droso.net [193.88.12.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id E982643DB0; Tue, 1 Aug 2006 21:50:08 +0000 (GMT) (envelope-from erwin@mail.droso.net) Received: by mail.droso.net (Postfix, from userid 1001) id F132622C40; Tue, 1 Aug 2006 23:49:56 +0200 (CEST) Date: Tue, 1 Aug 2006 23:49:56 +0200 From: Erwin Lansing To: Andrew Pantyukhin Message-ID: <20060801214956.GB13326@droso.net> Mail-Followup-To: Andrew Pantyukhin , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200608012012.k71KCJba037198@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="i/VKSWANvDZSIhsB" Content-Disposition: inline In-Reply-To: <200608012012.k71KCJba037198@repoman.freebsd.org> X-Operating-System: FreeBSD/i386 5.4-RELEASE User-Agent: Mutt/1.5.12-2006-07-14 Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/devel Makefile ports/devel/p5-Linux-Pid 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, 01 Aug 2006 21:50:53 -0000 --i/VKSWANvDZSIhsB Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 01, 2006 at 08:12:19PM +0000, Andrew Pantyukhin wrote: > sat 2006-08-01 20:12:19 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > devel Makefile=20 > Added files: > devel/p5-Linux-Pid Makefile distinfo pkg-descr pkg-plist=20 > Log: > Add port devel/p5-Linux-Pid: > =20 > Why should one use a module to get the PID and the PPID of a process > where there are the $$ variable and the getppid() builtin? (Not > mentioning the equivalent POSIX::getpid() and POSIX::getppid() > functions.) > =20 > In fact, this is useful on Linux, with multithreaded programs. Linux' > C library, using the linux thread model, returns different values of > the PID and the PPID from different threads. (Other thread models such > as NPTL don't have the same behaviour). This module forces perl to > call the underlying C functions getpid() and getppid(). So what does it do on FreeBSD? This looks pretty Linux specific. Not related to this specific commit, but the latest flurry of new perl modules has got me a bit worried. Are people actually using all these new modules or are they imported just because they are on CPAN? Coping with 15.000 ports is not easy and while I do not want to start imposing any rules (apart from the very liberal rules we already have) on new ports, we do need to judge the usefulness of every new port we add. -erwin --=20 Erwin Lansing http://droso.org Security is like an onion. (o_ _o) It's made up of several layers \\\_\ /_/// erwin@FreeBSD.org And it makes you cry. <____) (____> erwin@aauug.dk --i/VKSWANvDZSIhsB Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.4 (FreeBSD) iD8DBQFEz8yEqy9aWxUlaZARAsfTAKCaE8k3rkY6w4KZaEc5KLk6Ml/X3wCg+EP4 edzOVXyV+iHhfBQx8jWPXkg= =PwFl -----END PGP SIGNATURE----- --i/VKSWANvDZSIhsB-- From owner-cvs-all@FreeBSD.ORG Tue Aug 1 21:52:02 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF2CD16A4DF; Tue, 1 Aug 2006 21:52:02 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDD3C43D8B; Tue, 1 Aug 2006 21:51:29 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71LpJE9051741; Tue, 1 Aug 2006 21:51:19 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71LpJNa051740; Tue, 1 Aug 2006 21:51:19 GMT (envelope-from marcel) Message-Id: <200608012151.k71LpJNa051740@repoman.freebsd.org> From: Marcel Moolenaar Date: Tue, 1 Aug 2006 21:51: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/sys serial.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, 01 Aug 2006 21:52:03 -0000 marcel 2006-08-01 21:51:19 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/sys serial.h Log: MFC rev 1.3, 1.4 and 1.5: o Add defines for the 5 interrupt sources typical for serial devices. o Add bit masks for the various definitions. Revision Changes Path 1.2.8.1 +45 -17 src/sys/sys/serial.h From owner-cvs-all@FreeBSD.ORG Tue Aug 1 22:19:02 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4CF9D16A4DE; Tue, 1 Aug 2006 22:19:02 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14C0843D53; Tue, 1 Aug 2006 22:19:02 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71MJ1Dk054823; Tue, 1 Aug 2006 22:19:01 GMT (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71MJ19N054822; Tue, 1 Aug 2006 22:19:01 GMT (envelope-from sobomax) Message-Id: <200608012219.k71MJ19N054822@repoman.freebsd.org> From: Maxim Sobolev Date: Tue, 1 Aug 2006 22:19: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/etc/mtree BSD.include.dist src/include Makefile src/share/man/man4/man4.powerpc Makefile powermac_nvram.4 src/sys/dev/powermac_nvram powermac_nvram.c powermac_nvramvar.h src/sys/modules Makefile src/sys/modules/powermac_nvram 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, 01 Aug 2006 22:19:02 -0000 sobomax 2006-08-01 22:19:01 UTC FreeBSD src repository Modified files: etc/mtree BSD.include.dist include Makefile sys/modules Makefile usr.sbin Makefile sys/conf files.powerpc sys/powerpc/conf GENERIC Added files: share/man/man4/man4.powerpc powermac_nvram.4 Makefile sys/dev/powermac_nvram powermac_nvram.c powermac_nvramvar.h sys/modules/powermac_nvram Makefile usr.sbin/nvram Makefile nvram.8 nvram.c Log: Add device to access and modify Open Firmware NVRAM settings in PowerPC-based Apple's machines and small utility to do it from userland modelled after the similar utility in Darwin/OSX. Only tested on 1.25GHz G4 Mac Mini. MFC after: 1 month Revision Changes Path 1.107 +2 -0 src/etc/mtree/BSD.include.dist 1.262 +5 -1 src/include/Makefile 1.1 +7 -0 src/share/man/man4/man4.powerpc/Makefile (new) 1.1 +58 -0 src/share/man/man4/man4.powerpc/powermac_nvram.4 (new) 1.57 +2 -0 src/sys/conf/files.powerpc 1.1 +423 -0 src/sys/dev/powermac_nvram/powermac_nvram.c (new) 1.1 +68 -0 src/sys/dev/powermac_nvram/powermac_nvramvar.h (new) 1.506 +2 -0 src/sys/modules/Makefile 1.1 +8 -0 src/sys/modules/powermac_nvram/Makefile (new) 1.59 +3 -0 src/sys/powerpc/conf/GENERIC 1.354 +2 -0 src/usr.sbin/Makefile 1.1 +8 -0 src/usr.sbin/nvram/Makefile (new) 1.1 +119 -0 src/usr.sbin/nvram/nvram.8 (new) 1.1 +222 -0 src/usr.sbin/nvram/nvram.c (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 22:30:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5AABB16A4DF; Tue, 1 Aug 2006 22:30:56 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAA3E43D49; Tue, 1 Aug 2006 22:30:55 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71MUt9V055521; Tue, 1 Aug 2006 22:30:55 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71MUtJ6055520; Tue, 1 Aug 2006 22:30:55 GMT (envelope-from jhb) Message-Id: <200608012230.k71MUtJ6055520@repoman.freebsd.org> From: John Baldwin Date: Tue, 1 Aug 2006 22:30: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/ddb db_ps.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, 01 Aug 2006 22:30:56 -0000 jhb 2006-08-01 22:30:55 UTC FreeBSD src repository Modified files: sys/ddb db_ps.c Log: Fix two nits in the ps header that offset each other making them largely unnoticable. Revision Changes Path 1.63 +6 -6 src/sys/ddb/db_ps.c From owner-cvs-all@FreeBSD.ORG Tue Aug 1 22:35:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23D3316A4DD; Tue, 1 Aug 2006 22:35:19 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D329343D53; Tue, 1 Aug 2006 22:35:18 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71MZIbc055758; Tue, 1 Aug 2006 22:35:18 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71MZIoC055757; Tue, 1 Aug 2006 22:35:18 GMT (envelope-from clsung) Message-Id: <200608012235.k71MZIoC055757@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 22: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/databases/p5-Class-Inflate 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, 01 Aug 2006 22:35:19 -0000 clsung 2006-08-01 22:35:18 UTC FreeBSD ports repository Modified files: databases/p5-Class-Inflate Makefile distinfo Log: - Update to 0.04 PR: ports/101212 Submitted by: maintainer (Gea-Suan Lin) Revision Changes Path 1.2 +1 -1 ports/databases/p5-Class-Inflate/Makefile 1.2 +3 -3 ports/databases/p5-Class-Inflate/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 22:41:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A395D16A4DD; Tue, 1 Aug 2006 22:41:39 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62CCA43D45; Tue, 1 Aug 2006 22:41:39 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71Mfdcx056191; Tue, 1 Aug 2006 22:41:39 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71Mfd1T056190; Tue, 1 Aug 2006 22:41:39 GMT (envelope-from clsung) Message-Id: <200608012241.k71Mfd1T056190@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 22:41: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/www/p5-Text-Markdown-ApacheHandler 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, 01 Aug 2006 22:41:39 -0000 clsung 2006-08-01 22:41:39 UTC FreeBSD ports repository Modified files: www/p5-Text-Markdown-ApacheHandler Makefile distinfo Log: - Update to 0.04 PR: ports/101177 Submitted by: clsung Approved by: maintainer (Gea-Suan Lin) Revision Changes Path 1.2 +1 -1 ports/www/p5-Text-Markdown-ApacheHandler/Makefile 1.2 +3 -3 ports/www/p5-Text-Markdown-ApacheHandler/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 22:57:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2DE616A4DA; Tue, 1 Aug 2006 22:57:07 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A305243D45; Tue, 1 Aug 2006 22:57:07 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71Mv7Wa057353; Tue, 1 Aug 2006 22:57:07 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71Mv7Y0057352; Tue, 1 Aug 2006 22:57:07 GMT (envelope-from marcel) Message-Id: <200608012257.k71Mv7Y0057352@repoman.freebsd.org> From: Marcel Moolenaar Date: Tue, 1 Aug 2006 22:57: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/dev/uart uart_bus_pci.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, 01 Aug 2006 22:57:08 -0000 marcel 2006-08-01 22:57:07 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/uart uart_bus_pci.c Log: MFC revs 1.7, 1.8 and 1.9: o Add support for non-standard rclk values. o Add Quatech ID o Add 2 NEC IDs o Add 2 HP IDs o Add 5 Timedia IDs Revision Changes Path 1.5.2.2 +67 -30 src/sys/dev/uart/uart_bus_pci.c From owner-cvs-all@FreeBSD.ORG Tue Aug 1 22:57:57 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5186616A4E6; Tue, 1 Aug 2006 22:57:57 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F302A43D49; Tue, 1 Aug 2006 22:57:56 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71Mvu6Y057434; Tue, 1 Aug 2006 22:57:56 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71Mvut7057433; Tue, 1 Aug 2006 22:57:56 GMT (envelope-from clsung) Message-Id: <200608012257.k71Mvut7057433@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 1 Aug 2006 22:57: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/devel/p5-File-Binary 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, 01 Aug 2006 22:57:57 -0000 clsung 2006-08-01 22:57:56 UTC FreeBSD ports repository Modified files: devel/p5-File-Binary Makefile distinfo Log: - update to 1.3 - take maintainership Revision Changes Path 1.9 +3 -4 ports/devel/p5-File-Binary/Makefile 1.7 +3 -3 ports/devel/p5-File-Binary/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 23:17:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EAAB416A4DA; Tue, 1 Aug 2006 23:17:33 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA25643D45; Tue, 1 Aug 2006 23:17:33 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71NHXki060436; Tue, 1 Aug 2006 23:17:33 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71NHXIF060435; Tue, 1 Aug 2006 23:17:33 GMT (envelope-from pjd) Message-Id: <200608012317.k71NHXIF060435@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 1 Aug 2006 23:17: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/geom/mirror g_mirror.c src/sys/geom/raid3 g_raid3.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, 01 Aug 2006 23:17:34 -0000 pjd 2006-08-01 23:17:33 UTC FreeBSD src repository Modified files: sys/geom/mirror g_mirror.c sys/geom/raid3 g_raid3.c Log: Don't use f-word in comments. We are gentlemans. Pointed out by: Maciej Sobczak Revision Changes Path 1.86 +1 -1 src/sys/geom/mirror/g_mirror.c 1.70 +1 -1 src/sys/geom/raid3/g_raid3.c From owner-cvs-all@FreeBSD.ORG Tue Aug 1 23:31:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A76216A4DA; Tue, 1 Aug 2006 23:31:10 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12C8D43D5A; Tue, 1 Aug 2006 23:31:07 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71NV6A0061267; Tue, 1 Aug 2006 23:31:06 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71NV6lW061266; Tue, 1 Aug 2006 23:31:06 GMT (envelope-from acm) Message-Id: <200608012331.k71NV6lW061266@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Tue, 1 Aug 2006 23:31: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/emulators Makefile ports/emulators/pyxmame Makefile distinfo pkg-descr pkg-plist ports/emulators/pyxmame/files patch-pyxmame_Config.py 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: Tue, 01 Aug 2006 23:31:10 -0000 acm 2006-08-01 23:31:06 UTC FreeBSD ports repository Modified files: emulators Makefile Added files: emulators/pyxmame Makefile distinfo pkg-descr pkg-plist emulators/pyxmame/files patch-pyxmame_Config.py patch-setup.py Log: - New port: emulators/pyxmame Pyxmame is a free application that provides a simple frontend for the xmame, developed with PyGTK WWW: http://pegueroles.com/Pyxmame/ Approved by: garga (mentor) Revision Changes Path 1.195 +1 -0 ports/emulators/Makefile 1.1 +25 -0 ports/emulators/pyxmame/Makefile (new) 1.1 +3 -0 ports/emulators/pyxmame/distinfo (new) 1.1 +13 -0 ports/emulators/pyxmame/files/patch-pyxmame_Config.py (new) 1.1 +27 -0 ports/emulators/pyxmame/files/patch-setup.py (new) 1.1 +4 -0 ports/emulators/pyxmame/pkg-descr (new) 1.1 +47 -0 ports/emulators/pyxmame/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 1 23:34:02 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 94F7016A4DE; Tue, 1 Aug 2006 23:34:02 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5858543D5A; Tue, 1 Aug 2006 23:34:02 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71NY2In061391; Tue, 1 Aug 2006 23:34:02 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71NY2GA061390; Tue, 1 Aug 2006 23:34:02 GMT (envelope-from acm) Message-Id: <200608012334.k71NY2GA061390@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Tue, 1 Aug 2006 23:34: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: 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, 01 Aug 2006 23:34:02 -0000 acm 2006-08-01 23:34:02 UTC FreeBSD ports repository Modified files: . modules Log: pyxmame --> ports/emulators/pyxmame Revision Changes Path 1.15854 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 1 23:38:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACE8216A4E0; Tue, 1 Aug 2006 23:38:11 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CF6243D49; Tue, 1 Aug 2006 23:38:11 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71NcBjc061580; Tue, 1 Aug 2006 23:38:11 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71NcBBr061579; Tue, 1 Aug 2006 23:38:11 GMT (envelope-from garga) Message-Id: <200608012338.k71NcBBr061579@repoman.freebsd.org> From: Renato Botelho Date: Tue, 1 Aug 2006 23:38: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/mail/qmail 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, 01 Aug 2006 23:38:11 -0000 garga 2006-08-01 23:38:10 UTC FreeBSD ports repository Modified files: mail/qmail Makefile distinfo Log: Add OUTGOINGIP patch to qmail-spamcontrol and qmail-tls slaveports Revision Changes Path 1.109 +8 -1 ports/mail/qmail/Makefile 1.55 +3 -0 ports/mail/qmail/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 1 23:49:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F5B516A4DA; Tue, 1 Aug 2006 23:49:53 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C565543D45; Tue, 1 Aug 2006 23:49:52 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k71NnqKJ062216; Tue, 1 Aug 2006 23:49:52 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k71Nnq3B062215; Tue, 1 Aug 2006 23:49:52 GMT (envelope-from acm) Message-Id: <200608012349.k71Nnq3B062215@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Tue, 1 Aug 2006 23:49: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/www/py-django 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, 01 Aug 2006 23:49:53 -0000 acm 2006-08-01 23:49:52 UTC FreeBSD ports repository Modified files: www/py-django Makefile distinfo pkg-plist Log: - Update to 0.95 Approved by: garga (mentor) Revision Changes Path 1.7 +2 -1 ports/www/py-django/Makefile 1.3 +3 -3 ports/www/py-django/distinfo 1.4 +763 -458 ports/www/py-django/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 2 00:06:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF1C816A4E0; Wed, 2 Aug 2006 00:06:35 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F4FF43D49; Wed, 2 Aug 2006 00:06:35 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7206Zi8064273; Wed, 2 Aug 2006 00:06:35 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7206ZkT064272; Wed, 2 Aug 2006 00:06:35 GMT (envelope-from clsung) Message-Id: <200608020006.k7206ZkT064272@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 2 Aug 2006 00:06: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/japanese/p5-Text-MeCab 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, 02 Aug 2006 00:06:36 -0000 clsung 2006-08-02 00:06:35 UTC FreeBSD ports repository Modified files: japanese/p5-Text-MeCab Makefile Log: - Add IS_INTERACTIVE. - Correct an English comment. PR: ports/101220 Submitted by: maintainer (TAOKA Fumiyoshi) Revision Changes Path 1.2 +2 -1 ports/japanese/p5-Text-MeCab/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 2 00:19:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1297416A4DA; Wed, 2 Aug 2006 00:19:23 +0000 (UTC) (envelope-from darren.pilgrim@bitfreak.org) Received: from mail.twinthornes.com (mail.twinthornes.com [65.75.198.147]) by mx1.FreeBSD.org (Postfix) with ESMTP id A306143D46; Wed, 2 Aug 2006 00:19:20 +0000 (GMT) (envelope-from darren.pilgrim@bitfreak.org) Received: from [10.242.169.22] (c-67-171-135-169.hsd1.or.comcast.net [67.171.135.169]) by mail.twinthornes.com (Postfix) with ESMTP id 7F715F7C; Tue, 1 Aug 2006 17:19:19 -0700 (PDT) Message-ID: <44CFEF87.8010005@bitfreak.org> Date: Tue, 01 Aug 2006 17:19:19 -0700 From: Darren Pilgrim User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: Pawel Jakub Dawidek References: <200608012317.k71NHXIF060435@repoman.freebsd.org> In-Reply-To: <200608012317.k71NHXIF060435@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/geom/mirror g_mirror.c src/sys/geom/raid3 g_raid3.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, 02 Aug 2006 00:19:23 -0000 Pawel Jakub Dawidek wrote: > pjd 2006-08-01 23:17:33 UTC > > FreeBSD src repository > > Modified files: > sys/geom/mirror g_mirror.c > sys/geom/raid3 g_raid3.c > Log: > Don't use f-word in comments. We are gentlemans. There's a typo two lines down in both files: * If there were writes, device is broken, sorry. * I think the best choice here is don't touch - * this disk and inform the user laudly. + * this disk and inform the user loudly. */ I'll submit a PR if so asked. -- Darren Pilgrim From owner-cvs-all@FreeBSD.ORG Wed Aug 2 00:22:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CA4216A4DD; Wed, 2 Aug 2006 00:22:22 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C21A143D49; Wed, 2 Aug 2006 00:22:21 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k720MLRN065045; Wed, 2 Aug 2006 00:22:21 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k720MLpH065044; Wed, 2 Aug 2006 00:22:21 GMT (envelope-from clsung) Message-Id: <200608020022.k720MLpH065044@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 2 Aug 2006 00:22: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/japanese/mecab 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, 02 Aug 2006 00:22:22 -0000 clsung 2006-08-02 00:22:21 UTC FreeBSD ports repository Modified files: japanese/mecab Makefile Log: WITH_CHARSET feature was introduced in my last update. But it doesn't work unless libiconv is linked. - Link with libiconv. - Correct charset examples - bump PORTREVISION PR: ports/101223 Submitted by: TAOKA Fumiyoshi Revision Changes Path 1.20 +5 -2 ports/japanese/mecab/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 2 00:32:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5009716A4E6; Wed, 2 Aug 2006 00:32:27 +0000 (UTC) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8757043D46; Wed, 2 Aug 2006 00:32:26 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.4/8.13.3) with ESMTP id k720WOlQ078510; Wed, 2 Aug 2006 04:32:24 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.4/8.13.3/Submit) id k720WNLU078505; Wed, 2 Aug 2006 04:32:23 +0400 (MSD) (envelope-from yar) Date: Wed, 2 Aug 2006 04:32:23 +0400 From: Yar Tikhiy To: Qing Li Message-ID: <20060802003223.GA77391@comp.chem.msu.su> References: <200608011728.k71HSA9m019497@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200608011728.k71HSA9m019497@repoman.freebsd.org> User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, sam@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_vlan.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, 02 Aug 2006 00:32:27 -0000 On Tue, Aug 01, 2006 at 05:28:10PM +0000, Qing Li wrote: > qingli 2006-08-01 17:28:10 UTC > > FreeBSD src repository > > Modified files: > sys/net if_vlan.c > Log: > In vlan_input(), if the network interface does not perform h/w based > vlan tag processing, the code will use bcopy() to remove the vlan > tag field but the code copies 2 bytes too many, which essentially > overwrites the protocol type field. This had not been true until you removed the line of "dead" code. > Also, a tag value of -1 is generated for unrecognized interface type, > which would cause an invalid memory access in the vlans[] array. This is the only part of your change I like in theory, but its implementation is rather questionable. See below. > In addition, removed a line of dead code and its associated comments. The code was not dead, you just misunderstood it. See below. > Reviewed by: sam I think now I may commit some code Sam didn't dig a couple of years ago ;-) > Revision Changes Path > 1.107 +9 -15 src/sys/net/if_vlan.c > =================================================================== > RCS file: /usr/local/www/cvsroot/FreeBSD/src/sys/net/if_vlan.c,v > retrieving revision 1.106 > retrieving revision 1.107 > diff -u -p -r1.106 -r1.107 > --- src/sys/net/if_vlan.c 2006/07/09 06:04:00 1.106 > +++ src/sys/net/if_vlan.c 2006/08/01 17:28:10 1.107 > @@ -26,7 +26,7 @@ > * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF > * SUCH DAMAGE. > * > - * $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/sys/net/if_vlan.c,v 1.106 2006/07/09 06:04:00 sam Exp $ > + * $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/sys/net/if_vlan.c,v 1.107 2006/08/01 17:28:10 qingli Exp $ > */ > > /* > @@ -917,21 +917,15 @@ vlan_input(struct ifnet *ifp, struct mbu > __func__, ntohs(evl->evl_encap_proto))); > > tag = EVL_VLANOFTAG(ntohs(evl->evl_tag)); > - > - /* > - * Restore the original ethertype. We'll remove > - * the encapsulation after we've found the vlan > - * interface corresponding to the tag. > - */ > - evl->evl_encap_proto = evl->evl_proto; This "dead" code copied the ethertype value saved in the dot1q mini-header to the outer Ethernet header's ethertype field. I.e.: +---------------+ V | +---------+---------+--------+-------+--------+----------- | dst | src | proto1 | tag | proto0 | payload... +---------+---------+--------+-------+--------+----------- Then the outer Ethernet header was as before VLAN encapsulation. That was why we could bcopy full ETHER_HDR_LEN bytes later. > break; > default: > - tag = (uint16_t) -1; > -#ifdef INVARIANTS > - panic("%s: unsupported if_type (%u)", > - __func__, ifp->if_type); > +#ifdef DEBUG > + /* XXX rate limit? */ > + if_printf(ifp, "unsupported if_type %u", ifp->if_type); > #endif Do you see this message on your console so often that you think it needs rate limiting? The former code paniced here because it could be reached only due to a programming error elsewhere. See ether_demux() in if_ethersubr.c and vlan_config() in this file. This default case can never be reached due to a bogus frame coming from the network. > - break; > + m_freem(m); > + ifp->if_noproto++; /* XXX? */ Nothing wrong with using if_noproto here IMHO, but this still "just can't happen". > + return; > } > } > > @@ -952,12 +946,12 @@ vlan_input(struct ifnet *ifp, struct mbu > if (mtag == NULL) { > /* > * Packet had an in-line encapsulation header; > - * remove it. The original header has already > - * been fixed up above. > + * remove it. Note that we leave the type field > + * unchanged; we only copy up the mac addresses. > */ > bcopy(mtod(m, caddr_t), > mtod(m, caddr_t) + ETHER_VLAN_ENCAP_LEN, > - ETHER_HDR_LEN); > + ETHER_HDR_LEN - ETHER_TYPE_LEN); > m_adj(m, ETHER_VLAN_ENCAP_LEN); > } Removing the "dead" assignment to evl->evl_encap_proto above and reducing the bcopy window by 2 bytes here is a nano-optimization. Which is worse, it smuggles hidden dot1q details in this otherwise encapsulation-neutral block of code. E.g., I could use the former code for both dot1q and ISL privately by just redefining ETHER_VLAN_ENCAP_LEN. Grand total: I would greately appreciate if you backed out this change and then fixed the tag value of -1 alone, but let me review that first. Thanks! -- Yar From owner-cvs-all@FreeBSD.ORG Wed Aug 2 00:40:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6348316A4DD; Wed, 2 Aug 2006 00:40:58 +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 EA8AE43D4C; Wed, 2 Aug 2006 00:40:57 +0000 (GMT) (envelope-from sam@errno.com) Received: from [10.0.0.248] (trouble.errno.com [10.0.0.248]) (authenticated bits=0) by ebb.errno.com (8.13.6/8.12.6) with ESMTP id k720euQA026130 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 1 Aug 2006 17:40:57 -0700 (PDT) (envelope-from sam@errno.com) Message-ID: <44CFF498.1040008@errno.com> Date: Tue, 01 Aug 2006 17:40:56 -0700 From: Sam Leffler User-Agent: Thunderbird 1.5.0.4 (X11/20060724) MIME-Version: 1.0 To: Yar Tikhiy References: <200608011728.k71HSA9m019497@repoman.freebsd.org> <20060802003223.GA77391@comp.chem.msu.su> In-Reply-To: <20060802003223.GA77391@comp.chem.msu.su> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Qing Li , sam@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_vlan.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, 02 Aug 2006 00:40:58 -0000 Yar Tikhiy wrote: > On Tue, Aug 01, 2006 at 05:28:10PM +0000, Qing Li wrote: >> qingli 2006-08-01 17:28:10 UTC >> >> FreeBSD src repository >> >> Modified files: >> sys/net if_vlan.c >> Log: >> In vlan_input(), if the network interface does not perform h/w based >> vlan tag processing, the code will use bcopy() to remove the vlan >> tag field but the code copies 2 bytes too many, which essentially >> overwrites the protocol type field. > > This had not been true until you removed the line of "dead" code. > >> Also, a tag value of -1 is generated for unrecognized interface type, >> which would cause an invalid memory access in the vlans[] array. > > This is the only part of your change I like in theory, but its > implementation is rather questionable. See below. > >> In addition, removed a line of dead code and its associated comments. > > The code was not dead, you just misunderstood it. See below. > >> Reviewed by: sam > > I think now I may commit some code Sam didn't dig a couple > of years ago ;-) > >> Revision Changes Path >> 1.107 +9 -15 src/sys/net/if_vlan.c > >> =================================================================== >> RCS file: /usr/local/www/cvsroot/FreeBSD/src/sys/net/if_vlan.c,v >> retrieving revision 1.106 >> retrieving revision 1.107 >> diff -u -p -r1.106 -r1.107 >> --- src/sys/net/if_vlan.c 2006/07/09 06:04:00 1.106 >> +++ src/sys/net/if_vlan.c 2006/08/01 17:28:10 1.107 >> @@ -26,7 +26,7 @@ >> * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF >> * SUCH DAMAGE. >> * >> - * $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/sys/net/if_vlan.c,v 1.106 2006/07/09 06:04:00 sam Exp $ >> + * $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/sys/net/if_vlan.c,v 1.107 2006/08/01 17:28:10 qingli Exp $ >> */ >> >> /* >> @@ -917,21 +917,15 @@ vlan_input(struct ifnet *ifp, struct mbu >> __func__, ntohs(evl->evl_encap_proto))); >> >> tag = EVL_VLANOFTAG(ntohs(evl->evl_tag)); >> - >> - /* >> - * Restore the original ethertype. We'll remove >> - * the encapsulation after we've found the vlan >> - * interface corresponding to the tag. >> - */ >> - evl->evl_encap_proto = evl->evl_proto; > > This "dead" code copied the ethertype value saved in the dot1q > mini-header to the outer Ethernet header's ethertype field. I.e.: > > +---------------+ > V | > +---------+---------+--------+-------+--------+----------- > | dst | src | proto1 | tag | proto0 | payload... > +---------+---------+--------+-------+--------+----------- > > Then the outer Ethernet header was as before VLAN encapsulation. > That was why we could bcopy full ETHER_HDR_LEN bytes later. Correct, but with the short bcopy this is no longer needed. proto0 is left intact and only dst+src are copied up. > >> break; >> default: >> - tag = (uint16_t) -1; >> -#ifdef INVARIANTS >> - panic("%s: unsupported if_type (%u)", >> - __func__, ifp->if_type); >> +#ifdef DEBUG >> + /* XXX rate limit? */ >> + if_printf(ifp, "unsupported if_type %u", ifp->if_type); >> #endif > > Do you see this message on your console so often that you think it > needs rate limiting? The former code paniced here because it could > be reached only due to a programming error elsewhere. See ether_demux() > in if_ethersubr.c and vlan_config() in this file. This default > case can never be reached due to a bogus frame coming from the > network. I wrote the XXX comment. The previous code allowed an array index w/ -1 when the panic was not present. Rather than permit this incorrect code to remain the proper cleanup was done instead. I added a printf because if that action ever happened it was clearly a mistake. Qing Li wrapped it under DEBUG since the statistic already accounts for it and leaving it as a straight printf left open the possibility of spam'ing the console. I do not understand your complaint. Are you suggesting we leave panic's in code paths that we can recover from? Are you suggesting we not comment places where alternative choices might be made? > >> - break; >> + m_freem(m); >> + ifp->if_noproto++; /* XXX? */ > > Nothing wrong with using if_noproto here IMHO, but this still "just > can't happen". > >> + return; >> } >> } >> >> @@ -952,12 +946,12 @@ vlan_input(struct ifnet *ifp, struct mbu >> if (mtag == NULL) { >> /* >> * Packet had an in-line encapsulation header; >> - * remove it. The original header has already >> - * been fixed up above. >> + * remove it. Note that we leave the type field >> + * unchanged; we only copy up the mac addresses. >> */ >> bcopy(mtod(m, caddr_t), >> mtod(m, caddr_t) + ETHER_VLAN_ENCAP_LEN, >> - ETHER_HDR_LEN); >> + ETHER_HDR_LEN - ETHER_TYPE_LEN); >> m_adj(m, ETHER_VLAN_ENCAP_LEN); >> } > > Removing the "dead" assignment to evl->evl_encap_proto above and > reducing the bcopy window by 2 bytes here is a nano-optimization. > Which is worse, it smuggles hidden dot1q details in this otherwise > encapsulation-neutral block of code. E.g., I could use the former > code for both dot1q and ISL privately by just redefining > ETHER_VLAN_ENCAP_LEN. > > Grand total: I would greately appreciate if you backed out this > change and then fixed the tag value of -1 alone, but let me review > that first. Thanks! > We obviously had no idea you were interested in this. I was asked to review the original change and noticed the bogus panic code and suggested it be fixed at the same time. I already pointed out to Qing Li that the new code is equivalent to the old but he preferred it and since it does nothing wrong I don't see the point in arguing about it--work it out with him privately if you want it reverted. Sam From owner-cvs-all@FreeBSD.ORG Wed Aug 2 00:45:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CD5216A4E7; Wed, 2 Aug 2006 00:45:28 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA78743D49; Wed, 2 Aug 2006 00:45:27 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k720jRi9066011; Wed, 2 Aug 2006 00:45:27 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k720jR0x066010; Wed, 2 Aug 2006 00:45:27 GMT (envelope-from rwatson) Message-Id: <200608020045.k720jR0x066010@repoman.freebsd.org> From: Robert Watson Date: Wed, 2 Aug 2006 00:45: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/kern uipc_socket.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, 02 Aug 2006 00:45:28 -0000 rwatson 2006-08-02 00:45:27 UTC FreeBSD src repository Modified files: sys/kern uipc_socket.c Log: Move updated of 'numopensockets' from bottom of sodealloc() to the top, eliminating a second set of identical mutex operations at the bottom. This allows brief exceeding of the max sockets limit, but only by sockets in the last stages of being torn down. Revision Changes Path 1.277 +1 -3 src/sys/kern/uipc_socket.c From owner-cvs-all@FreeBSD.ORG Wed Aug 2 01:16:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D99E816A4DE; Wed, 2 Aug 2006 01:16:21 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98DD743D49; Wed, 2 Aug 2006 01:16:21 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k721GLnB076505; Wed, 2 Aug 2006 01:16:21 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k721GLSL076504; Wed, 2 Aug 2006 01:16:21 GMT (envelope-from ijliao) Message-Id: <200608020116.k721GLSL076504@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 2 Aug 2006 01:16: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 Makefile ports/devel/p5-aliased 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, 02 Aug 2006 01:16:22 -0000 ijliao 2006-08-02 01:16:21 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-aliased Makefile distinfo pkg-descr Log: add p5-aliased 0.20 Use shorter versions of class names PR: 101016 Revision Changes Path 1.2380 +1 -0 ports/devel/Makefile 1.1 +25 -0 ports/devel/p5-aliased/Makefile (new) 1.1 +3 -0 ports/devel/p5-aliased/distinfo (new) 1.1 +7 -0 ports/devel/p5-aliased/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 2 01:16:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32EBC16A4DA; Wed, 2 Aug 2006 01:16:39 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AEDD743D4C; Wed, 2 Aug 2006 01:16:38 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k721GcL5076568; Wed, 2 Aug 2006 01:16:38 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k721Gcef076567; Wed, 2 Aug 2006 01:16:38 GMT (envelope-from ijliao) Message-Id: <200608020116.k721Gcef076567@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 2 Aug 2006 01:16: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: 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, 02 Aug 2006 01:16:39 -0000 ijliao 2006-08-02 01:16:38 UTC FreeBSD ports repository Modified files: . modules Log: p5-aliased --> ports/devel/p5-aliased Revision Changes Path 1.15855 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 2 01:18:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B7A816A4E0; Wed, 2 Aug 2006 01:18:50 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 188DC43D49; Wed, 2 Aug 2006 01:18:50 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k721Inkq076686; Wed, 2 Aug 2006 01:18:49 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k721InZY076685; Wed, 2 Aug 2006 01:18:49 GMT (envelope-from ijliao) Message-Id: <200608020118.k721InZY076685@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 2 Aug 2006 01:18: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 Makefile ports/devel/p5-Hash-AsObject 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, 02 Aug 2006 01:18:50 -0000 ijliao 2006-08-02 01:18:48 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-Hash-AsObject Makefile distinfo pkg-descr pkg-plist Log: add p5-Hash-AsObject 0.05 Hashes with accessors/mutators PR: 101017 Revision Changes Path 1.2381 +1 -0 ports/devel/Makefile 1.1 +22 -0 ports/devel/p5-Hash-AsObject/Makefile (new) 1.1 +3 -0 ports/devel/p5-Hash-AsObject/distinfo (new) 1.1 +8 -0 ports/devel/p5-Hash-AsObject/pkg-descr (new) 1.1 +5 -0 ports/devel/p5-Hash-AsObject/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 2 01:19:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 678A616A4E1; Wed, 2 Aug 2006 01:19:03 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BE5943D45; Wed, 2 Aug 2006 01:19:03 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k721J3u7076754; Wed, 2 Aug 2006 01:19:03 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k721J37u076753; Wed, 2 Aug 2006 01:19:03 GMT (envelope-from ijliao) Message-Id: <200608020119.k721J37u076753@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 2 Aug 2006 01:19: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: 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, 02 Aug 2006 01:19:03 -0000 ijliao 2006-08-02 01:19:03 UTC FreeBSD ports repository Modified files: . modules Log: p5-Hash-AsObject --> ports/devel/p5-Hash-AsObject Revision Changes Path 1.15856 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 2 01:20:02 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32B8816A4E0; Wed, 2 Aug 2006 01:20:02 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B34143D53; Wed, 2 Aug 2006 01:20:01 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k721K104076849; Wed, 2 Aug 2006 01:20:01 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k721K1HZ076848; Wed, 2 Aug 2006 01:20:01 GMT (envelope-from ijliao) Message-Id: <200608020120.k721K1HZ076848@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 2 Aug 2006 01: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/textproc Makefile ports/textproc/p5-Text-Quote 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, 02 Aug 2006 01:20:02 -0000 ijliao 2006-08-02 01:20:01 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/p5-Text-Quote Makefile distinfo pkg-descr pkg-plist Log: add p5-Text-Quote 0.3 Quotes strings as required for perl to eval them back correctly PR: 101018 Revision Changes Path 1.1038 +1 -0 ports/textproc/Makefile 1.1 +27 -0 ports/textproc/p5-Text-Quote/Makefile (new) 1.1 +3 -0 ports/textproc/p5-Text-Quote/distinfo (new) 1.1 +6 -0 ports/textproc/p5-Text-Quote/pkg-descr (new) 1.1 +5 -0 ports/textproc/p5-Text-Quote/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 2 01:20:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A12E616A500; Wed, 2 Aug 2006 01:20:39 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55BD343D46; Wed, 2 Aug 2006 01:20:39 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k721KdEa076975; Wed, 2 Aug 2006 01:20:39 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k721KdmU076974; Wed, 2 Aug 2006 01:20:39 GMT (envelope-from ijliao) Message-Id: <200608020120.k721KdmU076974@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 2 Aug 2006 01:20: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: 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, 02 Aug 2006 01:20:39 -0000 ijliao 2006-08-02 01:20:39 UTC FreeBSD ports repository Modified files: . modules Log: p5-Text-Quote --> ports/textproc/p5-Text-Quote Revision Changes Path 1.15857 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 2 01:21:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CB3016A4DA; Wed, 2 Aug 2006 01:21:34 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9238943D4C; Wed, 2 Aug 2006 01:21:33 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k721LX6c077168; Wed, 2 Aug 2006 01:21:33 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k721LX6U077167; Wed, 2 Aug 2006 01:21:33 GMT (envelope-from ijliao) Message-Id: <200608020121.k721LX6U077167@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 2 Aug 2006 01:21: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 Makefile ports/devel/p5-AI-Prolog Makefile distinfo pkg-descr pkg-plist ports/devel/p5-AI-Prolog/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: Wed, 02 Aug 2006 01:21:34 -0000 ijliao 2006-08-02 01:21:33 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-AI-Prolog Makefile distinfo pkg-descr pkg-plist devel/p5-AI-Prolog/files patch-Makefile.PL Log: add p5-AI-Prolog 0.734 Perl extension for logic programming PR: 101019 Revision Changes Path 1.2382 +1 -0 ports/devel/Makefile 1.1 +55 -0 ports/devel/p5-AI-Prolog/Makefile (new) 1.1 +3 -0 ports/devel/p5-AI-Prolog/distinfo (new) 1.1 +31 -0 ports/devel/p5-AI-Prolog/files/patch-Makefile.PL (new) 1.1 +5 -0 ports/devel/p5-AI-Prolog/pkg-descr (new) 1.1 +30 -0 ports/devel/p5-AI-Prolog/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 2 01:21:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F350F16A4DD; Wed, 2 Aug 2006 01:21:47 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B738343D49; Wed, 2 Aug 2006 01:21:47 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k721LlAn077206; Wed, 2 Aug 2006 01:21:47 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k721LljY077205; Wed, 2 Aug 2006 01:21:47 GMT (envelope-from ijliao) Message-Id: <200608020121.k721LljY077205@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 2 Aug 2006 01:21: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: 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, 02 Aug 2006 01:21:48 -0000 ijliao 2006-08-02 01:21:47 UTC FreeBSD ports repository Modified files: . modules Log: p5-AI-Prolog --> ports/devel/p5-AI-Prolog Revision Changes Path 1.15858 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 2 01:34:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A58616A4DD; Wed, 2 Aug 2006 01:34:31 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFB2E43D45; Wed, 2 Aug 2006 01:34:30 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k721YUrH077758; Wed, 2 Aug 2006 01:34:30 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k721YUXN077757; Wed, 2 Aug 2006 01:34:30 GMT (envelope-from kuriyama) Message-Id: <200608020134.k721YUXN077757@repoman.freebsd.org> From: Jun Kuriyama Date: Wed, 2 Aug 2006 01:34: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/security/gnupg 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, 02 Aug 2006 01:34:31 -0000 kuriyama 2006-08-02 01:34:30 UTC FreeBSD ports repository Modified files: security/gnupg Makefile distinfo pkg-plist Log: - Upgrade to 1.4.5. (fixes 2 more possible memory allocation attacks). - Enable OPTIONS [1]. Security: http://lists.gnupg.org/pipermail/gnupg-announce/2006q3/000229.html PR: ports/93540 [1] Submitted by: Pawel Wieleba [1] Revision Changes Path 1.86 +6 -1 ports/security/gnupg/Makefile 1.38 +6 -6 ports/security/gnupg/distinfo 1.36 +1 -0 ports/security/gnupg/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 2 01:36:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 90A0C16A4DA; Wed, 2 Aug 2006 01:36:40 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5271F43D45; Wed, 2 Aug 2006 01:36:40 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k721aehP077896; Wed, 2 Aug 2006 01:36:40 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k721aemR077895; Wed, 2 Aug 2006 01:36:40 GMT (envelope-from thompsa) Message-Id: <200608020136.k721aemR077895@repoman.freebsd.org> From: Andrew Thompson Date: Wed, 2 Aug 2006 01:36:40 +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/net bridgestp.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, 02 Aug 2006 01:36:40 -0000 thompsa 2006-08-02 01:36:40 UTC FreeBSD src repository Modified files: sys/net bridgestp.c Log: Be sure to disable the port when removing it from STP. Revision Changes Path 1.16 +2 -0 src/sys/net/bridgestp.c From owner-cvs-all@FreeBSD.ORG Wed Aug 2 01:40:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D3DB316A4DE; Wed, 2 Aug 2006 01:40:26 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 082E443D5E; Wed, 2 Aug 2006 01:40:26 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k721eP3H078089; Wed, 2 Aug 2006 01:40:25 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k721ePWj078088; Wed, 2 Aug 2006 01:40:25 GMT (envelope-from kuriyama) Message-Id: <200608020140.k721ePWj078088@repoman.freebsd.org> From: Jun Kuriyama Date: Wed, 2 Aug 2006 01: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/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, 02 Aug 2006 01:40:26 -0000 kuriyama 2006-08-02 01:40:25 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Add recent gnupg issue. Revision Changes Path 1.1096 +29 -1 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Wed Aug 2 01:55:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C2B616A4DF; Wed, 2 Aug 2006 01:55:22 +0000 (UTC) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5BA943D45; Wed, 2 Aug 2006 01:55:13 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.4/8.13.3) with ESMTP id k721spTu079374; Wed, 2 Aug 2006 05:54:51 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.4/8.13.3/Submit) id k721smAt079373; Wed, 2 Aug 2006 05:54:48 +0400 (MSD) (envelope-from yar) Date: Wed, 2 Aug 2006 05:54:48 +0400 From: Yar Tikhiy To: Sam Leffler Message-ID: <20060802015448.GC77391@comp.chem.msu.su> References: <200608011728.k71HSA9m019497@repoman.freebsd.org> <20060802003223.GA77391@comp.chem.msu.su> <44CFF498.1040008@errno.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <44CFF498.1040008@errno.com> User-Agent: Mutt/1.5.9i Cc: Qing Li , sam@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_vlan.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, 02 Aug 2006 01:55:22 -0000 On Tue, Aug 01, 2006 at 05:40:56PM -0700, Sam Leffler wrote: > > We obviously had no idea you were interested in this. I was asked to > review the original change and noticed the bogus panic code and > suggested it be fixed at the same time. I already pointed out to Qing > Li that the new code is equivalent to the old but he preferred it and > since it does nothing wrong I don't see the point in arguing about > it--work it out with him privately if you want it reverted. Sam, you're right, I am not going to argue over this topic with you here. I just thought I should add you to Cc because your name was mentioned. Qing Li can support his commits by his own now, and I'll be glad to communicate with him. -- Yar From owner-cvs-all@FreeBSD.ORG Wed Aug 2 02:37:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E2F216A4E0; Wed, 2 Aug 2006 02:37:13 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45E3A43D79; Wed, 2 Aug 2006 02:37:00 +0000 (GMT) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k722b0UQ081917; Wed, 2 Aug 2006 02:37:00 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from yongari@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k722b0pM081916; Wed, 2 Aug 2006 02:37:00 GMT (envelope-from yongari) Message-Id: <200608020237.k722b0pM081916@repoman.freebsd.org> From: Pyun YongHyeon Date: Wed, 2 Aug 2006 02:37: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/dev/sk if_sk.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, 02 Aug 2006 02:37:13 -0000 yongari 2006-08-02 02:37:00 UTC FreeBSD src repository Modified files: sys/dev/sk if_sk.c Log: Fix incorrect busy check for PHY write operation. While I'm here remove unnecessary return statement. Revision Changes Path 1.129 +2 -4 src/sys/dev/sk/if_sk.c From owner-cvs-all@FreeBSD.ORG Wed Aug 2 02:47:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB01416A4DD; Wed, 2 Aug 2006 02:47:05 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B3A843D45; Wed, 2 Aug 2006 02:47:05 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k722l5ab082417; Wed, 2 Aug 2006 02:47:05 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k722l58a082416; Wed, 2 Aug 2006 02:47:05 GMT (envelope-from clsung) Message-Id: <200608020247.k722l58a082416@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 2 Aug 2006 02: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/mail/dkim-milter 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, 02 Aug 2006 02:47:05 -0000 clsung 2006-08-02 02:47:05 UTC FreeBSD ports repository Modified files: mail/dkim-milter Makefile distinfo Log: - update to 0.5.1 PR: ports/101238 Submitted by: maintainer (Hirohisa Yamaguch) Revision Changes Path 1.7 +1 -1 ports/mail/dkim-milter/Makefile 1.5 +3 -3 ports/mail/dkim-milter/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 2 02:47:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA8C416A4E9; Wed, 2 Aug 2006 02:47:27 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99B7743D49; Wed, 2 Aug 2006 02:47:27 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k722lRAs082456; Wed, 2 Aug 2006 02:47:27 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k722lRC2082455; Wed, 2 Aug 2006 02:47:27 GMT (envelope-from thompsa) Message-Id: <200608020247.k722lRC2082455@repoman.freebsd.org> From: Andrew Thompson Date: Wed, 2 Aug 2006 02:47: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/net bridgestp.c bridgestp.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, 02 Aug 2006 02:47:28 -0000 thompsa 2006-08-02 02:47:27 UTC FreeBSD src repository Modified files: sys/net bridgestp.c bridgestp.h Log: Add a callback so we can notify the parent bridge that a port state change has occured, we need to do this from a taskqueue to avoid a LOR with the if_bridge mutex. Revision Changes Path 1.17 +34 -3 src/sys/net/bridgestp.c 1.4 +9 -1 src/sys/net/bridgestp.h From owner-cvs-all@FreeBSD.ORG Wed Aug 2 02:51:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 460AE16A4DD; Wed, 2 Aug 2006 02:51:47 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF5AE43D6E; Wed, 2 Aug 2006 02:51:42 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k722pgFS082690; Wed, 2 Aug 2006 02:51:42 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k722pgFS082689; Wed, 2 Aug 2006 02:51:42 GMT (envelope-from thompsa) Message-Id: <200608020251.k722pgFS082689@repoman.freebsd.org> From: Andrew Thompson Date: Wed, 2 Aug 2006 02:51: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/net bridgestp.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, 02 Aug 2006 02:51:47 -0000 thompsa 2006-08-02 02:51:42 UTC FreeBSD src repository Modified files: sys/net bridgestp.c Log: Fix style in the last commit, the variable declaration goes at the top of the function. Revision Changes Path 1.18 +2 -1 src/sys/net/bridgestp.c From owner-cvs-all@FreeBSD.ORG Wed Aug 2 02:59:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C62816A4DD; Wed, 2 Aug 2006 02:59:25 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0FFD243D45; Wed, 2 Aug 2006 02:59:25 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k722xOcH083019; Wed, 2 Aug 2006 02:59:24 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k722xOkv083018; Wed, 2 Aug 2006 02:59:24 GMT (envelope-from thompsa) Message-Id: <200608020259.k722xOkv083018@repoman.freebsd.org> From: Andrew Thompson Date: Wed, 2 Aug 2006 02:59: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/net if_bridge.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, 02 Aug 2006 02:59:25 -0000 thompsa 2006-08-02 02:59:24 UTC FreeBSD src repository Modified files: sys/net if_bridge.c Log: Tell bridgestp that we are about to free the memory so it can cleanup. Revision Changes Path 1.74 +3 -0 src/sys/net/if_bridge.c From owner-cvs-all@FreeBSD.ORG Wed Aug 2 03:17:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF33816A4DA; Wed, 2 Aug 2006 03:17:28 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9116F43D46; Wed, 2 Aug 2006 03:17:28 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k723HS3n085304; Wed, 2 Aug 2006 03:17:28 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k723HS1V085298; Wed, 2 Aug 2006 03:17:28 GMT (envelope-from clsung) Message-Id: <200608020317.k723HS1V085298@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 2 Aug 2006 03:17: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/devel/p5-Module-Load-Conditional 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, 02 Aug 2006 03:17:28 -0000 clsung 2006-08-02 03:17:28 UTC FreeBSD ports repository Modified files: devel/p5-Module-Load-Conditional Makefile distinfo Log: - update to 0.10 Revision Changes Path 1.4 +2 -4 ports/devel/p5-Module-Load-Conditional/Makefile 1.4 +3 -3 ports/devel/p5-Module-Load-Conditional/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 2 03:20:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A997C16A4DD; Wed, 2 Aug 2006 03:20:29 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB83B43D7C; Wed, 2 Aug 2006 03:20:18 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k723KIgi085502; Wed, 2 Aug 2006 03:20:18 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k723KITj085501; Wed, 2 Aug 2006 03:20:18 GMT (envelope-from clsung) Message-Id: <200608020320.k723KITj085501@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 2 Aug 2006 03:20: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 Makefile ports/www/p5-IMDB-Film 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, 02 Aug 2006 03:20:29 -0000 clsung 2006-08-02 03:20:18 UTC FreeBSD ports repository Modified files: www Makefile Added files: www/p5-IMDB-Film Makefile distinfo pkg-descr pkg-plist Log: Add p5-IMDB-Film 0.22, OO Perl interface to the movies database IMDB. PR: ports/101215 Submitted by: Gea-Suan Lin Revision Changes Path 1.1536 +1 -0 ports/www/Makefile 1.1 +35 -0 ports/www/p5-IMDB-Film/Makefile (new) 1.1 +3 -0 ports/www/p5-IMDB-Film/distinfo (new) 1.1 +4 -0 ports/www/p5-IMDB-Film/pkg-descr (new) 1.1 +8 -0 ports/www/p5-IMDB-Film/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 2 03:20:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB8F516A5B7; Wed, 2 Aug 2006 03:20:35 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA3F043D70; Wed, 2 Aug 2006 03:20:29 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k723KTow085554; Wed, 2 Aug 2006 03:20:29 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k723KTJT085553; Wed, 2 Aug 2006 03:20:29 GMT (envelope-from clsung) Message-Id: <200608020320.k723KTJT085553@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 2 Aug 2006 03:20: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: 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, 02 Aug 2006 03:20:36 -0000 clsung 2006-08-02 03:20:29 UTC FreeBSD ports repository Modified files: . modules Log: p5-IMDB-Film --> ports/www/p5-IMDB-Film Revision Changes Path 1.15859 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 2 03:37:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 22B0F16A598 for ; Wed, 2 Aug 2006 03:37:19 +0000 (UTC) (envelope-from qingli@speakeasy.net) Received: from webmail2.sea5.speakeasy.net (webmail2.speakeasy.net [69.17.117.49]) by mx1.FreeBSD.org (Postfix) with ESMTP id B779743D6D for ; Wed, 2 Aug 2006 03:37:06 +0000 (GMT) (envelope-from qingli@speakeasy.net) Received: (qmail 16189 invoked from network); 2 Aug 2006 03:37:05 -0000 Received: from localhost (HELO webmail2) ([127.0.0.1]) (envelope-sender ) by localhost (qmail-ldap-1.03) with SMTP for ; 2 Aug 2006 03:37:05 -0000 Received: from 12.178.37.11 (unverified [12.178.37.11]) by webmail2 (VisualMail 4.0) with WEBMAIL id 11007; Wed, 02 Aug 2006 03:37:05 +0000 From: "Qing Li" To: "Yar Tikhiy" , "Qing Li" Importance: Normal Sensitivity: Normal Message-ID: X-Mailer: Mintersoft VisualMail, Build 4.0.111601 X-Originating-IP: [12.178.37.11] Date: Wed, 02 Aug 2006 03:37:05 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, sam@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_vlan.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, 02 Aug 2006 03:37:19 -0000 > > Removing the "dead" assignment to evl->evl_encap_proto above and > reducing the bcopy window by 2 bytes here is a nano-optimization. > Which is worse, it smuggles hidden dot1q details in this otherwise > encapsulation-neutral block of code. E.g., I could use the former > code for both dot1q and ISL privately by just redefining > ETHER_VLAN_ENCAP_LEN. > You are right. > > Grand total: I would greately appreciate if you backed out this > change and then fixed the tag value of -1 alone, but let me review > that first. Thanks! > Okay. Thanks, -- Qing From owner-cvs-all@FreeBSD.ORG Wed Aug 2 03:54:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B65416A4E0; Wed, 2 Aug 2006 03:54:32 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E45C143D55; Wed, 2 Aug 2006 03:54:29 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k723sTZ0087786; Wed, 2 Aug 2006 03:54:29 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k723sTNl087785; Wed, 2 Aug 2006 03:54:29 GMT (envelope-from thompsa) Message-Id: <200608020354.k723sTNl087785@repoman.freebsd.org> From: Andrew Thompson Date: Wed, 2 Aug 2006 03:54: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/net if_bridge.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, 02 Aug 2006 03:54:32 -0000 thompsa 2006-08-02 03:54:29 UTC FreeBSD src repository Modified files: sys/net if_bridge.c Log: - Use the new bridgestp callback to once again flush our bridge routes when an interface is disabled. - Log port changes to syslog, defaulting to off Revision Changes Path 1.75 +38 -2 src/sys/net/if_bridge.c From owner-cvs-all@FreeBSD.ORG Wed Aug 2 04:11:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6C9816A4DE; Wed, 2 Aug 2006 04:11:28 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F1B843D77; Wed, 2 Aug 2006 04:11:25 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k724BPZS089933; Wed, 2 Aug 2006 04:11:25 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k724BPPK089932; Wed, 2 Aug 2006 04:11:25 GMT (envelope-from thompsa) Message-Id: <200608020411.k724BPPK089932@repoman.freebsd.org> From: Andrew Thompson Date: Wed, 2 Aug 2006 04:11: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/share/man/man4 if_bridge.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, 02 Aug 2006 04:11:28 -0000 thompsa 2006-08-02 04:11:25 UTC FreeBSD src repository Modified files: share/man/man4 if_bridge.4 Log: Document the log_stp variable. Revision Changes Path 1.19 +6 -0 src/share/man/man4/if_bridge.4 From owner-cvs-all@FreeBSD.ORG Wed Aug 2 04:14:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 685CB16A4DE; Wed, 2 Aug 2006 04:14:44 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29BD243D45; Wed, 2 Aug 2006 04:14:44 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k724EigF090024; Wed, 2 Aug 2006 04:14:44 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k724EiSd090023; Wed, 2 Aug 2006 04:14:44 GMT (envelope-from rafan) Message-Id: <200608020414.k724EiSd090023@repoman.freebsd.org> From: Rong-En Fan Date: Wed, 2 Aug 2006 04:14: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/p5-TestGen4Web-Runner 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, 02 Aug 2006 04:14:44 -0000 rafan 2006-08-02 04:14:43 UTC FreeBSD ports repository Modified files: www/p5-TestGen4Web-Runner Makefile distinfo Log: - Update to 0.08 PR: ports/101198 Submitted by: Conor McDermottroe (maintainer) Revision Changes Path 1.2 +1 -1 ports/www/p5-TestGen4Web-Runner/Makefile 1.2 +3 -3 ports/www/p5-TestGen4Web-Runner/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 2 04:16:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CECAC16A4DA; Wed, 2 Aug 2006 04:16:42 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BE6F43D53; Wed, 2 Aug 2006 04:16:42 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k724GgDS090167; Wed, 2 Aug 2006 04:16:42 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k724GgIh090166; Wed, 2 Aug 2006 04:16:42 GMT (envelope-from rafan) Message-Id: <200608020416.k724GgIh090166@repoman.freebsd.org> From: Rong-En Fan Date: Wed, 2 Aug 2006 04:16: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/gdc Makefile distinfo pkg-descr ports/lang/gdc/files patch-gcc__d__phobos__config__gen_unix.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, 02 Aug 2006 04:16:42 -0000 rafan 2006-08-02 04:16:41 UTC FreeBSD ports repository Modified files: lang/gdc Makefile distinfo pkg-descr Removed files: lang/gdc/files patch-gcc__d__phobos__config__gen_unix.c Log: - Update to 0.19 - Update WWW PR: ports/101163 Submitted by: Masanori OZAWA (maintainer) Revision Changes Path 1.22 +3 -8 ports/lang/gdc/Makefile 1.16 +9 -9 ports/lang/gdc/distinfo 1.2 +0 -14 ports/lang/gdc/files/patch-gcc__d__phobos__config__gen_unix.c (dead) 1.2 +1 -1 ports/lang/gdc/pkg-descr From owner-cvs-all@FreeBSD.ORG Wed Aug 2 04:27:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E05716A4DD; Wed, 2 Aug 2006 04:27:31 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F86143D46; Wed, 2 Aug 2006 04:27:31 +0000 (GMT) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k724RV8R090699; Wed, 2 Aug 2006 04:27:31 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from yongari@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k724RVrP090698; Wed, 2 Aug 2006 04:27:31 GMT (envelope-from yongari) Message-Id: <200608020427.k724RVrP090698@repoman.freebsd.org> From: Pyun YongHyeon Date: Wed, 2 Aug 2006 04:27:31 +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/sk if_sk.c if_skreg.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, 02 Aug 2006 04:27:31 -0000 yongari 2006-08-02 04:27:31 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/sk if_sk.c if_skreg.h Log: MFC: if_sk.c, 1.128 if_skreg.h, 1.38 to RELENG_6 Add device ID for second generation D-Link DGE-530T. Revision Changes Path 1.125.2.4 +8 -2 src/sys/dev/sk/if_sk.c 1.36.2.3 +2 -1 src/sys/dev/sk/if_skreg.h From owner-cvs-all@FreeBSD.ORG Wed Aug 2 04:54:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3070E16A4DA; Wed, 2 Aug 2006 04:54:15 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9AFC43D49; Wed, 2 Aug 2006 04:54:14 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k724sEAY000322; Wed, 2 Aug 2006 04:54:14 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k724sE5u000321; Wed, 2 Aug 2006 04:54:14 GMT (envelope-from sam) Message-Id: <200608020454.k724sE5u000321@repoman.freebsd.org> From: Sam Leffler Date: Wed, 2 Aug 2006 04:54: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/dev/ral rt2560.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, 02 Aug 2006 04:54:15 -0000 sam 2006-08-02 04:54:14 UTC FreeBSD src repository Modified files: sys/dev/ral rt2560.c Log: remove unnecessary null ptr check Coverity ID: 173911 Revision Changes Path 1.7 +1 -2 src/sys/dev/ral/rt2560.c From owner-cvs-all@FreeBSD.ORG Wed Aug 2 04:55:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 207CA16A4DA; Wed, 2 Aug 2006 04:55:05 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA35443D46; Wed, 2 Aug 2006 04:55:04 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k724t4ix000394; Wed, 2 Aug 2006 04:55:04 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k724t4UM000393; Wed, 2 Aug 2006 04:55:04 GMT (envelope-from sam) Message-Id: <200608020455.k724t4UM000393@repoman.freebsd.org> From: Sam Leffler Date: Wed, 2 Aug 2006 04:55: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/dev/usb if_ural.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, 02 Aug 2006 04:55:05 -0000 sam 2006-08-02 04:55:04 UTC FreeBSD src repository Modified files: sys/dev/usb if_ural.c Log: remove unneccessary null ptr check Coverity ID: 173918 Revision Changes Path 1.43 +1 -2 src/sys/dev/usb/if_ural.c From owner-cvs-all@FreeBSD.ORG Wed Aug 2 05:05:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D837316A4DA; Wed, 2 Aug 2006 05:05:37 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A3B9A43D49; Wed, 2 Aug 2006 05:05:37 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7255bbH002467; Wed, 2 Aug 2006 05:05:37 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7255beM002466; Wed, 2 Aug 2006 05:05:37 GMT (envelope-from hrs) Message-Id: <200608020505.k7255beM002466@repoman.freebsd.org> From: Hiroki Sato Date: Wed, 2 Aug 2006 05:05: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/chinese/acroread-zh_CN Makefile distinfo ports/chinese/acroread-zh_TW Makefile distinfo ports/french/acroread Makefile distinfo ports/german/acroread Makefile distinfo ports/japanese/acroread 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, 02 Aug 2006 05:05:38 -0000 hrs 2006-08-02 05:05:37 UTC FreeBSD ports repository Modified files: chinese/acroread-zh_CN Makefile distinfo chinese/acroread-zh_TW Makefile distinfo french/acroread Makefile distinfo german/acroread Makefile distinfo japanese/acroread Makefile distinfo korean/acroread Makefile distinfo print/acroread7 Makefile distinfo print/acroread7/files pkg-message.in Added files: print/acroread7 pkg-plist.7.0.8 Removed files: print/acroread7 pkg-plist.7.0.5 Log: Update to 7.0.8. Revision Changes Path 1.5 +2 -2 ports/chinese/acroread-zh_CN/Makefile 1.4 +3 -3 ports/chinese/acroread-zh_CN/distinfo 1.5 +2 -2 ports/chinese/acroread-zh_TW/Makefile 1.4 +3 -3 ports/chinese/acroread-zh_TW/distinfo 1.7 +2 -2 ports/french/acroread/Makefile 1.5 +3 -3 ports/french/acroread/distinfo 1.6 +2 -2 ports/german/acroread/Makefile 1.5 +3 -3 ports/german/acroread/distinfo 1.13 +2 -2 ports/japanese/acroread/Makefile 1.6 +3 -3 ports/japanese/acroread/distinfo 1.6 +2 -2 ports/korean/acroread/Makefile 1.5 +3 -3 ports/korean/acroread/distinfo 1.20 +8 -7 ports/print/acroread7/Makefile 1.7 +3 -3 ports/print/acroread7/distinfo 1.2 +1 -1 ports/print/acroread7/files/pkg-message.in 1.4 +0 -577 ports/print/acroread7/pkg-plist.7.0.5 (dead) 1.1 +689 -0 ports/print/acroread7/pkg-plist.7.0.8 (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 2 05:21:31 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E50B16A4DF for ; Wed, 2 Aug 2006 05:21:31 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.183]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77A3943D76 for ; Wed, 2 Aug 2006 05:21:29 +0000 (GMT) (envelope-from infofarmer@gmail.com) Received: by py-out-1112.google.com with SMTP id b36so1229648pyb for ; Tue, 01 Aug 2006 22:21:28 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:sender:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=rrESE/qID6k1atlYevss7J0sv8XxTna1FhdPQcEY9LwAvTHwXGlpeREzAftDiI3HZTNvPhJPruBfyNcflLawA113sHD+re6ldahqxjm7RUYvobIQP3qIp7SR1wl8VdeyuTbLfJCHgb0RoT57HFImUqZIT+JFUA2Ua+p6CYHJNdk= Received: by 10.35.100.6 with SMTP id c6mr802546pym; Tue, 01 Aug 2006 22:21:23 -0700 (PDT) Received: by 10.35.105.10 with HTTP; Tue, 1 Aug 2006 22:21:23 -0700 (PDT) Message-ID: Date: Wed, 2 Aug 2006 09:21:23 +0400 From: "Andrew Pantyukhin" Sender: infofarmer@gmail.com To: "Erwin Lansing" , ports-committers@freebsd.org, cvs-ports@freebsd.org, cvs-all@freebsd.org In-Reply-To: <20060801214956.GB13326@droso.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200608012012.k71KCJba037198@repoman.freebsd.org> <20060801214956.GB13326@droso.net> X-Google-Sender-Auth: 23375ae2023abcec Cc: Subject: Re: cvs commit: ports/devel Makefile ports/devel/p5-Linux-Pid Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: infofarmer@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, 02 Aug 2006 05:21:31 -0000 On 8/2/06, Erwin Lansing wrote: > On Tue, Aug 01, 2006 at 08:12:19PM +0000, Andrew Pantyukhin wrote: > > sat 2006-08-01 20:12:19 UTC > > > > FreeBSD ports repository > > > > Modified files: > > devel Makefile > > Added files: > > devel/p5-Linux-Pid Makefile distinfo pkg-descr pkg-plist > > Log: > > Add port devel/p5-Linux-Pid: > > > > Why should one use a module to get the PID and the PPID of a process > > where there are the $$ variable and the getppid() builtin? (Not > > mentioning the equivalent POSIX::getpid() and POSIX::getppid() > > functions.) > > > > In fact, this is useful on Linux, with multithreaded programs. Linux' > > C library, using the linux thread model, returns different values of > > the PID and the PPID from different threads. (Other thread models such > > as NPTL don't have the same behaviour). This module forces perl to > > call the underlying C functions getpid() and getppid(). > > > So what does it do on FreeBSD? This looks pretty Linux specific. > > Not related to this specific commit, but the latest flurry of new perl > modules has got me a bit worried. Are people actually using all these > new modules or are they imported just because they are on CPAN? Coping > with 15.000 ports is not easy and while I do not want to start imposing > any rules (apart from the very liberal rules we already have) on new > ports, we do need to judge the usefulness of every new port we add. Linux here means "non-windows". I anticipated this kind of questions but felt reluctant to change the portname just because it was a linuxism, sorry. I'm trying to port socialtext (http://www.asia.socialtext.net/stoss/) It's a mammoth app, requiring dozens of p5 dependencies, and some of them have yet to be added to the ports tree. From owner-cvs-all@FreeBSD.ORG Wed Aug 2 05:28:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D37416A4DD; Wed, 2 Aug 2006 05:28:53 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1067F43D45; Wed, 2 Aug 2006 05:28:53 +0000 (GMT) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k725Sqv9003654; Wed, 2 Aug 2006 05:28:52 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from yongari@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k725SqCA003653; Wed, 2 Aug 2006 05:28:52 GMT (envelope-from yongari) Message-Id: <200608020528.k725SqCA003653@repoman.freebsd.org> From: Pyun YongHyeon Date: Wed, 2 Aug 2006 05:28: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/dev/dc dcphy.c pnphy.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, 02 Aug 2006 05:28:53 -0000 yongari 2006-08-02 05:28:52 UTC FreeBSD src repository Modified files: sys/dev/dc dcphy.c pnphy.c Log: Replace hard-coded magic constants to system defined constants (BUS_PROBE_DEFAULT, BUS_PROBE_GENERIC etc). These pseudo PHY drivers were forgotten from the conversion due to the repo copy to dc driver location. Revision Changes Path 1.32 +1 -1 src/sys/dev/dc/dcphy.c 1.21 +1 -1 src/sys/dev/dc/pnphy.c From owner-cvs-all@FreeBSD.ORG Wed Aug 2 05:52:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E415816A4DA; Wed, 2 Aug 2006 05:52:28 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5C1E43D49; Wed, 2 Aug 2006 05:52:28 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k725qS3M004800; Wed, 2 Aug 2006 05:52:28 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k725qSts004799; Wed, 2 Aug 2006 05:52:28 GMT (envelope-from dinoex) Message-Id: <200608020552.k725qSts004799@repoman.freebsd.org> From: Dirk Meyer Date: Wed, 2 Aug 2006 05:52: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/openssl 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, 02 Aug 2006 05:52:29 -0000 dinoex 2006-08-02 05:52:28 UTC FreeBSD ports repository Modified files: security/openssl Makefile Log: - ignore OpenSSL 0.9.7* on CUREENT >= 700019 - break out if shared lib version in port is less than base Revision Changes Path 1.116 +18 -1 ports/security/openssl/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 2 06:13:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55B2F16A4DF; Wed, 2 Aug 2006 06:13:27 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE15643D45; Wed, 2 Aug 2006 06:13:26 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k726DQjU006944; Wed, 2 Aug 2006 06:13:26 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k726DQu8006943; Wed, 2 Aug 2006 06:13:26 GMT (envelope-from sat) Message-Id: <200608020613.k726DQu8006943@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 2 Aug 2006 06:13: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/audio/pacpl Makefile distinfo ports/audio/pacpl/files patch-pac.conf X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 02 Aug 2006 06:13:27 -0000 sat 2006-08-02 06:13:26 UTC FreeBSD ports repository Modified files: audio/pacpl Makefile distinfo audio/pacpl/files patch-pac.conf Log: - Update to 3.2.1 Revision Changes Path 1.3 +16 -16 ports/audio/pacpl/Makefile 1.2 +3 -3 ports/audio/pacpl/distinfo 1.2 +2 -2 ports/audio/pacpl/files/patch-pac.conf From owner-cvs-all@FreeBSD.ORG Wed Aug 2 06:22:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A35816A4DF; Wed, 2 Aug 2006 06:22:05 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0DC243D4C; Wed, 2 Aug 2006 06:22:04 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k726M44h007426; Wed, 2 Aug 2006 06:22:04 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k726M4Nc007425; Wed, 2 Aug 2006 06:22:04 GMT (envelope-from hrs) Message-Id: <200608020622.k726M4Nc007425@repoman.freebsd.org> From: Hiroki Sato Date: Wed, 2 Aug 2006 06:22: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/cad/pcb Makefile distinfo pkg-plist ports/cad/pcb/files patch-src-file.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, 02 Aug 2006 06:22:05 -0000 hrs 2006-08-02 06:22:04 UTC FreeBSD ports repository Modified files: cad/pcb Makefile distinfo pkg-plist Added files: cad/pcb/files patch-src-file.c Log: - Add dependency on x11-toolkits/tk83[1]. - Update to 20060414[2]. PR: ports/101128[1] Submitted by: Michael Glaum[1], Tomdean[2] Revision Changes Path 1.52 +4 -3 ports/cad/pcb/Makefile 1.14 +3 -3 ports/cad/pcb/distinfo 1.1 +10 -0 ports/cad/pcb/files/patch-src-file.c (new) 1.18 +5 -1 ports/cad/pcb/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 2 06:37:24 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02E9B16A4DD; Wed, 2 Aug 2006 06:37:24 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5802643D5F; Wed, 2 Aug 2006 06:37:17 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k726bHQG009239; Wed, 2 Aug 2006 06:37:17 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k726bHIB009238; Wed, 2 Aug 2006 06:37:17 GMT (envelope-from dinoex) Message-Id: <200608020637.k726bHIB009238@repoman.freebsd.org> From: Dirk Meyer Date: Wed, 2 Aug 2006 06:37: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/sid-milter 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, 02 Aug 2006 06:37:24 -0000 dinoex 2006-08-02 06:37:17 UTC FreeBSD ports repository Modified files: mail/sid-milter Makefile distinfo Log: - update to 0.2.14 PR: 101239 Submitted by: Hirohisa Yamaguchi Revision Changes Path 1.12 +1 -2 ports/mail/sid-milter/Makefile 1.9 +3 -3 ports/mail/sid-milter/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 2 06:38:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 529E616A4DD; Wed, 2 Aug 2006 06:38:22 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADDAB43D79; Wed, 2 Aug 2006 06:38:16 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k726cF9e009289; Wed, 2 Aug 2006 06:38:15 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k726cFt4009288; Wed, 2 Aug 2006 06:38:15 GMT (envelope-from hrs) Message-Id: <200608020638.k726cFt4009288@repoman.freebsd.org> From: Hiroki Sato Date: Wed, 2 Aug 2006 06:38: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/sup 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, 02 Aug 2006 06:38:22 -0000 hrs 2006-08-02 06:38:15 UTC FreeBSD ports repository Modified files: net/sup Makefile distinfo Log: Fix build on 7.x. Spotted by: linimon Revision Changes Path 1.26 +1 -1 ports/net/sup/Makefile 1.7 +3 -3 ports/net/sup/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 2 07:02:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4DF9116A4E1; Wed, 2 Aug 2006 07:02:23 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDDBC43D73; Wed, 2 Aug 2006 07:02:19 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7272Jrr011405; Wed, 2 Aug 2006 07:02:19 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7272Jck011404; Wed, 2 Aug 2006 07:02:19 GMT (envelope-from brueffer) Message-Id: <200608020702.k7272Jck011404@repoman.freebsd.org> From: Christian Brueffer Date: Wed, 2 Aug 2006 07:02: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/share/man/man4/man4.powerpc powermac_nvram.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, 02 Aug 2006 07:02:23 -0000 brueffer 2006-08-02 07:02:19 UTC FreeBSD src repository Modified files: share/man/man4/man4.powerpc powermac_nvram.4 Log: Cleanup and add our standard SYNOPSIS section. Revision Changes Path 1.2 +16 -4 src/share/man/man4/man4.powerpc/powermac_nvram.4 From owner-cvs-all@FreeBSD.ORG Wed Aug 2 07:21:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01BF716A4DE; Wed, 2 Aug 2006 07:21:26 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C8B5B43D45; Wed, 2 Aug 2006 07:21:25 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k727LPMH013512; Wed, 2 Aug 2006 07:21:25 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k727LPdm013511; Wed, 2 Aug 2006 07:21:25 GMT (envelope-from njl) Message-Id: <200608020721.k727LPdm013511@repoman.freebsd.org> From: Nate Lawson Date: Wed, 2 Aug 2006 07:21: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/sys/dev/acpica acpi.c acpi_thermal.c acpivar.h src/share/man/man4 acpi.4 acpi_thermal.4 src/sbin/sysctl sysctl.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, 02 Aug 2006 07:21:26 -0000 njl 2006-08-02 07:21:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/acpica acpivar.h acpi_thermal.c acpi.c share/man/man4 acpi_thermal.4 acpi.4 sbin/sysctl sysctl.c Log: MFC: add control of thermal zone setpoints, add sysctl to enable ACPI-based rebooting, fix sysctl printing of negative decimals, document it all. Revision Changes Path 1.67.2.2 +6 -2 src/sbin/sysctl/sysctl.c 1.52.2.3 +90 -8 src/share/man/man4/acpi.4 1.6.8.3 +18 -10 src/share/man/man4/acpi_thermal.4 1.214.2.6 +5 -1 src/sys/dev/acpica/acpi.c 1.53.2.5 +55 -13 src/sys/dev/acpica/acpi_thermal.c 1.95.2.4 +2 -1 src/sys/dev/acpica/acpivar.h From owner-cvs-all@FreeBSD.ORG Wed Aug 2 07:33:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2738316A4E6; Wed, 2 Aug 2006 07:33:26 +0000 (UTC) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF84843D58; Wed, 2 Aug 2006 07:33:25 +0000 (GMT) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k727XPVh014093; Wed, 2 Aug 2006 07:33:25 GMT (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k727XPcd014092; Wed, 2 Aug 2006 07:33:25 GMT (envelope-from knu) Message-Id: <200608020733.k727XPcd014092@repoman.freebsd.org> From: Akinori MUSHA Date: Wed, 2 Aug 2006 07:33: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/shells/zsh+euc_hack/files patch-Src::Zle::zle_misc.c patch-Src::Zle::zle_move.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, 02 Aug 2006 07:33:26 -0000 knu 2006-08-02 07:33:25 UTC FreeBSD ports repository Modified files: shells/zsh+euc_hack/files patch-Src::Zle::zle_misc.c patch-Src::Zle::zle_move.c Log: Update patches. Revision Changes Path 1.2 +5 -5 ports/shells/zsh+euc_hack/files/patch-Src::Zle::zle_misc.c 1.2 +21 -19 ports/shells/zsh+euc_hack/files/patch-Src::Zle::zle_move.c From owner-cvs-all@FreeBSD.ORG Wed Aug 2 07:34:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DEC2816A4DF; Wed, 2 Aug 2006 07:34:55 +0000 (UTC) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E82A43D70; Wed, 2 Aug 2006 07:34:51 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k727YpDF014151; Wed, 2 Aug 2006 07:34:51 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k727Yp2U014150; Wed, 2 Aug 2006 07:34:51 GMT (envelope-from davidxu) Message-Id: <200608020734.k727Yp2U014150@repoman.freebsd.org> From: David Xu Date: Wed, 2 Aug 2006 07:34: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/kern kern_time.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, 02 Aug 2006 07:34:56 -0000 davidxu 2006-08-02 07:34:51 UTC FreeBSD src repository Modified files: sys/kern kern_time.c Log: INT_MAX is defined in file sys/limits.h, include the file now. Revision Changes Path 1.130 +1 -0 src/sys/kern/kern_time.c From owner-cvs-all@FreeBSD.ORG Wed Aug 2 07:38:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D57D816A4DA; Wed, 2 Aug 2006 07:38:59 +0000 (UTC) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 919FF43D45; Wed, 2 Aug 2006 07:38:59 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k727cxmh014411; Wed, 2 Aug 2006 07:38:59 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k727cxVb014410; Wed, 2 Aug 2006 07:38:59 GMT (envelope-from davidxu) Message-Id: <200608020738.k727cxVb014410@repoman.freebsd.org> From: David Xu Date: Wed, 2 Aug 2006 07:38: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/sys sysproto.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, 02 Aug 2006 07:38:59 -0000 davidxu 2006-08-02 07:38:59 UTC FreeBSD src repository Modified files: sys/sys sysproto.h Log: don't include sys/thr.h and sys/umtx.h, it is unnecessary. Revision Changes Path 1.199 +0 -3 src/sys/sys/sysproto.h From owner-cvs-all@FreeBSD.ORG Wed Aug 2 07:41:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24F3D16A4DE; Wed, 2 Aug 2006 07:41:25 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from sippysoft.com (gk.360sip.com [72.236.70.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D13043D53; Wed, 2 Aug 2006 07:41:24 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.1.56] ([204.244.149.125]) (authenticated bits=0) by sippysoft.com (8.13.6/8.13.6) with ESMTP id k727fK9N021420 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 2 Aug 2006 00:41:22 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-ID: <44D05705.1020202@FreeBSD.org> Date: Wed, 02 Aug 2006 00:40:53 -0700 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: Christian Brueffer References: <200608020702.k7272Jck011404@repoman.freebsd.org> In-Reply-To: <200608020702.k7272Jck011404@repoman.freebsd.org> Content-Type: text/plain; charset=KOI8-U; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man4/man4.powerpc powermac_nvram.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, 02 Aug 2006 07:41:25 -0000 Thanks! -Maxim Christian Brueffer wrote: > brueffer 2006-08-02 07:02:19 UTC > > FreeBSD src repository > > Modified files: > share/man/man4/man4.powerpc powermac_nvram.4 > Log: > Cleanup and add our standard SYNOPSIS section. > > Revision Changes Path > 1.2 +16 -4 src/share/man/man4/man4.powerpc/powermac_nvram.4 > > From owner-cvs-all@FreeBSD.ORG Wed Aug 2 07:50:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7766116A4DD; Wed, 2 Aug 2006 07:50:36 +0000 (UTC) (envelope-from stefan@fafoe.narf.at) Received: from viefep11-int.chello.at (viefep13-int.chello.at [213.46.255.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C3A343D7B; Wed, 2 Aug 2006 07:50:28 +0000 (GMT) (envelope-from stefan@fafoe.narf.at) Received: from viefep33-int.chello.at ([213.47.85.26]) by viefep11-int.chello.at (InterMail vM.6.01.05.04 201-2131-123-105-20051025) with ESMTP id <20060802075027.INBA4985.viefep11-int.chello.at@viefep33-int.chello.at>; Wed, 2 Aug 2006 09:50:27 +0200 Received: from wombat.fafoe.narf.at ([213.47.85.26]) by viefep33-int.chello.at (InterMail vG.2.02.00.00 201-2161-120-101-20051020) with ESMTP id <20060802075026.SGLE10014.viefep33-int.chello.at@wombat.fafoe.narf.at>; Wed, 2 Aug 2006 09:50:26 +0200 Received: by wombat.fafoe.narf.at (Postfix, from userid 1001) id 9BA53BC75; Wed, 2 Aug 2006 09:50:25 +0200 (CEST) Date: Wed, 2 Aug 2006 09:50:25 +0200 From: Stefan Farfeleder To: David Xu Message-ID: <20060802075024.GA14099@wombat.fafoe.narf.at> References: <200608020738.k727cxVb014410@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200608020738.k727cxVb014410@repoman.freebsd.org> User-Agent: Mutt/1.5.12-2006-07-14 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys sysproto.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, 02 Aug 2006 07:50:36 -0000 On Wed, Aug 02, 2006 at 07:38:59AM +0000, David Xu wrote: > davidxu 2006-08-02 07:38:59 UTC > > FreeBSD src repository > > Modified files: > sys/sys sysproto.h > Log: > don't include sys/thr.h and sys/umtx.h, it is unnecessary. This file is generated by makesyscalls.sh. You should rather modify the script. From owner-cvs-all@FreeBSD.ORG Wed Aug 2 07:52:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from [127.0.0.1] (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 82A0716A4E2; Wed, 2 Aug 2006 07:52:47 +0000 (UTC) (envelope-from davidxu@freebsd.org) Message-ID: <44D059CF.7060403@freebsd.org> Date: Wed, 02 Aug 2006 15:52:47 +0800 From: David Xu User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.13) Gecko/20060725 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Stefan Farfeleder References: <200608020738.k727cxVb014410@repoman.freebsd.org> <20060802075024.GA14099@wombat.fafoe.narf.at> In-Reply-To: <20060802075024.GA14099@wombat.fafoe.narf.at> Content-Type: text/plain; charset=us-ascii; 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/sys sysproto.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, 02 Aug 2006 07:52:49 -0000 Stefan Farfeleder wrote: > On Wed, Aug 02, 2006 at 07:38:59AM +0000, David Xu wrote: > >>davidxu 2006-08-02 07:38:59 UTC >> >> FreeBSD src repository >> >> Modified files: >> sys/sys sysproto.h >> Log: >> don't include sys/thr.h and sys/umtx.h, it is unnecessary. > > > This file is generated by makesyscalls.sh. You should rather modify the > script. > > OK, I will fix it, I forgot that it is a generated file. ;-) From owner-cvs-all@FreeBSD.ORG Wed Aug 2 08:09:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B2D116A4DD; Wed, 2 Aug 2006 08:09:27 +0000 (UTC) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5940343D46; Wed, 2 Aug 2006 08:09:27 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7289RlQ017095; Wed, 2 Aug 2006 08:09:27 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7289RRs017094; Wed, 2 Aug 2006 08:09:27 GMT (envelope-from davidxu) Message-Id: <200608020809.k7289RRs017094@repoman.freebsd.org> From: David Xu Date: Wed, 2 Aug 2006 08:09: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/sys/kern makesyscalls.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, 02 Aug 2006 08:09:27 -0000 davidxu 2006-08-02 08:09:25 UTC FreeBSD src repository Modified files: sys/kern makesyscalls.sh Log: Don't include sys/thr.h and umtx.h in sys/sysproto.h, it is unnecessary. Revision Changes Path 1.64 +1 -3 src/sys/kern/makesyscalls.sh From owner-cvs-all@FreeBSD.ORG Wed Aug 2 08:12:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F6D016A4E2; Wed, 2 Aug 2006 08:12:12 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FC4F43D49; Wed, 2 Aug 2006 08:12:12 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k728CCUa017435; Wed, 2 Aug 2006 08:12:12 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k728CC8k017434; Wed, 2 Aug 2006 08:12:12 GMT (envelope-from novel) Message-Id: <200608020812.k728CC8k017434@repoman.freebsd.org> From: Roman Bogorodskiy Date: Wed, 2 Aug 2006 08:12: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 Makefile ports/devel/libcoyotl Makefile distinfo pkg-descr pkg-plist ports/devel/libcoyotl/files patch-test-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: Wed, 02 Aug 2006 08:12:12 -0000 novel 2006-08-02 08:12:12 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/libcoyotl Makefile distinfo pkg-descr pkg-plist devel/libcoyotl/files patch-test-Makefile.in Log: The Coyotl library collects several C++ tools that have proven useful in many of my programs, but which aren't "big enough" to warrant an individual library. Key features of Coyotl include: -- A polymorphic collection of the best psuedorandom number generators, including the Mersenne Twister and Marsaglia's favorites. -- Utilities for floating-point numbers, including additional functions for trigonometry, least common multiple, greatest common denominator, rounding, and other purposes. -- A simple cross-platform command-line parser. -- A framework for generating random rectangular mazes. -- A template for fixed-point math based on different integer sizes and decimal point locations. -- Templatized sorting utilities (designed before Std. C++'s , but still useful) -- Validation tools for "Design by Contract" programming. WWW: http://www.coyotegulch.com/products/libcoyotl/index.html PR: ports/101209 Submitted by: trasz Revision Changes Path 1.2383 +1 -0 ports/devel/Makefile 1.1 +22 -0 ports/devel/libcoyotl/Makefile (new) 1.1 +3 -0 ports/devel/libcoyotl/distinfo (new) 1.1 +12 -0 ports/devel/libcoyotl/files/patch-test-Makefile.in (new) 1.1 +19 -0 ports/devel/libcoyotl/pkg-descr (new) 1.1 +23 -0 ports/devel/libcoyotl/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 2 08:12:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F43416A4DD; Wed, 2 Aug 2006 08:12:33 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C01443D45; Wed, 2 Aug 2006 08:12:33 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k728CXw0017496; Wed, 2 Aug 2006 08:12:33 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k728CXZO017495; Wed, 2 Aug 2006 08:12:33 GMT (envelope-from novel) Message-Id: <200608020812.k728CXZO017495@repoman.freebsd.org> From: Roman Bogorodskiy Date: Wed, 2 Aug 2006 08:12: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: Wed, 02 Aug 2006 08:12:33 -0000 novel 2006-08-02 08:12:33 UTC FreeBSD ports repository Modified files: . modules Log: libcoyotl --> ports/devel/libcoyotl Revision Changes Path 1.15860 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 2 08:14:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 545FB16A4DA; Wed, 2 Aug 2006 08:14:04 +0000 (UTC) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FCB943D68; Wed, 2 Aug 2006 08:14:01 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k728E11S017596; Wed, 2 Aug 2006 08:14:01 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k728E1SB017595; Wed, 2 Aug 2006 08:14:01 GMT (envelope-from davidxu) Message-Id: <200608020814.k728E1SB017595@repoman.freebsd.org> From: David Xu Date: Wed, 2 Aug 2006 08:14: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/sys syscall.h syscall.mk sysproto.h src/sys/kern init_sysent.c 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: Wed, 02 Aug 2006 08:14:04 -0000 davidxu 2006-08-02 08:14:01 UTC FreeBSD src repository Modified files: sys/sys syscall.h syscall.mk sysproto.h sys/kern init_sysent.c syscalls.c Log: Regenerate. Revision Changes Path 1.216 +0 -0 src/sys/kern/init_sysent.c 1.200 +0 -0 src/sys/kern/syscalls.c 1.197 +0 -0 src/sys/sys/syscall.h 1.152 +0 -0 src/sys/sys/syscall.mk 1.200 +0 -0 src/sys/sys/sysproto.h From owner-cvs-all@FreeBSD.ORG Wed Aug 2 08:25:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFA1716A4E5; Wed, 2 Aug 2006 08:25:04 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9608843D58; Wed, 2 Aug 2006 08:25:04 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k728P4Ob018231; Wed, 2 Aug 2006 08:25:04 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k728P4J0018230; Wed, 2 Aug 2006 08:25:04 GMT (envelope-from rafan) Message-Id: <200608020825.k728P4J0018230@repoman.freebsd.org> From: Rong-En Fan Date: Wed, 2 Aug 2006 08:25: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/devel/ocaml-classes Makefile pkg-plist ports/devel/ocaml-classes/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, 02 Aug 2006 08:25:05 -0000 rafan 2006-08-02 08:25:04 UTC FreeBSD ports repository Modified files: devel/ocaml-classes Makefile pkg-plist devel/ocaml-classes/files patch-Makefile Log: - Respect CFLAGS, PREFIX - Add missing RUN_DEPENDS on ocaml - Pass maintainership to submitter PR: ports/101148 Submitted by: Stanislav Sedov Revision Changes Path 1.7 +3 -1 ports/devel/ocaml-classes/Makefile 1.2 +29 -9 ports/devel/ocaml-classes/files/patch-Makefile 1.3 +2 -2 ports/devel/ocaml-classes/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 2 08:36:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCC7316A4DE; Wed, 2 Aug 2006 08:36:15 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70FA043D46; Wed, 2 Aug 2006 08:36:15 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k728aF3n018784; Wed, 2 Aug 2006 08:36:15 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k728aFYd018783; Wed, 2 Aug 2006 08:36:15 GMT (envelope-from pav) Message-Id: <200608020836.k728aFYd018783@repoman.freebsd.org> From: Pav Lucistnik Date: Wed, 2 Aug 2006 08:36: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/platforms/amd64 motherboards.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, 02 Aug 2006 08:36:16 -0000 pav 2006-08-02 08:36:15 UTC FreeBSD doc repository Modified files: en/platforms/amd64 motherboards.sgml Log: Update Asus A8N-E entry for 6.1-RELEASE PR: www/100412 Submitted by: Bengt Ahlgre Revision Changes Path 1.86 +7 -6 www/en/platforms/amd64/motherboards.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 2 08:43:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92A3216A4DA; Wed, 2 Aug 2006 08:43:59 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3350C43D46; Wed, 2 Aug 2006 08:43:59 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k728hxS0019218; Wed, 2 Aug 2006 08:43:59 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k728hxBT019217; Wed, 2 Aug 2006 08:43:59 GMT (envelope-from novel) Message-Id: <200608020843.k728hxBT019217@repoman.freebsd.org> From: Roman Bogorodskiy Date: Wed, 2 Aug 2006 08:43: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/devel Makefile ports/devel/libevocosm Makefile distinfo pkg-descr pkg-plist ports/devel/libevocosm/files patch-funcopt-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: Wed, 02 Aug 2006 08:43:59 -0000 novel 2006-08-02 08:43:58 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/libevocosm Makefile distinfo pkg-descr pkg-plist devel/libevocosm/files patch-funcopt-Makefile.in Log: Evocosm is a set of classes that abstract the fundamental components of an evolutionary algorithm: -- Random Numbers -- Validation -- Floating- Point Chromosomes -- Roulette Wheels -- Organisms -- Fitness Landscapes -- Evocosms -- Fitness Scaling -- Migration -- Selecting Survivors -- Reproduction -- Mutation Operators WWW: http://www.coyotegulch.com/products/libevocosm/index.html PR: ports/101210 Submitted by: trasz Revision Changes Path 1.2384 +1 -0 ports/devel/Makefile 1.1 +23 -0 ports/devel/libevocosm/Makefile (new) 1.1 +3 -0 ports/devel/libevocosm/distinfo (new) 1.1 +12 -0 ports/devel/libevocosm/files/patch-funcopt-Makefile.in (new) 1.1 +17 -0 ports/devel/libevocosm/pkg-descr (new) 1.1 +23 -0 ports/devel/libevocosm/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 2 08:44:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7741816A5A4; Wed, 2 Aug 2006 08:44:17 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3457843D45; Wed, 2 Aug 2006 08:44:17 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k728iHRD019292; Wed, 2 Aug 2006 08:44:17 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k728iHPM019291; Wed, 2 Aug 2006 08:44:17 GMT (envelope-from novel) Message-Id: <200608020844.k728iHPM019291@repoman.freebsd.org> From: Roman Bogorodskiy Date: Wed, 2 Aug 2006 08:44: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: 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, 02 Aug 2006 08:44:17 -0000 novel 2006-08-02 08:44:17 UTC FreeBSD ports repository Modified files: . modules Log: libevocosm --> ports/devel/libevocosm Revision Changes Path 1.15861 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 2 08:45:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1BA6516A4DD; Wed, 2 Aug 2006 08:45:15 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E57D43D5D; Wed, 2 Aug 2006 08:45:14 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k728jEWh019369; Wed, 2 Aug 2006 08:45:14 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k728jE7i019368; Wed, 2 Aug 2006 08:45:14 GMT (envelope-from pav) Message-Id: <200608020845.k728jE7i019368@repoman.freebsd.org> From: Pav Lucistnik Date: Wed, 2 Aug 2006 08:45: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/platforms/amd64 motherboards.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, 02 Aug 2006 08:45:15 -0000 pav 2006-08-02 08:45:14 UTC FreeBSD doc repository Modified files: en/platforms/amd64 motherboards.sgml Log: Add entry for Gigabyte GA-K8NE v2.0 PR: www/101067 Submitted by: Alexander Konovalenko Revision Changes Path 1.87 +10 -1 www/en/platforms/amd64/motherboards.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 2 09:13:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1393216A4DA; Wed, 2 Aug 2006 09:13:34 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDEFC43D46; Wed, 2 Aug 2006 09:13:33 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k729DXUi029750; Wed, 2 Aug 2006 09:13:33 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k729DXlx029749; Wed, 2 Aug 2006 09:13:33 GMT (envelope-from ehaupt) Message-Id: <200608020913.k729DXlx029749@repoman.freebsd.org> From: Emanuel Haupt Date: Wed, 2 Aug 2006 09:13: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/games Makefile ports/games/agame Makefile distinfo pkg-descr pkg-plist ports/games/agame/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, 02 Aug 2006 09:13:34 -0000 ehaupt 2006-08-02 09:13:33 UTC FreeBSD ports repository Modified files: games Makefile Added files: games/agame Makefile distinfo pkg-descr pkg-plist games/agame/files patch-Makefile Log: Add agame, a simple tetris-like game. PR: 101171 Submitted by: Dmitry Marakasov Revision Changes Path 1.1019 +1 -0 ports/games/Makefile 1.1 +45 -0 ports/games/agame/Makefile (new) 1.1 +3 -0 ports/games/agame/distinfo (new) 1.1 +29 -0 ports/games/agame/files/patch-Makefile (new) 1.1 +6 -0 ports/games/agame/pkg-descr (new) 1.1 +24 -0 ports/games/agame/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 2 09:13:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 625FA16A4DA; Wed, 2 Aug 2006 09:13:47 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CEBE43D73; Wed, 2 Aug 2006 09:13:47 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k729DkMZ029794; Wed, 2 Aug 2006 09:13:47 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k729DkEB029793; Wed, 2 Aug 2006 09:13:46 GMT (envelope-from ehaupt) Message-Id: <200608020913.k729DkEB029793@repoman.freebsd.org> From: Emanuel Haupt Date: Wed, 2 Aug 2006 09:13: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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 02 Aug 2006 09:13:47 -0000 ehaupt 2006-08-02 09:13:46 UTC FreeBSD ports repository Modified files: . modules Log: agame --> ports/games/agame Revision Changes Path 1.15862 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 2 09:37:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DEAF016A4DD; Wed, 2 Aug 2006 09:37:47 +0000 (UTC) (envelope-from mich@FreeBSD.org) Received: from mail2.itxmarket.com (fw.itxmarket.com [84.14.136.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id 225E243D46; Wed, 2 Aug 2006 09:37:47 +0000 (GMT) (envelope-from mich@FreeBSD.org) Received: from icommerce.fr (mich2.itxmarket.com [192.168.2.26]) by mail2.itxmarket.com (Postfix) with ESMTP id D119637BDC; Wed, 2 Aug 2006 11:37:45 +0200 (CEST) Received: by icommerce.fr (Postfix, from userid 1001) id B251222820; Wed, 2 Aug 2006 11:37:45 +0200 (CEST) Date: Wed, 2 Aug 2006 11:37:45 +0200 From: Michael Landin Hostbaek To: MANTANI Nobutaka Message-ID: <20060802093745.GO95100@mich2.itxmarket.com> Mail-Followup-To: Michael Landin Hostbaek , MANTANI Nobutaka , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200608011718.k71HIxQf018980@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200608011718.k71HIxQf018980@repoman.freebsd.org> X-Operating-System: FreeBSD 6.1-STABLE i386 X-PGP-Key: http://www.freebsdcluster.org/~mich/ User-Agent: Mutt/1.5.12-2006-07-14 Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/multimedia/libxine Makefile ports/multimedia/libxine/files patch-src:libffmpeg:libavcodec:h263.c patch-src:libffmpeg:libavcodec:mpeg12.c patch-src:libffmpeg:libavcodec:msmpeg4.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, 02 Aug 2006 09:37:48 -0000 MANTANI Nobutaka (nobutaka) writes: > nobutaka 2006-08-01 17:18:59 UTC > > FreeBSD ports repository > > Modified files: > multimedia/libxine Makefile > Added files: > multimedia/libxine/files patch-src:libffmpeg:libavcodec:h263.c > patch-src:libffmpeg:libavcodec:mpeg12.c > patch-src:libffmpeg:libavcodec:msmpeg4.c > Log: > - Fix build error with CFLAGS="-O -pipe". [1] > - Remove message about obsolete WITH_THERORA knob. [2] Still broken on 4.x: cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../include -I../../include -I../../src -I../../src/xine-engine -I../../src/xine-engine -I../../src/xine-utils -I../../src/input -I../../src/input -I../../lib -I../../lib -DXINE_LIBRARY_COMPILE -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include -D_THREAD_SAFE -I/usr/X11R6/include -mcpu=i386 -O3 -pipe -fomit-frame-pointer -malign-functions=4 -malign-loops=4 -malign-jumps=4 -mwide-multiply -mpreferred-stack-boundary=2 -fexpensive-optimizations -fschedule-insns2 -ffast-math -fno-inline-functions -Wall -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -DNDEBUG -D_REENTRANT -D_FILE_OFFSET_BITS=64 -DXINE_COMPILE -DENABLE_IPV6 -O -pipe -fno-force-addr -I/usr/local/include -I/usr/local/include/dvdread -I/usr/X11R6/include -Wformat=2 -Wno-format-zero-length -c memcpy.c -Wp,-MD,.deps/memcpy.TPlo -fPIC -DPIC -o .libs/memcpy.o In file included from ../../src/xine-engine/xine_internal.h:52, from memcpy.c:53: ../../src/xine-engine/info_helper.h:130: warning: `sentinel' attribute directive ignored In file included from memcpy.c:53: ../../src/xine-engine/xine_internal.h:436: warning: `sentinel' attribute directive ignored memcpy.c: In function `xine_probe_fast_memcpy': memcpy.c:529: syntax error before `PRIu64' gmake[3]: *** [memcpy.lo] Error 1 gmake[3]: Leaving directory `/work/a/ports/multimedia/libxine/work/xine-lib-1.1.2/src/xine-utils' /mich From owner-cvs-all@FreeBSD.ORG Wed Aug 2 09:54:02 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38E8916A4DF; Wed, 2 Aug 2006 09:54:02 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E560A43D45; Wed, 2 Aug 2006 09:54:01 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k729s1a9031983; Wed, 2 Aug 2006 09:54:01 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k729s17j031982; Wed, 2 Aug 2006 09:54:01 GMT (envelope-from erwin) Message-Id: <200608020954.k729s17j031982@repoman.freebsd.org> From: Erwin Lansing Date: Wed, 2 Aug 2006 09: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/www/phpmyfaq 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, 02 Aug 2006 09:54:02 -0000 erwin 2006-08-02 09:54:01 UTC FreeBSD ports repository Modified files: www/phpmyfaq Makefile pkg-plist Log: Fix PLIST PR: 101250 Submitted by: pointyhat via Babak Farrokhi (maintainer) Revision Changes Path 1.16 +1 -0 ports/www/phpmyfaq/Makefile 1.4 +1 -0 ports/www/phpmyfaq/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 2 10:06:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D6F8D16A4DE; Wed, 2 Aug 2006 10:06:15 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EE7943D46; Wed, 2 Aug 2006 10:06:15 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72A6Fri033864; Wed, 2 Aug 2006 10:06:15 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72A6F6v033863; Wed, 2 Aug 2006 10:06:15 GMT (envelope-from sat) Message-Id: <200608021006.k72A6F6v033863@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 2 Aug 2006 10:06: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 Makefile ports/textproc/p5-Plucene-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: Wed, 02 Aug 2006 10:06:16 -0000 sat 2006-08-02 10:06:15 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/p5-Plucene-Simple Makefile distinfo pkg-descr pkg-plist Log: Add port textproc/p5-Plucene-Simple: This provides a simple interface to Plucene. Plucene is large and multi- featured, and it expected that users will subclass it, and tie all the pieces together to suit their own needs. Plucene::Simple is, therefore, just one way to use Plucene. It's not expected that it will do exactly what *you* want, but you can always use it as an example of how to build your own interface. WWW: http://search.cpan.org/dist/PluceneSimple/ Justification: socialtext dependency Quirks: 1/6 test fails Revision Changes Path 1.1039 +1 -0 ports/textproc/Makefile 1.1 +31 -0 ports/textproc/p5-Plucene-Simple/Makefile (new) 1.1 +3 -0 ports/textproc/p5-Plucene-Simple/distinfo (new) 1.1 +8 -0 ports/textproc/p5-Plucene-Simple/pkg-descr (new) 1.1 +2 -0 ports/textproc/p5-Plucene-Simple/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 2 10:06:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9BC4016A4DA; Wed, 2 Aug 2006 10:06:46 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6711043D46; Wed, 2 Aug 2006 10:06:45 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72A6j7R033929; Wed, 2 Aug 2006 10:06:45 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72A6j2k033928; Wed, 2 Aug 2006 10:06:45 GMT (envelope-from sat) Message-Id: <200608021006.k72A6j2k033928@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 2 Aug 2006 10:06: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: 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, 02 Aug 2006 10:06:46 -0000 sat 2006-08-02 10:06:45 UTC FreeBSD ports repository Modified files: . modules Log: p5-Plucene-Simple --> ports/textproc/p5-Plucene-Simple Revision Changes Path 1.15863 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 2 10:18:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4496F16A500; Wed, 2 Aug 2006 10:18:19 +0000 (UTC) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6643E43D81; Wed, 2 Aug 2006 10:18:15 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72AIFg2034457; Wed, 2 Aug 2006 10:18:15 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72AIFx5034456; Wed, 2 Aug 2006 10:18:15 GMT (envelope-from vs) Message-Id: <200608021018.k72AIFx5034456@repoman.freebsd.org> From: Volker Stolz Date: Wed, 2 Aug 2006 10: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/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, 02 Aug 2006 10:18:19 -0000 vs 2006-08-02 10:18:14 UTC FreeBSD ports repository Modified files: astro/xearth/files freebsd.committers.markers Log: Change continent. Now that might explain why I'm lagging behind with my PRs... Revision Changes Path 1.306 +2 -2 ports/astro/xearth/files/freebsd.committers.markers From owner-cvs-all@FreeBSD.ORG Wed Aug 2 10:19:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA20316A4E6; Wed, 2 Aug 2006 10:19:56 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A05FC43D69; Wed, 2 Aug 2006 10:19:55 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72AJtD7034580; Wed, 2 Aug 2006 10:19:55 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72AJt1k034579; Wed, 2 Aug 2006 10:19:55 GMT (envelope-from sat) Message-Id: <200608021019.k72AJt1k034579@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 2 Aug 2006 10:19: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/devel Makefile ports/devel/p5-Readonly-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: Wed, 02 Aug 2006 10:19:56 -0000 sat 2006-08-02 10:19:55 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-Readonly-XS Makefile distinfo pkg-descr pkg-plist Log: Add port devel/p5-Readonly-XS: The Readonly module (q.v.) is an effective way to create non-modifiable variables. However, it's relatively slow. The reason it's slow is that is implements the read-only-ness of variables via tied objects. This mechanism is inherently slow. Perl simply has to do a lot of work under the hood to make tied variables work. This module corrects the speed problem, at least with respect to scalar variables. When Readonly::XS is installed, Readonly uses it to access the internals of scalar variables. Instead of creating a scalar variable object and tying it, Readonly simply flips the SvREADONLY bit in the scalar's FLAGS structure. Readonly arrays and hashes are not sped up by this, since the SvREADONLY flag only works for scalars. Arrays and hashes always use the tie interface. Why implement this as a separate module? Because not everyone can use XS. Not everyone has a C compiler. Also, installations with a statically-linked perl may not want to recompile their perl binary just for this module. Rather than render Readonly.pm useless for these people, the XS portion was put into a separate module. WWW: http://search.cpan.org/dist/Readonly-XS/ Justification: socialtext dependency Revision Changes Path 1.2385 +1 -0 ports/devel/Makefile 1.1 +24 -0 ports/devel/p5-Readonly-XS/Makefile (new) 1.1 +3 -0 ports/devel/p5-Readonly-XS/distinfo (new) 1.1 +23 -0 ports/devel/p5-Readonly-XS/pkg-descr (new) 1.1 +7 -0 ports/devel/p5-Readonly-XS/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 2 10:20:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45E8016A4DA; Wed, 2 Aug 2006 10:20:28 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C6CE43D45; Wed, 2 Aug 2006 10:20:27 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72AKRlf034693; Wed, 2 Aug 2006 10:20:27 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72AKR7J034692; Wed, 2 Aug 2006 10:20:27 GMT (envelope-from sat) Message-Id: <200608021020.k72AKR7J034692@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 2 Aug 2006 10:20: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: Wed, 02 Aug 2006 10:20:28 -0000 sat 2006-08-02 10:20:27 UTC FreeBSD ports repository Modified files: . modules Log: p5-Readonly-XS --> ports/devel/p5-Readonly-XS Revision Changes Path 1.15864 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 2 10:27:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5BF2716A4DA; Wed, 2 Aug 2006 10:27:38 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20AFE43D45; Wed, 2 Aug 2006 10:27:38 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72ARckP035117; Wed, 2 Aug 2006 10:27:38 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72ARbuL035116; Wed, 2 Aug 2006 10:27:37 GMT (envelope-from novel) Message-Id: <200608021027.k72ARbuL035116@repoman.freebsd.org> From: Roman Bogorodskiy Date: Wed, 2 Aug 2006 10: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/devel Makefile ports/devel/acovea Makefile distinfo pkg-descr pkg-plist ports/devel/acovea/files patch-Makefile.in patch-libacovea-acovea.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, 02 Aug 2006 10:27:38 -0000 novel 2006-08-02 10:27:37 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/acovea Makefile distinfo pkg-descr pkg-plist devel/acovea/files patch-Makefile.in patch-libacovea-acovea.cpp Log: ACOVEA (Analysis of Compiler Options via Evolutionary Algorithm) implements a genetic algorithm to find the "best" options for compiling programs with the GNU Compiler Collection (GCC) C and C++ compilers. "Best", in this context, is defined as those options that produce the fastest executable program from a given source code. Acovea is a C++ framework that can be extended to test other programming languages and non-GCC compilers. WWW: http://www.coyotegulch.com/products/acovea/index.html PR: ports/101211 Submitted by: trasz Revision Changes Path 1.2386 +1 -0 ports/devel/Makefile 1.1 +29 -0 ports/devel/acovea/Makefile (new) 1.1 +3 -0 ports/devel/acovea/distinfo (new) 1.1 +11 -0 ports/devel/acovea/files/patch-Makefile.in (new) 1.1 +11 -0 ports/devel/acovea/files/patch-libacovea-acovea.cpp (new) 1.1 +9 -0 ports/devel/acovea/pkg-descr (new) 1.1 +41 -0 ports/devel/acovea/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 2 10:27:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 48B4016A4DD; Wed, 2 Aug 2006 10:27:54 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0201443D45; Wed, 2 Aug 2006 10:27:54 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72ARrII035162; Wed, 2 Aug 2006 10:27:53 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72ARrvU035161; Wed, 2 Aug 2006 10:27:53 GMT (envelope-from novel) Message-Id: <200608021027.k72ARrvU035161@repoman.freebsd.org> From: Roman Bogorodskiy Date: Wed, 2 Aug 2006 10:27: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: 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, 02 Aug 2006 10:27:54 -0000 novel 2006-08-02 10:27:53 UTC FreeBSD ports repository Modified files: . modules Log: acovea --> ports/devel/acovea Revision Changes Path 1.15865 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 2 10:54:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C3AE16A4DD; Wed, 2 Aug 2006 10:54:43 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0E0C43D49; Wed, 2 Aug 2006 10:54:42 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72AsgXM036499; Wed, 2 Aug 2006 10:54:42 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72AsgBY036498; Wed, 2 Aug 2006 10:54:42 GMT (envelope-from sat) Message-Id: <200608021054.k72AsgBY036498@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 2 Aug 2006 10:54: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 Makefile ports/www/p5-Template-Iterator-AlzaboWrapperCursor 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, 02 Aug 2006 10:54:43 -0000 sat 2006-08-02 10:54:42 UTC FreeBSD ports repository Modified files: www Makefile Added files: www/p5-Template-Iterator-AlzaboWrapperCursor Makefile distinfo pkg-descr pkg-plist Log: Add port www/p5-Template-Iterator-AlzaboWrapperCursor: This module allows a Class::AlzaboWrapper::Cursor object to be used as a TT2 iterator. For a cursor which returns one object at a time, the iterator simply returns one object per iteration. When the cursor returns multiple objects, the iterator returns a hash reference where the keys are the table name of the object's class in lower-case, with camel-casing turned into underscores. The values of the hash are the objects. So if the cursor returns Foo::User and Foo::Page objects, the keys are "user" and "page". WWW: http://search.cpan.org/dist/Template-Iterator-AlzaboWrapperCursor/ Justification: socialtext dependency Revision Changes Path 1.1537 +1 -0 ports/www/Makefile 1.1 +25 -0 ports/www/p5-Template-Iterator-AlzaboWrapperCursor/Makefile (new) 1.1 +3 -0 ports/www/p5-Template-Iterator-AlzaboWrapperCursor/distinfo (new) 1.1 +13 -0 ports/www/p5-Template-Iterator-AlzaboWrapperCursor/pkg-descr (new) 1.1 +3 -0 ports/www/p5-Template-Iterator-AlzaboWrapperCursor/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 2 10:55:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0521816A4E8; Wed, 2 Aug 2006 10:55:19 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE10943D49; Wed, 2 Aug 2006 10:55:18 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72AtIjN036565; Wed, 2 Aug 2006 10:55:18 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72AtI0D036564; Wed, 2 Aug 2006 10:55:18 GMT (envelope-from sat) Message-Id: <200608021055.k72AtI0D036564@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 2 Aug 2006 10:55: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: 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, 02 Aug 2006 10:55:19 -0000 sat 2006-08-02 10:55:18 UTC FreeBSD ports repository Modified files: . modules Log: p5-Template-Iterator-AlzaboWrapperCursor --> ports/www/p5-Template-Iterator-AlzaboWrapperCursor Revision Changes Path 1.15866 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 2 11:03:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40CB116A4DA; Wed, 2 Aug 2006 11:03:39 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC07D43D45; Wed, 2 Aug 2006 11:03:38 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72B3cwF038301; Wed, 2 Aug 2006 11:03:38 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72B3cKT038300; Wed, 2 Aug 2006 11:03:38 GMT (envelope-from sat) Message-Id: <200608021103.k72B3cKT038300@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 2 Aug 2006 11:03: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/textproc Makefile ports/textproc/p5-Text-Flowed 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, 02 Aug 2006 11:03:39 -0000 sat 2006-08-02 11:03:38 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/p5-Text-Flowed Makefile distinfo pkg-descr pkg-plist Log: Add port textproc/p5-Text-Flowed: This module provides functions that deals with formatting data with Content-Type 'text/plain; format=flowed' as described in RFC2646 (http://www.rfc-editor.org/rfc/rfc2646.txt). In a nutshell, format=flowed text solves the problem in plain text files where it is not known which lines can be considered a logical paragraph, enabling lines to be automatically flowed (wrapped and/or joined) as appropriate when displaying. In format=flowed, a soft newline is expressed as " \n", while hard newlines are expressed as "\n". Soft newlines can be automatically deleted or inserted as appropriate when the text is reformatted. WWW: http://search.cpan.org/dist/Text-Flowed/ Justification: socialtext dependency Revision Changes Path 1.1040 +1 -0 ports/textproc/Makefile 1.1 +21 -0 ports/textproc/p5-Text-Flowed/Makefile (new) 1.1 +3 -0 ports/textproc/p5-Text-Flowed/distinfo (new) 1.1 +13 -0 ports/textproc/p5-Text-Flowed/pkg-descr (new) 1.1 +5 -0 ports/textproc/p5-Text-Flowed/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 2 11:04:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F30F16A4DA; Wed, 2 Aug 2006 11:04:36 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E03E43D45; Wed, 2 Aug 2006 11:04:36 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72B4Z89038374; Wed, 2 Aug 2006 11:04:35 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72B4ZPh038373; Wed, 2 Aug 2006 11:04:35 GMT (envelope-from sat) Message-Id: <200608021104.k72B4ZPh038373@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 2 Aug 2006 11:04: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: Wed, 02 Aug 2006 11:04:36 -0000 sat 2006-08-02 11:04:35 UTC FreeBSD ports repository Modified files: . modules Log: p5-Text-Flowed --> ports/textproc/p5-Text-Flowed Revision Changes Path 1.15867 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 2 11:10:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9117516A4DA; Wed, 2 Aug 2006 11:10:26 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2903343D45; Wed, 2 Aug 2006 11:10:26 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72BAQGo038772; Wed, 2 Aug 2006 11:10:26 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72BAQMR038771; Wed, 2 Aug 2006 11:10:26 GMT (envelope-from bms) Message-Id: <200608021110.k72BAQMR038771@repoman.freebsd.org> From: Bruce M Simpson Date: Wed, 2 Aug 2006 11:10: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/multimedia/dirac Makefile distinfo pkg-plist ports/multimedia/dirac/files patch-doc::Makefile.in patch-doc::algorithm::Makefile.in patch-doc::api::Makefile.in patch-doc::documentation::algorithm::algorithm::Makefile.in patch-doc::documentation::algorithm::enhancements::Makefile.in patch-doc::documentation::algorithm::global_motion::Makefile.in patch-doc::documentation::algorithm::upconversion::Makefile.in patch-doc::documentation::code::api::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: Wed, 02 Aug 2006 11:10:26 -0000 bms 2006-08-02 11:10:25 UTC FreeBSD ports repository (src committer) Modified files: multimedia/dirac Makefile distinfo pkg-plist Added files: multimedia/dirac/files patch-doc::Makefile.in patch-doc::documentation::algorithm::algorithm::Makefile.in patch-doc::documentation::algorithm::enhancements::Makefile.in patch-doc::documentation::algorithm::global_motion::Makefile.in patch-doc::documentation::algorithm::upconversion::Makefile.in patch-doc::documentation::code::api::Makefile.in patch-doc::documentation::code::programmers_guide::Makefile.in patch-doc::documentation::tools::diagnostics::Makefile.in Removed files: multimedia/dirac/files patch-doc::algorithm::Makefile.in patch-doc::api::Makefile.in patch-doc::programmers::Makefile.in Log: Update dirac to version 0.6.0. Fix PORTDOCS. Drop maintainership; regrettably I do not have the time or resources to commit to maintenance of this port in future. PR: ports/101237 Revision Changes Path 1.7 +10 -5 ports/multimedia/dirac/Makefile 1.5 +3 -3 ports/multimedia/dirac/distinfo 1.1 +15 -0 ports/multimedia/dirac/files/patch-doc::Makefile.in (new) 1.2 +0 -13 ports/multimedia/dirac/files/patch-doc::algorithm::Makefile.in (dead) 1.2 +0 -11 ports/multimedia/dirac/files/patch-doc::api::Makefile.in (dead) 1.1 +15 -0 ports/multimedia/dirac/files/patch-doc::documentation::algorithm::algorithm::Makefile.in (new) 1.1 +11 -0 ports/multimedia/dirac/files/patch-doc::documentation::algorithm::enhancements::Makefile.in (new) 1.1 +13 -0 ports/multimedia/dirac/files/patch-doc::documentation::algorithm::global_motion::Makefile.in (new) 1.1 +13 -0 ports/multimedia/dirac/files/patch-doc::documentation::algorithm::upconversion::Makefile.in (new) 1.1 +11 -0 ports/multimedia/dirac/files/patch-doc::documentation::code::api::Makefile.in (new) 1.1 +13 -0 ports/multimedia/dirac/files/patch-doc::documentation::code::programmers_guide::Makefile.in (new) 1.1 +13 -0 ports/multimedia/dirac/files/patch-doc::documentation::tools::diagnostics::Makefile.in (new) 1.2 +0 -11 ports/multimedia/dirac/files/patch-doc::programmers::Makefile.in (dead) 1.4 +1617 -5 ports/multimedia/dirac/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 2 11:13:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA72A16A4DD; Wed, 2 Aug 2006 11:13:50 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82F8543D6A; Wed, 2 Aug 2006 11:13:50 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72BDo1c039097; Wed, 2 Aug 2006 11:13:50 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72BDo3e039096; Wed, 2 Aug 2006 11:13:50 GMT (envelope-from sat) Message-Id: <200608021113.k72BDo3e039096@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 2 Aug 2006 11:13: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/devel Makefile ports/devel/p5-Readonly-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: Wed, 02 Aug 2006 11:13:50 -0000 sat 2006-08-02 11:13:50 UTC FreeBSD ports repository Modified files: . modules . MOVED devel Makefile Removed files: devel/p5-Readonly-XS Makefile distinfo pkg-descr pkg-plist Log: devel/p5-Readonly-XS is included in devel/p5-Readonly Reported by: skv Pointy hat to: sat Revision Changes Path 1.15868 +0 -1 CVSROOT/modules 1.1107 +2 -1 ports/MOVED 1.2387 +0 -1 ports/devel/Makefile 1.2 +0 -24 ports/devel/p5-Readonly-XS/Makefile (dead) 1.2 +0 -3 ports/devel/p5-Readonly-XS/distinfo (dead) 1.2 +0 -23 ports/devel/p5-Readonly-XS/pkg-descr (dead) 1.2 +0 -7 ports/devel/p5-Readonly-XS/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Wed Aug 2 11:20:06 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F07A16A4DA; Wed, 2 Aug 2006 11:20:06 +0000 (UTC) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43E8E43D46; Wed, 2 Aug 2006 11:20:06 +0000 (GMT) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72BK6dP039332; Wed, 2 Aug 2006 11:20:06 GMT (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72BK6uF039331; Wed, 2 Aug 2006 11:20:06 GMT (envelope-from knu) Message-Id: <200608021120.k72BK6uF039331@repoman.freebsd.org> From: Akinori MUSHA Date: Wed, 2 Aug 2006 11:20: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/misc/inplace 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, 02 Aug 2006 11:20:06 -0000 knu 2006-08-02 11:20:05 UTC FreeBSD ports repository Modified files: misc/inplace Makefile distinfo Log: Update to 1.1.0. - Add -D/--debug and adjust the verbosity level. - Show before and after file sizes when -v is specified. - Introduce a configuration file in which command aliases can be defined. - Add -i/--preserve-inode so inode numbers are preserved even when -b or -s is specified. Revision Changes Path 1.7 +2 -2 ports/misc/inplace/Makefile 1.6 +3 -3 ports/misc/inplace/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 2 11:22:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 350CC16A4DA; Wed, 2 Aug 2006 11:22:46 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E007B43D46; Wed, 2 Aug 2006 11:22:45 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72BMjTk039592; Wed, 2 Aug 2006 11:22:45 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72BMjxr039591; Wed, 2 Aug 2006 11:22:45 GMT (envelope-from bms) Message-Id: <200608021122.k72BMjxr039591@repoman.freebsd.org> From: Bruce M Simpson Date: Wed, 2 Aug 2006 11:22: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/libpcap/files patchbase-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: Wed, 02 Aug 2006 11:22:46 -0000 bms 2006-08-02 11:22:45 UTC FreeBSD ports repository (src committer) Modified files: net/libpcap/files patchbase-Makefile.in Log: Fix port for values of LIBPCAP_OVERWRITE_BASE which are defined. PR: ports/95060 Submitted by: Craig Leres Revision Changes Path 1.2 +18 -10 ports/net/libpcap/files/patchbase-Makefile.in From owner-cvs-all@FreeBSD.ORG Wed Aug 2 11:37:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1809D16A4DD; Wed, 2 Aug 2006 11:37:29 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D414543D45; Wed, 2 Aug 2006 11:37:28 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72BbSKS040298; Wed, 2 Aug 2006 11:37:28 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72BbStL040297; Wed, 2 Aug 2006 11:37:28 GMT (envelope-from sat) Message-Id: <200608021137.k72BbStL040297@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 2 Aug 2006 11:37: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 Makefile ports/net/p5-URI-FromHash 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, 02 Aug 2006 11:37:29 -0000 sat 2006-08-02 11:37:28 UTC FreeBSD ports repository Modified files: net Makefile Added files: net/p5-URI-FromHash Makefile distinfo pkg-descr pkg-plist Log: Add port net/p5-URI-FromHash: This module provides a simple functional "named parameters" style interface for creating URIs. Underneath the hood it uses URI.pm, though because of the simplified interface it may not support all possible options for all types of URIs. It was created for the common case where you simply want to have a simple interface for creating syntactically correct URIs from known components (like a path and query string). Doing this using the native URI.pm interface is rather tedious, requiring a number of method calls, which is particularly ugly when done inside a templating system such as Mason or TT2. WWW: http://search.cpan.org/dist/URI-FromHash/ Justification: socialtext dependency Revision Changes Path 1.1709 +1 -0 ports/net/Makefile 1.1 +24 -0 ports/net/p5-URI-FromHash/Makefile (new) 1.1 +3 -0 ports/net/p5-URI-FromHash/distinfo (new) 1.1 +13 -0 ports/net/p5-URI-FromHash/pkg-descr (new) 1.1 +2 -0 ports/net/p5-URI-FromHash/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 2 11:38:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 794AC16A4DA; Wed, 2 Aug 2006 11:38:03 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 315D143D46; Wed, 2 Aug 2006 11:38:03 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72Bc3pl040352; Wed, 2 Aug 2006 11:38:03 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72Bc3Fg040351; Wed, 2 Aug 2006 11:38:03 GMT (envelope-from sat) Message-Id: <200608021138.k72Bc3Fg040351@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 2 Aug 2006 11: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: 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, 02 Aug 2006 11:38:03 -0000 sat 2006-08-02 11:38:03 UTC FreeBSD ports repository Modified files: . modules Log: p5-URI-FromHash --> ports/net/p5-URI-FromHash Revision Changes Path 1.15869 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 2 11:43:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 856EB16A4DD; Wed, 2 Aug 2006 11:43:52 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47B0043D45; Wed, 2 Aug 2006 11:43:52 +0000 (GMT) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72Bhq9e040697; Wed, 2 Aug 2006 11:43:52 GMT (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72Bhq3e040696; Wed, 2 Aug 2006 11:43:52 GMT (envelope-from jkoshy) Message-Id: <200608021143.k72Bhq3e040696@repoman.freebsd.org> From: Joseph Koshy Date: Wed, 2 Aug 2006 11:43: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 Makefile ports/devel/tre Makefile distinfo pkg-descr pkg-plist ports/devel/tre/files patch-Makefile.in patch-tests_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: Wed, 02 Aug 2006 11:43:52 -0000 jkoshy 2006-08-02 11:43:52 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/tre Makefile distinfo pkg-descr pkg-plist devel/tre/files patch-Makefile.in patch-tests_Makefile.in Log: Add a port for 'tre', an LGPL'ed regex library. From the port's description: TRE is a lightweight, robust, and efficient POSIX compliant regexp matching library supporting: - approximate (fuzzy) matching, - strict standards conformance, - predicable and modest memory consumption, - wide-character and multibyte character support, - binary pattern and data support, - thread-safe implementation. At the core of TRE is a new algorithm for regular expression matching with submatch addressing. The algorithm uses linear worst-case time in the length of the text being searched, and quadratic worst-case time in the length of the used regular expression. Revision Changes Path 1.2388 +1 -0 ports/devel/Makefile 1.1 +35 -0 ports/devel/tre/Makefile (new) 1.1 +3 -0 ports/devel/tre/distinfo (new) 1.1 +11 -0 ports/devel/tre/files/patch-Makefile.in (new) 1.1 +11 -0 ports/devel/tre/files/patch-tests_Makefile.in (new) 1.1 +15 -0 ports/devel/tre/pkg-descr (new) 1.1 +10 -0 ports/devel/tre/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 2 11:44:09 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB6FE16A4DA; Wed, 2 Aug 2006 11:44:09 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7083E43D45; Wed, 2 Aug 2006 11:44:09 +0000 (GMT) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72Bi9VN040772; Wed, 2 Aug 2006 11:44:09 GMT (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72Bi98u040771; Wed, 2 Aug 2006 11:44:09 GMT (envelope-from jkoshy) Message-Id: <200608021144.k72Bi98u040771@repoman.freebsd.org> From: Joseph Koshy Date: Wed, 2 Aug 2006 11:44: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: Wed, 02 Aug 2006 11:44:09 -0000 jkoshy 2006-08-02 11:44:09 UTC FreeBSD ports repository Modified files: . modules Log: tre --> ports/devel/tre Revision Changes Path 1.15870 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 2 12:06:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7153616A4E0; Wed, 2 Aug 2006 12:06:03 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 270AD43D4C; Wed, 2 Aug 2006 12:06:03 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72C63fc043067; Wed, 2 Aug 2006 12:06:03 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72C620S043066; Wed, 2 Aug 2006 12:06:02 GMT (envelope-from erwin) Message-Id: <200608021206.k72C620S043066@repoman.freebsd.org> From: Erwin Lansing Date: Wed, 2 Aug 2006 12: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/sysutils/ldap-account-manager 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, 02 Aug 2006 12:06:03 -0000 erwin 2006-08-02 12:06:02 UTC FreeBSD ports repository Modified files: sysutils/ldap-account-manager Makefile pkg-plist Log: Fix PLIST PR: 101255 Submitted by: erwin, pointyhat Approved by: maintainer Revision Changes Path 1.21 +1 -0 ports/sysutils/ldap-account-manager/Makefile 1.13 +3 -1 ports/sysutils/ldap-account-manager/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 2 12:10:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76F3C16A4E2; Wed, 2 Aug 2006 12:10:03 +0000 (UTC) (envelope-from mich@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3159243D68; Wed, 2 Aug 2006 12:10:00 +0000 (GMT) (envelope-from mich@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72CA0X3043259; Wed, 2 Aug 2006 12:10:00 GMT (envelope-from mich@repoman.freebsd.org) Received: (from mich@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72C9x6P043258; Wed, 2 Aug 2006 12:09:59 GMT (envelope-from mich) Message-Id: <200608021209.k72C9x6P043258@repoman.freebsd.org> From: Michael Landin Hostbaek Date: Wed, 2 Aug 2006 12: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/audio/amarok Makefile distinfo pkg-plist ports/audio/amarok/files extra-amarok_src_expression.h patch-amarok_src_lastfm.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, 02 Aug 2006 12:10:03 -0000 mich 2006-08-02 12:09:59 UTC FreeBSD ports repository Modified files: audio/amarok Makefile distinfo pkg-plist Added files: audio/amarok/files extra-amarok_src_expression.h patch-amarok_src_lastfm.cpp Log: - update to -> 1.4.1 - remove libvisual support, as only libvis-0.4 is supported - add extra patch for 4.x build Revision Changes Path 1.50 +9 -14 ports/audio/amarok/Makefile 1.16 +3 -3 ports/audio/amarok/distinfo 1.1 +16 -0 ports/audio/amarok/files/extra-amarok_src_expression.h (new) 1.1 +14 -0 ports/audio/amarok/files/patch-amarok_src_lastfm.cpp (new) 1.19 +245 -24 ports/audio/amarok/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 2 12:16:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 42F3916A4DF; Wed, 2 Aug 2006 12:16:49 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3EBA43D73; Wed, 2 Aug 2006 12:16:47 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72CGlpb043637; Wed, 2 Aug 2006 12:16:47 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72CGl9L043636; Wed, 2 Aug 2006 12:16:47 GMT (envelope-from pav) Message-Id: <200608021216.k72CGl9L043636@repoman.freebsd.org> From: Pav Lucistnik Date: Wed, 2 Aug 2006 12:16: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/Mk bsd.sites.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: Wed, 02 Aug 2006 12:16:49 -0000 pav 2006-08-02 12:16:47 UTC FreeBSD ports repository Modified files: Mk bsd.sites.mk Log: - Add MASTER_SITE_RUBYFORGE Submitted by: Rui Lopes over irc Revision Changes Path 1.393 +10 -1 ports/Mk/bsd.sites.mk From owner-cvs-all@FreeBSD.ORG Wed Aug 2 12:42:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D7AD16A4DD; Wed, 2 Aug 2006 12:42:21 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C8E7B43D45; Wed, 2 Aug 2006 12:42:20 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72CgK0P044858; Wed, 2 Aug 2006 12:42:20 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72CgKeD044857; Wed, 2 Aug 2006 12:42:20 GMT (envelope-from bms) Message-Id: <200608021242.k72CgKeD044857@repoman.freebsd.org> From: Bruce M Simpson Date: Wed, 2 Aug 2006 12:42: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/sbin/reboot reboot.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, 02 Aug 2006 12:42:21 -0000 bms 2006-08-02 12:42:20 UTC FreeBSD src repository Modified files: sbin/reboot reboot.c Log: Block SIGHUP before killing init(8), to avoid a race condition which may kill the current process and hang the system when attempting reboot. PR: bin/64664 Reviewed by: ssouhal, phk (historic) MFC after: 30 days Revision Changes Path 1.25 +3 -3 src/sbin/reboot/reboot.c From owner-cvs-all@FreeBSD.ORG Wed Aug 2 12:59:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A59616A4E5; Wed, 2 Aug 2006 12:59:04 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DF5243D4C; Wed, 2 Aug 2006 12:59:03 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72Cx3iD053427; Wed, 2 Aug 2006 12:59:03 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72Cx36i053426; Wed, 2 Aug 2006 12:59:03 GMT (envelope-from pav) Message-Id: <200608021259.k72Cx36i053426@repoman.freebsd.org> From: Pav Lucistnik Date: Wed, 2 Aug 2006 12:59: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/dcc-dccd 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, 02 Aug 2006 12:59:04 -0000 pav 2006-08-02 12:59:03 UTC FreeBSD ports repository Modified files: mail/dcc-dccd Makefile distinfo Log: - Update to 1.3.42 PR: ports/101253 Submitted by: Dean Hollister (maintainer) Revision Changes Path 1.33 +1 -1 ports/mail/dcc-dccd/Makefile 1.28 +3 -3 ports/mail/dcc-dccd/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 2 13:02:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DAFA716A4DF; Wed, 2 Aug 2006 13:02:01 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADE0143D70; Wed, 2 Aug 2006 13:02:00 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72D20gp053701; Wed, 2 Aug 2006 13:02:00 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72D1xrf053683; Wed, 2 Aug 2006 13:01:59 GMT (envelope-from rwatson) Message-Id: <200608021301.k72D1xrf053683@repoman.freebsd.org> From: Robert Watson Date: Wed, 2 Aug 2006 13:01: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/kern uipc_sockbuf.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, 02 Aug 2006 13:02:02 -0000 rwatson 2006-08-02 13:01:59 UTC FreeBSD src repository Modified files: sys/kern uipc_sockbuf.c Log: Remove 'register'. Use ANSI C prototypes/function headers. More deterministically line wrap comments. Revision Changes Path 1.164 +138 -199 src/sys/kern/uipc_sockbuf.c From owner-cvs-all@FreeBSD.ORG Wed Aug 2 13:02:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E9CC16A4E0; Wed, 2 Aug 2006 13:02:03 +0000 (UTC) (envelope-from mich@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADC9043D64; Wed, 2 Aug 2006 13:02:00 +0000 (GMT) (envelope-from mich@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72D20Xl053702; Wed, 2 Aug 2006 13:02:00 GMT (envelope-from mich@repoman.freebsd.org) Received: (from mich@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72D1xg7053700; Wed, 2 Aug 2006 13:01:59 GMT (envelope-from mich) Message-Id: <200608021301.k72D1xg7053700@repoman.freebsd.org> From: Michael Landin Hostbaek Date: Wed, 2 Aug 2006 13:01: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/net/kiax Makefile distinfo pkg-plist ports/net/kiax/files patch-lib_libiax2_src_iax.c patch-lib_libiax2_src_md5.c patch-lib_portmixer_px_unix_oss_px_unix_oss.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, 02 Aug 2006 13:02:03 -0000 mich 2006-08-02 13:01:59 UTC FreeBSD ports repository Modified files: net/kiax Makefile distinfo pkg-plist net/kiax/files patch-lib_libiax2_src_iax.c Removed files: net/kiax/files patch-lib_libiax2_src_md5.c patch-lib_portmixer_px_unix_oss_px_unix_oss.c Log: - update to 0.8.5 PR: ports/97940 Submitted by: Eric Kjeldergaard Revision Changes Path 1.4 +2 -7 ports/net/kiax/Makefile 1.3 +3 -3 ports/net/kiax/distinfo 1.3 +14 -18 ports/net/kiax/files/patch-lib_libiax2_src_iax.c 1.2 +0 -11 ports/net/kiax/files/patch-lib_libiax2_src_md5.c (dead) 1.2 +0 -14 ports/net/kiax/files/patch-lib_portmixer_px_unix_oss_px_unix_oss.c (dead) 1.2 +11 -0 ports/net/kiax/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 2 13:05:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2514916A4DA; Wed, 2 Aug 2006 13:05:39 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90D5643D55; Wed, 2 Aug 2006 13:05:38 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72D5cD7055143; Wed, 2 Aug 2006 13:05:38 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72D5c9R055142; Wed, 2 Aug 2006 13:05:38 GMT (envelope-from bms) Message-Id: <200608021305.k72D5c9R055142@repoman.freebsd.org> From: Bruce M Simpson Date: Wed, 2 Aug 2006 13:05:38 +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/reboot reboot.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, 02 Aug 2006 13:05:39 -0000 bms 2006-08-02 13:05:38 UTC FreeBSD src repository Modified files: sbin/reboot reboot.c Log: Block a variety of signals which may afffect reboot(8), before killing init(8), to avoid losing a race to them and dying before being able to call reboot(2). PR: bin/64664 Submitted by: maxim Obtained from: NetBSD MFC after: 30 days Revision Changes Path 1.26 +15 -2 src/sbin/reboot/reboot.c From owner-cvs-all@FreeBSD.ORG Wed Aug 2 13:13:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A57BC16A4DF; Wed, 2 Aug 2006 13:13:31 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A89143D5F; Wed, 2 Aug 2006 13:13:30 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72DDU4e055610; Wed, 2 Aug 2006 13:13:30 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72DDUtE055609; Wed, 2 Aug 2006 13:13:30 GMT (envelope-from sat) Message-Id: <200608021313.k72DDUtE055609@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 2 Aug 2006 13:13: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: 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, 02 Aug 2006 13:13:31 -0000 sat 2006-08-02 13:13:29 UTC FreeBSD ports repository Modified files: . modules Log: p5-Apache-SizeLimit --> ports/www/p5-Apache-SizeLimit Revision Changes Path 1.15871 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 2 13:15:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 145A016A4DE; Wed, 2 Aug 2006 13:15:36 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41B6943D69; Wed, 2 Aug 2006 13:15:31 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72DFU8j055755; Wed, 2 Aug 2006 13:15:30 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72DFUl3055754; Wed, 2 Aug 2006 13:15:30 GMT (envelope-from sat) Message-Id: <200608021315.k72DFUl3055754@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 2 Aug 2006 13:15: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 Makefile ports/www/p5-Apache-SizeLimit 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, 02 Aug 2006 13:15:36 -0000 sat 2006-08-02 13:15:30 UTC FreeBSD ports repository Modified files: www Makefile Added files: www/p5-Apache-SizeLimit Makefile distinfo pkg-descr pkg-plist Log: Add port www/p5-Apache-SizeLimit: This module allows you to kill off Apache httpd processes if they grow too large. You can make the decision to kill a process based on its overall size, by setting a minimum limit on shared memory, or a maximum on unshared memory. You can set limits for each of these sizes, and if any limit is exceeded, the process will be killed. You can also limit the frequency that these sizes are checked so that this module only checks every N requests. WWW: http://search.cpan.org/dist/Apache-SizeLimit/ Justification: socialtext dependency Revision Changes Path 1.1538 +1 -0 ports/www/Makefile 1.1 +26 -0 ports/www/p5-Apache-SizeLimit/Makefile (new) 1.1 +3 -0 ports/www/p5-Apache-SizeLimit/distinfo (new) 1.1 +12 -0 ports/www/p5-Apache-SizeLimit/pkg-descr (new) 1.1 +5 -0 ports/www/p5-Apache-SizeLimit/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 2 13:21:45 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACFE016A4DA; Wed, 2 Aug 2006 13:21:45 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B41043D46; Wed, 2 Aug 2006 13:21:45 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72DLj0n056077; Wed, 2 Aug 2006 13:21:45 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72DLjHF056076; Wed, 2 Aug 2006 13:21:45 GMT (envelope-from bms) Message-Id: <200608021321.k72DLjHF056076@repoman.freebsd.org> From: Bruce M Simpson Date: Wed, 2 Aug 2006 13:21: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/usr.bin/logger logger.1 logger.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, 02 Aug 2006 13:21:45 -0000 bms 2006-08-02 13:21:45 UTC FreeBSD src repository Modified files: usr.bin/logger logger.1 logger.c Log: Add a new command-line option, -P, which allows the user to specify an arbitrary port to which syslog messages are to be sent. PR: bin/54026 Submitted by: Oliver Fromme MFC after: 10 days Revision Changes Path 1.17 +11 -0 src/usr.bin/logger/logger.1 1.15 +16 -11 src/usr.bin/logger/logger.c From owner-cvs-all@FreeBSD.ORG Wed Aug 2 13:59:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA0E916A4DF; Wed, 2 Aug 2006 13:59:07 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E598B43E02; Wed, 2 Aug 2006 13:58:48 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72DwmuG057726; Wed, 2 Aug 2006 13:58:48 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72Dwmod057725; Wed, 2 Aug 2006 13:58:48 GMT (envelope-from erwin) Message-Id: <200608021358.k72Dwmod057725@repoman.freebsd.org> From: Erwin Lansing Date: Wed, 2 Aug 2006 13:58: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/py-turbogears 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, 02 Aug 2006 13:59:08 -0000 erwin 2006-08-02 13:58:48 UTC FreeBSD ports repository Modified files: www/py-turbogears Makefile pkg-plist Log: Fix PLIST PR: 101256 Submitted by: erwin, pointyhat Approved by: maintainer Revision Changes Path 1.3 +1 -0 ports/www/py-turbogears/Makefile 1.3 +2 -1 ports/www/py-turbogears/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 2 14:00:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 04AAF16A4DE; Wed, 2 Aug 2006 14:00:55 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFBBA43D6B; Wed, 2 Aug 2006 14:00:38 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72E0LDX057855; Wed, 2 Aug 2006 14:00:21 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72E0KJ9057854; Wed, 2 Aug 2006 14:00:20 GMT (envelope-from itetcu) Message-Id: <200608021400.k72E0KJ9057854@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Wed, 2 Aug 2006 14: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/lang/ocaml Makefile bsd.ocaml.mk pkg-plist ports/lang/ocaml/files man1 manlinks mann patch-camlp4-man::Makefile patch-camlp4-man_Makefile patch-camlp4::lib::Makefile patch-camlp4_lib_Makefile patch-ocamldoc::Makefile patch-ocamldoc_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, 02 Aug 2006 14:00:55 -0000 itetcu 2006-08-02 14:00:20 UTC FreeBSD ports repository Modified files: lang/ocaml Makefile pkg-plist Added files: lang/ocaml bsd.ocaml.mk lang/ocaml/files man1 manlinks mann patch-camlp4-man_Makefile patch-camlp4_lib_Makefile patch-ocamldoc_Makefile patch-stdlib_Makefile Removed files: lang/ocaml/files patch-camlp4-man::Makefile patch-camlp4::lib::Makefile patch-ocamldoc::Makefile patch-stdlib::Makefile Log: - Add support for threaded Tk by passing PTHREAD_LIBS to configure in -tklibs swith. This allows build with threaded Tk (otherwise configure fails to use Tk). Also depend on threaded Tk by default in case of THREADS support - with non-pthread tk library it will not be stable enough - Add OPTIONS - Enable builds of non-threaded targets - Depend on X in case if X is installed, since configure does this by default. - Rename patchfiles to make portlint happy - Eliminate the number of reinplace patterns (remove duplicates, optimize) - Move manpage list in the separate files - Pass pthread flags to compiler (PTHREAD_CFLAGS/LIBS safety) - Remove some ugly hacks on setting permissions etc (eliminated by setting correct permission in COPY_TREE macros) - Eliminate duplicate entries in PLIST in case of unstalling optimized binaries, also optimize this part - Remove unused PLIST_SUB variable - Miscelanios cleanups in Makefile - Pass maintainership to submitter The following files was added: - files/man1 - files/manlinks - files/mann - files/patch-camlp4-man_Makefile - files/patch-camlp4_lib_Makefile - files/patch-ocamldoc_Makefile - files/patch-stdlib_Makefile I removed the following files: - files/patch-camlp4-man::Makefile - files/patch-camlp4::lib::Makefile - files/patch-ocamldoc::Makefile - files/patch-stdlib::Makefile Also add bsd.ocaml.mk until it will be included in Mk/ PR: ports/101122 Submitted by: Stanislav Sedov Revision Changes Path 1.54 +86 -99 ports/lang/ocaml/Makefile 1.1 +144 -0 ports/lang/ocaml/bsd.ocaml.mk (new) 1.1 +13 -0 ports/lang/ocaml/files/man1 (new) 1.1 +16 -0 ports/lang/ocaml/files/manlinks (new) 1.1 +81 -0 ports/lang/ocaml/files/mann (new) 1.6 +0 -21 ports/lang/ocaml/files/patch-camlp4-man::Makefile (dead) 1.1 +21 -0 ports/lang/ocaml/files/patch-camlp4-man_Makefile (new) 1.3 +0 -12 ports/lang/ocaml/files/patch-camlp4::lib::Makefile (dead) 1.1 +12 -0 ports/lang/ocaml/files/patch-camlp4_lib_Makefile (new) 1.4 +0 -22 ports/lang/ocaml/files/patch-ocamldoc::Makefile (dead) 1.1 +22 -0 ports/lang/ocaml/files/patch-ocamldoc_Makefile (new) 1.3 +0 -12 ports/lang/ocaml/files/patch-stdlib::Makefile (dead) 1.1 +12 -0 ports/lang/ocaml/files/patch-stdlib_Makefile (new) 1.29 +79 -79 ports/lang/ocaml/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 2 14:06:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BDBDF16A4E1; Wed, 2 Aug 2006 14:06:59 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4F6C43D5E; Wed, 2 Aug 2006 14:06:52 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72E6qQ2059445; Wed, 2 Aug 2006 14:06:52 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72E6q3i059444; Wed, 2 Aug 2006 14:06:52 GMT (envelope-from ahze) Message-Id: <200608021406.k72E6q3i059444@repoman.freebsd.org> From: Michael Johnson Date: Wed, 2 Aug 2006 14:06: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/www/firefox 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, 02 Aug 2006 14:06:59 -0000 ahze 2006-08-02 14:06:52 UTC FreeBSD ports repository Modified files: www/firefox Makefile distinfo Log: - Update to 1.5.0.6 Revision Changes Path 1.158 +1 -1 ports/www/firefox/Makefile 1.34 +3 -3 ports/www/firefox/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 2 14:22:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 492E916A4E0; Wed, 2 Aug 2006 14:22:52 +0000 (UTC) (envelope-from mich@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0B8243D69; Wed, 2 Aug 2006 14:22:51 +0000 (GMT) (envelope-from mich@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72EMpuN060259; Wed, 2 Aug 2006 14:22:51 GMT (envelope-from mich@repoman.freebsd.org) Received: (from mich@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72EMpMt060258; Wed, 2 Aug 2006 14:22:51 GMT (envelope-from mich) Message-Id: <200608021422.k72EMpMt060258@repoman.freebsd.org> From: Michael Landin Hostbaek Date: Wed, 2 Aug 2006 14: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/audio 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, 02 Aug 2006 14:22:52 -0000 mich 2006-08-02 14:22:51 UTC FreeBSD ports repository Modified files: audio Makefile Log: - add libtunepimp-old (forgotten after repocopy) Noticed by: portsnap buildbox Forgotten by: clsung Revision Changes Path 1.757 +1 -0 ports/audio/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 2 14:27:24 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E57816A4DD; Wed, 2 Aug 2006 14:27:24 +0000 (UTC) (envelope-from mich@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C6A6A43D45; Wed, 2 Aug 2006 14:27:23 +0000 (GMT) (envelope-from mich@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72ERNxp060498; Wed, 2 Aug 2006 14:27:23 GMT (envelope-from mich@repoman.freebsd.org) Received: (from mich@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72ERNwS060497; Wed, 2 Aug 2006 14:27:23 GMT (envelope-from mich) Message-Id: <200608021427.k72ERNwS060497@repoman.freebsd.org> From: Michael Landin Hostbaek Date: Wed, 2 Aug 2006 14: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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 02 Aug 2006 14:27:24 -0000 mich 2006-08-02 14:27:23 UTC FreeBSD ports repository Modified files: . modules Log: - add libtunepimp-old (after repocopy) Forgotten by: clsung Revision Changes Path 1.15872 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 2 14:29:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C53B616A4DF; Wed, 2 Aug 2006 14:29:31 +0000 (UTC) (envelope-from jcamou@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7ABC243D46; Wed, 2 Aug 2006 14:29:31 +0000 (GMT) (envelope-from jcamou@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72ETVHo060574; Wed, 2 Aug 2006 14:29:31 GMT (envelope-from jcamou@repoman.freebsd.org) Received: (from jcamou@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72ETVAq060573; Wed, 2 Aug 2006 14:29:31 GMT (envelope-from jcamou) Message-Id: <200608021429.k72ETVAq060573@repoman.freebsd.org> From: "Jesus R. Camou" Date: Wed, 2 Aug 2006 14:29:31 +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/share/man/man5 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, 02 Aug 2006 14:29:31 -0000 jcamou 2006-08-02 14:29:31 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_6) share/man/man5 Makefile Log: MFC link: rc.conf.local(5)->rc.conf(5) PR: docs/87698 Approved by: trhodes (mentor) Revision Changes Path 1.58.2.4 +1 -0 src/share/man/man5/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 2 14:30:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD48516A4DD; Wed, 2 Aug 2006 14:30:59 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5319843D67; Wed, 2 Aug 2006 14:30:59 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72EUxtN060725; Wed, 2 Aug 2006 14:30:59 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72EUxEw060722; Wed, 2 Aug 2006 14:30:59 GMT (envelope-from rwatson) Message-Id: <200608021430.k72EUxEw060722@repoman.freebsd.org> From: Robert Watson Date: Wed, 2 Aug 2006 14:30: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/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: Wed, 02 Aug 2006 14:30:59 -0000 rwatson 2006-08-02 14:30:58 UTC FreeBSD src repository Modified files: sys/kern uipc_usrreq.c Log: Remove now unneeded ENOTCONN clause from SOCK_DGRAM side of uipc_send(): we have to check it regardless of the target address, so don't check it twice. Revision Changes Path 1.184 +0 -5 src/sys/kern/uipc_usrreq.c From owner-cvs-all@FreeBSD.ORG Wed Aug 2 14:34:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 70AA716A4DD; Wed, 2 Aug 2006 14:34:47 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECF2243D46; Wed, 2 Aug 2006 14:34:46 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72EYkHs060948; Wed, 2 Aug 2006 14:34:46 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72EYkR1060947; Wed, 2 Aug 2006 14:34:46 GMT (envelope-from sat) Message-Id: <200608021434.k72EYkR1060947@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 2 Aug 2006 14:34: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/devel/p5-Readonly 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, 02 Aug 2006 14:34:47 -0000 sat 2006-08-02 14:34:46 UTC FreeBSD ports repository Modified files: devel/p5-Readonly Makefile distinfo Log: - Update Readonly-XS to 1.04 - Bump portrevision Approved by: skv (maintainer) Revision Changes Path 1.2 +5 -3 ports/devel/p5-Readonly/Makefile 1.3 +3 -3 ports/devel/p5-Readonly/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 2 14:44:02 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CCAFA16A4E7; Wed, 2 Aug 2006 14:44:02 +0000 (UTC) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6239743D5D; Wed, 2 Aug 2006 14:44:02 +0000 (GMT) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72Ei2KR061479; Wed, 2 Aug 2006 14:44:02 GMT (envelope-from joel@repoman.freebsd.org) Received: (from joel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72Ei2Xn061478; Wed, 2 Aug 2006 14:44:02 GMT (envelope-from joel) Message-Id: <200608021444.k72Ei2Xn061478@repoman.freebsd.org> From: Joel Dahl Date: Wed, 2 Aug 2006 14:44: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: doc/en_US.ISO8859-1/articles/contributors contrib.committers.sgml contrib.develalumni.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, 02 Aug 2006 14:44:02 -0000 joel 2006-08-02 14:44:02 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/contributors contrib.committers.sgml contrib.develalumni.sgml Log: Move nbm to the Development Team Alumni. Revision Changes Path 1.141 +0 -4 doc/en_US.ISO8859-1/articles/contributors/contrib.committers.sgml 1.26 +4 -0 doc/en_US.ISO8859-1/articles/contributors/contrib.develalumni.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 2 14:47:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B29C216A4DF; Wed, 2 Aug 2006 14:47:48 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C28543D5A; Wed, 2 Aug 2006 14:47:46 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72ElkiQ061664; Wed, 2 Aug 2006 14:47:46 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72ElkXN061663; Wed, 2 Aug 2006 14:47:46 GMT (envelope-from sat) Message-Id: <200608021447.k72ElkXN061663@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 2 Aug 2006 14:47: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/linux-firefox 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, 02 Aug 2006 14:47:48 -0000 sat 2006-08-02 14:47:45 UTC FreeBSD ports repository Modified files: www/linux-firefox Makefile distinfo Log: - Update to 1.5.0.6 Revision Changes Path 1.30 +1 -2 ports/www/linux-firefox/Makefile 1.17 +3 -3 ports/www/linux-firefox/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 2 14:48:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E15216A4DA; Wed, 2 Aug 2006 14:48:13 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 405E743D45; Wed, 2 Aug 2006 14:48:13 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72EmDrV061727; Wed, 2 Aug 2006 14:48:13 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72EmDYM061726; Wed, 2 Aug 2006 14:48:13 GMT (envelope-from sat) Message-Id: <200608021448.k72EmDYM061726@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 2 Aug 2006 14:48: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/firefox-i18n 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, 02 Aug 2006 14:48:13 -0000 sat 2006-08-02 14:48:13 UTC FreeBSD ports repository Modified files: www/firefox-i18n Makefile distinfo Log: - Update to 1.5.0.6 Revision Changes Path 1.5 +2 -2 ports/www/firefox-i18n/Makefile 1.4 +108 -111 ports/www/firefox-i18n/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 2 14:50:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA90E16A4DE; Wed, 2 Aug 2006 14:50:51 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CC2443D99; Wed, 2 Aug 2006 14:50:51 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72EopLt061892; Wed, 2 Aug 2006 14:50:51 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72EopCu061891; Wed, 2 Aug 2006 14:50:51 GMT (envelope-from sat) Message-Id: <200608021450.k72EopCu061891@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 2 Aug 2006 14:50: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/linux-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: Wed, 02 Aug 2006 14:50:52 -0000 sat 2006-08-02 14:50:51 UTC FreeBSD ports repository Modified files: www/linux-seamonkey Makefile distinfo Log: - Update to 1.0.4 Revision Changes Path 1.11 +1 -2 ports/www/linux-seamonkey/Makefile 1.5 +3 -3 ports/www/linux-seamonkey/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 2 14:58:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1BB2616A4DA; Wed, 2 Aug 2006 14:58:03 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C383C43D45; Wed, 2 Aug 2006 14:58:02 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72Ew2XZ062254; Wed, 2 Aug 2006 14:58:02 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72Ew25E062253; Wed, 2 Aug 2006 14:58:02 GMT (envelope-from sat) Message-Id: <200608021458.k72Ew25E062253@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 2 Aug 2006 14:58: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/www/linux-flock 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, 02 Aug 2006 14:58:03 -0000 sat 2006-08-02 14:58:02 UTC FreeBSD ports repository Modified files: www/linux-flock Makefile distinfo Log: - Update to 0.7.4.1 Revision Changes Path 1.9 +1 -1 ports/www/linux-flock/Makefile 1.7 +3 -3 ports/www/linux-flock/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 2 14:58:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6FEA16A4DA; Wed, 2 Aug 2006 14:58:52 +0000 (UTC) (envelope-from oleg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B17443D58; Wed, 2 Aug 2006 14:58:52 +0000 (GMT) (envelope-from oleg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72EwqGa062297; Wed, 2 Aug 2006 14:58:52 GMT (envelope-from oleg@repoman.freebsd.org) Received: (from oleg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72Ewqa9062296; Wed, 2 Aug 2006 14:58:52 GMT (envelope-from oleg) Message-Id: <200608021458.k72Ewqa9062296@repoman.freebsd.org> From: Oleg Bulyzhin Date: Wed, 2 Aug 2006 14:58: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/netinet ip_fw2.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, 02 Aug 2006 14:58:52 -0000 oleg 2006-08-02 14:58:52 UTC FreeBSD src repository Modified files: sys/netinet ip_fw2.c Log: Do not leak memory while flushing rules. Noticed by: yar Approved by: glebius (mentor) MFC after: 1 week Revision Changes Path 1.141 +3 -2 src/sys/netinet/ip_fw2.c From owner-cvs-all@FreeBSD.ORG Wed Aug 2 15:02:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6166316A4DE; Wed, 2 Aug 2006 15:02:00 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13CE743D7D; Wed, 2 Aug 2006 15:02:00 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72F1xMK062544; Wed, 2 Aug 2006 15:01:59 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72F1xcc062543; Wed, 2 Aug 2006 15:01:59 GMT (envelope-from glebius) Message-Id: <200608021501.k72F1xcc062543@repoman.freebsd.org> From: Gleb Smirnoff Date: Wed, 2 Aug 2006 15:01:59 +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/bge if_bge.c if_bgereg.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, 02 Aug 2006 15:02:00 -0000 glebius 2006-08-02 15:01:59 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/bge if_bge.c if_bgereg.h Log: Sync with HEAD merging many things: - Support for BCM5754, BCM5755, BCM5787. - Recognize BCM5703 B0 ASIC. - Correctly recognize chips that can do Jumbo. - Fix kern/68351 - Rewrite arrays that hold names of chips and revisions. Also: - Big style(9) and whitespace cleanup. Revision Changes Path 1.91.2.15 +586 -716 src/sys/dev/bge/if_bge.c 1.36.2.6 +205 -157 src/sys/dev/bge/if_bgereg.h From owner-cvs-all@FreeBSD.ORG Wed Aug 2 15:11:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 48B1C16A4E1; Wed, 2 Aug 2006 15:11:27 +0000 (UTC) (envelope-from vd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12D8943D77; Wed, 2 Aug 2006 15:11:19 +0000 (GMT) (envelope-from vd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72FBJga064380; Wed, 2 Aug 2006 15:11:19 GMT (envelope-from vd@repoman.freebsd.org) Received: (from vd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72FBJjb064379; Wed, 2 Aug 2006 15:11:19 GMT (envelope-from vd) Message-Id: <200608021511.k72FBJjb064379@repoman.freebsd.org> From: Vasil Dimov Date: Wed, 2 Aug 2006 15:11: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/misc/ossp-uuid Makefile distinfo ports/misc/ossp-uuid/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: Wed, 02 Aug 2006 15:11:27 -0000 vd 2006-08-02 15:11:19 UTC FreeBSD ports repository Modified files: misc/ossp-uuid Makefile distinfo misc/ossp-uuid/files patch-Makefile.in Log: Upgrade from 1.4.2 to 1.5.1 Revision Changes Path 1.22 +3 -3 ports/misc/ossp-uuid/Makefile 1.15 +3 -3 ports/misc/ossp-uuid/distinfo 1.2 +12 -28 ports/misc/ossp-uuid/files/patch-Makefile.in From owner-cvs-all@FreeBSD.ORG Wed Aug 2 15:15:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBED316A593 for ; Wed, 2 Aug 2006 15:15:48 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from srv1.galle.com.br (srv1.galle.com.br [200.246.25.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9467C43D72 for ; Wed, 2 Aug 2006 15:15:29 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: (qmail 6412 invoked by uid 99); 2 Aug 2006 12:15:27 -0300 Received: from 192.168.50.4 by srv1.galle.com.br (envelope-from , uid 82) with qmail-scanner-1.25 (clamdscan: 0.88/1247. spamassassin: 3.1.0. Clear:RC:1(192.168.50.4):. Processed in 0.119049 secs); 02 Aug 2006 15:15:27 -0000 X-Qmail-Scanner-Mail-From: garga@FreeBSD.org via srv1.galle.com.br X-Qmail-Scanner: 1.25 (Clear:RC:1(192.168.50.4):. Processed in 0.119049 secs) Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=galle; d=FreeBSD.org; b=CTgn6zflixr//sr9M4CGX1UHrEdGIBqNCWt3+ue8GbeuPH9lnqTKrmQHQKPPH0thvZt4124F3siEMaxzzVW3jJdDRUSMqHWT0mNgROa0OB5VLLhlD3Yh+dnZXmEO/PH1 ; Received: from unknown (HELO ?192.168.50.4?) (192.168.50.4) (de-)crypted with TLSv1: DHE-RSA-AES256-SHA [256/256] DN=unknown by 0 with ESMTPS; 2 Aug 2006 12:15:26 -0300 Message-ID: <44D0C139.8060603@FreeBSD.org> Date: Wed, 02 Aug 2006 12:14:01 -0300 From: Renato Botelho Organization: FreeBSD.org User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: Ion-Mihai Tetcu References: <200608021400.k72E0KJ9057854@repoman.freebsd.org> In-Reply-To: <200608021400.k72E0KJ9057854@repoman.freebsd.org> X-Enigmail-Version: 0.94.0.0 OpenPGP: id=2244EDA9; url=http://people.FreeBSD.org/pubkey.asc Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/lang/ocaml Makefile bsd.ocaml.mk pkg-plist ports/lang/ocaml/files man1 manlinks mann patch-camlp4-man::Makefile patch-camlp4-man_Makefile patch-camlp4::lib::Makefile patch-camlp4_lib_Makefile patch-ocamldoc::Makefile patch-ocamldoc_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, 02 Aug 2006 15:15:48 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Ion-Mihai Tetcu wrote: > itetcu 2006-08-02 14:00:20 UTC > > FreeBSD ports repository > > Modified files: > lang/ocaml Makefile pkg-plist > Added files: > lang/ocaml bsd.ocaml.mk > lang/ocaml/files man1 manlinks mann > patch-camlp4-man_Makefile > patch-camlp4_lib_Makefile > patch-ocamldoc_Makefile > patch-stdlib_Makefile > Removed files: > lang/ocaml/files patch-camlp4-man::Makefile > patch-camlp4::lib::Makefile > patch-ocamldoc::Makefile > patch-stdlib::Makefile > Log: > - Add support for threaded Tk by passing PTHREAD_LIBS to configure in -tklibs > swith. This allows build with threaded Tk (otherwise configure fails to use > Tk). Also depend on threaded Tk by default in case of THREADS support - with > non-pthread tk library it will not be stable enough > - Add OPTIONS > - Enable builds of non-threaded targets > - Depend on X in case if X is installed, since configure does this by default. > - Rename patchfiles to make portlint happy > - Eliminate the number of reinplace patterns (remove duplicates, optimize) > - Move manpage list in the separate files > - Pass pthread flags to compiler (PTHREAD_CFLAGS/LIBS safety) > - Remove some ugly hacks on setting permissions etc (eliminated by setting > correct permission in COPY_TREE macros) > - Eliminate duplicate entries in PLIST in case of unstalling optimized binaries, > also optimize this part > - Remove unused PLIST_SUB variable > - Miscelanios cleanups in Makefile > - Pass maintainership to submitter > > The following files was added: > - files/man1 > - files/manlinks > - files/mann > - files/patch-camlp4-man_Makefile > - files/patch-camlp4_lib_Makefile > - files/patch-ocamldoc_Makefile > - files/patch-stdlib_Makefile > > I removed the following files: > - files/patch-camlp4-man::Makefile > - files/patch-camlp4::lib::Makefile > - files/patch-ocamldoc::Makefile > - files/patch-stdlib::Makefile > > Also add bsd.ocaml.mk until it will be included in Mk/ > > PR: ports/101122 > Submitted by: Stanislav Sedov > > Revision Changes Path > 1.54 +86 -99 ports/lang/ocaml/Makefile > 1.1 +144 -0 ports/lang/ocaml/bsd.ocaml.mk (new) > 1.1 +13 -0 ports/lang/ocaml/files/man1 (new) > 1.1 +16 -0 ports/lang/ocaml/files/manlinks (new) > 1.1 +81 -0 ports/lang/ocaml/files/mann (new) > 1.6 +0 -21 ports/lang/ocaml/files/patch-camlp4-man::Makefile (dead) > 1.1 +21 -0 ports/lang/ocaml/files/patch-camlp4-man_Makefile (new) > 1.3 +0 -12 ports/lang/ocaml/files/patch-camlp4::lib::Makefile (dead) > 1.1 +12 -0 ports/lang/ocaml/files/patch-camlp4_lib_Makefile (new) > 1.4 +0 -22 ports/lang/ocaml/files/patch-ocamldoc::Makefile (dead) > 1.1 +22 -0 ports/lang/ocaml/files/patch-ocamldoc_Makefile (new) > 1.3 +0 -12 ports/lang/ocaml/files/patch-stdlib::Makefile (dead) > 1.1 +12 -0 ports/lang/ocaml/files/patch-stdlib_Makefile (new) > 1.29 +79 -79 ports/lang/ocaml/pkg-plist Just rename patches is not a good practice, just add new ones respecting the rule. - -- Renato Botelho GnuPG Key: http://www.FreeBSD.org/~garga/pubkey.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFE0ME56CRbiSJE7akRAh8rAJ92LwhElFd7nw3KhxIIFcV96eO4wgCfT48s J0sNw9ReKW3wH0u479xyaOY= =qXcG -----END PGP SIGNATURE----- From owner-cvs-all@FreeBSD.ORG Wed Aug 2 15:25:06 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0675F16A4DE; Wed, 2 Aug 2006 15:25:05 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A48F843D80; Wed, 2 Aug 2006 15:24:59 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72FOx9n064979; Wed, 2 Aug 2006 15:24:59 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72FOxms064978; Wed, 2 Aug 2006 15:24:59 GMT (envelope-from netchild) Message-Id: <200608021524.k72FOxms064978@repoman.freebsd.org> From: Alexander Leidinger Date: Wed, 2 Aug 2006 15:24: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/tools/kerneldoc/subsys 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, 02 Aug 2006 15:25:06 -0000 netchild 2006-08-02 15:24:59 UTC FreeBSD src repository Modified files: tools/kerneldoc/subsys Makefile Log: Fix build when .CURDIR != .OBJDIR. Noticed by: "Alexander Mogilny" Revision Changes Path 1.5 +3 -0 src/tools/kerneldoc/subsys/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 2 15:26:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D200816A4E0; Wed, 2 Aug 2006 15:26:17 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC4D943D6E; Wed, 2 Aug 2006 15:26:15 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72FQFbD065101; Wed, 2 Aug 2006 15:26:15 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72FQFEg065100; Wed, 2 Aug 2006 15:26:15 GMT (envelope-from netchild) Message-Id: <200608021526.k72FQFEg065100@repoman.freebsd.org> From: Alexander Leidinger Date: Wed, 2 Aug 2006 15:26: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 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: Wed, 02 Aug 2006 15:26:17 -0000 netchild 2006-08-02 15:26:15 UTC FreeBSD src repository Modified files: . Makefile.inc1 Log: Fix doxygen target. Submitted by: "Alexander Mogilny" Pointy hat to: netchild Revision Changes Path 1.550 +1 -1 src/Makefile.inc1 From owner-cvs-all@FreeBSD.ORG Wed Aug 2 15:27:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40B0116A4F0; Wed, 2 Aug 2006 15:27:49 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E823543D46; Wed, 2 Aug 2006 15:27:48 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72FRmAU065159; Wed, 2 Aug 2006 15:27:48 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72FRmZL065158; Wed, 2 Aug 2006 15:27:48 GMT (envelope-from jhb) Message-Id: <200608021527.k72FRmZL065158@repoman.freebsd.org> From: John Baldwin Date: Wed, 2 Aug 2006 15:27: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/kern vfs_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: Wed, 02 Aug 2006 15:27:49 -0000 jhb 2006-08-02 15:27:48 UTC FreeBSD src repository Modified files: sys/kern vfs_syscalls.c Log: Fix some bugs in the previous revision (1.419). Don't perform extra vfs_rel() on the mountpoint if the MAC checks fail in kern_statfs() and kern_fstatfs(). Similarly, don't perform an extra vfs_rel() if we get a doomed vnode in kern_fstatfs(), and handle the case of mp being NULL (for some doomed vnodes) by conditionalizing the vfs_rel() in kern_fstatfs() on mp != NULL. CID: 1517 Found by: Coverity Prevent (tm) (kern_fstatfs()) Pointy hat to: jhb Revision Changes Path 1.420 +4 -9 src/sys/kern/vfs_syscalls.c From owner-cvs-all@FreeBSD.ORG Wed Aug 2 15:33:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A61D16A4E5; Wed, 2 Aug 2006 15:33:48 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A981343D46; Wed, 2 Aug 2006 15:33:47 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72FXlO3065557; Wed, 2 Aug 2006 15:33:47 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72FXlW1065556; Wed, 2 Aug 2006 15:33:47 GMT (envelope-from clsung) Message-Id: <200608021533.k72FXlW1065556@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 2 Aug 2006 15:33: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 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, 02 Aug 2006 15:33:48 -0000 clsung 2006-08-02 15:33:47 UTC FreeBSD ports repository Modified files: archivers/p5-Archive-Tar Makefile distinfo Log: - update to 1.30 Revision Changes Path 1.25 +1 -2 ports/archivers/p5-Archive-Tar/Makefile 1.17 +3 -3 ports/archivers/p5-Archive-Tar/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 2 15:45:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0DAA16A4DD; Wed, 2 Aug 2006 15:45:12 +0000 (UTC) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 852A843D6E; Wed, 2 Aug 2006 15:45:12 +0000 (GMT) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72FjCn6066213; Wed, 2 Aug 2006 15:45:12 GMT (envelope-from alepulver@repoman.freebsd.org) Received: (from alepulver@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72FjCFW066212; Wed, 2 Aug 2006 15:45:12 GMT (envelope-from alepulver) Message-Id: <200608021545.k72FjCFW066212@repoman.freebsd.org> From: Alejandro Pulver Date: Wed, 2 Aug 2006 15:45: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/games/quake2-data 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, 02 Aug 2006 15:45:12 -0000 alepulver 2006-08-02 15:45:12 UTC FreeBSD ports repository Modified files: games/quake2-data distinfo Log: - Add missing entry in distinfo (required for MANUAL and SHAREWARE options). Revision Changes Path 1.4 +3 -0 ports/games/quake2-data/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 2 16:18:08 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D54EA16A4DF; Wed, 2 Aug 2006 16:18:08 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A411243D5A; Wed, 2 Aug 2006 16:18:05 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72GI5id069007; Wed, 2 Aug 2006 16:18:05 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72GI5Bc069006; Wed, 2 Aug 2006 16:18:05 GMT (envelope-from rwatson) Message-Id: <200608021618.k72GI5Bc069006@repoman.freebsd.org> From: Robert Watson Date: Wed, 2 Aug 2006 16:18: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/netinet tcp_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: Wed, 02 Aug 2006 16:18:08 -0000 rwatson 2006-08-02 16:18:05 UTC FreeBSD src repository Modified files: sys/netinet tcp_subr.c Log: Move soisdisconnected() in tcp_discardcb() to one of its calling contexts, tcp_twstart(), but not to the other, tcp_detach(), as the socket is already being torn down and therefore there are no listeners. This avoids a panic if kqueue state is registered on the socket at close(), and eliminates to XXX comments. There is one case remaining in which tcp_discardcb() reaches up to the socket layer as part of the TCP host cache, which would be good to avoid. Reported by: Goran Gajic Revision Changes Path 1.253 +7 -12 src/sys/netinet/tcp_subr.c From owner-cvs-all@FreeBSD.ORG Wed Aug 2 16:22:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4923D16A4E1; Wed, 2 Aug 2006 16:22:40 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6EAFA43D72; Wed, 2 Aug 2006 16:22:35 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72GMZO2069371; Wed, 2 Aug 2006 16:22:35 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72GMZnQ069370; Wed, 2 Aug 2006 16:22:35 GMT (envelope-from rwatson) Message-Id: <200608021622.k72GMZnQ069370@repoman.freebsd.org> From: Robert Watson Date: Wed, 2 Aug 2006 16:22: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/netatalk ddp_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: Wed, 02 Aug 2006 16:22:40 -0000 rwatson 2006-08-02 16:22:35 UTC FreeBSD src repository Modified files: sys/netatalk ddp_pcb.c Log: Remove call to soisdisconnected() in at_pcbdetach(): by the time the socket is being detached, there are no consumers left worth notifying about the disconnect. Revision Changes Path 1.49 +0 -2 src/sys/netatalk/ddp_pcb.c From owner-cvs-all@FreeBSD.ORG Wed Aug 2 16:23:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3458116A4DF; Wed, 2 Aug 2006 16:23:47 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1C6643D58; Wed, 2 Aug 2006 16:23:35 +0000 (GMT) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72GNZZi069433; Wed, 2 Aug 2006 16:23:35 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72GNZxR069432; Wed, 2 Aug 2006 16:23:35 GMT (envelope-from mezz) Message-Id: <200608021623.k72GNZxR069432@repoman.freebsd.org> From: Jeremy Messenger Date: Wed, 2 Aug 2006 16:23: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/bfilter 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, 02 Aug 2006 16:23:47 -0000 mezz 2006-08-02 16:23:35 UTC FreeBSD ports repository Modified files: net/bfilter Makefile distinfo Log: Update to 1.0.5, see changelog for details: http://bfilter.sourceforge.net/changelog.php Revision Changes Path 1.23 +1 -2 ports/net/bfilter/Makefile 1.11 +3 -3 ports/net/bfilter/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 2 16:24:09 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D7BC16A4DF; Wed, 2 Aug 2006 16:24:09 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35A1E43D97; Wed, 2 Aug 2006 16:23:53 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72GNr1X069486; Wed, 2 Aug 2006 16:23:53 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72GNqGQ069485; Wed, 2 Aug 2006 16:23:52 GMT (envelope-from rwatson) Message-Id: <200608021623.k72GNqGQ069485@repoman.freebsd.org> From: Robert Watson Date: Wed, 2 Aug 2006 16:23: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/kern uipc_socket2.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, 02 Aug 2006 16:24:09 -0000 rwatson 2006-08-02 16:23:52 UTC FreeBSD src repository Modified files: sys/kern uipc_socket2.c Log: Change two XXX's to two notes: the fact that SOCK_LOCK(so) == SOCKBUF_LOCK(&so->so_rcv) is encoded, which is worth noting, but not a bug. Revision Changes Path 1.162 +2 -2 src/sys/kern/uipc_socket2.c From owner-cvs-all@FreeBSD.ORG Wed Aug 2 16:24:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F101E16A4E7; Wed, 2 Aug 2006 16:24:33 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B98243D92; Wed, 2 Aug 2006 16:24:23 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72GONec069521; Wed, 2 Aug 2006 16:24:23 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72GONBJ069520; Wed, 2 Aug 2006 16:24:23 GMT (envelope-from alc) Message-Id: <200608021624.k72GONBJ069520@repoman.freebsd.org> From: Alan Cox Date: Wed, 2 Aug 2006 16:24: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/amd64/include pmap.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, 02 Aug 2006 16:24:34 -0000 alc 2006-08-02 16:24:23 UTC FreeBSD src repository Modified files: sys/amd64/include pmap.h Log: Define the additional page fault error codes that are implemented by amd64. Revision Changes Path 1.133 +2 -0 src/sys/amd64/include/pmap.h From owner-cvs-all@FreeBSD.ORG Wed Aug 2 16:37:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CAB6216A4DE; Wed, 2 Aug 2006 16:37:36 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0A8543D5E; Wed, 2 Aug 2006 16:37:34 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72GbYPw070195; Wed, 2 Aug 2006 16:37:34 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72GbYd1070194; Wed, 2 Aug 2006 16:37:34 GMT (envelope-from novel) Message-Id: <200608021637.k72GbYd1070194@repoman.freebsd.org> From: Roman Bogorodskiy Date: Wed, 2 Aug 2006 16:37: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/net-p2p/moodriver 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, 02 Aug 2006 16:37:36 -0000 novel 2006-08-02 16:37:34 UTC FreeBSD ports repository Modified files: net-p2p/moodriver Makefile distinfo Log: Update to 0.08. Revision Changes Path 1.3 +1 -1 ports/net-p2p/moodriver/Makefile 1.3 +3 -3 ports/net-p2p/moodriver/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 2 17:07:14 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 680AA16A4DD; Wed, 2 Aug 2006 17:07:14 +0000 (UTC) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.208.78.105]) by mx1.FreeBSD.org (Postfix) with ESMTP id B267743D5D; Wed, 2 Aug 2006 17:07:12 +0000 (GMT) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (localhost.apl.washington.edu [127.0.0.1]) by troutmask.apl.washington.edu (8.13.7/8.13.7) with ESMTP id k72H7Cbc001358; Wed, 2 Aug 2006 10:07:12 -0700 (PDT) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.13.7/8.13.7/Submit) id k72H7C4L001357; Wed, 2 Aug 2006 10:07:12 -0700 (PDT) (envelope-from sgk) Date: Wed, 2 Aug 2006 10:07:12 -0700 From: Steve Kargl To: Robert Watson Message-ID: <20060802170712.GB970@troutmask.apl.washington.edu> References: <200608021618.k72GI5Bc069006@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200608021618.k72GI5Bc069006@repoman.freebsd.org> User-Agent: Mutt/1.4.2.2i Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netinet tcp_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: Wed, 02 Aug 2006 17:07:14 -0000 On Wed, Aug 02, 2006 at 04:18:05PM +0000, Robert Watson wrote: > > Modified files: > sys/netinet tcp_subr.c > Log: > Move soisdisconnected() in tcp_discardcb() to one of its calling contexts, > tcp_twstart(), but not to the other, tcp_detach(), as the socket is > already being torn down and therefore there are no listeners. This avoids > a panic if kqueue state is registered on the socket at close(), and > eliminates to XXX comments. There is one case remaining in which > tcp_discardcb() reaches up to the socket layer as part of the TCP host > cache, which would be good to avoid. > Thanks! You beat me to my bug report. -- Steve From owner-cvs-all@FreeBSD.ORG Wed Aug 2 17:15:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E3F5116A4DF; Wed, 2 Aug 2006 17:15:41 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F10643D6A; Wed, 2 Aug 2006 17:15:41 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72HFfOM080835; Wed, 2 Aug 2006 17:15:41 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72HFfnk080834; Wed, 2 Aug 2006 17:15:41 GMT (envelope-from marcel) Message-Id: <200608021715.k72HFfnk080834@repoman.freebsd.org> From: Marcel Moolenaar Date: Wed, 2 Aug 2006 17:15: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/usr.sbin 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, 02 Aug 2006 17:15:42 -0000 marcel 2006-08-02 17:15:41 UTC FreeBSD src repository Modified files: usr.sbin Makefile Log: Remove remnants of Alpha. Revision Changes Path 1.355 +0 -9 src/usr.sbin/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 2 17:16:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D5D016A4DE; Wed, 2 Aug 2006 17:16:41 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BD5843D60; Wed, 2 Aug 2006 17:16:37 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72HGbcX080976; Wed, 2 Aug 2006 17:16:37 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72HGbZu080975; Wed, 2 Aug 2006 17:16:37 GMT (envelope-from rafan) Message-Id: <200608021716.k72HGbZu080975@repoman.freebsd.org> From: Rong-En Fan Date: Wed, 2 Aug 2006 17:16: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/net Makefile ports/net/p5-Net-Telnet-Netscreen 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, 02 Aug 2006 17:16:41 -0000 rafan 2006-08-02 17:16:36 UTC FreeBSD ports repository Modified files: net Makefile Added files: net/p5-Net-Telnet-Netscreen Makefile distinfo pkg-descr pkg-plist Log: Add p5-Net-Telnet-Netscreen 1.1, a Perl interface for interact with a Netscreen firewall. PR: ports/101060 Submitted by: Tsung-Han Yeh Revision Changes Path 1.1710 +1 -0 ports/net/Makefile 1.1 +32 -0 ports/net/p5-Net-Telnet-Netscreen/Makefile (new) 1.1 +3 -0 ports/net/p5-Net-Telnet-Netscreen/distinfo (new) 1.1 +4 -0 ports/net/p5-Net-Telnet-Netscreen/pkg-descr (new) 1.1 +12 -0 ports/net/p5-Net-Telnet-Netscreen/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 2 17:16:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C74216A4E0; Wed, 2 Aug 2006 17:16:48 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E973E43D76; Wed, 2 Aug 2006 17:16:47 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72HGlsO081015; Wed, 2 Aug 2006 17:16:47 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72HGllW081014; Wed, 2 Aug 2006 17:16:47 GMT (envelope-from rafan) Message-Id: <200608021716.k72HGllW081014@repoman.freebsd.org> From: Rong-En Fan Date: Wed, 2 Aug 2006 17:16: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: 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, 02 Aug 2006 17:16:48 -0000 rafan 2006-08-02 17:16:47 UTC FreeBSD ports repository Modified files: . modules Log: p5-Net-Telnet-Netscreen --> ports/net/p5-Net-Telnet-Netscreen Revision Changes Path 1.15873 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 2 17:16:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1700716A57E; Wed, 2 Aug 2006 17:16:52 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17F5043D53; Wed, 2 Aug 2006 17:16:49 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72HGmY3081045; Wed, 2 Aug 2006 17:16:48 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72HGmYa081044; Wed, 2 Aug 2006 17:16:48 GMT (envelope-from marcel) Message-Id: <200608021716.k72HGmYa081044@repoman.freebsd.org> From: Marcel Moolenaar Date: Wed, 2 Aug 2006 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/usr.sbin/elf2exe Makefile elf2exe.8 elf2exe.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, 02 Aug 2006 17:16:52 -0000 marcel 2006-08-02 17:16:48 UTC FreeBSD src repository Removed files: usr.sbin/elf2exe Makefile elf2exe.8 elf2exe.c Log: Remove remnants of Alpha. Revision Changes Path 1.8 +0 -7 src/usr.sbin/elf2exe/Makefile (dead) 1.13 +0 -56 src/usr.sbin/elf2exe/elf2exe.8 (dead) 1.8 +0 -403 src/usr.sbin/elf2exe/elf2exe.c (dead) From owner-cvs-all@FreeBSD.ORG Wed Aug 2 17:18:18 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9165116A4E2; Wed, 2 Aug 2006 17:18:18 +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 3F53943D46; Wed, 2 Aug 2006 17:18:18 +0000 (GMT) (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 BB37A46CDA; Wed, 2 Aug 2006 13:18:17 -0400 (EDT) Date: Wed, 2 Aug 2006 18:18:17 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Steve Kargl In-Reply-To: <20060802170712.GB970@troutmask.apl.washington.edu> Message-ID: <20060802181553.V56791@fledge.watson.org> References: <200608021618.k72GI5Bc069006@repoman.freebsd.org> <20060802170712.GB970@troutmask.apl.washington.edu> 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/netinet tcp_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: Wed, 02 Aug 2006 17:18:18 -0000 On Wed, 2 Aug 2006, Steve Kargl wrote: > On Wed, Aug 02, 2006 at 04:18:05PM +0000, Robert Watson wrote: >> >> Modified files: >> sys/netinet tcp_subr.c >> Log: >> Move soisdisconnected() in tcp_discardcb() to one of its calling contexts, >> tcp_twstart(), but not to the other, tcp_detach(), as the socket is >> already being torn down and therefore there are no listeners. This avoids >> a panic if kqueue state is registered on the socket at close(), and >> eliminates to XXX comments. There is one case remaining in which >> tcp_discardcb() reaches up to the socket layer as part of the TCP host >> cache, which would be good to avoid. > > Thanks! You beat me to my bug report. I find myself a bit unsure about the entirely right solution here, though -- protocols inconsistently use soisdisconnected(), and at sometimes odd times. It's clear that, by the time the socket is being freed, the call to soisdisconnected() is too late to be useful. Some protocols, especially datagram protocols, don't use soisdisconnected(), they just remove the connected flag from the socket. It's not clear to me whether protocols should always invoke soisdisconnected() on every socket that's been at least partially connected, and when they should do that. By pru_detach it's too late, but perhaps at pru_close and pru_abort? Or perhaps the socket layer should auto-notify at that point, or just prior to pru_detach... Robert N M Watson Computer Laboratory University of Cambridge From owner-cvs-all@FreeBSD.ORG Wed Aug 2 17:18:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C665716A501; Wed, 2 Aug 2006 17:18:30 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81FBC43D45; Wed, 2 Aug 2006 17:18:30 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72HIUmN081184; Wed, 2 Aug 2006 17:18:30 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72HIUIc081183; Wed, 2 Aug 2006 17:18:30 GMT (envelope-from rafan) Message-Id: <200608021718.k72HIUIc081183@repoman.freebsd.org> From: Rong-En Fan Date: Wed, 2 Aug 2006 17:18: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 Makefile ports/net/p5-Net-FS-Flickr 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, 02 Aug 2006 17:18:30 -0000 rafan 2006-08-02 17:18:30 UTC FreeBSD ports repository Modified files: net Makefile Added files: net/p5-Net-FS-Flickr Makefile distinfo pkg-descr pkg-plist Log: Add p5-Net-FS-Flickr 0.1, a Perl interface for store and retrieve files on Flickr. PR: ports/101057 Submitted by: Tsung-Han Yeh Revision Changes Path 1.1711 +1 -0 ports/net/Makefile 1.1 +41 -0 ports/net/p5-Net-FS-Flickr/Makefile (new) 1.1 +3 -0 ports/net/p5-Net-FS-Flickr/distinfo (new) 1.1 +4 -0 ports/net/p5-Net-FS-Flickr/pkg-descr (new) 1.1 +8 -0 ports/net/p5-Net-FS-Flickr/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 2 17:18:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B52EF16A508; Wed, 2 Aug 2006 17:18:37 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57F6043D45; Wed, 2 Aug 2006 17:18:37 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72HIbHU081216; Wed, 2 Aug 2006 17:18:37 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72HIb87081215; Wed, 2 Aug 2006 17:18:37 GMT (envelope-from rafan) Message-Id: <200608021718.k72HIb87081215@repoman.freebsd.org> From: Rong-En Fan Date: Wed, 2 Aug 2006 17:18: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: 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, 02 Aug 2006 17:18:37 -0000 rafan 2006-08-02 17:18:37 UTC FreeBSD ports repository Modified files: . modules Log: p5-Net-FS-Flickr --> ports/net/p5-Net-FS-Flickr Revision Changes Path 1.15874 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 2 17:22:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CF0216A4E9; Wed, 2 Aug 2006 17:22:10 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85C6143D66; Wed, 2 Aug 2006 17:22:08 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72HM8ap082016; Wed, 2 Aug 2006 17:22:08 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72HM8Mg082015; Wed, 2 Aug 2006 17:22:08 GMT (envelope-from rafan) Message-Id: <200608021722.k72HM8Mg082015@repoman.freebsd.org> From: Rong-En Fan Date: Wed, 2 Aug 2006 17:22: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/security Makefile ports/security/p5-Crypt-OICQ 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, 02 Aug 2006 17:22:10 -0000 rafan 2006-08-02 17:22:08 UTC FreeBSD ports repository Modified files: security Makefile Added files: security/p5-Crypt-OICQ Makefile distinfo pkg-descr pkg-plist Log: Add p5-Crypt-OICQ, cryptographic algorithm used by OICQ protocol. This is for chinese/oicq. Revision Changes Path 1.799 +1 -0 ports/security/Makefile 1.1 +29 -0 ports/security/p5-Crypt-OICQ/Makefile (new) 1.1 +3 -0 ports/security/p5-Crypt-OICQ/distinfo (new) 1.1 +4 -0 ports/security/p5-Crypt-OICQ/pkg-descr (new) 1.1 +4 -0 ports/security/p5-Crypt-OICQ/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 2 17:22:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 70F2916A4EA; Wed, 2 Aug 2006 17:22:15 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE92143D69; Wed, 2 Aug 2006 17:22:14 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72HMEsS082053; Wed, 2 Aug 2006 17:22:14 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72HMEXS082052; Wed, 2 Aug 2006 17:22:14 GMT (envelope-from rafan) Message-Id: <200608021722.k72HMEXS082052@repoman.freebsd.org> From: Rong-En Fan Date: Wed, 2 Aug 2006 17:22: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: 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, 02 Aug 2006 17:22:15 -0000 rafan 2006-08-02 17:22:14 UTC FreeBSD ports repository Modified files: . modules Log: p5-Crypt-OICQ --> ports/security/p5-Crypt-OICQ Revision Changes Path 1.15875 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 2 17:22:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A2BA316A6B3; Wed, 2 Aug 2006 17:22:30 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A7DE43D46; Wed, 2 Aug 2006 17:22:30 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72HMUFY082085; Wed, 2 Aug 2006 17:22:30 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72HMUWj082084; Wed, 2 Aug 2006 17:22:30 GMT (envelope-from marcel) Message-Id: <200608021722.k72HMUWj082084@repoman.freebsd.org> From: Marcel Moolenaar Date: Wed, 2 Aug 2006 17:22: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/etc/mtree BSD.local.dist BSD.usr.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: Wed, 02 Aug 2006 17:22:30 -0000 marcel 2006-08-02 17:22:30 UTC FreeBSD src repository Modified files: etc/mtree BSD.local.dist BSD.usr.dist Log: Remove remnants of Alpha. Revision Changes Path 1.119 +0 -4 src/etc/mtree/BSD.local.dist 1.316 +0 -12 src/etc/mtree/BSD.usr.dist From owner-cvs-all@FreeBSD.ORG Wed Aug 2 17:41:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C616916A4DE; Wed, 2 Aug 2006 17:41:58 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 766B743D79; Wed, 2 Aug 2006 17:41:58 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72Hfwkd082931; Wed, 2 Aug 2006 17:41:58 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72HfwEF082930; Wed, 2 Aug 2006 17:41:58 GMT (envelope-from jhb) Message-Id: <200608021741.k72HfwEF082930@repoman.freebsd.org> From: John Baldwin Date: Wed, 2 Aug 2006 17:41: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/ubsec ubsec.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, 02 Aug 2006 17:41:58 -0000 jhb 2006-08-02 17:41:58 UTC FreeBSD src repository Modified files: sys/dev/ubsec ubsec.c Log: - Use m_getcl(), m_get(), and m_gethdr() rather than the older macros for alloc'ing mbufs so that there is less error handling required. - Go ahead and account for the data space in the first mbuf before entering the loop to alloc more mbuf's. This simplifies the loop logic and avoids confusing Coverity. CID: 817 Reviewed by: sam Tested by: pjd Found by: Coverity Prevent (tm) Revision Changes Path 1.45 +26 -37 src/sys/dev/ubsec/ubsec.c From owner-cvs-all@FreeBSD.ORG Wed Aug 2 17:50:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6BF516A4EA; Wed, 2 Aug 2006 17:50:34 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A5D343D46; Wed, 2 Aug 2006 17:50:31 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72HoVBL083346; Wed, 2 Aug 2006 17:50:31 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72HoVcJ083344; Wed, 2 Aug 2006 17:50:31 GMT (envelope-from jhb) Message-Id: <200608021750.k72HoVcJ083344@repoman.freebsd.org> From: John Baldwin Date: Wed, 2 Aug 2006 17:50: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/powerpc intr_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: Wed, 02 Aug 2006 17:50:34 -0000 jhb 2006-08-02 17:50:31 UTC FreeBSD src repository Modified files: sys/powerpc/powerpc intr_machdep.c Log: Don't ignore errors from intr_event_add_handler(). CID: 1516 Found by: Coverity Prevent (tm) Revision Changes Path 1.8 +1 -3 src/sys/powerpc/powerpc/intr_machdep.c From owner-cvs-all@FreeBSD.ORG Wed Aug 2 18:35:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C494D16A4DA; Wed, 2 Aug 2006 18:35:13 +0000 (UTC) (envelope-from marck@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82EDD43D45; Wed, 2 Aug 2006 18:35:13 +0000 (GMT) (envelope-from marck@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72IZDtS087120; Wed, 2 Aug 2006 18:35:13 GMT (envelope-from marck@repoman.freebsd.org) Received: (from marck@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72IZDFJ087119; Wed, 2 Aug 2006 18:35:13 GMT (envelope-from marck) Message-Id: <200608021835.k72IZDFJ087119@repoman.freebsd.org> From: Dmitry Morozovsky Date: Wed, 2 Aug 2006 18: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/internal bylaws.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, 02 Aug 2006 18:35:13 -0000 marck 2006-08-02 18:35:13 UTC FreeBSD doc repository Modified files: en/internal bylaws.sgml Log: Update info about the last and the next core elections. Approved by: core (imp) Revision Changes Path 1.10 +3 -3 www/en/internal/bylaws.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 2 18:37:45 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 27A7816A4DA; Wed, 2 Aug 2006 18:37:45 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D89DB43D5E; Wed, 2 Aug 2006 18:37:44 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72IbiU6087253; Wed, 2 Aug 2006 18:37:44 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72IbiZk087252; Wed, 2 Aug 2006 18:37:44 GMT (envelope-from rwatson) Message-Id: <200608021837.k72IbiZk087252@repoman.freebsd.org> From: Robert Watson Date: Wed, 2 Aug 2006 18:37: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/kern uipc_socket.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, 02 Aug 2006 18:37:45 -0000 rwatson 2006-08-02 18:37:44 UTC FreeBSD src repository Modified files: sys/kern uipc_socket.c Log: Move destroying kqueue state from above pru_detach to below it in sofree(), as a number of protocols expect to be able to call soisdisconnected() during detach. That may not be a good assumption, but until I'm sure if it's a good assumption or not, allow it. Revision Changes Path 1.278 +2 -2 src/sys/kern/uipc_socket.c From owner-cvs-all@FreeBSD.ORG Wed Aug 2 18:44:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ABADD16A4DE; Wed, 2 Aug 2006 18:44:13 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A68343D46; Wed, 2 Aug 2006 18:44:13 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72IiDF8087716; Wed, 2 Aug 2006 18:44:13 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72IiDsZ087715; Wed, 2 Aug 2006 18:44:13 GMT (envelope-from flz) Message-Id: <200608021844.k72IiDsZ087715@repoman.freebsd.org> From: Florent Thoumie Date: Wed, 2 Aug 2006 18:44:12 +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/rc.d ntpdate src/share/man/man5 rc.conf.5 src/etc/defaults rc.conf X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 02 Aug 2006 18:44:13 -0000 flz 2006-08-02 18:44:12 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc/rc.d ntpdate share/man/man5 rc.conf.5 etc/defaults rc.conf Log: MFC: - Remove hardcoded /etc/ntp.conf configuration file from ntpdate rc.d script and replace it with a new ntpdate_config variable. - Document it in defaults/rc.conf and rc.conf.5. - Document ntpdate_hosts in defaults/rc.conf. src/etc/rc.d/ntpdate: rev 1.15 -> 1.16 src/share/man/man5/rc.conf.5: rev 1.299 -> 1.300 src/etc/defaults/rc.conf: rev 1.288 -> 1.289 Requested by: Chris Timmons Revision Changes Path 1.252.2.23 +2 -0 src/etc/defaults/rc.conf 1.13.2.2 +2 -2 src/etc/rc.d/ntpdate 1.256.2.25 +8 -2 src/share/man/man5/rc.conf.5 From owner-cvs-all@FreeBSD.ORG Wed Aug 2 19:22:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 221EC16A4DE; Wed, 2 Aug 2006 19:22:28 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1CF443D45; Wed, 2 Aug 2006 19:22:27 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72JMR7D090805; Wed, 2 Aug 2006 19:22:27 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72JMR1n090804; Wed, 2 Aug 2006 19:22:27 GMT (envelope-from erwin) Message-Id: <200608021922.k72JMR1n090804@repoman.freebsd.org> From: Erwin Lansing Date: Wed, 2 Aug 2006 19:22: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-mgmt/arpwatch 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, 02 Aug 2006 19:22:28 -0000 erwin 2006-08-02 19:22:27 UTC FreeBSD ports repository Modified files: net-mgmt/arpwatch Makefile distinfo Log: - Update to 2.1.a15 - Add more mirrors PR: 101276 Submitted by: Thomas Abthorpe (maintainer) Revision Changes Path 1.44 +3 -2 ports/net-mgmt/arpwatch/Makefile 1.12 +3 -3 ports/net-mgmt/arpwatch/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 2 19:33:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58D5816A4DD; Wed, 2 Aug 2006 19:33:52 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16B3343D45; Wed, 2 Aug 2006 19:33:52 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72JXqZN091343; Wed, 2 Aug 2006 19:33:52 GMT (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72JXpFf091342; Wed, 2 Aug 2006 19:33:51 GMT (envelope-from sobomax) Message-Id: <200608021933.k72JXpFf091342@repoman.freebsd.org> From: Maxim Sobolev Date: Wed, 2 Aug 2006 19:33: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/ftp/wget 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, 02 Aug 2006 19:33:52 -0000 sobomax 2006-08-02 19:33:51 UTC FreeBSD ports repository Modified files: ftp/wget Makefile Log: Add USE_GMAKE - port's build system doesn't work correctly with bmake, which results in binary being built during installation phase. Revision Changes Path 1.83 +1 -0 ports/ftp/wget/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 2 19:36:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD45316A4DD; Wed, 2 Aug 2006 19:36:18 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59DF943D53; Wed, 2 Aug 2006 19:36:18 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72JaIWX091514; Wed, 2 Aug 2006 19:36:18 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72JaIeI091513; Wed, 2 Aug 2006 19:36:18 GMT (envelope-from ahze) Message-Id: <200608021936.k72JaIeI091513@repoman.freebsd.org> From: Michael Johnson Date: Wed, 2 Aug 2006 19:36: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/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, 02 Aug 2006 19:36:18 -0000 ahze 2006-08-02 19:36:17 UTC FreeBSD ports repository Modified files: www/kazehakase Makefile distinfo Log: - Update to 0.3.9 Revision Changes Path 1.45 +2 -3 ports/www/kazehakase/Makefile 1.24 +3 -3 ports/www/kazehakase/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 2 19:40:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BD8216A4E0; Wed, 2 Aug 2006 19:40:35 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C4FE943D55; Wed, 2 Aug 2006 19:40:34 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72JeYXX091827; Wed, 2 Aug 2006 19:40:34 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72JeYWO091826; Wed, 2 Aug 2006 19:40:34 GMT (envelope-from acm) Message-Id: <200608021940.k72JeYWO091826@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Wed, 2 Aug 2006 19:40: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 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, 02 Aug 2006 19:40:35 -0000 acm 2006-08-02 19:40:34 UTC FreeBSD ports repository Modified files: . LEGAL Log: - Add note about games/linux-quake4 Approved by: garga (mentor) Revision Changes Path 1.489 +2 -1 ports/LEGAL From owner-cvs-all@FreeBSD.ORG Wed Aug 2 19:50:24 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2079B16A4DA; Wed, 2 Aug 2006 19:50:24 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CED3143D53; Wed, 2 Aug 2006 19:50:23 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72JoNR2092432; Wed, 2 Aug 2006 19:50:23 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72JoNXN092429; Wed, 2 Aug 2006 19:50:23 GMT (envelope-from acm) Message-Id: <200608021950.k72JoNXN092429@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Wed, 2 Aug 2006 19:50: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/games/linux-quake4 Makefile distinfo pkg-plist ports/games/linux-quake4/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: Wed, 02 Aug 2006 19:50:24 -0000 acm 2006-08-02 19:50:23 UTC FreeBSD ports repository Modified files: games/linux-quake4 Makefile distinfo pkg-plist games/linux-quake4/files pkg-message.in Log: - Update to 1.3 - Removed USE_X_PREFIX - Added NO_CDROM and NO_PACKAGE - Added linux- prefix to all quake* scripts Approved by: garga (mentor) Revision Changes Path 1.12 +7 -6 ports/games/linux-quake4/Makefile 1.6 +3 -3 ports/games/linux-quake4/distinfo 1.2 +2 -2 ports/games/linux-quake4/files/pkg-message.in 1.8 +19 -9 ports/games/linux-quake4/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 2 20:12:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4771216A4DE; Wed, 2 Aug 2006 20:12:41 +0000 (UTC) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13C1E43D53; Wed, 2 Aug 2006 20:12:41 +0000 (GMT) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72KCedY094842; Wed, 2 Aug 2006 20:12:40 GMT (envelope-from alepulver@repoman.freebsd.org) Received: (from alepulver@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72KCedW094841; Wed, 2 Aug 2006 20:12:40 GMT (envelope-from alepulver) Message-Id: <200608022012.k72KCedW094841@repoman.freebsd.org> From: Alejandro Pulver Date: Wed, 2 Aug 2006 20:12: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/games Makefile ports/games/duke3d-data Makefile Makefile.include distinfo pkg-descr pkg-plist ports/games/duke3d-data/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: Wed, 02 Aug 2006 20:12:41 -0000 alepulver 2006-08-02 20:12:40 UTC FreeBSD ports repository Modified files: games Makefile Added files: games/duke3d-data Makefile Makefile.include distinfo pkg-descr pkg-plist games/duke3d-data/files pkg-message.in Log: This port installs the data files needed to run Duke Nukem 3D. It either asks for the original data, or downloads a shareware version based on the selected options. In the first case you need to have a legitimate copy of the game in order to obtain the DUKE3D.GRP file. WWW: http://www.3drealms.com/duke3d/ Revision Changes Path 1.1020 +1 -0 ports/games/Makefile 1.1 +57 -0 ports/games/duke3d-data/Makefile (new) 1.1 +31 -0 ports/games/duke3d-data/Makefile.include (new) 1.1 +3 -0 ports/games/duke3d-data/distinfo (new) 1.1 +7 -0 ports/games/duke3d-data/files/pkg-message.in (new) 1.1 +6 -0 ports/games/duke3d-data/pkg-descr (new) 1.1 +3 -0 ports/games/duke3d-data/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 2 20:13:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB91716A4DD; Wed, 2 Aug 2006 20:13:19 +0000 (UTC) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 928F643D4C; Wed, 2 Aug 2006 20:13:19 +0000 (GMT) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72KDJ6u094888; Wed, 2 Aug 2006 20:13:19 GMT (envelope-from alepulver@repoman.freebsd.org) Received: (from alepulver@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72KDJBH094887; Wed, 2 Aug 2006 20:13:19 GMT (envelope-from alepulver) Message-Id: <200608022013.k72KDJBH094887@repoman.freebsd.org> From: Alejandro Pulver Date: Wed, 2 Aug 2006 20: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: 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, 02 Aug 2006 20:13:20 -0000 alepulver 2006-08-02 20:13:19 UTC FreeBSD ports repository Modified files: . modules Log: duke3d-data --> ports/games/duke3d-data Revision Changes Path 1.15876 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 2 20:14:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17E0416A4DF; Wed, 2 Aug 2006 20:14:48 +0000 (UTC) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76E8443D5A; Wed, 2 Aug 2006 20:14:47 +0000 (GMT) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72KElBn095058; Wed, 2 Aug 2006 20:14:47 GMT (envelope-from alepulver@repoman.freebsd.org) Received: (from alepulver@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72KElcq095057; Wed, 2 Aug 2006 20:14:47 GMT (envelope-from alepulver) Message-Id: <200608022014.k72KElcq095057@repoman.freebsd.org> From: Alejandro Pulver Date: Wed, 2 Aug 2006 20:14: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 Makefile ports/games/eduke32 Makefile distinfo pkg-descr pkg-plist ports/games/eduke32/files patch-Makefile patch-Makefile.deps patch-source__game.c patch-source__jaudiolib___multivc.h patch-source__jaudiolib__debugio.h patch-source__jaudiolib__dma.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, 02 Aug 2006 20:14:48 -0000 alepulver 2006-08-02 20:14:47 UTC FreeBSD ports repository Modified files: games Makefile Added files: games/eduke32 Makefile distinfo pkg-descr pkg-plist games/eduke32/files patch-Makefile patch-Makefile.deps patch-source__game.c patch-source__jaudiolib___multivc.h patch-source__jaudiolib__debugio.h patch-source__jaudiolib__dma.h patch-source__jaudiolib__dpmi.h patch-source__jaudiolib__dsl.c patch-source__jaudiolib__dsl.h patch-source__jaudiolib__interrup.h patch-source__jaudiolib__nodpmi.c patch-source__jaudiolib__platform.h patch-source__jaudiolib__sdlmusic.c patch-source__jaudiolib__unixglob.c patch-source__jaudiolib__unixpitch.c patch-source__jaudiolib__unixvoc.c patch-source__jaudiolib__util.h Log: EDuke32 is a Windows/Linux/UNIX version of Duke Nukem 3D aimed at highly extending what can be edited in the game. EDuke32 combines the work that JonoF and Ken Silverman have put in to JFDuke3D with the original EDuke work done by Matt Saettler, while simultaneously adding tons of new and useful features. Consequently, EDuke32 is the most advanced version of Duke Nukem 3D in existence. EDuke32 is developed and maintained by Richard "TerminX" Gobeille and the EDuke32 team. This port includes icculus.org/duke3d patches for sound and joystick support. WWW: http://eduke32.com/ Revision Changes Path 1.1021 +1 -0 ports/games/Makefile 1.1 +55 -0 ports/games/eduke32/Makefile (new) 1.1 +9 -0 ports/games/eduke32/distinfo (new) 1.1 +57 -0 ports/games/eduke32/files/patch-Makefile (new) 1.1 +14 -0 ports/games/eduke32/files/patch-Makefile.deps (new) 1.1 +11 -0 ports/games/eduke32/files/patch-source__game.c (new) 1.1 +15 -0 ports/games/eduke32/files/patch-source__jaudiolib___multivc.h (new) 1.1 +33 -0 ports/games/eduke32/files/patch-source__jaudiolib__debugio.h (new) 1.1 +86 -0 ports/games/eduke32/files/patch-source__jaudiolib__dma.h (new) 1.1 +46 -0 ports/games/eduke32/files/patch-source__jaudiolib__dpmi.h (new) 1.1 +260 -0 ports/games/eduke32/files/patch-source__jaudiolib__dsl.c (new) 1.1 +53 -0 ports/games/eduke32/files/patch-source__jaudiolib__dsl.h (new) 1.1 +53 -0 ports/games/eduke32/files/patch-source__jaudiolib__interrup.h (new) 1.1 +53 -0 ports/games/eduke32/files/patch-source__jaudiolib__nodpmi.c (new) 1.1 +64 -0 ports/games/eduke32/files/patch-source__jaudiolib__platform.h (new) 1.1 +481 -0 ports/games/eduke32/files/patch-source__jaudiolib__sdlmusic.c (new) 1.1 +152 -0 ports/games/eduke32/files/patch-source__jaudiolib__unixglob.c (new) 1.1 +215 -0 ports/games/eduke32/files/patch-source__jaudiolib__unixpitch.c (new) 1.1 +2880 -0 ports/games/eduke32/files/patch-source__jaudiolib__unixvoc.c (new) 1.1 +15 -0 ports/games/eduke32/files/patch-source__jaudiolib__util.h (new) 1.1 +11 -0 ports/games/eduke32/pkg-descr (new) 1.1 +6 -0 ports/games/eduke32/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 2 20:15:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D6DA616A4E2; Wed, 2 Aug 2006 20:15:47 +0000 (UTC) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9090E43D55; Wed, 2 Aug 2006 20:15:47 +0000 (GMT) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72KFlSL095152; Wed, 2 Aug 2006 20:15:47 GMT (envelope-from alepulver@repoman.freebsd.org) Received: (from alepulver@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72KFlfM095151; Wed, 2 Aug 2006 20:15:47 GMT (envelope-from alepulver) Message-Id: <200608022015.k72KFlfM095151@repoman.freebsd.org> From: Alejandro Pulver Date: Wed, 2 Aug 2006 20:15: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: 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, 02 Aug 2006 20:15:48 -0000 alepulver 2006-08-02 20:15:47 UTC FreeBSD ports repository Modified files: . modules Log: eduke32 --> ports/games/eduke32 Revision Changes Path 1.15877 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 2 21:58:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CECBF16A4E5; Wed, 2 Aug 2006 21:58:58 +0000 (UTC) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19D5943D6A; Wed, 2 Aug 2006 21:58:56 +0000 (GMT) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72Lwtpq010210; Wed, 2 Aug 2006 21:58:56 GMT (envelope-from markus@repoman.freebsd.org) Received: (from markus@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72LwtXl010209; Wed, 2 Aug 2006 21:58:55 GMT (envelope-from markus) Message-Id: <200608022158.k72LwtXl010209@repoman.freebsd.org> From: Markus Brueffer Date: Wed, 2 Aug 2006 21:58: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-p2p/ktorrent-devel Makefile distinfo pkg-plist ports/net-p2p/ktorrent-devel/files patch-libktorrent-net-socket.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, 02 Aug 2006 21:58:58 -0000 markus 2006-08-02 21:58:55 UTC FreeBSD ports repository Modified files: net-p2p/ktorrent-devel Makefile distinfo pkg-plist Removed files: net-p2p/ktorrent-devel/files patch-libktorrent-net-socket.cpp Log: - Update to snapshot from 02.08.2006 - Removed the GeoIP configure check in the tarball as it doesn't work and failed to install the required GeoIP database - Pet portlint - Remove upstream applied patch Revision Changes Path 1.12 +3 -3 ports/net-p2p/ktorrent-devel/Makefile 1.7 +3 -3 ports/net-p2p/ktorrent-devel/distinfo 1.2 +0 -29 ports/net-p2p/ktorrent-devel/files/patch-libktorrent-net-socket.cpp (dead) 1.9 +2 -0 ports/net-p2p/ktorrent-devel/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 2 22:24:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8FAE316A4DD; Wed, 2 Aug 2006 22:24:21 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F9B743D45; Wed, 2 Aug 2006 22:24:21 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72MOLqr012796; Wed, 2 Aug 2006 22:24:21 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72MOL3i012795; Wed, 2 Aug 2006 22:24:21 GMT (envelope-from brooks) Message-Id: <200608022224.k72MOL3i012795@repoman.freebsd.org> From: Brooks Davis Date: Wed, 2 Aug 2006 22: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/www/drupal Makefile distinfo 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, 02 Aug 2006 22:24:21 -0000 brooks 2006-08-02 22:24:21 UTC FreeBSD ports repository Modified files: www/drupal Makefile distinfo security/vuxml vuln.xml Log: Update drupal to 4.6.9 to fix yet another XSS vulnerability. Security: vuxml vid c905298c-2274-11db-896e-000ae42e9b93 Revision Changes Path 1.1097 +28 -1 ports/security/vuxml/vuln.xml 1.28 +4 -2 ports/www/drupal/Makefile 1.16 +3 -3 ports/www/drupal/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 2 22:55:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93DDA16A4E6; Wed, 2 Aug 2006 22:55:18 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 522CC43D46; Wed, 2 Aug 2006 22:55:18 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72MtIHp019843; Wed, 2 Aug 2006 22:55:18 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72MtIcB019842; Wed, 2 Aug 2006 22:55:18 GMT (envelope-from rafan) Message-Id: <200608022255.k72MtIcB019842@repoman.freebsd.org> From: Rong-En Fan Date: Wed, 2 Aug 2006 22:55: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/chinese/oicq 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, 02 Aug 2006 22:55:18 -0000 rafan 2006-08-02 22:55:17 UTC FreeBSD ports repository Modified files: chinese/oicq Makefile Log: - Add missing dependency security/p5-Crypt-OICQ This module is used, but not listed in Makefile.PL - Bump PORTREVISION - Require Perl 5.8+ since p5-Crypt-OICQ needs it Revision Changes Path 1.7 +5 -3 ports/chinese/oicq/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 2 23:31:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA05B16A4DD; Wed, 2 Aug 2006 23:31:10 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BEBD43D5C; Wed, 2 Aug 2006 23:31:10 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72NVANV027203; Wed, 2 Aug 2006 23:31:10 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72NVAw6027202; Wed, 2 Aug 2006 23:31:10 GMT (envelope-from rafan) Message-Id: <200608022331.k72NVAw6027202@repoman.freebsd.org> From: Rong-En Fan Date: Wed, 2 Aug 2006 23:31: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/pear-Console_Table 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, 02 Aug 2006 23:31:11 -0000 rafan 2006-08-02 23:31:09 UTC FreeBSD ports repository Modified files: devel/pear-Console_Table Makefile distinfo Log: - Update to 1.0.4 - Pass maintainership to submitter PR: ports/101265 Submitted by: chinsan Revision Changes Path 1.6 +3 -2 ports/devel/pear-Console_Table/Makefile 1.5 +3 -3 ports/devel/pear-Console_Table/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 2 23:32:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 18A3D16A4DF; Wed, 2 Aug 2006 23:32:44 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCEB043D58; Wed, 2 Aug 2006 23:32:43 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72NWhcP027294; Wed, 2 Aug 2006 23:32:43 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72NWhoa027293; Wed, 2 Aug 2006 23:32:43 GMT (envelope-from ahze) Message-Id: <200608022332.k72NWhoa027293@repoman.freebsd.org> From: Michael Johnson Date: Wed, 2 Aug 2006 23:32: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/databases/qdbm 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, 02 Aug 2006 23:32:44 -0000 ahze 2006-08-02 23:32:43 UTC FreeBSD ports repository Modified files: databases/qdbm Makefile distinfo pkg-plist Log: - Update to 1.8.65 Revision Changes Path 1.69 +1 -1 ports/databases/qdbm/Makefile 1.63 +3 -3 ports/databases/qdbm/distinfo 1.38 +2 -2 ports/databases/qdbm/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 2 23:33:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC90716A505; Wed, 2 Aug 2006 23:33:07 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9949043D66; Wed, 2 Aug 2006 23:33:06 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72NX6bF027350; Wed, 2 Aug 2006 23:33:06 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72NX6Cd027349; Wed, 2 Aug 2006 23:33:06 GMT (envelope-from ahze) Message-Id: <200608022333.k72NX6Cd027349@repoman.freebsd.org> From: Michael Johnson Date: Wed, 2 Aug 2006 23:33: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/textproc/hyperestraier 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, 02 Aug 2006 23:33:07 -0000 ahze 2006-08-02 23:33:06 UTC FreeBSD ports repository Modified files: textproc/hyperestraier Makefile distinfo pkg-plist Log: - Update to 1.3.5 Revision Changes Path 1.31 +3 -3 ports/textproc/hyperestraier/Makefile 1.28 +3 -3 ports/textproc/hyperestraier/distinfo 1.26 +2 -1 ports/textproc/hyperestraier/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 2 23:33:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4E6F16A4E2; Wed, 2 Aug 2006 23:33:30 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA77943D49; Wed, 2 Aug 2006 23:33:29 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72NXTAw027430; Wed, 2 Aug 2006 23:33:29 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72NXTPu027429; Wed, 2 Aug 2006 23:33:29 GMT (envelope-from ahze) Message-Id: <200608022333.k72NXTPu027429@repoman.freebsd.org> From: Michael Johnson Date: Wed, 2 Aug 2006 23:33: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/textproc/estraier 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, 02 Aug 2006 23:33:30 -0000 ahze 2006-08-02 23:33:29 UTC FreeBSD ports repository Modified files: textproc/estraier Makefile Log: - Chase libver bump in qdbm Revision Changes Path 1.20 +2 -2 ports/textproc/estraier/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 2 23:33:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F3C616A4E1; Wed, 2 Aug 2006 23:33:40 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBC9743D7C; Wed, 2 Aug 2006 23:33:36 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72NXa5R027465; Wed, 2 Aug 2006 23:33:36 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72NXaDZ027464; Wed, 2 Aug 2006 23:33:36 GMT (envelope-from rafan) Message-Id: <200608022333.k72NXaDZ027464@repoman.freebsd.org> From: Rong-En Fan Date: Wed, 2 Aug 2006 23:33: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/x11-toolkits/ocaml-lablgtk 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, 02 Aug 2006 23:33:40 -0000 rafan 2006-08-02 23:33:36 UTC FreeBSD ports repository Modified files: x11-toolkits/ocaml-lablgtk Makefile distinfo pkg-plist Log: - Update to 1.2.7 - Use new OCaml framework - Respect PREFIX - Add OPTIONS - Install findlib's META - Keep permissions safe by replacing cp to BSD_INSTALL_* equivalents - Pass maintainership to submitter PR: ports/101144 Submitted by: Stanislav Sedov (new maintainer) Approved by: Ronald Kuehn (old maintainer) Revision Changes Path 1.13 +54 -27 ports/x11-toolkits/ocaml-lablgtk/Makefile 1.4 +3 -3 ports/x11-toolkits/ocaml-lablgtk/distinfo 1.3 +59 -56 ports/x11-toolkits/ocaml-lablgtk/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 2 23:34:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E6E5316A4E6; Wed, 2 Aug 2006 23:34:05 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D3C543D96; Wed, 2 Aug 2006 23:33:55 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72NXtw7027506; Wed, 2 Aug 2006 23:33:55 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72NXtgJ027505; Wed, 2 Aug 2006 23:33:55 GMT (envelope-from ahze) Message-Id: <200608022333.k72NXtgJ027505@repoman.freebsd.org> From: Michael Johnson Date: Wed, 2 Aug 2006 23:33: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/bogofilter-qdbm 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, 02 Aug 2006 23:34:06 -0000 ahze 2006-08-02 23:33:55 UTC FreeBSD ports repository Modified files: mail/bogofilter-qdbm Makefile Log: - Chase libver bump in qdbm Revision Changes Path 1.22 +2 -1 ports/mail/bogofilter-qdbm/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 2 23:34:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F178316A4DA; Wed, 2 Aug 2006 23:34:58 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 432A843D6D; Wed, 2 Aug 2006 23:34:55 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k72NYtKe027558; Wed, 2 Aug 2006 23:34:55 GMT (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k72NYtoh027557; Wed, 2 Aug 2006 23:34:55 GMT (envelope-from sobomax) Message-Id: <200608022334.k72NYtoh027557@repoman.freebsd.org> From: Maxim Sobolev Date: Wed, 2 Aug 2006 23:34: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/devel/gdb6/files patch-gdb_config_powerpc_fbsd.mh patch-gdb_config_powerpc_fbsd.mt patch-gdb_configure.host patch-gdb_ppcfbsd-nat.c patch-gdb_ppcfbsd-tdep.c patch-gdb_ppcfbsd-tdep.h patch-gdb_rs6000-tdep.c patch-target.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, 02 Aug 2006 23:34:59 -0000 sobomax 2006-08-02 23:34:55 UTC FreeBSD ports repository Modified files: devel/gdb6/files patch-target.c Added files: devel/gdb6/files patch-gdb_config_powerpc_fbsd.mh patch-gdb_config_powerpc_fbsd.mt patch-gdb_configure.host patch-gdb_ppcfbsd-nat.c patch-gdb_ppcfbsd-tdep.c patch-gdb_ppcfbsd-tdep.h patch-gdb_rs6000-tdep.c Log: Unbreak on FreeBSD/powerpc. Doesn't affect any other platforms. Submitted by: Andreas Tobler Revision Changes Path 1.1 +10 -0 ports/devel/gdb6/files/patch-gdb_config_powerpc_fbsd.mh (new) 1.1 +13 -0 ports/devel/gdb6/files/patch-gdb_config_powerpc_fbsd.mt (new) 1.1 +13 -0 ports/devel/gdb6/files/patch-gdb_configure.host (new) 1.1 +196 -0 ports/devel/gdb6/files/patch-gdb_ppcfbsd-nat.c (new) 1.1 +347 -0 ports/devel/gdb6/files/patch-gdb_ppcfbsd-tdep.c (new) 1.1 +36 -0 ports/devel/gdb6/files/patch-gdb_ppcfbsd-tdep.h (new) 1.1 +13 -0 ports/devel/gdb6/files/patch-gdb_rs6000-tdep.c (new) 1.5 +13 -3 ports/devel/gdb6/files/patch-target.c From owner-cvs-all@FreeBSD.ORG Thu Aug 3 00:15:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7BCC616A4E0; Thu, 3 Aug 2006 00:15:23 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23A4243D72; Thu, 3 Aug 2006 00:15:19 +0000 (GMT) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k730FJ2g030630; Thu, 3 Aug 2006 00:15:19 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from yongari@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k730FJ41030629; Thu, 3 Aug 2006 00:15:19 GMT (envelope-from yongari) Message-Id: <200608030015.k730FJ41030629@repoman.freebsd.org> From: Pyun YongHyeon Date: Thu, 3 Aug 2006 00:15: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/dev/re if_re.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, 03 Aug 2006 00:15:23 -0000 yongari 2006-08-03 00:15:19 UTC FreeBSD src repository Modified files: sys/dev/re if_re.c Log: Fix re(4) breakge introduced in tree from rev 1.68. This should fix incorrect configuration of station address on big-endian architectures. Reviewed by: wpaul Tested on: sparc64 Revision Changes Path 1.72 +5 -6 src/sys/dev/re/if_re.c From owner-cvs-all@FreeBSD.ORG Thu Aug 3 00:22:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3058716A4DE; Thu, 3 Aug 2006 00:22:07 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C126943D58; Thu, 3 Aug 2006 00:22:06 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k730M6tv031129; Thu, 3 Aug 2006 00:22:06 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k730M6De031128; Thu, 3 Aug 2006 00:22:06 GMT (envelope-from maho) Message-Id: <200608030022.k730M6De031128@repoman.freebsd.org> From: Maho Nakata Date: Thu, 3 Aug 2006 00: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/java Makefile ports/java/ecj-bootstrap Makefile distinfo pkg-descr pkg-plist ports/java/ecj-bootstrap/files build.sh patch-encoding patch-gcjant X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Aug 2006 00:22:07 -0000 maho 2006-08-03 00:22:06 UTC FreeBSD ports repository Modified files: java Makefile Added files: java/ecj-bootstrap Makefile distinfo pkg-descr pkg-plist java/ecj-bootstrap/files build.sh patch-encoding patch-gcjant Log: The JDT Core Batch Compiler (stand alone verison of the Eclipse Java Compiler). This compiler is compatible with Java 1.3, 1.4 and 1.5. WWW: http://www.eclipse.org Revision Changes Path 1.170 +1 -0 ports/java/Makefile 1.1 +56 -0 ports/java/ecj-bootstrap/Makefile (new) 1.1 +6 -0 ports/java/ecj-bootstrap/distinfo (new) 1.1 +68 -0 ports/java/ecj-bootstrap/files/build.sh (new) 1.1 +32 -0 ports/java/ecj-bootstrap/files/patch-encoding (new) 1.1 +22 -0 ports/java/ecj-bootstrap/files/patch-gcjant (new) 1.1 +5 -0 ports/java/ecj-bootstrap/pkg-descr (new) 1.1 +4 -0 ports/java/ecj-bootstrap/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 3 00:22:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68F8916A516; Thu, 3 Aug 2006 00:22:28 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2EB2D43D45; Thu, 3 Aug 2006 00:22:28 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k730MSRt031173; Thu, 3 Aug 2006 00:22:28 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k730MSno031172; Thu, 3 Aug 2006 00:22:28 GMT (envelope-from maho) Message-Id: <200608030022.k730MSno031172@repoman.freebsd.org> From: Maho Nakata Date: Thu, 3 Aug 2006 00:22: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: 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, 03 Aug 2006 00:22:28 -0000 maho 2006-08-03 00:22:28 UTC FreeBSD ports repository Modified files: . modules Log: ecj-bootstrap --> ports/java/ecj-bootstrap Revision Changes Path 1.15878 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Aug 3 00:25:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B75B216A4DA; Thu, 3 Aug 2006 00:25:05 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E42F43D5A; Thu, 3 Aug 2006 00:25:04 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k730P3GE031302; Thu, 3 Aug 2006 00:25:03 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k730P3uj031301; Thu, 3 Aug 2006 00:25:03 GMT (envelope-from maho) Message-Id: <200608030025.k730P3uj031301@repoman.freebsd.org> From: Maho Nakata Date: Thu, 3 Aug 2006 00:25: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/java/java-gcj-compat Makefile ports/java/java-gcj-compat/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, 03 Aug 2006 00:25:05 -0000 maho 2006-08-03 00:25:03 UTC FreeBSD ports repository Modified files: java/java-gcj-compat Makefile java/java-gcj-compat/files patch-Makefile.in Log: Use gcj instead of ecj, and bump portrevision. Revision Changes Path 1.3 +3 -1 ports/java/java-gcj-compat/Makefile 1.2 +0 -9 ports/java/java-gcj-compat/files/patch-Makefile.in From owner-cvs-all@FreeBSD.ORG Thu Aug 3 00:36:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BAF0416A4DA; Thu, 3 Aug 2006 00:36:52 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B6F543D60; Thu, 3 Aug 2006 00:36:42 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k730agb9031907; Thu, 3 Aug 2006 00:36:42 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k730agq1031906; Thu, 3 Aug 2006 00:36:42 GMT (envelope-from ahze) Message-Id: <200608030036.k730agq1031906@repoman.freebsd.org> From: Michael Johnson Date: Thu, 3 Aug 2006 00:36: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/kazehakase 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, 03 Aug 2006 00:36:52 -0000 ahze 2006-08-03 00:36:42 UTC FreeBSD ports repository Modified files: www/kazehakase Makefile Log: - Remove the xulrunner gecko hack as kazehakase supports xulrunner now Revision Changes Path 1.46 +1 -1 ports/www/kazehakase/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 00:38:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E99116A4E2; Thu, 3 Aug 2006 00:38:34 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2327143D70; Thu, 3 Aug 2006 00:38:32 +0000 (GMT) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k730cW6b032011; Thu, 3 Aug 2006 00:38:32 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k730cW2O032010; Thu, 3 Aug 2006 00:38:32 GMT (envelope-from mezz) Message-Id: <200608030038.k730cW2O032010@repoman.freebsd.org> From: Jeremy Messenger Date: Thu, 3 Aug 2006 00:38: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 UPDATING ports/www/linux-opera Makefile distinfo pkg-message pkg-plist ports/www/linux-opera/files patch-install.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: Thu, 03 Aug 2006 00:38:34 -0000 mezz 2006-08-03 00:38:32 UTC FreeBSD ports repository Modified files: . UPDATING www/linux-opera Makefile distinfo pkg-message pkg-plist www/linux-opera/files patch-install.sh Log: - Update to 9.01, see changelog for details: http://www.opera.com/docs/changelogs/linux/901/ - Change the prefix from X11BASE to LOCALBASE, see UPDATING for details. - Now it installs only one *.desktop for more general desktop such as xfce and etc rather than just limit to GNOME/KDE. Revision Changes Path 1.377 +10 -1 ports/UPDATING 1.75 +16 -33 ports/www/linux-opera/Makefile 1.42 +3 -3 ports/www/linux-opera/distinfo 1.19 +63 -177 ports/www/linux-opera/files/patch-install.sh 1.19 +1 -1 ports/www/linux-opera/pkg-message 1.30 +5 -12 ports/www/linux-opera/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 3 00:44:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76CB116A4DA; Thu, 3 Aug 2006 00:44:39 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07E9043D46; Thu, 3 Aug 2006 00:44:39 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k730icQK032321; Thu, 3 Aug 2006 00:44:38 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k730ic2r032320; Thu, 3 Aug 2006 00:44:38 GMT (envelope-from clsung) Message-Id: <200608030044.k730ic2r032320@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 3 Aug 2006 00:44: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-Acme-MetaSyntactic Makefile Makefile.man 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, 03 Aug 2006 00:44:39 -0000 clsung 2006-08-03 00:44:38 UTC FreeBSD ports repository Modified files: devel/p5-Acme-MetaSyntactic Makefile Makefile.man distinfo pkg-plist Log: - update to 0.85 Revision Changes Path 1.15 +1 -1 ports/devel/p5-Acme-MetaSyntactic/Makefile 1.14 +1 -2 ports/devel/p5-Acme-MetaSyntactic/Makefile.man 1.15 +3 -3 ports/devel/p5-Acme-MetaSyntactic/distinfo 1.14 +0 -1 ports/devel/p5-Acme-MetaSyntactic/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 3 00:51:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB7BB16A4DA; Thu, 3 Aug 2006 00:51:34 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC1F143D68; Thu, 3 Aug 2006 00:51:29 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k730pT93040548; Thu, 3 Aug 2006 00:51:29 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k730pTWo040547; Thu, 3 Aug 2006 00:51:29 GMT (envelope-from clsung) Message-Id: <200608030051.k730pTWo040547@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 3 Aug 2006 00:51: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-p2p Makefile ports/net-p2p/p5-WWW-BitTorrent Makefile distinfo p5-WWW-BitTorrent-0.01.tbz 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, 03 Aug 2006 00:51:34 -0000 clsung 2006-08-03 00:51:29 UTC FreeBSD ports repository Modified files: net-p2p Makefile Added files: net-p2p/p5-WWW-BitTorrent Makefile distinfo p5-WWW-BitTorrent-0.01.tbz pkg-descr pkg-plist Log: Add p5-WWW-BitTorrent 0.01, search and Download .torrent(s) files from BitTorrents boards. PR: ports/101267 Submitted by: Tsung-Han Yeh Revision Changes Path 1.15 +1 -0 ports/net-p2p/Makefile 1.1 +31 -0 ports/net-p2p/p5-WWW-BitTorrent/Makefile (new) 1.1 +3 -0 ports/net-p2p/p5-WWW-BitTorrent/distinfo (new) 1.1 +46 -0 ports/net-p2p/p5-WWW-BitTorrent/p5-WWW-BitTorrent-0.01.tbz (new) 1.1 +4 -0 ports/net-p2p/p5-WWW-BitTorrent/pkg-descr (new) 1.1 +6 -0 ports/net-p2p/p5-WWW-BitTorrent/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 3 00:51:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64F9F16A4DF; Thu, 3 Aug 2006 00:51:50 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 295F543D72; Thu, 3 Aug 2006 00:51:46 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k730pkdT040590; Thu, 3 Aug 2006 00:51:46 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k730pkJf040589; Thu, 3 Aug 2006 00:51:46 GMT (envelope-from clsung) Message-Id: <200608030051.k730pkJf040589@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 3 Aug 2006 00:51: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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Aug 2006 00:51:50 -0000 clsung 2006-08-03 00:51:46 UTC FreeBSD ports repository Modified files: . modules Log: p5-WWW-BitTorrent --> ports/net-p2p/p5-WWW-BitTorrent Revision Changes Path 1.15879 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Aug 3 01:17:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE14A16A4DD; Thu, 3 Aug 2006 01:17:28 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73E1B43D45; Thu, 3 Aug 2006 01:17:28 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k731HSAl042926; Thu, 3 Aug 2006 01:17:28 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k731HS68042925; Thu, 3 Aug 2006 01:17:28 GMT (envelope-from acm) Message-Id: <200608030117.k731HS68042925@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Thu, 3 Aug 2006 01:17: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 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: Thu, 03 Aug 2006 01:17:28 -0000 acm 2006-08-03 01:17:28 UTC FreeBSD ports repository Modified files: . LEGAL Log: - Fix the entry for linux-quake4. Now this affect to linux-quake4 and linux-quake4-demo Approved by: garga (mentor) Revision Changes Path 1.490 +2 -2 ports/LEGAL From owner-cvs-all@FreeBSD.ORG Thu Aug 3 01:18:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 063E416A4DD; Thu, 3 Aug 2006 01:18:43 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B773243D53; Thu, 3 Aug 2006 01:18:42 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k731IgmP042971; Thu, 3 Aug 2006 01:18:42 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k731IgY1042970; Thu, 3 Aug 2006 01:18:42 GMT (envelope-from ahze) Message-Id: <200608030118.k731IgY1042970@repoman.freebsd.org> From: Michael Johnson Date: Thu, 3 Aug 2006 01:18: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/Mk bsd.sites.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: Thu, 03 Aug 2006 01:18:43 -0000 ahze 2006-08-03 01:18:42 UTC FreeBSD ports repository Modified files: Mk bsd.sites.mk Log: - Add MASTER_SITE_MOZILLA_EXTENDED, this can be used for most gecko extensions, themes, and most gecko's (add's 14+ hosts via releases.mozilla.org vs. MASTER_SITE_MOZILLA) Revision Changes Path 1.394 +6 -1 ports/Mk/bsd.sites.mk From owner-cvs-all@FreeBSD.ORG Thu Aug 3 01:20:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ABDF816A4E0; Thu, 3 Aug 2006 01:20:38 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70F3F43D4C; Thu, 3 Aug 2006 01:20:38 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k731Kc3E043120; Thu, 3 Aug 2006 01:20:38 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k731Kc8c043119; Thu, 3 Aug 2006 01:20:38 GMT (envelope-from ahze) Message-Id: <200608030120.k731Kc8c043119@repoman.freebsd.org> From: Michael Johnson Date: Thu, 3 Aug 2006 01:20: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/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, 03 Aug 2006 01:20:38 -0000 ahze 2006-08-03 01:20:38 UTC FreeBSD ports repository Modified files: www/seamonkey Makefile distinfo Log: - Update to 1.0.4 - Use MASTER_SITE_MOZILLA_EXTENDED Revision Changes Path 1.251 +2 -2 ports/www/seamonkey/Makefile 1.89 +3 -3 ports/www/seamonkey/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 3 01:24:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E647916A4DF; Thu, 3 Aug 2006 01:24:35 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA1B143D4C; Thu, 3 Aug 2006 01:24:35 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k731OZ9Y043332; Thu, 3 Aug 2006 01:24:35 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k731OYN6043331; Thu, 3 Aug 2006 01:24:34 GMT (envelope-from ahze) Message-Id: <200608030124.k731OYN6043331@repoman.freebsd.org> From: Michael Johnson Date: Thu, 3 Aug 2006 01:24: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/Mk bsd.sites.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: Thu, 03 Aug 2006 01:24:36 -0000 ahze 2006-08-03 01:24:34 UTC FreeBSD ports repository Modified files: Mk bsd.sites.mk Log: - Make MASTER_SITES_MOZILLA_EXTENDED follow same format as other master sites Revision Changes Path 1.395 +4 -3 ports/Mk/bsd.sites.mk From owner-cvs-all@FreeBSD.ORG Thu Aug 3 02:33:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9205F16A4DD; Thu, 3 Aug 2006 02:33:34 +0000 (UTC) (envelope-from shaun@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52EA843D46; Thu, 3 Aug 2006 02:33:34 +0000 (GMT) (envelope-from shaun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k732XYEt047939; Thu, 3 Aug 2006 02:33:34 GMT (envelope-from shaun@repoman.freebsd.org) Received: (from shaun@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k732XY4o047938; Thu, 3 Aug 2006 02:33:34 GMT (envelope-from shaun) Message-Id: <200608030233.k732XY4o047938@repoman.freebsd.org> From: Shaun Amott Date: Thu, 3 Aug 2006 02:33: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/multimedia/helixplayer Makefile pkg-plist ports/multimedia/helixplayer/files patch-amd64 patch-build.bif patch-build_umakecf_freebsd.cf patch-common_netio_pub_platform_unix_sockio.h patch-digestauth patch-expat patch-getopt patch-hxbuffer.h patch-i386 ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Aug 2006 02:33:34 -0000 shaun 2006-08-03 02:33:34 UTC FreeBSD ports repository Modified files: multimedia/helixplayer Makefile pkg-plist multimedia/helixplayer/files patch-build_umakecf_freebsd.cf patch-common_netio_pub_platform_unix_sockio.h patch-player_app_gtk_embeddedapp.cpp Added files: multimedia/helixplayer/files patch-amd64 patch-build.bif patch-digestauth patch-expat patch-getopt patch-hxbuffer.h patch-i386 patch-noimport patch-noinstaller patch-plugin patch-pxpngdec patch-sysinfo patch-sysjpeg patch-sysmd5 patch-timeval patch-types patch-unix.pcf patch-util patch-vdecopcl.c patch-xmldll Log: Add some substantial improvements to the helixplayer port. I have decided to leave this marked IGNORE/BROKEN for the moment until I can figure out if/when/why the build is failing; but also, I have a few more changes to make before I bring it back to life. This is courtesy of Mikhail Teterin, with some input from Thierry Thomas. 1) Allow port to build and execute on amd64. 2) Do not build the bundled png, jpg, zlib, bzip2, getopt, md5: do not even extract them -- use the ports and the OS versions (OpenSSL in case of md5 -- it may be assembler-optimized on some arches even) 3) Do not build the giant install.bz2, which the do-install target would then untar in ${PREFIX}/HelixPlayer -- leave that whole part alone and simply copy the stuff under PREFIX. 4) Check for build failures (parsing the end of build.out) and fail in post-built, of any modules failed. 5) Fix JPEG image display. Revision Changes Path 1.5 +24 -10 ports/multimedia/helixplayer/Makefile 1.1 +9 -0 ports/multimedia/helixplayer/files/patch-amd64 (new) 1.1 +422 -0 ports/multimedia/helixplayer/files/patch-build.bif (new) 1.2 +1 -1 ports/multimedia/helixplayer/files/patch-build_umakecf_freebsd.cf 1.2 +13 -5 ports/multimedia/helixplayer/files/patch-common_netio_pub_platform_unix_sockio.h 1.1 +25 -0 ports/multimedia/helixplayer/files/patch-digestauth (new) 1.1 +46 -0 ports/multimedia/helixplayer/files/patch-expat (new) 1.1 +9 -0 ports/multimedia/helixplayer/files/patch-getopt (new) 1.1 +9 -0 ports/multimedia/helixplayer/files/patch-hxbuffer.h (new) 1.1 +10 -0 ports/multimedia/helixplayer/files/patch-i386 (new) 1.1 +188 -0 ports/multimedia/helixplayer/files/patch-noimport (new) 1.1 +9 -0 ports/multimedia/helixplayer/files/patch-noinstaller (new) 1.2 +31 -5 ports/multimedia/helixplayer/files/patch-player_app_gtk_embeddedapp.cpp 1.1 +290 -0 ports/multimedia/helixplayer/files/patch-plugin (new) 1.1 +14 -0 ports/multimedia/helixplayer/files/patch-pxpngdec (new) 1.1 +43 -0 ports/multimedia/helixplayer/files/patch-sysinfo (new) 1.1 +54 -0 ports/multimedia/helixplayer/files/patch-sysjpeg (new) 1.1 +193 -0 ports/multimedia/helixplayer/files/patch-sysmd5 (new) 1.1 +16 -0 ports/multimedia/helixplayer/files/patch-timeval (new) 1.1 +118 -0 ports/multimedia/helixplayer/files/patch-types (new) 1.1 +54 -0 ports/multimedia/helixplayer/files/patch-unix.pcf (new) 1.1 +17 -0 ports/multimedia/helixplayer/files/patch-util (new) 1.1 +9 -0 ports/multimedia/helixplayer/files/patch-vdecopcl.c (new) 1.1 +21 -0 ports/multimedia/helixplayer/files/patch-xmldll (new) 1.2 +0 -2 ports/multimedia/helixplayer/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 3 02:33:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA9A416A4DA; Thu, 3 Aug 2006 02:33:43 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C40A43D45; Thu, 3 Aug 2006 02:33:43 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k732Xhpi047972; Thu, 3 Aug 2006 02:33:43 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k732Xh1m047971; Thu, 3 Aug 2006 02:33:43 GMT (envelope-from maho) Message-Id: <200608030233.k732Xh1m047971@repoman.freebsd.org> From: Maho Nakata Date: Thu, 3 Aug 2006 02:33: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/java/java-gcj-compat 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: Thu, 03 Aug 2006 02:33:43 -0000 maho 2006-08-03 02:33:43 UTC FreeBSD ports repository Modified files: java/java-gcj-compat Makefile pkg-plist Log: Add gcj41, gij41 etc as gcj, gij, etc respectively, Bump portrevision. Revision Changes Path 1.4 +5 -1 ports/java/java-gcj-compat/Makefile 1.2 +4 -0 ports/java/java-gcj-compat/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 3 02:48:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 769C716A4DA; Thu, 3 Aug 2006 02:48:30 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B68843D45; Thu, 3 Aug 2006 02:48:30 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k732mUnu048769; Thu, 3 Aug 2006 02:48:30 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k732mUUT048768; Thu, 3 Aug 2006 02:48:30 GMT (envelope-from clsung) Message-Id: <200608030248.k732mUUT048768@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 3 Aug 2006 02:48: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/lang/pugs 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: Thu, 03 Aug 2006 02:48:30 -0000 clsung 2006-08-03 02:48:29 UTC FreeBSD ports repository Modified files: lang/pugs Makefile pkg-plist Log: - unbreak - adding some files into pkg-plist Revision Changes Path 1.12 +2 -2 ports/lang/pugs/Makefile 1.9 +272 -0 ports/lang/pugs/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 3 03:01:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8DAAB16A4DD; Thu, 3 Aug 2006 03:01:38 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3ACA943D46; Thu, 3 Aug 2006 03:01:38 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7331cHb049624; Thu, 3 Aug 2006 03:01:38 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7331cSL049623; Thu, 3 Aug 2006 03:01:38 GMT (envelope-from marcus) Message-Id: <200608030301.k7331cSL049623@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Aug 2006 03:01: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/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: Thu, 03 Aug 2006 03:01:38 -0000 marcus 2006-08-03 03:01:37 UTC FreeBSD ports repository Modified files: x11/gnome2 Makefile Log: Presenting GNOME 2.14.3 for FreeBSD. See http://mail.gnome.org/archives/devel-announce-list/2006-August/msg00001.html for a list of all the changes. Revision Changes Path 1.125 +2 -2 ports/x11/gnome2/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 03:03:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C50516A4DA; Thu, 3 Aug 2006 03:03:19 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0FF5143D49; Thu, 3 Aug 2006 03:03:19 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7333IVk051033; Thu, 3 Aug 2006 03:03:18 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7333I1c051032; Thu, 3 Aug 2006 03:03:18 GMT (envelope-from clsung) Message-Id: <200608030303.k7333I1c051032@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 3 Aug 2006 03:03: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/textproc Makefile ports/textproc/yamcha 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, 03 Aug 2006 03:03:19 -0000 clsung 2006-08-03 03:03:18 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/yamcha Makefile distinfo pkg-descr pkg-plist Log: - YamCha is a generic, customizable, and open source text chunker oriented toward a lot of NLP tasks. Revision Changes Path 1.1041 +1 -0 ports/textproc/Makefile 1.1 +38 -0 ports/textproc/yamcha/Makefile (new) 1.1 +3 -0 ports/textproc/yamcha/distinfo (new) 1.1 +8 -0 ports/textproc/yamcha/pkg-descr (new) 1.1 +23 -0 ports/textproc/yamcha/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 3 03:03:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A423D16A526; Thu, 3 Aug 2006 03:03:37 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5019B43D45; Thu, 3 Aug 2006 03:03:37 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7333bFo051077; Thu, 3 Aug 2006 03:03:37 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7333bpJ051076; Thu, 3 Aug 2006 03:03:37 GMT (envelope-from clsung) Message-Id: <200608030303.k7333bpJ051076@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 3 Aug 2006 03:03: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: 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, 03 Aug 2006 03:03:37 -0000 clsung 2006-08-03 03:03:37 UTC FreeBSD ports repository Modified files: . modules Log: yamcha --> ports/textproc/yamcha Revision Changes Path 1.15880 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Aug 3 03:20:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A06AD16A501; Thu, 3 Aug 2006 03:20:47 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61ED743D45; Thu, 3 Aug 2006 03:20:47 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k733KlK0052018; Thu, 3 Aug 2006 03:20:47 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k733KliC052017; Thu, 3 Aug 2006 03:20:47 GMT (envelope-from clsung) Message-Id: <200608030320.k733KliC052017@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 3 Aug 2006 03:20: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/tintin++-devel Makefile distinfo ports/net/tintin++-devel/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: Thu, 03 Aug 2006 03:20:47 -0000 clsung 2006-08-03 03:20:47 UTC FreeBSD ports repository Modified files: net/tintin++-devel Makefile distinfo net/tintin++-devel/files patch-src__Makefile.in Log: - update to 1.96.1 Revision Changes Path 1.27 +1 -1 ports/net/tintin++-devel/Makefile 1.11 +3 -3 ports/net/tintin++-devel/distinfo 1.3 +11 -11 ports/net/tintin++-devel/files/patch-src__Makefile.in From owner-cvs-all@FreeBSD.ORG Thu Aug 3 03:24:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0D9A616A4DF; Thu, 3 Aug 2006 03:24:35 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7A1843D5A; Thu, 3 Aug 2006 03:24:34 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k733OYcp052233; Thu, 3 Aug 2006 03:24:34 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k733OY2C052232; Thu, 3 Aug 2006 03:24:34 GMT (envelope-from clsung) Message-Id: <200608030324.k733OY2C052232@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 3 Aug 2006 03:24: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/svmlight 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: Thu, 03 Aug 2006 03:24:35 -0000 clsung 2006-08-03 03:24:34 UTC FreeBSD ports repository Modified files: science/svmlight Makefile pkg-plist Log: - Install header files - bump PORTREVISION PR: ports/101295 Submitted by: maintainer (Gea-Suan Lin) Revision Changes Path 1.2 +3 -0 ports/science/svmlight/Makefile 1.2 +5 -1 ports/science/svmlight/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 3 03:26:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4DAF716A4DD; Thu, 3 Aug 2006 03:26:39 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F05D243D49; Thu, 3 Aug 2006 03:26:38 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k733QceU052365; Thu, 3 Aug 2006 03:26:38 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k733QcI4052359; Thu, 3 Aug 2006 03:26:38 GMT (envelope-from clsung) Message-Id: <200608030326.k733QcI4052359@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 3 Aug 2006 03:26: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/cad/gplcver 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, 03 Aug 2006 03:26:39 -0000 clsung 2006-08-03 03:26:38 UTC FreeBSD ports repository Modified files: cad/gplcver Makefile Log: - maintainer is a committer Revision Changes Path 1.5 +1 -1 ports/cad/gplcver/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 03:28:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16D1E16A4DD; Thu, 3 Aug 2006 03:28:05 +0000 (UTC) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55DFE43D5E; Thu, 3 Aug 2006 03:28:04 +0000 (GMT) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k733S4kK052436; Thu, 3 Aug 2006 03:28:04 GMT (envelope-from jb@repoman.freebsd.org) Received: (from jb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k733S4X4052435; Thu, 3 Aug 2006 03:28:04 GMT (envelope-from jb) Message-Id: <200608030328.k733S4X4052435@repoman.freebsd.org> From: John Birrell Date: Thu, 3 Aug 2006 03:28: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/etc/mtree BSD.usr.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, 03 Aug 2006 03:28:05 -0000 jb 2006-08-03 03:28:04 UTC FreeBSD src repository Modified files: etc/mtree BSD.usr.dist Log: Add the library directory where DTrace library scripts live. Revision Changes Path 1.317 +2 -0 src/etc/mtree/BSD.usr.dist From owner-cvs-all@FreeBSD.ORG Thu Aug 3 03:30:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2540916A4E2; Thu, 3 Aug 2006 03:30:54 +0000 (UTC) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E386A43D53; Thu, 3 Aug 2006 03:30:53 +0000 (GMT) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k733UrpP052772; Thu, 3 Aug 2006 03:30:53 GMT (envelope-from jb@repoman.freebsd.org) Received: (from jb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k733UrKi052771; Thu, 3 Aug 2006 03:30:53 GMT (envelope-from jb) Message-Id: <200608030330.k733UrKi052771@repoman.freebsd.org> From: John Birrell Date: Thu, 3 Aug 2006 03:30: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/etc/mtree BSD.usr.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, 03 Aug 2006 03:30:54 -0000 jb 2006-08-03 03:30:53 UTC FreeBSD src repository Modified files: etc/mtree BSD.usr.dist Log: Alphabetical order is probably better. Revision Changes Path 1.318 +2 -2 src/etc/mtree/BSD.usr.dist From owner-cvs-all@FreeBSD.ORG Thu Aug 3 03:34:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9FD3116A4E0; Thu, 3 Aug 2006 03:34:37 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7295B43D45; Thu, 3 Aug 2006 03:34:37 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k733YbIS052987; Thu, 3 Aug 2006 03:34:37 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k733Ybwd052986; Thu, 3 Aug 2006 03:34:37 GMT (envelope-from delphij) Message-Id: <200608030334.k733Ybwd052986@repoman.freebsd.org> From: Xin LI Date: Thu, 3 Aug 2006 03:34: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/lib/libc/uuid uuid_compare.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, 03 Aug 2006 03:34:37 -0000 delphij 2006-08-03 03:34:36 UTC FreeBSD src repository Modified files: lib/libc/uuid uuid_compare.c Log: In DCE 1.1, the time_low value is defined as an unsigned 32-bit integer. Presently, our implementation employs an approach that converts the value to int64_t, then back to int, unfortunately, this approach can be problematic when the the difference between the two time_low is larger than 0x7fffffff, as the value is then truncated to int. To quote the test case from the original PR, the following is true with the current implementation: 865e1a56-b9d9-11d9-ba27-0003476f2e88 < 062ac45c-b9d9-11d9-ba27-0003476f2e88 However, according to the DCE specification, the expected result should be: 865e1a56-b9d9-11d9-ba27-0003476f2e88 > 062ac45c-b9d9-11d9-ba27-0003476f2e88 This commit adds a new intermediate variable which uses int64_t to store the result of subtraction between the two time_low values, which would not introduce different semantic of the MSB found in time_low value. PR: 83107 Submitted by: Steve Sears MFC After: 1 month Revision Changes Path 1.5 +15 -5 src/lib/libc/uuid/uuid_compare.c From owner-cvs-all@FreeBSD.ORG Thu Aug 3 03:55:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4765E16A4DF; Thu, 3 Aug 2006 03:55:53 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0FB1943D55; Thu, 3 Aug 2006 03:55:53 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k733tqFj054063; Thu, 3 Aug 2006 03:55:52 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k733tqgE054062; Thu, 3 Aug 2006 03:55:52 GMT (envelope-from delphij) Message-Id: <200608030355.k733tqgE054062@repoman.freebsd.org> From: Xin LI Date: Thu, 3 Aug 2006 03:55: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/fs/msdosfs msdosfs_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: Thu, 03 Aug 2006 03:55:53 -0000 delphij 2006-08-03 03:55:52 UTC FreeBSD src repository Modified files: sys/fs/msdosfs msdosfs_vfsops.c Log: When the volume is being downgraded from a read-write mode, mark it as clean. PR: kern/85366 Submitted by: Dan Lukes MFC After: 2 weeks Revision Changes Path 1.152 +4 -0 src/sys/fs/msdosfs/msdosfs_vfsops.c From owner-cvs-all@FreeBSD.ORG Thu Aug 3 05:19:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E94316A4DD; Thu, 3 Aug 2006 05:19:34 +0000 (UTC) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C82C243D46; Thu, 3 Aug 2006 05:19:33 +0000 (GMT) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k735JXwf068240; Thu, 3 Aug 2006 05:19:33 GMT (envelope-from jb@repoman.freebsd.org) Received: (from jb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k735JXRP068239; Thu, 3 Aug 2006 05:19:33 GMT (envelope-from jb) Message-Id: <200608030519.k735JXRP068239@repoman.freebsd.org> From: John Birrell Date: Thu, 3 Aug 2006 05:19: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/conf options X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Aug 2006 05:19:34 -0000 jb 2006-08-03 05:19:33 UTC FreeBSD src repository Modified files: sys/conf options Log: Add an option to enable KSE support. Add an option to build in kernel DTrace hooks. Without this option, the DTrace modules acn't be loaded. Revision Changes Path 1.556 +2 -0 src/sys/conf/options From owner-cvs-all@FreeBSD.ORG Thu Aug 3 05:26:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 90A9616A4DE; Thu, 3 Aug 2006 05:26:55 +0000 (UTC) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9595443D45; Thu, 3 Aug 2006 05:26:52 +0000 (GMT) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k735Qqie068654; Thu, 3 Aug 2006 05:26:52 GMT (envelope-from jb@repoman.freebsd.org) Received: (from jb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k735QqvT068653; Thu, 3 Aug 2006 05:26:52 GMT (envelope-from jb) Message-Id: <200608030526.k735QqvT068653@repoman.freebsd.org> From: John Birrell Date: Thu, 3 Aug 2006 05: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/sys sysent.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, 03 Aug 2006 05:26:55 -0000 jb 2006-08-03 05:26:52 UTC FreeBSD src repository Modified files: sys/sys sysent.h Log: Add fields to struct sysent to support the DTrace syscall provider called systrace. Another file called systrace_args.c is generated. This will be compiled into systrace and is used to map the syscall arguments into the 64-bit parameter array. Revision Changes Path 1.50 +16 -0 src/sys/sys/sysent.h From owner-cvs-all@FreeBSD.ORG Thu Aug 3 05:29:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD67116A4DE; Thu, 3 Aug 2006 05:29:11 +0000 (UTC) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9032443D69; Thu, 3 Aug 2006 05:29:09 +0000 (GMT) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k735T92B068750; Thu, 3 Aug 2006 05:29:09 GMT (envelope-from jb@repoman.freebsd.org) Received: (from jb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k735T9Pm068749; Thu, 3 Aug 2006 05:29:09 GMT (envelope-from jb) Message-Id: <200608030529.k735T9Pm068749@repoman.freebsd.org> From: John Birrell Date: Thu, 3 Aug 2006 05:29: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/kern makesyscalls.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: Thu, 03 Aug 2006 05:29:12 -0000 jb 2006-08-03 05:29:09 UTC FreeBSD src repository Modified files: sys/kern makesyscalls.sh Log: Generate another file called systrace_args.c. This will be compiled into systrace and is used to map the syscall arguments into the 64-bit parameter array. Revision Changes Path 1.65 +38 -7 src/sys/kern/makesyscalls.sh From owner-cvs-all@FreeBSD.ORG Thu Aug 3 05:31:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5476616A4E0; Thu, 3 Aug 2006 05:31:29 +0000 (UTC) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1575843D68; Thu, 3 Aug 2006 05:31:29 +0000 (GMT) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k735VSSG068929; Thu, 3 Aug 2006 05:31:28 GMT (envelope-from jb@repoman.freebsd.org) Received: (from jb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k735VSWX068928; Thu, 3 Aug 2006 05:31:28 GMT (envelope-from jb) Message-Id: <200608030531.k735VSWX068928@repoman.freebsd.org> From: John Birrell Date: Thu, 3 Aug 2006 05:31: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/sys/sys syscall.h syscall.mk sysproto.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, 03 Aug 2006 05:31:29 -0000 jb 2006-08-03 05:31:28 UTC FreeBSD src repository Modified files: sys/sys syscall.h syscall.mk sysproto.h Log: Regen. Revision Changes Path 1.198 +0 -0 src/sys/sys/syscall.h 1.153 +0 -0 src/sys/sys/syscall.mk 1.201 +0 -0 src/sys/sys/sysproto.h From owner-cvs-all@FreeBSD.ORG Thu Aug 3 05:32:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 80BEE16A4DF; Thu, 3 Aug 2006 05:32:44 +0000 (UTC) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4317A43D45; Thu, 3 Aug 2006 05:32:44 +0000 (GMT) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k735WiXZ069054; Thu, 3 Aug 2006 05:32:44 GMT (envelope-from jb@repoman.freebsd.org) Received: (from jb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k735WiSn069053; Thu, 3 Aug 2006 05:32:44 GMT (envelope-from jb) Message-Id: <200608030532.k735WiSn069053@repoman.freebsd.org> From: John Birrell Date: Thu, 3 Aug 2006 05: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: src/sys/kern init_sysent.c syscalls.c systrace_args.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, 03 Aug 2006 05:32:44 -0000 jb 2006-08-03 05:32:44 UTC FreeBSD src repository Modified files: sys/kern init_sysent.c syscalls.c Added files: sys/kern systrace_args.c Log: Regen. Note the addition of the extra file now generated. Revision Changes Path 1.217 +469 -469 src/sys/kern/init_sysent.c 1.201 +0 -0 src/sys/kern/syscalls.c 1.1 +2785 -0 src/sys/kern/systrace_args.c (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 3 05:36:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E0D216A4DD; Thu, 3 Aug 2006 05:36:34 +0000 (UTC) (envelope-from freebsd-cvs-src@oldach.net) Received: from rigel.oldach.net (rigel.oldach.net [194.8.96.250]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB80343D45; Thu, 3 Aug 2006 05:36:33 +0000 (GMT) (envelope-from freebsd-cvs-src@oldach.net) Received: from sep.oldach.net (p548F8F80.dip0.t-ipconnect.de [84.143.143.128]) by rigel.oldach.net (8.13.6/8.13.6/hmo30jul04) with ESMTP id k735aJUJ036702 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 3 Aug 2006 07:36:20 +0200 (CEST) (envelope-from freebsd-cvs-src@oldach.net) Received: from sep.oldach.net (localhost [127.0.0.1]) by sep.oldach.net (8.13.6/8.13.6/hmo26jun05) with ESMTP id k735aIfF081093 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 3 Aug 2006 07:36:18 +0200 (CEST) (envelope-from freebsd-cvs-src@oldach.net) Received: (from hmo@localhost) by sep.oldach.net (8.13.6/8.13.6/Submit/hmo26jun05) id k735aIT3081092; Thu, 3 Aug 2006 07:36:18 +0200 (CEST) (envelope-from freebsd-cvs-src@oldach.net) Message-Id: <200608030536.k735aIT3081092@sep.oldach.net> In-Reply-To: from Hajimu UMEMOTO at "Jul 18, 2006 1:14:20 pm" To: ume@FreeBSD.org (Hajimu UMEMOTO) Date: Thu, 3 Aug 2006 07:36:18 +0200 (CEST) From: freebsd-cvs-src@oldach.net (Helge Oldach) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded STARTTLS authentication, not delayed by milter-greylist-2.0.2 (rigel.oldach.net [194.8.96.250]); Thu, 03 Aug 2006 07:36:20 +0200 (CEST) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (sep.oldach.net [127.0.0.1]); Thu, 03 Aug 2006 07:36:18 +0200 (CEST) X-Virus-Scanned: ClamAV 0.88.3/1634/Thu Aug 3 00:32:49 2006 on rigel.oldach.net X-Virus-Scanned: ClamAV 0.88.3/1634/Thu Aug 3 00:32:49 2006 on sep.oldach.net X-Virus-Status: Clean X-Spam-Flag: NO X-Scanned-By: milter-spamc/0.25.321 (rigel.oldach.net [194.8.96.250]); Thu, 03 Aug 2006 07:36:22 +0200 X-Spam-Status: NO, hits=3.50 required=5.00 X-Spam-Level: *** Cc: cvs-src@FreeBSD.org, scottl@samsco.org, kensmith@cse.Buffalo.EDU, cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/sys param.h src/include Makefile netdb.h res_update.h resolv.h src/include/arpa inet.h nameser.h nameser X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Aug 2006 05:36:34 -0000 Hajimu UMEMOTO: > >>>>> On Mon, 17 Jul 2006 18:47:06 -0600 > >>>>> Scott Long said: > > scottl> Well then you've introduced a compatibility regression in the stable > scottl> branch. Did you give this patch to the ports team to test first? If > scottl> not, then you passed the problem on to them to try to correct, which is > scottl> a bit anti-social. Also, what about people trying to compile software > scottl> outside of the ports tree? > > No, I didn't. But, most of build failure on 7-CURRENT because of this > issue, detected on pointyhat were already fixed, and seeing > __FreeBSD_version for RELENG_6 will solve it. I'm working on it now, > and when ready, I'll sent the patches to the maintainers. Well... I've spotted a regression not with the ports tree but with 6-STABLE. On several boxes with this change applied I see lots of sendmails stacking up over time, for example: 713 ?? Ss 0:01.05 sendmail: accepting connections (sendmail) 717 ?? Is 0:00.02 sendmail: Queue runner@00:30:00 for /var/spool/client 31747 ?? I 0:00.00 sendmail: startup with 71.119.31.81 (sendmail) 32834 ?? I 0:00.00 sendmail: startup with 83.36.190.38 (sendmail) 33569 ?? I 0:00.00 sendmail: startup with 221.206.76.60 (sendmail) 34023 ?? I 0:00.00 sendmail: startup with 49.195.192.61.tokyo.flets.alph 34459 ?? I 0:00.00 sendmail: startup with 221.165.35.46 (sendmail) 36517 ?? I 0:00.00 sendmail: startup with 61.192.180.137 (sendmail) 38722 ?? I 0:00.00 sendmail: startup with 203.177.238.78 (sendmail) 39126 ?? I 0:00.00 sendmail: startup with 222.90.251.185 (sendmail) 39203 ?? I 0:00.00 sendmail: startup with 221.9.214.183 (sendmail) 39859 ?? I 0:00.00 sendmail: startup with 59.20.101.111 (sendmail) 41090 ?? I 0:00.00 sendmail: startup with 61.192.166.235 (sendmail) 41766 ?? I 0:00.00 sendmail: startup with 68.118.52.132 (sendmail) 42482 ?? I 0:00.00 sendmail: startup with 219.249.201.36 (sendmail) 42483 ?? I 0:00.00 sendmail: startup with 219.249.201.36 (sendmail) 43467 ?? I 0:00.00 sendmail: startup with 210.213.191.70 (sendmail) 43757 ?? I 0:00.00 sendmail: startup with 220.189.144.7 (sendmail) 44176 ?? I 0:00.00 sendmail: startup with 71.205.226.98 (sendmail) 44850 ?? I 0:00.00 sendmail: startup with 72.89.135.133 (sendmail) 44943 ?? I 0:00.00 sendmail: startup with 220.167.134.212 (sendmail) 48031 ?? I 0:00.00 sendmail: startup with 60.22.198.23 (sendmail) On one busy sendmail box I've seen literally thousands of such processes. Note that these processes don't disappear, so it is not related to sendmail.cf's timeouts. Broswing through the recent STABLE commits, I firstly thought it was related to the recent socket code changes, but no, it's not. It is definitely this introduction of BIND9's resolver. If I back out this change, all is fine again. As said, this is a very recent 6-STABLE. I'm tracking CTM, not cvs. I would seriously suggest to more thoroughly test this. I'm not asking to back it out right now, but this is definitely a breakage in 6-STABLE that should be fixed before 6.2. Regards, Helge From owner-cvs-all@FreeBSD.ORG Thu Aug 3 05:44:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1696216A4DD; Thu, 3 Aug 2006 05:44:52 +0000 (UTC) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4FE643D5A; Thu, 3 Aug 2006 05:44:51 +0000 (GMT) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k735ipoI069635; Thu, 3 Aug 2006 05:44:51 GMT (envelope-from jb@repoman.freebsd.org) Received: (from jb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k735ipqt069634; Thu, 3 Aug 2006 05:44:51 GMT (envelope-from jb) Message-Id: <200608030544.k735ipqt069634@repoman.freebsd.org> From: John Birrell Date: Thu, 3 Aug 2006 05:44: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/etc/mtree BSD.usr.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, 03 Aug 2006 05:44:52 -0000 jb 2006-08-03 05:44:51 UTC FreeBSD src repository Modified files: etc/mtree BSD.usr.dist Log: Not allowed to use tabs. The rule that proves the rule. Heh. Revision Changes Path 1.319 +2 -2 src/etc/mtree/BSD.usr.dist From owner-cvs-all@FreeBSD.ORG Thu Aug 3 05:46:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BEF5616A4DD; Thu, 3 Aug 2006 05:46:33 +0000 (UTC) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E2BB43D53; Thu, 3 Aug 2006 05:46:33 +0000 (GMT) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k735kXdR069742; Thu, 3 Aug 2006 05:46:33 GMT (envelope-from jb@repoman.freebsd.org) Received: (from jb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k735kXNZ069741; Thu, 3 Aug 2006 05:46:33 GMT (envelope-from jb) Message-Id: <200608030546.k735kXNZ069741@repoman.freebsd.org> From: John Birrell Date: Thu, 3 Aug 2006 05:46: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/man7 hier.7 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Aug 2006 05:46:33 -0000 jb 2006-08-03 05:46:32 UTC FreeBSD src repository Modified files: share/man/man7 hier.7 Log: Add the DTrace library script directory. Revision Changes Path 1.120 +2 -0 src/share/man/man7/hier.7 From owner-cvs-all@FreeBSD.ORG Thu Aug 3 06:15:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23D2616A4DD; Thu, 3 Aug 2006 06:15:19 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4D1643D4C; Thu, 3 Aug 2006 06:15:18 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k736FIPl072369; Thu, 3 Aug 2006 06:15:18 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k736FIdU072368; Thu, 3 Aug 2006 06:15:18 GMT (envelope-from sat) Message-Id: <200608030615.k736FIdU072368@repoman.freebsd.org> From: Andrew Pantyukhin Date: Thu, 3 Aug 2006 06:15: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/deskutils/linux-sunbird Makefile distinfo pkg-descr pkg-plist ports/deskutils/linux-sunbird/files linux-sunbird.desktop.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, 03 Aug 2006 06:15:19 -0000 sat 2006-08-03 06:15:18 UTC FreeBSD ports repository Modified files: deskutils/linux-sunbird Makefile distinfo pkg-descr Added files: deskutils/linux-sunbird pkg-plist deskutils/linux-sunbird/files linux-sunbird.desktop.in Log: - Update to 0.3 alpha 2 - Bring in line with other linux-gecko ports, thus inheriting all the features of the infrastructure: o Static plist o desktop file o XPI/NPAPI support Approved by: Aaron Voisine (maintainer) Revision Changes Path 1.4 +8 -49 ports/deskutils/linux-sunbird/Makefile 1.4 +3 -3 ports/deskutils/linux-sunbird/distinfo 1.1 +9 -0 ports/deskutils/linux-sunbird/files/linux-sunbird.desktop.in (new) 1.2 +5 -4 ports/deskutils/linux-sunbird/pkg-descr 1.1 +318 -0 ports/deskutils/linux-sunbird/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 3 06:16:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C043416A4DD; Thu, 3 Aug 2006 06:16:04 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81ADD43D5C; Thu, 3 Aug 2006 06:16:03 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k736G3gZ072468; Thu, 3 Aug 2006 06:16:03 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k736G33i072467; Thu, 3 Aug 2006 06:16:03 GMT (envelope-from clsung) Message-Id: <200608030616.k736G33i072467@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 3 Aug 2006 06:16: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/devel Makefile ports/devel/p5-SVN-Agent 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, 03 Aug 2006 06:16:04 -0000 clsung 2006-08-03 06:16:03 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-SVN-Agent Makefile distinfo pkg-descr pkg-plist Log: Add p5-SVN-Agent 0.02, simple svn manipulation. PR: ports/100136 Submitted by: Yuan-Chung Hsiao Revision Changes Path 1.2389 +1 -0 ports/devel/Makefile 1.1 +33 -0 ports/devel/p5-SVN-Agent/Makefile (new) 1.1 +3 -0 ports/devel/p5-SVN-Agent/distinfo (new) 1.1 +7 -0 ports/devel/p5-SVN-Agent/pkg-descr (new) 1.1 +5 -0 ports/devel/p5-SVN-Agent/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 3 06:16:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 94AA916A4DF; Thu, 3 Aug 2006 06:16:15 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5380A43D45; Thu, 3 Aug 2006 06:16:15 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k736GFMV072510; Thu, 3 Aug 2006 06:16:15 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k736GF5u072509; Thu, 3 Aug 2006 06:16:15 GMT (envelope-from clsung) Message-Id: <200608030616.k736GF5u072509@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 3 Aug 2006 06:16: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: 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, 03 Aug 2006 06:16:15 -0000 clsung 2006-08-03 06:16:15 UTC FreeBSD ports repository Modified files: . modules Log: p5-SVN-Agent --> ports/devel/p5-SVN-Agent Revision Changes Path 1.15881 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Aug 3 06:59:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0077316A4DE; Thu, 3 Aug 2006 06:59:55 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A8F8943D6E; Thu, 3 Aug 2006 06:59:51 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k736xpkt075987; Thu, 3 Aug 2006 06:59:51 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k736xp7w075986; Thu, 3 Aug 2006 06:59:51 GMT (envelope-from vanilla) Message-Id: <200608030659.k736xp7w075986@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Thu, 3 Aug 2006 06:59: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/x11/ecore 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: Thu, 03 Aug 2006 06:59:55 -0000 vanilla 2006-08-03 06:59:50 UTC FreeBSD ports repository Modified files: x11/ecore Makefile pkg-plist Log: Fix pkg-plist. PR: ports/101277 Submitted by: erwin@ Pointyhat by: me Revision Changes Path 1.32 +1 -1 ports/x11/ecore/Makefile 1.5 +1 -0 ports/x11/ecore/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 3 07:07:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F37D16A4DD; Thu, 3 Aug 2006 07:07:23 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4797643D53; Thu, 3 Aug 2006 07:07:23 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7377Nde077759; Thu, 3 Aug 2006 07:07:23 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7377NSe077758; Thu, 3 Aug 2006 07:07:23 GMT (envelope-from clsung) Message-Id: <200608030707.k7377NSe077758@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 3 Aug 2006 07:07: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/science/svmlight 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, 03 Aug 2006 07:07:23 -0000 clsung 2006-08-03 07:07:22 UTC FreeBSD ports repository Modified files: science/svmlight Makefile Log: - Fix library - Use NO_WRKSUBDIR=yes instead of WRKSRC=${WRKDIR} - bump PORTREVISION PR: ports/101302 Submitted by: maintainer (Gea-Suan Lin) Revision Changes Path 1.3 +5 -3 ports/science/svmlight/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 07:29:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA6C216A4DA; Thu, 3 Aug 2006 07:29:03 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F8E943D45; Thu, 3 Aug 2006 07:29:03 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k737T3ol082484; Thu, 3 Aug 2006 07:29:03 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k737T3EQ082483; Thu, 3 Aug 2006 07:29:03 GMT (envelope-from clsung) Message-Id: <200608030729.k737T3EQ082483@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 3 Aug 2006 07:29: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/science Makefile ports/science/p5-Algorithm-SVMLight Makefile distinfo pkg-descr pkg-plist ports/science/p5-Algorithm-SVMLight/files patch-Build.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, 03 Aug 2006 07:29:04 -0000 clsung 2006-08-03 07:29:03 UTC FreeBSD ports repository Modified files: science Makefile Added files: science/p5-Algorithm-SVMLight Makefile distinfo pkg-descr pkg-plist science/p5-Algorithm-SVMLight/files patch-Build.PL Log: Add p5-Algorithm-SVMLight 0.05, perl interface to SVMLight Machine-Learning Package. PR: ports/101297 Submitted by: Gea-Suan Lin Revision Changes Path 1.100 +1 -0 ports/science/Makefile 1.1 +29 -0 ports/science/p5-Algorithm-SVMLight/Makefile (new) 1.1 +3 -0 ports/science/p5-Algorithm-SVMLight/distinfo (new) 1.1 +13 -0 ports/science/p5-Algorithm-SVMLight/files/patch-Build.PL (new) 1.1 +14 -0 ports/science/p5-Algorithm-SVMLight/pkg-descr (new) 1.1 +7 -0 ports/science/p5-Algorithm-SVMLight/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 3 07:29:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9F2016A4DA; Thu, 3 Aug 2006 07:29:21 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6229D43D45; Thu, 3 Aug 2006 07:29:21 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k737TLYd082522; Thu, 3 Aug 2006 07:29:21 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k737TLK7082521; Thu, 3 Aug 2006 07:29:21 GMT (envelope-from clsung) Message-Id: <200608030729.k737TLK7082521@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 3 Aug 2006 07:29: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: 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, 03 Aug 2006 07:29:21 -0000 clsung 2006-08-03 07:29:21 UTC FreeBSD ports repository Modified files: . modules Log: p5-Algorithm-SVMLight --> ports/science/p5-Algorithm-SVMLight Revision Changes Path 1.15882 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Aug 3 07:46:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 240CE16A4DD; Thu, 3 Aug 2006 07:46:37 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC40743D46; Thu, 3 Aug 2006 07:46:36 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k737kaxL083325; Thu, 3 Aug 2006 07:46:36 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k737ka4K083324; Thu, 3 Aug 2006 07:46:36 GMT (envelope-from clsung) Message-Id: <200608030746.k737ka4K083324@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 3 Aug 2006 07:46: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-SVN-Notify 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, 03 Aug 2006 07:46:37 -0000 clsung 2006-08-03 07:46:36 UTC FreeBSD ports repository Modified files: devel/p5-SVN-Notify Makefile distinfo Log: - Update to 2.63 PR: ports/101287 Submitted by: Jin-Shan Tseng Approved by: maintainer (Dominic Mitchell) Revision Changes Path 1.6 +1 -1 ports/devel/p5-SVN-Notify/Makefile 1.7 +3 -3 ports/devel/p5-SVN-Notify/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 3 08:07:06 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2815516A4DD; Thu, 3 Aug 2006 08:07:06 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99D4643D4C; Thu, 3 Aug 2006 08:07:05 +0000 (GMT) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73875WJ087868; Thu, 3 Aug 2006 08:07:05 GMT (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73875bg087867; Thu, 3 Aug 2006 08:07:05 GMT (envelope-from jkoshy) Message-Id: <200608030807.k73875bg087867@repoman.freebsd.org> From: Joseph Koshy Date: Thu, 3 Aug 2006 08:07:05 +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/share/mklocale UTF-8.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: Thu, 03 Aug 2006 08:07:06 -0000 jkoshy 2006-08-03 08:07:05 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) share/mklocale UTF-8.src Log: MFC rev 1.2: - Use SWIDTH0 for combining characters. - Unicode 4.1 related changes: - Add definitions for a new range of code points U+1DC0..U+1DFF "Combining Diacritical Marks Supplement". - Add U+04F6 and U+04F7 to the Cyrillic range. - Mark U+034F "Combining Grapheme Joiner" as non-printable. - Add new combining characters in the range U+0350..U+035F to the section "Combining Diacritical Marks". ============================================================================= Revision Changes Path 1.1.8.1 +34 -15 src/share/mklocale/UTF-8.src From owner-cvs-all@FreeBSD.ORG Thu Aug 3 08:17:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0C0D16A4DA; Thu, 3 Aug 2006 08:17:33 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73FAA43D58; Thu, 3 Aug 2006 08:17:33 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k738HXbx088355; Thu, 3 Aug 2006 08:17:33 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k738HXxg088354; Thu, 3 Aug 2006 08:17:33 GMT (envelope-from clsung) Message-Id: <200608030817.k738HXxg088354@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 3 Aug 2006 08:17: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/textproc/p5-XML-LibXSLT 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, 03 Aug 2006 08:17:33 -0000 clsung 2006-08-03 08:17:33 UTC FreeBSD ports repository Modified files: textproc/p5-XML-LibXSLT Makefile distinfo Log: - Update to 1.59 PR: ports/101294 Submitted by: Gea-Suan Lin Approved by: maintainer (Dominic Mitchell) Revision Changes Path 1.13 +1 -1 ports/textproc/p5-XML-LibXSLT/Makefile 1.9 +3 -3 ports/textproc/p5-XML-LibXSLT/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 3 08:18:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F40ED16A4DA; Thu, 3 Aug 2006 08:18:19 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CB6D43D55; Thu, 3 Aug 2006 08:18:19 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k738IJtM088458; Thu, 3 Aug 2006 08:18:19 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k738IJ3D088457; Thu, 3 Aug 2006 08:18:19 GMT (envelope-from sat) Message-Id: <200608030818.k738IJ3D088457@repoman.freebsd.org> From: Andrew Pantyukhin Date: Thu, 3 Aug 2006 08:18: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/www/linux-seamonkey Makefile.common ports/www/linux-seamonkey-devel Makefile ports/www/linux-firefox-devel Makefile ports/www/xpi-adblock Makefile.xpi X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Aug 2006 08:18:20 -0000 sat 2006-08-03 08:18:19 UTC FreeBSD ports repository Modified files: www/linux-seamonkey Makefile.common www/linux-seamonkey-devel Makefile www/linux-firefox-devel Makefile www/xpi-adblock Makefile.xpi Log: - Use MOZILLA_EXTENDED mirror list for xpi ports and linux mozillas [1] - Better MASTER_SITES for linux-{firefox,seamonkey}-devel Submitted by: ahze [1] Revision Changes Path 1.7 +4 -0 ports/www/linux-firefox-devel/Makefile 1.6 +4 -0 ports/www/linux-seamonkey-devel/Makefile 1.5 +2 -2 ports/www/linux-seamonkey/Makefile.common 1.13 +2 -2 ports/www/xpi-adblock/Makefile.xpi From owner-cvs-all@FreeBSD.ORG Thu Aug 3 08:47:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B90C16A4E1; Thu, 3 Aug 2006 08:47:07 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CAB643D4C; Thu, 3 Aug 2006 08:47:07 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k738l7o6092104; Thu, 3 Aug 2006 08:47:07 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k738l7Pq091947; Thu, 3 Aug 2006 08:47:07 GMT (envelope-from erwin) Message-Id: <200608030847.k738l7Pq091947@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 3 Aug 2006 08: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/emulators/vgb-bin 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, 03 Aug 2006 08:47:07 -0000 erwin 2006-08-03 08:47:06 UTC FreeBSD ports repository Modified files: emulators/vgb-bin Makefile Log: - Use new IA32_BINARY_PORT macro instead of ONLY_FOR_ARCHS - Portlint nit PR: 100481 Submitted by: gabor Sponsored by: Google Summer of Code 2006 Revision Changes Path 1.16 +3 -2 ports/emulators/vgb-bin/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 08:48:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5417F16A4DA; Thu, 3 Aug 2006 08:48:23 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0798543D46; Thu, 3 Aug 2006 08:48:23 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k738mM10099143; Thu, 3 Aug 2006 08:48:22 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k738mMk5099142; Thu, 3 Aug 2006 08:48:22 GMT (envelope-from erwin) Message-Id: <200608030848.k738mMk5099142@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 3 Aug 2006 08:48: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/emulators/vgb-bin 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, 03 Aug 2006 08:48:23 -0000 erwin 2006-08-03 08:48:22 UTC FreeBSD ports repository Modified files: emulators/vgb-bin Makefile Log: Forced commit to note that the previous commit was Approved by: maintainer timeout Revision Changes Path 1.17 +0 -0 ports/emulators/vgb-bin/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 09:06:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E788716A4DD; Thu, 3 Aug 2006 09:06:53 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D64043D4C; Thu, 3 Aug 2006 09:06:53 +0000 (GMT) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7396rmg001395; Thu, 3 Aug 2006 09:06:53 GMT (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7396rdT001394; Thu, 3 Aug 2006 09:06:53 GMT (envelope-from jkoshy) Message-Id: <200608030906.k7396rdT001394@repoman.freebsd.org> From: Joseph Koshy Date: Thu, 3 Aug 2006 09:06:53 +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.bin/hexdump conv.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, 03 Aug 2006 09:06:54 -0000 jkoshy 2006-08-03 09:06:53 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/hexdump conv.c Log: MFC rev 1.9: "In 'od -c' mode, deal with printable but zero-width combining characters correctly. These characters are displayed "combined" with a space character." Revision Changes Path 1.8.8.1 +1 -1 src/usr.bin/hexdump/conv.c From owner-cvs-all@FreeBSD.ORG Thu Aug 3 09:20:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6858716A4EF; Thu, 3 Aug 2006 09:20:15 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0BD543D6E; Thu, 3 Aug 2006 09:20:12 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k739KCMu002058; Thu, 3 Aug 2006 09:20:12 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k739KCjm002057; Thu, 3 Aug 2006 09:20:12 GMT (envelope-from glebius) Message-Id: <200608030920.k739KCjm002057@repoman.freebsd.org> From: Gleb Smirnoff Date: Thu, 3 Aug 2006 09:20: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 README if_em.c if_em.h if_em_hw.c if_em_hw.h if_em_osdep.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, 03 Aug 2006 09:20:15 -0000 glebius 2006-08-03 09:20:12 UTC FreeBSD src repository Modified files: sys/dev/em README if_em.c if_em.h if_em_hw.c if_em_hw.h if_em_osdep.h Log: Merge in new driver from Intel, version 6.0.5. It adds support for 80003 NICs and NICs found on ICH8 mobos, and improves support for already known chips. Details: - if_em.c. Merged manually, viewing diff between new vendor driver and previous one. This was an easy task, because most changes between 5.1.5 and 6.0.5 are bugfixes taken from FreeBSD. - if_em_hw.h. Dropped in from vendor, and then restored revisions 1.16, 1.17, 1.18. - if_em_hw.c. Dropped in from vendor, and then restored revision 1.15. - if_em_osdep.h. Added new required macros from vendor file and add a hack against define namespace mangling in if_em_hw.h. Intel made another hack, but I prefer mine. Revision Changes Path 1.13 +13 -6 src/sys/dev/em/README 1.123 +99 -41 src/sys/dev/em/if_em.c 1.46 +12 -2 src/sys/dev/em/if_em.h 1.21 +2230 -701 src/sys/dev/em/if_em_hw.c 1.21 +411 -57 src/sys/dev/em/if_em_hw.h 1.18 +44 -13 src/sys/dev/em/if_em_osdep.h From owner-cvs-all@FreeBSD.ORG Thu Aug 3 09:29:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1265616A4DA; Thu, 3 Aug 2006 09:29:50 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B61BE43D4C; Thu, 3 Aug 2006 09:29:49 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k739Tnx6002609; Thu, 3 Aug 2006 09:29:49 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k739TnAr002608; Thu, 3 Aug 2006 09:29:49 GMT (envelope-from marius) Message-Id: <200608030929.k739TnAr002608@repoman.freebsd.org> From: Marius Strobl Date: Thu, 3 Aug 2006 09:29: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/sysutils/cdrtools 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, 03 Aug 2006 09:29:50 -0000 marius 2006-08-03 09:29:49 UTC FreeBSD ports repository (src committer) Modified files: sysutils/cdrtools Makefile Log: Re-grab maintainership. Approved by: netchild Revision Changes Path 1.69 +1 -1 ports/sysutils/cdrtools/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 09:32:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2959F16A4DE; Thu, 3 Aug 2006 09:32:15 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6894F43D5C; Thu, 3 Aug 2006 09:32:13 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k739WDlb004252; Thu, 3 Aug 2006 09:32:13 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k739WDC9004242; Thu, 3 Aug 2006 09:32:13 GMT (envelope-from marius) Message-Id: <200608030932.k739WDC9004242@repoman.freebsd.org> From: Marius Strobl Date: Thu, 3 Aug 2006 09:32: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/cdrtools-devel Makefile distinfo ports/sysutils/cdrtools-devel/files patch-ad X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Aug 2006 09:32:15 -0000 marius 2006-08-03 09:32:12 UTC FreeBSD ports repository (src committer) Modified files: sysutils/cdrtools-devel Makefile distinfo sysutils/cdrtools-devel/files patch-ad Log: - Update to 2.01.01a11. For the changes since 2.01.01a10 see: ftp://ftp.berlios.de/pub/cdrecord/alpha/AN-2.01.01a11 - Re-grab maintainership. Approved by: netchild Revision Changes Path 1.84 +2 -2 ports/sysutils/cdrtools-devel/Makefile 1.55 +3 -3 ports/sysutils/cdrtools-devel/distinfo 1.5 +4 -9 ports/sysutils/cdrtools-devel/files/patch-ad From owner-cvs-all@FreeBSD.ORG Thu Aug 3 09:36:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A03116A4DD; Thu, 3 Aug 2006 09:36:11 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 971E043D5D; Thu, 3 Aug 2006 09:36:02 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k739a083004847; Thu, 3 Aug 2006 09:36:00 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k739a0On004835; Thu, 3 Aug 2006 09:36:00 GMT (envelope-from marius) Message-Id: <200608030936.k739a0On004835@repoman.freebsd.org> From: Marius Strobl Date: Thu, 3 Aug 2006 09:35: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/antivir-milter 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, 03 Aug 2006 09:36:11 -0000 marius 2006-08-03 09:35:59 UTC FreeBSD ports repository (src committer) Modified files: security/antivir-milter Makefile Log: Mark DEPRECATED, as free license keys are no longer available since September 2005, with an EXPIRATION_DATE of 2006-08-31, as all free license keys that still might be in use should have expired by then. If anyone is actually using this port with a commercial license key, feel free to adopt this port. Otherwise this port will be deleted after the above EXPIRATION_DATE. Approved by: netchild Revision Changes Path 1.17 +3 -0 ports/security/antivir-milter/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 09:43:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1037916A4DA; Thu, 3 Aug 2006 09:43:22 +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 91CCF43D58; Thu, 3 Aug 2006 09:43:21 +0000 (GMT) (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 2DFE846C6C; Thu, 3 Aug 2006 05:43:21 -0400 (EDT) Date: Thu, 3 Aug 2006 10:43:21 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Helge Oldach In-Reply-To: <200608030536.k735aIT3081092@sep.oldach.net> Message-ID: <20060803104026.A45647@fledge.watson.org> References: <200608030536.k735aIT3081092@sep.oldach.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: scottl@samsco.org, src-committers@FreeBSD.org, Hajimu UMEMOTO , cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, bz@FreeBSD.org, kensmith@cse.Buffalo.EDU Subject: Re: cvs commit: src/sys/sys param.h src/include Makefile netdb.h res_update.h resolv.h src/include/arpa inet.h nameser.h nameser X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Aug 2006 09:43:22 -0000 On Thu, 3 Aug 2006, Helge Oldach wrote: > Well... I've spotted a regression not with the ports tree but with 6-STABLE. > On several boxes with this change applied I see lots of sendmails stacking > up over time, for example: > > 713 ?? Ss 0:01.05 sendmail: accepting connections (sendmail) > 717 ?? Is 0:00.02 sendmail: Queue runner@00:30:00 for /var/spool/client > 31747 ?? I 0:00.00 sendmail: startup with 71.119.31.81 (sendmail) > 32834 ?? I 0:00.00 sendmail: startup with 83.36.190.38 (sendmail) > 33569 ?? I 0:00.00 sendmail: startup with 221.206.76.60 (sendmail) > 34023 ?? I 0:00.00 sendmail: startup with 49.195.192.61.tokyo.flets.alph > 34459 ?? I 0:00.00 sendmail: startup with 221.165.35.46 (sendmail) > 36517 ?? I 0:00.00 sendmail: startup with 61.192.180.137 (sendmail) > 38722 ?? I 0:00.00 sendmail: startup with 203.177.238.78 (sendmail) > 39126 ?? I 0:00.00 sendmail: startup with 222.90.251.185 (sendmail) > 39203 ?? I 0:00.00 sendmail: startup with 221.9.214.183 (sendmail) > 39859 ?? I 0:00.00 sendmail: startup with 59.20.101.111 (sendmail) > 41090 ?? I 0:00.00 sendmail: startup with 61.192.166.235 (sendmail) > 41766 ?? I 0:00.00 sendmail: startup with 68.118.52.132 (sendmail) > 42482 ?? I 0:00.00 sendmail: startup with 219.249.201.36 (sendmail) > 42483 ?? I 0:00.00 sendmail: startup with 219.249.201.36 (sendmail) > 43467 ?? I 0:00.00 sendmail: startup with 210.213.191.70 (sendmail) > 43757 ?? I 0:00.00 sendmail: startup with 220.189.144.7 (sendmail) > 44176 ?? I 0:00.00 sendmail: startup with 71.205.226.98 (sendmail) > 44850 ?? I 0:00.00 sendmail: startup with 72.89.135.133 (sendmail) > 44943 ?? I 0:00.00 sendmail: startup with 220.167.134.212 (sendmail) > 48031 ?? I 0:00.00 sendmail: startup with 60.22.198.23 (sendmail) > > On one busy sendmail box I've seen literally thousands of such processes. > Note that these processes don't disappear, so it is not related to > sendmail.cf's timeouts. > > Broswing through the recent STABLE commits, I firstly thought it was related > to the recent socket code changes, but no, it's not. It is definitely this > introduction of BIND9's resolver. If I back out this change, all is fine > again. > > As said, this is a very recent 6-STABLE. I'm tracking CTM, not cvs. > > I would seriously suggest to more thoroughly test this. I'm not asking to > back it out right now, but this is definitely a breakage in 6-STABLE that > should be fixed before 6.2. I've had a similar report from Bjoern Zeeb; at first we thought the reason he had stacking up TCP connections was a bug I introduced in 7.x, but it turns out it's because his sshd is wedging in name resolution, and not closing the TCP sockets (which are now visible in netstat in a way they weren't before). We only concluded that it was not a kernel socket bug a day or so ago, so I'm not sure he's had a chance to generate a resolver bug report. He reported that the application appeared to have two connected UDP sockets for name resolution, and one bad name server entry, but that the resolver appeared to be blocked in a read on the UDP socket that didn't have data queued, rather than the one that did. This was all from looking at netstat, and as far as I know, he's not dug into the resolver yet to see what might be happening. I've CC'd Bjoern in case he has further insight or can offer some more suggestions on what might be going on. Robert N M Watson Computer Laboratory University of Cambridge From owner-cvs-all@FreeBSD.ORG Thu Aug 3 09:45:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A6AC16A4DA; Thu, 3 Aug 2006 09:45:52 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A05043D53; Thu, 3 Aug 2006 09:45:52 +0000 (GMT) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k739jpDO006441; Thu, 3 Aug 2006 09:45:51 GMT (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k739jp96006440; Thu, 3 Aug 2006 09:45:51 GMT (envelope-from jkoshy) Message-Id: <200608030945.k739jp96006440@repoman.freebsd.org> From: Joseph Koshy Date: Thu, 3 Aug 2006 09:45:51 +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 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: Thu, 03 Aug 2006 09:45:52 -0000 jkoshy 2006-08-03 09:45:51 UTC FreeBSD doc repository Modified files: en/news press.xml Log: Add an ITJungle article by Timothy Prickett Morgan on recent developments in {Free,Net,Open}BSD. Revision Changes Path 1.204 +19 -1 www/en/news/press.xml From owner-cvs-all@FreeBSD.ORG Thu Aug 3 09:49:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 551EC16A4DF; Thu, 3 Aug 2006 09:49:01 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 101E543D46; Thu, 3 Aug 2006 09:49:01 +0000 (GMT) (envelope-from johans@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k739n0aU006608; Thu, 3 Aug 2006 09:49:00 GMT (envelope-from johans@repoman.freebsd.org) Received: (from johans@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k739n00G006607; Thu, 3 Aug 2006 09:49:00 GMT (envelope-from johans) Message-Id: <200608030949.k739n00G006607@repoman.freebsd.org> From: Johan van Selst Date: Thu, 3 Aug 2006 09:49: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/security/tor Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-plist ports/security/tor/files patch-contrib-tor.sh.in pkg-message.in tor.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, 03 Aug 2006 09:49:01 -0000 johans 2006-08-03 09:49:00 UTC FreeBSD ports repository Modified files: security/tor Makefile distinfo pkg-descr pkg-install pkg-plist security/tor/files patch-contrib-tor.sh.in Added files: security/tor pkg-deinstall security/tor/files pkg-message.in tor.in Log: - Update tor to 1.1.20 (former development branch) - Submitter becomes new maintainer (approved by old maintainer) - Use rc.subr PR: 98373 Submitted by: Peter Thoenen Approved by: flz (mentor) Revision Changes Path 1.21 +17 -9 ports/security/tor/Makefile 1.15 +3 -3 ports/security/tor/distinfo 1.6 +0 -28 ports/security/tor/files/patch-contrib-tor.sh.in 1.1 +5 -0 ports/security/tor/files/pkg-message.in (new) 1.1 +49 -0 ports/security/tor/files/tor.in (new) 1.1 +62 -0 ports/security/tor/pkg-deinstall (new) 1.3 +0 -5 ports/security/tor/pkg-descr 1.2 +32 -25 ports/security/tor/pkg-install 1.8 +2 -4 ports/security/tor/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 3 09:50:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B93D16A4DD; Thu, 3 Aug 2006 09:50:16 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF8F543D53; Thu, 3 Aug 2006 09:50:15 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k739oF2L006709; Thu, 3 Aug 2006 09:50:15 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k739oFmc006708; Thu, 3 Aug 2006 09:50:15 GMT (envelope-from yar) Message-Id: <200608030950.k739oFmc006708@repoman.freebsd.org> From: Yar Tikhiy Date: Thu, 3 Aug 2006 09:50: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/net if_vlan.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, 03 Aug 2006 09:50:16 -0000 yar 2006-08-03 09:50:15 UTC FreeBSD src repository Modified files: sys/net if_vlan.c Log: Back out rev. 1.107 because it introduced as many problems as it tried to solve: - it smuggled hidden 802.1q details into otherwise protocol-neutral code; - it put an important code consistency check under DEBUG, which was never defined by anyone but a developer hacking this file for the moment; - lastly, the former bcopy() call had been correct as long as the "dead" code was there. (A new version of the fix for tag of -1 to come in the next commit.) Agreed by: qingli Revision Changes Path 1.108 +15 -9 src/sys/net/if_vlan.c From owner-cvs-all@FreeBSD.ORG Thu Aug 3 09:59:09 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFEEC16A4E6; Thu, 3 Aug 2006 09:59:09 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8137C43D46; Thu, 3 Aug 2006 09:59:09 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k739x9rT007208; Thu, 3 Aug 2006 09:59:09 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k739x9N6007207; Thu, 3 Aug 2006 09:59:09 GMT (envelope-from yar) Message-Id: <200608030959.k739x9N6007207@repoman.freebsd.org> From: Yar Tikhiy Date: Thu, 3 Aug 2006 09:59: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/net if_vlan.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, 03 Aug 2006 09:59:10 -0000 yar 2006-08-03 09:59:09 UTC FreeBSD src repository Modified files: sys/net if_vlan.c Log: Should vlan_input() ever be called with ifp pointing to a non-Ethernet interface, do not just assign -1 to tag because it breaks the logic of the code to follow. The better way is to handle this case as an unsupported protocol and return unless INVARIANTS is in effect and we can panic. Panic is good there because the scenario can happen only because of a coding error elsewhere. We also should show the interface name in the panic message for easier debugging of the problem, should it ever emerge. Submitted by: qingli (initially) Revision Changes Path 1.109 +5 -4 src/sys/net/if_vlan.c From owner-cvs-all@FreeBSD.ORG Thu Aug 3 10:11:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB1D616A4DE; Thu, 3 Aug 2006 10:11:33 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32A7343D49; Thu, 3 Aug 2006 10:11:33 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73ABXE0009198; Thu, 3 Aug 2006 10:11:33 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73ABXND009197; Thu, 3 Aug 2006 10:11:33 GMT (envelope-from rafan) Message-Id: <200608031011.k73ABXND009197@repoman.freebsd.org> From: Rong-En Fan Date: Thu, 3 Aug 2006 10:11: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/c-icap Makefile pkg-descr pkg-plist ports/www/c-icap/files c_icap.in c_icap.sh.in patch-filetype.c pkg-install.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, 03 Aug 2006 10:11:33 -0000 rafan 2006-08-03 10:11:32 UTC FreeBSD ports repository Modified files: www/c-icap Makefile pkg-descr pkg-plist www/c-icap/files pkg-install.in Added files: www/c-icap/files c_icap.in patch-filetype.c Removed files: www/c-icap/files c_icap.sh.in Log: - Fixed serious bug in utf8 web pages recognition causing c-icap to enters an endless loop - Fixed typo in pkg-install - Added to Makefile LOG_DIR, RUN_DIR and TMP_DIR variables PR: ports/101296 Submitted by: Elisey Savateev (maintainer) Revision Changes Path 1.5 +13 -2 ports/www/c-icap/Makefile 1.1 +35 -0 ports/www/c-icap/files/c_icap.in (new) 1.3 +0 -35 ports/www/c-icap/files/c_icap.sh.in (dead) 1.1 +75 -0 ports/www/c-icap/files/patch-filetype.c (new) 1.4 +22 -6 ports/www/c-icap/files/pkg-install.in 1.2 +0 -3 ports/www/c-icap/pkg-descr 1.4 +3 -4 ports/www/c-icap/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 3 10:33:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A185716A4DA; Thu, 3 Aug 2006 10:33:56 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C87243D4C; Thu, 3 Aug 2006 10:33:56 +0000 (GMT) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73AXuL4010196; Thu, 3 Aug 2006 10:33:56 GMT (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73AXtkn010195; Thu, 3 Aug 2006 10:33:55 GMT (envelope-from jkoshy) Message-Id: <200608031033.k73AXtkn010195@repoman.freebsd.org> From: Joseph Koshy Date: Thu, 3 Aug 2006 10:33: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/devel/rtplib 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, 03 Aug 2006 10:33:56 -0000 jkoshy 2006-08-03 10:33:55 UTC FreeBSD ports repository Modified files: devel/rtplib Makefile Log: Mark this port for deletion. The upstream project isn't showing signs of life. Revision Changes Path 1.5 +2 -0 ports/devel/rtplib/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 10:58:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A360816A4E8; Thu, 3 Aug 2006 10:58:27 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EACEE43D49; Thu, 3 Aug 2006 10:58:26 +0000 (GMT) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73AwQJi011277; Thu, 3 Aug 2006 10:58:26 GMT (envelope-from lbr@repoman.freebsd.org) Received: (from lbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73AwQwg011276; Thu, 3 Aug 2006 10:58:26 GMT (envelope-from lbr) Message-Id: <200608031058.k73AwQwg011276@repoman.freebsd.org> From: Lars Balker Rasmussen Date: Thu, 3 Aug 2006 10:58: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/www/p5-Catalyst-Plugin-Session 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, 03 Aug 2006 10:58:27 -0000 lbr 2006-08-03 10:58:26 UTC FreeBSD ports repository Modified files: www/p5-Catalyst-Plugin-Session Makefile distinfo Log: Update to 0.10 PR: 101176 Submitted by: Jin-Shan Tseng Revision Changes Path 1.11 +1 -1 ports/www/p5-Catalyst-Plugin-Session/Makefile 1.8 +3 -3 ports/www/p5-Catalyst-Plugin-Session/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 3 10:59:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA8C016A4E0; Thu, 3 Aug 2006 10:59:29 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3ED343D70; Thu, 3 Aug 2006 10:58:57 +0000 (GMT) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73Awtiu011332; Thu, 3 Aug 2006 10:58:55 GMT (envelope-from lbr@repoman.freebsd.org) Received: (from lbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73AwtwU011331; Thu, 3 Aug 2006 10:58:55 GMT (envelope-from lbr) Message-Id: <200608031058.k73AwtwU011331@repoman.freebsd.org> From: Lars Balker Rasmussen Date: Thu, 3 Aug 2006 10:58: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/www/p5-Catalyst-Plugin-Authentication 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, 03 Aug 2006 10:59:29 -0000 lbr 2006-08-03 10:58:55 UTC FreeBSD ports repository Modified files: www/p5-Catalyst-Plugin-Authentication Makefile distinfo pkg-plist Log: update to 0.09 PR: 101180 Submitted by: Jin-Shan Tseng Revision Changes Path 1.7 +4 -3 ports/www/p5-Catalyst-Plugin-Authentication/Makefile 1.5 +3 -3 ports/www/p5-Catalyst-Plugin-Authentication/distinfo 1.4 +1 -1 ports/www/p5-Catalyst-Plugin-Authentication/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 3 10:59:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5599F16A50A; Thu, 3 Aug 2006 10:59:59 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4F8F43D60; Thu, 3 Aug 2006 10:59:32 +0000 (GMT) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73AxTWM011382; Thu, 3 Aug 2006 10:59:29 GMT (envelope-from lbr@repoman.freebsd.org) Received: (from lbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73AxTlQ011381; Thu, 3 Aug 2006 10:59:29 GMT (envelope-from lbr) Message-Id: <200608031059.k73AxTlQ011381@repoman.freebsd.org> From: Lars Balker Rasmussen Date: Thu, 3 Aug 2006 10:59: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/www/p5-Catalyst-Plugin-Session-State-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: Thu, 03 Aug 2006 10:59:59 -0000 lbr 2006-08-03 10:59:29 UTC FreeBSD ports repository Modified files: www/p5-Catalyst-Plugin-Session-State-URI Makefile distinfo Log: update to 0.05 PR: 101231 Submitted by: Jin-Shan Tseng Revision Changes Path 1.7 +1 -1 ports/www/p5-Catalyst-Plugin-Session-State-URI/Makefile 1.5 +3 -3 ports/www/p5-Catalyst-Plugin-Session-State-URI/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 3 11:03:24 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF74E16A4FA; Thu, 3 Aug 2006 11:03:24 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C093143DAB; Thu, 3 Aug 2006 11:02:08 +0000 (GMT) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73B1uLf011637; Thu, 3 Aug 2006 11:01:56 GMT (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73B1u7h011636; Thu, 3 Aug 2006 11:01:56 GMT (envelope-from jkoshy) Message-Id: <200608031101.k73B1u7h011636@repoman.freebsd.org> From: Joseph Koshy Date: Thu, 3 Aug 2006 11:01: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/devel Makefile ports/devel/tre Makefile distinfo pkg-descr pkg-plist ports/devel/tre/files patch-Makefile.in patch-tests_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, 03 Aug 2006 11:03:24 -0000 jkoshy 2006-08-03 11:01:56 UTC FreeBSD ports repository Modified files: devel Makefile Removed files: devel/tre Makefile distinfo pkg-descr pkg-plist devel/tre/files patch-Makefile.in patch-tests_Makefile.in Log: Remove a duplicate port; I hadn't noticed that it was already present as "textproc/libtre". Submitted by: Nicolas Rachinsky Revision Changes Path 1.2390 +0 -1 ports/devel/Makefile 1.2 +0 -35 ports/devel/tre/Makefile (dead) 1.2 +0 -3 ports/devel/tre/distinfo (dead) 1.2 +0 -11 ports/devel/tre/files/patch-Makefile.in (dead) 1.2 +0 -11 ports/devel/tre/files/patch-tests_Makefile.in (dead) 1.2 +0 -15 ports/devel/tre/pkg-descr (dead) 1.2 +0 -10 ports/devel/tre/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Thu Aug 3 11:07:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A56816A4DD; Thu, 3 Aug 2006 11:07:01 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5334A43DC8; Thu, 3 Aug 2006 11:06:30 +0000 (GMT) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73B6U8K013086; Thu, 3 Aug 2006 11:06:30 GMT (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73B6UBf013085; Thu, 3 Aug 2006 11:06:30 GMT (envelope-from jkoshy) Message-Id: <200608031106.k73B6UBf013085@repoman.freebsd.org> From: Joseph Koshy Date: Thu, 3 Aug 2006 11:06: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: 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, 03 Aug 2006 11:07:01 -0000 jkoshy 2006-08-03 11:06:29 UTC FreeBSD ports repository Modified files: . modules Log: Remove the module name for deleted port "devel/tre". Revision Changes Path 1.15883 +0 -1 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Aug 3 11:17:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 947BE16A4F5; Thu, 3 Aug 2006 11:17:04 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A60043D7C; Thu, 3 Aug 2006 11:16:58 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73BGw2T013610; Thu, 3 Aug 2006 11:16:58 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73BGwuP013609; Thu, 3 Aug 2006 11:16:58 GMT (envelope-from erwin) Message-Id: <200608031116.k73BGwuP013609@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 3 Aug 2006 11:16: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/graphics/gnofract4d 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, 03 Aug 2006 11:17:04 -0000 erwin 2006-08-03 11:16:57 UTC FreeBSD ports repository Modified files: graphics/gnofract4d Makefile Log: Mark BROKEN for leaving files behind Revision Changes Path 1.45 +2 -0 ports/graphics/gnofract4d/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 11:43:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CCCB716A4DD; Thu, 3 Aug 2006 11:43:49 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7627243D45; Thu, 3 Aug 2006 11:43:49 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73BhnSw014801; Thu, 3 Aug 2006 11:43:49 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73Bhns2014800; Thu, 3 Aug 2006 11:43:49 GMT (envelope-from ahze) Message-Id: <200608031143.k73Bhns2014800@repoman.freebsd.org> From: Michael Johnson Date: Thu, 3 Aug 2006 11:43: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/firefox-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, 03 Aug 2006 11:43:49 -0000 ahze 2006-08-03 11:43:49 UTC FreeBSD ports repository Modified files: www/firefox-devel Makefile Log: - Use MOZILLA_EXTENDED Revision Changes Path 1.150 +1 -1 ports/www/firefox-devel/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 12:05:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9ED4216A4DE; Thu, 3 Aug 2006 12:05:20 +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 B80D543D53; Thu, 3 Aug 2006 12:05:19 +0000 (GMT) (envelope-from simon@zaphod.nitro.dk) Received: from zaphod.nitro.dk (unknown [192.168.3.39]) by mx.nitro.dk (Postfix) with ESMTP id 936EF2D8503; Thu, 3 Aug 2006 12:05:17 +0000 (UTC) Received: by zaphod.nitro.dk (Postfix, from userid 3000) id 6EAFB1141D; Thu, 3 Aug 2006 14:05:16 +0200 (CEST) Date: Thu, 3 Aug 2006 14:05:16 +0200 From: "Simon L. Nielsen" To: Poul-Henning Kamp Message-ID: <20060803120515.GA1223@zaphod.nitro.dk> References: <200607131406.k6DE6Agl026625@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200607131406.k6DE6Agl026625@repoman.freebsd.org> User-Agent: Mutt/1.5.11 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/tools/tools/nanobsd nanobsd.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: Thu, 03 Aug 2006 12:05:20 -0000 On 2006.07.13 14:06:10 +0000, Poul-Henning Kamp wrote: > phk 2006-07-13 14:06:10 UTC > > FreeBSD src repository > > Modified files: > tools/tools/nanobsd nanobsd.sh > Log: > Create the diskless magic files in /etc during the install_etc() step > instead of setup_nanobsd(), because this gives customize tasks a chance > to fiddle the details. This makes it a bit harder to (ab)use nanobsd.sh as a framework to build more normal FreeBSD images where a normal /etc is used. Previously I simply replaced setup_nanobsd in my customize script and I got a pretty standard FreeBSD install out in the end. Would you mind if I split the "diskless" magic out into setup_nanobsd_etc() (the parts code you moved in this commit) and then run it right after install_etc()? It shouldn't make a difference for normal NanoBSD use, but then I can simply override setup_nanobsd_etc() in my cutomize script and avoid larger patches against nanobsd.sh. -- Simon L. Nielsen From owner-cvs-all@FreeBSD.ORG Thu Aug 3 12:41:45 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4DB5316A4E6; Thu, 3 Aug 2006 12:41:45 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0538843D53; Thu, 3 Aug 2006 12:41:41 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73CffVj018636; Thu, 3 Aug 2006 12:41:41 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73CffHe018631; Thu, 3 Aug 2006 12:41:41 GMT (envelope-from krion) Message-Id: <200608031241.k73CffHe018631@repoman.freebsd.org> From: Kirill Ponomarew Date: Thu, 3 Aug 2006 12:41: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/misc/heyu Makefile ports/misc/heyu/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, 03 Aug 2006 12:41:45 -0000 krion 2006-08-03 12:41:41 UTC FreeBSD ports repository Modified files: misc/heyu Makefile Added files: misc/heyu/files patch-Makefile.in Log: Fix build on pointyhat and prevent gohans loop. Submitted by: erwin Pointyhat winners are: miwi, krion Revision Changes Path 1.21 +0 -1 ports/misc/heyu/Makefile 1.1 +13 -0 ports/misc/heyu/files/patch-Makefile.in (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 3 12:41:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64B3F16A589; Thu, 3 Aug 2006 12:41:59 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9C3D43D4C; Thu, 3 Aug 2006 12:41:58 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73Cfwbk018665; Thu, 3 Aug 2006 12:41:58 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73Cfwu3018664; Thu, 3 Aug 2006 12:41:58 GMT (envelope-from sat) Message-Id: <200608031241.k73Cfwu3018664@repoman.freebsd.org> From: Andrew Pantyukhin Date: Thu, 3 Aug 2006 12:41: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/deskutils/linux-sunbird 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, 03 Aug 2006 12:41:59 -0000 sat 2006-08-03 12:41:58 UTC FreeBSD ports repository Modified files: deskutils/linux-sunbird Makefile Log: - Fix categories Revision Changes Path 1.5 +1 -1 ports/deskutils/linux-sunbird/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 12:50:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B4BC16A4EA; Thu, 3 Aug 2006 12:50:28 +0000 (UTC) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EC4243D5C; Thu, 3 Aug 2006 12:50:21 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73CoLou026810; Thu, 3 Aug 2006 12:50:21 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73CoL9s026809; Thu, 3 Aug 2006 12:50:21 GMT (envelope-from davidxu) Message-Id: <200608031250.k73CoL9s026809@repoman.freebsd.org> From: David Xu Date: Thu, 3 Aug 2006 12:50:21 +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/posix4 p1003_1b.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, 03 Aug 2006 12:50:28 -0000 davidxu 2006-08-03 12:50:21 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/posix4 p1003_1b.c Log: MFC revision 1.27. Don't allow non-root user to set a scheduler policy. Revision Changes Path 1.24.2.1 +4 -0 src/sys/posix4/p1003_1b.c From owner-cvs-all@FreeBSD.ORG Thu Aug 3 12:50:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACF2716A54A; Thu, 3 Aug 2006 12:50:44 +0000 (UTC) (envelope-from vd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C17B43D6D; Thu, 3 Aug 2006 12:50:44 +0000 (GMT) (envelope-from vd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73CoeGp026888; Thu, 3 Aug 2006 12:50:40 GMT (envelope-from vd@repoman.freebsd.org) Received: (from vd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73Coe1W026887; Thu, 3 Aug 2006 12:50:40 GMT (envelope-from vd) Message-Id: <200608031250.k73Coe1W026887@repoman.freebsd.org> From: Vasil Dimov Date: Thu, 3 Aug 2006 12:50: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/graphics/xaralx Makefile ports/graphics/xaralx-devel 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, 03 Aug 2006 12:50:44 -0000 vd 2006-08-03 12:50:40 UTC FreeBSD ports repository Modified files: graphics/xaralx Makefile graphics/xaralx-devel Makefile distinfo Added files: graphics/xaralx-devel pkg-plist Log: Upgrade graphics/xaralx-devel from 0.6r1460 to 0.7r1640 Revision Changes Path 1.19 +2 -1 ports/graphics/xaralx-devel/Makefile 1.18 +3 -3 ports/graphics/xaralx-devel/distinfo 1.1 +32 -0 ports/graphics/xaralx-devel/pkg-plist (new) 1.20 +4 -0 ports/graphics/xaralx/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 12:51:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A38216A4E1; Thu, 3 Aug 2006 12:51:48 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4794043D53; Thu, 3 Aug 2006 12:51:40 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73Cpeaq026981; Thu, 3 Aug 2006 12:51:40 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73CpeZl026980; Thu, 3 Aug 2006 12:51:40 GMT (envelope-from sat) Message-Id: <200608031251.k73CpeZl026980@repoman.freebsd.org> From: Andrew Pantyukhin Date: Thu, 3 Aug 2006 12: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/www/linux-seamonkey Makefile.common X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Aug 2006 12:51:48 -0000 sat 2006-08-03 12:51:40 UTC FreeBSD ports repository Modified files: www/linux-seamonkey Makefile.common Log: - Only set M_S_S if M_S is undefined Revision Changes Path 1.6 +4 -2 ports/www/linux-seamonkey/Makefile.common From owner-cvs-all@FreeBSD.ORG Thu Aug 3 12:57:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4642316A4E2; Thu, 3 Aug 2006 12:57:46 +0000 (UTC) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF86A43D4C; Thu, 3 Aug 2006 12:57:45 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73CvjcX027261; Thu, 3 Aug 2006 12:57:45 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73CvjJ0027260; Thu, 3 Aug 2006 12:57:45 GMT (envelope-from skv) Message-Id: <200608031257.k73CvjJ0027260@repoman.freebsd.org> From: Sergey Skvortsov Date: Thu, 3 Aug 2006 12:57: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/textproc/p5-XML-LibXML 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, 03 Aug 2006 12:57:46 -0000 skv 2006-08-03 12:57:45 UTC FreeBSD ports repository Modified files: textproc/p5-XML-LibXML Makefile distinfo pkg-plist Log: Update to 1.59 Changes: http://search.cpan.org/src/PAJAS/XML-LibXML-1.59/Changes PR: ports/101292 Submitted by: Gea-Suan Lin Revision Changes Path 1.24 +8 -9 ports/textproc/p5-XML-LibXML/Makefile 1.15 +3 -3 ports/textproc/p5-XML-LibXML/distinfo 1.11 +5 -2 ports/textproc/p5-XML-LibXML/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 3 13:19:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8365B16A4DD; Thu, 3 Aug 2006 13:19:16 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 39AE943D55; Thu, 3 Aug 2006 13:19:16 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73DJGcV029439; Thu, 3 Aug 2006 13:19:16 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73DJFMe029438; Thu, 3 Aug 2006 13:19:15 GMT (envelope-from yar) Message-Id: <200608031319.k73DJFMe029438@repoman.freebsd.org> From: Yar Tikhiy Date: Thu, 3 Aug 2006 13:19: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/bin/sh sh.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: Thu, 03 Aug 2006 13:19:16 -0000 yar 2006-08-03 13:19:15 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) bin/sh sh.1 Log: MFC rev. 1.122: Tell more of the sh(1) history. Acknowledge Kenneth Almquist's contribution in AUTHORS. Revision Changes Path 1.102.2.6 +17 -2 src/bin/sh/sh.1 From owner-cvs-all@FreeBSD.ORG Thu Aug 3 13:33:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 535AB16A4E2; Thu, 3 Aug 2006 13:33:44 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13F5F43D49; Thu, 3 Aug 2006 13:33:44 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73DXh2g030308; Thu, 3 Aug 2006 13:33:43 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73DXhd9030307; Thu, 3 Aug 2006 13:33:43 GMT (envelope-from sat) Message-Id: <200608031333.k73DXhd9030307@repoman.freebsd.org> From: Andrew Pantyukhin Date: Thu, 3 Aug 2006 13:33: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/linux-seamonkey Makefile.common X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Aug 2006 13:33:44 -0000 sat 2006-08-03 13:33:43 UTC FreeBSD ports repository Modified files: www/linux-seamonkey Makefile.common Log: - Let WRKSRC be overridden Revision Changes Path 1.7 +6 -6 ports/www/linux-seamonkey/Makefile.common From owner-cvs-all@FreeBSD.ORG Thu Aug 3 13:50:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62B9316A4DA; Thu, 3 Aug 2006 13:50:18 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2283143D53; Thu, 3 Aug 2006 13:50:18 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73DoHAh031007; Thu, 3 Aug 2006 13:50:17 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73DoH0l031006; Thu, 3 Aug 2006 13:50:17 GMT (envelope-from sat) Message-Id: <200608031350.k73DoH0l031006@repoman.freebsd.org> From: Andrew Pantyukhin Date: Thu, 3 Aug 2006 13:50: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/www/linux-mplayer-plugin Makefile.npapi X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Aug 2006 13:50:18 -0000 sat 2006-08-03 13:50:17 UTC FreeBSD ports repository Modified files: www/linux-mplayer-plugin Makefile.npapi Log: - Extend the list of supported apps in a preemptive way - Do not farm links in linux-opera private plugins dir [1] Submitted by: mezz [1] Revision Changes Path 1.3 +10 -8 ports/www/linux-mplayer-plugin/Makefile.npapi From owner-cvs-all@FreeBSD.ORG Thu Aug 3 14:17:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F6FB16A4E2; Thu, 3 Aug 2006 14:17:34 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4732843D45; Thu, 3 Aug 2006 14:17:34 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73EHYXe033569; Thu, 3 Aug 2006 14:17:34 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73EHYEo033568; Thu, 3 Aug 2006 14:17:34 GMT (envelope-from novel) Message-Id: <200608031417.k73EHYEo033568@repoman.freebsd.org> From: Roman Bogorodskiy Date: Thu, 3 Aug 2006 14:17: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 Makefile ports/devel/acovea-gtk Makefile distinfo pkg-descr pkg-plist ports/devel/acovea-gtk/files patch-src-main_window.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: Thu, 03 Aug 2006 14:17:34 -0000 novel 2006-08-03 14:17:34 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/acovea-gtk Makefile distinfo pkg-descr pkg-plist devel/acovea-gtk/files patch-src-main_window.cc Log: GTK+ front-end to ACOVEA. WWW: http://www.coyotegulch.com/products/acovea/acovea-gtk.html PR: ports/101257 Submitted by: trasz Revision Changes Path 1.2391 +1 -0 ports/devel/Makefile 1.1 +31 -0 ports/devel/acovea-gtk/Makefile (new) 1.1 +3 -0 ports/devel/acovea-gtk/distinfo (new) 1.1 +12 -0 ports/devel/acovea-gtk/files/patch-src-main_window.cc (new) 1.1 +3 -0 ports/devel/acovea-gtk/pkg-descr (new) 1.1 +7 -0 ports/devel/acovea-gtk/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 3 14:17:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6037916A4DF; Thu, 3 Aug 2006 14:17:46 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 289BB43D49; Thu, 3 Aug 2006 14:17:46 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73EHkxf033613; Thu, 3 Aug 2006 14:17:46 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73EHkMB033612; Thu, 3 Aug 2006 14:17:46 GMT (envelope-from novel) Message-Id: <200608031417.k73EHkMB033612@repoman.freebsd.org> From: Roman Bogorodskiy Date: Thu, 3 Aug 2006 14:17: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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Aug 2006 14:17:46 -0000 novel 2006-08-03 14:17:46 UTC FreeBSD ports repository Modified files: . modules Log: acovea-gtk --> ports/devel/acovea-gtk Revision Changes Path 1.15884 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Aug 3 14:39:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0CBB16A4DE; Thu, 3 Aug 2006 14:39:47 +0000 (UTC) (envelope-from shaun@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0FE1F43D5A; Thu, 3 Aug 2006 14:39:45 +0000 (GMT) (envelope-from shaun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73Edil6034637; Thu, 3 Aug 2006 14:39:44 GMT (envelope-from shaun@repoman.freebsd.org) Received: (from shaun@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73EdifI034636; Thu, 3 Aug 2006 14:39:44 GMT (envelope-from shaun) Message-Id: <200608031439.k73EdifI034636@repoman.freebsd.org> From: Shaun Amott Date: Thu, 3 Aug 2006 14:39: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/news/inn Makefile pkg-install X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Aug 2006 14:39:47 -0000 shaun 2006-08-03 14:39:44 UTC FreeBSD ports repository Modified files: news/inn Makefile pkg-install Log: - Fix a few incorrect file permissions after install. - Check for invalid hostname and set IGNORE, since we know the build will fail in this case. - Ensure pkg-install is called with correct environment. Revision Changes Path 1.78 +14 -2 ports/news/inn/Makefile 1.9 +6 -0 ports/news/inn/pkg-install From owner-cvs-all@FreeBSD.ORG Thu Aug 3 14:46:24 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E58D216A4DD; Thu, 3 Aug 2006 14:46:24 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1A9943D5E; Thu, 3 Aug 2006 14:46:24 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73EkOOe035057; Thu, 3 Aug 2006 14:46:24 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73EkOUo035056; Thu, 3 Aug 2006 14:46:24 GMT (envelope-from novel) Message-Id: <200608031446.k73EkOUo035056@repoman.freebsd.org> From: Roman Bogorodskiy Date: Thu, 3 Aug 2006 14: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/www/havp 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, 03 Aug 2006 14:46:25 -0000 novel 2006-08-03 14:46:24 UTC FreeBSD ports repository Modified files: www/havp Makefile distinfo Log: - Update to 0.82 - Marked as BROKEN on 4.x (compile problem reported to author) - Added CONFIGURE_TARGET in Makefile PR: 101300 Submitted by: Elisey Savateev (maintainer) Revision Changes Path 1.2 +9 -2 ports/www/havp/Makefile 1.2 +3 -3 ports/www/havp/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 3 15:18:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 223A116A4DD; Thu, 3 Aug 2006 15:18:43 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CABED43D49; Thu, 3 Aug 2006 15:18:42 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73FIgpE038179; Thu, 3 Aug 2006 15:18:42 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73FIg6m038178; Thu, 3 Aug 2006 15:18:42 GMT (envelope-from clsung) Message-Id: <200608031518.k73FIg6m038178@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 3 Aug 2006 15:18: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/p5-Image-Imlib2 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, 03 Aug 2006 15:18:43 -0000 clsung 2006-08-03 15:18:42 UTC FreeBSD ports repository Modified files: graphics/p5-Image-Imlib2 Makefile distinfo Log: - update to 1.11 Revision Changes Path 1.19 +1 -1 ports/graphics/p5-Image-Imlib2/Makefile 1.14 +3 -3 ports/graphics/p5-Image-Imlib2/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 3 15:31:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37BB716A4DE; Thu, 3 Aug 2006 15:31:54 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 088C743D6E; Thu, 3 Aug 2006 15:31:53 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73FVqMa039070; Thu, 3 Aug 2006 15:31:52 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73FVqGl039069; Thu, 3 Aug 2006 15:31:52 GMT (envelope-from jhb) Message-Id: <200608031531.k73FVqGl039069@repoman.freebsd.org> From: John Baldwin Date: Thu, 3 Aug 2006 15:31: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_trantcp.c src/sys/netncp ncp_sock.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, 03 Aug 2006 15:31:54 -0000 jhb 2006-08-03 15:31:52 UTC FreeBSD src repository Modified files: sys/netsmb smb_trantcp.c sys/netncp ncp_sock.c Log: - Fix ncp_poll() to not panic if the socket doesn't have any pending data. We have to adjust curthread's state enough so that it appears to be in a poll(2) or select(2) call so that selrecord() will work and then teardown that state after calling sopoll(). - Fix some minor nits in nearby ncp_sock_rselect() and in the identical nbssn_rselect() function in the netsmb code: - Don't call nb_poll()/ncp_poll() now that ncp_poll() already fakes up poll(2) state since the rselect() functions already do that. Just invoke sopoll() directly. - To make things slightly more intuitive, store the results of sopoll() in a new 'revents' variable rather than 'error' since that's what sopoll() actually returns. - If the requested timeout time has been exceeded by the time we get ready to block, then return EWOULDBLOCK rather than 0 to signal a timeout as this is what the calling code expects. Tested by: Eric Christeson (1) MFC after: 1 week Revision Changes Path 1.17 +27 -7 src/sys/netncp/ncp_sock.c 1.24 +6 -10 src/sys/netsmb/smb_trantcp.c From owner-cvs-all@FreeBSD.ORG Thu Aug 3 15:53:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B46816A4DE; Thu, 3 Aug 2006 15:53:05 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4673443D45; Thu, 3 Aug 2006 15:53:05 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73Fr55N040100; Thu, 3 Aug 2006 15:53:05 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73Fr5wb040099; Thu, 3 Aug 2006 15:53:05 GMT (envelope-from garga) Message-Id: <200608031553.k73Fr5wb040099@repoman.freebsd.org> From: Renato Botelho Date: Thu, 3 Aug 2006 15:53: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/www/zope29 Makefile distinfo pkg-plist ports/www/zope29/files patch-Dependencies-RestrictedPython patch-Dependencies-SiteAccess patch-Dependencies-StructuredText patch-lib-python-Products-SiteAccess patch-lib-python-RestrictedPython patch-lib-python-StructuredText X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Aug 2006 15:53:05 -0000 garga 2006-08-03 15:53:05 UTC FreeBSD ports repository Modified files: www/zope29 Makefile distinfo pkg-plist Added files: www/zope29/files patch-lib-python-Products-SiteAccess patch-lib-python-RestrictedPython patch-lib-python-StructuredText Removed files: www/zope29/files patch-Dependencies-RestrictedPython patch-Dependencies-SiteAccess patch-Dependencies-StructuredText Log: - Update to 2.9.4 PR: ports/101236 Submitted by: HAYASHI Yasushi (maintainer) Revision Changes Path 1.86 +11 -11 ports/www/zope29/Makefile 1.48 +3 -6 ports/www/zope29/distinfo 1.5 +0 -10 ports/www/zope29/files/patch-Dependencies-RestrictedPython (dead) 1.5 +0 -10 ports/www/zope29/files/patch-Dependencies-SiteAccess (dead) 1.5 +0 -87 ports/www/zope29/files/patch-Dependencies-StructuredText (dead) 1.1 +10 -0 ports/www/zope29/files/patch-lib-python-Products-SiteAccess (new) 1.1 +10 -0 ports/www/zope29/files/patch-lib-python-RestrictedPython (new) 1.1 +87 -0 ports/www/zope29/files/patch-lib-python-StructuredText (new) 1.54 +181 -3470 ports/www/zope29/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 3 16:31:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A61D16A4DF; Thu, 3 Aug 2006 16:31:27 +0000 (UTC) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 051CD43D69; Thu, 3 Aug 2006 16:31:25 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73GVPuJ043206; Thu, 3 Aug 2006 16:31:25 GMT (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73GVPlA043205; Thu, 3 Aug 2006 16:31:25 GMT (envelope-from emax) Message-Id: <200608031631.k73GVPlA043205@repoman.freebsd.org> From: Maksim Yevmenkin Date: Thu, 3 Aug 2006 16:31: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/sys/dev/kbdmux kbdmux.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, 03 Aug 2006 16:31:27 -0000 emax 2006-08-03 16:31:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/kbdmux kbdmux.c Log: MFC: Add extra code into kbdmux(4)s read_char() method to poll (i.e. call read_char() method) slave keyboards. This workaround should fix problem with kbdmux(4) and atkbd(4) not working in ddb(4) and mid-boot. Revision Changes Path 1.2.2.6 +21 -0 src/sys/dev/kbdmux/kbdmux.c From owner-cvs-all@FreeBSD.ORG Thu Aug 3 16:39:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1858B16A4DF; Thu, 3 Aug 2006 16:39:29 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E0DCA43D49; Thu, 3 Aug 2006 16:39:28 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73GdS6Y043592; Thu, 3 Aug 2006 16:39:28 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73GdS7C043591; Thu, 3 Aug 2006 16:39:28 GMT (envelope-from garga) Message-Id: <200608031639.k73GdS7C043591@repoman.freebsd.org> From: Renato Botelho Date: Thu, 3 Aug 2006 16:39: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/irc/ptlink-services Makefile distinfo pkg-plist ports/irc/ptlink-services/files patch-configure 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: Thu, 03 Aug 2006 16:39:29 -0000 garga 2006-08-03 16:39:28 UTC FreeBSD ports repository Modified files: irc/ptlink-services Makefile distinfo pkg-plist irc/ptlink-services/files patch-configure pkg-message.in Log: - Update to 3.9.2 - Change maintainer emails address - Mark it as BROKEN on 4.x, doesn't build PR: ports/101248 Submitted by: Dennis Cabooter (maintainer) Revision Changes Path 1.8 +11 -4 ports/irc/ptlink-services/Makefile 1.7 +3 -3 ports/irc/ptlink-services/distinfo 1.2 +11 -11 ports/irc/ptlink-services/files/patch-configure 1.2 +1 -1 ports/irc/ptlink-services/files/pkg-message.in 1.8 +26 -16 ports/irc/ptlink-services/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 3 16:57:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E461216A4E2; Thu, 3 Aug 2006 16:57:40 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BFE043D45; Thu, 3 Aug 2006 16:57:40 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73GveaT052213; Thu, 3 Aug 2006 16:57:40 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73Gved3052212; Thu, 3 Aug 2006 16:57:40 GMT (envelope-from garga) Message-Id: <200608031657.k73Gved3052212@repoman.freebsd.org> From: Renato Botelho Date: Thu, 3 Aug 2006 16:57: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/irc/ptlink-services Makefile distinfo pkg-descr 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, 03 Aug 2006 16:57:41 -0000 garga 2006-08-03 16:57:40 UTC FreeBSD ports repository Modified files: irc/ptlink-services Makefile distinfo pkg-descr pkg-install pkg-plist Log: Forced commit to say that last commit was: PR: ports/101278 Revision Changes Path 1.9 +0 -0 ports/irc/ptlink-services/Makefile 1.8 +0 -0 ports/irc/ptlink-services/distinfo 1.2 +0 -0 ports/irc/ptlink-services/pkg-descr 1.2 +1 -1 ports/irc/ptlink-services/pkg-install 1.9 +0 -0 ports/irc/ptlink-services/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 3 17:11:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E10A16A4DD; Thu, 3 Aug 2006 17:11:14 +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 1FC4F43D66; Thu, 3 Aug 2006 17:11:13 +0000 (GMT) (envelope-from sam@errno.com) Received: from [10.0.0.248] (trouble.errno.com [10.0.0.248]) (authenticated bits=0) by ebb.errno.com (8.13.6/8.12.6) with ESMTP id k73HBBFn037511 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 3 Aug 2006 10:11:12 -0700 (PDT) (envelope-from sam@errno.com) Message-ID: <44D22E2F.4070307@errno.com> Date: Thu, 03 Aug 2006 10:11:11 -0700 From: Sam Leffler User-Agent: Thunderbird 1.5.0.4 (X11/20060724) MIME-Version: 1.0 To: Yar Tikhiy References: <200608030959.k739x9N6007207@repoman.freebsd.org> In-Reply-To: <200608030959.k739x9N6007207@repoman.freebsd.org> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_vlan.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, 03 Aug 2006 17:11:14 -0000 Yar Tikhiy wrote: > yar 2006-08-03 09:59:09 UTC > > FreeBSD src repository > > Modified files: > sys/net if_vlan.c > Log: > Should vlan_input() ever be called with ifp pointing to a non-Ethernet > interface, do not just assign -1 to tag because it breaks the logic of > the code to follow. The better way is to handle this case as an unsupported > protocol and return unless INVARIANTS is in effect and we can panic. > Panic is good there because the scenario can happen only because of a > coding error elsewhere. > > We also should show the interface name in the panic message for easier > debugging of the problem, should it ever emerge. Introducing a panic in a place where you can trivially recover is bad regardless of why you got there. Many people run production systems with INVARIANTS turned on. Is it now possible to send a "packet of death" by exploiting this code path? Sam From owner-cvs-all@FreeBSD.ORG Thu Aug 3 17:34:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC95F16A4DD; Thu, 3 Aug 2006 17:34:13 +0000 (UTC) (envelope-from phk@phk.freebsd.dk) Received: from phk.freebsd.dk (phk.freebsd.dk [130.225.244.222]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76FF943D45; Thu, 3 Aug 2006 17:34:13 +0000 (GMT) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (critter.freebsd.dk [192.168.48.2]) by phk.freebsd.dk (Postfix) with ESMTP id B3275170C5; Thu, 3 Aug 2006 17:34:11 +0000 (UTC) To: "Simon L. Nielsen" From: "Poul-Henning Kamp" In-Reply-To: Your message of "Thu, 03 Aug 2006 14:05:16 +0200." <20060803120515.GA1223@zaphod.nitro.dk> Date: Thu, 03 Aug 2006 17:34:10 +0000 Message-ID: <49150.1154626450@critter.freebsd.dk> Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/tools/tools/nanobsd nanobsd.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: Thu, 03 Aug 2006 17:34:14 -0000 In message <20060803120515.GA1223@zaphod.nitro.dk>, "Simon L. Nielsen" writes: >On 2006.07.13 14:06:10 +0000, Poul-Henning Kamp wrote: >> phk 2006-07-13 14:06:10 UTC >> >> FreeBSD src repository >> >> Modified files: >> tools/tools/nanobsd nanobsd.sh >> Log: >> Create the diskless magic files in /etc during the install_etc() step >> instead of setup_nanobsd(), because this gives customize tasks a chance >> to fiddle the details. > >This makes it a bit harder to (ab)use nanobsd.sh as a framework to >build more normal FreeBSD images where a normal /etc is used. >Previously I simply replaced setup_nanobsd in my customize script and >I got a pretty standard FreeBSD install out in the end. > >Would you mind if I split the "diskless" magic out into >setup_nanobsd_etc() (the parts code you moved in this commit) and then >run it right after install_etc()? It shouldn't make a difference for >normal NanoBSD use, but then I can simply override setup_nanobsd_etc() >in my cutomize script and avoid larger patches against nanobsd.sh. That's ok with me. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. From owner-cvs-all@FreeBSD.ORG Thu Aug 3 18:09:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BACB216A4E1; Thu, 3 Aug 2006 18:09:13 +0000 (UTC) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC54E43D86; Thu, 3 Aug 2006 18:09:04 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.4/8.13.3) with ESMTP id k73I8tLL005510; Thu, 3 Aug 2006 22:08:55 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.4/8.13.3/Submit) id k73I8tqr005509; Thu, 3 Aug 2006 22:08:55 +0400 (MSD) (envelope-from yar) Date: Thu, 3 Aug 2006 22:08:55 +0400 From: Yar Tikhiy To: Sam Leffler Message-ID: <20060803180854.GI97316@comp.chem.msu.su> References: <200608030959.k739x9N6007207@repoman.freebsd.org> <44D22E2F.4070307@errno.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <44D22E2F.4070307@errno.com> User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_vlan.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, 03 Aug 2006 18:09:13 -0000 On Thu, Aug 03, 2006 at 10:11:11AM -0700, Sam Leffler wrote: > Yar Tikhiy wrote: > > yar 2006-08-03 09:59:09 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/net if_vlan.c > > Log: > > Should vlan_input() ever be called with ifp pointing to a non-Ethernet > > interface, do not just assign -1 to tag because it breaks the logic of > > the code to follow. The better way is to handle this case as an unsupported > > protocol and return unless INVARIANTS is in effect and we can panic. > > Panic is good there because the scenario can happen only because of a > > coding error elsewhere. > > > > We also should show the interface name in the panic message for easier > > debugging of the problem, should it ever emerge. > > Introducing a panic in a place where you can trivially recover is bad > regardless of why you got there. Many people run production systems > with INVARIANTS turned on. Is it now possible to send a "packet of > death" by exploiting this code path? No nastygram can ever achieve this; only FreeBSD commiters possess the ability to :-) The panic can never be reached unless one manages to attach a vlan interface to a non-Ethernet physical interface in advance, which is totally prohibited by the code at the beginning of vlan_config(); and vlan_config() is the only way to attach a vlan interface to a physical interface. I.e., it will take a developer breaking the logic in /sys/net to make the code path expoloitable. OTOH, you are right that we can at least attempt to recover from the situation. Perhaps it's time to introduce a common macro or function that emits a message on the console and then just calls kdb_backtrace() instead of dumping core and halting the system? So users will be able to post the stack traces to the lists and thus help to spot the possible bugs w/o having to go through panics. I'm unsure if sticking raw kdb_backtrace() calls in such places is a good idea, so I'm suggesting a wrapper function or macro. It is to be used in "can absolutely never happen" cases that are not fatal, like the one under discussion. -- Yar From owner-cvs-all@FreeBSD.ORG Thu Aug 3 18:24:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5734116A4DE; Thu, 3 Aug 2006 18:24:04 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B42B443D55; Thu, 3 Aug 2006 18:24:03 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73IO3Nk058528; Thu, 3 Aug 2006 18:24:03 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73IO3aX058527; Thu, 3 Aug 2006 18:24:03 GMT (envelope-from marcus) Message-Id: <200608031824.k73IO3aX058527@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Aug 2006 18:24: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 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: Thu, 03 Aug 2006 18:24:04 -0000 marcus 2006-08-03 18:24:03 UTC FreeBSD doc repository Modified files: en/gnome news.xml Log: Announce GNOME 2.15.90 and 2.14.3 for FreeBSD. Revision Changes Path 1.121 +45 -0 www/en/gnome/news.xml From owner-cvs-all@FreeBSD.ORG Thu Aug 3 18:45:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CADE16A501; Thu, 3 Aug 2006 18:45:54 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2008943D45; Thu, 3 Aug 2006 18:45:54 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73Ijsqq059541; Thu, 3 Aug 2006 18:45:54 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73Ijsad059540; Thu, 3 Aug 2006 18:45:54 GMT (envelope-from blackend) Message-Id: <200608031845.k73Ijsad059540@repoman.freebsd.org> From: Marc Fonvieille Date: Thu, 3 Aug 2006 18:45: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 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: Thu, 03 Aug 2006 18:45:54 -0000 blackend 2006-08-03 18:45:53 UTC FreeBSD ports repository (doc committer) Modified files: . UPDATING Log: s/effectivly/effectively Revision Changes Path 1.378 +2 -2 ports/UPDATING From owner-cvs-all@FreeBSD.ORG Thu Aug 3 18:58:38 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 90DEA16A4E0; Thu, 3 Aug 2006 18:58:38 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5805243D5F; Thu, 3 Aug 2006 18:58:30 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.4/8.13.4) with ESMTP id k73Iw2Te099270; Thu, 3 Aug 2006 14:58:03 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Yar Tikhiy Date: Thu, 3 Aug 2006 14:58:00 -0400 User-Agent: KMail/1.9.1 References: <200608030959.k739x9N6007207@repoman.freebsd.org> <44D22E2F.4070307@errno.com> <20060803180854.GI97316@comp.chem.msu.su> In-Reply-To: <20060803180854.GI97316@comp.chem.msu.su> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608031458.01134.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, 03 Aug 2006 14:58:03 -0400 (EDT) X-Virus-Scanned: ClamAV 0.87.1/1634/Wed Aug 2 18:32:49 2006 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.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on server.baldwin.cx Cc: Sam Leffler , src-committers@freebsd.org, cvs-all@freebsd.org, cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/net if_vlan.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, 03 Aug 2006 18:58:38 -0000 On Thursday 03 August 2006 14:08, Yar Tikhiy wrote: > On Thu, Aug 03, 2006 at 10:11:11AM -0700, Sam Leffler wrote: > > Yar Tikhiy wrote: > > > yar 2006-08-03 09:59:09 UTC > > > > > > FreeBSD src repository > > > > > > Modified files: > > > sys/net if_vlan.c > > > Log: > > > Should vlan_input() ever be called with ifp pointing to a non-Ethernet > > > interface, do not just assign -1 to tag because it breaks the logic of > > > the code to follow. The better way is to handle this case as an unsupported > > > protocol and return unless INVARIANTS is in effect and we can panic. > > > Panic is good there because the scenario can happen only because of a > > > coding error elsewhere. > > > > > > We also should show the interface name in the panic message for easier > > > debugging of the problem, should it ever emerge. > > > > Introducing a panic in a place where you can trivially recover is bad > > regardless of why you got there. Many people run production systems > > with INVARIANTS turned on. Is it now possible to send a "packet of > > death" by exploiting this code path? > > No nastygram can ever achieve this; only FreeBSD commiters possess > the ability to :-) > > The panic can never be reached unless one manages to attach a vlan > interface to a non-Ethernet physical interface in advance, which > is totally prohibited by the code at the beginning of vlan_config(); > and vlan_config() is the only way to attach a vlan interface to a > physical interface. > > I.e., it will take a developer breaking the logic in /sys/net to > make the code path expoloitable. > > OTOH, you are right that we can at least attempt to recover from > the situation. Perhaps it's time to introduce a common macro or > function that emits a message on the console and then just calls > kdb_backtrace() instead of dumping core and halting the system? > So users will be able to post the stack traces to the lists and > thus help to spot the possible bugs w/o having to go through panics. > I'm unsure if sticking raw kdb_backtrace() calls in such places > is a good idea, so I'm suggesting a wrapper function or macro. > It is to be used in "can absolutely never happen" cases that are > not fatal, like the one under discussion. kdb_backtrace() is the wrapper function around other internals. :) -- John Baldwin From owner-cvs-all@FreeBSD.ORG Thu Aug 3 18:59:02 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 28C2316A50A; Thu, 3 Aug 2006 18:59:02 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D85C043D45; Thu, 3 Aug 2006 18:59:01 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73Ix1YT060173; Thu, 3 Aug 2006 18:59:01 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73Ix1nB060172; Thu, 3 Aug 2006 18:59:01 GMT (envelope-from erwin) Message-Id: <200608031859.k73Ix1nB060172@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 3 Aug 2006 18: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/biology/belvu 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, 03 Aug 2006 18:59:02 -0000 erwin 2006-08-03 18:59:01 UTC FreeBSD ports repository Modified files: biology/belvu Makefile Log: Mark broken due to checksum mismatch Revision Changes Path 1.2 +2 -0 ports/biology/belvu/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 19:01:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBA0C16A4ED; Thu, 3 Aug 2006 19:01:35 +0000 (UTC) (envelope-from shaun@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3224443D53; Thu, 3 Aug 2006 19:01:35 +0000 (GMT) (envelope-from shaun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73J1Z7I060380; Thu, 3 Aug 2006 19:01:35 GMT (envelope-from shaun@repoman.freebsd.org) Received: (from shaun@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73J1ZUl060379; Thu, 3 Aug 2006 19:01:35 GMT (envelope-from shaun) Message-Id: <200608031901.k73J1ZUl060379@repoman.freebsd.org> From: Shaun Amott Date: Thu, 3 Aug 2006 19:01:35 +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: Thu, 03 Aug 2006 19:01:36 -0000 shaun 2006-08-03 19:01:34 UTC FreeBSD doc repository (ports committer) Modified files: en_US.ISO8859-1/books/porters-handbook book.sgml Log: Make a minor adjustment to the VuXML section; uuidgen(1) is in FreeBSD 5.x and above, and should be the default. The alternative utility, which is in ports, is only required on FreeBSD 4.x. Approved by: brd via IRC Revision Changes Path 1.740 +3 -2 doc/en_US.ISO8859-1/books/porters-handbook/book.sgml From owner-cvs-all@FreeBSD.ORG Thu Aug 3 19:02:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C603916A4DD; Thu, 3 Aug 2006 19:02:18 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C79E43D46; Thu, 3 Aug 2006 19:02:18 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73J2ICO060455; Thu, 3 Aug 2006 19:02:18 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73J2Ict060454; Thu, 3 Aug 2006 19:02:18 GMT (envelope-from garga) Message-Id: <200608031902.k73J2Ict060454@repoman.freebsd.org> From: Renato Botelho Date: Thu, 3 Aug 2006 19: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/mail/qmail Makefile ports/mail/qmail/files PORT_NOTES PORT_NOTES_FreeBSD_40-RELEASE X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Aug 2006 19:02:18 -0000 garga 2006-08-03 19:02:18 UTC FreeBSD ports repository Modified files: mail/qmail Makefile Removed files: mail/qmail/files PORT_NOTES PORT_NOTES_FreeBSD_40-RELEASE Log: Remove old PORT_NOTES and PORT_NOTES_FreeBSD_40-RELEASE, they are not so useful these days. Revision Changes Path 1.110 +1 -2 ports/mail/qmail/Makefile 1.3 +0 -125 ports/mail/qmail/files/PORT_NOTES (dead) 1.3 +0 -61 ports/mail/qmail/files/PORT_NOTES_FreeBSD_40-RELEASE (dead) From owner-cvs-all@FreeBSD.ORG Thu Aug 3 19:02:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E997916A4DF; Thu, 3 Aug 2006 19:02:39 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D80D43D68; Thu, 3 Aug 2006 19:02:38 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73J2cK2060500; Thu, 3 Aug 2006 19:02:38 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73J2c5U060499; Thu, 3 Aug 2006 19:02:38 GMT (envelope-from erwin) Message-Id: <200608031902.k73J2c5U060499@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 3 Aug 2006 19:02: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/cl-asdf-cmucl 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, 03 Aug 2006 19:02:40 -0000 erwin 2006-08-03 19:02:38 UTC FreeBSD ports repository Modified files: devel/cl-asdf-cmucl Makefile Log: Mark BROKEN: does not build Revision Changes Path 1.6 +2 -0 ports/devel/cl-asdf-cmucl/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 19:05:08 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB08316A4F3; Thu, 3 Aug 2006 19:05:08 +0000 (UTC) (envelope-from pdeuskar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E91C43D7B; Thu, 3 Aug 2006 19:05:06 +0000 (GMT) (envelope-from pdeuskar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73J56ju061871; Thu, 3 Aug 2006 19:05:06 GMT (envelope-from pdeuskar@repoman.freebsd.org) Received: (from pdeuskar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73J55D2061870; Thu, 3 Aug 2006 19:05:05 GMT (envelope-from pdeuskar) Message-Id: <200608031905.k73J55D2061870@repoman.freebsd.org> From: Prafulla Deuskar Date: Thu, 3 Aug 2006 19: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/dev/em if_em.c 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: Thu, 03 Aug 2006 19:05:08 -0000 pdeuskar 2006-08-03 19:05:05 UTC FreeBSD src repository Modified files: sys/dev/em if_em.c if_em.h Log: Revert back changes to made in rev 1.109 of if_em.c which were unnecessary. This makes it easier for us to get the changes into -current and to -stable quickly. Revision Changes Path 1.124 +975 -975 src/sys/dev/em/if_em.c 1.47 +4 -4 src/sys/dev/em/if_em.h From owner-cvs-all@FreeBSD.ORG Thu Aug 3 19:06:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53E5D16A4DE; Thu, 3 Aug 2006 19:06:05 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07CB543D5A; Thu, 3 Aug 2006 19:06:05 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73J6479061986; Thu, 3 Aug 2006 19:06:04 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73J64Km061985; Thu, 3 Aug 2006 19:06:04 GMT (envelope-from erwin) Message-Id: <200608031906.k73J64Km061985@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 3 Aug 2006 19:06: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/biology/dotter 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, 03 Aug 2006 19:06:05 -0000 erwin 2006-08-03 19:06:04 UTC FreeBSD ports repository Modified files: biology/dotter Makefile Log: Mark BROKEN: checksum mismatch Revision Changes Path 1.2 +2 -0 ports/biology/dotter/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 19:08:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D454716A4DD; Thu, 3 Aug 2006 19:08:28 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FFAB43D49; Thu, 3 Aug 2006 19:08:28 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73J8SqD062206; Thu, 3 Aug 2006 19:08:28 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73J8Sf7062205; Thu, 3 Aug 2006 19:08:28 GMT (envelope-from erwin) Message-Id: <200608031908.k73J8Sf7062205@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 3 Aug 2006 19:08: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/dri-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, 03 Aug 2006 19:08:28 -0000 erwin 2006-08-03 19:08:28 UTC FreeBSD ports repository Modified files: graphics/dri-devel Makefile Log: Mark BROKEN: install fails Revision Changes Path 1.26 +2 -0 ports/graphics/dri-devel/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 19:16:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BABDE16A4DA; Thu, 3 Aug 2006 19:16:34 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79E6243D46; Thu, 3 Aug 2006 19:16:34 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73JGYdM062682; Thu, 3 Aug 2006 19:16:34 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73JGY0Q062681; Thu, 3 Aug 2006 19:16:34 GMT (envelope-from erwin) Message-Id: <200608031916.k73JGY0Q062681@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 3 Aug 2006 19:16: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/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: Thu, 03 Aug 2006 19:16:34 -0000 erwin 2006-08-03 19:16:34 UTC FreeBSD ports repository Modified files: sysutils/file Makefile Log: Mark BROKEN: does not build Revision Changes Path 1.22 +2 -0 ports/sysutils/file/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 19:28:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1ECAB16A4E0; Thu, 3 Aug 2006 19:28:01 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEADC43D53; Thu, 3 Aug 2006 19:27:56 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73JRuev063220; Thu, 3 Aug 2006 19:27:56 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73JRui4063219; Thu, 3 Aug 2006 19:27:56 GMT (envelope-from erwin) Message-Id: <200608031927.k73JRui4063219@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 3 Aug 2006 19:27: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/games/flightgear-aircrafts 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, 03 Aug 2006 19:28:01 -0000 erwin 2006-08-03 19:27:56 UTC FreeBSD ports repository Modified files: games/flightgear-aircrafts Makefile Log: Mark BROKEN: does not fetch Revision Changes Path 1.9 +2 -0 ports/games/flightgear-aircrafts/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 19:29:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F7E516A4E6; Thu, 3 Aug 2006 19:29:49 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E79743D5F; Thu, 3 Aug 2006 19:29:46 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73JTkUa063312; Thu, 3 Aug 2006 19:29:46 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73JTk8Y063311; Thu, 3 Aug 2006 19:29:46 GMT (envelope-from erwin) Message-Id: <200608031929.k73JTk8Y063311@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 3 Aug 2006 19:29: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/french/gnome-verbiste 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, 03 Aug 2006 19:29:49 -0000 erwin 2006-08-03 19:29:46 UTC FreeBSD ports repository Modified files: french/gnome-verbiste Makefile Log: Mark BROKEN: does not install Revision Changes Path 1.3 +2 -0 ports/french/gnome-verbiste/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 19:36:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 98AE016A4E2; Thu, 3 Aug 2006 19:36:28 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D95143D81; Thu, 3 Aug 2006 19:36:22 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73JaMae063843; Thu, 3 Aug 2006 19:36:22 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73JaMjv063842; Thu, 3 Aug 2006 19:36:22 GMT (envelope-from erwin) Message-Id: <200608031936.k73JaMjv063842@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 3 Aug 2006 19:36: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/graphics/grx 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, 03 Aug 2006 19:36:28 -0000 erwin 2006-08-03 19:36:22 UTC FreeBSD ports repository Modified files: graphics/grx Makefile Log: Mark BROKEN: does not build Revision Changes Path 1.4 +2 -0 ports/graphics/grx/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 19:37:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1145316A4E0; Thu, 3 Aug 2006 19:37:51 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74B5243D5C; Thu, 3 Aug 2006 19:37:48 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73JbmgF063893; Thu, 3 Aug 2006 19:37:48 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73JbmVj063892; Thu, 3 Aug 2006 19:37:48 GMT (envelope-from acm) Message-Id: <200608031937.k73JbmVj063892@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Thu, 3 Aug 2006 19: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/www/py-django 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: Thu, 03 Aug 2006 19:37:51 -0000 acm 2006-08-03 19:37:48 UTC FreeBSD ports repository Modified files: www/py-django Makefile pkg-plist Log: - Added PYVERSION to PLIST_SUB. It reflect installed version of python Approved by: garga (mentor) Revision Changes Path 1.8 +4 -2 ports/www/py-django/Makefile 1.5 +1108 -1108 ports/www/py-django/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 3 19:41:02 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 308CF16A4DF; Thu, 3 Aug 2006 19:41:02 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E85D043D69; Thu, 3 Aug 2006 19:41:01 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73Jf1wc064117; Thu, 3 Aug 2006 19:41:01 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73Jf1iA064116; Thu, 3 Aug 2006 19:41:01 GMT (envelope-from erwin) Message-Id: <200608031941.k73Jf1iA064116@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 3 Aug 2006 19:41: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/hungarian/ispell 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, 03 Aug 2006 19:41:02 -0000 erwin 2006-08-03 19:41:01 UTC FreeBSD ports repository Modified files: hungarian/ispell Makefile Log: Mark BROKEN: does not install Revision Changes Path 1.8 +2 -0 ports/hungarian/ispell/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 19:42:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 139F216A4DA; Thu, 3 Aug 2006 19:42:56 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE97E43D6A; Thu, 3 Aug 2006 19:42:55 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73Jgt6M064211; Thu, 3 Aug 2006 19:42:55 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73Jgt5I064210; Thu, 3 Aug 2006 19:42:55 GMT (envelope-from erwin) Message-Id: <200608031942.k73Jgt5I064210@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 3 Aug 2006 19:42: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/imapsync 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, 03 Aug 2006 19:42:56 -0000 erwin 2006-08-03 19:42:55 UTC FreeBSD ports repository Modified files: mail/imapsync Makefile Log: Mark BROKEN: does not fetch Revision Changes Path 1.19 +2 -0 ports/mail/imapsync/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 19:44:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CABBA16A4DF; Thu, 3 Aug 2006 19:44:26 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0B4543D55; Thu, 3 Aug 2006 19:44:25 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73JiPcY064353; Thu, 3 Aug 2006 19:44:25 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73JiPtt064351; Thu, 3 Aug 2006 19:44:25 GMT (envelope-from brooks) Message-Id: <200608031944.k73JiPtt064351@repoman.freebsd.org> From: Brooks Davis Date: Thu, 3 Aug 2006 19:44: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/net/globus4 Makefile Makefile.man distinfo pkg-plist ports/net/globus4/files patch-source-trees_core_source_config_accompiler.m4 patch-source-trees_core_source_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, 03 Aug 2006 19:44:26 -0000 brooks 2006-08-03 19:44:25 UTC FreeBSD ports repository Modified files: net/globus4 Makefile Makefile.man distinfo pkg-plist net/globus4/files patch-source-trees_core_source_config_accompiler.m4 patch-source-trees_core_source_configure Log: Upgrade to 4.0.2 plus all current eratta fixes. It builds for me on i386 and amd64 so remove BROKEN for now in hopes that it's really fixed. Spell powerpc correctly in the makefile and the patched internal autotools configuration. [0] PR: ports/98615 [0] Revision Changes Path 1.7 +15 -43 ports/net/globus4/Makefile 1.2 +22 -17 ports/net/globus4/Makefile.man 1.2 +6 -21 ports/net/globus4/distinfo 1.2 +2 -2 ports/net/globus4/files/patch-source-trees_core_source_config_accompiler.m4 1.2 +77 -77 ports/net/globus4/files/patch-source-trees_core_source_configure 1.2 +68 -91 ports/net/globus4/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 3 19:49:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD3D816A4DA; Thu, 3 Aug 2006 19:49:40 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 935E943D45; Thu, 3 Aug 2006 19:49:40 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73JneAC064565; Thu, 3 Aug 2006 19:49:40 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73JneX9064564; Thu, 3 Aug 2006 19:49:40 GMT (envelope-from flz) Message-Id: <200608031949.k73JneX9064564@repoman.freebsd.org> From: Florent Thoumie Date: Thu, 3 Aug 2006 19:49: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/www/py-django-devel 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, 03 Aug 2006 19:49:40 -0000 flz 2006-08-03 19:49:40 UTC FreeBSD ports repository Modified files: www/py-django-devel Makefile distinfo pkg-plist Log: - Update to 20060802 snapshot. - Fix packing list [1]. PR: ports/101251 [1] Submitted by: erwin [1] Revision Changes Path 1.2 +1 -1 ports/www/py-django-devel/Makefile 1.2 +3 -3 ports/www/py-django-devel/distinfo 1.2 +1110 -1096 ports/www/py-django-devel/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 3 20:06:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0068D16A4DA; Thu, 3 Aug 2006 20:06:54 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87BCC43D46; Thu, 3 Aug 2006 20:06:54 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73K6sxI066769; Thu, 3 Aug 2006 20:06:54 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73K6srj066768; Thu, 3 Aug 2006 20:06:54 GMT (envelope-from thierry) Message-Id: <200608032006.k73K6srj066768@repoman.freebsd.org> From: Thierry Thomas Date: Thu, 3 Aug 2006 20:06: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/x11-fonts/code2000 Makefile distinfo pkg-message pkg-plist ports/x11-fonts/code2000/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: Thu, 03 Aug 2006 20:06:55 -0000 thierry 2006-08-03 20:06:54 UTC FreeBSD ports repository Modified files: x11-fonts/code2000 Makefile distinfo pkg-plist Added files: x11-fonts/code2000/files pkg-message.in Removed files: x11-fonts/code2000 pkg-message Log: - Upgrade to 1.16; - Change my address; - Remove XFree86-3 support; - Chase ttmkfdir update. Revision Changes Path 1.5 +12 -61 ports/x11-fonts/code2000/Makefile 1.6 +3 -3 ports/x11-fonts/code2000/distinfo 1.1 +15 -0 ports/x11-fonts/code2000/files/pkg-message.in (new) 1.3 +0 -23 ports/x11-fonts/code2000/pkg-message (dead) 1.3 +1 -3 ports/x11-fonts/code2000/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 3 20:09:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 69D0A16A4E1; Thu, 3 Aug 2006 20:09:31 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 352DD43D6B; Thu, 3 Aug 2006 20:09:31 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73K9Vkf066872; Thu, 3 Aug 2006 20:09:31 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73K9VD4066871; Thu, 3 Aug 2006 20:09:31 GMT (envelope-from erwin) Message-Id: <200608032009.k73K9VD4066871@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 3 Aug 2006 20:09: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/japanese/gauche-kakasi 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, 03 Aug 2006 20:09:31 -0000 erwin 2006-08-03 20:09:31 UTC FreeBSD ports repository Modified files: japanese/gauche-kakasi Makefile Log: Mark BROKEN on all platforms: deinstalls file not belonging to itself Revision Changes Path 1.12 +2 -0 ports/japanese/gauche-kakasi/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 20:19:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 70F4016A4F1; Thu, 3 Aug 2006 20:19:27 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11C0A43D62; Thu, 3 Aug 2006 20:19:07 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73KJ7w3067302; Thu, 3 Aug 2006 20:19:07 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73KJ7gT067301; Thu, 3 Aug 2006 20:19:07 GMT (envelope-from thierry) Message-Id: <200608032019.k73KJ7gT067301@repoman.freebsd.org> From: Thierry Thomas Date: Thu, 3 Aug 2006 20:19: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/devel/bouml 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, 03 Aug 2006 20:19:27 -0000 thierry 2006-08-03 20:19:07 UTC FreeBSD ports repository Modified files: devel/bouml Makefile distinfo Log: Chase another silent update. The one-liner diff is seeable at . Notified by: erwin Revision Changes Path 1.51 +2 -1 ports/devel/bouml/Makefile 1.51 +5 -5 ports/devel/bouml/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 3 20:25:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE13416A4DA; Thu, 3 Aug 2006 20:25:11 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B443543D5D; Thu, 3 Aug 2006 20:25:08 +0000 (GMT) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73KP8Bx067697; Thu, 3 Aug 2006 20:25:08 GMT (envelope-from bsam@repoman.freebsd.org) Received: (from bsam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73KP8nG067696; Thu, 3 Aug 2006 20:25:08 GMT (envelope-from bsam) Message-Id: <200608032025.k73KP8nG067696@repoman.freebsd.org> From: Boris Samorodov Date: Thu, 3 Aug 2006 20:25: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/lang Makefile ports/lang/gnat-gcc34 Makefile distinfo pkg-descr pkg-plist ports/lang/gnat-gcc34/files patch-gengtype-yacc.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: Thu, 03 Aug 2006 20:25:12 -0000 bsam 2006-08-03 20:25:08 UTC FreeBSD ports repository Modified files: lang Makefile Added files: lang/gnat-gcc34 Makefile distinfo pkg-descr pkg-plist lang/gnat-gcc34/files patch-gengtype-yacc.y Log: The GNU Ada compiler system built from GCC 3.4.6. PR: 99993 Submitted by: Karel Miklav Approved by: netchild (mentor, implicit) Revision Changes Path 1.506 +1 -0 ports/lang/Makefile 1.1 +172 -0 ports/lang/gnat-gcc34/Makefile (new) 1.1 +12 -0 ports/lang/gnat-gcc34/distinfo (new) 1.1 +12 -0 ports/lang/gnat-gcc34/files/patch-gengtype-yacc.y (new) 1.1 +6 -0 ports/lang/gnat-gcc34/pkg-descr (new) 1.1 +28 -0 ports/lang/gnat-gcc34/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 3 20:25:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63E4416A4E0; Thu, 3 Aug 2006 20:25:52 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3059F43D6B; Thu, 3 Aug 2006 20:25:52 +0000 (GMT) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73KPquJ067782; Thu, 3 Aug 2006 20:25:52 GMT (envelope-from bsam@repoman.freebsd.org) Received: (from bsam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73KPq55067781; Thu, 3 Aug 2006 20:25:52 GMT (envelope-from bsam) Message-Id: <200608032025.k73KPq55067781@repoman.freebsd.org> From: Boris Samorodov Date: Thu, 3 Aug 2006 20:25: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: 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, 03 Aug 2006 20:25:52 -0000 bsam 2006-08-03 20:25:52 UTC FreeBSD ports repository Modified files: . modules Log: gnat-gcc34 --> ports/lang/gnat-gcc34 Revision Changes Path 1.15885 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Aug 3 20:28:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D352916A4DA; Thu, 3 Aug 2006 20:28:00 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4700543D6E; Thu, 3 Aug 2006 20:28:00 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73KS0Vh067873; Thu, 3 Aug 2006 20:28:00 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73KS0bJ067872; Thu, 3 Aug 2006 20:28:00 GMT (envelope-from erwin) Message-Id: <200608032028.k73KS0bJ067872@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 3 Aug 2006 20:28: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/biology/dotter 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, 03 Aug 2006 20:28:00 -0000 erwin 2006-08-03 20:28:00 UTC FreeBSD ports repository Modified files: biology/dotter Makefile Log: Unmark BROKEN, it seems to be caused by a stale distfile on ftp-master. Revision Changes Path 1.3 +0 -2 ports/biology/dotter/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 20:32:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DEA1716A4DF; Thu, 3 Aug 2006 20:32:44 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5875743D5C; Thu, 3 Aug 2006 20:32:44 +0000 (GMT) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73KWhGe068132; Thu, 3 Aug 2006 20:32:43 GMT (envelope-from bsam@repoman.freebsd.org) Received: (from bsam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73KWhsg068131; Thu, 3 Aug 2006 20:32:43 GMT (envelope-from bsam) Message-Id: <200608032032.k73KWhsg068131@repoman.freebsd.org> From: Boris Samorodov Date: Thu, 3 Aug 2006 20:32: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/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, 03 Aug 2006 20:32:45 -0000 bsam 2006-08-03 20:32:43 UTC FreeBSD doc repository (ports committer) Modified files: en_US.ISO8859-1/articles/contributors contrib.additional.sgml Log: Add Karel Miklav for lang/gnat-gcc34 PR: 99993 Approved by: netchild (mentor, implicit) Revision Changes Path 1.597 +5 -0 doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml From owner-cvs-all@FreeBSD.ORG Thu Aug 3 20:39:09 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B69D16A4DF; Thu, 3 Aug 2006 20:39:09 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0806443D45; Thu, 3 Aug 2006 20:39:09 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73Kd8ah068572; Thu, 3 Aug 2006 20:39:08 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73Kd8LG068571; Thu, 3 Aug 2006 20:39:08 GMT (envelope-from erwin) Message-Id: <200608032039.k73Kd8LG068571@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 3 Aug 2006 20:39: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/audio/icecast2 Makefile ports/audio/icecast2/files icecast2.sh.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, 03 Aug 2006 20:39:09 -0000 erwin 2006-08-03 20:39:08 UTC FreeBSD ports repository Modified files: audio/icecast2 Makefile audio/icecast2/files icecast2.sh.in Log: Fix passing of the -b option the the RC script. PR: 101285 Submitted by: gabor Approved by: maintainer Revision Changes Path 1.53 +1 -1 ports/audio/icecast2/Makefile 1.4 +3 -3 ports/audio/icecast2/files/icecast2.sh.in From owner-cvs-all@FreeBSD.ORG Thu Aug 3 20:43:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 08E2316A4DA; Thu, 3 Aug 2006 20:43:52 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF68D43D45; Thu, 3 Aug 2006 20:43:51 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73Khpkf069065; Thu, 3 Aug 2006 20:43:51 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73KhpSk069064; Thu, 3 Aug 2006 20:43:51 GMT (envelope-from bms) Message-Id: <200608032043.k73KhpSk069064@repoman.freebsd.org> From: Bruce M Simpson Date: Thu, 3 Aug 2006 20:43: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/logger logger.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: Thu, 03 Aug 2006 20:43:52 -0000 bms 2006-08-03 20:43:51 UTC FreeBSD src repository Modified files: usr.bin/logger logger.1 Log: Update document date. Noticed by: ru Revision Changes Path 1.18 +1 -1 src/usr.bin/logger/logger.1 From owner-cvs-all@FreeBSD.ORG Thu Aug 3 21:00:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F6EE16A4DA; Thu, 3 Aug 2006 21:00:21 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9D7543D5C; Thu, 3 Aug 2006 21:00:20 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73L0KVO077573; Thu, 3 Aug 2006 21:00:20 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73L0K9B077572; Thu, 3 Aug 2006 21:00:20 GMT (envelope-from erwin) Message-Id: <200608032100.k73L0K9B077572@repoman.freebsd.org> From: Erwin Lansing Date: Thu, 3 Aug 2006 21: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/sysutils/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: Thu, 03 Aug 2006 21:00:21 -0000 erwin 2006-08-03 21:00:20 UTC FreeBSD ports repository Modified files: sysutils/file Makefile Log: Unmark BROKEN, this seems to be a pointyhat specific issue Submitted by: linimon Pointy hat: erwin Revision Changes Path 1.23 +0 -2 ports/sysutils/file/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 21:00:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3993B16A4DF; Thu, 3 Aug 2006 21:00:36 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C13943D46; Thu, 3 Aug 2006 21:00:36 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73L0ZFR077652; Thu, 3 Aug 2006 21:00:35 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73L0Zda077651; Thu, 3 Aug 2006 21:00:35 GMT (envelope-from thierry) Message-Id: <200608032100.k73L0Zda077651@repoman.freebsd.org> From: Thierry Thomas Date: Thu, 3 Aug 2006 21:00: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/graphics/gtkdps 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, 03 Aug 2006 21:00:36 -0000 thierry 2006-08-03 21:00:35 UTC FreeBSD ports repository Modified files: graphics/gtkdps Makefile Log: Chase the update of x11/dgs and depends on pswrap from Imake. Reported by: erwin Revision Changes Path 1.34 +7 -1 ports/graphics/gtkdps/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 21:19:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F0F516A4E0; Thu, 3 Aug 2006 21:19:14 +0000 (UTC) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E845C43D68; Thu, 3 Aug 2006 21:19:13 +0000 (GMT) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73LJDTh079727; Thu, 3 Aug 2006 21:19:13 GMT (envelope-from jb@repoman.freebsd.org) Received: (from jb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73LJD6t079726; Thu, 3 Aug 2006 21:19:13 GMT (envelope-from jb) Message-Id: <200608032119.k73LJD6t079726@repoman.freebsd.org> From: John Birrell Date: Thu, 3 Aug 2006 21:19:13 +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 subr_rman.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, 03 Aug 2006 21:19:14 -0000 jb 2006-08-03 21:19:13 UTC FreeBSD src repository Modified files: sys/kern subr_rman.c Log: Report the correct function name in a DPRINTF. Revision Changes Path 1.52 +4 -3 src/sys/kern/subr_rman.c From owner-cvs-all@FreeBSD.ORG Thu Aug 3 21:22:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E350F16A4E1; Thu, 3 Aug 2006 21:22:50 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B8DD43D6E; Thu, 3 Aug 2006 21:22:50 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73LMoqR080067; Thu, 3 Aug 2006 21:22:50 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73LMoLa080066; Thu, 3 Aug 2006 21:22:50 GMT (envelope-from blackend) Message-Id: <200608032122.k73LMoLa080066@repoman.freebsd.org> From: Marc Fonvieille Date: Thu, 3 Aug 2006 21:22: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: www/en about.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, 03 Aug 2006 21:22:51 -0000 blackend 2006-08-03 21:22:50 UTC FreeBSD doc repository Modified files: en about.sgml Log: Update the FreeBSD Foundation's email. Requested by: deb@ Revision Changes Path 1.4 +2 -2 www/en/about.sgml From owner-cvs-all@FreeBSD.ORG Thu Aug 3 21:39:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D1D3A16A4DA; Thu, 3 Aug 2006 21:39:12 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87C8143D64; Thu, 3 Aug 2006 21:39:12 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73LdCnm080777; Thu, 3 Aug 2006 21:39:12 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73LdC8j080776; Thu, 3 Aug 2006 21:39:12 GMT (envelope-from garga) Message-Id: <200608032139.k73LdC8j080776@repoman.freebsd.org> From: Renato Botelho Date: Thu, 3 Aug 2006 21:39: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/qmail 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, 03 Aug 2006 21:39:12 -0000 garga 2006-08-03 21:39:12 UTC FreeBSD ports repository Modified files: mail/qmail Makefile Log: Fix outgoingip.patch-spamcontrol MASTER_SITE_SUBDIR Revision Changes Path 1.111 +1 -1 ports/mail/qmail/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 21:45:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB2A816A4DD; Thu, 3 Aug 2006 21:45:07 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75A4143D45; Thu, 3 Aug 2006 21:45:07 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73Lj7uA081284; Thu, 3 Aug 2006 21:45:07 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73Lj7M0081283; Thu, 3 Aug 2006 21:45:07 GMT (envelope-from blackend) Message-Id: <200608032145.k73Lj7M0081283@repoman.freebsd.org> From: Marc Fonvieille Date: Thu, 3 Aug 2006 21:45: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 about.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, 03 Aug 2006 21:45:07 -0000 blackend 2006-08-03 21:45:07 UTC FreeBSD doc repository Modified files: en about.sgml Log: Finish for real previous commit. Spotted by: deb@ and simon@ PointyHat for a too fast commit: blackend Revision Changes Path 1.5 +2 -2 www/en/about.sgml From owner-cvs-all@FreeBSD.ORG Thu Aug 3 22:04:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8AFD816A4DD; Thu, 3 Aug 2006 22:04:34 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 33E1543D60; Thu, 3 Aug 2006 22:04:34 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73M4XIT083413; Thu, 3 Aug 2006 22:04:33 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73M4X7N083412; Thu, 3 Aug 2006 22:04:33 GMT (envelope-from acm) Message-Id: <200608032204.k73M4X7N083412@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Thu, 3 Aug 2006 22: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/games Makefile ports/games/nazghul 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, 03 Aug 2006 22:04:34 -0000 acm 2006-08-03 22:04:33 UTC FreeBSD ports repository Modified files: games Makefile Added files: games/nazghul Makefile distinfo pkg-descr pkg-plist Log: New port: games/nazghul Nazghul is a computer role-playing game (CRPG) engine. Obviously, the emphasis is not on graphics or first-person squad-based stealth action. If you like roguelikes or the top-down, 2d, turn-based CRPG's that disappeared in the early 90's then this is for you. WWW: http://myweb.cableone.net/gmcnutt/nazghul.html Approved by: garga (mentor) Revision Changes Path 1.1022 +1 -0 ports/games/Makefile 1.1 +27 -0 ports/games/nazghul/Makefile (new) 1.1 +3 -0 ports/games/nazghul/distinfo (new) 1.1 +6 -0 ports/games/nazghul/pkg-descr (new) 1.1 +228 -0 ports/games/nazghul/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 3 22:06:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E77E16A4DE; Thu, 3 Aug 2006 22:06:49 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 030E843D82; Thu, 3 Aug 2006 22:06:42 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73M6g97083631; Thu, 3 Aug 2006 22:06:42 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73M6gM8083630; Thu, 3 Aug 2006 22:06:42 GMT (envelope-from acm) Message-Id: <200608032206.k73M6gM8083630@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Thu, 3 Aug 2006 22:06: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: 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, 03 Aug 2006 22:06:49 -0000 acm 2006-08-03 22:06:42 UTC FreeBSD ports repository Modified files: . modules Log: nazghul --> ports/games/nazghul Revision Changes Path 1.15886 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Aug 3 22:31:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3558016A4DA; Thu, 3 Aug 2006 22:31:00 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E811343D45; Thu, 3 Aug 2006 22:30:59 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73MUxuH085296; Thu, 3 Aug 2006 22:30:59 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73MUxMe085295; Thu, 3 Aug 2006 22:30:59 GMT (envelope-from thierry) Message-Id: <200608032230.k73MUxMe085295@repoman.freebsd.org> From: Thierry Thomas Date: Thu, 3 Aug 2006 22:30: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/net-im/mercury 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, 03 Aug 2006 22:31:00 -0000 thierry 2006-08-03 22:30:59 UTC FreeBSD ports repository Modified files: net-im/mercury Makefile distinfo pkg-plist Log: Upgrade to 1.8 RC4b. Changelog at . Revision Changes Path 1.31 +1 -1 ports/net-im/mercury/Makefile 1.29 +3 -3 ports/net-im/mercury/distinfo 1.24 +1 -0 ports/net-im/mercury/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 3 22:33:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E288D16A4DF; Thu, 3 Aug 2006 22:33:11 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80D8943D49; Thu, 3 Aug 2006 22:33:11 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73MXBOj085449; Thu, 3 Aug 2006 22:33:11 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73MXBXY085444; Thu, 3 Aug 2006 22:33:11 GMT (envelope-from brooks) Message-Id: <200608032233.k73MXBXY085444@repoman.freebsd.org> From: Brooks Davis Date: Thu, 3 Aug 2006 22:33: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/drupal 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, 03 Aug 2006 22:33:12 -0000 brooks 2006-08-03 22:33:10 UTC FreeBSD ports repository Modified files: www/drupal Makefile Log: Remove bogus WRKSRC variable caused by me screwing up the permissions on my work directory. Reported by: Sean McNeil Revision Changes Path 1.29 +0 -3 ports/www/drupal/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 22:44:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C093716A4DE; Thu, 3 Aug 2006 22:44:47 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8470643D53; Thu, 3 Aug 2006 22:44:47 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73Milnt086147; Thu, 3 Aug 2006 22:44:47 GMT (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73Milqb086146; Thu, 3 Aug 2006 22:44:47 GMT (envelope-from sobomax) Message-Id: <200608032244.k73Milqb086146@repoman.freebsd.org> From: Maxim Sobolev Date: Thu, 3 Aug 2006 22:44: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/powerpc/powerpc 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: Thu, 03 Aug 2006 22:44:47 -0000 sobomax 2006-08-03 22:44:47 UTC FreeBSD src repository Modified files: sys/powerpc/powerpc machdep.c Log: Use proper trap code for the EXC_ALI traps. This fixes SIGBUS during unaligned 64-bits load/stores. MFC after: 2 weeks Revision Changes Path 1.96 +1 -1 src/sys/powerpc/powerpc/machdep.c From owner-cvs-all@FreeBSD.ORG Thu Aug 3 22:44:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 483DD16A5DA; Thu, 3 Aug 2006 22:44:52 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0428243D49; Thu, 3 Aug 2006 22:44:52 +0000 (GMT) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73Mipnd086197; Thu, 3 Aug 2006 22:44:51 GMT (envelope-from bsam@repoman.freebsd.org) Received: (from bsam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73MipKL086196; Thu, 3 Aug 2006 22:44:51 GMT (envelope-from bsam) Message-Id: <200608032244.k73MipKL086196@repoman.freebsd.org> From: Boris Samorodov Date: Thu, 3 Aug 2006 22:44: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/py-ice Makefile distinfo pkg-plist ports/devel/py-ice/files patch-config+Make.rules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Aug 2006 22:44:52 -0000 bsam 2006-08-03 22:44:51 UTC FreeBSD ports repository Modified files: devel/py-ice Makefile distinfo pkg-plist devel/py-ice/files patch-config+Make.rules Log: - update to the new version 3.1.0; - introduce LIB_VRS variable at Makefile (to be used at LIB_DEPENDS and PLIST_SUB); - create some variables at PLIST_SUB and change plist accordingly; - make "portlint -a" happy (delete quotes from a BROKEN message); - change my email to the FreeBSD.org one. Approved by: netchild (mentor, implicit) Revision Changes Path 1.5 +8 -5 ports/devel/py-ice/Makefile 1.3 +3 -3 ports/devel/py-ice/distinfo 1.3 +7 -7 ports/devel/py-ice/files/patch-config+Make.rules 1.3 +7 -2 ports/devel/py-ice/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 3 22:46:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B943316A4DD; Thu, 3 Aug 2006 22:46:52 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 782D943D58; Thu, 3 Aug 2006 22:46:52 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73Mkqa0086523; Thu, 3 Aug 2006 22:46:52 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73Mkqmj086520; Thu, 3 Aug 2006 22:46:52 GMT (envelope-from dinoex) Message-Id: <200608032246.k73Mkqmj086520@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 3 Aug 2006 22:46: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/mail/popa3d Makefile ports/mail/popa3d/files popa3d.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: Thu, 03 Aug 2006 22:46:52 -0000 dinoex 2006-08-03 22:46:52 UTC FreeBSD ports repository Modified files: mail/popa3d Makefile mail/popa3d/files popa3d.sh Log: - fix rc script for option WITH_STANDALONE in FreeBSD 4.x Reported by: subdue on irc Revision Changes Path 1.36 +12 -1 ports/mail/popa3d/Makefile 1.3 +1 -1 ports/mail/popa3d/files/popa3d.sh From owner-cvs-all@FreeBSD.ORG Thu Aug 3 22:48:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2840216A4E0; Thu, 3 Aug 2006 22:48:17 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C85C243D81; Thu, 3 Aug 2006 22:48:14 +0000 (GMT) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73MmEHD086619; Thu, 3 Aug 2006 22:48:14 GMT (envelope-from bsam@repoman.freebsd.org) Received: (from bsam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73MmEON086618; Thu, 3 Aug 2006 22:48:14 GMT (envelope-from bsam) Message-Id: <200608032248.k73MmEON086618@repoman.freebsd.org> From: Boris Samorodov Date: Thu, 3 Aug 2006 22:48: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/devel/psvn 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, 03 Aug 2006 22:48:17 -0000 bsam 2006-08-03 22:48:14 UTC FreeBSD ports repository Modified files: devel/psvn Makefile distinfo Log: Update to the new version psvn-20824. Approved by: anray, netchild (mentor, implicit) Revision Changes Path 1.18 +2 -2 ports/devel/psvn/Makefile 1.17 +3 -3 ports/devel/psvn/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 3 23:22:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3879A16A4DE; Thu, 3 Aug 2006 23:22:37 +0000 (UTC) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F38E343D45; Thu, 3 Aug 2006 23:22:36 +0000 (GMT) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73NMaS6094521; Thu, 3 Aug 2006 23:22:36 GMT (envelope-from alepulver@repoman.freebsd.org) Received: (from alepulver@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73NMaNN094520; Thu, 3 Aug 2006 23:22:36 GMT (envelope-from alepulver) Message-Id: <200608032322.k73NMaNN094520@repoman.freebsd.org> From: Alejandro Pulver Date: Thu, 3 Aug 2006 23:22: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/games/tyrquake 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, 03 Aug 2006 23:22:37 -0000 alepulver 2006-08-03 23:22:36 UTC FreeBSD ports repository Modified files: games/tyrquake Makefile Log: - Fix building on non-i386. PR: ports/101328 Submitted by: Roland Smith Revision Changes Path 1.3 +1 -1 ports/games/tyrquake/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 3 23:24:08 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A91B416A4DF; Thu, 3 Aug 2006 23:24:08 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E45643D45; Thu, 3 Aug 2006 23:24:08 +0000 (GMT) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73NO8nk094615; Thu, 3 Aug 2006 23:24:08 GMT (envelope-from bsam@repoman.freebsd.org) Received: (from bsam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73NO8uK094614; Thu, 3 Aug 2006 23:24:08 GMT (envelope-from bsam) Message-Id: <200608032324.k73NO8uK094614@repoman.freebsd.org> From: Boris Samorodov Date: Thu, 3 Aug 2006 23: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/graphics/linux-sdl_image 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, 03 Aug 2006 23:24:08 -0000 bsam 2006-08-03 23:24:08 UTC FreeBSD ports repository Modified files: graphics/linux-sdl_image Makefile distinfo pkg-plist Log: o convert the port to use bsd.linux-rpm.mk infrostructure; o update to a newer version 1.2.5; o add fetching of the sources when PACKAGE_BUILDING=YES; o introduce SDLIMVER to be used at pkg-plist file. Approved by: nivit@users.sourceforge.net (maintainer timeout, emailed 2006-06-26, netchild (mentor, implicit) Revision Changes Path 1.9 +7 -30 ports/graphics/linux-sdl_image/Makefile 1.4 +6 -3 ports/graphics/linux-sdl_image/distinfo 1.3 +5 -5 ports/graphics/linux-sdl_image/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 3 23:29:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D588B16A4DE; Thu, 3 Aug 2006 23:29:12 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B324543D46; Thu, 3 Aug 2006 23:29:12 +0000 (GMT) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73NTCSD094879; Thu, 3 Aug 2006 23:29:12 GMT (envelope-from bsam@repoman.freebsd.org) Received: (from bsam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73NTCI8094878; Thu, 3 Aug 2006 23:29:12 GMT (envelope-from bsam) Message-Id: <200608032329.k73NTCI8094878@repoman.freebsd.org> From: Boris Samorodov Date: Thu, 3 Aug 2006 23:29: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/linux-libmng Makefile distinfo.i386 pkg-plist.i386 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Aug 2006 23:29:13 -0000 bsam 2006-08-03 23:29:12 UTC FreeBSD ports repository Modified files: graphics/linux-libmng Makefile distinfo.i386 pkg-plist.i386 Log: o convert the port to use bsd.linux-rpm.mk infrostructure; o update to new version 1.0.9; o add amd64 to ONLY_FOR_ARCHS; o add SHA256 checksum; o add fetching of the sources when PACKAGE_BUILDING=YES. Approved by: mranner@inode.at (maintainer timeout, emailed 2006-06-26), netchild (mentor, implicit) Revision Changes Path 1.9 +7 -35 ports/graphics/linux-libmng/Makefile 1.2 +6 -2 ports/graphics/linux-libmng/distinfo.i386 1.2 +2 -2 ports/graphics/linux-libmng/pkg-plist.i386 From owner-cvs-all@FreeBSD.ORG Thu Aug 3 23:53:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25D3A16A4DE; Thu, 3 Aug 2006 23:53:42 +0000 (UTC) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4F0243D4C; Thu, 3 Aug 2006 23:53:41 +0000 (GMT) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73NrfEW096313; Thu, 3 Aug 2006 23:53:41 GMT (envelope-from alepulver@repoman.freebsd.org) Received: (from alepulver@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73Nrffu096312; Thu, 3 Aug 2006 23:53:41 GMT (envelope-from alepulver) Message-Id: <200608032353.k73Nrffu096312@repoman.freebsd.org> From: Alejandro Pulver Date: Thu, 3 Aug 2006 23: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/graphics/grx Makefile pkg-plist ports/graphics/grx/files patch-src__include__libgrx.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, 03 Aug 2006 23:53:42 -0000 alepulver 2006-08-03 23:53:41 UTC FreeBSD ports repository Modified files: graphics/grx Makefile pkg-plist Added files: graphics/grx/files patch-src__include__libgrx.h Log: - Fix building. Revision Changes Path 1.5 +18 -13 ports/graphics/grx/Makefile 1.1 +34 -0 ports/graphics/grx/files/patch-src__include__libgrx.h (new) 1.2 +2 -2 ports/graphics/grx/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 3 23:56:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FB2316A4E0; Thu, 3 Aug 2006 23:56:12 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B01343D45; Thu, 3 Aug 2006 23:56:12 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73NuCAi096483; Thu, 3 Aug 2006 23:56:12 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73NuCsa096482; Thu, 3 Aug 2006 23:56:12 GMT (envelope-from alc) Message-Id: <200608032356.k73NuCsa096482@repoman.freebsd.org> From: Alan Cox Date: Thu, 3 Aug 2006 23:56: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/vm swap_pager.c vm_object.c vm_page.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, 03 Aug 2006 23:56:12 -0000 alc 2006-08-03 23:56:12 UTC FreeBSD src repository Modified files: sys/vm swap_pager.c vm_object.c vm_page.c Log: When sleeping on a busy page, use the lock from the containing object rather than the global page queues lock. Revision Changes Path 1.280 +4 -4 src/sys/vm/swap_pager.c 1.364 +6 -6 src/sys/vm/vm_object.c 1.320 +5 -8 src/sys/vm/vm_page.c From owner-cvs-all@FreeBSD.ORG Thu Aug 3 23:59:45 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 500E116A4DA; Thu, 3 Aug 2006 23:59:45 +0000 (UTC) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1843843D45; Thu, 3 Aug 2006 23:59:45 +0000 (GMT) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k73Nxix8096632; Thu, 3 Aug 2006 23:59:44 GMT (envelope-from alepulver@repoman.freebsd.org) Received: (from alepulver@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k73Nxi0E096631; Thu, 3 Aug 2006 23:59:44 GMT (envelope-from alepulver) Message-Id: <200608032359.k73Nxi0E096631@repoman.freebsd.org> From: Alejandro Pulver Date: Thu, 3 Aug 2006 23:59: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/linux-quake4-demo 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: Thu, 03 Aug 2006 23:59:45 -0000 alepulver 2006-08-03 23:59:44 UTC FreeBSD ports repository Modified files: games/linux-quake4-demo Makefile pkg-plist Log: - Bump PORTREVISION. - Rename directories and programs with a "linux-" prefix. - Add NO_CDROM and NO_PACKAGE (LEGAL entry shared with "games/linux-quake4"). - Use MASTER_SITE_SUBDIR and groups. - Fix directory for MASTER_SITE_IDSOFTWARE. Revision Changes Path 1.2 +12 -6 ports/games/linux-quake4-demo/Makefile 1.2 +2 -2 ports/games/linux-quake4-demo/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 4 00:12:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F3CEA16A4E0; Fri, 4 Aug 2006 00:12:19 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C071F43D45; Fri, 4 Aug 2006 00:12:19 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k740CJZi099424; Fri, 4 Aug 2006 00:12:19 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k740CJW4099423; Fri, 4 Aug 2006 00:12:19 GMT (envelope-from rafan) Message-Id: <200608040012.k740CJW4099423@repoman.freebsd.org> From: Rong-En Fan Date: Fri, 4 Aug 2006 00:12: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/ftp/proftpd 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, 04 Aug 2006 00:12:20 -0000 rafan 2006-08-04 00:12:19 UTC FreeBSD ports repository Modified files: ftp/proftpd Makefile Log: - pet portlint(1) PR: ports/101337 Submitted by: Beech Rintoul (maintainer) Revision Changes Path 1.89 +0 -1 ports/ftp/proftpd/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 01:15:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2DD1C16A4E1 for ; Fri, 4 Aug 2006 01:15:43 +0000 (UTC) (envelope-from cperciva@freebsd.org) Received: from pd4mo2so.prod.shaw.ca (shawidc-mo1.cg.shawcable.net [24.71.223.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E17D43D49 for ; Fri, 4 Aug 2006 01:15:42 +0000 (GMT) (envelope-from cperciva@freebsd.org) Received: from pd5mr3so.prod.shaw.ca (pd5mr3so-qfe3.prod.shaw.ca [10.0.141.144]) by l-daemon (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0J3G00JVZ8U6LL80@l-daemon> for cvs-all@FreeBSD.org; Thu, 03 Aug 2006 19:15:42 -0600 (MDT) Received: from pn2ml9so.prod.shaw.ca ([10.0.121.7]) by pd5mr3so.prod.shaw.ca (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0J3G006TM8U63KI0@pd5mr3so.prod.shaw.ca> for cvs-all@FreeBSD.org; Thu, 03 Aug 2006 19:15:42 -0600 (MDT) Received: from hexahedron.daemonology.net ([24.82.18.31]) by l-daemon (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with SMTP id <0J3G001IL8U58DE0@l-daemon> for cvs-all@FreeBSD.org; Thu, 03 Aug 2006 19:15:42 -0600 (MDT) Received: (qmail 1271 invoked from network); Fri, 04 Aug 2006 01:15:35 +0000 Received: from unknown (HELO ?127.0.0.1?) (127.0.0.1) by localhost with SMTP; Fri, 04 Aug 2006 01:15:35 +0000 Date: Thu, 03 Aug 2006 18:15:34 -0700 From: Colin Percival In-reply-to: <200608031905.k73J55D2061870@repoman.freebsd.org> To: Prafulla Deuskar Message-id: <44D29FB6.9090209@freebsd.org> MIME-version: 1.0 Content-type: text/plain; charset=ISO-8859-1 Content-transfer-encoding: 7bit X-Enigmail-Version: 0.94.0.0 References: <200608031905.k73J55D2061870@repoman.freebsd.org> User-Agent: Thunderbird 1.5 (X11/20060416) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/em if_em.c 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, 04 Aug 2006 01:15:43 -0000 Prafulla Deuskar wrote: > Modified files: > sys/dev/em if_em.c if_em.h > Log: > Revert back changes to made in rev 1.109 of if_em.c which were unnecessary. > This makes it easier for us to get the changes into -current and to -stable quickly. I assume you've discussed this with glebius, who made the original changes; in the future, please add an "Approved by:", "No objections from:", or "Discussed with:" line to backout commits to make this more clear. Colin Percival From owner-cvs-all@FreeBSD.ORG Fri Aug 4 01:23:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0826916A4DE; Fri, 4 Aug 2006 01:23:30 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5CA443D45; Fri, 4 Aug 2006 01:23:29 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k741NTKh012269; Fri, 4 Aug 2006 01:23:29 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k741NTXH012268; Fri, 4 Aug 2006 01:23:29 GMT (envelope-from rafan) Message-Id: <200608040123.k741NTXH012268@repoman.freebsd.org> From: Rong-En Fan Date: Fri, 4 Aug 2006 01:23: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/math Makefile ports/math/jsmath-fonts-sprite 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, 04 Aug 2006 01:23:30 -0000 rafan 2006-08-04 01:23:29 UTC FreeBSD ports repository Modified files: math Makefile Added files: math/jsmath-fonts-sprite Makefile distinfo pkg-descr pkg-plist Log: Add jsmath-fonts-sprite 1.0, a sprite fonts pack for jsMath. PR: ports/101269 Submitted by: Nicola Vitale Revision Changes Path 1.411 +1 -0 ports/math/Makefile 1.1 +37 -0 ports/math/jsmath-fonts-sprite/Makefile (new) 1.1 +3 -0 ports/math/jsmath-fonts-sprite/distinfo (new) 1.1 +4 -0 ports/math/jsmath-fonts-sprite/pkg-descr (new) 1.1 +185 -0 ports/math/jsmath-fonts-sprite/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 4 01:23:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5DF116A4E5; Fri, 4 Aug 2006 01:23:35 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC3E943D46; Fri, 4 Aug 2006 01:23:35 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k741NZvD012301; Fri, 4 Aug 2006 01:23:35 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k741NZHL012300; Fri, 4 Aug 2006 01:23:35 GMT (envelope-from rafan) Message-Id: <200608040123.k741NZHL012300@repoman.freebsd.org> From: Rong-En Fan Date: Fri, 4 Aug 2006 01:23: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: Fri, 04 Aug 2006 01:23:35 -0000 rafan 2006-08-04 01:23:35 UTC FreeBSD ports repository Modified files: . modules Log: jsmath-fonts-sprite --> ports/math/jsmath-fonts-sprite Revision Changes Path 1.15887 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Aug 4 01:25:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE8B816A4DE; Fri, 4 Aug 2006 01:25:17 +0000 (UTC) (envelope-from jb@what-creek.com) Received: from what-creek.com (what-creek.com [66.111.37.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B71743D46; Fri, 4 Aug 2006 01:25:17 +0000 (GMT) (envelope-from jb@what-creek.com) Received: by what-creek.com (Postfix, from userid 102) id B861578C1F; Fri, 4 Aug 2006 01:25:14 +0000 (GMT) Date: Fri, 4 Aug 2006 01:25:14 +0000 From: John Birrell To: pdeuskar@FreeBSD.org Message-ID: <20060804012514.GA63379@what-creek.com> References: <200608031905.k73J55D2061870@repoman.freebsd.org> <44D29FB6.9090209@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <44D29FB6.9090209@freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, cperciva@freebsd.org Subject: Re: cvs commit: src/sys/dev/em if_em.c 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, 04 Aug 2006 01:25:17 -0000 On Thu, Aug 03, 2006 at 06:15:34PM -0700, Colin Percival wrote: > Prafulla Deuskar wrote: > > Modified files: > > sys/dev/em if_em.c if_em.h > > Log: > > Revert back changes to made in rev 1.109 of if_em.c which were unnecessary. > > This makes it easier for us to get the changes into -current and to -stable quickly. > > I assume you've discussed this with glebius, who made the original changes; in > the future, please add an "Approved by:", "No objections from:", or "Discussed > with:" line to backout commits to make this more clear. Also Pyun had made a fix for the bus_dmamap_unload problem we see on sun4v. This appears to have been backed out amongst what appears to be largely a white-space change. Are you prepared to do the work to solve the bus_dmamap_unload again? -- John Birrell From owner-cvs-all@FreeBSD.ORG Fri Aug 4 02:48:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2BB516A4DD; Fri, 4 Aug 2006 02:48:55 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B3F643D46; Fri, 4 Aug 2006 02:48:55 +0000 (GMT) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k742mtgp017313; Fri, 4 Aug 2006 02:48:55 GMT (envelope-from cy@repoman.freebsd.org) Received: (from cy@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k742mt8M017312; Fri, 4 Aug 2006 02:48:55 GMT (envelope-from cy) Message-Id: <200608040248.k742mt8M017312@repoman.freebsd.org> From: Cy Schubert Date: Fri, 4 Aug 2006 02: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/net/pipsecd Makefile ports/net/pipsecd/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: Fri, 04 Aug 2006 02:48:55 -0000 cy 2006-08-04 02:48:55 UTC FreeBSD ports repository Modified files: net/pipsecd Makefile net/pipsecd/files patch-ab Log: Add capability to specify configuration files on the command line. Revision Changes Path 1.15 +1 -1 ports/net/pipsecd/Makefile 1.5 +79 -10 ports/net/pipsecd/files/patch-ab From owner-cvs-all@FreeBSD.ORG Fri Aug 4 03:55:45 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 511ED16A4DA; Fri, 4 Aug 2006 03:55:45 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C62943D46; Fri, 4 Aug 2006 03:55:45 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k743tiTj021726; Fri, 4 Aug 2006 03:55:44 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k743ti3o021725; Fri, 4 Aug 2006 03:55:44 GMT (envelope-from clsung) Message-Id: <200608040355.k743ti3o021725@repoman.freebsd.org> From: Cheng-Lung Sung Date: Fri, 4 Aug 2006 03:55: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/sysutils/gapcmon 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, 04 Aug 2006 03:55:45 -0000 clsung 2006-08-04 03:55:44 UTC FreeBSD ports repository Modified files: sysutils/gapcmon Makefile distinfo Log: - Update to 0.8.3 PR: ports/101305 Submitted by: chinsan Approved by: maintainer (Jason Hale) Revision Changes Path 1.2 +1 -1 ports/sysutils/gapcmon/Makefile 1.2 +3 -3 ports/sysutils/gapcmon/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 4 04:34:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64A9316A4DA; Fri, 4 Aug 2006 04:34:43 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2021543D45; Fri, 4 Aug 2006 04:34:43 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k744YhHi024669; Fri, 4 Aug 2006 04:34:43 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k744Ygbv024668; Fri, 4 Aug 2006 04:34:42 GMT (envelope-from sat) Message-Id: <200608040434.k744Ygbv024668@repoman.freebsd.org> From: Andrew Pantyukhin Date: Fri, 4 Aug 2006 04:34: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/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: Fri, 04 Aug 2006 04:34:43 -0000 sat 2006-08-04 04:34:42 UTC FreeBSD ports repository Modified files: graphics/dcraw Makefile distinfo Log: - Update to 8.28 Revision Changes Path 1.20 +1 -1 ports/graphics/dcraw/Makefile 1.18 +3 -3 ports/graphics/dcraw/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 4 05:07:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8311716A4DD; Fri, 4 Aug 2006 05:07:46 +0000 (UTC) (envelope-from ume@mahoroba.org) Received: from ameno.mahoroba.org (gw4.mahoroba.org [218.45.22.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF9BE43D46; Fri, 4 Aug 2006 05:07:45 +0000 (GMT) (envelope-from ume@mahoroba.org) Received: from localhost (IDENT:mafDpuTLnNSH8qYymeyFVqMWfE4yYvYUv4xOCp4qzxYSJkfkf/jrLaG7T4ZVJrS6@localhost [IPv6:::1]) (user=ume mech=CRAM-MD5 bits=0) by ameno.mahoroba.org (8.13.6/8.13.6) with ESMTP/inet6 id k7457bmo056257 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 4 Aug 2006 14:07:37 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Fri, 04 Aug 2006 14:07:36 +0900 Message-ID: From: Hajimu UMEMOTO To: freebsd-cvs-src@oldach.net (Helge Oldach) In-Reply-To: <200608030536.k735aIT3081092@sep.oldach.net> References: <200608030536.k735aIT3081092@sep.oldach.net> User-Agent: xcite1.38> Wanderlust/2.14.0 (Africa) SEMI/1.14.6 (Maruoka) FLIM/1.14.8 (=?ISO-8859-4?Q?Shij=F2?=) APEL/10.6 Emacs/22.0.50 (i386-pc-freebsd) MULE/5.0 (SAKAKI) X-Operating-System: FreeBSD 6.1-RELEASE-p1 X-PGP-Key: http://www.imasy.or.jp/~ume/publickey.asc X-PGP-Fingerprint: 1F00 0B9E 2164 70FC 6DC5 BF5F 04E9 F086 BF90 71FE Organization: Internet Mutual Aid Society, YOKOHAMA MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.1.12 (ameno.mahoroba.org [IPv6:::1]); Fri, 04 Aug 2006 14:07:39 +0900 (JST) X-Virus-Scanned: by amavisd-new X-Virus-Status: Clean X-Spam-Status: No, score=-2.5 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on ameno.mahoroba.org Cc: scottl@samsco.org, src-committers@FreeBSD.org, Hajimu UMEMOTO , cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, kensmith@cse.Buffalo.EDU Subject: Re: cvs commit: src/sys/sys param.h src/include Makefile netdb.h res_update.h resolv.h src/include/arpa inet.h nameser.h nameser X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Aug 2006 05:07:46 -0000 Hi, >>>>> On Thu, 3 Aug 2006 07:36:18 +0200 (CEST) >>>>> Helge Oldach said: freebsd-cvs-src> Well... I've spotted a regression not with the ports tree but with freebsd-cvs-src> 6-STABLE. On several boxes with this change applied I see lots of freebsd-cvs-src> sendmails stacking up over time, for example: Could you show me your resolv.conf? Are all nameservers listed in your resolv.conf available? freebsd-cvs-src> On one busy sendmail box I've seen literally thousands of such freebsd-cvs-src> processes. Note that these processes don't disappear, so it is not freebsd-cvs-src> related to sendmail.cf's timeouts. Dou you mean that the processes are never disappered except killing them? Which status are they? Sincerely, -- Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan ume@mahoroba.org ume@{,jp.}FreeBSD.org http://www.imasy.org/~ume/ From owner-cvs-all@FreeBSD.ORG Fri Aug 4 05:12:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B881716A4DD; Fri, 4 Aug 2006 05:12:04 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B5C643D45; Fri, 4 Aug 2006 05:12:04 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k745C49T035374; Fri, 4 Aug 2006 05:12:04 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k745C4HM035373; Fri, 4 Aug 2006 05:12:04 GMT (envelope-from rafan) Message-Id: <200608040512.k745C4HM035373@repoman.freebsd.org> From: Rong-En Fan Date: Fri, 4 Aug 2006 05:12: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/databases/phpmyadmin 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, 04 Aug 2006 05:12:04 -0000 rafan 2006-08-04 05:12:04 UTC FreeBSD ports repository Modified files: databases/phpmyadmin Makefile distinfo Log: - Update to 2.8.2.1 PR: ports/101315 Submitted by: Matthew Seaman (maintainer) Revision Changes Path 1.52 +3 -3 ports/databases/phpmyadmin/Makefile 1.40 +3 -3 ports/databases/phpmyadmin/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 4 05:12:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FFCE16A4E7; Fri, 4 Aug 2006 05:12:37 +0000 (UTC) (envelope-from ume@mahoroba.org) Received: from ameno.mahoroba.org (gw4.mahoroba.org [218.45.22.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74E0F43D4C; Fri, 4 Aug 2006 05:12:36 +0000 (GMT) (envelope-from ume@mahoroba.org) Received: from localhost (IDENT:wkrLVB0GgGVxUG3wGLNLlaN7nFCFE2F4TW7rlV+A5LkwAiMFL/vfY9Wxq3oiifrH@localhost [IPv6:::1]) (user=ume mech=CRAM-MD5 bits=0) by ameno.mahoroba.org (8.13.6/8.13.6) with ESMTP/inet6 id k745CO8m048504 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 4 Aug 2006 14:12:24 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Fri, 04 Aug 2006 14:12:24 +0900 Message-ID: From: Hajimu UMEMOTO To: Robert Watson In-Reply-To: <20060803104026.A45647@fledge.watson.org> References: <200608030536.k735aIT3081092@sep.oldach.net> <20060803104026.A45647@fledge.watson.org> User-Agent: xcite1.38> Wanderlust/2.14.0 (Africa) SEMI/1.14.6 (Maruoka) FLIM/1.14.8 (=?ISO-8859-4?Q?Shij=F2?=) APEL/10.6 Emacs/22.0.50 (i386-pc-freebsd) MULE/5.0 (SAKAKI) X-Operating-System: FreeBSD 6.1-RELEASE-p1 X-PGP-Key: http://www.imasy.or.jp/~ume/publickey.asc X-PGP-Fingerprint: 1F00 0B9E 2164 70FC 6DC5 BF5F 04E9 F086 BF90 71FE Organization: Internet Mutual Aid Society, YOKOHAMA MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.1.12 (ameno.mahoroba.org [IPv6:::1]); Fri, 04 Aug 2006 14:12:24 +0900 (JST) X-Virus-Scanned: by amavisd-new X-Virus-Status: Clean X-Spam-Status: No, score=-2.5 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on ameno.mahoroba.org Cc: scottl@samsco.org, kensmith@cse.Buffalo.EDU, Hajimu UMEMOTO , cvs-src@FreeBSD.org, bz@FreeBSD.org, cvs-all@FreeBSD.org, src-committers@FreeBSD.org, Helge Oldach Subject: Re: cvs commit: src/sys/sys param.h src/include Makefile netdb.h res_update.h resolv.h src/include/arpa inet.h nameser.h nameser X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Aug 2006 05:12:37 -0000 Hi, >>>>> On Thu, 3 Aug 2006 10:43:21 +0100 (BST) >>>>> Robert Watson said: rwatson> not sure he's had a chance to generate a resolver bug report. He reported rwatson> that the application appeared to have two connected UDP sockets for name rwatson> resolution, and one bad name server entry, but that the resolver appeared to rwatson> be blocked in a read on the UDP socket that didn't have data queued, rather rwatson> than the one that did. This was all from looking at netstat, and as far as I Are you make sure it is not kevent but read? Sincerely, -- Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan ume@mahoroba.org ume@{,jp.}FreeBSD.org http://www.imasy.org/~ume/ From owner-cvs-all@FreeBSD.ORG Fri Aug 4 05:17:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FF0A16A4DA; Fri, 4 Aug 2006 05:17:01 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0910943D49; Fri, 4 Aug 2006 05:17:01 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k745H0Ck035579; Fri, 4 Aug 2006 05:17:00 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k745H0YP035578; Fri, 4 Aug 2006 05:17:00 GMT (envelope-from sat) Message-Id: <200608040517.k745H0YP035578@repoman.freebsd.org> From: Andrew Pantyukhin Date: Fri, 4 Aug 2006 05:17: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/audio/audacious-crossfade 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, 04 Aug 2006 05:17:01 -0000 sat 2006-08-04 05:17:00 UTC FreeBSD ports repository Modified files: audio/audacious-crossfade Makefile Log: - Shlib version bump Reported by: erwin Revision Changes Path 1.2 +3 -1 ports/audio/audacious-crossfade/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 05:39:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 509B516A4DD; Fri, 4 Aug 2006 05:39:46 +0000 (UTC) (envelope-from freebsd-cvs-src@oldach.net) Received: from rigel.oldach.net (rigel.oldach.net [194.8.96.250]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A3DC43D46; Fri, 4 Aug 2006 05:39:45 +0000 (GMT) (envelope-from freebsd-cvs-src@oldach.net) Received: from sep.oldach.net (p548F8CF4.dip0.t-ipconnect.de [84.143.140.244]) by rigel.oldach.net (8.13.6/8.13.6/hmo30jul04) with ESMTP id k745dQwW070659 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 4 Aug 2006 07:39:28 +0200 (CEST) (envelope-from freebsd-cvs-src@oldach.net) Received: from sep.oldach.net (localhost [127.0.0.1]) by sep.oldach.net (8.13.6/8.13.6/hmo26jun05) with ESMTP id k745dMZh063281 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 4 Aug 2006 07:39:22 +0200 (CEST) (envelope-from freebsd-cvs-src@oldach.net) Received: (from hmo@localhost) by sep.oldach.net (8.13.6/8.13.6/Submit/hmo26jun05) id k745dM9K063280; Fri, 4 Aug 2006 07:39:22 +0200 (CEST) (envelope-from freebsd-cvs-src@oldach.net) Message-Id: <200608040539.k745dM9K063280@sep.oldach.net> In-Reply-To: <20060803104026.A45647@fledge.watson.org> from Robert Watson at "Aug 3, 2006 10:43:21 am" To: rwatson@FreeBSD.org (Robert Watson) Date: Fri, 4 Aug 2006 07:39:22 +0200 (CEST) From: freebsd-cvs-src@oldach.net (Helge Oldach) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded STARTTLS authentication, not delayed by milter-greylist-2.0.2 (rigel.oldach.net [194.8.96.250]); Fri, 04 Aug 2006 07:39:29 +0200 (CEST) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (sep.oldach.net [127.0.0.1]); Fri, 04 Aug 2006 07:39:22 +0200 (CEST) X-Virus-Scanned: ClamAV 0.88.3/1634/Thu Aug 3 00:32:49 2006 on rigel.oldach.net X-Virus-Scanned: ClamAV version 0.88.3, clamav-milter version 0.88.3 on sep.oldach.net X-Virus-Status: Clean X-Spam-Flag: NO X-Scanned-By: milter-spamc/0.25.321 (rigel.oldach.net [194.8.96.250]); Fri, 04 Aug 2006 07:39:30 +0200 X-Spam-Status: NO, hits=2.30 required=5.00 X-Spam-Level: ** Cc: scottl@samsco.org, kensmith@cse.Buffalo.EDU, ume@FreeBSD.org, cvs-src@FreeBSD.org, bz@FreeBSD.org, cvs-all@FreeBSD.org, src-committers@FreeBSD.org, freebsd-cvs-src@oldach.net Subject: Re: cvs commit: src/sys/sys param.h src/include Makefile netdb.h res_update.h resolv.h src/include/arpa inet.h nameser.h nameser X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Aug 2006 05:39:46 -0000 Robert Watson: > > Well... I've spotted a regression not with the ports tree but with 6-STABLE. > > On several boxes with this change applied I see lots of sendmails stacking > > up over time Just like to add that I've seen this with other processes as well, e.g. with ftp jobs that pick up the latest CTM deltas via cron. They get stuck in an early TCP phase. Guessing from tcpdumps it's right after the initial handshake. In netstat they show up as ESTABLISHED. > We only concluded that it was not a kernel socket bug a day or so ago, so I'm > not sure he's had a chance to generate a resolver bug report. He reported > that the application appeared to have two connected UDP sockets for name > resolution, and one bad name server entry, but that the resolver appeared to > be blocked in a read on the UDP socket that didn't have data queued, rather > than the one that did. So it seems. To add another observation: In netstat, the entries relating to the processes disappear after some time. The sockets clear up, but the process is still stuck. Also the UDP socket (resolver queries) disappears. Once I kill one such process, however, it sends a FIN packet and the TCP socket shows up again in netstat. So it's not completely dead but "just" stuck. I don't have a clue what is going on. Maybe it's not related to the resolver update, but this update just triggers another issue. I'm no resolver expert, but didn't BIND9 implement a new event library? On another occasion I had the vague feeling that it might be related to the calcru issue that was discussed in several threads recently. Just to verify that the issue hadn't been caught in the meantime I built a system from yesterday's 6-STABLE, but the issue is still present. :-( Helge From owner-cvs-all@FreeBSD.ORG Fri Aug 4 05:51:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2080A16A4DF; Fri, 4 Aug 2006 05:51:22 +0000 (UTC) (envelope-from freebsd-cvs-src@oldach.net) Received: from rigel.oldach.net (rigel.oldach.net [194.8.96.250]) by mx1.FreeBSD.org (Postfix) with ESMTP id 50B0C43D49; Fri, 4 Aug 2006 05:51:21 +0000 (GMT) (envelope-from freebsd-cvs-src@oldach.net) Received: from sep.oldach.net (p548F8CF4.dip0.t-ipconnect.de [84.143.140.244]) by rigel.oldach.net (8.13.6/8.13.6/hmo30jul04) with ESMTP id k745okSo072083 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 4 Aug 2006 07:50:47 +0200 (CEST) (envelope-from freebsd-cvs-src@oldach.net) Received: from sep.oldach.net (localhost [127.0.0.1]) by sep.oldach.net (8.13.6/8.13.6/hmo26jun05) with ESMTP id k745ojm8063973 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 4 Aug 2006 07:50:45 +0200 (CEST) (envelope-from freebsd-cvs-src@oldach.net) Received: (from hmo@localhost) by sep.oldach.net (8.13.6/8.13.6/Submit/hmo26jun05) id k745ojss063972; Fri, 4 Aug 2006 07:50:45 +0200 (CEST) (envelope-from freebsd-cvs-src@oldach.net) Message-Id: <200608040550.k745ojss063972@sep.oldach.net> In-Reply-To: from Hajimu UMEMOTO at "Aug 4, 2006 2: 7:36 pm" To: ume@FreeBSD.org (Hajimu UMEMOTO) Date: Fri, 4 Aug 2006 07:50:45 +0200 (CEST) From: freebsd-cvs-src@oldach.net (Helge Oldach) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded STARTTLS authentication, not delayed by milter-greylist-2.0.2 (rigel.oldach.net [194.8.96.250]); Fri, 04 Aug 2006 07:50:47 +0200 (CEST) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (sep.oldach.net [127.0.0.1]); Fri, 04 Aug 2006 07:50:45 +0200 (CEST) X-Virus-Scanned: ClamAV 0.88.3/1634/Thu Aug 3 00:32:49 2006 on rigel.oldach.net X-Virus-Scanned: ClamAV version 0.88.3, clamav-milter version 0.88.3 on sep.oldach.net X-Virus-Status: Clean X-Spam-Flag: NO X-Scanned-By: milter-spamc/0.25.321 (rigel.oldach.net [194.8.96.250]); Fri, 04 Aug 2006 07:51:12 +0200 X-Spam-Status: NO, hits=2.30 required=5.00 X-Spam-Level: ** Cc: scottl@samsco.org, kensmith@cse.Buffalo.EDU, ume@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, src-committers@FreeBSD.org, freebsd-cvs-src@oldach.net Subject: Re: cvs commit: src/sys/sys param.h src/include Makefile netdb.h res_update.h resolv.h src/include/arpa inet.h nameser.h nameser X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Aug 2006 05:51:22 -0000 Hajimu UMEMOTO: > >>>>> On Thu, 3 Aug 2006 07:36:18 +0200 (CEST) > >>>>> Helge Oldach said: > > freebsd-cvs-src> Well... I've spotted a regression not with the ports tree but with > freebsd-cvs-src> 6-STABLE. On several boxes with this change applied I see lots of > freebsd-cvs-src> sendmails stacking up over time, for example: > > Could you show me your resolv.conf? Are all nameservers listed in > your resolv.conf available? Yes, certainly. As I've said, this issue shows up on several boxes. This includes machines with only a single resolver (which is up of course), resolving towards the internet, machines that talk to localhost (running a caching named with forwarders to public servers), but also to machines running on an internal network with private root servers. Actually I had already played around a bit with this, without any noticeable effect. OTOH, if one or all of the resolvers were just not available, the process should never get stuck indefinitely, but should log a message at least. > freebsd-cvs-src> On one busy sendmail box I've seen literally thousands of such > freebsd-cvs-src> processes. Note that these processes don't disappear, so it is not > freebsd-cvs-src> related to sendmail.cf's timeouts. > > Dou you mean that the processes are never disappered except killing > them? Exactly. > Which status are they? ps shows them as "I". See my other mail on more explanations. They disappear from netstat after some time. Once killed, they "normally" terminate their TCP session. Note that not only sendmail is affected but other processes that do name resolution as well. I have a test box that I can play with to spot more details, if that helps. Helge From owner-cvs-all@FreeBSD.ORG Fri Aug 4 05:53:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6E5816A4DA; Fri, 4 Aug 2006 05:53:21 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 804D743D45; Fri, 4 Aug 2006 05:53:21 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k745rL0B037187; Fri, 4 Aug 2006 05:53:21 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k745rLdN037186; Fri, 4 Aug 2006 05:53:21 GMT (envelope-from alc) Message-Id: <200608040553.k745rLdN037186@repoman.freebsd.org> From: Alan Cox Date: Fri, 4 Aug 2006 05:53: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/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: Fri, 04 Aug 2006 05:53:21 -0000 alc 2006-08-04 05:53:20 UTC FreeBSD src repository Modified files: sys/kern uipc_syscalls.c Log: The page queues lock is no longer required by vm_page_io_start(). Reduce the scope of the page queues lock in kern_sendfile() accordingly. Revision Changes Path 1.235 +3 -3 src/sys/kern/uipc_syscalls.c From owner-cvs-all@FreeBSD.ORG Fri Aug 4 06:05:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F7E916A4DF; Fri, 4 Aug 2006 06:05:59 +0000 (UTC) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E00E243D45; Fri, 4 Aug 2006 06:05:58 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7465wHm039022; Fri, 4 Aug 2006 06:05:58 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7465wiO039021; Fri, 4 Aug 2006 06:05:58 GMT (envelope-from vs) Message-Id: <200608040605.k7465wiO039021@repoman.freebsd.org> From: Volker Stolz Date: Fri, 4 Aug 2006 06:05: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/devel/as31 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, 04 Aug 2006 06:05:59 -0000 vs 2006-08-04 06:05:58 UTC FreeBSD ports repository Modified files: devel/as31 Makefile Log: Install man-page Submitted by: Gil Kloepfer Revision Changes Path 1.6 +4 -2 ports/devel/as31/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 06:26:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FA4216A4E0; Fri, 4 Aug 2006 06:26:28 +0000 (UTC) (envelope-from sumikawa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5D2943D58; Fri, 4 Aug 2006 06:26:23 +0000 (GMT) (envelope-from sumikawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k746QNfQ043687; Fri, 4 Aug 2006 06:26:23 GMT (envelope-from sumikawa@repoman.freebsd.org) Received: (from sumikawa@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k746QNMX043686; Fri, 4 Aug 2006 06:26:23 GMT (envelope-from sumikawa) Message-Id: <200608040626.k746QNMX043686@repoman.freebsd.org> From: Munechika SUMIKAWA Date: Fri, 4 Aug 2006 06:26: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/apache13+ipv6 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, 04 Aug 2006 06:26:28 -0000 sumikawa 2006-08-04 06:26:23 UTC FreeBSD ports repository Modified files: www/apache13+ipv6 Makefile pkg-plist Log: Fix pkg-plist. Submitted by: erwin / pointyhat PR: ports/101325 Revision Changes Path 1.52 +1 -0 ports/www/apache13+ipv6/Makefile 1.24 +3 -2 ports/www/apache13+ipv6/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 4 06:32:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D884016A4DD; Fri, 4 Aug 2006 06:32:07 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B00E43D5D; Fri, 4 Aug 2006 06:32:06 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k746W5dP044000; Fri, 4 Aug 2006 06:32:05 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k746W53m043999; Fri, 4 Aug 2006 06:32:05 GMT (envelope-from ijliao) Message-Id: <200608040632.k746W53m043999@repoman.freebsd.org> From: Ying-Chieh Liao Date: Fri, 4 Aug 2006 06:32: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/math Makefile ports/math/p5-Task-Math-Symbolic 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, 04 Aug 2006 06:32:07 -0000 ijliao 2006-08-04 06:32:05 UTC FreeBSD ports repository Modified files: math Makefile Added files: math/p5-Task-Math-Symbolic Makefile distinfo pkg-descr pkg-plist Log: add p5-Task-Math-Symbolic 1.01 Math::Symbolic with lots of plugins Revision Changes Path 1.412 +1 -0 ports/math/Makefile 1.1 +46 -0 ports/math/p5-Task-Math-Symbolic/Makefile (new) 1.1 +3 -0 ports/math/p5-Task-Math-Symbolic/distinfo (new) 1.1 +4 -0 ports/math/p5-Task-Math-Symbolic/pkg-descr (new) 1.1 +7 -0 ports/math/p5-Task-Math-Symbolic/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 4 06:32:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0DEC816A4DE; Fri, 4 Aug 2006 06:32:27 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD33B43D49; Fri, 4 Aug 2006 06:32:26 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k746WQBr044046; Fri, 4 Aug 2006 06:32:26 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k746WQUB044045; Fri, 4 Aug 2006 06:32:26 GMT (envelope-from ijliao) Message-Id: <200608040632.k746WQUB044045@repoman.freebsd.org> From: Ying-Chieh Liao Date: Fri, 4 Aug 2006 06:32: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, 04 Aug 2006 06:32:27 -0000 ijliao 2006-08-04 06:32:26 UTC FreeBSD ports repository Modified files: . modules Log: p5-Task-Math-Symbolic --> ports/math/p5-Task-Math-Symbolic Revision Changes Path 1.15888 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Aug 4 06:37:06 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E7E2916A4DD; Fri, 4 Aug 2006 06:37:06 +0000 (UTC) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CF3443D46; Fri, 4 Aug 2006 06:37:06 +0000 (GMT) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k746b6TS044335; Fri, 4 Aug 2006 06:37:06 GMT (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k746b6Pe044334; Fri, 4 Aug 2006 06:37:06 GMT (envelope-from perky) Message-Id: <200608040637.k746b6Pe044334@repoman.freebsd.org> From: Hye-Shik Chang Date: Fri, 4 Aug 2006 06:37: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/Mk bsd.python.mk ports/lang/python-devel 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, 04 Aug 2006 06:37:07 -0000 perky 2006-08-04 06:37:06 UTC FreeBSD ports repository Modified files: Mk bsd.python.mk lang/python-devel Makefile distinfo pkg-plist Log: Update python-devel to 2.5b3. Revision Changes Path 1.80 +2 -2 ports/Mk/bsd.python.mk 1.136 +1 -3 ports/lang/python-devel/Makefile 1.52 +3 -3 ports/lang/python-devel/distinfo 1.65 +35 -29 ports/lang/python-devel/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 4 06:39:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 306D416A4DE; Fri, 4 Aug 2006 06:39:11 +0000 (UTC) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DDF9D43D49; Fri, 4 Aug 2006 06:39:10 +0000 (GMT) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k746dAWa044432; Fri, 4 Aug 2006 06:39:10 GMT (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k746dAen044431; Fri, 4 Aug 2006 06:39:10 GMT (envelope-from perky) Message-Id: <200608040639.k746dAen044431@repoman.freebsd.org> From: Hye-Shik Chang Date: Fri, 4 Aug 2006 06:39: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/lang/python 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, 04 Aug 2006 06:39:11 -0000 perky 2006-08-04 06:39:10 UTC FreeBSD ports repository Modified files: lang/python distinfo Log: Add checksums for Python 2.5b3 and remove old checksums for pre-alpha versions. Revision Changes Path 1.60 +3 -9 ports/lang/python/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 4 06:52:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 248F916A4DD; Fri, 4 Aug 2006 06:52:01 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A8DDD43D4C; Fri, 4 Aug 2006 06:52:00 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k746q0tg045105; Fri, 4 Aug 2006 06:52:00 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k746q0BS045104; Fri, 4 Aug 2006 06:52:00 GMT (envelope-from sat) Message-Id: <200608040652.k746q0BS045104@repoman.freebsd.org> From: Andrew Pantyukhin Date: Fri, 4 Aug 2006 06:52: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 Makefile ports/x11/xorg-edit 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: Fri, 04 Aug 2006 06:52:01 -0000 sat 2006-08-04 06:52:00 UTC FreeBSD ports repository Modified files: x11 Makefile Added files: x11/xorg-edit Makefile distinfo pkg-descr Log: Add port x11/xorg-edit: GUI to edit XServer-file xorg.conf easily WWW: http://www.cyskat.de/dee/progxorg.htm Revision Changes Path 1.617 +1 -0 ports/x11/Makefile 1.1 +32 -0 ports/x11/xorg-edit/Makefile (new) 1.1 +3 -0 ports/x11/xorg-edit/distinfo (new) 1.1 +3 -0 ports/x11/xorg-edit/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 4 06:52:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CCA5816A4F0; Fri, 4 Aug 2006 06:52:22 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8758743D46; Fri, 4 Aug 2006 06:52:22 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k746qMY5045148; Fri, 4 Aug 2006 06:52:22 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k746qMtO045147; Fri, 4 Aug 2006 06:52:22 GMT (envelope-from sat) Message-Id: <200608040652.k746qMtO045147@repoman.freebsd.org> From: Andrew Pantyukhin Date: Fri, 4 Aug 2006 06:52: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: 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, 04 Aug 2006 06:52:22 -0000 sat 2006-08-04 06:52:22 UTC FreeBSD ports repository Modified files: . modules Log: xorg-edit --> ports/x11/xorg-edit Revision Changes Path 1.15889 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Aug 4 07:04:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F34F16A4DD; Fri, 4 Aug 2006 07:04:20 +0000 (UTC) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB6DD43D46; Fri, 4 Aug 2006 07:04:17 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.4/8.13.3) with ESMTP id k7473plQ013004; Fri, 4 Aug 2006 11:03:52 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.4/8.13.3/Submit) id k7473m0v013002; Fri, 4 Aug 2006 11:03:48 +0400 (MSD) (envelope-from yar) Date: Fri, 4 Aug 2006 11:03:48 +0400 From: Yar Tikhiy To: John Baldwin Message-ID: <20060804070348.GR97316@comp.chem.msu.su> References: <200608030959.k739x9N6007207@repoman.freebsd.org> <44D22E2F.4070307@errno.com> <20060803180854.GI97316@comp.chem.msu.su> <200608031458.01134.jhb@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200608031458.01134.jhb@freebsd.org> User-Agent: Mutt/1.5.9i Cc: Sam Leffler , src-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_vlan.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, 04 Aug 2006 07:04:20 -0000 On Thu, Aug 03, 2006 at 02:58:00PM -0400, John Baldwin wrote: > On Thursday 03 August 2006 14:08, Yar Tikhiy wrote: > > On Thu, Aug 03, 2006 at 10:11:11AM -0700, Sam Leffler wrote: > > > Yar Tikhiy wrote: > > > > yar 2006-08-03 09:59:09 UTC > > > > > > > > FreeBSD src repository > > > > > > > > Modified files: > > > > sys/net if_vlan.c > > > > Log: > > > > Should vlan_input() ever be called with ifp pointing to a non-Ethernet > > > > interface, do not just assign -1 to tag because it breaks the logic of > > > > the code to follow. The better way is to handle this case as an > unsupported > > > > protocol and return unless INVARIANTS is in effect and we can panic. > > > > Panic is good there because the scenario can happen only because of a > > > > coding error elsewhere. > > > > > > > > We also should show the interface name in the panic message for easier > > > > debugging of the problem, should it ever emerge. > > > > > > Introducing a panic in a place where you can trivially recover is bad > > > regardless of why you got there. Many people run production systems > > > with INVARIANTS turned on. Is it now possible to send a "packet of > > > death" by exploiting this code path? > > > > No nastygram can ever achieve this; only FreeBSD commiters possess > > the ability to :-) > > > > The panic can never be reached unless one manages to attach a vlan > > interface to a non-Ethernet physical interface in advance, which > > is totally prohibited by the code at the beginning of vlan_config(); > > and vlan_config() is the only way to attach a vlan interface to a > > physical interface. > > > > I.e., it will take a developer breaking the logic in /sys/net to > > make the code path expoloitable. > > > > OTOH, you are right that we can at least attempt to recover from > > the situation. Perhaps it's time to introduce a common macro or > > function that emits a message on the console and then just calls > > kdb_backtrace() instead of dumping core and halting the system? > > So users will be able to post the stack traces to the lists and > > thus help to spot the possible bugs w/o having to go through panics. > > I'm unsure if sticking raw kdb_backtrace() calls in such places > > is a good idea, so I'm suggesting a wrapper function or macro. > > It is to be used in "can absolutely never happen" cases that are > > not fatal, like the one under discussion. > > kdb_backtrace() is the wrapper function around other internals. :) Of course, we can always grep /sys for its usage later ;-) Just noticed that many calls to kdb_backtrace() are under "#ifdef KDB" while subr_kdb.c is marked as standard in /sys/conf/files and the function itself is always available (yet can do nothing.) Should calls to kdb_backtrace() be put under "#ifdef KDB"? If they should, it can justify introducing the combined printf+trace function. Thanks! -- Yar From owner-cvs-all@FreeBSD.ORG Fri Aug 4 07:07:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8096816A4DE; Fri, 4 Aug 2006 07:07:20 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3923B43D46; Fri, 4 Aug 2006 07:07:20 +0000 (GMT) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7477Kpq047026; Fri, 4 Aug 2006 07:07:20 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7477KN1047025; Fri, 4 Aug 2006 07:07:20 GMT (envelope-from leeym) Message-Id: <200608040707.k7477KN1047025@repoman.freebsd.org> From: Yen-Ming Lee Date: Fri, 4 Aug 2006 07:07: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/security/autossh 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, 04 Aug 2006 07:07:20 -0000 leeym 2006-08-04 07:07:19 UTC FreeBSD ports repository Modified files: security/autossh Makefile distinfo Log: - update to 1.4a Revision Changes Path 1.9 +2 -6 ports/security/autossh/Makefile 1.9 +3 -3 ports/security/autossh/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 4 07:18:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB95E16A4DE; Fri, 4 Aug 2006 07:18:41 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A43CE43D46; Fri, 4 Aug 2006 07:18:41 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k747Ifw6047534; Fri, 4 Aug 2006 07:18:41 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k747IfPn047533; Fri, 4 Aug 2006 07:18:41 GMT (envelope-from miwi) Message-Id: <200608040718.k747IfPn047533@repoman.freebsd.org> From: Martin Wilke Date: Fri, 4 Aug 2006 07:18: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/mail/spamoracle 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, 04 Aug 2006 07:18:42 -0000 miwi 2006-08-04 07:18:41 UTC FreeBSD ports repository Modified files: mail/spamoracle Makefile Log: - Pass maintainership to submitter - Fix whitspaces in Makefile PR: ports/101125 Submitted by: Soeren Straarup Approved by: markus (co mentor) Revision Changes Path 1.10 +2 -2 ports/mail/spamoracle/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 07:19:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B082E16A4DD; Fri, 4 Aug 2006 07:19:01 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69CBC43D45; Fri, 4 Aug 2006 07:19:01 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k747J1TB047567; Fri, 4 Aug 2006 07:19:01 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k747J1bX047566; Fri, 4 Aug 2006 07:19:01 GMT (envelope-from njl) Message-Id: <200608040719.k747J1bX047566@repoman.freebsd.org> From: Nate Lawson Date: Fri, 4 Aug 2006 07:19: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/man4 acpi.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: Fri, 04 Aug 2006 07:19:01 -0000 njl 2006-08-04 07:19:01 UTC FreeBSD src repository Modified files: share/man/man4 acpi.4 Log: Improve quoting of the S1-S5 states. Suggested by yar@. Add a workaround for conflicts between ACPI Cx CPU idling and LAPIC timer. MFC after: 1 day Revision Changes Path 1.58 +47 -17 src/share/man/man4/acpi.4 From owner-cvs-all@FreeBSD.ORG Fri Aug 4 07:19:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9990716A513; Fri, 4 Aug 2006 07:19:21 +0000 (UTC) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53A7043D53; Fri, 4 Aug 2006 07:19:18 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.4/8.13.3) with ESMTP id k747JAmw013194; Fri, 4 Aug 2006 11:19:10 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.4/8.13.3/Submit) id k747J90p013193; Fri, 4 Aug 2006 11:19:10 +0400 (MSD) (envelope-from yar) Date: Fri, 4 Aug 2006 11:19:09 +0400 From: Yar Tikhiy To: pdeuskar@FreeBSD.org Message-ID: <20060804071909.GS97316@comp.chem.msu.su> References: <200608031905.k73J55D2061870@repoman.freebsd.org> <44D29FB6.9090209@freebsd.org> <20060804012514.GA63379@what-creek.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060804012514.GA63379@what-creek.com> User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/em if_em.c 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, 04 Aug 2006 07:19:21 -0000 On Fri, Aug 04, 2006 at 01:25:14AM +0000, John Birrell wrote: > On Thu, Aug 03, 2006 at 06:15:34PM -0700, Colin Percival wrote: > > Prafulla Deuskar wrote: > > > Modified files: > > > sys/dev/em if_em.c if_em.h > > > Log: > > > Revert back changes to made in rev 1.109 of if_em.c which were unnecessary. > > > This makes it easier for us to get the changes into -current and to -stable quickly. > > > > I assume you've discussed this with glebius, who made the original changes; in > > the future, please add an "Approved by:", "No objections from:", or "Discussed > > with:" line to backout commits to make this more clear. > > Also Pyun had made a fix for the bus_dmamap_unload problem we see on sun4v. This > appears to have been backed out amongst what appears to be largely a white-space > change. > > Are you prepared to do the work to solve the bus_dmamap_unload again? As a general remark, it is a very good idea to keep large style(9) sweeps separate from actual code changes even if they are tiny. Changing style(9) shouldn't alter the binary code produced, and this can be 100% verified using cmp(1), diff(1), cksum(1), or md5(1). Of course, changing line numbers will affect debug info, but the latter can be strip(1)'ed. In the case under discussion, I'd compare if_em.o with its former version to make sure no code changed. -- Yar From owner-cvs-all@FreeBSD.ORG Fri Aug 4 07:31:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D2AB16A4DA; Fri, 4 Aug 2006 07:31:56 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C991A43D45; Fri, 4 Aug 2006 07:31:55 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k747Vt3e048211; Fri, 4 Aug 2006 07:31:55 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k747VtMc048210; Fri, 4 Aug 2006 07:31:55 GMT (envelope-from njl) Message-Id: <200608040731.k747VtMc048210@repoman.freebsd.org> From: Nate Lawson Date: Fri, 4 Aug 2006 07:31: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/sbin/sysctl sysctl.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, 04 Aug 2006 07:31:56 -0000 njl 2006-08-04 07:31:55 UTC FreeBSD src repository Modified files: sbin/sysctl sysctl.c Log: Use floating point instead of hacking something together. Suggested by bde@. Fix nearby int conversion and a couple style bugs. MFC after: 1 day Revision Changes Path 1.71 +8 -10 src/sbin/sysctl/sysctl.c From owner-cvs-all@FreeBSD.ORG Fri Aug 4 07:39:06 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F3FE816A4DD; Fri, 4 Aug 2006 07:39:05 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB4ED43D46; Fri, 4 Aug 2006 07:39:05 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k747d5IA048566; Fri, 4 Aug 2006 07:39:05 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k747d5fU048565; Fri, 4 Aug 2006 07:39:05 GMT (envelope-from erwin) Message-Id: <200608040739.k747d5fU048565@repoman.freebsd.org> From: Erwin Lansing Date: Fri, 4 Aug 2006 07:39: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/finger_mysql 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, 04 Aug 2006 07:39:06 -0000 erwin 2006-08-04 07:39:05 UTC FreeBSD ports repository Modified files: security/finger_mysql Makefile Log: - Mark BROKEN [1] - Mark DEPRECATED [2] Submitted by: pointyhat [1], maintainer [2] Revision Changes Path 1.6 +4 -0 ports/security/finger_mysql/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 07:44:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 227A916A4DD; Fri, 4 Aug 2006 07:44:13 +0000 (UTC) (envelope-from stefan@fafoe.narf.at) Received: from viefep14-int.chello.at (viefep13-int.chello.at [213.46.255.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DC3443D46; Fri, 4 Aug 2006 07:44:11 +0000 (GMT) (envelope-from stefan@fafoe.narf.at) Received: from wombat.fafoe.narf.at ([213.47.85.26]) by viefep14-int.chello.at (InterMail vM.6.01.05.04 201-2131-123-105-20051025) with ESMTP id <20060804074409.FBKK2199.viefep14-int.chello.at@wombat.fafoe.narf.at>; Fri, 4 Aug 2006 09:44:09 +0200 Received: by wombat.fafoe.narf.at (Postfix, from userid 1001) id 46C98BC7E; Fri, 4 Aug 2006 09:23:24 +0200 (CEST) Date: Fri, 4 Aug 2006 09:23:23 +0200 From: Stefan Farfeleder To: Yar Tikhiy Message-ID: <20060804072323.GC89735@wombat.fafoe.narf.at> References: <200608031905.k73J55D2061870@repoman.freebsd.org> <44D29FB6.9090209@freebsd.org> <20060804012514.GA63379@what-creek.com> <20060804071909.GS97316@comp.chem.msu.su> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060804071909.GS97316@comp.chem.msu.su> User-Agent: Mutt/1.5.12-2006-07-14 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, pdeuskar@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/em if_em.c 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, 04 Aug 2006 07:44:13 -0000 On Fri, Aug 04, 2006 at 11:19:09AM +0400, Yar Tikhiy wrote: > > As a general remark, it is a very good idea to keep large style(9) > sweeps separate from actual code changes even if they are tiny. > Changing style(9) shouldn't alter the binary code produced, and > this can be 100% verified using cmp(1), diff(1), cksum(1), or md5(1). > Of course, changing line numbers will affect debug info, but the > latter can be strip(1)'ed. In the case under discussion, I'd compare > if_em.o with its former version to make sure no code changed. It will produce different code if __LINE__ is used. Stefan From owner-cvs-all@FreeBSD.ORG Fri Aug 4 07:47:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 480D016A4DA; Fri, 4 Aug 2006 07:47:01 +0000 (UTC) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57BC843D4C; Fri, 4 Aug 2006 07:47:00 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.4/8.13.3) with ESMTP id k747kvU0013471; Fri, 4 Aug 2006 11:46:58 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.4/8.13.3/Submit) id k747kvlo013470; Fri, 4 Aug 2006 11:46:57 +0400 (MSD) (envelope-from yar) Date: Fri, 4 Aug 2006 11:46:57 +0400 From: Yar Tikhiy To: Stefan Farfeleder Message-ID: <20060804074657.GT97316@comp.chem.msu.su> References: <200608031905.k73J55D2061870@repoman.freebsd.org> <44D29FB6.9090209@freebsd.org> <20060804012514.GA63379@what-creek.com> <20060804071909.GS97316@comp.chem.msu.su> <20060804072323.GC89735@wombat.fafoe.narf.at> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060804072323.GC89735@wombat.fafoe.narf.at> User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, pdeuskar@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/em if_em.c 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, 04 Aug 2006 07:47:01 -0000 On Fri, Aug 04, 2006 at 09:23:23AM +0200, Stefan Farfeleder wrote: > On Fri, Aug 04, 2006 at 11:19:09AM +0400, Yar Tikhiy wrote: > > > > As a general remark, it is a very good idea to keep large style(9) > > sweeps separate from actual code changes even if they are tiny. > > Changing style(9) shouldn't alter the binary code produced, and > > this can be 100% verified using cmp(1), diff(1), cksum(1), or md5(1). > > Of course, changing line numbers will affect debug info, but the > > latter can be strip(1)'ed. In the case under discussion, I'd compare > > if_em.o with its former version to make sure no code changed. > > It will produce different code if __LINE__ is used. Yeah, it's a thing to watch out for. As are __TIME__ and __DATE__. Fortunately, they are not widely used in src/, AFAIK. -- Yar From owner-cvs-all@FreeBSD.ORG Fri Aug 4 07:49:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 381FD16A4E0 for ; Fri, 4 Aug 2006 07:49:20 +0000 (UTC) (envelope-from cperciva@freebsd.org) Received: from pd4mo1so.prod.shaw.ca (shawidc-mo1.cg.shawcable.net [24.71.223.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F9D943D49 for ; Fri, 4 Aug 2006 07:49:19 +0000 (GMT) (envelope-from cperciva@freebsd.org) Received: from pd4mr8so.prod.shaw.ca (pd4mr8so-qfe3.prod.shaw.ca [10.0.141.101]) by l-daemon (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0J3G00041R25XXC0@l-daemon> for cvs-all@FreeBSD.org; Fri, 04 Aug 2006 01:49:17 -0600 (MDT) Received: from pn2ml5so.prod.shaw.ca ([10.0.121.149]) by pd4mr8so.prod.shaw.ca (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0J3G00IPFR246L00@pd4mr8so.prod.shaw.ca> for cvs-all@FreeBSD.org; Fri, 04 Aug 2006 01:49:16 -0600 (MDT) Received: from hexahedron.daemonology.net ([24.82.18.31]) by l-daemon (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with SMTP id <0J3G00LROR24EAV0@l-daemon> for cvs-all@FreeBSD.org; Fri, 04 Aug 2006 01:49:16 -0600 (MDT) Received: (qmail 3889 invoked from network); Fri, 04 Aug 2006 07:49:10 +0000 Received: from unknown (HELO ?127.0.0.1?) (127.0.0.1) by localhost with SMTP; Fri, 04 Aug 2006 07:49:09 +0000 Date: Fri, 04 Aug 2006 00:49:09 -0700 From: Colin Percival In-reply-to: <20060804071909.GS97316@comp.chem.msu.su> To: Yar Tikhiy Message-id: <44D2FBF5.1010402@freebsd.org> MIME-version: 1.0 Content-type: text/plain; charset=ISO-8859-1 Content-transfer-encoding: 7bit X-Enigmail-Version: 0.94.0.0 References: <200608031905.k73J55D2061870@repoman.freebsd.org> <44D29FB6.9090209@freebsd.org> <20060804012514.GA63379@what-creek.com> <20060804071909.GS97316@comp.chem.msu.su> User-Agent: Thunderbird 1.5 (X11/20060416) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/em if_em.c 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, 04 Aug 2006 07:49:20 -0000 Yar Tikhiy wrote: > Changing style(9) shouldn't alter the binary code produced, and > this can be 100% verified using cmp(1), diff(1), cksum(1), or md5(1). With md5(1), you can only 99.999999999999999994579% verify it. :-) Colin Percival From owner-cvs-all@FreeBSD.ORG Fri Aug 4 07:56:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 758C016A4E0; Fri, 4 Aug 2006 07:56:36 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1770443D45; Fri, 4 Aug 2006 07:56:36 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k747uZXq049825; Fri, 4 Aug 2006 07:56:35 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k747uZ0P049824; Fri, 4 Aug 2006 07:56:35 GMT (envelope-from yar) Message-Id: <200608040756.k747uZ0P049824@repoman.freebsd.org> From: Yar Tikhiy Date: Fri, 4 Aug 2006 07:56: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/bin/sh histedit.c src/games/fortune/datfiles fortunes src/lib/libc/sys kse.2 src/release/doc/fr_FR.ISO8859-1/hardware/alpha proc-alpha.sgml src/share/doc/papers/timecounter timecounter.ms src/share/man/man4 devctl.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: Fri, 04 Aug 2006 07:56:36 -0000 yar 2006-08-04 07:56:35 UTC FreeBSD src repository Modified files: bin/sh histedit.c games/fortune/datfiles fortunes lib/libc/sys kse.2 release/doc/fr_FR.ISO8859-1/hardware/alpha proc-alpha.sgml share/doc/papers/timecounter timecounter.ms share/man/man4 devctl.4 sys/boot/i386/loader main.c sys/boot/pc98/loader main.c sys/dev/bktr CHANGELOG.TXT sys/dev/dpt dpt_scsi.c sys/dev/em if_em.c sys/dev/fe if_fe.c sys/dev/ixgb if_ixgb.c sys/dev/patm if_patm_intr.c sys/dev/pci pcivar.h sys/dev/sym sym_fw1.h sym_fw2.h sys/fs/hpfs hpfs.h sys/geom/bde g_bde_work.c sys/geom/mirror g_mirror.c sys/geom/raid3 g_raid3.c sys/i386/i386 tsc.c sys/kern kern_resource.c kern_tc.c subr_bus.c sys/pci ncr.c Log: Commit the results of the typo hunt by Darren Pilgrim. This change affects documentation and comments only, no real code involved. PR: misc/101245 Submitted by: Darren Pilgrim Tested by: md5(1) MFC after: 1 week Revision Changes Path 1.29 +1 -1 src/bin/sh/histedit.c 1.224 +1 -1 src/games/fortune/datfiles/fortunes 1.18 +1 -1 src/lib/libc/sys/kse.2 1.6 +1 -1 src/release/doc/fr_FR.ISO8859-1/hardware/alpha/proc-alpha.sgml 1.4 +1 -1 src/share/doc/papers/timecounter/timecounter.ms 1.5 +1 -1 src/share/man/man4/devctl.4 1.37 +1 -1 src/sys/boot/i386/loader/main.c 1.23 +1 -1 src/sys/boot/pc98/loader/main.c 1.22 +1 -1 src/sys/dev/bktr/CHANGELOG.TXT 1.52 +1 -1 src/sys/dev/dpt/dpt_scsi.c 1.125 +1 -1 src/sys/dev/em/if_em.c 1.97 +1 -1 src/sys/dev/fe/if_fe.c 1.19 +1 -1 src/sys/dev/ixgb/if_ixgb.c 1.7 +1 -1 src/sys/dev/patm/if_patm_intr.c 1.70 +2 -2 src/sys/dev/pci/pcivar.h 1.8 +1 -1 src/sys/dev/sym/sym_fw1.h 1.9 +1 -1 src/sys/dev/sym/sym_fw2.h 1.20 +1 -1 src/sys/fs/hpfs/hpfs.h 1.28 +1 -1 src/sys/geom/bde/g_bde_work.c 1.87 +1 -1 src/sys/geom/mirror/g_mirror.c 1.71 +1 -1 src/sys/geom/raid3/g_raid3.c 1.206 +2 -2 src/sys/i386/i386/tsc.c 1.159 +1 -1 src/sys/kern/kern_resource.c 1.177 +1 -1 src/sys/kern/kern_tc.c 1.195 +1 -1 src/sys/kern/subr_bus.c 1.190 +1 -1 src/sys/pci/ncr.c From owner-cvs-all@FreeBSD.ORG Fri Aug 4 08:02:09 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7688216A4DA; Fri, 4 Aug 2006 08:02:09 +0000 (UTC) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1162543D49; Fri, 4 Aug 2006 08:02:07 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.4/8.13.3) with ESMTP id k74826NH013662; Fri, 4 Aug 2006 12:02:06 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.4/8.13.3/Submit) id k74825x6013661; Fri, 4 Aug 2006 12:02:05 +0400 (MSD) (envelope-from yar) Date: Fri, 4 Aug 2006 12:02:05 +0400 From: Yar Tikhiy To: Stefan Farfeleder Message-ID: <20060804080205.GV97316@comp.chem.msu.su> References: <200608031905.k73J55D2061870@repoman.freebsd.org> <44D29FB6.9090209@freebsd.org> <20060804012514.GA63379@what-creek.com> <20060804071909.GS97316@comp.chem.msu.su> <20060804072323.GC89735@wombat.fafoe.narf.at> <20060804074657.GT97316@comp.chem.msu.su> <20060804075230.GD89735@wombat.fafoe.narf.at> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060804075230.GD89735@wombat.fafoe.narf.at> User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, pdeuskar@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/em if_em.c 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, 04 Aug 2006 08:02:09 -0000 On Fri, Aug 04, 2006 at 09:52:31AM +0200, Stefan Farfeleder wrote: > On Fri, Aug 04, 2006 at 11:46:57AM +0400, Yar Tikhiy wrote: > > On Fri, Aug 04, 2006 at 09:23:23AM +0200, Stefan Farfeleder wrote: > > > On Fri, Aug 04, 2006 at 11:19:09AM +0400, Yar Tikhiy wrote: > > > > > > > > As a general remark, it is a very good idea to keep large style(9) > > > > sweeps separate from actual code changes even if they are tiny. > > > > Changing style(9) shouldn't alter the binary code produced, and > > > > this can be 100% verified using cmp(1), diff(1), cksum(1), or md5(1). > > > > Of course, changing line numbers will affect debug info, but the > > > > latter can be strip(1)'ed. In the case under discussion, I'd compare > > > > if_em.o with its former version to make sure no code changed. > > > > > > It will produce different code if __LINE__ is used. > > > > Yeah, it's a thing to watch out for. As are __TIME__ and __DATE__. > > Fortunately, they are not widely used in src/, AFAIK. > > Not directly, but through all kinds of assertion macros. At least, KASSERT() doesn't use __LINE__. No doubt there may be others that do. -- Yar From owner-cvs-all@FreeBSD.ORG Fri Aug 4 08:03:06 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B49316A4E2; Fri, 4 Aug 2006 08:03:06 +0000 (UTC) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58DFD43D58; Fri, 4 Aug 2006 08:03:05 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.4/8.13.3) with ESMTP id k74833Hc013679; Fri, 4 Aug 2006 12:03:03 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.4/8.13.3/Submit) id k74833Zp013678; Fri, 4 Aug 2006 12:03:03 +0400 (MSD) (envelope-from yar) Date: Fri, 4 Aug 2006 12:03:03 +0400 From: Yar Tikhiy To: Colin Percival Message-ID: <20060804080302.GW97316@comp.chem.msu.su> References: <200608031905.k73J55D2061870@repoman.freebsd.org> <44D29FB6.9090209@freebsd.org> <20060804012514.GA63379@what-creek.com> <20060804071909.GS97316@comp.chem.msu.su> <44D2FBF5.1010402@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <44D2FBF5.1010402@freebsd.org> User-Agent: Mutt/1.5.9i Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/em if_em.c 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, 04 Aug 2006 08:03:06 -0000 On Fri, Aug 04, 2006 at 12:49:09AM -0700, Colin Percival wrote: > Yar Tikhiy wrote: > > Changing style(9) shouldn't alter the binary code produced, and > > this can be 100% verified using cmp(1), diff(1), cksum(1), or md5(1). > > With md5(1), you can only 99.999999999999999994579% verify it. :-) And cksum(1) loses even more :-) -- Yar From owner-cvs-all@FreeBSD.ORG Fri Aug 4 08:09:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCF0616A4DA; Fri, 4 Aug 2006 08:09:50 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90A9243D46; Fri, 4 Aug 2006 08:09:50 +0000 (GMT) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7489o3b051737; Fri, 4 Aug 2006 08:09:50 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7489oIR051736; Fri, 4 Aug 2006 08:09:50 GMT (envelope-from mezz) Message-Id: <200608040809.k7489oIR051736@repoman.freebsd.org> From: Jeremy Messenger Date: Fri, 4 Aug 2006 08: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/net-p2p/linuxdcpp Makefile distinfo ports/net-p2p/linuxdcpp/files patch-SConstruct X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Aug 2006 08:09:51 -0000 mezz 2006-08-04 08:09:50 UTC FreeBSD ports repository Modified files: net-p2p/linuxdcpp Makefile distinfo net-p2p/linuxdcpp/files patch-SConstruct Log: Update it to the lastest version of CVS, at 2006-08-01 in changelog. See in the changelog for details: http://tinyurl.com/b3myl Revision Changes Path 1.2 +8 -2 ports/net-p2p/linuxdcpp/Makefile 1.2 +3 -3 ports/net-p2p/linuxdcpp/distinfo 1.2 +9 -4 ports/net-p2p/linuxdcpp/files/patch-SConstruct From owner-cvs-all@FreeBSD.ORG Fri Aug 4 08:12:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6DB516A567; Fri, 4 Aug 2006 08:12:52 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61FDF43D49; Fri, 4 Aug 2006 08:12:52 +0000 (GMT) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k748Cq4o051974; Fri, 4 Aug 2006 08:12:52 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k748Cq9l051973; Fri, 4 Aug 2006 08:12:52 GMT (envelope-from mezz) Message-Id: <200608040812.k748Cq9l051973@repoman.freebsd.org> From: Jeremy Messenger Date: Fri, 4 Aug 2006 08:12: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-p2p/linuxdcpp 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, 04 Aug 2006 08:12:52 -0000 mezz 2006-08-04 08:12:51 UTC FreeBSD ports repository Modified files: net-p2p/linuxdcpp Makefile distinfo pkg-descr pkg-plist Log: Force commit to add about that a new knob, WITH_DEBUG, has been added. Revision Changes Path 1.3 +0 -0 ports/net-p2p/linuxdcpp/Makefile 1.3 +0 -0 ports/net-p2p/linuxdcpp/distinfo 1.2 +0 -0 ports/net-p2p/linuxdcpp/pkg-descr 1.2 +0 -0 ports/net-p2p/linuxdcpp/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 4 08:15:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2424116A4E2 for ; Fri, 4 Aug 2006 08:15:11 +0000 (UTC) (envelope-from cperciva@freebsd.org) Received: from pd4mo1so.prod.shaw.ca (shawidc-mo1.cg.shawcable.net [24.71.223.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D62E43D45 for ; Fri, 4 Aug 2006 08:15:10 +0000 (GMT) (envelope-from cperciva@freebsd.org) Received: from pd2mr4so.prod.shaw.ca (pd2mr4so-qfe3.prod.shaw.ca [10.0.141.107]) by l-daemon (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0J3G000P2S92Y0C0@l-daemon> for cvs-all@FreeBSD.org; Fri, 04 Aug 2006 02:15:02 -0600 (MDT) Received: from pn2ml5so.prod.shaw.ca ([10.0.121.149]) by pd2mr4so.prod.shaw.ca (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0J3G00FT2S91FJM0@pd2mr4so.prod.shaw.ca> for cvs-all@FreeBSD.org; Fri, 04 Aug 2006 02:15:01 -0600 (MDT) Received: from hexahedron.daemonology.net ([24.82.18.31]) by l-daemon (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with SMTP id <0J3G00LUFS91DXX0@l-daemon> for cvs-all@FreeBSD.org; Fri, 04 Aug 2006 02:15:01 -0600 (MDT) Received: (qmail 3985 invoked from network); Fri, 04 Aug 2006 08:14:55 +0000 Received: from unknown (HELO ?127.0.0.1?) (127.0.0.1) by localhost with SMTP; Fri, 04 Aug 2006 08:14:55 +0000 Date: Fri, 04 Aug 2006 01:14:54 -0700 From: Colin Percival In-reply-to: <20060804074657.GT97316@comp.chem.msu.su> To: Yar Tikhiy Message-id: <44D301FE.6030007@freebsd.org> MIME-version: 1.0 Content-type: text/plain; charset=ISO-8859-1 Content-transfer-encoding: 7bit X-Enigmail-Version: 0.94.0.0 References: <200608031905.k73J55D2061870@repoman.freebsd.org> <44D29FB6.9090209@freebsd.org> <20060804012514.GA63379@what-creek.com> <20060804071909.GS97316@comp.chem.msu.su> <20060804072323.GC89735@wombat.fafoe.narf.at> <20060804074657.GT97316@comp.chem.msu.su> User-Agent: Thunderbird 1.5 (X11/20060416) Cc: cvs-src@FreeBSD.org, Stefan Farfeleder , pdeuskar@FreeBSD.org, cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/em if_em.c 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, 04 Aug 2006 08:15:11 -0000 Yar Tikhiy wrote: > Yeah, it's a thing to watch out for. As are __TIME__ and __DATE__. FWIW, the following files in 6.1-RELEASE/i386 contain build timestamps: /boot/GENERIC/hptmv.ko /boot/GENERIC/kernel /boot/SMP/hptmv.ko /boot/SMP/kernel /boot/loader /boot/pxeboot /etc/mail/freebsd.cf /etc/mail/freebsd.submit.cf /etc/mail/sendmail.cf /etc/mail/submit.cf /lib/libcrypto.so.4 /usr/bin/ntpq /usr/include/osreldate.h /usr/sbin/amd /usr/sbin/iasl /usr/sbin/isdnd /usr/sbin/isdndebug /usr/sbin/isdnmonitor /usr/sbin/isdnphone /usr/sbin/isdntelctl /usr/sbin/lwresd /usr/sbin/named /usr/sbin/ntpd /usr/sbin/ntpdate /usr/sbin/ntpdc /usr/sbin/ppp Of these, I've recently removed the timestamps in /usr/sbin/isdn*, and dougb has a patch to remove the timestamps in lwresd and named. There are also timestamps in all of the library archive files, but those are required by the archive format, so we can't do much about them. Colin Percival From owner-cvs-all@FreeBSD.ORG Fri Aug 4 08:16:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E862616A4DD; Fri, 4 Aug 2006 08:16:05 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9564943D46; Fri, 4 Aug 2006 08:16:05 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k748G5G9052132; Fri, 4 Aug 2006 08:16:05 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k748G536052131; Fri, 4 Aug 2006 08:16:05 GMT (envelope-from erwin) Message-Id: <200608040816.k748G536052131@repoman.freebsd.org> From: Erwin Lansing Date: Fri, 4 Aug 2006 08:16: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/games/linux-x-plane-net-installer 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, 04 Aug 2006 08:16:06 -0000 erwin 2006-08-04 08:16:05 UTC FreeBSD ports repository Modified files: games/linux-x-plane-net-installer Makefile Log: Mark BROKEN: does not build Revision Changes Path 1.5 +2 -0 ports/games/linux-x-plane-net-installer/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 08:17:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 350E716A4DD; Fri, 4 Aug 2006 08:17:38 +0000 (UTC) (envelope-from stefan@fafoe.narf.at) Received: from viefep16-int.chello.at (viefep13-int.chello.at [213.46.255.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2B3C43D76; Fri, 4 Aug 2006 08:17:30 +0000 (GMT) (envelope-from stefan@fafoe.narf.at) Received: from wombat.fafoe.narf.at ([213.47.85.26]) by viefep16-int.chello.at (InterMail vM.6.01.04.04 201-2131-118-104-20050224) with ESMTP id <20060804081728.KUAK14012.viefep16-int.chello.at@wombat.fafoe.narf.at>; Fri, 4 Aug 2006 10:17:28 +0200 Received: by wombat.fafoe.narf.at (Postfix, from userid 1001) id 46598BC7E; Fri, 4 Aug 2006 09:52:31 +0200 (CEST) Date: Fri, 4 Aug 2006 09:52:31 +0200 From: Stefan Farfeleder To: Yar Tikhiy Message-ID: <20060804075230.GD89735@wombat.fafoe.narf.at> References: <200608031905.k73J55D2061870@repoman.freebsd.org> <44D29FB6.9090209@freebsd.org> <20060804012514.GA63379@what-creek.com> <20060804071909.GS97316@comp.chem.msu.su> <20060804072323.GC89735@wombat.fafoe.narf.at> <20060804074657.GT97316@comp.chem.msu.su> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060804074657.GT97316@comp.chem.msu.su> User-Agent: Mutt/1.5.12-2006-07-14 Cc: cvs-src@FreeBSD.org, Stefan Farfeleder , pdeuskar@FreeBSD.org, cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/em if_em.c 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, 04 Aug 2006 08:17:38 -0000 On Fri, Aug 04, 2006 at 11:46:57AM +0400, Yar Tikhiy wrote: > On Fri, Aug 04, 2006 at 09:23:23AM +0200, Stefan Farfeleder wrote: > > On Fri, Aug 04, 2006 at 11:19:09AM +0400, Yar Tikhiy wrote: > > > > > > As a general remark, it is a very good idea to keep large style(9) > > > sweeps separate from actual code changes even if they are tiny. > > > Changing style(9) shouldn't alter the binary code produced, and > > > this can be 100% verified using cmp(1), diff(1), cksum(1), or md5(1). > > > Of course, changing line numbers will affect debug info, but the > > > latter can be strip(1)'ed. In the case under discussion, I'd compare > > > if_em.o with its former version to make sure no code changed. > > > > It will produce different code if __LINE__ is used. > > Yeah, it's a thing to watch out for. As are __TIME__ and __DATE__. > Fortunately, they are not widely used in src/, AFAIK. Not directly, but through all kinds of assertion macros. Stefan From owner-cvs-all@FreeBSD.ORG Fri Aug 4 08:31:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BEBD716A4DA; Fri, 4 Aug 2006 08:31:43 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7640743D46; Fri, 4 Aug 2006 08:31:43 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k748VhJl052803; Fri, 4 Aug 2006 08:31:43 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k748VhKZ052802; Fri, 4 Aug 2006 08:31:43 GMT (envelope-from erwin) Message-Id: <200608040831.k748VhKZ052802@repoman.freebsd.org> From: Erwin Lansing Date: Fri, 4 Aug 2006 08:31: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/graphics/GIFgraph 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, 04 Aug 2006 08:31:43 -0000 erwin 2006-08-04 08:31:43 UTC FreeBSD ports repository Modified files: graphics/GIFgraph Makefile Log: Additional to DEPRICATED, mark it BROKEN as it does not build. Revision Changes Path 1.14 +1 -0 ports/graphics/GIFgraph/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 08:33:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4358C16A4DE; Fri, 4 Aug 2006 08:33:25 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F074343D46; Fri, 4 Aug 2006 08:33:24 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k748XO0B052906; Fri, 4 Aug 2006 08:33:24 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k748XOnR052905; Fri, 4 Aug 2006 08:33:24 GMT (envelope-from erwin) Message-Id: <200608040833.k748XOnR052905@repoman.freebsd.org> From: Erwin Lansing Date: Fri, 4 Aug 2006 08:33: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/misc/p5-I18N-Charset 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, 04 Aug 2006 08:33:25 -0000 erwin 2006-08-04 08:33:24 UTC FreeBSD ports repository Modified files: misc/p5-I18N-Charset Makefile Log: Mark BROKEN: does not package Revision Changes Path 1.20 +2 -0 ports/misc/p5-I18N-Charset/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 08:34:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E41F916A4DD; Fri, 4 Aug 2006 08:34:16 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87F6943D4C; Fri, 4 Aug 2006 08:34:16 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k748YGSt052947; Fri, 4 Aug 2006 08:34:16 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k748YGHh052946; Fri, 4 Aug 2006 08:34:16 GMT (envelope-from erwin) Message-Id: <200608040834.k748YGHh052946@repoman.freebsd.org> From: Erwin Lansing Date: Fri, 4 Aug 2006 08:34: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/misc/p5-I18N-Charset 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, 04 Aug 2006 08:34:17 -0000 erwin 2006-08-04 08:34:16 UTC FreeBSD ports repository Modified files: misc/p5-I18N-Charset Makefile Log: Unmark BROKEN, it was fixed after cvsup on pointyhat Revision Changes Path 1.21 +0 -2 ports/misc/p5-I18N-Charset/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 08:37:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E428C16A4DD; Fri, 4 Aug 2006 08:37:17 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CF7B43D58; Fri, 4 Aug 2006 08:37:17 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k748bHnd053082; Fri, 4 Aug 2006 08:37:17 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k748bHpZ053081; Fri, 4 Aug 2006 08:37:17 GMT (envelope-from erwin) Message-Id: <200608040837.k748bHpZ053081@repoman.freebsd.org> From: Erwin Lansing Date: Fri, 4 Aug 2006 08:37: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/parrot 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, 04 Aug 2006 08:37:18 -0000 erwin 2006-08-04 08:37:17 UTC FreeBSD ports repository Modified files: lang/parrot Makefile Log: Mark BROKEN: does not package Revision Changes Path 1.13 +2 -0 ports/lang/parrot/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 08:46:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0012316A4E0; Fri, 4 Aug 2006 08:46:12 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABD6843D55; Fri, 4 Aug 2006 08:46:12 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k748kCkE053284; Fri, 4 Aug 2006 08:46:12 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k748kCjx053283; Fri, 4 Aug 2006 08:46:12 GMT (envelope-from erwin) Message-Id: <200608040846.k748kCjx053283@repoman.freebsd.org> From: Erwin Lansing Date: Fri, 4 Aug 2006 08: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/net-im/sim-im-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: Fri, 04 Aug 2006 08:46:13 -0000 erwin 2006-08-04 08:46:12 UTC FreeBSD ports repository Modified files: net-im/sim-im-devel Makefile Log: Mark BROKEN: does not install cleanly Revision Changes Path 1.3 +2 -0 ports/net-im/sim-im-devel/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 08:51:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E46F616A4DA; Fri, 4 Aug 2006 08:51:41 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D6E243D49; Fri, 4 Aug 2006 08:51:41 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k748pfnt061212; Fri, 4 Aug 2006 08:51:41 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k748pfK6061211; Fri, 4 Aug 2006 08:51:41 GMT (envelope-from erwin) Message-Id: <200608040851.k748pfK6061211@repoman.freebsd.org> From: Erwin Lansing Date: Fri, 4 Aug 2006 08:51: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/misc/skyutils 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, 04 Aug 2006 08:51:42 -0000 erwin 2006-08-04 08:51:41 UTC FreeBSD ports repository Modified files: misc/skyutils Makefile Log: Mark BROKEN: does not fetch Revision Changes Path 1.11 +2 -0 ports/misc/skyutils/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 08:54:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 609DD16A4DA; Fri, 4 Aug 2006 08:54:01 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 183A443D53; Fri, 4 Aug 2006 08:54:01 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k748s0FH061272; Fri, 4 Aug 2006 08:54:00 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k748s0Wt061271; Fri, 4 Aug 2006 08:54:00 GMT (envelope-from erwin) Message-Id: <200608040854.k748s0Wt061271@repoman.freebsd.org> From: Erwin Lansing Date: Fri, 4 Aug 2006 08:54: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/deskutils/todo 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, 04 Aug 2006 08:54:01 -0000 erwin 2006-08-04 08:54:00 UTC FreeBSD ports repository Modified files: deskutils/todo Makefile Log: Mark BROKEN: checksum mismatch Revision Changes Path 1.2 +2 -0 ports/deskutils/todo/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 08:54:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCA5916A4DE; Fri, 4 Aug 2006 08:54:36 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7421443D46; Fri, 4 Aug 2006 08:54:36 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k748sa43061303; Fri, 4 Aug 2006 08:54:36 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k748saom061302; Fri, 4 Aug 2006 08:54:36 GMT (envelope-from sat) Message-Id: <200608040854.k748saom061302@repoman.freebsd.org> From: Andrew Pantyukhin Date: Fri, 4 Aug 2006 08:54: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/graphics/ufraw 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, 04 Aug 2006 08:54:36 -0000 sat 2006-08-04 08:54:36 UTC FreeBSD ports repository Modified files: graphics/ufraw Makefile distinfo Log: - Update to 0.9 - Take maintainership Approved by: markm (maintainer) Revision Changes Path 1.11 +2 -2 ports/graphics/ufraw/Makefile 1.5 +3 -3 ports/graphics/ufraw/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 4 09:02:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1190916A4DE; Fri, 4 Aug 2006 09:02:51 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFCC243D49; Fri, 4 Aug 2006 09:02:50 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7492o5T061591; Fri, 4 Aug 2006 09:02:50 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7492oYZ061590; Fri, 4 Aug 2006 09:02:50 GMT (envelope-from erwin) Message-Id: <200608040902.k7492oYZ061590@repoman.freebsd.org> From: Erwin Lansing Date: Fri, 4 Aug 2006 09: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/sysutils/usermin 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, 04 Aug 2006 09:02:51 -0000 erwin 2006-08-04 09:02:50 UTC FreeBSD ports repository Modified files: sysutils/usermin Makefile Log: Mark BROKEN: does not fetch Revision Changes Path 1.53 +2 -0 ports/sysutils/usermin/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 09:06:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4930116A4DA; Fri, 4 Aug 2006 09:06:03 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 013CD43D49; Fri, 4 Aug 2006 09:06:03 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74962TK062960; Fri, 4 Aug 2006 09:06:02 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74962IB062959; Fri, 4 Aug 2006 09:06:02 GMT (envelope-from erwin) Message-Id: <200608040906.k74962IB062959@repoman.freebsd.org> From: Erwin Lansing Date: Fri, 4 Aug 2006 09: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/editors/vim6+ruby 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, 04 Aug 2006 09:06:03 -0000 erwin 2006-08-04 09:06:02 UTC FreeBSD ports repository Modified files: editors/vim6+ruby Makefile Log: Mark BROKEN: does not build Revision Changes Path 1.17 +2 -0 ports/editors/vim6+ruby/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 09:07:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61DAA16A4DD; Fri, 4 Aug 2006 09:07:19 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19D0543D58; Fri, 4 Aug 2006 09:07:19 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7497I3E063007; Fri, 4 Aug 2006 09:07:18 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7497Iv5063006; Fri, 4 Aug 2006 09:07:18 GMT (envelope-from erwin) Message-Id: <200608040907.k7497Iv5063006@repoman.freebsd.org> From: Erwin Lansing Date: Fri, 4 Aug 2006 09:07: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/editors/vim6+ruby 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, 04 Aug 2006 09:07:19 -0000 erwin 2006-08-04 09:07:18 UTC FreeBSD ports repository Modified files: editors/vim6+ruby Makefile Log: Don't mark BROKEN anyway. This is the same error as for editors/vim and might actually be pointyhat specific. Revision Changes Path 1.18 +0 -2 ports/editors/vim6+ruby/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 09:08:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5788616A4E0; Fri, 4 Aug 2006 09:08:11 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0EAF943D55; Fri, 4 Aug 2006 09:08:11 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7498Af5063045; Fri, 4 Aug 2006 09:08:10 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7498Ago063044; Fri, 4 Aug 2006 09:08:10 GMT (envelope-from clsung) Message-Id: <200608040908.k7498Ago063044@repoman.freebsd.org> From: Cheng-Lung Sung Date: Fri, 4 Aug 2006 09:08: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/chinese/qterm Makefile 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: Fri, 04 Aug 2006 09:08:11 -0000 clsung 2006-08-04 09:08:10 UTC FreeBSD ports repository Modified files: chinese/qterm Makefile pkg-message Log: 1. make qterm.cfg & address.cfg writable by default since native linux version has this feature. 2. add one more address to MASTER_SITES 3. add PKGNAMEPREFIX PR: ports/101345 Submitted by: maintainer (Yuan Jue) Revision Changes Path 1.26 +6 -1 ports/chinese/qterm/Makefile 1.3 +0 -2 ports/chinese/qterm/pkg-message From owner-cvs-all@FreeBSD.ORG Fri Aug 4 09:31:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 66CA816A4DA; Fri, 4 Aug 2006 09:31:41 +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 DD9D443D4C; Fri, 4 Aug 2006 09:31:40 +0000 (GMT) (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 700AC46D09; Fri, 4 Aug 2006 05:31:40 -0400 (EDT) Date: Fri, 4 Aug 2006 10:31:40 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Hajimu UMEMOTO In-Reply-To: Message-ID: <20060804103056.C45647@fledge.watson.org> References: <200608030536.k735aIT3081092@sep.oldach.net> <20060803104026.A45647@fledge.watson.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: scottl@samsco.org, kensmith@cse.Buffalo.EDU, cvs-src@FreeBSD.org, bz@FreeBSD.org, cvs-all@FreeBSD.org, src-committers@FreeBSD.org, Helge Oldach Subject: Re: cvs commit: src/sys/sys param.h src/include Makefile netdb.h res_update.h resolv.h src/include/arpa inet.h nameser.h nameser X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Aug 2006 09:31:41 -0000 On Fri, 4 Aug 2006, Hajimu UMEMOTO wrote: >>>>>> On Thu, 3 Aug 2006 10:43:21 +0100 (BST) >>>>>> Robert Watson said: > > rwatson> not sure he's had a chance to generate a resolver bug report. He reported > rwatson> that the application appeared to have two connected UDP sockets for name > rwatson> resolution, and one bad name server entry, but that the resolver appeared to > rwatson> be blocked in a read on the UDP socket that didn't have data queued, rather > rwatson> than the one that did. This was all from looking at netstat, and as far as I > > Are you make sure it is not kevent but read? Yes -- the stack traces appeared clear. Hopefully Bjoern will be able to submit a more detailed analysis at some point soon. Robert N M Watson Computer Laboratory University of Cambridge From owner-cvs-all@FreeBSD.ORG Fri Aug 4 09:54:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F0D916A4DE; Fri, 4 Aug 2006 09:54:18 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (cell.sick.ru [217.72.144.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57B1A43D49; Fri, 4 Aug 2006 09:54:17 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (glebius@localhost [127.0.0.1]) by cell.sick.ru (8.13.4/8.13.3) with ESMTP id k749sF1T034887 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 4 Aug 2006 13:54:15 +0400 (MSD) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.sick.ru (8.13.4/8.13.1/Submit) id k749sEh7034882; Fri, 4 Aug 2006 13:54:14 +0400 (MSD) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.sick.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Fri, 4 Aug 2006 13:54:14 +0400 From: Gleb Smirnoff To: Prafulla Deuskar Message-ID: <20060804095414.GU96644@FreeBSD.org> References: <200608031905.k73J55D2061870@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200608031905.k73J55D2061870@repoman.freebsd.org> User-Agent: Mutt/1.5.6i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/em if_em.c 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, 04 Aug 2006 09:54:18 -0000 Prafulla, On Thu, Aug 03, 2006 at 07:05:05PM +0000, Prafulla Deuskar wrote: P> pdeuskar 2006-08-03 19:05:05 UTC P> P> FreeBSD src repository P> P> Modified files: P> sys/dev/em if_em.c if_em.h P> Log: P> Revert back changes to made in rev 1.109 of if_em.c which were unnecessary. P> This makes it easier for us to get the changes into -current and to -stable quickly. Can you please confirm that this was a mechanical substitution like this: s/sc/adapter/g s/em_softc/adapter/g and no more additional changes? If this is true, then I hope that we (FreeBSD and Intel) have finally came to a common codebase. This is good. :) I can stand the long unusual name for driver softc with no problems. I'm only a bit disappointed by the fact, that I haven't received a single email about these plans. You were in the void for a long time, and then began your work with a commit, w/o informing people who were maintaining driver while the vendor maintanance was on a hiatus. -- Totus tuus, Glebius. GLEBIUS-RIPN GLEB-RIPE From owner-cvs-all@FreeBSD.ORG Fri Aug 4 10:21:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 85C8416A4DD; Fri, 4 Aug 2006 10:21:12 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4040B43D46; Fri, 4 Aug 2006 10:21:12 +0000 (GMT) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74ALCLg065930; Fri, 4 Aug 2006 10:21:12 GMT (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74ALC6o065929; Fri, 4 Aug 2006 10:21:12 GMT (envelope-from ume) Message-Id: <200608041021.k74ALC6o065929@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Fri, 4 Aug 2006 10:21: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/lib/libc/resolv res_init.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, 04 Aug 2006 10:21:12 -0000 ume 2006-08-04 10:21:11 UTC FreeBSD src repository Modified files: lib/libc/resolv res_init.c Log: _close() should be called instead of close() here. Revision Changes Path 1.3 +6 -2 src/lib/libc/resolv/res_init.c From owner-cvs-all@FreeBSD.ORG Fri Aug 4 10:34:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5289616A4DD; Fri, 4 Aug 2006 10:34:50 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0777D43D49; Fri, 4 Aug 2006 10:34:50 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74AYnal066537; Fri, 4 Aug 2006 10:34:49 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74AYnXA066536; Fri, 4 Aug 2006 10:34:49 GMT (envelope-from maho) Message-Id: <200608041034.k74AYnXA066536@repoman.freebsd.org> From: Maho Nakata Date: Fri, 4 Aug 2006 10:34: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/java/ecj-bootstrap Makefile ports/java/ecj-bootstrap/files build.sh ecj-patch-Main.java X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Aug 2006 10:34:50 -0000 maho 2006-08-04 10:34:49 UTC FreeBSD ports repository Modified files: java/ecj-bootstrap Makefile java/ecj-bootstrap/files build.sh Added files: java/ecj-bootstrap/files ecj-patch-Main.java Log: Add sun.boot.class.path as default bootclasspath for gcj, so that we don't need to specify the bootclasspath. Bump portrevision. Revision Changes Path 1.2 +1 -0 ports/java/ecj-bootstrap/Makefile 1.2 +12 -1 ports/java/ecj-bootstrap/files/build.sh 1.1 +21 -0 ports/java/ecj-bootstrap/files/ecj-patch-Main.java (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 4 10:44:08 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F49416A4DE; Fri, 4 Aug 2006 10:44:08 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 079FD43D45; Fri, 4 Aug 2006 10:44:08 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74Ai7Ik066979; Fri, 4 Aug 2006 10:44:07 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74Ai76S066978; Fri, 4 Aug 2006 10:44:07 GMT (envelope-from edwin) Message-Id: <200608041044.k74Ai76S066978@repoman.freebsd.org> From: Edwin Groothuis Date: Fri, 4 Aug 2006 10:44: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/lire 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, 04 Aug 2006 10:44:08 -0000 edwin 2006-08-04 10:44:07 UTC FreeBSD ports repository Modified files: sysutils/lire Makefile Log: Add missing man-pages. Revision Changes Path 1.38 +11 -0 ports/sysutils/lire/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 10:50:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10E6016A4E2; Fri, 4 Aug 2006 10:50:53 +0000 (UTC) (envelope-from oleg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCD7443D49; Fri, 4 Aug 2006 10:50:52 +0000 (GMT) (envelope-from oleg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74AoqtB067298; Fri, 4 Aug 2006 10:50:52 GMT (envelope-from oleg@repoman.freebsd.org) Received: (from oleg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74Aoq7K067296; Fri, 4 Aug 2006 10:50:52 GMT (envelope-from oleg) Message-Id: <200608041050.k74Aoq7K067296@repoman.freebsd.org> From: Oleg Bulyzhin Date: Fri, 4 Aug 2006 10:50: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/netinet ip_fw2.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, 04 Aug 2006 10:50:53 -0000 oleg 2006-08-04 10:50:52 UTC FreeBSD src repository Modified files: sys/netinet ip_fw2.c Log: Remove useless NULL pointer check: we are using M_WAITOK flag for memory allocation. Submitted by: Andrey Elsukov Approved by: glebius (mentor) MFC after: 1 week Revision Changes Path 1.142 +0 -4 src/sys/netinet/ip_fw2.c From owner-cvs-all@FreeBSD.ORG Fri Aug 4 11:10:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 552EB16A4E7; Fri, 4 Aug 2006 11:10:13 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D124043D4C; Fri, 4 Aug 2006 11:10:12 +0000 (GMT) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74BACrH069441; Fri, 4 Aug 2006 11:10:12 GMT (envelope-from philip@repoman.freebsd.org) Received: (from philip@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74BACdN069439; Fri, 4 Aug 2006 11:10:12 GMT (envelope-from philip) Message-Id: <200608041110.k74BACdN069439@repoman.freebsd.org> From: Philip Paeps Date: Fri, 4 Aug 2006 11:10: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 Makefile ports/devel/p5-DateTime-Calendar-Discordian 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, 04 Aug 2006 11:10:13 -0000 philip 2006-08-04 11:10:12 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-DateTime-Calendar-Discordian Makefile distinfo pkg-descr pkg-plist Log: Add p5-DateTime-Calendar-Discordian: A module that implements the Discordian calendar made popular(?) in the "Illuminatus!" trilogy by Robert Shea and Robert Anton Wilson and by the Church of the SubGenius. Very useful during codefreeze to tell the testing-team why the build is failing or why there are regressions. :-) Revision Changes Path 1.2392 +1 -0 ports/devel/Makefile 1.1 +27 -0 ports/devel/p5-DateTime-Calendar-Discordian/Makefile (new) 1.1 +3 -0 ports/devel/p5-DateTime-Calendar-Discordian/distinfo (new) 1.1 +5 -0 ports/devel/p5-DateTime-Calendar-Discordian/pkg-descr (new) 1.1 +7 -0 ports/devel/p5-DateTime-Calendar-Discordian/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 4 11:10:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B73216A4DF; Fri, 4 Aug 2006 11:10:32 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54EA243D49; Fri, 4 Aug 2006 11:10:32 +0000 (GMT) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74BAWvQ069525; Fri, 4 Aug 2006 11:10:32 GMT (envelope-from philip@repoman.freebsd.org) Received: (from philip@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74BAW9U069524; Fri, 4 Aug 2006 11:10:32 GMT (envelope-from philip) Message-Id: <200608041110.k74BAW9U069524@repoman.freebsd.org> From: Philip Paeps Date: Fri, 4 Aug 2006 11:10: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: Fri, 04 Aug 2006 11:10:32 -0000 philip 2006-08-04 11:10:32 UTC FreeBSD ports repository Modified files: . modules Log: p5-DateTime-Calendar-Discordian --> ports/devel/p5-DateTime-Calendar-Discordian Revision Changes Path 1.15890 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Aug 4 12:04:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C1A716A4DA; Fri, 4 Aug 2006 12:04:44 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E51843D6A; Fri, 4 Aug 2006 12:04:42 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74C4gY2074056; Fri, 4 Aug 2006 12:04:42 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74C4gCa074055; Fri, 4 Aug 2006 12:04:42 GMT (envelope-from thierry) Message-Id: <200608041204.k74C4gCa074055@repoman.freebsd.org> From: Thierry Thomas Date: Fri, 4 Aug 2006 12:04: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/french/aster 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, 04 Aug 2006 12:04:44 -0000 thierry 2006-08-04 12:04:42 UTC FreeBSD ports repository Modified files: french/aster Makefile distinfo Log: Update to 8.3.0-2. Revision Changes Path 1.35 +1 -1 ports/french/aster/Makefile 1.18 +3 -3 ports/french/aster/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 4 12:26:08 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E641916A4DD; Fri, 4 Aug 2006 12:26:08 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EF8A43D45; Fri, 4 Aug 2006 12:26:08 +0000 (GMT) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74CQ8dQ075023; Fri, 4 Aug 2006 12:26:08 GMT (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74CQ8fI075022; Fri, 4 Aug 2006 12:26:08 GMT (envelope-from ume) Message-Id: <200608041226.k74CQ8fI075022@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Fri, 4 Aug 2006 12:26: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/resolv res_send.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, 04 Aug 2006 12:26:09 -0000 ume 2006-08-04 12:26:08 UTC FreeBSD src repository Modified files: lib/libc/resolv res_send.c Log: Check if the filedes of kevent is expected one. Though our old resolver opened just one socket, BIND9's resolver may open more than one sockets. And, BIND9's resolver doesn't close the socket on timeout. So, we need this check. Reported by: freebsd-cvs-src__at__oldach.net (Helge Oldach), bz Hinted by: rwatson Revision Changes Path 1.3 +4 -0 src/lib/libc/resolv/res_send.c From owner-cvs-all@FreeBSD.ORG Fri Aug 4 12:28:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2486716A4DA; Fri, 4 Aug 2006 12:28:13 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D263343D45; Fri, 4 Aug 2006 12:28:12 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74CSCE1075101; Fri, 4 Aug 2006 12:28:12 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74CSC1r075100; Fri, 4 Aug 2006 12:28:12 GMT (envelope-from miwi) Message-Id: <200608041228.k74CSC1r075100@repoman.freebsd.org> From: Martin Wilke Date: Fri, 4 Aug 2006 12:28: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/sylpheed-claws 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, 04 Aug 2006 12:28:13 -0000 miwi 2006-08-04 12:28:12 UTC FreeBSD ports repository Modified files: mail/sylpheed-claws Makefile Log: - Add OPTIONS for ipv6 - Bump PORTREVISION Submitted by: miwi Approved by: krion (mentor), netchild (maintainer) Revision Changes Path 1.102 +9 -1 ports/mail/sylpheed-claws/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 12:30:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 415DA16A4DF; Fri, 4 Aug 2006 12:30:44 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 751B643D6E; Fri, 4 Aug 2006 12:30:41 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74CUfNV075284; Fri, 4 Aug 2006 12:30:41 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74CUfvQ075282; Fri, 4 Aug 2006 12:30:41 GMT (envelope-from lth) Message-Id: <200608041230.k74CUfvQ075282@repoman.freebsd.org> From: Lars Thegler Date: Fri, 4 Aug 2006 12: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/p5-Module-CoreList 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, 04 Aug 2006 12:30:44 -0000 lth 2006-08-04 12:30:41 UTC FreeBSD ports repository Modified files: devel/p5-Module-CoreList Makefile distinfo Log: - Update to 2.06 - Now requires perl from ports - Use magic MASTER_SITES Revision Changes Path 1.10 +8 -5 ports/devel/p5-Module-CoreList/Makefile 1.11 +3 -3 ports/devel/p5-Module-CoreList/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 4 12:33:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2041316A4DD; Fri, 4 Aug 2006 12:33:56 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89C0143D53; Fri, 4 Aug 2006 12:33:55 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74CXtU8075498; Fri, 4 Aug 2006 12:33:55 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74CXtb9075497; Fri, 4 Aug 2006 12:33:55 GMT (envelope-from miwi) Message-Id: <200608041233.k74CXtb9075497@repoman.freebsd.org> From: Martin Wilke Date: Fri, 4 Aug 2006 12:33: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/devel/safestr 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, 04 Aug 2006 12:33:56 -0000 miwi 2006-08-04 12:33:55 UTC FreeBSD ports repository Modified files: devel/safestr Makefile Log: - Chase increase of devel/safestr shlib version. - Bump PORTREVISION Submitted by: pointyhat via erwin Approved by: markus (co mentor) Revision Changes Path 1.3 +2 -1 ports/devel/safestr/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 12:34:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E7D0F16A4DA; Fri, 4 Aug 2006 12:34:54 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1BC6A43D66; Fri, 4 Aug 2006 12:34:51 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74CYoUA076723; Fri, 4 Aug 2006 12:34:50 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74CYoc1076722; Fri, 4 Aug 2006 12:34:50 GMT (envelope-from erwin) Message-Id: <200608041234.k74CYoc1076722@repoman.freebsd.org> From: Erwin Lansing Date: Fri, 4 Aug 2006 12:34: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/Mk bsd.emacs.mk bsd.gnome.mk bsd.mail.mk bsd.openssl.mk bsd.port.mk bsd.port.subdir.mk bsd.python.mk bsd.ruby.mk bsd.scons.mk ports/Tools/scripts security-check.awk ports/databases/p5-DBD-Oracle Makefile ports/databases/p5-sqlrelay ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Aug 2006 12:34:55 -0000 erwin 2006-08-04 12:34:50 UTC FreeBSD ports repository Modified files: Mk bsd.emacs.mk bsd.gnome.mk bsd.mail.mk bsd.openssl.mk bsd.port.mk bsd.port.subdir.mk bsd.python.mk bsd.ruby.mk bsd.scons.mk Tools/scripts security-check.awk databases/p5-DBD-Oracle Makefile databases/p5-sqlrelay Makefile devel/p5-Devel-DProf Makefile devel/p5-Glib2 Makefile devel/p5-SDL Makefile devel/plan9port Makefile devel/subversion Makefile graphics/ImageMagick Makefile graphics/pgperl Makefile graphics/tcm Makefile japanese/p5-manual Makefile japanese/perl5 Makefile lang/erlang Makefile lang/icc Makefile lang/icc7 Makefile lang/ifc Makefile lang/ifc7 Makefile lang/metaocaml Makefile lang/perl5 Makefile lang/perl5.8 Makefile lang/pike72 Makefile mail/qmailanalog Makefile mail/zmailer Makefile math/PDL Makefile misc/ossp-uuid Makefile net/globus4 Makefile net/libpcap Makefile net/mpich Makefile net/rrdtool Makefile net/rrdtool10 Makefile net/spread Makefile net/tcpdump Makefile net-mgmt/flowd Makefile net-mgmt/net-snmp Makefile net-mgmt/nocol Makefile palm/prc-tools Makefile print/perlftlib Makefile security/openssl Makefile security/p5-openxpki Makefile security/pam_krb5 Makefile sysutils/heirloom Makefile sysutils/pkg_install-devel pkg-deinstall pkg-install sysutils/sge Makefile textproc/p5-SGML-DTDParse Makefile textproc/p5-XML-Handler-Dtd2DocBook Makefile textproc/p5-XML-Handler-Dtd2Html Makefile textproc/p5-XML-Handler-YAWriter Makefile textproc/po4a Makefile www/aolserver Makefile www/apache13-modperl Makefile www/libapreq2 Makefile www/p5-HTTP-DAV Makefile www/rt2 Makefile www/slash Makefile www/snownews Makefile x11-toolkits/p5-qt Makefile Log: Add support for DESTDIR part I. This commit should largele be a NOOP as it only adds support for DESTDIR undefined. This does allow us to start testing ports with DESTDIR set, but this is as of yet not supported. Although this has been extensively tested on pointyhat, this is a very intrusive change and some cases may have been overlooked. Please contact Gabor and me if you find any. PR: 100555 Submitted by: gabor Sponsored by: Google Summer of Code 2006 Revision Changes Path 1.58 +3 -3 ports/Mk/bsd.emacs.mk 1.131 +8 -8 ports/Mk/bsd.gnome.mk 1.2 +3 -3 ports/Mk/bsd.mail.mk 1.31 +5 -5 ports/Mk/bsd.openssl.mk 1.539 +386 -121 ports/Mk/bsd.port.mk 1.65 +9 -9 ports/Mk/bsd.port.subdir.mk 1.81 +2 -2 ports/Mk/bsd.python.mk 1.153 +3 -3 ports/Mk/bsd.ruby.mk 1.6 +2 -2 ports/Mk/bsd.scons.mk 1.2 +40 -10 ports/Tools/scripts/security-check.awk 1.8 +0 -1 ports/databases/p5-DBD-Oracle/Makefile 1.18 +1 -1 ports/databases/p5-sqlrelay/Makefile 1.19 +0 -1 ports/devel/p5-Devel-DProf/Makefile 1.21 +1 -1 ports/devel/p5-Glib2/Makefile 1.17 +1 -1 ports/devel/p5-SDL/Makefile 1.16 +1 -1 ports/devel/plan9port/Makefile 1.104 +1 -1 ports/devel/subversion/Makefile 1.223 +1 -1 ports/graphics/ImageMagick/Makefile 1.29 +1 -1 ports/graphics/pgperl/Makefile 1.13 +1 -1 ports/graphics/tcm/Makefile 1.13 +1 -1 ports/japanese/p5-manual/Makefile 1.40 +1 -1 ports/japanese/perl5/Makefile 1.91 +4 -4 ports/lang/erlang/Makefile 1.92 +1 -1 ports/lang/icc/Makefile 1.71 +1 -1 ports/lang/icc7/Makefile 1.46 +1 -1 ports/lang/ifc/Makefile 1.31 +1 -1 ports/lang/ifc7/Makefile 1.7 +1 -1 ports/lang/metaocaml/Makefile 1.89 +1 -1 ports/lang/perl5.8/Makefile 1.70 +1 -1 ports/lang/perl5/Makefile 1.34 +1 -1 ports/lang/pike72/Makefile 1.24 +1 -1 ports/mail/qmailanalog/Makefile 1.20 +1 -1 ports/mail/zmailer/Makefile 1.44 +1 -1 ports/math/PDL/Makefile 1.23 +1 -1 ports/misc/ossp-uuid/Makefile 1.9 +1 -1 ports/net-mgmt/flowd/Makefile 1.134 +1 -1 ports/net-mgmt/net-snmp/Makefile 1.13 +1 -1 ports/net-mgmt/nocol/Makefile 1.8 +1 -1 ports/net/globus4/Makefile 1.8 +1 -1 ports/net/libpcap/Makefile 1.44 +1 -1 ports/net/mpich/Makefile 1.58 +1 -1 ports/net/rrdtool/Makefile 1.55 +1 -1 ports/net/rrdtool10/Makefile 1.19 +1 -1 ports/net/spread/Makefile 1.19 +1 -1 ports/net/tcpdump/Makefile 1.50 +1 -1 ports/palm/prc-tools/Makefile 1.22 +1 -1 ports/print/perlftlib/Makefile 1.117 +2 -2 ports/security/openssl/Makefile 1.4 +2 -3 ports/security/p5-openxpki/Makefile 1.23 +2 -2 ports/security/pam_krb5/Makefile 1.7 +1 -1 ports/sysutils/heirloom/Makefile 1.3 +3 -3 ports/sysutils/pkg_install-devel/pkg-deinstall 1.3 +3 -3 ports/sysutils/pkg_install-devel/pkg-install 1.19 +1 -1 ports/sysutils/sge/Makefile 1.2 +0 -1 ports/textproc/p5-SGML-DTDParse/Makefile 1.2 +0 -1 ports/textproc/p5-XML-Handler-Dtd2DocBook/Makefile 1.2 +0 -1 ports/textproc/p5-XML-Handler-Dtd2Html/Makefile 1.5 +0 -1 ports/textproc/p5-XML-Handler-YAWriter/Makefile 1.2 +1 -1 ports/textproc/po4a/Makefile 1.22 +2 -2 ports/www/aolserver/Makefile 1.17 +1 -1 ports/www/apache13-modperl/Makefile 1.18 +1 -1 ports/www/libapreq2/Makefile 1.5 +0 -1 ports/www/p5-HTTP-DAV/Makefile 1.24 +1 -1 ports/www/rt2/Makefile 1.15 +1 -1 ports/www/slash/Makefile 1.24 +1 -1 ports/www/snownews/Makefile 1.8 +1 -1 ports/x11-toolkits/p5-qt/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 12:35:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F2F216A4DF; Fri, 4 Aug 2006 12:35:55 +0000 (UTC) (envelope-from itetcu@people.tecnik93.com) Received: from it.buh.tecnik93.com (it.buh.tecnik93.com [81.196.204.98]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1BFFD43D49; Fri, 4 Aug 2006 12:35:54 +0000 (GMT) (envelope-from itetcu@people.tecnik93.com) Received: from it.buh.tecnik93.com (localhost [127.0.0.1]) by it.buh.tecnik93.com (Postfix) with ESMTP id 6E05117662; Fri, 4 Aug 2006 15:35:53 +0300 (EEST) Date: Fri, 4 Aug 2006 15:35:52 +0300 From: Ion-Mihai Tetcu To: Martin Wilke Message-ID: <20060804153552.3964bd03@it.buh.tecnik93.com> In-Reply-To: <200608041228.k74CSC1r075100@repoman.freebsd.org> References: <200608041228.k74CSC1r075100@repoman.freebsd.org> X-Mailer: Sylpheed-Claws 2.4.0 (GTK+ 2.8.20; i386-portbld-freebsd6.1) 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/mail/sylpheed-claws 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, 04 Aug 2006 12:35:55 -0000 On Fri, 4 Aug 2006 12:28:12 +0000 (UTC) Martin Wilke wrote: > miwi 2006-08-04 12:28:12 UTC > > FreeBSD ports repository > > Modified files: > mail/sylpheed-claws Makefile > Log: > - Add OPTIONS for ipv6 > - Bump PORTREVISION Since you're here, please bump PORTREVISION for mail/sylpheed-claws-* as they relay on s.c. version and not plug-in API version. -- IOnut - Un^d^dregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" BOFH excuse #48: bad ether in the cables From owner-cvs-all@FreeBSD.ORG Fri Aug 4 12:36:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 86EE616A4DA; Fri, 4 Aug 2006 12:36:32 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C8D743D53; Fri, 4 Aug 2006 12:36:31 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74CaVTA076873; Fri, 4 Aug 2006 12:36:31 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74CaVZ9076872; Fri, 4 Aug 2006 12:36:31 GMT (envelope-from erwin) Message-Id: <200608041236.k74CaVZ9076872@repoman.freebsd.org> From: Erwin Lansing Date: Fri, 4 Aug 2006 12:36: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 CHANGES X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Aug 2006 12:36:32 -0000 erwin 2006-08-04 12:36:30 UTC FreeBSD ports repository Modified files: . CHANGES Log: Add a note for the latest patchset which adds DESTDIR support. Submitted by: gabor Sponsored by: Google Summer of Code 2006 Revision Changes Path 1.56 +36 -3 ports/CHANGES From owner-cvs-all@FreeBSD.ORG Fri Aug 4 12:38:01 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D39F16A4DD; Fri, 4 Aug 2006 12:38:01 +0000 (UTC) (envelope-from markus@brueffer.de) Received: from mail-in-02.arcor-online.net (mail-in-02.arcor-online.net [151.189.21.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0822543D76; Fri, 4 Aug 2006 12:37:56 +0000 (GMT) (envelope-from markus@brueffer.de) Received: from mail-in-11-z2.arcor-so.net (mail-in-11-z2.arcor-online.net [151.189.8.28]) by mail-in-02.arcor-online.net (Postfix) with ESMTP id 72CD3267AD0; Fri, 4 Aug 2006 14:37:55 +0200 (CEST) Received: from mail-in-03.arcor-online.net (mail-in-06.arcor-online.net [151.189.21.46]) by mail-in-11-z2.arcor-so.net (Postfix) with ESMTP id 5AC671C7237; Fri, 4 Aug 2006 14:37:55 +0200 (CEST) Received: from ramses.kicks-ass.net (dslb-084-061-008-109.pools.arcor-ip.net [84.61.8.109]) by mail-in-03.arcor-online.net (Postfix) with ESMTP id A9FE1192C03; Fri, 4 Aug 2006 14:37:54 +0200 (CEST) Received: from cheops.phoenix (cheops.phoenix [192.168.1.3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by ramses.kicks-ass.net (Postfix) with ESMTP id 0121DB81B; Fri, 4 Aug 2006 14:37:53 +0200 (CEST) From: Markus Brueffer To: Martin Wilke Date: Fri, 4 Aug 2006 14:37:23 +0200 User-Agent: KMail/1.9.3 References: <200608041233.k74CXtb9075497@repoman.freebsd.org> In-Reply-To: <200608041233.k74CXtb9075497@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart1957941.RRIqMtuydB"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200608041437.31605.markus@brueffer.de> Cc: cvs-ports@freebsd.org, cvs-all@freebsd.org, ports-committers@freebsd.org Subject: Re: cvs commit: ports/devel/safestr 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, 04 Aug 2006 12:38:01 -0000 --nextPart1957941.RRIqMtuydB Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Friday 04 August 2006 14:33, Martin Wilke wrote: > miwi 2006-08-04 12:33:55 UTC > > FreeBSD ports repository > > Modified files: > devel/safestr Makefile > Log: > - Chase increase of devel/safestr shlib version. > - Bump PORTREVISION > > Submitted by: pointyhat via erwin > Approved by: markus (co mentor) > > Revision Changes Path > 1.3 +2 -1 ports/devel/safestr/Makefile Pointyhat to: markus Thanks erwin! =2D-=20 Markus Brueffer =A0 =A0| GPG-Key: http://people.FreeBSD.org/~markus/markus.= asc markus@brueffer.de | FP: 3F9B EBE8 F290 E5CC 1447 8760 D48D 1072 78F8 A8D4 markus@FreeBSD.org | FreeBSD: The Power to Serve! --nextPart1957941.RRIqMtuydB Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQBE0z+L1I0Qcnj4qNQRAma4AKC7fPNGIYncCLasp5uPms2K2DcFegCgh87+ WAZ5n80zFGrxe6SbOpnYDvQ= =ppqc -----END PGP SIGNATURE----- --nextPart1957941.RRIqMtuydB-- From owner-cvs-all@FreeBSD.ORG Fri Aug 4 12:38:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AAD9D16A4DE; Fri, 4 Aug 2006 12:38:47 +0000 (UTC) (envelope-from ume@mahoroba.org) Received: from ameno.mahoroba.org (gw4.mahoroba.org [218.45.22.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9022A43D49; Fri, 4 Aug 2006 12:38:45 +0000 (GMT) (envelope-from ume@mahoroba.org) Received: from kasuga.mahoroba.org (IDENT:f1Uf1xcTReTfjCf9aK12o6lgcDkp/Ivv8Uuz6k/ul4R0oOOY9+YzTHJdStl+ZDAT@kasuga-iwi.mahoroba.org [IPv6:2001:2f0:104:8010:212:f0ff:fe52:6ac]) (user=ume mech=CRAM-MD5 bits=0) by ameno.mahoroba.org (8.13.6/8.13.6) with ESMTP/inet6 id k74CcXuP005290 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 4 Aug 2006 21:38:38 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Fri, 04 Aug 2006 21:38:33 +0900 Message-ID: From: Hajimu UMEMOTO To: freebsd-cvs-src@oldach.net (Helge Oldach) In-Reply-To: <200608040550.k745ojss063972@sep.oldach.net> References: <200608040550.k745ojss063972@sep.oldach.net> User-Agent: xcite1.38> Wanderlust/2.14.0 (Africa) SEMI/1.14.6 (Maruoka) FLIM/1.14.8 (=?ISO-8859-4?Q?Shij=F2?=) APEL/10.6 Emacs/22.0.50 (i386-pc-freebsd) MULE/5.0 (SAKAKI) X-Operating-System: FreeBSD 6.1-STABLE X-PGP-Key: http://www.imasy.or.jp/~ume/publickey.asc X-PGP-Fingerprint: 1F00 0B9E 2164 70FC 6DC5 BF5F 04E9 F086 BF90 71FE Organization: Internet Mutual Aid Society, YOKOHAMA MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.1.12 (ameno.mahoroba.org [IPv6:2001:2f0:104:8010::1]); Fri, 04 Aug 2006 21:38:40 +0900 (JST) X-Virus-Scanned: by amavisd-new X-Virus-Status: Clean X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on ameno.mahoroba.org Cc: scottl@samsco.org, src-committers@FreeBSD.org, Hajimu UMEMOTO , cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, kensmith@cse.Buffalo.EDU Subject: Re: cvs commit: src/sys/sys param.h src/include Makefile netdb.h res_update.h resolv.h src/include/arpa inet.h nameser.h nameser X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Aug 2006 12:38:47 -0000 Hi, >>>>> On Fri, 4 Aug 2006 07:50:45 +0200 (CEST) >>>>> Helge Oldach said: freebsd-cvs-src> Yes, certainly. As I've said, this issue shows up on several boxes. This freebsd-cvs-src> includes machines with only a single resolver (which is up of course), freebsd-cvs-src> resolving towards the internet, machines that talk to localhost (running freebsd-cvs-src> a caching named with forwarders to public servers), but also to machines freebsd-cvs-src> running on an internal network with private root servers. Actually I had freebsd-cvs-src> already played around a bit with this, without any noticeable effect. Okay. Perhaps, I found the cause. Please try the following change and let me know the result: http://www.freebsd.org/cgi/cvsweb.cgi/src/lib/libc/resolv/res_send.c.diff?r1=1.2&r2=1.3 Sincerely, -- Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan ume@mahoroba.org ume@{,jp.}FreeBSD.org http://www.imasy.org/~ume/ From owner-cvs-all@FreeBSD.ORG Fri Aug 4 13:06:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2FA016A4DA; Fri, 4 Aug 2006 13:06:05 +0000 (UTC) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82CB043D53; Fri, 4 Aug 2006 13:06:05 +0000 (GMT) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74D65Io087502; Fri, 4 Aug 2006 13:06:05 GMT (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74D65k6087501; Fri, 4 Aug 2006 13:06:05 GMT (envelope-from mux) Message-Id: <200608041306.k74D65k6087501@repoman.freebsd.org> From: Maxime Henrion Date: Fri, 4 Aug 2006 13:06: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/hs-fps 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, 04 Aug 2006 13:06:05 -0000 mux 2006-08-04 13:06:05 UTC FreeBSD ports repository Modified files: devel/hs-fps Makefile distinfo pkg-plist Log: Update to 0.7. Revision Changes Path 1.3 +1 -2 ports/devel/hs-fps/Makefile 1.2 +3 -3 ports/devel/hs-fps/distinfo 1.3 +12 -3 ports/devel/hs-fps/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 4 13:13:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 863D416A4DD; Fri, 4 Aug 2006 13:13:32 +0000 (UTC) (envelope-from vd@datamax.bg) Received: from jengal.datamax.bg (jengal.datamax.bg [82.103.104.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9669F43D53; Fri, 4 Aug 2006 13:13:31 +0000 (GMT) (envelope-from vd@datamax.bg) Received: from qlovarnika.bg.datamax (qlovarnika.bg.datamax [192.168.10.2]) by jengal.datamax.bg (Postfix) with SMTP id B7FA5B833; Fri, 4 Aug 2006 16:13:30 +0300 (EEST) Received: (nullmailer pid 67584 invoked by uid 1002); Fri, 04 Aug 2006 13:13:30 -0000 Date: Fri, 4 Aug 2006 16:13:30 +0300 From: Vasil Dimov To: Erwin Lansing Message-ID: <20060804131330.GA67531@qlovarnika.bg.datamax> References: <200608041236.k74CaVZ9076872@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="LQksG6bCIzRHxTLp" Content-Disposition: inline In-Reply-To: <200608041236.k74CaVZ9076872@repoman.freebsd.org> Cc: cvs-ports@FreeBSD.org, gabor@freebsd.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports CHANGES X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: vd@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: Fri, 04 Aug 2006 13:13:32 -0000 --LQksG6bCIzRHxTLp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Aug 04, 2006 at 12:36:30PM +0000, Erwin Lansing wrote: > erwin 2006-08-04 12:36:30 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > . CHANGES=20 > Log: > Add a note for the latest patchset which adds DESTDIR support. > =20 > Submitted by: gabor > Sponsored by: Google Summer of Code 2006 > =20 > Revision Changes Path > 1.56 +36 -3 ports/CHANGES Thanks! Two things: 1: + * TARGETDIR variable has been added for referencing ${DSTDIR}${PREFIX}. ^^^ 2: + * OSVERSION is now determined from the userland, not from the kernel. + Cross-compiling between releases is still not supported, but this + behavior is more correct for jails with different kernel version as we= ll. What is this "jails with different kernel version"? Sounds to me like it is possible to run another kernel inside the jail. --=20 Vasil Dimov gro.DSBeerF@dv Testing can show the presence of bugs, but not their absence. -- Edsger W. Dijkstra --LQksG6bCIzRHxTLp Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- iD8DBQFE00f6Fw6SP/bBpCARAopZAKDHx5rb79L5EzT0zXbN6fLFUyLXvgCg1bsZ +jPFZCzLd1n3f8MLqRt+jJY= =qhcO -----END PGP SIGNATURE----- --LQksG6bCIzRHxTLp-- From owner-cvs-all@FreeBSD.ORG Fri Aug 4 13:18:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A9BA16A4E0; Fri, 4 Aug 2006 13:18:04 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35B5443D78; Fri, 4 Aug 2006 13:18:00 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74DI0Jx088125; Fri, 4 Aug 2006 13:18:00 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74DI0fa088124; Fri, 4 Aug 2006 13:18:00 GMT (envelope-from erwin) Message-Id: <200608041318.k74DI0fa088124@repoman.freebsd.org> From: Erwin Lansing Date: Fri, 4 Aug 2006 13:17: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 CHANGES X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Aug 2006 13:18:04 -0000 erwin 2006-08-04 13:17:59 UTC FreeBSD ports repository Modified files: . CHANGES Log: Fix a typo and refrase a sentense to be less ambiguous in the last commit Submitted by: vd Revision Changes Path 1.57 +4 -3 ports/CHANGES From owner-cvs-all@FreeBSD.ORG Fri Aug 4 13:23:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CCA8716A4DD; Fri, 4 Aug 2006 13:23:11 +0000 (UTC) (envelope-from flz@xbsd.org) Received: from smtp3-g19.free.fr (smtp3-g19.free.fr [212.27.42.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CDF843D4C; Fri, 4 Aug 2006 13:23:11 +0000 (GMT) (envelope-from flz@xbsd.org) Received: from smtp.xbsd.org (xbsd.org [82.233.2.192]) by smtp3-g19.free.fr (Postfix) with ESMTP id 9E28F4915A; Fri, 4 Aug 2006 15:23:10 +0200 (CEST) Received: from localhost (localhost.xbsd.org [127.0.0.1]) by smtp.xbsd.org (Postfix) with ESMTP id BE03D11B9A; Fri, 4 Aug 2006 15:23:09 +0200 (CEST) Received: from smtp.xbsd.org ([127.0.0.1]) by localhost (srv1.xbsd.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 45248-06; Fri, 4 Aug 2006 15:23:02 +0200 (CEST) Received: from mayday.esat.net (mayday.esat.net [193.95.134.156]) by smtp.xbsd.org (Postfix) with ESMTP id C1709116BA; Fri, 4 Aug 2006 15:22:09 +0200 (CEST) From: Florent Thoumie To: vd@FreeBSD.org In-Reply-To: <20060804131330.GA67531@qlovarnika.bg.datamax> References: <200608041236.k74CaVZ9076872@repoman.freebsd.org> <20060804131330.GA67531@qlovarnika.bg.datamax> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-AY7EqSIfgkdXTzz4YGCx" Date: Fri, 04 Aug 2006 14:22:24 +0100 Message-Id: <1154697744.14585.24.camel@mayday.esat.net> Mime-Version: 1.0 X-Mailer: Evolution 2.6.3 FreeBSD GNOME Team Port X-Virus-Scanned: amavisd-new at xbsd.org Cc: cvs-ports@FreeBSD.org, gabor@freebsd.org, Erwin Lansing , cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports CHANGES X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Aug 2006 13:23:11 -0000 --=-AY7EqSIfgkdXTzz4YGCx Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Fri, 2006-08-04 at 16:13 +0300, Vasil Dimov wrote: > 2: > + * OSVERSION is now determined from the userland, not from the kernel. > + Cross-compiling between releases is still not supported, but this > + behavior is more correct for jails with different kernel version as = well. >=20 > What is this "jails with different kernel version"? Sounds to me like it > is possible to run another kernel inside the jail. Yeah, hence the comment :-) --=20 Florent Thoumie flz@FreeBSD.org FreeBSD Committer --=-AY7EqSIfgkdXTzz4YGCx Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.4 (FreeBSD) iD8DBQBE00oQMxEkbVFH3PQRAibaAJ4g1u0tqS46QaV1ixa9hAN+Wn8KVQCeOdWc UrU/9h1nVEORskTQ1/mr3Jc= =47Yi -----END PGP SIGNATURE----- --=-AY7EqSIfgkdXTzz4YGCx-- From owner-cvs-all@FreeBSD.ORG Fri Aug 4 13:32:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACEE516A4DA; Fri, 4 Aug 2006 13:32:03 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4419D43D45; Fri, 4 Aug 2006 13:32:03 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74DW3QE088843; Fri, 4 Aug 2006 13:32:03 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74DW3HQ088842; Fri, 4 Aug 2006 13:32:03 GMT (envelope-from rafan) Message-Id: <200608041332.k74DW3HQ088842@repoman.freebsd.org> From: Rong-En Fan Date: Fri, 4 Aug 2006 13:32: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/www/twhttpd 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, 04 Aug 2006 13:32:03 -0000 rafan 2006-08-04 13:32:03 UTC FreeBSD ports repository Modified files: www/twhttpd Makefile Log: - Fix build Noticed by: pointyhat via erwin Pointyhat to: rafan Revision Changes Path 1.10 +3 -0 ports/www/twhttpd/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 13:36:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 57F7516A4DE; Fri, 4 Aug 2006 13:36:29 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C8ED43D5C; Fri, 4 Aug 2006 13:36:28 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74DaSLf089156; Fri, 4 Aug 2006 13:36:28 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74DaSRI089155; Fri, 4 Aug 2006 13:36:28 GMT (envelope-from glebius) Message-Id: <200608041336.k74DaSRI089155@repoman.freebsd.org> From: Gleb Smirnoff Date: Fri, 4 Aug 2006 13:36: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/sys/netgraph ng_ether.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, 04 Aug 2006 13:36:29 -0000 glebius 2006-08-04 13:36:28 UTC FreeBSD src repository Modified files: sys/netgraph ng_ether.c Log: Turn off by default "feature" that overwrites MAC address on output frames. Many people were confused with not working CARP, ng_bridge(4) and other subsystems, because ng_ether(4) overwritten source MAC address. Revision Changes Path 1.61 +0 -1 src/sys/netgraph/ng_ether.c From owner-cvs-all@FreeBSD.ORG Fri Aug 4 13:37:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B006016A4DD; Fri, 4 Aug 2006 13:37:55 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6957143D58; Fri, 4 Aug 2006 13:37:55 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74DbtTS089246; Fri, 4 Aug 2006 13:37:55 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74DbtMR089245; Fri, 4 Aug 2006 13:37:55 GMT (envelope-from delphij) Message-Id: <200608041337.k74DbtMR089245@repoman.freebsd.org> From: Xin LI Date: Fri, 4 Aug 2006 13:37: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/libexec/rtld-elf rtld.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, 04 Aug 2006 13:37:55 -0000 delphij 2006-08-04 13:37:54 UTC FreeBSD src repository Modified files: libexec/rtld-elf rtld.c Log: In symlook_obj(): fix _rtld_error output. MFC After: 2 weeks Revision Changes Path 1.115 +2 -2 src/libexec/rtld-elf/rtld.c From owner-cvs-all@FreeBSD.ORG Fri Aug 4 13:44:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D43916A4E1; Fri, 4 Aug 2006 13:44:40 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 377EB43D53; Fri, 4 Aug 2006 13:44:40 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74DieKT089722; Fri, 4 Aug 2006 13:44:40 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74DieAe089721; Fri, 4 Aug 2006 13:44:40 GMT (envelope-from rafan) Message-Id: <200608041344.k74DieAe089721@repoman.freebsd.org> From: Rong-En Fan Date: Fri, 4 Aug 2006 13:44: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/math/jsmath 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, 04 Aug 2006 13:44:40 -0000 rafan 2006-08-04 13:44:39 UTC FreeBSD ports repository Modified files: math/jsmath Makefile Log: - Add WITH_SPRITE_FONTS option PR: ports/101344 Submitted by: Nicola Vitale (maintainer) Revision Changes Path 1.4 +5 -1 ports/math/jsmath/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 13:49:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E164E16A4DA; Fri, 4 Aug 2006 13:49:17 +0000 (UTC) (envelope-from mr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BD8C43D4C; Fri, 4 Aug 2006 13:49:17 +0000 (GMT) (envelope-from mr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74DnHpA089901; Fri, 4 Aug 2006 13:49:17 GMT (envelope-from mr@repoman.freebsd.org) Received: (from mr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74DnHbs089900; Fri, 4 Aug 2006 13:49:17 GMT (envelope-from mr) Message-Id: <200608041349.k74DnHbs089900@repoman.freebsd.org> From: Michael Reifenberger Date: Fri, 4 Aug 2006 13:49: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/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, 04 Aug 2006 13:49:18 -0000 mr 2006-08-04 13:49:16 UTC FreeBSD src repository Modified files: sys/i386/i386 identcpu.c Log: Dont overwrite cpu_model in the case of Via's C3-CPU. Noticed by: Mike Tancsa MFC after: 2 days Revision Changes Path 1.169 +2 -1 src/sys/i386/i386/identcpu.c From owner-cvs-all@FreeBSD.ORG Fri Aug 4 13:55:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 75F6B16A4EF; Fri, 4 Aug 2006 13:55:16 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F31443D66; Fri, 4 Aug 2006 13:55:11 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74DtBP7090281; Fri, 4 Aug 2006 13:55:11 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74DtBHB090280; Fri, 4 Aug 2006 13:55:11 GMT (envelope-from rafan) Message-Id: <200608041355.k74DtBHB090280@repoman.freebsd.org> From: Rong-En Fan Date: Fri, 4 Aug 2006 13:55: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/x11/e17-module-engage Makefile ports/x11/e17-module-engage/files patch-src_module_e_mod_config.c patch-src_module_e_mod_main.c patch-src_module_e_mod_main.h patch-src_module_module_icon.edc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Aug 2006 13:55:16 -0000 rafan 2006-08-04 13:55:11 UTC FreeBSD ports repository Modified files: x11/e17-module-engage Makefile Added files: x11/e17-module-engage/files patch-src_module_e_mod_config.c patch-src_module_e_mod_main.c patch-src_module_e_mod_main.h patch-src_module_module_icon.edc Log: - Fix building of module.eap under some circumstancies (reported by Michael Metzger ) - Fix bug with no icon in e17 menu. - Add missing ewl dependency (reported by Rainer Alves ) PR: ports/101326 Submitted by: Stanislav Sedov (maintainer) Revision Changes Path 1.2 +3 -1 ports/x11/e17-module-engage/Makefile 1.1 +21 -0 ports/x11/e17-module-engage/files/patch-src_module_e_mod_config.c (new) 1.1 +10 -0 ports/x11/e17-module-engage/files/patch-src_module_e_mod_main.c (new) 1.1 +13 -0 ports/x11/e17-module-engage/files/patch-src_module_e_mod_main.h (new) 1.1 +11 -0 ports/x11/e17-module-engage/files/patch-src_module_module_icon.edc (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 4 13:59:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D9A616A4DD; Fri, 4 Aug 2006 13:59:50 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 328FC43D46; Fri, 4 Aug 2006 13:59:50 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74Dxomg090560; Fri, 4 Aug 2006 13:59:50 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74Dxoo5090559; Fri, 4 Aug 2006 13:59:50 GMT (envelope-from rafan) Message-Id: <200608041359.k74Dxoo5090559@repoman.freebsd.org> From: Rong-En Fan Date: Fri, 4 Aug 2006 13:59: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/games/utserver Makefile distinfo pkg-descr pkg-message pkg-plist ports/games/utserver/files excludefiles pkg-message.in template-patch-ngstatsut X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Aug 2006 13:59:50 -0000 rafan 2006-08-04 13:59:49 UTC FreeBSD ports repository Modified files: games/utserver Makefile distinfo pkg-descr pkg-plist games/utserver/files template-patch-ngstatsut Added files: games/utserver/files excludefiles pkg-message.in Removed files: games/utserver pkg-message Log: - Update to 451 - Pass maintainership to submitter PR: ports/101339 Submitted by: Alexander Logvinov Revision Changes Path 1.22 +27 -62 ports/games/utserver/Makefile 1.6 +3 -0 ports/games/utserver/distinfo 1.1 +24 -0 ports/games/utserver/files/excludefiles (new) 1.1 +14 -0 ports/games/utserver/files/pkg-message.in (new) 1.3 +2 -2 ports/games/utserver/files/template-patch-ngstatsut 1.3 +2 -1 ports/games/utserver/pkg-descr 1.5 +0 -10 ports/games/utserver/pkg-message (dead) 1.3 +21 -8 ports/games/utserver/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 4 14:04:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B541B16A4DD; Fri, 4 Aug 2006 14:04:14 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BD3B43D46; Fri, 4 Aug 2006 14:04:14 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74E4Ek9092115; Fri, 4 Aug 2006 14:04:14 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74E4ED3092114; Fri, 4 Aug 2006 14:04:14 GMT (envelope-from rafan) Message-Id: <200608041404.k74E4ED3092114@repoman.freebsd.org> From: Rong-En Fan Date: Fri, 4 Aug 2006 14:04: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/nepenthes Makefile ports/net/nepenthes/files patch-modules-vuln-bagle-BagleDialogue.cpp patch-modules-vuln-mydoom-MydoomDialogue.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: Fri, 04 Aug 2006 14:04:14 -0000 rafan 2006-08-04 14:04:14 UTC FreeBSD ports repository Modified files: net/nepenthes Makefile Added files: net/nepenthes/files patch-modules-vuln-bagle-BagleDialogue.cpp patch-modules-vuln-mydoom-MydoomDialogue.cpp Log: - Add two critical patches for MyDoom and Bagle modules - Pass maintainership to submitter PR: ports/101321 Submitted by: Michael Josic (new maintainer) Approved by: Ryo Okamoto (old maintainer) Revision Changes Path 1.7 +2 -1 ports/net/nepenthes/Makefile 1.1 +27 -0 ports/net/nepenthes/files/patch-modules-vuln-bagle-BagleDialogue.cpp (new) 1.1 +27 -0 ports/net/nepenthes/files/patch-modules-vuln-mydoom-MydoomDialogue.cpp (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 4 14:12:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 676EA16A4DD; Fri, 4 Aug 2006 14:12:47 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7020E43D67; Fri, 4 Aug 2006 14:12:42 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74ECg1k094334; Fri, 4 Aug 2006 14:12:42 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74ECgIf094330; Fri, 4 Aug 2006 14:12:42 GMT (envelope-from rafan) Message-Id: <200608041412.k74ECgIf094330@repoman.freebsd.org> From: Rong-En Fan Date: Fri, 4 Aug 2006 14:12: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/Sather Makefile distinfo pkg-descr pkg-plist ports/lang/Sather/files freebsd-CONFIG freebsd-Makefile freebsd-Platform.module freebsd-header.h patch-Boot::sacomp.code::Makefile patch-Boot_sacomp.code_cgenCGEN1354269066xxxxxxxxx.c patch-Boot_sacomp.code_stringsxx.c patch-Library::System::unix.sa ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Aug 2006 14:12:47 -0000 rafan 2006-08-04 14:12:42 UTC FreeBSD ports repository Modified files: lang/Sather Makefile distinfo pkg-descr Added files: lang/Sather/files patch-Boot_sacomp.code_cgenCGEN1354269066xxxxxxxxx.c patch-Boot_sacomp.code_stringsxx.c patch-System_Platforms_freebsd_header.h Removed files: lang/Sather pkg-plist lang/Sather/files freebsd-CONFIG freebsd-Makefile freebsd-Platform.module freebsd-header.h patch-Boot::sacomp.code::Makefile patch-Library::System::unix.sa patch-Makefile patch-System::Common::CONFIG.proto patch-System::Common::Makefile patch-System::Platforms::X::Platform.module patch-System::Platforms::tcltk::Make.target.inc patch-System::Platforms::unix::header.h patch-debian::bin-wrapper Log: - Update to 1.2.2 - Unbrake on all platforms - Use tk8.4 instead of tk8.3 - Fix bug with abort2 function - Fix installed files's permissions - Use PORTDOCS macro Some notes from maintainer: 1) Due to some GC/Sather bugs we need specific options to compile GC. To achive this i compile GC separately and link it statically. I've not include it in dependencies to not bother user with GC's OPTIONS. 2) Port can be build currently only against non-threaded Tk/Tcl library. Don't know currently how to investigate this since there are no way to find if Tk build with or without threads. Furthermore, tk and tk-threads are mutually exclusive. Linking agains static Tk is bogus... PR: ports/100964 Submitted by: Stanislav Sedov (maintainer) Revision Changes Path 1.37 +134 -43 ports/lang/Sather/Makefile 1.8 +3 -3 ports/lang/Sather/distinfo 1.2 +0 -1 ports/lang/Sather/files/freebsd-CONFIG (dead) 1.2 +0 -7 ports/lang/Sather/files/freebsd-Makefile (dead) 1.2 +0 -5 ports/lang/Sather/files/freebsd-Platform.module (dead) 1.2 +0 -14 ports/lang/Sather/files/freebsd-header.h (dead) 1.2 +0 -12 ports/lang/Sather/files/patch-Boot::sacomp.code::Makefile (dead) 1.1 +20 -0 ports/lang/Sather/files/patch-Boot_sacomp.code_cgenCGEN1354269066xxxxxxxxx.c (new) 1.1 +11 -0 ports/lang/Sather/files/patch-Boot_sacomp.code_stringsxx.c (new) 1.2 +0 -11 ports/lang/Sather/files/patch-Library::System::unix.sa (dead) 1.2 +0 -22 ports/lang/Sather/files/patch-Makefile (dead) 1.2 +0 -34 ports/lang/Sather/files/patch-System::Common::CONFIG.proto (dead) 1.2 +0 -11 ports/lang/Sather/files/patch-System::Common::Makefile (dead) 1.2 +0 -15 ports/lang/Sather/files/patch-System::Platforms::X::Platform.module (dead) 1.2 +0 -7 ports/lang/Sather/files/patch-System::Platforms::tcltk::Make.target.inc (dead) 1.2 +0 -14 ports/lang/Sather/files/patch-System::Platforms::unix::header.h (dead) 1.1 +10 -0 ports/lang/Sather/files/patch-System_Platforms_freebsd_header.h (new) 1.2 +0 -10 ports/lang/Sather/files/patch-debian::bin-wrapper (dead) 1.5 +3 -0 ports/lang/Sather/pkg-descr 1.7 +0 -474 ports/lang/Sather/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Fri Aug 4 14:14:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BCF516A4DF; Fri, 4 Aug 2006 14:14:40 +0000 (UTC) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE07B43D58; Fri, 4 Aug 2006 14:14:39 +0000 (GMT) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74EEdfh095145; Fri, 4 Aug 2006 14:14:39 GMT (envelope-from joel@repoman.freebsd.org) Received: (from joel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74EEdr6095144; Fri, 4 Aug 2006 14:14:39 GMT (envelope-from joel) Message-Id: <200608041414.k74EEdr6095144@repoman.freebsd.org> From: Joel Dahl Date: Fri, 4 Aug 2006 14:14:39 +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/acpi completed.sgml 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: Fri, 04 Aug 2006 14:14:40 -0000 joel 2006-08-04 14:14:39 UTC FreeBSD doc repository Modified files: en/projects/acpi completed.sgml index.sgml Log: Update the ACPI project page. In collaboration with: njl Revision Changes Path 1.5 +107 -1 www/en/projects/acpi/completed.sgml 1.11 +19 -185 www/en/projects/acpi/index.sgml From owner-cvs-all@FreeBSD.ORG Fri Aug 4 14:17:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3142F16A4E2; Fri, 4 Aug 2006 14:17:32 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD26B43D45; Fri, 4 Aug 2006 14:17:31 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74EHVAv095284; Fri, 4 Aug 2006 14:17:31 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74EHVO0095283; Fri, 4 Aug 2006 14:17:31 GMT (envelope-from itetcu) Message-Id: <200608041417.k74EHVO0095283@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Fri, 4 Aug 2006 14:17: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/apcupsd 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, 04 Aug 2006 14:17:32 -0000 itetcu 2006-08-04 14:17:31 UTC FreeBSD ports repository Modified files: sysutils/apcupsd Makefile Log: - remove w/o PTHREADS OPTION since it's not supported upstream anymore. [1] - remove pre-4.x support - change MAINIANER addres to my @FreeBSD.org one - bump PORTREVISION PR: ports/101342 [1] Submitted by: Shane Bell [1] Revision Changes Path 1.46 +6 -15 ports/sysutils/apcupsd/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 14:22:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ABE7E16A4DD; Fri, 4 Aug 2006 14:22:51 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64C1743D53; Fri, 4 Aug 2006 14:22:51 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74EMpQv095752; Fri, 4 Aug 2006 14:22:51 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74EMpaQ095751; Fri, 4 Aug 2006 14:22:51 GMT (envelope-from itetcu) Message-Id: <200608041422.k74EMpaQ095751@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Fri, 4 Aug 2006 14: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/lang/ocaml bsd.ocaml.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, 04 Aug 2006 14:22:51 -0000 itetcu 2006-08-04 14:22:51 UTC FreeBSD ports repository Modified files: lang/ocaml bsd.ocaml.mk Log: - support non-standard prefix - fix some plist issues Submitted by: maintainer (via private email) Revision Changes Path 1.2 +44 -4 ports/lang/ocaml/bsd.ocaml.mk From owner-cvs-all@FreeBSD.ORG Fri Aug 4 14:31:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EDE516A4DD; Fri, 4 Aug 2006 14:31:12 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC14643D45; Fri, 4 Aug 2006 14:31:11 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74EVBVo096164; Fri, 4 Aug 2006 14:31:11 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74EVB0M096163; Fri, 4 Aug 2006 14:31:11 GMT (envelope-from acm) Message-Id: <200608041431.k74EVB0M096163@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Fri, 4 Aug 2006 14:31: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/vdrift-data 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, 04 Aug 2006 14:31:12 -0000 acm 2006-08-04 14:31:11 UTC FreeBSD ports repository Modified files: games/vdrift-data Makefile Log: - Fixed problem on creation of PLIST file Reported by: pointyhat via erwin Approved by: garga (mentor) Revision Changes Path 1.4 +2 -0 ports/games/vdrift-data/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 14:38:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C53B616A4DE; Fri, 4 Aug 2006 14:38:03 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90AE043D55; Fri, 4 Aug 2006 14:38:03 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74Ec3KH096495; Fri, 4 Aug 2006 14:38:03 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74Ec3Wr096494; Fri, 4 Aug 2006 14:38:03 GMT (envelope-from acm) Message-Id: <200608041438.k74Ec3Wr096494@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Fri, 4 Aug 2006 14: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/ftp Makefile ports/ftp/linux-curl Makefile distinfo.i386 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Aug 2006 14:38:03 -0000 acm 2006-08-04 14:38:03 UTC FreeBSD ports repository Modified files: ftp Makefile Added files: ftp/linux-curl Makefile distinfo.i386 Log: - New port: ftp/linux-curl curl is a client to get documents/files from servers, using any of the supported protocols. The command is designed to work without user interaction or any kind of interactivity. curl offers a busload of useful tricks like proxy support, user authentication, ftp upload, HTTP post, SSL (https:) connections, file transfer resume and more. (Linux version) WWW: http://curl.haxx.se/ Approved by: garga (mentor) Revision Changes Path 1.118 +1 -0 ports/ftp/Makefile 1.1 +24 -0 ports/ftp/linux-curl/Makefile (new) 1.1 +6 -0 ports/ftp/linux-curl/distinfo.i386 (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 4 14:38:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: by hub.freebsd.org (Postfix, from userid 916) id 9A30316A4E5; Fri, 4 Aug 2006 14:38:25 +0000 (UTC) Date: Fri, 4 Aug 2006 14:38:25 +0000 From: Prafulla Deuskar To: Gleb Smirnoff Message-ID: <20060804143825.GA8797@hub.freebsd.org> References: <200608031905.k73J55D2061870@repoman.freebsd.org> <20060804095414.GU96644@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060804095414.GU96644@FreeBSD.org> User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 6.1-STABLE on an i386 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/em if_em.c 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, 04 Aug 2006 14:38:25 -0000 Gleb Smirnoff [glebius@FreeBSD.org] wrote: > Prafulla, > > On Thu, Aug 03, 2006 at 07:05:05PM +0000, Prafulla Deuskar wrote: > P> pdeuskar 2006-08-03 19:05:05 UTC > P> > P> FreeBSD src repository > P> > P> Modified files: > P> sys/dev/em if_em.c if_em.h > P> Log: > P> Revert back changes to made in rev 1.109 of if_em.c which were unnecessary. > P> This makes it easier for us to get the changes into -current and to -stable quickly. > > Can you please confirm that this was a mechanical substitution like this: > > s/sc/adapter/g > s/em_softc/adapter/g > > and no more additional changes? If this is true, then I hope that we > (FreeBSD and Intel) have finally came to a common codebase. This is good. :) > I can stand the long unusual name for driver softc with no problems. > > I'm only a bit disappointed by the fact, that I haven't received a single > email about these plans. You were in the void for a long time, and > then began your work with a commit, w/o informing people who were > maintaining driver while the vendor maintanance was on a hiatus. > Yes - it was a mechanical substitution. And thanks for taking care of 6.0.5 release. Thanks, Prafulla From owner-cvs-all@FreeBSD.ORG Fri Aug 4 14:40:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24E7E16A4E1; Fri, 4 Aug 2006 14:40:51 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C57B743D78; Fri, 4 Aug 2006 14:40:43 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74Eehh9096685; Fri, 4 Aug 2006 14:40:43 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74Eehgf096684; Fri, 4 Aug 2006 14:40:43 GMT (envelope-from acm) Message-Id: <200608041440.k74Eehgf096684@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Fri, 4 Aug 2006 14:40: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: 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, 04 Aug 2006 14:40:51 -0000 acm 2006-08-04 14:40:42 UTC FreeBSD ports repository Modified files: . modules Log: linux-curl --> ports/ftp/linux-curl Revision Changes Path 1.15891 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Aug 4 14:43:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.ORG Delivered-To: cvs-all@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCD0116A4E2; Fri, 4 Aug 2006 14:43:46 +0000 (UTC) (envelope-from wb@freebie.xs4all.nl) Received: from smtp-vbr8.xs4all.nl (smtp-vbr8.xs4all.nl [194.109.24.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id E288843D5F; Fri, 4 Aug 2006 14:43:37 +0000 (GMT) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by smtp-vbr8.xs4all.nl (8.13.6/8.13.6) with ESMTP id k74EhCeO015662; Fri, 4 Aug 2006 16:43:13 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.13.6/8.13.3) with ESMTP id k74EhCKW007221; Fri, 4 Aug 2006 16:43:12 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: (from wb@localhost) by freebie.xs4all.nl (8.13.6/8.13.6/Submit) id k74EhCjd007220; Fri, 4 Aug 2006 16:43:12 +0200 (CEST) (envelope-from wb) Date: Fri, 4 Aug 2006 16:43:11 +0200 From: Wilko Bulte To: Colin Percival Message-ID: <20060804144311.GA7175@freebie.xs4all.nl> References: <200608031905.k73J55D2061870@repoman.freebsd.org> <44D29FB6.9090209@freebsd.org> <20060804012514.GA63379@what-creek.com> <20060804071909.GS97316@comp.chem.msu.su> <44D2FBF5.1010402@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <44D2FBF5.1010402@freebsd.org> User-Agent: Mutt/1.5.11 X-Virus-Scanned: by XS4ALL Virus Scanner Cc: Yar Tikhiy , src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-src@FreeBSD.ORG Subject: Re: cvs commit: src/sys/dev/em if_em.c 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, 04 Aug 2006 14:43:46 -0000 On Fri, Aug 04, 2006 at 12:49:09AM -0700, Colin Percival wrote.. > Yar Tikhiy wrote: > > Changing style(9) shouldn't alter the binary code produced, and > > this can be 100% verified using cmp(1), diff(1), cksum(1), or md5(1). > > With md5(1), you can only 99.999999999999999994579% verify it. :-) Is that with or without HT switched on? -- Wilko Bulte wilko@FreeBSD.org From owner-cvs-all@FreeBSD.ORG Fri Aug 4 14:47:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CB7416A4DF; Fri, 4 Aug 2006 14:47:26 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA9E543D55; Fri, 4 Aug 2006 14:47:25 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74ElPjZ097095; Fri, 4 Aug 2006 14:47:25 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74ElP25097094; Fri, 4 Aug 2006 14:47:25 GMT (envelope-from acm) Message-Id: <200608041447.k74ElP25097094@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Fri, 4 Aug 2006 14:47: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 Makefile ports/sysutils/linux-e2fsprogs Makefile distinfo.i386 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Aug 2006 14:47:26 -0000 acm 2006-08-04 14:47:25 UTC FreeBSD ports repository Modified files: sysutils Makefile Added files: sysutils/linux-e2fsprogs Makefile distinfo.i386 Log: - Restored sysutils/linux-e2fsprogs Approved by: garga (mentor) Revision Changes Path 1.817 +1 -0 ports/sysutils/Makefile 1.5 +24 -0 ports/sysutils/linux-e2fsprogs/Makefile (new) 1.4 +6 -0 ports/sysutils/linux-e2fsprogs/distinfo.i386 (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 4 14:50:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 621D316A4DA; Fri, 4 Aug 2006 14:50:18 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C71E43D45; Fri, 4 Aug 2006 14:50:18 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74EoHbW097232; Fri, 4 Aug 2006 14:50:17 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74EoHaD097231; Fri, 4 Aug 2006 14:50:17 GMT (envelope-from acm) Message-Id: <200608041450.k74EoHaD097231@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Fri, 4 Aug 2006 14:50: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: 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, 04 Aug 2006 14:50:18 -0000 acm 2006-08-04 14:50:17 UTC FreeBSD ports repository Modified files: . modules Log: linux-e2fsprogs --> ports/sysutils/linux-e2fsprogs Revision Changes Path 1.15892 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Aug 4 14:57:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBAA016A4DD; Fri, 4 Aug 2006 14:57:47 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9547943D45; Fri, 4 Aug 2006 14:57:47 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74Evlbu097618; Fri, 4 Aug 2006 14:57:47 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74EvlN1097617; Fri, 4 Aug 2006 14:57:47 GMT (envelope-from acm) Message-Id: <200608041457.k74EvlN1097617@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Fri, 4 Aug 2006 14: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 MOVED X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Aug 2006 14:57:48 -0000 acm 2006-08-04 14:57:47 UTC FreeBSD ports repository Modified files: . MOVED Log: - sysutils/linux-e2fsprogs was restored. It's a dependency of games/linux-warsow Approved by: garga (mentor) Revision Changes Path 1.1108 +1 -2 ports/MOVED From owner-cvs-all@FreeBSD.ORG Fri Aug 4 15:02:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D289916A4DE; Fri, 4 Aug 2006 15:02:07 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89DDE43D46; Fri, 4 Aug 2006 15:02:07 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74F27lX097953; Fri, 4 Aug 2006 15:02:07 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74F27em097952; Fri, 4 Aug 2006 15:02:07 GMT (envelope-from thierry) Message-Id: <200608041502.k74F27em097952@repoman.freebsd.org> From: Thierry Thomas Date: Fri, 4 Aug 2006 15:02: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/mpich2 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, 04 Aug 2006 15:02:07 -0000 thierry 2006-08-04 15:02:06 UTC FreeBSD ports repository Modified files: net/mpich2 Makefile distinfo pkg-plist Log: Upgrade to 1.0.4. Changelog at . Revision Changes Path 1.45 +26 -46 ports/net/mpich2/Makefile 1.26 +3 -3 ports/net/mpich2/distinfo 1.24 +13 -59 ports/net/mpich2/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 4 15:02:57 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD45016A4E1; Fri, 4 Aug 2006 15:02:57 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80C0443D53; Fri, 4 Aug 2006 15:02:57 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74F2vxb098069; Fri, 4 Aug 2006 15:02:57 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74F2vYh098068; Fri, 4 Aug 2006 15:02:57 GMT (envelope-from itetcu) Message-Id: <200608041502.k74F2vYh098068@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Fri, 4 Aug 2006 15:02: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/devel Makefile ports/devel/ocaml-camljava 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, 04 Aug 2006 15:02:57 -0000 itetcu 2006-08-04 15:02:57 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/ocaml-camljava Makefile distinfo pkg-descr pkg-plist Log: This is a very preliminary release of CamlJava, an OCaml/Java interface based on the following schema: Caml/C interface JNI (Java Native Interface) Caml <------------------> C <-----------------------------> Java Currently, CamlJava provides a low-level, weakly-typed OCaml interface very similar to the JNI. Java object references are mapped to an abstract type, and various JNI-like operations are provided to allow Java method invocation, field access, and more. A basic callback facility (allowing Java code to invoke methods on Caml objects) is also provided, although some stub Java code must be written by hand. In the future, a higher-level, strongly-typed interface will be provided, whereas Java classes are mapped directly to Caml classes. This raises fairly delicate type mapping issues, though, so don't hold your breath. WWW: http://caml.inria.fr/ PR: ports/101147 Submitted by: Stanislav Sedov Revision Changes Path 1.2393 +1 -0 ports/devel/Makefile 1.1 +49 -0 ports/devel/ocaml-camljava/Makefile (new) 1.1 +3 -0 ports/devel/ocaml-camljava/distinfo (new) 1.1 +19 -0 ports/devel/ocaml-camljava/pkg-descr (new) 1.1 +8 -0 ports/devel/ocaml-camljava/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 4 15:03:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B2A316A4E8; Fri, 4 Aug 2006 15:03:31 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 244B243D46; Fri, 4 Aug 2006 15:03:31 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74F3VVD099369; Fri, 4 Aug 2006 15:03:31 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74F3Uxo099368; Fri, 4 Aug 2006 15:03:30 GMT (envelope-from itetcu) Message-Id: <200608041503.k74F3Uxo099368@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Fri, 4 Aug 2006 15:03: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: Fri, 04 Aug 2006 15:03:31 -0000 itetcu 2006-08-04 15:03:30 UTC FreeBSD ports repository Modified files: . modules Log: ocaml-camljava --> ports/devel/ocaml-camljava Revision Changes Path 1.15893 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Aug 4 15:03:57 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA13416A4DE; Fri, 4 Aug 2006 15:03:57 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B13943D70; Fri, 4 Aug 2006 15:03:56 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74F3u5w099444; Fri, 4 Aug 2006 15:03:56 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74F3ue8099443; Fri, 4 Aug 2006 15:03:56 GMT (envelope-from acm) Message-Id: <200608041503.k74F3ue8099443@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Fri, 4 Aug 2006 15: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/security Makefile ports/security/linux-krb5-libs Makefile distinfo.i386 ports/security/linux-openssl Makefile distinfo.i386 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, 04 Aug 2006 15:03:58 -0000 acm 2006-08-04 15:03:55 UTC FreeBSD ports repository Modified files: security Makefile Added files: security/linux-krb5-libs Makefile distinfo.i386 security/linux-openssl Makefile distinfo.i386 pkg-plist Log: - New port: security/linux-krb5-libs Kerberos V5 is an authentication system developed at MIT. (Linux version) WWW: http://web.mit.edu/kerberos/ - New port: security/linux-openssl The OpenSSL Project is a collaborative effort to develop a robust, commercial-grade, full-featured, and Open Source toolkit implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols with full-strength cryptography world-wide. The project is managed by a worldwide community of volunteers that use the Internet to communicate, plan, and develop the OpenSSL tookit and its related documentation. OpenSSL is based on the excellent SSLeay library developed by Eric A. Young and Tim J. Hudson. The OpenSSL toolkit is licensed under an Apache-style licence, which basically means that you are free to get and use it for commercial and non-commercial purposes subject to some simple license conditions. (Linux version) WWW: http://www.openssl.org/ Approved by: garga (mentor) Revision Changes Path 1.800 +2 -0 ports/security/Makefile 1.1 +23 -0 ports/security/linux-krb5-libs/Makefile (new) 1.1 +6 -0 ports/security/linux-krb5-libs/distinfo.i386 (new) 1.1 +22 -0 ports/security/linux-openssl/Makefile (new) 1.1 +6 -0 ports/security/linux-openssl/distinfo.i386 (new) 1.1 +78 -0 ports/security/linux-openssl/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 4 15:09:24 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3EF8316A4DA; Fri, 4 Aug 2006 15:09:24 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CD3E43D46; Fri, 4 Aug 2006 15:09:23 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74F9Npf099732; Fri, 4 Aug 2006 15:09:23 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74F9NMt099731; Fri, 4 Aug 2006 15:09:23 GMT (envelope-from acm) Message-Id: <200608041509.k74F9NMt099731@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Fri, 4 Aug 2006 15: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: Fri, 04 Aug 2006 15:09:24 -0000 acm 2006-08-04 15:09:23 UTC FreeBSD ports repository Modified files: . modules Log: linux-krb5-libs --> ports/security/linux-krb5-libs Revision Changes Path 1.15894 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Aug 4 15:10:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89BFE16A4DA; Fri, 4 Aug 2006 15:10:55 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1480343D5F; Fri, 4 Aug 2006 15:10:55 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74FAsuc099912; Fri, 4 Aug 2006 15:10:54 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74FAs5l099911; Fri, 4 Aug 2006 15:10:54 GMT (envelope-from acm) Message-Id: <200608041510.k74FAs5l099911@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Fri, 4 Aug 2006 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: 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, 04 Aug 2006 15:10:55 -0000 acm 2006-08-04 15:10:54 UTC FreeBSD ports repository Modified files: . modules Log: linux-openssl --> ports/security/linux-openssl Revision Changes Path 1.15895 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Aug 4 15:13:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 15BFA16A4E5; Fri, 4 Aug 2006 15:13:20 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from server.t-hosting.hu (server.t-hosting.hu [217.20.133.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id E23D143D45; Fri, 4 Aug 2006 15:13:13 +0000 (GMT) (envelope-from gabor@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by server.t-hosting.hu (Postfix) with ESMTP id F370399B797; Fri, 4 Aug 2006 17:13:11 +0200 (CEST) X-Virus-Scanned: amavisd-new at t-hosting.hu Received: from server.t-hosting.hu ([127.0.0.1]) by localhost (server.t-hosting.hu [127.0.0.1]) (amavisd-new, port 10024) with LMTP id XRmVeJ3LkFtH; Fri, 4 Aug 2006 17:13:06 +0200 (CEST) Received: from [192.168.2.186] (catv-50635cb6.catv.broadband.hu [80.99.92.182]) by server.t-hosting.hu (Postfix) with ESMTP id 585AB99B753; Fri, 4 Aug 2006 17:13:06 +0200 (CEST) Message-ID: <44D363F8.7070503@FreeBSD.org> Date: Fri, 04 Aug 2006 17:12:56 +0200 From: =?ISO-8859-1?Q?G=E1bor_K=F6vesd=E1n?= User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: vd@FreeBSD.org References: <200608041236.k74CaVZ9076872@repoman.freebsd.org> <20060804131330.GA67531@qlovarnika.bg.datamax> In-Reply-To: <20060804131330.GA67531@qlovarnika.bg.datamax> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-ports@FreeBSD.org, Erwin Lansing , cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports CHANGES X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Aug 2006 15:13:20 -0000 Vasil Dimov wrote: > On Fri, Aug 04, 2006 at 12:36:30PM +0000, Erwin Lansing wrote: > >> erwin 2006-08-04 12:36:30 UTC >> >> FreeBSD ports repository >> >> Modified files: >> . CHANGES >> Log: >> Add a note for the latest patchset which adds DESTDIR support. >> >> Submitted by: gabor >> Sponsored by: Google Summer of Code 2006 >> >> Revision Changes Path >> 1.56 +36 -3 ports/CHANGES >> > > Thanks! > > Two things: > > 1: > + * TARGETDIR variable has been added for referencing ${DSTDIR}${PREFIX}. > ^^^ > > 2: > + * OSVERSION is now determined from the userland, not from the kernel. > + Cross-compiling between releases is still not supported, but this > + behavior is more correct for jails with different kernel version as well. > > What is this "jails with different kernel version"? Sounds to me like it > is possible to run another kernel inside the jail. > > I meant the case when you run a jail with a different OSVERSION than the kernel. E.g. a RELENG_5 jail on a RELENG_6 kernel. This is not so common, but can happen. The solution I applied is taken from the Tinderbox code. That hack can now be removed from Tinderbox, as it is the default. -- Cheers, Gabor From owner-cvs-all@FreeBSD.ORG Fri Aug 4 15:14:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 213D916A4DD; Fri, 4 Aug 2006 15:14:25 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (cell.sick.ru [217.72.144.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6115443D45; Fri, 4 Aug 2006 15:14:24 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (glebius@localhost [127.0.0.1]) by cell.sick.ru (8.13.4/8.13.3) with ESMTP id k74FEMSl036879 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 4 Aug 2006 19:14:23 +0400 (MSD) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.sick.ru (8.13.4/8.13.1/Submit) id k74FEMR6036878; Fri, 4 Aug 2006 19:14:22 +0400 (MSD) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.sick.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Fri, 4 Aug 2006 19:14:22 +0400 From: Gleb Smirnoff To: Prafulla Deuskar Message-ID: <20060804151422.GE96644@FreeBSD.org> References: <200608031905.k73J55D2061870@repoman.freebsd.org> <20060804095414.GU96644@FreeBSD.org> <20060804143825.GA8797@hub.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <20060804143825.GA8797@hub.freebsd.org> User-Agent: Mutt/1.5.6i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/em if_em.c 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, 04 Aug 2006 15:14:25 -0000 On Fri, Aug 04, 2006 at 02:38:25PM +0000, Prafulla Deuskar wrote: P> > P> Revert back changes to made in rev 1.109 of if_em.c which were unnecessary. P> > P> This makes it easier for us to get the changes into -current and to -stable quickly. P> > P> > Can you please confirm that this was a mechanical substitution like this: P> > P> > s/sc/adapter/g P> > s/em_softc/adapter/g P> > P> > and no more additional changes? If this is true, then I hope that we P> > (FreeBSD and Intel) have finally came to a common codebase. This is good. :) P> > I can stand the long unusual name for driver softc with no problems. P> P> Yes - it was a mechanical substitution. P> And thanks for taking care of 6.0.5 release. Thanks. Any objections about merging the HEAD to RELENG_6 soon? I'm going to wait for about a week to see whether any problems with 6.0.5 or not. Also I need to look at new defects that Coverity has found in if_em_hw.c after 6.0.5 import. -- Totus tuus, Glebius. GLEBIUS-RIPN GLEB-RIPE From owner-cvs-all@FreeBSD.ORG Fri Aug 4 15:15:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F2EDB16A4DF; Fri, 4 Aug 2006 15:15:11 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (cell.sick.ru [217.72.144.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C3F943D49; Fri, 4 Aug 2006 15:15:10 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (glebius@localhost [127.0.0.1]) by cell.sick.ru (8.13.4/8.13.3) with ESMTP id k74FF9Cd036903 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 4 Aug 2006 19:15:09 +0400 (MSD) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.sick.ru (8.13.4/8.13.1/Submit) id k74FF9G5036902; Fri, 4 Aug 2006 19:15:09 +0400 (MSD) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.sick.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Fri, 4 Aug 2006 19:15:09 +0400 From: Gleb Smirnoff To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20060804151509.GF96644@FreeBSD.org> References: <200608041336.k74DaSRI089155@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200608041336.k74DaSRI089155@repoman.freebsd.org> User-Agent: Mutt/1.5.6i Cc: Subject: Re: cvs commit: src/sys/netgraph ng_ether.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, 04 Aug 2006 15:15:12 -0000 On Fri, Aug 04, 2006 at 01:36:28PM +0000, Gleb Smirnoff wrote: T> glebius 2006-08-04 13:36:28 UTC T> T> FreeBSD src repository T> T> Modified files: T> sys/netgraph ng_ether.c T> Log: T> Turn off by default "feature" that overwrites MAC address T> on output frames. T> T> Many people were confused with not working CARP, ng_bridge(4) T> and other subsystems, because ng_ether(4) overwritten source T> MAC address. About a year ago or more I have discussed this change with Yar and Julian. AFAIR, there were no objections. -- Totus tuus, Glebius. GLEBIUS-RIPN GLEB-RIPE From owner-cvs-all@FreeBSD.ORG Fri Aug 4 15:16:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A905316A4DA; Fri, 4 Aug 2006 15:16:55 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70EF543D45; Fri, 4 Aug 2006 15:16:55 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74FGtca001212; Fri, 4 Aug 2006 15:16:55 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74FGtMc001211; Fri, 4 Aug 2006 15:16:55 GMT (envelope-from acm) Message-Id: <200608041516.k74FGtMc001211@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Fri, 4 Aug 2006 15:16: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/games Makefile ports/games/warsow-data Makefile distinfo pkg-deinstall pkg-descr 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: Fri, 04 Aug 2006 15:16:55 -0000 acm 2006-08-04 15:16:55 UTC FreeBSD ports repository Modified files: games Makefile Added files: games/warsow-data Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-plist Log: - New port: games/warsow-data The warsow data files. This port install the data files needed to run warsow a full free multiplayer first person shooter with cartoon design, using qfusion (a cool improvement to the Quake 2 engine) WWW: http://www.warsow.net/ Approved by: garga (mentor) Revision Changes Path 1.1023 +1 -0 ports/games/Makefile 1.1 +55 -0 ports/games/warsow-data/Makefile (new) 1.1 +3 -0 ports/games/warsow-data/distinfo (new) 1.1 +16 -0 ports/games/warsow-data/pkg-deinstall (new) 1.1 +7 -0 ports/games/warsow-data/pkg-descr (new) 1.1 +11 -0 ports/games/warsow-data/pkg-install (new) 1.1 +122 -0 ports/games/warsow-data/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 4 15:18:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2ADF216A4DD; Fri, 4 Aug 2006 15:18:46 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D6A8743D55; Fri, 4 Aug 2006 15:18:45 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74FIj81001326; Fri, 4 Aug 2006 15:18:45 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74FIj9t001325; Fri, 4 Aug 2006 15:18:45 GMT (envelope-from acm) Message-Id: <200608041518.k74FIj9t001325@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Fri, 4 Aug 2006 15:18: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: 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, 04 Aug 2006 15:18:46 -0000 acm 2006-08-04 15:18:45 UTC FreeBSD ports repository Modified files: . modules Log: warsow-data --> ports/games/warsow-data Revision Changes Path 1.15896 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Aug 4 15:19:09 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17E0516A4DA; Fri, 4 Aug 2006 15:19:09 +0000 (UTC) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7685243D6D; Fri, 4 Aug 2006 15:19:08 +0000 (GMT) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74FJ8CO001371; Fri, 4 Aug 2006 15:19:08 GMT (envelope-from alepulver@repoman.freebsd.org) Received: (from alepulver@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74FJ8J8001370; Fri, 4 Aug 2006 15:19:08 GMT (envelope-from alepulver) Message-Id: <200608041519.k74FJ8J8001370@repoman.freebsd.org> From: Alejandro Pulver Date: Fri, 4 Aug 2006 15:19: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/games/quake2-data 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, 04 Aug 2006 15:19:09 -0000 alepulver 2006-08-04 15:19:08 UTC FreeBSD ports repository Modified files: games/quake2-data Makefile Log: - Fix wrong backslash breaking the MANUAL option. Revision Changes Path 1.11 +1 -1 ports/games/quake2-data/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 15:19:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7EB5D16A4DD; Fri, 4 Aug 2006 15:19:13 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D69DF43D5D; Fri, 4 Aug 2006 15:19:12 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74FJCkG001421; Fri, 4 Aug 2006 15:19:12 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74FJCrI001420; Fri, 4 Aug 2006 15:19:12 GMT (envelope-from itetcu) Message-Id: <200608041519.k74FJCrI001420@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Fri, 4 Aug 2006 15:19: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/ocaml-camomile Makefile distinfo pkg-install ports/devel/ocaml-camomile/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: Fri, 04 Aug 2006 15:19:13 -0000 itetcu 2006-08-04 15:19:12 UTC FreeBSD ports repository Modified files: devel/ocaml-camomile Makefile distinfo devel/ocaml-camomile/files patch-Makefile.in Removed files: devel/ocaml-camomile pkg-install Log: - Use new OCaml framework - Honour permissions (change cp->install) - Update to 0.6.6 - Pass maintainership to submitter PR: ports/101169 Submitted by: Stanislav Sedov Revision Changes Path 1.12 +14 -18 ports/devel/ocaml-camomile/Makefile 1.6 +3 -3 ports/devel/ocaml-camomile/distinfo 1.2 +3 -12 ports/devel/ocaml-camomile/files/patch-Makefile.in 1.2 +0 -9 ports/devel/ocaml-camomile/pkg-install (dead) From owner-cvs-all@FreeBSD.ORG Fri Aug 4 15:21:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06CEB16A4E1; Fri, 4 Aug 2006 15:21:03 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BF9D43D5A; Fri, 4 Aug 2006 15:21:02 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74FL2EA001682; Fri, 4 Aug 2006 15:21:02 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74FL2ql001681; Fri, 4 Aug 2006 15:21:02 GMT (envelope-from itetcu) Message-Id: <200608041521.k74FL2ql001681@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Fri, 4 Aug 2006 15:21: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 Makefile ports/devel/ocaml-camomile-examples 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, 04 Aug 2006 15:21:03 -0000 itetcu 2006-08-04 15:21:02 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/ocaml-camomile-examples Makefile distinfo pkg-descr pkg-plist Log: Various examples for the Objective Caml Camomile library. WWW: http://camomile.sourceforge.net/ PR: ports/101170 Submitted by: Stanislav Sedov Revision Changes Path 1.2394 +1 -0 ports/devel/Makefile 1.1 +33 -0 ports/devel/ocaml-camomile-examples/Makefile (new) 1.1 +3 -0 ports/devel/ocaml-camomile-examples/distinfo (new) 1.1 +3 -0 ports/devel/ocaml-camomile-examples/pkg-descr (new) 1.1 +36 -0 ports/devel/ocaml-camomile-examples/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 4 15:21:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACD2516A4DD; Fri, 4 Aug 2006 15:21:30 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C77843D46; Fri, 4 Aug 2006 15:21:29 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74FLTDp001743; Fri, 4 Aug 2006 15:21:29 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74FLTIW001742; Fri, 4 Aug 2006 15:21:29 GMT (envelope-from itetcu) Message-Id: <200608041521.k74FLTIW001742@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Fri, 4 Aug 2006 15:21: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: 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, 04 Aug 2006 15:21:30 -0000 itetcu 2006-08-04 15:21:29 UTC FreeBSD ports repository Modified files: . modules Log: ocaml-camomile-examples --> ports/devel/ocaml-camomile-examples Revision Changes Path 1.15897 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Aug 4 15:24:57 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8A1D16A4DA; Fri, 4 Aug 2006 15:24:57 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57B4343D46; Fri, 4 Aug 2006 15:24:57 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74FOvoT001934; Fri, 4 Aug 2006 15:24:57 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74FOv1D001933; Fri, 4 Aug 2006 15:24:57 GMT (envelope-from acm) Message-Id: <200608041524.k74FOv1D001933@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Fri, 4 Aug 2006 15:24: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/games/linux-warsow Makefile distinfo pkg-deinstall pkg-install pkg-plist ports/games/linux-warsow/files warsow-wrapper.in wsw_server-wrapper.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, 04 Aug 2006 15:24:57 -0000 acm 2006-08-04 15:24:57 UTC FreeBSD ports repository Modified files: games/linux-warsow Makefile distinfo games/linux-warsow/files warsow-wrapper.in wsw_server-wrapper.in Added files: games/linux-warsow pkg-plist Removed files: games/linux-warsow pkg-deinstall pkg-install Log: - Update to 0.12 - Integrated with warsow-data - Added CLIENT, SERVER and NVIDIA options - Added PLIST file. Approved by: garga (mentor) Revision Changes Path 1.3 +72 -47 ports/games/linux-warsow/Makefile 1.2 +3 -3 ports/games/linux-warsow/distinfo 1.2 +1 -1 ports/games/linux-warsow/files/warsow-wrapper.in 1.2 +1 -1 ports/games/linux-warsow/files/wsw_server-wrapper.in 1.2 +0 -16 ports/games/linux-warsow/pkg-deinstall (dead) 1.2 +0 -11 ports/games/linux-warsow/pkg-install (dead) 1.1 +11 -0 ports/games/linux-warsow/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 4 15:36:05 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E82716A65A; Fri, 4 Aug 2006 15:36:05 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6044E43D49; Fri, 4 Aug 2006 15:36:04 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k74FZnG1003112; Fri, 4 Aug 2006 11:35:51 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Yar Tikhiy Date: Fri, 4 Aug 2006 11:03:05 -0400 User-Agent: KMail/1.9.1 References: <200608031905.k73J55D2061870@repoman.freebsd.org> <20060804072323.GC89735@wombat.fafoe.narf.at> <20060804074657.GT97316@comp.chem.msu.su> In-Reply-To: <20060804074657.GT97316@comp.chem.msu.su> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608041103.06045.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]); Fri, 04 Aug 2006 11:35:51 -0400 (EDT) X-Virus-Scanned: ClamAV version 0.87.1, clamav-milter version 0.87 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.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on server.baldwin.cx Cc: cvs-src@freebsd.org, Stefan Farfeleder , pdeuskar@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/em if_em.c 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, 04 Aug 2006 15:36:05 -0000 On Friday 04 August 2006 03:46, Yar Tikhiy wrote: > On Fri, Aug 04, 2006 at 09:23:23AM +0200, Stefan Farfeleder wrote: > > On Fri, Aug 04, 2006 at 11:19:09AM +0400, Yar Tikhiy wrote: > > > > > > As a general remark, it is a very good idea to keep large style(9) > > > sweeps separate from actual code changes even if they are tiny. > > > Changing style(9) shouldn't alter the binary code produced, and > > > this can be 100% verified using cmp(1), diff(1), cksum(1), or md5(1). > > > Of course, changing line numbers will affect debug info, but the > > > latter can be strip(1)'ed. In the case under discussion, I'd compare > > > if_em.o with its former version to make sure no code changed. > > > > It will produce different code if __LINE__ is used. > > Yeah, it's a thing to watch out for. As are __TIME__ and __DATE__. > Fortunately, they are not widely used in src/, AFAIK. If you have INVARIANTS on then every mtx_lock/unlock will include __LINE__ and __FILE__. -- John Baldwin From owner-cvs-all@FreeBSD.ORG Fri Aug 4 15:36:15 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3EC4116A505; Fri, 4 Aug 2006 15:36:09 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id E884143D46; Fri, 4 Aug 2006 15:36:08 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k74FZnG0003112; Fri, 4 Aug 2006 11:35:49 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Yar Tikhiy Date: Fri, 4 Aug 2006 11:01:54 -0400 User-Agent: KMail/1.9.1 References: <200608030959.k739x9N6007207@repoman.freebsd.org> <200608031458.01134.jhb@freebsd.org> <20060804070348.GR97316@comp.chem.msu.su> In-Reply-To: <20060804070348.GR97316@comp.chem.msu.su> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608041101.55924.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]); Fri, 04 Aug 2006 11:35:50 -0400 (EDT) X-Virus-Scanned: ClamAV version 0.87.1, clamav-milter version 0.87 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.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on server.baldwin.cx Cc: Sam Leffler , src-committers@freebsd.org, cvs-all@freebsd.org, cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/net if_vlan.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, 04 Aug 2006 15:36:15 -0000 On Friday 04 August 2006 03:03, Yar Tikhiy wrote: > On Thu, Aug 03, 2006 at 02:58:00PM -0400, John Baldwin wrote: > > On Thursday 03 August 2006 14:08, Yar Tikhiy wrote: > > > On Thu, Aug 03, 2006 at 10:11:11AM -0700, Sam Leffler wrote: > > > > Yar Tikhiy wrote: > > > > > yar 2006-08-03 09:59:09 UTC > > > > > > > > > > FreeBSD src repository > > > > > > > > > > Modified files: > > > > > sys/net if_vlan.c > > > > > Log: > > > > > Should vlan_input() ever be called with ifp pointing to a non-Ethernet > > > > > interface, do not just assign -1 to tag because it breaks the logic of > > > > > the code to follow. The better way is to handle this case as an > > unsupported > > > > > protocol and return unless INVARIANTS is in effect and we can panic. > > > > > Panic is good there because the scenario can happen only because of a > > > > > coding error elsewhere. > > > > > > > > > > We also should show the interface name in the panic message for easier > > > > > debugging of the problem, should it ever emerge. > > > > > > > > Introducing a panic in a place where you can trivially recover is bad > > > > regardless of why you got there. Many people run production systems > > > > with INVARIANTS turned on. Is it now possible to send a "packet of > > > > death" by exploiting this code path? > > > > > > No nastygram can ever achieve this; only FreeBSD commiters possess > > > the ability to :-) > > > > > > The panic can never be reached unless one manages to attach a vlan > > > interface to a non-Ethernet physical interface in advance, which > > > is totally prohibited by the code at the beginning of vlan_config(); > > > and vlan_config() is the only way to attach a vlan interface to a > > > physical interface. > > > > > > I.e., it will take a developer breaking the logic in /sys/net to > > > make the code path expoloitable. > > > > > > OTOH, you are right that we can at least attempt to recover from > > > the situation. Perhaps it's time to introduce a common macro or > > > function that emits a message on the console and then just calls > > > kdb_backtrace() instead of dumping core and halting the system? > > > So users will be able to post the stack traces to the lists and > > > thus help to spot the possible bugs w/o having to go through panics. > > > I'm unsure if sticking raw kdb_backtrace() calls in such places > > > is a good idea, so I'm suggesting a wrapper function or macro. > > > It is to be used in "can absolutely never happen" cases that are > > > not fatal, like the one under discussion. > > > > kdb_backtrace() is the wrapper function around other internals. :) > > Of course, we can always grep /sys for its usage later ;-) > > Just noticed that many calls to kdb_backtrace() are under "#ifdef > KDB" while subr_kdb.c is marked as standard in /sys/conf/files and > the function itself is always available (yet can do nothing.) > > Should calls to kdb_backtrace() be put under "#ifdef KDB"? If they > should, it can justify introducing the combined printf+trace function. If kdb_backtrace() is always present, then the calls probably shouldn't be under the #ifdef. -- John Baldwin From owner-cvs-all@FreeBSD.ORG Fri Aug 4 15:39:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BFB7816A4DE; Fri, 4 Aug 2006 15:39:00 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1590A43DC2; Fri, 4 Aug 2006 15:38:31 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74FcU3I002616; Fri, 4 Aug 2006 15:38:30 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74FcUkX002615; Fri, 4 Aug 2006 15:38:30 GMT (envelope-from rafan) Message-Id: <200608041538.k74FcUkX002615@repoman.freebsd.org> From: Rong-En Fan Date: Fri, 4 Aug 2006 15:38: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 Makefile ports/www/p5-Net-Flickr-RDF 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, 04 Aug 2006 15:39:00 -0000 rafan 2006-08-04 15:38:29 UTC FreeBSD ports repository Modified files: www Makefile Added files: www/p5-Net-Flickr-RDF Makefile distinfo pkg-descr pkg-plist Log: Add p5-Net-Flickr-RDF 1.8, describe Flickr photos as RDF. PR: ports/101026 Submitted by: Tsung-Han Yeh Revision Changes Path 1.1539 +1 -0 ports/www/Makefile 1.1 +32 -0 ports/www/p5-Net-Flickr-RDF/Makefile (new) 1.1 +3 -0 ports/www/p5-Net-Flickr-RDF/distinfo (new) 1.1 +4 -0 ports/www/p5-Net-Flickr-RDF/pkg-descr (new) 1.1 +3 -0 ports/www/p5-Net-Flickr-RDF/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 4 15:39:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A381216A55A; Fri, 4 Aug 2006 15:39:05 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0EDFB43D64; Fri, 4 Aug 2006 15:38:36 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74FcaXW002652; Fri, 4 Aug 2006 15:38:36 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74Fcadw002651; Fri, 4 Aug 2006 15:38:36 GMT (envelope-from rafan) Message-Id: <200608041538.k74Fcadw002651@repoman.freebsd.org> From: Rong-En Fan Date: Fri, 4 Aug 2006 15:38: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: 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, 04 Aug 2006 15:39:05 -0000 rafan 2006-08-04 15:38:36 UTC FreeBSD ports repository Modified files: . modules Log: p5-Net-Flickr-RDF --> ports/www/p5-Net-Flickr-RDF Revision Changes Path 1.15898 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Aug 4 15:44:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF2BF16A4DF for ; Fri, 4 Aug 2006 15:44:16 +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 D603E43D62 for ; Fri, 4 Aug 2006 15:44:12 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 12579 invoked from network); 4 Aug 2006 15:35:21 -0000 Received: from c00l3r.networx.ch (HELO [127.0.0.1]) ([62.48.2.2]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 4 Aug 2006 15:35:21 -0000 Message-ID: <44D36B4B.4050605@freebsd.org> Date: Fri, 04 Aug 2006 17:44:11 +0200 From: Andre Oppermann User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: Prafulla Deuskar References: <200608031905.k73J55D2061870@repoman.freebsd.org> <20060804095414.GU96644@FreeBSD.org> <20060804143825.GA8797@hub.freebsd.org> In-Reply-To: <20060804143825.GA8797@hub.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, Gleb Smirnoff , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/em if_em.c 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, 04 Aug 2006 15:44:17 -0000 Prafulla Deuskar wrote: > Gleb Smirnoff [glebius@FreeBSD.org] wrote: >> Prafulla, >> >> On Thu, Aug 03, 2006 at 07:05:05PM +0000, Prafulla Deuskar wrote: >> P> pdeuskar 2006-08-03 19:05:05 UTC >> P> >> P> FreeBSD src repository >> P> >> P> Modified files: >> P> sys/dev/em if_em.c if_em.h >> P> Log: >> P> Revert back changes to made in rev 1.109 of if_em.c which were unnecessary. >> P> This makes it easier for us to get the changes into -current and to -stable quickly. >> >> Can you please confirm that this was a mechanical substitution like this: >> >> s/sc/adapter/g >> s/em_softc/adapter/g >> >> and no more additional changes? If this is true, then I hope that we >> (FreeBSD and Intel) have finally came to a common codebase. This is good. :) >> I can stand the long unusual name for driver softc with no problems. >> >> I'm only a bit disappointed by the fact, that I haven't received a single >> email about these plans. You were in the void for a long time, and >> then began your work with a commit, w/o informing people who were >> maintaining driver while the vendor maintanance was on a hiatus. >> > > Yes - it was a mechanical substitution. According to jb@freebsd.org at least one non-mechanical change slipped in breaking his Sun4v box. AFAIR some fix in/with bus_dmamap_unload() was reverted. -- Andre From owner-cvs-all@FreeBSD.ORG Fri Aug 4 15:45:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1702516A4DD; Fri, 4 Aug 2006 15:45:23 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD82443D6B; Fri, 4 Aug 2006 15:45:22 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74FjMkR003051; Fri, 4 Aug 2006 15:45:22 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74FjMpX003050; Fri, 4 Aug 2006 15:45:22 GMT (envelope-from itetcu) Message-Id: <200608041545.k74FjMpX003050@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Fri, 4 Aug 2006 15:45: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/ocaml-sdl Makefile distinfo pkg-install pkg-plist ports/devel/ocaml-sdl/files patch-configure.in patch-makefile.config.gcc.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, 04 Aug 2006 15:45:23 -0000 itetcu 2006-08-04 15:45:22 UTC FreeBSD ports repository Modified files: devel/ocaml-sdl Makefile distinfo Added files: devel/ocaml-sdl pkg-plist Removed files: devel/ocaml-sdl pkg-install devel/ocaml-sdl/files patch-configure.in patch-makefile.config.gcc.in Log: - Update to 0.7.2 - Use new ocaml framework (depepends on ports/101100) - Install info as well - Install docs with correct permissions - Pass maintainership to submitter PR: ports/101173 Submitted by: Stanislav Sedov Revision Changes Path 1.12 +21 -20 ports/devel/ocaml-sdl/Makefile 1.4 +3 -3 ports/devel/ocaml-sdl/distinfo 1.2 +0 -10 ports/devel/ocaml-sdl/files/patch-configure.in (dead) 1.2 +0 -9 ports/devel/ocaml-sdl/files/patch-makefile.config.gcc.in (dead) 1.2 +0 -9 ports/devel/ocaml-sdl/pkg-install (dead) 1.1 +61 -0 ports/devel/ocaml-sdl/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 4 15:58:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7444E16A4DE; Fri, 4 Aug 2006 15:58:26 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29E5743D45; Fri, 4 Aug 2006 15:58:26 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74FwPLw003612; Fri, 4 Aug 2006 15:58:25 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74FwPtK003611; Fri, 4 Aug 2006 15:58:25 GMT (envelope-from itetcu) Message-Id: <200608041558.k74FwPtK003611@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Fri, 4 Aug 2006 15:58: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/net/ocaml-netclient 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, 04 Aug 2006 15:58:26 -0000 itetcu 2006-08-04 15:58:25 UTC FreeBSD ports repository Modified files: net/ocaml-netclient Makefile distinfo pkg-plist Log: - Use new OCaml framework (requires ports/101100) - Permissions safety via replacing cp to install - Honour PREFIX - Use subdirectory of ocaml for docs and examples - Update to 0.92.2 PR: ports/101206 Submitted by: Stanislav Sedov Approved by: maintainer Revision Changes Path 1.2 +36 -12 ports/net/ocaml-netclient/Makefile 1.3 +3 -3 ports/net/ocaml-netclient/distinfo 1.2 +22 -129 ports/net/ocaml-netclient/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 4 16:05:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8257916A4DF; Fri, 4 Aug 2006 16:05:53 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D4D543D46; Fri, 4 Aug 2006 16:05:53 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74G5rxa005260; Fri, 4 Aug 2006 16:05:53 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74G5rl9005259; Fri, 4 Aug 2006 16:05:53 GMT (envelope-from itetcu) Message-Id: <200608041605.k74G5rl9005259@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Fri, 4 Aug 2006 16:05: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 Makefile ports/devel/ocaml-annexlib 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: Fri, 04 Aug 2006 16:05:53 -0000 itetcu 2006-08-04 16:05:53 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/ocaml-annexlib Makefile distinfo pkg-descr Log: An extension Library This is mostly to fill in some gaps in the standard and unix libraries, either for completeness or because they're things I find myself needing a lot of the time, and a few modules that aren't worthy of being their own releases. Enjoy. Most of this used to be part of an old library (stew) that I broke up into a couple of smaller ones. This one /was/ extlib, now annexlib. Its companion is mathlib. See supplied documentation for additional info. Author: Shawn Wagner WWW: http://raevnos.pennmush.org/code/extlib/ PR: ports/101207 Submitted by: Stanislav Sedov Revision Changes Path 1.2395 +1 -0 ports/devel/Makefile 1.1 +57 -0 ports/devel/ocaml-annexlib/Makefile (new) 1.1 +3 -0 ports/devel/ocaml-annexlib/distinfo (new) 1.1 +13 -0 ports/devel/ocaml-annexlib/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 4 16:06:24 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8FEE316A4DA; Fri, 4 Aug 2006 16:06:24 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D586843D55; Fri, 4 Aug 2006 16:06:23 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74G6Nqm005314; Fri, 4 Aug 2006 16:06:23 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74G6N8p005313; Fri, 4 Aug 2006 16:06:23 GMT (envelope-from itetcu) Message-Id: <200608041606.k74G6N8p005313@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Fri, 4 Aug 2006 16:06: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: Fri, 04 Aug 2006 16:06:24 -0000 itetcu 2006-08-04 16:06:23 UTC FreeBSD ports repository Modified files: . modules Log: ocaml-annexlib --> ports/devel/ocaml-annexlib Revision Changes Path 1.15899 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Aug 4 16:14:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B279F16A4DA; Fri, 4 Aug 2006 16:14:59 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (vc4-2-0-87.dsl.netrack.net [199.45.160.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 456E343D45; Fri, 4 Aug 2006 16:14:59 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (localhost.village.org [127.0.0.1] (may be forged)) by harmony.bsdimp.com (8.13.4/8.13.4) with ESMTP id k74GBdr8098538; Fri, 4 Aug 2006 10:11:39 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Fri, 04 Aug 2006 10:11:39 -0600 (MDT) Message-Id: <20060804.101139.71187145.imp@bsdimp.com> To: cperciva@FreeBSD.org From: Warner Losh In-Reply-To: <44D301FE.6030007@freebsd.org> References: <20060804072323.GC89735@wombat.fafoe.narf.at> <20060804074657.GT97316@comp.chem.msu.su> <44D301FE.6030007@freebsd.org> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Fri, 04 Aug 2006 10:11:39 -0600 (MDT) Cc: src-committers@FreeBSD.org, yar@comp.chem.msu.su, cvs-all@FreeBSD.org, stefanf@FreeBSD.org, pdeuskar@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/em if_em.c 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, 04 Aug 2006 16:14:59 -0000 From: Colin Percival Subject: Re: cvs commit: src/sys/dev/em if_em.c if_em.h Date: Fri, 04 Aug 2006 01:14:54 -0700 > Yar Tikhiy wrote: > > Yeah, it's a thing to watch out for. As are __TIME__ and __DATE__. > > FWIW, the following files in 6.1-RELEASE/i386 contain build timestamps: > > /boot/GENERIC/hptmv.ko > /boot/GENERIC/kernel > /boot/SMP/hptmv.ko > /boot/SMP/kernel > /boot/loader > /boot/pxeboot > /etc/mail/freebsd.cf > /etc/mail/freebsd.submit.cf > /etc/mail/sendmail.cf > /etc/mail/submit.cf > /lib/libcrypto.so.4 > /usr/bin/ntpq > /usr/include/osreldate.h > /usr/sbin/amd > /usr/sbin/iasl > /usr/sbin/isdnd > /usr/sbin/isdndebug > /usr/sbin/isdnmonitor > /usr/sbin/isdnphone > /usr/sbin/isdntelctl > /usr/sbin/lwresd > /usr/sbin/named > /usr/sbin/ntpd > /usr/sbin/ntpdate > /usr/sbin/ntpdc > /usr/sbin/ppp > > Of these, I've recently removed the timestamps in /usr/sbin/isdn*, and > dougb has a patch to remove the timestamps in lwresd and named. > > There are also timestamps in all of the library archive files, but those > are required by the archive format, so we can't do much about them. All static binaries on the system, in current, have the entire path to where the source code was built encoded into. This is due to an assert being used in malloc and other code which expands __FILE__, which gives you the entire path. Since we don't compile with -DNDEBUG, we expose ourselves to this. I have in my local tree a knob that allows one to turn on compiling with -DNDEBUG that I didn't have time to integrate before my move. Warner From owner-cvs-all@FreeBSD.ORG Fri Aug 4 16:18:18 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5948C16A4E5; Fri, 4 Aug 2006 16:18:18 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (vc4-2-0-87.dsl.netrack.net [199.45.160.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3CDC43D7C; Fri, 4 Aug 2006 16:18:11 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (localhost.village.org [127.0.0.1] (may be forged)) by harmony.bsdimp.com (8.13.4/8.13.4) with ESMTP id k74GEwC1098549; Fri, 4 Aug 2006 10:14:58 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Fri, 04 Aug 2006 10:14:58 -0600 (MDT) Message-Id: <20060804.101458.104131397.imp@bsdimp.com> To: glebius@freebsd.org From: Warner Losh In-Reply-To: <20060804095414.GU96644@FreeBSD.org> References: <200608031905.k73J55D2061870@repoman.freebsd.org> <20060804095414.GU96644@FreeBSD.org> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Fri, 04 Aug 2006 10:14:59 -0600 (MDT) Cc: cvs-src@freebsd.org, src-committers@freebsd.org, pdeuskar@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/em if_em.c 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, 04 Aug 2006 16:18:18 -0000 From: Gleb Smirnoff Subject: Re: cvs commit: src/sys/dev/em if_em.c if_em.h Date: Fri, 4 Aug 2006 13:54:14 +0400 > Prafulla, > > On Thu, Aug 03, 2006 at 07:05:05PM +0000, Prafulla Deuskar wrote: > P> pdeuskar 2006-08-03 19:05:05 UTC > P> > P> FreeBSD src repository > P> > P> Modified files: > P> sys/dev/em if_em.c if_em.h > P> Log: > P> Revert back changes to made in rev 1.109 of if_em.c which were unnecessary. > P> This makes it easier for us to get the changes into -current and to -stable quickly. > > Can you please confirm that this was a mechanical substitution like this: > > s/sc/adapter/g > s/em_softc/adapter/g > > and no more additional changes? If this is true, then I hope that we > (FreeBSD and Intel) have finally came to a common codebase. This is good. :) > I can stand the long unusual name for driver softc with no problems. That's what my eyeball of the patch showed. > I'm only a bit disappointed by the fact, that I haven't received a single > email about these plans. You were in the void for a long time, and > then began your work with a commit, w/o informing people who were > maintaining driver while the vendor maintanance was on a hiatus. You can blame that last part. Prafulla had sent several versions of the patch to me for review. I had gotten the mistaken impression that you were not longer interested in em (which appears to be in error), so I didn't have him bounce them off of you first. Please accept my appologies for not suggesting you be in the loop more. I gave him my signoff on the patch a few hours after you commited to em, but I didn't notice this until after he'd committed (gotta love qwest, nuf said). I soon realized my mistake, and would like to offer a public appology for it. Warner From owner-cvs-all@FreeBSD.ORG Fri Aug 4 16:21:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: by hub.freebsd.org (Postfix, from userid 916) id D065F16A4DD; Fri, 4 Aug 2006 16:21:49 +0000 (UTC) Date: Fri, 4 Aug 2006 16:21:49 +0000 From: Prafulla Deuskar To: Gleb Smirnoff Message-ID: <20060804162149.GB22299@hub.freebsd.org> References: <200608031905.k73J55D2061870@repoman.freebsd.org> <20060804095414.GU96644@FreeBSD.org> <20060804143825.GA8797@hub.freebsd.org> <20060804151422.GE96644@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060804151422.GE96644@FreeBSD.org> User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 6.1-STABLE on an i386 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/em if_em.c 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, 04 Aug 2006 16:21:49 -0000 Gleb Smirnoff [glebius@FreeBSD.org] wrote: > On Fri, Aug 04, 2006 at 02:38:25PM +0000, Prafulla Deuskar wrote: > P> > P> Revert back changes to made in rev 1.109 of if_em.c which were unnecessary. > P> > P> This makes it easier for us to get the changes into -current and to -stable quickly. > P> > > P> > Can you please confirm that this was a mechanical substitution like this: > P> > > P> > s/sc/adapter/g > P> > s/em_softc/adapter/g > P> > > P> > and no more additional changes? If this is true, then I hope that we > P> > (FreeBSD and Intel) have finally came to a common codebase. This is good. :) > P> > I can stand the long unusual name for driver softc with no problems. > P> > P> Yes - it was a mechanical substitution. > P> And thanks for taking care of 6.0.5 release. > > Thanks. Any objections about merging the HEAD to RELENG_6 soon? Jack Vogel is doing the merge - I will send it out to you for review. So let us plan on committing early next week? Is there a report on what coverty found with if_em_hw.c? Thanks, Prafulla From owner-cvs-all@FreeBSD.ORG Fri Aug 4 16:24:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C68A016A4DF; Fri, 4 Aug 2006 16:24:31 +0000 (UTC) (envelope-from marcel@xcllnt.net) Received: from ns1.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3998843D5F; Fri, 4 Aug 2006 16:24:28 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from [192.168.4.150] (pptp0.pn.xcllnt.net [192.168.4.150]) by ns1.xcllnt.net (8.13.6/8.13.6) with ESMTP id k74GO5RT030919; Fri, 4 Aug 2006 09:24:06 -0700 (PDT) (envelope-from marcel@xcllnt.net) In-Reply-To: <20060804070348.GR97316@comp.chem.msu.su> References: <200608030959.k739x9N6007207@repoman.freebsd.org> <44D22E2F.4070307@errno.com> <20060803180854.GI97316@comp.chem.msu.su> <200608031458.01134.jhb@freebsd.org> <20060804070348.GR97316@comp.chem.msu.su> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <6B15CBE0-00E0-4F64-A652-4A4B614975C2@xcllnt.net> Content-Transfer-Encoding: 7bit From: Marcel Moolenaar Date: Fri, 4 Aug 2006 09:23:52 -0700 To: Yar Tikhiy X-Mailer: Apple Mail (2.752.2) Cc: Sam Leffler , src-committers@FreeBSD.org, cvs-all@FreeBSD.org, John Baldwin , cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_vlan.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, 04 Aug 2006 16:24:31 -0000 On Aug 4, 2006, at 12:03 AM, Yar Tikhiy wrote: > Just noticed that many calls to kdb_backtrace() are under "#ifdef > KDB" while subr_kdb.c is marked as standard in /sys/conf/files and > the function itself is always available (yet can do nothing.) > > Should calls to kdb_backtrace() be put under "#ifdef KDB"? If they > should, it can justify introducing the combined printf+trace function. subr_kdb.c is indeed unconditional. The reason is that it contains the interface functions and you should not make interface functions optional if modules can reference them. The KDB option is there to tell that one wants debugging features enabled. This means for example that serial drivers react to the line break condition by going into the debugger. Without the KDB option line break conditions just result in a 0-character in the input stream. So, putting the kdb_backtrace() under KDB is not a matter of said function not being present without KDB, it's that we don't want to emit backtraces when debugging is not enabled. Backtraces are a debugging tool and it makes sense to emit them only when the kernel is configured for debugging. -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-all@FreeBSD.ORG Fri Aug 4 16:25:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A57616A4DA; Fri, 4 Aug 2006 16:25:23 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E71B43D4C; Fri, 4 Aug 2006 16:25:22 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74GPMMT006342; Fri, 4 Aug 2006 16:25:22 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74GPMjB006341; Fri, 4 Aug 2006 16:25:22 GMT (envelope-from itetcu) Message-Id: <200608041625.k74GPMjB006341@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Fri, 4 Aug 2006 16:25: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/security Makefile ports/security/ocaml-cryptgps 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: Fri, 04 Aug 2006 16:25:23 -0000 itetcu 2006-08-04 16:25:22 UTC FreeBSD ports repository Modified files: security Makefile Added files: security/ocaml-cryptgps Makefile distinfo pkg-descr Log: This library implements Blowfish, DES, and Triple-DES. Author: Gerd Stolpmann WWW: http://www.ocaml-programming.de/packages/ PR: ports/101213 Submitted by: Stanislav Sedov Revision Changes Path 1.801 +1 -0 ports/security/Makefile 1.1 +51 -0 ports/security/ocaml-cryptgps/Makefile (new) 1.1 +3 -0 ports/security/ocaml-cryptgps/distinfo (new) 1.1 +4 -0 ports/security/ocaml-cryptgps/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 4 16:25:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36E0616A4EB; Fri, 4 Aug 2006 16:25:53 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7AE043D49; Fri, 4 Aug 2006 16:25:52 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74GPqhJ006394; Fri, 4 Aug 2006 16:25:52 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74GPqbN006393; Fri, 4 Aug 2006 16:25:52 GMT (envelope-from itetcu) Message-Id: <200608041625.k74GPqbN006393@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Fri, 4 Aug 2006 16:25: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: 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, 04 Aug 2006 16:25:53 -0000 itetcu 2006-08-04 16:25:52 UTC FreeBSD ports repository Modified files: . modules Log: ocaml-cryptgps --> ports/security/ocaml-cryptgps Revision Changes Path 1.15900 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Aug 4 16:28:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F06316A4DD; Fri, 4 Aug 2006 16:28:13 +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 988CF43D46; Fri, 4 Aug 2006 16:28:12 +0000 (GMT) (envelope-from sam@errno.com) Received: from [10.0.0.248] (trouble.errno.com [10.0.0.248]) (authenticated bits=0) by ebb.errno.com (8.13.6/8.12.6) with ESMTP id k74GRuqZ044252 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 4 Aug 2006 09:27:57 -0700 (PDT) (envelope-from sam@errno.com) Message-ID: <44D3758C.1000609@errno.com> Date: Fri, 04 Aug 2006 09:27:56 -0700 From: Sam Leffler User-Agent: Thunderbird 1.5.0.4 (X11/20060724) MIME-Version: 1.0 To: Yar Tikhiy References: <200608030959.k739x9N6007207@repoman.freebsd.org> <44D22E2F.4070307@errno.com> <20060803180854.GI97316@comp.chem.msu.su> In-Reply-To: <20060803180854.GI97316@comp.chem.msu.su> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_vlan.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, 04 Aug 2006 16:28:13 -0000 Yar Tikhiy wrote: > On Thu, Aug 03, 2006 at 10:11:11AM -0700, Sam Leffler wrote: >> Yar Tikhiy wrote: >>> yar 2006-08-03 09:59:09 UTC >>> >>> FreeBSD src repository >>> >>> Modified files: >>> sys/net if_vlan.c >>> Log: >>> Should vlan_input() ever be called with ifp pointing to a non-Ethernet >>> interface, do not just assign -1 to tag because it breaks the logic of >>> the code to follow. The better way is to handle this case as an unsupported >>> protocol and return unless INVARIANTS is in effect and we can panic. >>> Panic is good there because the scenario can happen only because of a >>> coding error elsewhere. >>> >>> We also should show the interface name in the panic message for easier >>> debugging of the problem, should it ever emerge. >> Introducing a panic in a place where you can trivially recover is bad >> regardless of why you got there. Many people run production systems >> with INVARIANTS turned on. Is it now possible to send a "packet of >> death" by exploiting this code path? > > No nastygram can ever achieve this; only FreeBSD commiters possess > the ability to :-) > > The panic can never be reached unless one manages to attach a vlan > interface to a non-Ethernet physical interface in advance, which > is totally prohibited by the code at the beginning of vlan_config(); > and vlan_config() is the only way to attach a vlan interface to a > physical interface. > > I.e., it will take a developer breaking the logic in /sys/net to > make the code path expoloitable. > > OTOH, you are right that we can at least attempt to recover from > the situation. Perhaps it's time to introduce a common macro or > function that emits a message on the console and then just calls > kdb_backtrace() instead of dumping core and halting the system? > So users will be able to post the stack traces to the lists and > thus help to spot the possible bugs w/o having to go through panics. > I'm unsure if sticking raw kdb_backtrace() calls in such places > is a good idea, so I'm suggesting a wrapper function or macro. > It is to be used in "can absolutely never happen" cases that are > not fatal, like the one under discussion. > It is my experience that problems like the "packet of death" come about from (well-meaning) planting of a landmine of this sort followed, sometime later, by another person enabling the code path. I work by the rule that panic should be used only in places where you have no way to recover or recovery is so hard as to be not worthwhile (based on the circumstances). Sam From owner-cvs-all@FreeBSD.ORG Fri Aug 4 16:29:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: by hub.freebsd.org (Postfix, from userid 916) id 3BC6B16A4DF; Fri, 4 Aug 2006 16:29:53 +0000 (UTC) Date: Fri, 4 Aug 2006 16:29:53 +0000 From: Prafulla Deuskar To: Andre Oppermann Message-ID: <20060804162953.GA24414@hub.freebsd.org> References: <200608031905.k73J55D2061870@repoman.freebsd.org> <20060804095414.GU96644@FreeBSD.org> <20060804143825.GA8797@hub.freebsd.org> <44D36B4B.4050605@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <44D36B4B.4050605@freebsd.org> User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 6.1-STABLE on an i386 Cc: cvs-src@FreeBSD.org, Gleb Smirnoff , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/em if_em.c 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, 04 Aug 2006 16:29:53 -0000 Andre Oppermann [andre@freebsd.org] wrote: > Prafulla Deuskar wrote: > >Gleb Smirnoff [glebius@FreeBSD.org] wrote: > >> Prafulla, > >> > >>On Thu, Aug 03, 2006 at 07:05:05PM +0000, Prafulla Deuskar wrote: > >>P> pdeuskar 2006-08-03 19:05:05 UTC > >>P> > >>P> FreeBSD src repository > >>P> > >>P> Modified files: > >>P> sys/dev/em if_em.c if_em.h > >>P> Log: > >>P> Revert back changes to made in rev 1.109 of if_em.c which were > >>unnecessary. > >>P> This makes it easier for us to get the changes into -current and to > >>-stable quickly. > >> > >>Can you please confirm that this was a mechanical substitution like this: > >> > >>s/sc/adapter/g > >>s/em_softc/adapter/g > >> > >>and no more additional changes? If this is true, then I hope that we > >>(FreeBSD and Intel) have finally came to a common codebase. This is good. > >>:) > >>I can stand the long unusual name for driver softc with no problems. > >> > >>I'm only a bit disappointed by the fact, that I haven't received a single > >>email about these plans. You were in the void for a long time, and > >>then began your work with a commit, w/o informing people who were > >>maintaining driver while the vendor maintanance was on a hiatus. > >> > > > >Yes - it was a mechanical substitution. > > According to jb@freebsd.org at least one non-mechanical change slipped > in breaking his Sun4v box. AFAIR some fix in/with bus_dmamap_unload() > was reverted. I have looked at the diffs again after jb@ mentioned it last night. I don't think I have made any functionality changes. Thanks, Prafulla > From owner-cvs-all@FreeBSD.ORG Fri Aug 4 16:34:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 739E816A4DF; Fri, 4 Aug 2006 16:34:33 +0000 (UTC) (envelope-from marck@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E02943D73; Fri, 4 Aug 2006 16:34:30 +0000 (GMT) (envelope-from marck@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74GYUWk006790; Fri, 4 Aug 2006 16:34:30 GMT (envelope-from marck@repoman.freebsd.org) Received: (from marck@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74GYU8v006789; Fri, 4 Aug 2006 16:34:30 GMT (envelope-from marck) Message-Id: <200608041634.k74GYU8v006789@repoman.freebsd.org> From: Dmitry Morozovsky Date: Fri, 4 Aug 2006 16:34: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/ru_RU.KOI8-R/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: Fri, 04 Aug 2006 16:34:33 -0000 marck 2006-08-04 16:34:30 UTC FreeBSD doc repository Modified files: ru_RU.KOI8-R/books/porters-handbook book.sgml Log: MFen: 1.435 -> 1.440 book.sgml ispell-ru and style fixes [1]. Inspired by: Max Kosmach [1] Obtained from: The FreeBSD Russian Documentation Project Revision Changes Path 1.24 +201 -120 doc/ru_RU.KOI8-R/books/porters-handbook/book.sgml From owner-cvs-all@FreeBSD.ORG Fri Aug 4 16:54:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D6BE16A4DA; Fri, 4 Aug 2006 16:54:11 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C32443D46; Fri, 4 Aug 2006 16:54:11 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74GsBZ0015517; Fri, 4 Aug 2006 16:54:11 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74GsBvk015516; Fri, 4 Aug 2006 16:54:11 GMT (envelope-from itetcu) Message-Id: <200608041654.k74GsBvk015516@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Fri, 4 Aug 2006 16:54: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 Makefile ports/devel/ocaml-xstrp4 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: Fri, 04 Aug 2006 16:54:11 -0000 itetcu 2006-08-04 16:54:11 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/ocaml-xstrp4 Makefile distinfo pkg-descr Log: This is a camlp4 extension that expands brace expansions like a shell does. See sample.ml for examples. Author: Gerd Stolpmann WWW: http://www.ocaml-programming.de/packages/ PR: ports/101219 Submitted by: Stanislav Sedov Revision Changes Path 1.2396 +1 -0 ports/devel/Makefile 1.1 +49 -0 ports/devel/ocaml-xstrp4/Makefile (new) 1.1 +3 -0 ports/devel/ocaml-xstrp4/distinfo (new) 1.1 +5 -0 ports/devel/ocaml-xstrp4/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 4 16:54:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0ACD316A4E0; Fri, 4 Aug 2006 16:54:43 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9AAE43D5F; Fri, 4 Aug 2006 16:54:41 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74Gsfa0015571; Fri, 4 Aug 2006 16:54:41 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74GsfCH015570; Fri, 4 Aug 2006 16:54:41 GMT (envelope-from itetcu) Message-Id: <200608041654.k74GsfCH015570@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Fri, 4 Aug 2006 16:54: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: 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, 04 Aug 2006 16:54:43 -0000 itetcu 2006-08-04 16:54:41 UTC FreeBSD ports repository Modified files: . modules Log: ocaml-xstrp4 --> ports/devel/ocaml-xstrp4 Revision Changes Path 1.15901 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Aug 4 17:01:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D4C616A4E0; Fri, 4 Aug 2006 17:01:12 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3E6143D5C; Fri, 4 Aug 2006 17:01:11 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74H1B1G015987; Fri, 4 Aug 2006 17:01:11 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74H1BQS015986; Fri, 4 Aug 2006 17:01:11 GMT (envelope-from itetcu) Message-Id: <200608041701.k74H1BQS015986@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Fri, 4 Aug 2006 17:01: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 Makefile ports/devel/ocaml-sexplib 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: Fri, 04 Aug 2006 17:01:12 -0000 itetcu 2006-08-04 17:01:11 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/ocaml-sexplib Makefile distinfo pkg-descr Log: This library contains functionality for parsing and pretty-printing S-expressions. In addition to that it contains an extremely useful preprocessing module for Camlp4, which can be used to automatically generate code from type definitions for efficiently converting OCaml-values to S-expressions and vice versa. In combination with the parsing and pretty-printing functionality this frees the user from having to write his own I/O-routines for datastructures he defines. Possible errors during automatic conversions from S-expressions to OCaml-values are reported in a very human-readable way. Another module in the library allows you to extract and replace sub-expressions in S-expressions. Author: Markus Mottl WWW: http://www.janestcapital.com/ocaml/index.html PR: ports/101221 Submitted by: Stanislav Sedov Revision Changes Path 1.2397 +1 -0 ports/devel/Makefile 1.1 +49 -0 ports/devel/ocaml-sexplib/Makefile (new) 1.1 +3 -0 ports/devel/ocaml-sexplib/distinfo (new) 1.1 +13 -0 ports/devel/ocaml-sexplib/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 4 17:02:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 20B5416A4DA; Fri, 4 Aug 2006 17:02:01 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB65943D6E; Fri, 4 Aug 2006 17:01:53 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74H1r0S016038; Fri, 4 Aug 2006 17:01:53 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74H1rB8016037; Fri, 4 Aug 2006 17:01:53 GMT (envelope-from itetcu) Message-Id: <200608041701.k74H1rB8016037@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Fri, 4 Aug 2006 17:01: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: 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, 04 Aug 2006 17:02:01 -0000 itetcu 2006-08-04 17:01:53 UTC FreeBSD ports repository Modified files: . modules Log: ocaml-sexplib --> ports/devel/ocaml-sexplib Revision Changes Path 1.15902 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Aug 4 17:26:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C3F116A4DA; Fri, 4 Aug 2006 17:26:27 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCC6E43D49; Fri, 4 Aug 2006 17:26:26 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74HQQDh018438; Fri, 4 Aug 2006 17:26:26 GMT (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74HQQuS018437; Fri, 4 Aug 2006 17:26:26 GMT (envelope-from linimon) Message-Id: <200608041726.k74HQQuS018437@repoman.freebsd.org> From: Mark Linimon Date: Fri, 4 Aug 2006 17:26: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: doc/en_US.ISO8859-1/articles/portbuild 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, 04 Aug 2006 17:26:27 -0000 linimon 2006-08-04 17:26:26 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/portbuild article.sgml Log: Add note about incremental builds. Source: erwin Suggested by: kris Revision Changes Path 1.12 +6 -0 doc/en_US.ISO8859-1/articles/portbuild/article.sgml From owner-cvs-all@FreeBSD.ORG Fri Aug 4 17:54:38 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C1E7116A4DD; Fri, 4 Aug 2006 17:54:38 +0000 (UTC) (envelope-from Alexander@Leidinger.net) Received: from www.ebusiness-leidinger.de (jojo.ms-net.de [84.16.236.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C73D43D45; Fri, 4 Aug 2006 17:54:37 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from Andro-Beta.Leidinger.net (p54A5ECE0.dip.t-dialin.net [84.165.236.224]) (authenticated bits=0) by www.ebusiness-leidinger.de (8.13.6/8.13.6) with ESMTP id k74HeXnc048853; Fri, 4 Aug 2006 19:40:34 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from Magellan.Leidinger.net (Magellan.Leidinger.net [192.168.1.1]) by Andro-Beta.Leidinger.net (8.13.4/8.13.3) with ESMTP id k74Hse9U024165; Fri, 4 Aug 2006 19:54:40 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Date: Fri, 4 Aug 2006 19:56:23 +0200 From: Alexander Leidinger To: Jose Alonso Cardenas Marquez Message-ID: <20060804195623.564c8a6e@Magellan.Leidinger.net> In-Reply-To: <200608041438.k74Ec3Wr096494@repoman.freebsd.org> References: <200608041438.k74Ec3Wr096494@repoman.freebsd.org> X-Mailer: Sylpheed-Claws 2.4.0 (GTK+ 2.8.20; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new Cc: cvs-ports@freebsd.org, garga@freebsd.org, cvs-all@freebsd.org, ports-committers@freebsd.org Subject: Re: cvs commit: ports/ftp Makefile ports/ftp/linux-curl Makefile distinfo.i386 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Aug 2006 17:54:38 -0000 Quoting Jose Alonso Cardenas Marquez (Fri, 4 Aug 2006 14:38:03 +0000 (UTC)): > acm 2006-08-04 14:38:03 UTC > > FreeBSD ports repository > > Modified files: > ftp Makefile > Added files: > ftp/linux-curl Makefile distinfo.i386 > Log: > - New port: ftp/linux-curl Please have a look at the handbook (as told in the description of AUTOMATIC_PLIST in bsd.linux-rpm.mk). There you can find some words about using static plists instead of plists which are generated at build time. The linux infrastructure ports are definitively cases where we can provide a static plist. Because of this I can't determine if this port contains just the lib or other stuff too. A way to just install the lib in case it is needed as a dependency would be nice, in case there's no reason to install the curl binary. Currently I can't come up with a reason why we need the curl binary, is there one I don't think of? In case there is a reason for the curl binary: the port is missing some BRANDELF_* stuff. Feel free to ask on emulation@ for review of linux ports. Bye, Alexander. -- Was my SOY LOAF left out in th'RAIN? It tastes REAL GOOD!! http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 From owner-cvs-all@FreeBSD.ORG Fri Aug 4 17:55:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1D6516A4DE; Fri, 4 Aug 2006 17:55:56 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36A2D43D45; Fri, 4 Aug 2006 17:55:56 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74HtuFP019823; Fri, 4 Aug 2006 17:55:56 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74HtuEf019822; Fri, 4 Aug 2006 17:55:56 GMT (envelope-from marcel) Message-Id: <200608041755.k74HtuEf019822@repoman.freebsd.org> From: Marcel Moolenaar Date: Fri, 4 Aug 2006 17:55: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/lib/libthread_db/arch/powerpc libc_r_md.c libpthread_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: Fri, 04 Aug 2006 17:55:56 -0000 marcel 2006-08-04 17:55:56 UTC FreeBSD src repository Added files: lib/libthread_db/arch/powerpc libc_r_md.c libpthread_md.c Log: Add stub functions. This allows libthread_db to be built and installed, which means that we also have . Revision Changes Path 1.1 +41 -0 src/lib/libthread_db/arch/powerpc/libc_r_md.c (new) 1.1 +65 -0 src/lib/libthread_db/arch/powerpc/libpthread_md.c (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 4 17:56:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD31116A508; Fri, 4 Aug 2006 17:56:31 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B53B43D45; Fri, 4 Aug 2006 17:56:31 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74HuVbI019890; Fri, 4 Aug 2006 17:56:31 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74HuVfh019889; Fri, 4 Aug 2006 17:56:31 GMT (envelope-from marcel) Message-Id: <200608041756.k74HuVfh019889@repoman.freebsd.org> From: Marcel Moolenaar Date: Fri, 4 Aug 2006 17:56: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/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: Fri, 04 Aug 2006 17:56:31 -0000 marcel 2006-08-04 17:56:31 UTC FreeBSD src repository Modified files: lib Makefile Log: Build libthread_db on PowerPC. Revision Changes Path 1.215 +1 -1 src/lib/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 17:58:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E208A16A4DE; Fri, 4 Aug 2006 17:58:41 +0000 (UTC) (envelope-from gallatin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D3A143D49; Fri, 4 Aug 2006 17:58:41 +0000 (GMT) (envelope-from gallatin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74HwfgT019972; Fri, 4 Aug 2006 17:58:41 GMT (envelope-from gallatin@repoman.freebsd.org) Received: (from gallatin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74HwfXm019971; Fri, 4 Aug 2006 17:58:41 GMT (envelope-from gallatin) Message-Id: <200608041758.k74HwfXm019971@repoman.freebsd.org> From: Andrew Gallatin Date: Fri, 4 Aug 2006 17:58: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/dev/mxge if_mxge.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, 04 Aug 2006 17:58:42 -0000 gallatin 2006-08-04 17:58:41 UTC FreeBSD src repository Modified files: sys/dev/mxge if_mxge.c Log: Copy the link-layer address from our ifnet pointer at reset time so that the mac address can be overridden. Revision Changes Path 1.9 +3 -0 src/sys/dev/mxge/if_mxge.c From owner-cvs-all@FreeBSD.ORG Fri Aug 4 18:03:27 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F2B7616A4DA; Fri, 4 Aug 2006 18:03:26 +0000 (UTC) (envelope-from Alexander@Leidinger.net) Received: from www.ebusiness-leidinger.de (jojo.ms-net.de [84.16.236.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30FF943D58; Fri, 4 Aug 2006 18:03:26 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from Andro-Beta.Leidinger.net (p54A5ECE0.dip.t-dialin.net [84.165.236.224]) (authenticated bits=0) by www.ebusiness-leidinger.de (8.13.6/8.13.6) with ESMTP id k74HnMMm048884; Fri, 4 Aug 2006 19:49:22 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from Magellan.Leidinger.net (Magellan.Leidinger.net [192.168.1.1]) by Andro-Beta.Leidinger.net (8.13.4/8.13.3) with ESMTP id k74I3Sp2025491; Fri, 4 Aug 2006 20:03:29 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Date: Fri, 4 Aug 2006 20:05:11 +0200 From: Alexander Leidinger To: Jose Alonso Cardenas Marquez Message-ID: <20060804200511.38b93e90@Magellan.Leidinger.net> In-Reply-To: <200608041503.k74F3ue8099443@repoman.freebsd.org> References: <200608041503.k74F3ue8099443@repoman.freebsd.org> X-Mailer: Sylpheed-Claws 2.4.0 (GTK+ 2.8.20; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new Cc: bsam@freebsd.org, cvs-ports@freebsd.org, garga@freebsd.org, cvs-all@freebsd.org, ports-committers@freebsd.org Subject: Re: cvs commit: ports/security Makefile ports/security/linux-krb5-libs Makefile distinfo.i386 ports/security/linux-openssl Makefile distinfo.i386 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, 04 Aug 2006 18:03:27 -0000 Quoting Jose Alonso Cardenas Marquez (Fri, 4 Aug 2006 15:03:55 +0000 (UTC)): > acm 2006-08-04 15:03:55 UTC > > FreeBSD ports repository > > Modified files: > security Makefile > Added files: > security/linux-krb5-libs Makefile distinfo.i386 > security/linux-openssl Makefile distinfo.i386 pkg-plist > Log: > - New port: security/linux-krb5-libs > > Kerberos V5 is an authentication system developed at MIT. bsam and I talked about making the default linux_base port "mostly ready" for ldap and krb5. This means we would like to make it work out of the box as much as possible. This also means that we need to include the krb5 libs into the linux base port and making a copy/link/fallthrough to the FreeBSD config. This would make this port obsolete. Any help is appreciated. Aside from this: AUTOMATIC_PLIST and perhaps BRANDELF_* stuff as in my comments for linux-curl. > (Linux version) > > WWW: http://web.mit.edu/kerberos/ > > - New port: security/linux-openssl This one has a plist, that's nice. But you need to add BRANDELF_FILES=... to the Makefile. And maybe it is a good idea to make a link from the linux openssl.cnf to the FreeBSD one (or not, I didn't had a deep look at it). Bye, Alexander. -- "I love every living creature." -Leela "Even me?" -Fry "As a friend." -Leela http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 From owner-cvs-all@FreeBSD.ORG Fri Aug 4 18:03:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1E8016A4DE; Fri, 4 Aug 2006 18:03:47 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EBCA43D45; Fri, 4 Aug 2006 18:03:47 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74I3lg7021626; Fri, 4 Aug 2006 18:03:47 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74I3lVr021625; Fri, 4 Aug 2006 18:03:47 GMT (envelope-from erwin) Message-Id: <200608041803.k74I3lVr021625@repoman.freebsd.org> From: Erwin Lansing Date: Fri, 4 Aug 2006 18:03: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/japanese/perl5 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, 04 Aug 2006 18:03:48 -0000 erwin 2006-08-04 18:03:47 UTC FreeBSD ports repository Modified files: japanese/perl5 Makefile Log: Fix after DESTDIR commit. Revision Changes Path 1.41 +13 -13 ports/japanese/perl5/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 18:19:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B01416A4E2; Fri, 4 Aug 2006 18:19:50 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21D7143D5D; Fri, 4 Aug 2006 18:19:50 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74IJoAa022692; Fri, 4 Aug 2006 18:19:50 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74IJnBK022691; Fri, 4 Aug 2006 18:19:49 GMT (envelope-from itetcu) Message-Id: <200608041819.k74IJnBK022691@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Fri, 4 Aug 2006 18:19: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/multimedia/mplayer Makefile ports/multimedia/mplayer/files patch-vidix-drivers-mga_vid.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, 04 Aug 2006 18:19:50 -0000 itetcu 2006-08-04 18:19:49 UTC FreeBSD ports repository Modified files: multimedia/mplayer Makefile multimedia/mplayer/files patch-vidix-drivers-mga_vid.c Log: Apply some user-requested changes to the mplayer port: o Have mga xvidix driver autodetect memory, reported by Andre Albsmeier o Remove PKGSUFFIX stuff, instead port name is always "mplayer" o Use win32 real player codecs if the user prohibits linux-realplayer interaction PR: ports/101224 Submitted by: Thomas E. Zander (maintainer) Revision Changes Path 1.140 +10 -11 ports/multimedia/mplayer/Makefile 1.2 +11 -2 ports/multimedia/mplayer/files/patch-vidix-drivers-mga_vid.c From owner-cvs-all@FreeBSD.ORG Fri Aug 4 18:28:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B109216A4DD; Fri, 4 Aug 2006 18:28:58 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FDDF43D46; Fri, 4 Aug 2006 18:28:58 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74ISwKl023133; Fri, 4 Aug 2006 18:28:58 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74ISwJp023132; Fri, 4 Aug 2006 18:28:58 GMT (envelope-from glebius) Message-Id: <200608041828.k74ISwJp023132@repoman.freebsd.org> From: Gleb Smirnoff Date: Fri, 4 Aug 2006 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/share/man/man4 ng_ether.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: Fri, 04 Aug 2006 18:28:58 -0000 glebius 2006-08-04 18:28:58 UTC FreeBSD src repository Modified files: share/man/man4 ng_ether.4 Log: By default "autosrc" is off. Submitted by: ru Revision Changes Path 1.27 +2 -2 src/share/man/man4/ng_ether.4 From owner-cvs-all@FreeBSD.ORG Fri Aug 4 18:37:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8ABAF16A4DE; Fri, 4 Aug 2006 18:37:04 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 085E143D58; Fri, 4 Aug 2006 18:37:04 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74Ib30I023567; Fri, 4 Aug 2006 18:37:03 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74Ib39w023566; Fri, 4 Aug 2006 18:37:03 GMT (envelope-from des) Message-Id: <200608041837.k74Ib39w023566@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 4 Aug 2006 18:37: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/etc/rc.d 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, 04 Aug 2006 18:37:04 -0000 des 2006-08-04 18:37:03 UTC FreeBSD src repository Modified files: etc/rc.d Makefile Log: Forgot to add mountlate to the Makefile. Revision Changes Path 1.74 +1 -1 src/etc/rc.d/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 19:24:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A3F516A4DE; Fri, 4 Aug 2006 19:24:58 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from sippysoft.com (gk.360sip.com [72.236.70.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0063F43D45; Fri, 4 Aug 2006 19:24:57 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.1.56] ([204.244.149.125]) (authenticated bits=0) by sippysoft.com (8.13.6/8.13.6) with ESMTP id k74JOsg9063410 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 4 Aug 2006 12:24:55 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-ID: <44D39EE8.9090704@FreeBSD.org> Date: Fri, 04 Aug 2006 12:24:24 -0700 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: Marcel Moolenaar References: <200608041755.k74HtuEf019822@repoman.freebsd.org> In-Reply-To: <200608041755.k74HtuEf019822@repoman.freebsd.org> Content-Type: text/plain; charset=KOI8-U; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libthread_db/arch/powerpc libc_r_md.c libpthread_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: Fri, 04 Aug 2006 19:24:58 -0000 Cool, please let me know if you need access to the test hardware. We have several spare G4 Mac Minis in the office, so that I can install FreeBSD on one of them for you. -Maxim Marcel Moolenaar wrote: > marcel 2006-08-04 17:55:56 UTC > > FreeBSD src repository > > Added files: > lib/libthread_db/arch/powerpc libc_r_md.c libpthread_md.c > Log: > Add stub functions. This allows libthread_db to be built and installed, > which means that we also have . > > Revision Changes Path > 1.1 +41 -0 src/lib/libthread_db/arch/powerpc/libc_r_md.c (new) > 1.1 +65 -0 src/lib/libthread_db/arch/powerpc/libpthread_md.c (new) > > From owner-cvs-all@FreeBSD.ORG Fri Aug 4 19:30:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B83C316A4DA; Fri, 4 Aug 2006 19:30:37 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 766F643D6E; Fri, 4 Aug 2006 19:30:37 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74JUbkV027173; Fri, 4 Aug 2006 19:30:37 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74JUb6u027172; Fri, 4 Aug 2006 19:30:37 GMT (envelope-from sat) Message-Id: <200608041930.k74JUb6u027172@repoman.freebsd.org> From: Andrew Pantyukhin Date: Fri, 4 Aug 2006 19:30: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/p5-Linux-Pid 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, 04 Aug 2006 19:30:37 -0000 sat 2006-08-04 19:30:37 UTC FreeBSD ports repository Modified files: devel/p5-Linux-Pid Makefile Log: - Fix build by depending on p5-Inline Reported by: pointyhat via erwin Revision Changes Path 1.2 +3 -0 ports/devel/p5-Linux-Pid/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 19:33:23 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 684B916A4DD; Fri, 4 Aug 2006 19:33:23 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADCDB43D46; Fri, 4 Aug 2006 19:33:22 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k74JX60w007138; Fri, 4 Aug 2006 15:33:07 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Marcel Moolenaar Date: Fri, 4 Aug 2006 13:14:22 -0400 User-Agent: KMail/1.9.1 References: <200608030959.k739x9N6007207@repoman.freebsd.org> <20060804070348.GR97316@comp.chem.msu.su> <6B15CBE0-00E0-4F64-A652-4A4B614975C2@xcllnt.net> In-Reply-To: <6B15CBE0-00E0-4F64-A652-4A4B614975C2@xcllnt.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608041314.24161.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]); Fri, 04 Aug 2006 15:33:08 -0400 (EDT) X-Virus-Scanned: ClamAV version 0.87.1, clamav-milter version 0.87 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.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on server.baldwin.cx Cc: Yar Tikhiy , src-committers@freebsd.org, cvs-all@freebsd.org, cvs-src@freebsd.org, Sam Leffler Subject: Re: cvs commit: src/sys/net if_vlan.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, 04 Aug 2006 19:33:23 -0000 On Friday 04 August 2006 12:23, Marcel Moolenaar wrote: > On Aug 4, 2006, at 12:03 AM, Yar Tikhiy wrote: > > > Just noticed that many calls to kdb_backtrace() are under "#ifdef > > KDB" while subr_kdb.c is marked as standard in /sys/conf/files and > > the function itself is always available (yet can do nothing.) > > > > Should calls to kdb_backtrace() be put under "#ifdef KDB"? If they > > should, it can justify introducing the combined printf+trace function. > > subr_kdb.c is indeed unconditional. The reason is that it contains > the interface functions and you should not make interface functions > optional if modules can reference them. > > The KDB option is there to tell that one wants debugging features > enabled. This means for example that serial drivers react to the > line break condition by going into the debugger. Without the KDB > option line break conditions just result in a 0-character in the > input stream. > > So, putting the kdb_backtrace() under KDB is not a matter of said > function not being present without KDB, it's that we don't want > to emit backtraces when debugging is not enabled. Backtraces are > a debugging tool and it makes sense to emit them only when the > kernel is configured for debugging. In practice this ends up being redundant though as to have kdb_backtrace() actually do anything you have to have DDB in your kernel config, which requires KDB. Places that call kdb_enter() aren't all #ifdef KDB IIRC. It's just a feature that kdb_foo() functions become NOPs when the kernel isn't configured for debugging, so I think the #ifdef KDB's would be redundant. -- John Baldwin From owner-cvs-all@FreeBSD.ORG Fri Aug 4 19:39:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4CB2F16A4DD; Fri, 4 Aug 2006 19:39:35 +0000 (UTC) (envelope-from marcel@xcllnt.net) Received: from ns1.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC41B43D46; Fri, 4 Aug 2006 19:39:34 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from ns1.xcllnt.net (localhost.xcllnt.net [127.0.0.1]) by ns1.xcllnt.net (8.13.6/8.13.6) with ESMTP id k74JdYdQ031860; Fri, 4 Aug 2006 12:39:34 -0700 (PDT) (envelope-from marcel@ns1.xcllnt.net) Received: (from marcel@localhost) by ns1.xcllnt.net (8.13.6/8.13.6/Submit) id k74JdY3d031859; Fri, 4 Aug 2006 12:39:34 -0700 (PDT) (envelope-from marcel) Date: Fri, 4 Aug 2006 12:39:34 -0700 From: Marcel Moolenaar To: Maxim Sobolev Message-ID: <20060804193934.GA31805@ns1.xcllnt.net> References: <200608041755.k74HtuEf019822@repoman.freebsd.org> <44D39EE8.9090704@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <44D39EE8.9090704@FreeBSD.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libthread_db/arch/powerpc libc_r_md.c libpthread_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: Fri, 04 Aug 2006 19:39:35 -0000 On Fri, Aug 04, 2006 at 12:24:24PM -0700, Maxim Sobolev wrote: > Cool, please let me know if you need access to the test hardware. We > have several spare G4 Mac Minis in the office, so that I can install > FreeBSD on one of them for you. I have a iMac G3 dedicated to FreeBSD. Not the fastest, be adequate for now. If you have a G4 Mini available for FreeBSD, maybe you could set one up to run tinderboxes? I have done that on pluto1 and pluto2 in the FreeBSD cluster for ia64 and it's not that hard. That machine could then also be used for snapshot builds. I can help you if you think it's a good idea... Thanks for the offer though! -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-all@FreeBSD.ORG Fri Aug 4 20:02:15 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5B4B16A4DD; Fri, 4 Aug 2006 20:02:15 +0000 (UTC) (envelope-from marcel@xcllnt.net) Received: from ns1.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F2AF43D45; Fri, 4 Aug 2006 20:02:15 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from ns1.xcllnt.net (localhost.xcllnt.net [127.0.0.1]) by ns1.xcllnt.net (8.13.6/8.13.6) with ESMTP id k74K1sI2031981; Fri, 4 Aug 2006 13:01:54 -0700 (PDT) (envelope-from marcel@ns1.xcllnt.net) Received: (from marcel@localhost) by ns1.xcllnt.net (8.13.6/8.13.6/Submit) id k74K1stG031980; Fri, 4 Aug 2006 13:01:54 -0700 (PDT) (envelope-from marcel) Date: Fri, 4 Aug 2006 13:01:54 -0700 From: Marcel Moolenaar To: John Baldwin Message-ID: <20060804200154.GC31805@ns1.xcllnt.net> References: <200608030959.k739x9N6007207@repoman.freebsd.org> <20060804070348.GR97316@comp.chem.msu.su> <6B15CBE0-00E0-4F64-A652-4A4B614975C2@xcllnt.net> <200608041314.24161.jhb@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200608041314.24161.jhb@freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: Yar Tikhiy , src-committers@freebsd.org, cvs-all@freebsd.org, cvs-src@freebsd.org, Sam Leffler Subject: Re: cvs commit: src/sys/net if_vlan.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, 04 Aug 2006 20:02:16 -0000 On Fri, Aug 04, 2006 at 01:14:22PM -0400, John Baldwin wrote: > > > > So, putting the kdb_backtrace() under KDB is not a matter of said > > function not being present without KDB, it's that we don't want > > to emit backtraces when debugging is not enabled. Backtraces are > > a debugging tool and it makes sense to emit them only when the > > kernel is configured for debugging. > > In practice this ends up being redundant though as to have kdb_backtrace() > actually do anything you have to have DDB in your kernel config, which > requires KDB. That's really an implementation detail. What if we get a new debugger backend that allows backtraces? What if the GDB backend is extended to allow backtraces? The point is that kdb_backtrace() is there if you want a backtrace and you call it based on whatever option that makes sense at the call-site or even unconditionally if that's the right thing. Whether there's actually a backend that can make a backtrace is really a seperate issue. We just happen to implement backtracing and unwinding by debuggers, but with an unwinder in the kernel on ia64, we really don't need a debugger in order to make a backtrace and it's not that unrealistic that I create a backend that can only do backtraces... > Places that call kdb_enter() aren't all #ifdef KDB IIRC. It's > just a feature that kdb_foo() functions become NOPs when the kernel isn't > configured for debugging, so I think the #ifdef KDB's would be redundant. None of the kdb_*() functions in src/sys/kern/subr_kdb.c turn into NOPs when option KDB is not present. They are all unconditionally functional by design and should therefore be called conditionally by consequence. -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-all@FreeBSD.ORG Fri Aug 4 20:13:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F36016A4DD; Fri, 4 Aug 2006 20:13:28 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D65CE43D6E; Fri, 4 Aug 2006 20:13:27 +0000 (GMT) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74KDRMV037962; Fri, 4 Aug 2006 20:13:27 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74KDRDs037961; Fri, 4 Aug 2006 20:13:27 GMT (envelope-from mjacob) Message-Id: <200608042013.k74KDRDs037961@repoman.freebsd.org> From: Matt Jacob Date: Fri, 4 Aug 2006 20:13: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/isp isp_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: Fri, 04 Aug 2006 20:13:28 -0000 mjacob 2006-08-04 20:13:27 UTC FreeBSD src repository Modified files: sys/dev/isp isp_freebsd.c Log: Rename ioctl driven task management functions so they don't collide with task management definitions on other platforms. Revision Changes Path 1.121 +5 -5 src/sys/dev/isp/isp_freebsd.c From owner-cvs-all@FreeBSD.ORG Fri Aug 4 20:14:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7333516A4DE; Fri, 4 Aug 2006 20:14:04 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30D3743D49; Fri, 4 Aug 2006 20:14:04 +0000 (GMT) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74KE4g6038027; Fri, 4 Aug 2006 20:14:04 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74KE4Nc038026; Fri, 4 Aug 2006 20:14:04 GMT (envelope-from mjacob) Message-Id: <200608042014.k74KE4Nc038026@repoman.freebsd.org> From: Matt Jacob Date: Fri, 4 Aug 2006 20:14: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/dev/isp isp_ioctl.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, 04 Aug 2006 20:14:04 -0000 mjacob 2006-08-04 20:14:03 UTC FreeBSD src repository Modified files: sys/dev/isp isp_ioctl.h Log: Rename ioctl driven task management functions so they don't collide with task management definitions on other platforms. Revision Changes Path 1.17 +5 -1 src/sys/dev/isp/isp_ioctl.h From owner-cvs-all@FreeBSD.ORG Fri Aug 4 20:14:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 19AA916A4DE; Fri, 4 Aug 2006 20:14:53 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAB1543D4C; Fri, 4 Aug 2006 20:14:52 +0000 (GMT) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74KEqcL038070; Fri, 4 Aug 2006 20:14:52 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74KEqAL038069; Fri, 4 Aug 2006 20:14:52 GMT (envelope-from mjacob) Message-Id: <200608042014.k74KEqAL038069@repoman.freebsd.org> From: Matt Jacob Date: Fri, 4 Aug 2006 20:14: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/dev/isp isp.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, 04 Aug 2006 20:14:53 -0000 mjacob 2006-08-04 20:14:52 UTC FreeBSD src repository Modified files: sys/dev/isp isp.c Log: Initialize 2300 request/response pointers in isp_reset- not in isp_fibre_init. Revision Changes Path 1.124 +4 -7 src/sys/dev/isp/isp.c From owner-cvs-all@FreeBSD.ORG Fri Aug 4 20:20:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C371E16A4DE; Fri, 4 Aug 2006 20:20:00 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F2A943D49; Fri, 4 Aug 2006 20:20:00 +0000 (GMT) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74KK0pG038361; Fri, 4 Aug 2006 20:20:00 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74KK0pi038360; Fri, 4 Aug 2006 20:20:00 GMT (envelope-from mjacob) Message-Id: <200608042020.k74KK0pi038360@repoman.freebsd.org> From: Matt Jacob Date: Fri, 4 Aug 2006 20:20: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/dev/isp isp_library.c isp_target.c isp_target.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, 04 Aug 2006 20:20:00 -0000 mjacob 2006-08-04 20:20:00 UTC FreeBSD src repository Modified files: sys/dev/isp isp_library.c isp_target.c isp_target.h Log: Fix na_fcentry_t to not have a lun field. Fix indentation in handly the notify structs. Fix messages in isp_got_msg_fc to print out the loop id of the sender- not the wwpn which will be synthesized later, if possible, in the outer layers. Put in debug printouts to pair a notify ack to a notify so one can see the start/close of an immediate notify event. Put in spsace for TASK MANAGEMENT response flags (which we don't do yet). Revision Changes Path 1.5 +6 -6 src/sys/dev/isp/isp_library.c 1.39 +43 -26 src/sys/dev/isp/isp_target.c 1.27 +8 -5 src/sys/dev/isp/isp_target.h From owner-cvs-all@FreeBSD.ORG Fri Aug 4 20:20:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF2BB16A4DF; Fri, 4 Aug 2006 20:20:55 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B15B43D46; Fri, 4 Aug 2006 20:20:55 +0000 (GMT) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74KKtq2038485; Fri, 4 Aug 2006 20:20:55 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74KKtiV038483; Fri, 4 Aug 2006 20:20:55 GMT (envelope-from mjacob) Message-Id: <200608042020.k74KKtiV038483@repoman.freebsd.org> From: Matt Jacob Date: Fri, 4 Aug 2006 20:20: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/dev/isp isp_tpublic.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, 04 Aug 2006 20:20:55 -0000 mjacob 2006-08-04 20:20:55 UTC FreeBSD src repository Modified files: sys/dev/isp isp_tpublic.h Log: Increase local reserved (high && low) storage in each command structure from 2 to 3 words. Revision Changes Path 1.15 +1 -1 src/sys/dev/isp/isp_tpublic.h From owner-cvs-all@FreeBSD.ORG Fri Aug 4 20:44:24 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C1BB016A4DE; Fri, 4 Aug 2006 20:44:24 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 784DB43D7B; Fri, 4 Aug 2006 20:44:19 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74KiIpb040593; Fri, 4 Aug 2006 20:44:18 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74KiIFn040592; Fri, 4 Aug 2006 20:44:18 GMT (envelope-from sat) Message-Id: <200608042044.k74KiIFn040592@repoman.freebsd.org> From: Andrew Pantyukhin Date: Fri, 4 Aug 2006 20:44: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 CHANGES X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Aug 2006 20:44:24 -0000 sat 2006-08-04 20:44:18 UTC FreeBSD ports repository Modified files: . CHANGES Log: Document bsd.sites.mk macro magic Revision Changes Path 1.58 +28 -1 ports/CHANGES From owner-cvs-all@FreeBSD.ORG Fri Aug 4 21:14:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68FD616A4DE; Fri, 4 Aug 2006 21:14:36 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1EEB43D7D; Fri, 4 Aug 2006 21:14:31 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74LEV72051034; Fri, 4 Aug 2006 21:14:31 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74LEV7F051031; Fri, 4 Aug 2006 21:14:31 GMT (envelope-from marcus) Message-Id: <200608042114.k74LEV7F051031@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 4 Aug 2006 21:14: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/net/wireshark Makefile ports/net/tshark 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, 04 Aug 2006 21:14:36 -0000 marcus 2006-08-04 21:14:31 UTC FreeBSD ports repository Modified files: net/wireshark Makefile net/tshark Makefile Log: Correct DATADIR name for tshark and tshark-lite. Reported by: pointyhat via erwin Revision Changes Path 1.3 +1 -0 ports/net/tshark/Makefile 1.111 +4 -1 ports/net/wireshark/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 21:15:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A7C2B16A4DA; Fri, 4 Aug 2006 21:15:10 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 373CE43DA4; Fri, 4 Aug 2006 21:15:09 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74LF95E051107; Fri, 4 Aug 2006 21:15:09 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74LF9Wj051106; Fri, 4 Aug 2006 21:15:09 GMT (envelope-from brooks) Message-Id: <200608042115.k74LF9Wj051106@repoman.freebsd.org> From: Brooks Davis Date: Fri, 4 Aug 2006 21:15: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/compat/svr4 svr4_sockio.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, 04 Aug 2006 21:15:10 -0000 brooks 2006-08-04 21:15:09 UTC FreeBSD src repository Modified files: sys/compat/svr4 svr4_sockio.c Log: Use TAILQ_EMPTY instead of checking if TAILQ_FIRST is NULL. Revision Changes Path 1.18 +1 -1 src/sys/compat/svr4/svr4_sockio.c From owner-cvs-all@FreeBSD.ORG Fri Aug 4 21:27:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6E8116A4EE; Fri, 4 Aug 2006 21:27:40 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7DBE043D49; Fri, 4 Aug 2006 21:27:40 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74LRe6l051984; Fri, 4 Aug 2006 21:27:40 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74LReAR051983; Fri, 4 Aug 2006 21:27:40 GMT (envelope-from brooks) Message-Id: <200608042127.k74LReAR051983@repoman.freebsd.org> From: Brooks Davis Date: Fri, 4 Aug 2006 21:27:40 +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/net if_faith.c if_gif.c if_gre.c if_stf.c if_var.h net_osdep.h src/sys/netinet in_gif.c ip_encap.c src/sys/netinet6 ah_aesxcbcmac.c ah_core.c ah_input.c ah_output.c esp_aesctr.c esp_core.c esp_input.c esp_output.c esp_rijndael.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, 04 Aug 2006 21:27:41 -0000 brooks 2006-08-04 21:27:40 UTC FreeBSD src repository Modified files: sys/net if_faith.c if_gif.c if_gre.c if_stf.c if_var.h sys/netinet in_gif.c ip_encap.c sys/netinet6 ah_aesxcbcmac.c ah_core.c ah_input.c ah_output.c esp_aesctr.c esp_core.c esp_input.c esp_output.c esp_rijndael.c frag6.c icmp6.c in6.c in6_cksum.c in6_gif.c in6_ifattach.c in6_proto.c in6_src.c ip6_forward.c ip6_input.c ip6_mroute.c ip6_output.c ipcomp_core.c ipcomp_input.c ipcomp_output.c ipsec.c mld6.c nd6.c nd6_nbr.c nd6_rtr.c udp6_output.c sys/netkey key.c keydb.c Removed files: sys/net net_osdep.h Log: With exception of the if_name() macro, all definitions in net_osdep.h were unused or already in if_var.h so add if_name() to if_var.h and remove net_osdep.h along with all references to it. Longer term we may want to kill off if_name() entierly since all modern BSDs have if_xname variables rendering it unnecessicary. Revision Changes Path 1.42 +0 -2 src/sys/net/if_faith.c 1.65 +0 -2 src/sys/net/if_gif.c 1.44 +0 -1 src/sys/net/if_gre.c 1.58 +0 -2 src/sys/net/if_stf.c 1.108 +1 -0 src/sys/net/if_var.h 1.17 +0 -337 src/sys/net/net_osdep.h (dead) 1.35 +0 -2 src/sys/netinet/in_gif.c 1.22 +0 -2 src/sys/netinet/ip_encap.c 1.4 +0 -2 src/sys/netinet6/ah_aesxcbcmac.c 1.27 +0 -2 src/sys/netinet6/ah_core.c 1.21 +0 -2 src/sys/netinet6/ah_input.c 1.16 +0 -2 src/sys/netinet6/ah_output.c 1.4 +0 -2 src/sys/netinet6/esp_aesctr.c 1.24 +0 -2 src/sys/netinet6/esp_core.c 1.27 +0 -2 src/sys/netinet6/esp_input.c 1.14 +0 -2 src/sys/netinet6/esp_output.c 1.6 +0 -2 src/sys/netinet6/esp_rijndael.c 1.29 +0 -2 src/sys/netinet6/frag6.c 1.71 +0 -2 src/sys/netinet6/icmp6.c 1.63 +0 -2 src/sys/netinet6/in6.c 1.14 +0 -2 src/sys/netinet6/in6_cksum.c 1.26 +0 -2 src/sys/netinet6/in6_gif.c 1.33 +0 -2 src/sys/netinet6/in6_ifattach.c 1.38 +0 -2 src/sys/netinet6/in6_proto.c 1.39 +0 -2 src/sys/netinet6/in6_src.c 1.34 +0 -2 src/sys/netinet6/ip6_forward.c 1.88 +0 -2 src/sys/netinet6/ip6_input.c 1.38 +0 -2 src/sys/netinet6/ip6_mroute.c 1.104 +0 -2 src/sys/netinet6/ip6_output.c 1.10 +0 -2 src/sys/netinet6/ipcomp_core.c 1.10 +0 -2 src/sys/netinet6/ipcomp_input.c 1.9 +0 -2 src/sys/netinet6/ipcomp_output.c 1.46 +0 -1 src/sys/netinet6/ipsec.c 1.27 +0 -2 src/sys/netinet6/mld6.c 1.66 +0 -2 src/sys/netinet6/nd6.c 1.41 +0 -2 src/sys/netinet6/nd6_nbr.c 1.33 +0 -2 src/sys/netinet6/nd6_rtr.c 1.25 +0 -2 src/sys/netinet6/udp6_output.c 1.75 +0 -2 src/sys/netkey/key.c 1.8 +0 -2 src/sys/netkey/keydb.c From owner-cvs-all@FreeBSD.ORG Fri Aug 4 21:28:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F34E416A4DF; Fri, 4 Aug 2006 21:28:43 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B6DF43D46; Fri, 4 Aug 2006 21:28:43 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74LShZC052072; Fri, 4 Aug 2006 21:28:43 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74LShD7052071; Fri, 4 Aug 2006 21:28:43 GMT (envelope-from marcel) Message-Id: <200608042128.k74LShD7052071@repoman.freebsd.org> From: Marcel Moolenaar Date: Fri, 4 Aug 2006 21:28: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.sbin/kldxref kldxref.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, 04 Aug 2006 21:28:44 -0000 marcel 2006-08-04 21:28:43 UTC FreeBSD src repository Modified files: usr.sbin/kldxref kldxref.c Log: Fix (static) buffer overflow bug. The dest buffer is of size MAXPATHLEN, so dest[MAXPATHLEN] falls outside the buffer. This bug corrupted arenas[0] defined in libc's malloc.c on PowerPC when kldxref is shared, which triggered a delayed SIGSERV. Revision Changes Path 1.13 +1 -1 src/usr.sbin/kldxref/kldxref.c From owner-cvs-all@FreeBSD.ORG Fri Aug 4 21:29:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AC8216A503; Fri, 4 Aug 2006 21:29:23 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F46943D46; Fri, 4 Aug 2006 21:29:23 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74LTNSH052134; Fri, 4 Aug 2006 21:29:23 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74LTNXV052133; Fri, 4 Aug 2006 21:29:23 GMT (envelope-from brooks) Message-Id: <200608042129.k74LTNXV052133@repoman.freebsd.org> From: Brooks Davis Date: Fri, 4 Aug 2006 21:29: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 ObsoleteFiles.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, 04 Aug 2006 21:29:23 -0000 brooks 2006-08-04 21:29:23 UTC FreeBSD src repository Modified files: . ObsoleteFiles.inc Log: The KAME compatability shims in net_osdep.h have been removed. Revision Changes Path 1.42 +2 -0 src/ObsoleteFiles.inc From owner-cvs-all@FreeBSD.ORG Fri Aug 4 21:29:26 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8836916A538; Fri, 4 Aug 2006 21:29:25 +0000 (UTC) (envelope-from bsam@ipt.ru) Received: from mail.ipt.ru (mail.ipt.ru [80.253.10.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 22F4D43D53; Fri, 4 Aug 2006 21:29:24 +0000 (GMT) (envelope-from bsam@ipt.ru) Received: from srv.sem.ipt.ru ([192.168.12.1]) by mail.ipt.ru with esmtp (Exim 4.62 (FreeBSD)) (envelope-from ) id 1G97EQ-0009Qo-Js; Sat, 05 Aug 2006 01:29:22 +0400 Received: from bsam by srv.sem.ipt.ru with local (Exim 4.62 (FreeBSD)) (envelope-from ) id 1G97DG-000Nhp-Nq; Sat, 05 Aug 2006 01:28:10 +0400 To: Jose Alonso Cardenas Marquez References: <200608041503.k74F3ue8099443@repoman.freebsd.org> <20060804200511.38b93e90@Magellan.Leidinger.net> From: Boris Samorodov Date: Sat, 05 Aug 2006 01:28:10 +0400 In-Reply-To: <20060804200511.38b93e90@Magellan.Leidinger.net> (Alexander Leidinger's message of "Fri, 4 Aug 2006 20:05:11 +0200") Message-ID: <93400997@srv.sem.ipt.ru> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: garga@freebsd.org, Alexander Leidinger , cvs-ports@freebsd.org, cvs-all@freebsd.org, ports-committers@freebsd.org Subject: Re: cvs commit: ports/security Makefile ports/security/linux-krb5-libs Makefile distinfo.i386 ports/security/linux-openssl Makefile distinfo.i386 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, 04 Aug 2006 21:29:26 -0000 On Fri, 4 Aug 2006 20:05:11 +0200 Alexander Leidinger wrote: > Quoting Jose Alonso Cardenas Marquez (Fri, 4 Aug 2006 15:03:55 +0000 (UTC)): > > acm 2006-08-04 15:03:55 UTC > > > > FreeBSD ports repository > > > > Modified files: > > security Makefile > > Added files: > > security/linux-krb5-libs Makefile distinfo.i386 > > security/linux-openssl Makefile distinfo.i386 pkg-plist > > Log: > > - New port: security/linux-krb5-libs > > > > Kerberos V5 is an authentication system developed at MIT. > bsam and I talked about making the default linux_base port "mostly > ready" for ldap and krb5. This means we would like to make it work out > of the box as much as possible. This also means that we need to include > the krb5 libs into the linux base port and making a > copy/link/fallthrough to the FreeBSD config. This would make this port > obsolete. > Any help is appreciated. > Aside from this: AUTOMATIC_PLIST and perhaps BRANDELF_* stuff as in my > comments for linux-curl. And there is a newer binary for linux-krb5-libs for Fedora Core 4 at updates. > > (Linux version) > > > > WWW: http://web.mit.edu/kerberos/ > > > > - New port: security/linux-openssl > This one has a plist, that's nice. But you need to add > BRANDELF_FILES=... to the Makefile. And maybe it is a good idea to make > a link from the linux openssl.cnf to the FreeBSD one (or not, I didn't > had a deep look at it). WBR -- Boris Samorodov (bsam) Research Engineer, http://www.ipt.ru Telephone & Internet SP FreeBSD committer, http://www.FreeBSD.org The Power To Serve From owner-cvs-all@FreeBSD.ORG Fri Aug 4 21:29:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 237D016A4F6; Fri, 4 Aug 2006 21:29:40 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF54F43D45; Fri, 4 Aug 2006 21:29:39 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74LTd75052190; Fri, 4 Aug 2006 21:29:39 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74LTdEX052189; Fri, 4 Aug 2006 21:29:39 GMT (envelope-from marcel) Message-Id: <200608042129.k74LTdEX052189@repoman.freebsd.org> From: Marcel Moolenaar Date: Fri, 4 Aug 2006 21:29: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/usr.sbin/kldxref 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, 04 Aug 2006 21:29:40 -0000 marcel 2006-08-04 21:29:39 UTC FreeBSD src repository Modified files: usr.sbin/kldxref Makefile Log: Build shared on PowerPC now that the bug has been found and fixed. Revision Changes Path 1.10 +0 -4 src/usr.sbin/kldxref/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 4 21:35:28 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 82D5E16A4DE; Fri, 4 Aug 2006 21:35:28 +0000 (UTC) (envelope-from peterjeremy@optushome.com.au) Received: from mail32.syd.optusnet.com.au (mail32.syd.optusnet.com.au [211.29.132.63]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EF4743D76; Fri, 4 Aug 2006 21:35:22 +0000 (GMT) (envelope-from peterjeremy@optushome.com.au) Received: from turion.vk2pj.dyndns.org (c220-239-19-236.belrs4.nsw.optusnet.com.au [220.239.19.236]) by mail32.syd.optusnet.com.au (8.12.11/8.12.11) with ESMTP id k74LZEmS017994 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Sat, 5 Aug 2006 07:35:15 +1000 Received: from turion.vk2pj.dyndns.org (localhost.vk2pj.dyndns.org [127.0.0.1]) by turion.vk2pj.dyndns.org (8.13.6/8.13.6) with ESMTP id k74LZEDC050146; Sat, 5 Aug 2006 07:35:14 +1000 (EST) (envelope-from peter@turion.vk2pj.dyndns.org) Received: (from peter@localhost) by turion.vk2pj.dyndns.org (8.13.6/8.13.6/Submit) id k74LZEHF050145; Sat, 5 Aug 2006 07:35:14 +1000 (EST) (envelope-from peter) Date: Sat, 5 Aug 2006 07:35:14 +1000 From: Peter Jeremy To: Marcel Moolenaar Message-ID: <20060804213514.GA760@turion.vk2pj.dyndns.org> References: <200608030959.k739x9N6007207@repoman.freebsd.org> <44D22E2F.4070307@errno.com> <20060803180854.GI97316@comp.chem.msu.su> <200608031458.01134.jhb@freebsd.org> <20060804070348.GR97316@comp.chem.msu.su> <6B15CBE0-00E0-4F64-A652-4A4B614975C2@xcllnt.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="oyUTqETQ0mS9luUI" Content-Disposition: inline In-Reply-To: <6B15CBE0-00E0-4F64-A652-4A4B614975C2@xcllnt.net> X-PGP-Key: http://members.optusnet.com.au/peterjeremy/pubkey.asc User-Agent: Mutt/1.5.11 Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/net if_vlan.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, 04 Aug 2006 21:35:28 -0000 --oyUTqETQ0mS9luUI Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, 2006-Aug-04 09:23:52 -0700, Marcel Moolenaar wrote: >So, putting the kdb_backtrace() under KDB is not a matter of said >function not being present without KDB, it's that we don't want >to emit backtraces when debugging is not enabled. Backtraces are >a debugging tool and it makes sense to emit them only when the >kernel is configured for debugging. I'm not sure this follows. Consider the average end-user who has hir system spit out a "something has gone screwy" error. They post the message into one of the FreeBSD lists and are then told that they need to rebuild their kernel with KDB and DDB, reproduce the error, maybe issue a few magic incantations and post the result. Making backtraces either unconditional or run-time conditional (ie a sysctl to enable/disable them) should remove one interation through the mailing lists and improve the quality of support as seen by users. One of the drivers for DTrace was the view that you can't separate debugging and production because the difficult problems only occur in a production environment. Therefore you need to have a production system that has all your debugging tools available but with no debugging overheads until a problem occurs. IMHO, having kdb_backtrace() invoked unconditionally is a step towards this (as is having debug versions of -RELEASE kernels available). --=20 Peter Jeremy --oyUTqETQ0mS9luUI Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFE072R/opHv/APuIcRAqo1AJ0eTgQfVcWQId262HVpa73omKQTNgCeIqkd KYHvM7I7YcoEaKrfrG6zEuw= =KUna -----END PGP SIGNATURE----- --oyUTqETQ0mS9luUI-- From owner-cvs-all@FreeBSD.ORG Fri Aug 4 21:45:09 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A328616A4DF; Fri, 4 Aug 2006 21:45:09 +0000 (UTC) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E8B643D45; Fri, 4 Aug 2006 21:45:09 +0000 (GMT) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74Lj9T7053609; Fri, 4 Aug 2006 21:45:09 GMT (envelope-from jb@repoman.freebsd.org) Received: (from jb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74Lj9jr053604; Fri, 4 Aug 2006 21:45:09 GMT (envelope-from jb) Message-Id: <200608042145.k74Lj9jr053604@repoman.freebsd.org> From: John Birrell Date: Fri, 4 Aug 2006 21:45: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/tools/regression/fsx fsx.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, 04 Aug 2006 21:45:09 -0000 jb 2006-08-04 21:45:08 UTC FreeBSD src repository Modified files: tools/regression/fsx fsx.c Log: Fix for architectures where sizeof(void *) > sizeof(int). Revision Changes Path 1.4 +2 -2 src/tools/regression/fsx/fsx.c From owner-cvs-all@FreeBSD.ORG Fri Aug 4 22:44:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1373916A4DE; Fri, 4 Aug 2006 22:44:34 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA84E43D46; Fri, 4 Aug 2006 22:44:33 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74MiXOr061886; Fri, 4 Aug 2006 22:44:33 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74MiX4f061885; Fri, 4 Aug 2006 22:44:33 GMT (envelope-from miwi) Message-Id: <200608042244.k74MiX4f061885@repoman.freebsd.org> From: Martin Wilke Date: Fri, 4 Aug 2006 22:44: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/x11-themes/gtk-qt-engine Makefile distinfo pkg-plist ports/x11-themes/gtk-qt-engine/files patch-src__qt_theme_draw.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, 04 Aug 2006 22:44:34 -0000 miwi 2006-08-04 22:44:33 UTC FreeBSD ports repository Modified files: x11-themes/gtk-qt-engine Makefile distinfo pkg-plist Removed files: x11-themes/gtk-qt-engine/files patch-src__qt_theme_draw.c Log: - Update to version 0.7 - Update MASTER_SITE PR: ports/101030 Submitted by: Danny Pansters Approved by: krion (mentor) Revision Changes Path 1.19 +9 -12 ports/x11-themes/gtk-qt-engine/Makefile 1.6 +3 -3 ports/x11-themes/gtk-qt-engine/distinfo 1.2 +0 -10 ports/x11-themes/gtk-qt-engine/files/patch-src__qt_theme_draw.c (dead) 1.5 +9 -6 ports/x11-themes/gtk-qt-engine/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 4 22:54:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 481CF16A4DD; Fri, 4 Aug 2006 22:54:11 +0000 (UTC) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7B3543D46; Fri, 4 Aug 2006 22:54:10 +0000 (GMT) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74MsA5f066374; Fri, 4 Aug 2006 22:54:10 GMT (envelope-from jb@repoman.freebsd.org) Received: (from jb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74MsAw5066373; Fri, 4 Aug 2006 22:54:10 GMT (envelope-from jb) Message-Id: <200608042254.k74MsAw5066373@repoman.freebsd.org> From: John Birrell Date: Fri, 4 Aug 2006 22:54: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: src/sys/sys types.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, 04 Aug 2006 22:54:11 -0000 jb 2006-08-04 22:54:10 UTC FreeBSD src repository Modified files: sys/sys types.h Log: Add some compatibility definitions for OpenSolaris source. These are only defined if _SOLARIS_C_SOURCE is defined, so they don't polute the FreeBSD compile environment. They are used all over the OpenSolaris source, so defining them here removes the need to continually resolve differences in FreeBSD system haeder files from Solaris header files. Revision Changes Path 1.96 +30 -0 src/sys/sys/types.h From owner-cvs-all@FreeBSD.ORG Fri Aug 4 23:02:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A25616A4DD; Fri, 4 Aug 2006 23:02:25 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0BD943D45; Fri, 4 Aug 2006 23:02:24 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74N2OGU066862; Fri, 4 Aug 2006 23:02:24 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74N2O25066861; Fri, 4 Aug 2006 23:02:24 GMT (envelope-from erwin) Message-Id: <200608042302.k74N2O25066861@repoman.freebsd.org> From: Erwin Lansing Date: Fri, 4 Aug 2006 23: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/audio/mp3gain Makefile ports/audio/mp3gain/files Makefile.main X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Aug 2006 23:02:25 -0000 erwin 2006-08-04 23:02:24 UTC FreeBSD ports repository Modified files: audio/mp3gain Makefile audio/mp3gain/files Makefile.main Log: Fix after the DESTDIR addition Revision Changes Path 1.10 +0 -2 ports/audio/mp3gain/Makefile 1.3 +1 -3 ports/audio/mp3gain/files/Makefile.main From owner-cvs-all@FreeBSD.ORG Fri Aug 4 23:10:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 114C016A4DF; Fri, 4 Aug 2006 23:10:17 +0000 (UTC) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0C2143D60; Fri, 4 Aug 2006 23:10:11 +0000 (GMT) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74NABEK068394; Fri, 4 Aug 2006 23:10:11 GMT (envelope-from jb@repoman.freebsd.org) Received: (from jb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74NABOv068393; Fri, 4 Aug 2006 23:10:11 GMT (envelope-from jb) Message-Id: <200608042310.k74NABOv068393@repoman.freebsd.org> From: John Birrell Date: Fri, 4 Aug 2006 23:10: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/sys time.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, 04 Aug 2006 23:10:18 -0000 jb 2006-08-04 23:10:11 UTC FreeBSD src repository Modified files: sys/sys time.h Log: Add some OpenSolaris compatibility definitions which are only visible if _SOLARIS_C_SOURCE is defined. Add two function prototypes which are required to feed high-resolution times to DTrace. DTrace requires it's own functions with the dtrace_ prefix so that it knows not to try and trace them. This is a rule that code executed from the DTrace probe context must obey. The two functions are only be compiled if the KDTRACE option is defined to compile in kernel support for loading the DTrace modules. Revision Changes Path 1.72 +25 -0 src/sys/sys/time.h From owner-cvs-all@FreeBSD.ORG Fri Aug 4 23:15:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E6E316A4DD; Fri, 4 Aug 2006 23:15:30 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from sippysoft.com (gk.360sip.com [72.236.70.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 936DC43D49; Fri, 4 Aug 2006 23:15:27 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.1.56] ([204.244.149.125]) (authenticated bits=0) by sippysoft.com (8.13.6/8.13.6) with ESMTP id k74NFOVI066363 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 4 Aug 2006 16:15:25 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-ID: <44D3D4ED.3000504@FreeBSD.org> Date: Fri, 04 Aug 2006 16:14:53 -0700 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: Marcel Moolenaar References: <200608042128.k74LShD7052071@repoman.freebsd.org> In-Reply-To: <200608042128.k74LShD7052071@repoman.freebsd.org> Content-Type: text/plain; charset=KOI8-U; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/kldxref kldxref.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, 04 Aug 2006 23:15:30 -0000 Thanks! I saw this crash as well, but did not have a gdb working to inspect the core file at that time. -Maxim Marcel Moolenaar wrote: > marcel 2006-08-04 21:28:43 UTC > > FreeBSD src repository > > Modified files: > usr.sbin/kldxref kldxref.c > Log: > Fix (static) buffer overflow bug. The dest buffer is of size MAXPATHLEN, > so dest[MAXPATHLEN] falls outside the buffer. This bug corrupted > arenas[0] defined in libc's malloc.c on PowerPC when kldxref is shared, > which triggered a delayed SIGSERV. > > Revision Changes Path > 1.13 +1 -1 src/usr.sbin/kldxref/kldxref.c > > From owner-cvs-all@FreeBSD.ORG Fri Aug 4 23:22:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F13B316A4DF; Fri, 4 Aug 2006 23:22:00 +0000 (UTC) (envelope-from marcel@xcllnt.net) Received: from ns1.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BA2443D46; Fri, 4 Aug 2006 23:22:00 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from [192.168.5.252] (dhcp52.wlan.xcllnt.net [192.168.5.252]) by ns1.xcllnt.net (8.13.6/8.13.6) with ESMTP id k74NLxIm089303; Fri, 4 Aug 2006 16:22:00 -0700 (PDT) (envelope-from marcel@xcllnt.net) In-Reply-To: <44D3D4ED.3000504@FreeBSD.org> References: <200608042128.k74LShD7052071@repoman.freebsd.org> <44D3D4ED.3000504@FreeBSD.org> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Marcel Moolenaar Date: Fri, 4 Aug 2006 16:21:47 -0700 To: Maxim Sobolev X-Mailer: Apple Mail (2.752.2) Cc: cvs-src@FreeBSD.org, Marcel Moolenaar , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/kldxref kldxref.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, 04 Aug 2006 23:22:01 -0000 On Aug 4, 2006, at 4:14 PM, Maxim Sobolev wrote: > Thanks! I saw this crash as well, but did not have a gdb working to > inspect the core file at that time. I have a native gdb 6.5 that allowed me to work on a live process. Thanks in a big part to you, I might add :-) -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-all@FreeBSD.ORG Fri Aug 4 23:28:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D4F316A4DA; Fri, 4 Aug 2006 23:28:31 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from sippysoft.com (gk.360sip.com [72.236.70.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C3F343D45; Fri, 4 Aug 2006 23:28:30 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.1.56] ([204.244.149.125]) (authenticated bits=0) by sippysoft.com (8.13.6/8.13.6) with ESMTP id k74NSRtp066503 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 4 Aug 2006 16:28:28 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-ID: <44D3D7FC.5070507@FreeBSD.org> Date: Fri, 04 Aug 2006 16:27:56 -0700 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: Marcel Moolenaar References: <200608042128.k74LShD7052071@repoman.freebsd.org> <44D3D4ED.3000504@FreeBSD.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, Marcel Moolenaar , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/kldxref kldxref.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, 04 Aug 2006 23:28:31 -0000 Marcel Moolenaar wrote: > > On Aug 4, 2006, at 4:14 PM, Maxim Sobolev wrote: > >> Thanks! I saw this crash as well, but did not have a gdb working to >> inspect the core file at that time. > > I have a native gdb 6.5 that allowed me to work on a live process. > Thanks in a big part to you, I might add :-) Most of the credit should go to Andreas Tobler actually. :-) BTW, do you plan to commit your GDB changes into the tree? Since with current patches for gdb6 port it still doesn't work on live processes, and I don't have a time to track it down. -Maxim From owner-cvs-all@FreeBSD.ORG Fri Aug 4 23:31:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0F1216A4DE; Fri, 4 Aug 2006 23:31:16 +0000 (UTC) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CB4B43D46; Fri, 4 Aug 2006 23:31:16 +0000 (GMT) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74NVG4E069760; Fri, 4 Aug 2006 23:31:16 GMT (envelope-from jb@repoman.freebsd.org) Received: (from jb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74NVGTU069759; Fri, 4 Aug 2006 23:31:16 GMT (envelope-from jb) Message-Id: <200608042331.k74NVGTU069759@repoman.freebsd.org> From: John Birrell Date: Fri, 4 Aug 2006 23:31: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/sys systm.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, 04 Aug 2006 23:31:16 -0000 jb 2006-08-04 23:31:16 UTC FreeBSD src repository Modified files: sys/sys systm.h Log: Add a type definition for the cyclic timer callback function. The cyclic timer is a high-resolution timer allows timeouts at nanosecond intervals where hardware support is available. Typically on i386 there is no HPET (high performance event timer) like the one Intel started specifying some time in 2004, so the best that tye cyclic timer subsystem can do is run at Hz. The cyclic timer code itself is ported from OpenSolaris and is covered by the CDDL, so it is only loaded as a module. This function type definition is used in machine-dependent code to provide a hook for the module to register it's callback function. Revision Changes Path 1.242 +6 -0 src/sys/sys/systm.h From owner-cvs-all@FreeBSD.ORG Fri Aug 4 23:47:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 52CBF16A4DD; Fri, 4 Aug 2006 23:47:31 +0000 (UTC) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A70A43D45; Fri, 4 Aug 2006 23:47:31 +0000 (GMT) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k74NlVva073308; Fri, 4 Aug 2006 23:47:31 GMT (envelope-from jb@repoman.freebsd.org) Received: (from jb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k74NlU5k073307; Fri, 4 Aug 2006 23:47:30 GMT (envelope-from jb) Message-Id: <200608042347.k74NlU5k073307@repoman.freebsd.org> From: John Birrell Date: Fri, 4 Aug 2006 23:47: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/sys stat.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, 04 Aug 2006 23:47:31 -0000 jb 2006-08-04 23:47:30 UTC FreeBSD src repository Modified files: sys/sys stat.h Log: Add OpenSolaris compatibility definitions for stat64 and fstat64 which are only visible if _SOLARIS_C_SOURCE is defined. Note thar FreeBSD stat() and fstat() are 64-bit functions now and Solaris still persists with both 32- and 64-bit versions. When I query this, I am referred to: . But when you look at the main page of unix.org you will see that the Single Unix Specification is the most recent standard they are pushing. And there are no stat64() fstat64() functions defined there. I guess this just goes to prove that there are so many standards, you can take your pick. Revision Changes Path 1.42 +8 -0 src/sys/sys/stat.h From owner-cvs-all@FreeBSD.ORG Sat Aug 5 00:13:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FB5016A4DD; Sat, 5 Aug 2006 00:13:10 +0000 (UTC) (envelope-from marcel@xcllnt.net) Received: from ns1.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id C882143D46; Sat, 5 Aug 2006 00:13:09 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from [192.168.5.252] (dhcp52.wlan.xcllnt.net [192.168.5.252]) by ns1.xcllnt.net (8.13.6/8.13.6) with ESMTP id k750D9SP042013; Fri, 4 Aug 2006 17:13:09 -0700 (PDT) (envelope-from marcel@xcllnt.net) In-Reply-To: <44D3D7FC.5070507@FreeBSD.org> References: <200608042128.k74LShD7052071@repoman.freebsd.org> <44D3D4ED.3000504@FreeBSD.org> <44D3D7FC.5070507@FreeBSD.org> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <233F3705-47A4-4F01-9A34-9FE33DE1E702@xcllnt.net> Content-Transfer-Encoding: 7bit From: Marcel Moolenaar Date: Fri, 4 Aug 2006 17:12:56 -0700 To: Maxim Sobolev X-Mailer: Apple Mail (2.752.2) Cc: cvs-src@FreeBSD.org, Marcel Moolenaar , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/kldxref kldxref.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, 05 Aug 2006 00:13:10 -0000 On Aug 4, 2006, at 4:27 PM, Maxim Sobolev wrote: > Marcel Moolenaar wrote: >> On Aug 4, 2006, at 4:14 PM, Maxim Sobolev wrote: >>> Thanks! I saw this crash as well, but did not have a gdb working >>> to inspect the core file at that time. >> I have a native gdb 6.5 that allowed me to work on a live process. >> Thanks in a big part to you, I might add :-) > > Most of the credit should go to Andreas Tobler actually. :-) > > BTW, do you plan to commit your GDB changes into the tree? Since > with current patches for gdb6 port it still doesn't work on live > processes, and I don't have a time to track it down. Yes, I'm preparing a new GDB import. This unfortunately involves a lot of additional work, so it may take a bit longer than a normal import would need. The point is that the additional work has to be done once, after which new imports should be pretty easy... -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-all@FreeBSD.ORG Sat Aug 5 01:18:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53B5116A4DD; Sat, 5 Aug 2006 01:18:31 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86BFC43D46; Sat, 5 Aug 2006 01:18:30 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k751IShf087539; Sat, 5 Aug 2006 01:18:28 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k751ISB8087538; Sat, 5 Aug 2006 01:18:28 GMT (envelope-from edwin) Message-Id: <200608050118.k751ISB8087538@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Aug 2006 01:18: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/devel/flatzebra 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, 05 Aug 2006 01:18:31 -0000 edwin 2006-08-05 01:18:28 UTC FreeBSD ports repository Modified files: devel/flatzebra Makefile Log: INSTALLS_SHLIB -> USE_LDCONFIG Revision Changes Path 1.2 +1 -1 ports/devel/flatzebra/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 5 01:19:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB9DE16A4DA; Sat, 5 Aug 2006 01:19:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B4E143D45; Sat, 5 Aug 2006 01:19:16 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k751JGCv087587; Sat, 5 Aug 2006 01:19:16 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k751JGjK087586; Sat, 5 Aug 2006 01:19:16 GMT (envelope-from edwin) Message-Id: <200608050119.k751JGjK087586@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Aug 2006 01:19: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/ngrep-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: Sat, 05 Aug 2006 01:19:16 -0000 edwin 2006-08-05 01:19:16 UTC FreeBSD ports repository Modified files: net/ngrep-lib Makefile Log: INSTALLS_SHLIB -> USE_LDCONFIG Revision Changes Path 1.9 +1 -1 ports/net/ngrep-lib/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 5 01:34:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE3E316A4DA; Sat, 5 Aug 2006 01:34:17 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CC3A43D53; Sat, 5 Aug 2006 01:34:17 +0000 (GMT) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k751YHu7088292; Sat, 5 Aug 2006 01:34:17 GMT (envelope-from cy@repoman.freebsd.org) Received: (from cy@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k751YHOV088291; Sat, 5 Aug 2006 01:34:17 GMT (envelope-from cy) Message-Id: <200608050134.k751YHOV088291@repoman.freebsd.org> From: Cy Schubert Date: Sat, 5 Aug 2006 01:34: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/net/ntp 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, 05 Aug 2006 01:34:17 -0000 cy 2006-08-05 01:34:17 UTC FreeBSD ports repository Modified files: net/ntp Makefile Log: Distfile source directory has changed. Revision Changes Path 1.44 +4 -4 ports/net/ntp/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 5 01:37:28 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9DC5616A4DA for ; Sat, 5 Aug 2006 01:37:28 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from mail8.hsphere.cc (mail8.hsphere.cc [216.157.145.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28F8343D5F for ; Sat, 5 Aug 2006 01:37:25 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: (qmail 30444 invoked by uid 89); 5 Aug 2006 01:37:25 -0000 Received: from unknown (HELO HellFire.BSD.org.pe) (acardenas@bsd.org.pe@200.121.122.125) by mail8.hsphere.cc with SMTP; 5 Aug 2006 01:37:25 -0000 Date: Fri, 4 Aug 2006 20:37:25 -0500 From: Jose Alonso Cardenas Marquez To: Alexander Leidinger Message-Id: <20060804203725.efb1e8df.acm@FreeBSD.org> In-Reply-To: <20060804195623.564c8a6e@Magellan.Leidinger.net> References: <200608041438.k74Ec3Wr096494@repoman.freebsd.org> <20060804195623.564c8a6e@Magellan.Leidinger.net> Organization: FreeBSD X-Mailer: Sylpheed version 2.2.7 (GTK+ 2.8.20; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: cvs-ports@freebsd.org, Jose Alonso Cardenas Marquez , garga@freebsd.org, cvs-all@freebsd.org, ports-committers@freebsd.org Subject: Re: cvs commit: ports/ftp Makefile ports/ftp/linux-curl Makefile distinfo.i386 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Aug 2006 01:37:28 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Fri, 4 Aug 2006 19:56:23 +0200 Alexander Leidinger wrote: > Please have a look at the handbook (as told in the description of > AUTOMATIC_PLIST in bsd.linux-rpm.mk). There you can find some words > about using static plists instead of plists which are generated at > build time. The linux infrastructure ports are definitively cases where > we can provide a static plist. Now i have plist files for all my new linux ports. could you see it at http://hellfire.no-ip.org/ports/, maybe you could tell me if some things still are bad. Also I updated linux-krb5-libs to 1.4.1 (boris thanks). I'll send these changes to garga@ if these ports has not any problems again. About the krb5 libs into the linux base port, i could help you but I need take a look of linux_base. > Because of this I can't determine if this port contains just the lib or > other stuff too. A way to just install the lib in case it is needed as > a dependency would be nice, in case there's no reason to install the > curl binary. Currently I can't come up with a reason why we need the > curl binary, is there one I don't think of? I need the linux-curl for games/linux-warsow. It's a dependency > In case there is a reason for the curl binary: the port is missing some > BRANDELF_* stuff. Done > Feel free to ask on emulation@ for review of linux ports. Thanks :) > Bye, > Alexander. > Greetings ACM - ---- Jose Alonso Cardenas Marquez | http://www.FreeBSD.org acm@FreeBSD.org | http://www.BSD.org.pe GnuPG Key: http://www.FreeBSD.org/~acm/pgp/pubkey.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFE0/ZVGV/UqJshvBkRArv9AKCCovVK0WYPIw086RaJ298gu7yC0ACghN6T 36cCrDWMqgdLWND4mQ3sA40= =fnGI -----END PGP SIGNATURE----- From owner-cvs-all@FreeBSD.ORG Sat Aug 5 03:09:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B81B216A4DE; Sat, 5 Aug 2006 03:09:58 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E40043D46; Sat, 5 Aug 2006 03:09:58 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7539wWf095085; Sat, 5 Aug 2006 03:09:58 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7539w6M095084; Sat, 5 Aug 2006 03:09:58 GMT (envelope-from acm) Message-Id: <200608050309.k7539w6M095084@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Sat, 5 Aug 2006 03:09: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/games/linux-warsow 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, 05 Aug 2006 03:09:58 -0000 acm 2006-08-05 03:09:57 UTC FreeBSD ports repository Modified files: games/linux-warsow Makefile Log: - PORTEPOCH bump Approved by: garga (garga) Revision Changes Path 1.4 +1 -0 ports/games/linux-warsow/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 5 03:20:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5393E16A4E0; Sat, 5 Aug 2006 03:20:28 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D69A443D46; Sat, 5 Aug 2006 03:20:27 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k753KR0H095649; Sat, 5 Aug 2006 03:20:27 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k753KR3K095648; Sat, 5 Aug 2006 03:20:27 GMT (envelope-from rafan) Message-Id: <200608050320.k753KR3K095648@repoman.freebsd.org> From: Rong-En Fan Date: Sat, 5 Aug 2006 03:20: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/security/p5-Crypt-OICQ 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, 05 Aug 2006 03:20:28 -0000 rafan 2006-08-05 03:20:27 UTC FreeBSD ports repository Modified files: security/p5-Crypt-OICQ pkg-plist Log: - Fix pkg-plist Noticed by: pointyhat via erwin Pointyhat to: rafan Revision Changes Path 1.2 +1 -0 ports/security/p5-Crypt-OICQ/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 5 04:18:45 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C284616A4DA; Sat, 5 Aug 2006 04:18:45 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 439D143D46; Sat, 5 Aug 2006 04:18:45 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k754IjPS000771; Sat, 5 Aug 2006 04:18:45 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k754IjZd000770; Sat, 5 Aug 2006 04:18:45 GMT (envelope-from ahze) Message-Id: <200608050418.k754IjZd000770@repoman.freebsd.org> From: Michael Johnson Date: Sat, 5 Aug 2006 04:18: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/www/mozilla-devel Makefile ports/www/mozilla-devel/files patch-extensions_p3p_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: Sat, 05 Aug 2006 04:18:45 -0000 ahze 2006-08-05 04:18:45 UTC FreeBSD ports repository Modified files: www/mozilla-devel Makefile Added files: www/mozilla-devel/files patch-extensions_p3p_Makefile.in Log: - Fix build with new gmake - Use MASTER_SITES_MOZILLA_EXTENDED Revision Changes Path 1.238 +2 -8 ports/www/mozilla-devel/Makefile 1.1 +30 -0 ports/www/mozilla-devel/files/patch-extensions_p3p_Makefile.in (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 5 04:21:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 535A116A4DD; Sat, 5 Aug 2006 04:21:21 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B74843D49; Sat, 5 Aug 2006 04:21:21 +0000 (GMT) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k754LKvN000985; Sat, 5 Aug 2006 04:21:20 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k754LKRR000984; Sat, 5 Aug 2006 04:21:20 GMT (envelope-from mjacob) Message-Id: <200608050421.k754LKRR000984@repoman.freebsd.org> From: Matt Jacob Date: Sat, 5 Aug 2006 04:21: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/isp isp.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, 05 Aug 2006 04:21:21 -0000 mjacob 2006-08-05 04:21:20 UTC FreeBSD src repository Modified files: sys/dev/isp isp.c Log: Remove reference to PTI cards. They haven't been functioning or around for probably at least 5 years. Revision Changes Path 1.125 +0 -15 src/sys/dev/isp/isp.c From owner-cvs-all@FreeBSD.ORG Sat Aug 5 04:48:57 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B7C3216A4E0; Sat, 5 Aug 2006 04:48:57 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A20743D46; Sat, 5 Aug 2006 04:48:57 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k754mvxE010043; Sat, 5 Aug 2006 04:48:57 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k754mvHg010042; Sat, 5 Aug 2006 04:48:57 GMT (envelope-from vanilla) Message-Id: <200608050448.k754mvHg010042@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Sat, 5 Aug 2006 04:48:56 +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/developers-handbook/introduction chapter.sgml doc/zh_TW.Big5/books/developers-handbook/tools 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, 05 Aug 2006 04:48:57 -0000 vanilla 2006-08-05 04:48:56 UTC FreeBSD doc repository Modified files: zh_TW.Big5/books/developers-handbook/introduction chapter.sgml zh_TW.Big5/books/developers-handbook/tools chapter.sgml Log: - Update developers-handbook. PR: docs/101388 Submitted by: chinsan.tw at gmail.com Revision Changes Path 1.3 +2 -4 doc/zh_TW.Big5/books/developers-handbook/introduction/chapter.sgml 1.3 +123 -198 doc/zh_TW.Big5/books/developers-handbook/tools/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sat Aug 5 04:50:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F4FC16A4DE; Sat, 5 Aug 2006 04:50:39 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC5FA43D4C; Sat, 5 Aug 2006 04:50:38 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k754ocBR010173; Sat, 5 Aug 2006 04:50:38 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k754ocKu010172; Sat, 5 Aug 2006 04:50:38 GMT (envelope-from vanilla) Message-Id: <200608050450.k754ocKu010172@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Sat, 5 Aug 2006 04:50:38 +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/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: Sat, 05 Aug 2006 04:50:39 -0000 vanilla 2006-08-05 04:50:38 UTC FreeBSD doc repository Modified files: zh_TW.Big5/books/handbook book.sgml Log: - Update handbook/book.sgml PR: docs/101389 Submitted by: chinsan.tw at gmail.com Revision Changes Path 1.5 +3 -3 doc/zh_TW.Big5/books/handbook/book.sgml From owner-cvs-all@FreeBSD.ORG Sat Aug 5 04:52:06 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E900616A4DD; Sat, 5 Aug 2006 04:52:05 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CE8543D45; Sat, 5 Aug 2006 04:52:05 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k754q5sQ010286; Sat, 5 Aug 2006 04:52:05 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k754q5BA010285; Sat, 5 Aug 2006 04:52:05 GMT (envelope-from vanilla) Message-Id: <200608050452.k754q5BA010285@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Sat, 5 Aug 2006 04:52:05 +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/handbook/linuxemu 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, 05 Aug 2006 04:52:06 -0000 vanilla 2006-08-05 04:52:05 UTC FreeBSD doc repository Modified files: zh_TW.Big5/books/handbook/linuxemu chapter.sgml Log: - Update handbook/linuxemu PR: docs/101390 Submitted by: chinsan.tw at gmail.com Revision Changes Path 1.4 +43 -60 doc/zh_TW.Big5/books/handbook/linuxemu/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sat Aug 5 04:53:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B43E816A4DA; Sat, 5 Aug 2006 04:53:21 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69BE943D45; Sat, 5 Aug 2006 04:53:21 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k754rLZ9010326; Sat, 5 Aug 2006 04:53:21 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k754rLB1010325; Sat, 5 Aug 2006 04:53:21 GMT (envelope-from vanilla) Message-Id: <200608050453.k754rLB1010325@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Sat, 5 Aug 2006 04:53: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/zh_TW.Big5/books/handbook/multimedia 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, 05 Aug 2006 04:53:21 -0000 vanilla 2006-08-05 04:53:21 UTC FreeBSD doc repository Modified files: zh_TW.Big5/books/handbook/multimedia chapter.sgml Log: - Update handbook/multimedia PR: docs/101391 Submitted by: chinsan.tw at gmail.com Revision Changes Path 1.6 +14 -18 doc/zh_TW.Big5/books/handbook/multimedia/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sat Aug 5 04:58:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7EB0E16A4DF; Sat, 5 Aug 2006 04:58:26 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 33DB543D45; Sat, 5 Aug 2006 04:58:26 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k754wQx2010553; Sat, 5 Aug 2006 04:58:26 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k754wQW2010552; Sat, 5 Aug 2006 04:58:26 GMT (envelope-from sam) Message-Id: <200608050458.k754wQW2010552@repoman.freebsd.org> From: Sam Leffler Date: Sat, 5 Aug 2006 04:58: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/dev/wi if_wavelan_ieee.h if_wi.c if_wireg.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, 05 Aug 2006 04:58:26 -0000 sam 2006-08-05 04:58:25 UTC FreeBSD src repository Modified files: sys/dev/wi if_wavelan_ieee.h if_wi.c if_wireg.h Log: raw 802.11 packet transmit support Submitted by: Andrea Bittau Revision Changes Path 1.20 +2 -1 src/sys/dev/wi/if_wavelan_ieee.h 1.199 +144 -29 src/sys/dev/wi/if_wi.c 1.45 +1 -0 src/sys/dev/wi/if_wireg.h From owner-cvs-all@FreeBSD.ORG Sat Aug 5 05:07:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D96C216A4DA; Sat, 5 Aug 2006 05:07:17 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9013E43D46; Sat, 5 Aug 2006 05:07:17 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7557Hne012312; Sat, 5 Aug 2006 05:07:17 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7557HkF012311; Sat, 5 Aug 2006 05:07:17 GMT (envelope-from sam) Message-Id: <200608050507.k7557HkF012311@repoman.freebsd.org> From: Sam Leffler Date: Sat, 5 Aug 2006 05:07: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/dev/ath if_ath.c if_athioctl.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, 05 Aug 2006 05:07:18 -0000 sam 2006-08-05 05:07:17 UTC FreeBSD src repository Modified files: sys/dev/ath if_ath.c if_athioctl.h Log: raw 802.11 packet transmit support Joint work with: Andrea Bittau Revision Changes Path 1.151 +355 -100 src/sys/dev/ath/if_ath.c 1.16 +2 -1 src/sys/dev/ath/if_athioctl.h From owner-cvs-all@FreeBSD.ORG Sat Aug 5 05:08:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1B0816A4DD; Sat, 5 Aug 2006 05:08:38 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5717D43D45; Sat, 5 Aug 2006 05:08:38 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7558crW012380; Sat, 5 Aug 2006 05:08:38 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7558cPN012379; Sat, 5 Aug 2006 05:08:38 GMT (envelope-from vanilla) Message-Id: <200608050508.k7558cPN012379@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Sat, 5 Aug 2006 05:08:38 +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/handbook/ports 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, 05 Aug 2006 05:08:38 -0000 vanilla 2006-08-05 05:08:38 UTC FreeBSD doc repository Modified files: zh_TW.Big5/books/handbook/ports chapter.sgml Log: - Update handbook/ports PR: docs/101392 Submitted by: chinsan.tw at gmail.com Revision Changes Path 1.8 +197 -284 doc/zh_TW.Big5/books/handbook/ports/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sat Aug 5 05:09:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFCB616A4E0; Sat, 5 Aug 2006 05:09:23 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 512FA43D4C; Sat, 5 Aug 2006 05:09:21 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7559LpM012428; Sat, 5 Aug 2006 05:09:21 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7559LhJ012427; Sat, 5 Aug 2006 05:09:21 GMT (envelope-from sam) Message-Id: <200608050509.k7559LhJ012427@repoman.freebsd.org> From: Sam Leffler Date: Sat, 5 Aug 2006 05:09: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/tools/tools/ath/athstats athstats.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, 05 Aug 2006 05:09:24 -0000 sam 2006-08-05 05:09:21 UTC FreeBSD src repository Modified files: tools/tools/ath/athstats athstats.c Log: raw tx stat Revision Changes Path 1.4 +1 -0 src/tools/tools/ath/athstats/athstats.c From owner-cvs-all@FreeBSD.ORG Sat Aug 5 05:10:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE00716A4DF; Sat, 5 Aug 2006 05:10:18 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6284F43D45; Sat, 5 Aug 2006 05:10:18 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k755AI2b012517; Sat, 5 Aug 2006 05:10:18 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k755AIoY012516; Sat, 5 Aug 2006 05:10:18 GMT (envelope-from vanilla) Message-Id: <200608050510.k755AIoY012516@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Sat, 5 Aug 2006 05:10:18 +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/fdp-primer/sgml-primer 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, 05 Aug 2006 05:10:18 -0000 vanilla 2006-08-05 05:10:18 UTC FreeBSD doc repository Modified files: zh_TW.Big5/books/fdp-primer/sgml-primer chapter.sgml Log: - Update fdp-primer/sgml-primer PR: docs/101393 Submitted by: chinsan.tw at gmail.com Revision Changes Path 1.4 +5 -7 doc/zh_TW.Big5/books/fdp-primer/sgml-primer/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sat Aug 5 05:12:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 409BF16A4DD; Sat, 5 Aug 2006 05:12:04 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E875243D45; Sat, 5 Aug 2006 05:12:03 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k755C3o2012755; Sat, 5 Aug 2006 05:12:03 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k755C3cN012754; Sat, 5 Aug 2006 05:12:03 GMT (envelope-from sam) Message-Id: <200608050512.k755C3cN012754@repoman.freebsd.org> From: Sam Leffler Date: Sat, 5 Aug 2006 05:12: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/tools/tools/net80211/stumbler Makefile stumbler.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, 05 Aug 2006 05:12:04 -0000 sam 2006-08-05 05:12:03 UTC FreeBSD src repository Added files: tools/tools/net80211/stumbler Makefile stumbler.c Log: crude stumbler using raw packet api's Submitted by: Andrea Bittau Revision Changes Path 1.1 +10 -0 src/tools/tools/net80211/stumbler/Makefile (new) 1.1 +1067 -0 src/tools/tools/net80211/stumbler/stumbler.c (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 5 05:13:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0FE6516A4DA; Sat, 5 Aug 2006 05:13:32 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B804143D46; Sat, 5 Aug 2006 05:13:31 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k755DVWw012836; Sat, 5 Aug 2006 05:13:31 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k755DVEK012835; Sat, 5 Aug 2006 05:13:31 GMT (envelope-from sam) Message-Id: <200608050513.k755DVEK012835@repoman.freebsd.org> From: Sam Leffler Date: Sat, 5 Aug 2006 05:13: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/tools/tools/net80211/wlaninject Makefile README wlaninject.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, 05 Aug 2006 05:13:32 -0000 sam 2006-08-05 05:13:31 UTC FreeBSD src repository Added files: tools/tools/net80211/wlaninject Makefile README wlaninject.c Log: 802.11 packet injection test tool Submitted by: Andrea Bittau Revision Changes Path 1.1 +8 -0 src/tools/tools/net80211/wlaninject/Makefile (new) 1.1 +82 -0 src/tools/tools/net80211/wlaninject/README (new) 1.1 +789 -0 src/tools/tools/net80211/wlaninject/wlaninject.c (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 5 05:18:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5EC3916A4DA; Sat, 5 Aug 2006 05:18:04 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B35ED43D49; Sat, 5 Aug 2006 05:18:03 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k755I3OS013237; Sat, 5 Aug 2006 05:18:03 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k755I363013236; Sat, 5 Aug 2006 05:18:03 GMT (envelope-from sam) Message-Id: <200608050518.k755I363013236@repoman.freebsd.org> From: Sam Leffler Date: Sat, 5 Aug 2006 05:18: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/tools/tools/net80211/w00t Makefile Makefile.inc README src/tools/tools/net80211/w00t/ap Makefile ap.c src/tools/tools/net80211/w00t/assoc Makefile assoc.c src/tools/tools/net80211/w00t/expand Makefile expand.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, 05 Aug 2006 05:18:04 -0000 sam 2006-08-05 05:18:03 UTC FreeBSD src repository Added files: tools/tools/net80211/w00t Makefile Makefile.inc README tools/tools/net80211/w00t/ap Makefile ap.c tools/tools/net80211/w00t/assoc Makefile assoc.c tools/tools/net80211/w00t/expand Makefile expand.c tools/tools/net80211/w00t/libw00t Makefile w00t.c w00t.h tools/tools/net80211/w00t/prga Makefile prga.c tools/tools/net80211/w00t/redir Makefile buddy.c redir.c Log: test programs for 802.11 packet injection Submitted by: Andrea Bittau Revision Changes Path 1.1 +5 -0 src/tools/tools/net80211/w00t/Makefile (new) 1.1 +11 -0 src/tools/tools/net80211/w00t/Makefile.inc (new) 1.1 +78 -0 src/tools/tools/net80211/w00t/README (new) 1.1 +7 -0 src/tools/tools/net80211/w00t/ap/Makefile (new) 1.1 +916 -0 src/tools/tools/net80211/w00t/ap/ap.c (new) 1.1 +7 -0 src/tools/tools/net80211/w00t/assoc/Makefile (new) 1.1 +938 -0 src/tools/tools/net80211/w00t/assoc/assoc.c (new) 1.1 +7 -0 src/tools/tools/net80211/w00t/expand/Makefile (new) 1.1 +468 -0 src/tools/tools/net80211/w00t/expand/expand.c (new) 1.1 +7 -0 src/tools/tools/net80211/w00t/libw00t/Makefile (new) 1.1 +414 -0 src/tools/tools/net80211/w00t/libw00t/w00t.c (new) 1.1 +57 -0 src/tools/tools/net80211/w00t/libw00t/w00t.h (new) 1.1 +7 -0 src/tools/tools/net80211/w00t/prga/Makefile (new) 1.1 +664 -0 src/tools/tools/net80211/w00t/prga/prga.c (new) 1.1 +7 -0 src/tools/tools/net80211/w00t/redir/Makefile (new) 1.1 +158 -0 src/tools/tools/net80211/w00t/redir/buddy.c (new) 1.1 +709 -0 src/tools/tools/net80211/w00t/redir/redir.c (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 5 05:20:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12B7616A4DD; Sat, 5 Aug 2006 05:20:41 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 945DD43D5A; Sat, 5 Aug 2006 05:20:40 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k755Keie013428; Sat, 5 Aug 2006 05:20:40 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k755KeTS013427; Sat, 5 Aug 2006 05:20:40 GMT (envelope-from sam) Message-Id: <200608050520.k755KeTS013427@repoman.freebsd.org> From: Sam Leffler Date: Sat, 5 Aug 2006 05:20:40 +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/tools/net80211 Makefile README X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Aug 2006 05:20:41 -0000 sam 2006-08-05 05:20:40 UTC FreeBSD src repository Modified files: tools/tools/net80211 Makefile Added files: tools/tools/net80211 README Log: hook packet injection tools up Revision Changes Path 1.2 +1 -1 src/tools/tools/net80211/Makefile 1.1 +14 -0 src/tools/tools/net80211/README (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 5 05:49:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8CF516A4E1; Sat, 5 Aug 2006 05:49:32 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DD4343D70; Sat, 5 Aug 2006 05:49:30 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k755nUEe020293; Sat, 5 Aug 2006 05:49:30 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k755nUvw020292; Sat, 5 Aug 2006 05:49:30 GMT (envelope-from njl) Message-Id: <200608050549.k755nUvw020292@repoman.freebsd.org> From: Nate Lawson Date: Sat, 5 Aug 2006 05:49:30 +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/share/man/man4 acpi.4 src/sbin/sysctl sysctl.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, 05 Aug 2006 05:49:33 -0000 njl 2006-08-05 05:49:30 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) share/man/man4 acpi.4 sbin/sysctl sysctl.c Log: MFC: acpi man page formatting updates, sysctl temperature printing fixes. Revision Changes Path 1.67.2.3 +8 -10 src/sbin/sysctl/sysctl.c 1.52.2.4 +47 -17 src/share/man/man4/acpi.4 From owner-cvs-all@FreeBSD.ORG Sat Aug 5 06:01:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01A9316A4E2; Sat, 5 Aug 2006 06:01:44 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9253943D45; Sat, 5 Aug 2006 06:01:43 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7561h3D020869; Sat, 5 Aug 2006 06:01:43 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7561hUU020867; Sat, 5 Aug 2006 06:01:43 GMT (envelope-from dinoex) Message-Id: <200608050601.k7561hUU020867@repoman.freebsd.org> From: Dirk Meyer Date: Sat, 5 Aug 2006 06:01: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/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: Sat, 05 Aug 2006 06:01:44 -0000 dinoex 2006-08-05 06:01:42 UTC FreeBSD ports repository Modified files: graphics/netpbm Makefile distinfo Log: - update stable to 10.26.30 Revision Changes Path 1.130 +1 -1 ports/graphics/netpbm/Makefile 1.78 +3 -3 ports/graphics/netpbm/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 5 06:31:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1341516A4DF; Sat, 5 Aug 2006 06:31:36 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC29543D49; Sat, 5 Aug 2006 06:31:35 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k756VZ0T023431; Sat, 5 Aug 2006 06:31:35 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k756VZ46023430; Sat, 5 Aug 2006 06:31:35 GMT (envelope-from dinoex) Message-Id: <200608050631.k756VZ46023430@repoman.freebsd.org> From: Dirk Meyer Date: Sat, 5 Aug 2006 06:31: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/mail/addresses 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, 05 Aug 2006 06:31:36 -0000 dinoex 2006-08-05 06:31:35 UTC FreeBSD ports repository Modified files: mail/addresses pkg-plist Log: - use @dirrmtry on shared dirs Revision Changes Path 1.3 +4 -4 ports/mail/addresses/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 5 06:37:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3206F16A4DF; Sat, 5 Aug 2006 06:37:46 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAE6343D49; Sat, 5 Aug 2006 06:37:45 +0000 (GMT) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k756bj6l023735; Sat, 5 Aug 2006 06:37:45 GMT (envelope-from cy@repoman.freebsd.org) Received: (from cy@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k756bjWV023734; Sat, 5 Aug 2006 06:37:45 GMT (envelope-from cy) Message-Id: <200608050637.k756bjWV023734@repoman.freebsd.org> From: Cy Schubert Date: Sat, 5 Aug 2006 06:37: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/ntp-devel 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, 05 Aug 2006 06:37:46 -0000 cy 2006-08-05 06:37:45 UTC FreeBSD ports repository Modified files: net/ntp-devel Makefile distinfo pkg-plist Log: Update 4.2.0b-2006-03-22 --> 4.2.3p21 Revision Changes Path 1.46 +13 -11 ports/net/ntp-devel/Makefile 1.22 +3 -3 ports/net/ntp-devel/distinfo 1.19 +7 -0 ports/net/ntp-devel/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 5 07:26:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C405F16A4DF; Sat, 5 Aug 2006 07:26:03 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86ACB43D49; Sat, 5 Aug 2006 07:26:03 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k757Q3VX027195; Sat, 5 Aug 2006 07:26:03 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k757Q37V027194; Sat, 5 Aug 2006 07:26:03 GMT (envelope-from sat) Message-Id: <200608050726.k757Q37V027194@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sat, 5 Aug 2006 07:26: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/www Makefile ports/www/xpi-num2web Makefile distinfo pkg-descr ports/www/xpi-num2web/files chrome.manifest X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Aug 2006 07:26:03 -0000 sat 2006-08-05 07:26:03 UTC FreeBSD ports repository Modified files: www Makefile Added files: www/xpi-num2web Makefile distinfo pkg-descr www/xpi-num2web/files chrome.manifest Log: Add port www/xpi-num2web: E164.org is a public enum directory of telephone numbers that can be reached over the Internet by anyone anywhere! The system works by publishing a DNS zone, 'e164.org', that can be used by various Internet applications including SER, Gnome Meeting and Asterisk. The idea is to be able to map your phone number to an Email address, website, VoIP addresses, etc. WWW: http://www.e164.org/ Requested by: edwin Revision Changes Path 1.1540 +1 -0 ports/www/Makefile 1.1 +21 -0 ports/www/xpi-num2web/Makefile (new) 1.1 +3 -0 ports/www/xpi-num2web/distinfo (new) 1.1 +1 -0 ports/www/xpi-num2web/files/chrome.manifest (new) 1.1 +9 -0 ports/www/xpi-num2web/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 5 07:26:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 967EE16A4DF; Sat, 5 Aug 2006 07:26:27 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A71E43D45; Sat, 5 Aug 2006 07:26:27 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k757QRDs027243; Sat, 5 Aug 2006 07:26:27 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k757QRoF027242; Sat, 5 Aug 2006 07:26:27 GMT (envelope-from sat) Message-Id: <200608050726.k757QRoF027242@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sat, 5 Aug 2006 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: 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, 05 Aug 2006 07:26:27 -0000 sat 2006-08-05 07:26:27 UTC FreeBSD ports repository Modified files: . modules Log: xpi-num2web --> ports/www/xpi-num2web Revision Changes Path 1.15903 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Aug 5 08:00:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95EA516A4DD; Sat, 5 Aug 2006 08:00:36 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4829643D46; Sat, 5 Aug 2006 08:00:36 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7580aBD028767; Sat, 5 Aug 2006 08:00:36 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7580a8f028766; Sat, 5 Aug 2006 08:00:36 GMT (envelope-from miwi) Message-Id: <200608050800.k7580a8f028766@repoman.freebsd.org> From: Martin Wilke Date: Sat, 5 Aug 2006 08:00: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/mail/squirrelmail-vlogin-plugin 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, 05 Aug 2006 08:00:36 -0000 miwi 2006-08-05 08:00:36 UTC FreeBSD ports repository Modified files: mail/squirrelmail-vlogin-plugin Makefile distinfo pkg-plist Log: - Update to 3.8.0 - Unbreak PR: ports/100930 Submitted by: Neil Darlow Approved by: krion (mentor), maintainer Revision Changes Path 1.3 +1 -3 ports/mail/squirrelmail-vlogin-plugin/Makefile 1.2 +3 -3 ports/mail/squirrelmail-vlogin-plugin/distinfo 1.2 +19 -9 ports/mail/squirrelmail-vlogin-plugin/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 5 08:05:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F0D116A4DA; Sat, 5 Aug 2006 08:05:37 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1EBEF43D46; Sat, 5 Aug 2006 08:05:37 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7585bbf030346; Sat, 5 Aug 2006 08:05:37 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7585auD030345; Sat, 5 Aug 2006 08:05:36 GMT (envelope-from miwi) Message-Id: <200608050805.k7585auD030345@repoman.freebsd.org> From: Martin Wilke Date: Sat, 5 Aug 2006 08:05: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/audio/autozen Makefile distinfo pkg-descr pkg-plist ports/audio/autozen/files patch-Makefile patch-ab patch-ac patch-autozen.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, 05 Aug 2006 08:05:37 -0000 miwi 2006-08-05 08:05:36 UTC FreeBSD ports repository Modified files: audio/autozen Makefile distinfo pkg-descr Added files: audio/autozen pkg-plist audio/autozen/files patch-Makefile patch-autozen.c Removed files: audio/autozen/files patch-ab patch-ac Log: - Update to 2.1 - Pass maintainer to submitter PR: ports/101049 Submitted by: Stanislav Sedov Approved by: krion (mentor) Revision Changes Path 1.21 +14 -45 ports/audio/autozen/Makefile 1.5 +3 -3 ports/audio/autozen/distinfo 1.1 +53 -0 ports/audio/autozen/files/patch-Makefile (new) 1.3 +0 -11 ports/audio/autozen/files/patch-ab (dead) 1.4 +0 -22 ports/audio/autozen/files/patch-ac (dead) 1.1 +11 -0 ports/audio/autozen/files/patch-autozen.c (new) 1.4 +3 -0 ports/audio/autozen/pkg-descr 1.3 +10 -0 ports/audio/autozen/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 5 08:10:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 21D7A16A4DA; Sat, 5 Aug 2006 08:10:54 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C767D43D46; Sat, 5 Aug 2006 08:10:53 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k758ArAF030614; Sat, 5 Aug 2006 08:10:53 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k758ArK9030613; Sat, 5 Aug 2006 08:10:53 GMT (envelope-from miwi) Message-Id: <200608050810.k758ArK9030613@repoman.freebsd.org> From: Martin Wilke Date: Sat, 5 Aug 2006 08:10: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/p5-RRDTool-OO 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, 05 Aug 2006 08:10:54 -0000 miwi 2006-08-05 08:10:53 UTC FreeBSD ports repository Modified files: devel/p5-RRDTool-OO Makefile distinfo Log: - Update to 0.15 PR: ports/101095 Submitted by: Stefan Pauly (maintainer) Approved by: krion (mentor) Revision Changes Path 1.3 +1 -1 ports/devel/p5-RRDTool-OO/Makefile 1.3 +3 -3 ports/devel/p5-RRDTool-OO/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 5 08:31:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B39816A4DA; Sat, 5 Aug 2006 08:31:05 +0000 (UTC) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D1C443D49; Sat, 5 Aug 2006 08:31:05 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k758V5ed031661; Sat, 5 Aug 2006 08:31:05 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k758V59M031660; Sat, 5 Aug 2006 08:31:05 GMT (envelope-from sem) Message-Id: <200608050831.k758V59M031660@repoman.freebsd.org> From: Sergey Matveychuk Date: Sat, 5 Aug 2006 08:31: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/devel/gsoap Makefile ports/devel/gsoap/files patch-soapcpp2-stdsoap2.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: Sat, 05 Aug 2006 08:31:05 -0000 sem 2006-08-05 08:31:04 UTC FreeBSD ports repository Modified files: devel/gsoap Makefile devel/gsoap/files patch-soapcpp2-stdsoap2.cpp Log: - FD_SETSIZE is unsigned in FreeBSD. It caused problem when it's compared with failed socket descriptor (-1). PR: ports/101352 Submitted by: Simun Mikecin Revision Changes Path 1.23 +5 -0 ports/devel/gsoap/Makefile 1.2 +12 -3 ports/devel/gsoap/files/patch-soapcpp2-stdsoap2.cpp From owner-cvs-all@FreeBSD.ORG Sat Aug 5 09:24:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9ECEE16A4DA; Sat, 5 Aug 2006 09:24:23 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51CEB43D45; Sat, 5 Aug 2006 09:24:23 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k759ONYv043262; Sat, 5 Aug 2006 09:24:23 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k759ONxr043261; Sat, 5 Aug 2006 09:24:23 GMT (envelope-from erwin) Message-Id: <200608050924.k759ONxr043261@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 5 Aug 2006 09:24: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/deskutils/taskstep 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, 05 Aug 2006 09:24:23 -0000 erwin 2006-08-05 09:24:23 UTC FreeBSD ports repository Modified files: deskutils/taskstep Makefile distinfo Log: Distfile was silently rerolled with a minor sanity check addition. PR: 101401 Submitted by: Babak Farrokhi (maintainer) Noticed by: pointyhat Revision Changes Path 1.2 +1 -0 ports/deskutils/taskstep/Makefile 1.2 +3 -3 ports/deskutils/taskstep/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 5 09:52:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4044016A4DA; Sat, 5 Aug 2006 09:52:50 +0000 (UTC) (envelope-from anray@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E810A43D45; Sat, 5 Aug 2006 09:52:49 +0000 (GMT) (envelope-from anray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k759qnIn044544; Sat, 5 Aug 2006 09:52:49 GMT (envelope-from anray@repoman.freebsd.org) Received: (from anray@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k759qnZM044543; Sat, 5 Aug 2006 09:52:49 GMT (envelope-from anray) Message-Id: <200608050952.k759qnZM044543@repoman.freebsd.org> From: Andrey Slusar Date: Sat, 5 Aug 2006 09:52: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/textproc/dictem 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: Sat, 05 Aug 2006 09:52:50 -0000 anray 2006-08-05 09:52:49 UTC FreeBSD ports repository Modified files: textproc/dictem Makefile distinfo pkg-descr Log: - Update to version 0.81 - Update project WWW PR: ports/101368 Submitted by: Max N. Boyarov (maintainer) Revision Changes Path 1.5 +2 -3 ports/textproc/dictem/Makefile 1.3 +3 -3 ports/textproc/dictem/distinfo 1.2 +1 -1 ports/textproc/dictem/pkg-descr From owner-cvs-all@FreeBSD.ORG Sat Aug 5 09:54:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 80F7F16A4DA; Sat, 5 Aug 2006 09:54:44 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3497B43D46; Sat, 5 Aug 2006 09:54:44 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k759siOa044617; Sat, 5 Aug 2006 09:54:44 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k759siHI044616; Sat, 5 Aug 2006 09:54:44 GMT (envelope-from erwin) Message-Id: <200608050954.k759siHI044616@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 5 Aug 2006 09:54: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/mopd 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, 05 Aug 2006 09:54:44 -0000 erwin 2006-08-05 09:54:43 UTC FreeBSD ports repository Modified files: net/mopd Makefile Log: Fix build after DESTDIR patch. Submitted by: gabor Revision Changes Path 1.15 +4 -7 ports/net/mopd/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 5 09:59:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E863016A4E0; Sat, 5 Aug 2006 09:59:28 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1C2743D72; Sat, 5 Aug 2006 09:59:23 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k759xMxK044893; Sat, 5 Aug 2006 09:59:22 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k759xM6w044892; Sat, 5 Aug 2006 09:59:22 GMT (envelope-from thierry) Message-Id: <200608050959.k759xM6w044892@repoman.freebsd.org> From: Thierry Thomas Date: Sat, 5 Aug 2006 09:59: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/games/glob2 Makefile distinfo pkg-plist ports/games/glob2/files patch-data_icons_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: Sat, 05 Aug 2006 09:59:29 -0000 thierry 2006-08-05 09:59:22 UTC FreeBSD ports repository Modified files: games/glob2 Makefile distinfo pkg-plist Added files: games/glob2/files patch-data_icons_Makefile.in Log: Upgrade to 0.8.21. Changelog at . Revision Changes Path 1.13 +5 -8 ports/games/glob2/Makefile 1.8 +3 -3 ports/games/glob2/distinfo 1.1 +11 -0 ports/games/glob2/files/patch-data_icons_Makefile.in (new) 1.2 +1669 -1 ports/games/glob2/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 5 10:07:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9352916A4DA; Sat, 5 Aug 2006 10:07:22 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4365F43D55; Sat, 5 Aug 2006 10:07:22 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75A7MTq046581; Sat, 5 Aug 2006 10:07:22 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75A7Mjh046580; Sat, 5 Aug 2006 10:07:22 GMT (envelope-from flz) Message-Id: <200608051007.k75A7Mjh046580@repoman.freebsd.org> From: Florent Thoumie Date: Sat, 5 Aug 2006 10:07: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/feedjack 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: Sat, 05 Aug 2006 10:07:22 -0000 flz 2006-08-05 10:07:22 UTC FreeBSD ports repository Modified files: www/feedjack Makefile pkg-plist Log: - Fix packing list. Reported by: erwinbot Revision Changes Path 1.2 +1 -0 ports/www/feedjack/Makefile 1.2 +1 -0 ports/www/feedjack/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 5 10:10:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33D0216A4DA; Sat, 5 Aug 2006 10:10:36 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB8FE43D46; Sat, 5 Aug 2006 10:10:35 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75AAZ3j046765; Sat, 5 Aug 2006 10:10:35 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75AAZUk046764; Sat, 5 Aug 2006 10:10:35 GMT (envelope-from erwin) Message-Id: <200608051010.k75AAZUk046764@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 5 Aug 2006 10:10: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/security/openssh 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, 05 Aug 2006 10:10:36 -0000 erwin 2006-08-05 10:10:35 UTC FreeBSD ports repository Modified files: security/openssh Makefile Log: Fix build after DESTDIR update. Submitted by: gabor Revision Changes Path 1.132 +11 -1 ports/security/openssh/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 5 10:11:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5BC1A16A4DE; Sat, 5 Aug 2006 10:11:12 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C1F043D46; Sat, 5 Aug 2006 10:11:12 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75ABBna046896; Sat, 5 Aug 2006 10:11:11 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75ABBgF046895; Sat, 5 Aug 2006 10:11:11 GMT (envelope-from rafan) Message-Id: <200608051011.k75ABBgF046895@repoman.freebsd.org> From: Rong-En Fan Date: Sat, 5 Aug 2006 10:11: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/x11-wm/dwm Makefile distinfo ports/x11-wm/dwm/files patch-config.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: Sat, 05 Aug 2006 10:11:12 -0000 rafan 2006-08-05 10:11:11 UTC FreeBSD ports repository Modified files: x11-wm/dwm Makefile distinfo x11-wm/dwm/files patch-config.mk Log: - Update to 0.6 PR: ports/101273 Submitted by: Jeroen Schot (maintainer) Revision Changes Path 1.2 +4 -1 ports/x11-wm/dwm/Makefile 1.2 +3 -3 ports/x11-wm/dwm/distinfo 1.2 +14 -18 ports/x11-wm/dwm/files/patch-config.mk From owner-cvs-all@FreeBSD.ORG Sat Aug 5 10:12:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2D3716A4E0; Sat, 5 Aug 2006 10:12:17 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BDBF43D62; Sat, 5 Aug 2006 10:12:15 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75ACFIv046962; Sat, 5 Aug 2006 10:12:15 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75ACFiQ046961; Sat, 5 Aug 2006 10:12:15 GMT (envelope-from rafan) Message-Id: <200608051012.k75ACFiQ046961@repoman.freebsd.org> From: Rong-En Fan Date: Sat, 5 Aug 2006 10:12: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/www/wordpress 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, 05 Aug 2006 10:12:18 -0000 rafan 2006-08-05 10:12:15 UTC FreeBSD ports repository Modified files: www/wordpress Makefile distinfo Log: - Update to 2.0.4 PR: ports/101357 Submitted by: Yuan-Chung Hsiao (maintainer) Revision Changes Path 1.19 +1 -1 ports/www/wordpress/Makefile 1.15 +3 -3 ports/www/wordpress/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 5 10:15:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D888B16A4DD; Sat, 5 Aug 2006 10:15:33 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87BAF43D46; Sat, 5 Aug 2006 10:15:33 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75AFXDN047145; Sat, 5 Aug 2006 10:15:33 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75AFXA8047144; Sat, 5 Aug 2006 10:15:33 GMT (envelope-from rafan) Message-Id: <200608051015.k75AFXA8047144@repoman.freebsd.org> From: Rong-En Fan Date: Sat, 5 Aug 2006 10:15: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 Makefile ports/net/pear-Net_SMS 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: Sat, 05 Aug 2006 10:15:34 -0000 rafan 2006-08-05 10:15:33 UTC FreeBSD ports repository Modified files: net Makefile Added files: net/pear-Net_SMS Makefile distinfo pkg-descr Log: Add pear-Net_SMS 0.1.0, PEAR SMS functionality. PR: ports/101306 Submitted by: chinsan Revision Changes Path 1.1712 +1 -0 ports/net/Makefile 1.1 +27 -0 ports/net/pear-Net_SMS/Makefile (new) 1.1 +3 -0 ports/net/pear-Net_SMS/distinfo (new) 1.1 +3 -0 ports/net/pear-Net_SMS/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 5 10:15:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2350816A5BE; Sat, 5 Aug 2006 10:15:40 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC60F43D46; Sat, 5 Aug 2006 10:15:39 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75AFdoP047181; Sat, 5 Aug 2006 10:15:39 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75AFdYl047180; Sat, 5 Aug 2006 10:15:39 GMT (envelope-from rafan) Message-Id: <200608051015.k75AFdYl047180@repoman.freebsd.org> From: Rong-En Fan Date: Sat, 5 Aug 2006 10:15: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: 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, 05 Aug 2006 10:15:40 -0000 rafan 2006-08-05 10:15:39 UTC FreeBSD ports repository Modified files: . modules Log: pear-Net_SMS --> ports/net/pear-Net_SMS Revision Changes Path 1.15904 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Aug 5 10:16:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4004316A4DE; Sat, 5 Aug 2006 10:16:13 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C731843D46; Sat, 5 Aug 2006 10:16:12 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75AGCA3047254; Sat, 5 Aug 2006 10:16:12 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75AGCfJ047253; Sat, 5 Aug 2006 10:16:12 GMT (envelope-from rafan) Message-Id: <200608051016.k75AGCfJ047253@repoman.freebsd.org> From: Rong-En Fan Date: Sat, 5 Aug 2006 10:16: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 Makefile ports/www/pear-Services_Delicious 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: Sat, 05 Aug 2006 10:16:13 -0000 rafan 2006-08-05 10:16:12 UTC FreeBSD ports repository Modified files: www Makefile Added files: www/pear-Services_Delicious Makefile distinfo pkg-descr Log: Add pear-Services_Delicious 0.4.0, PEAR Client for the del.icio.us web service. PR: ports/101307 Submitted by: chinsan Revision Changes Path 1.1541 +1 -0 ports/www/Makefile 1.1 +30 -0 ports/www/pear-Services_Delicious/Makefile (new) 1.1 +3 -0 ports/www/pear-Services_Delicious/distinfo (new) 1.1 +9 -0 ports/www/pear-Services_Delicious/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 5 10:16:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E387F16A4DE; Sat, 5 Aug 2006 10:16:18 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97EC743D46; Sat, 5 Aug 2006 10:16:18 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75AGIDq047286; Sat, 5 Aug 2006 10:16:18 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75AGIxE047285; Sat, 5 Aug 2006 10:16:18 GMT (envelope-from rafan) Message-Id: <200608051016.k75AGIxE047285@repoman.freebsd.org> From: Rong-En Fan Date: Sat, 5 Aug 2006 10:16: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: 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, 05 Aug 2006 10:16:19 -0000 rafan 2006-08-05 10:16:18 UTC FreeBSD ports repository Modified files: . modules Log: pear-Services_Delicious --> ports/www/pear-Services_Delicious Revision Changes Path 1.15905 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Aug 5 10:28:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14DFD16A4E0; Sat, 5 Aug 2006 10:28:28 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADFB343D46; Sat, 5 Aug 2006 10:28:27 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75ASRU5047862; Sat, 5 Aug 2006 10:28:27 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75ASRNf047861; Sat, 5 Aug 2006 10:28:27 GMT (envelope-from lth) Message-Id: <200608051028.k75ASRNf047861@repoman.freebsd.org> From: Lars Thegler Date: Sat, 5 Aug 2006 10:28: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/mail/p5-Email-Folder 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, 05 Aug 2006 10:28:28 -0000 lth 2006-08-05 10:28:27 UTC FreeBSD ports repository Modified files: mail/p5-Email-Folder Makefile distinfo pkg-plist Log: - Update to 0.85.1 (version number mangled to prevent PORTEPOCH bump) - Build.PL is gone, so use PERL_CONFIGURE=yes - Use BUILD_DEPENDS=${RUN_DEPENDS} to avoid extra dependencies - Use magic MASTER_SITES PR: ports/101216 Submitted by: Gea-Suan Lin Revision Changes Path 1.7 +13 -8 ports/mail/p5-Email-Folder/Makefile 1.8 +3 -3 ports/mail/p5-Email-Folder/distinfo 1.5 +3 -0 ports/mail/p5-Email-Folder/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 5 10:29:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E542F16A4DA; Sat, 5 Aug 2006 10:29:12 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F3E943D49; Sat, 5 Aug 2006 10:29:12 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75ATCdI047910; Sat, 5 Aug 2006 10:29:12 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75ATCuT047909; Sat, 5 Aug 2006 10:29:12 GMT (envelope-from miwi) Message-Id: <200608051029.k75ATCuT047909@repoman.freebsd.org> From: Martin Wilke Date: Sat, 5 Aug 2006 10:29: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/mapyrus 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, 05 Aug 2006 10:29:13 -0000 miwi 2006-08-05 10:29:12 UTC FreeBSD ports repository Modified files: graphics/mapyrus Makefile distinfo pkg-plist Log: - Update to 0.608 PR: ports/101097 Submitted by: Nicola Vitale (maintainer) Approved by: krion (mentor) Revision Changes Path 1.4 +1 -1 ports/graphics/mapyrus/Makefile 1.3 +3 -3 ports/graphics/mapyrus/distinfo 1.2 +3 -1 ports/graphics/mapyrus/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 5 10:31:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB23816A4DA; Sat, 5 Aug 2006 10:31:17 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DA7D43D45; Sat, 5 Aug 2006 10:31:17 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75AVH1C048095; Sat, 5 Aug 2006 10:31:17 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75AVHge048094; Sat, 5 Aug 2006 10:31:17 GMT (envelope-from miwi) Message-Id: <200608051031.k75AVHge048094@repoman.freebsd.org> From: Martin Wilke Date: Sat, 5 Aug 2006 10:31: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/www/pecl-pecl_http 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, 05 Aug 2006 10:31:17 -0000 miwi 2006-08-05 10:31:16 UTC FreeBSD ports repository Modified files: www/pecl-pecl_http Makefile distinfo Log: - Update to 1.1.0 PR: ports/101104 Submitted by: chinsan Approved by: krion (mentor), maintainer Revision Changes Path 1.8 +1 -1 ports/www/pecl-pecl_http/Makefile 1.8 +3 -3 ports/www/pecl-pecl_http/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 5 10:33:45 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9941616A4E5; Sat, 5 Aug 2006 10:33:45 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A67043D46; Sat, 5 Aug 2006 10:33:45 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75AXjlU048267; Sat, 5 Aug 2006 10:33:45 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75AXiHx048266; Sat, 5 Aug 2006 10:33:45 GMT (envelope-from erwin) Message-Id: <200608051033.k75AXiHx048266@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 5 Aug 2006 10:33: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/sysutils/bksh/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: Sat, 05 Aug 2006 10:33:45 -0000 erwin 2006-08-05 10:33:44 UTC FreeBSD ports repository Added files: sysutils/bksh/files patch-Makefile Log: Fix build after DESTDIR patch. Submitted by: gabor Revision Changes Path 1.1 +10 -0 ports/sysutils/bksh/files/patch-Makefile (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 5 10:34:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B363816A4DF; Sat, 5 Aug 2006 10:34:50 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6630A43D45; Sat, 5 Aug 2006 10:34:50 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75AYod4048324; Sat, 5 Aug 2006 10:34:50 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75AYo34048323; Sat, 5 Aug 2006 10:34:50 GMT (envelope-from erwin) Message-Id: <200608051034.k75AYo34048323@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 5 Aug 2006 10:34: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/sysutils/procmap 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, 05 Aug 2006 10:34:50 -0000 erwin 2006-08-05 10:34:50 UTC FreeBSD ports repository Modified files: sysutils/procmap Makefile Log: Fix install after DESTDIR patch Submitted by: gabor Revision Changes Path 1.9 +1 -1 ports/sysutils/procmap/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 5 10:41:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDB4516A4DA; Sat, 5 Aug 2006 10:41:33 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E14743D45; Sat, 5 Aug 2006 10:41:33 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75AfXo1048731; Sat, 5 Aug 2006 10:41:33 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75AfXuZ048730; Sat, 5 Aug 2006 10:41:33 GMT (envelope-from miwi) Message-Id: <200608051041.k75AfXuZ048730@repoman.freebsd.org> From: Martin Wilke Date: Sat, 5 Aug 2006 10:41: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/x11-clocks/wmbday Makefile distinfo ports/x11-clocks/wmbday/files BSDmakefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Aug 2006 10:41:33 -0000 miwi 2006-08-05 10:41:33 UTC FreeBSD ports repository Modified files: x11-clocks/wmbday Makefile distinfo Removed files: x11-clocks/wmbday/files BSDmakefile Log: - Update to 0.3.1 PR: ports/100923 Submitted by: Ulrich Spoerlein (maintainer) Approved by: krion (mentor) Revision Changes Path 1.7 +10 -5 ports/x11-clocks/wmbday/Makefile 1.5 +3 -3 ports/x11-clocks/wmbday/distinfo 1.3 +0 -12 ports/x11-clocks/wmbday/files/BSDmakefile (dead) From owner-cvs-all@FreeBSD.ORG Sat Aug 5 10:53:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC4A516A4DE; Sat, 5 Aug 2006 10:53:21 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 800D243D46; Sat, 5 Aug 2006 10:53:21 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75ArLoH049283; Sat, 5 Aug 2006 10:53:21 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75ArLwo049282; Sat, 5 Aug 2006 10:53:21 GMT (envelope-from miwi) Message-Id: <200608051053.k75ArLwo049282@repoman.freebsd.org> From: Martin Wilke Date: Sat, 5 Aug 2006 10:53: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 Makefile ports/net/p5-RRD-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: Sat, 05 Aug 2006 10:53:21 -0000 miwi 2006-08-05 10:53:21 UTC FreeBSD ports repository Modified files: net Makefile Added files: net/p5-RRD-Simple Makefile distinfo pkg-descr pkg-plist Log: RRD::Simple provides a simple interface to RRDTool's RRDs module. This module does not currently offer fetch method that is available in the RRDs module. It does however create RRD files with a sensible set of default RRA (Round Robin Archive) definitions, and can dynamically add new data source names to an existing RRD file. This module is ideal for quick and simple storage of data within an RRD file if you do not need to, nor want to, bother defining custom RRA definitions. WWW: http://search.cpan.org/dist/RRD-Simple/ PR: ports/101073 Submitted by: chinsan Approved by: krion (mentor) Revision Changes Path 1.1713 +1 -0 ports/net/Makefile 1.1 +33 -0 ports/net/p5-RRD-Simple/Makefile (new) 1.1 +3 -0 ports/net/p5-RRD-Simple/distinfo (new) 1.1 +11 -0 ports/net/p5-RRD-Simple/pkg-descr (new) 1.1 +3 -0 ports/net/p5-RRD-Simple/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 5 10:53:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF2BE16A4DA; Sat, 5 Aug 2006 10:53:59 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CC7D43D49; Sat, 5 Aug 2006 10:53:59 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75Arxw8049329; Sat, 5 Aug 2006 10:53:59 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75Arxps049328; Sat, 5 Aug 2006 10:53:59 GMT (envelope-from miwi) Message-Id: <200608051053.k75Arxps049328@repoman.freebsd.org> From: Martin Wilke Date: Sat, 5 Aug 2006 10:53: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: 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, 05 Aug 2006 10:53:59 -0000 miwi 2006-08-05 10:53:59 UTC FreeBSD ports repository Modified files: . modules Log: p5-RRD-Simple --> ports/net/p5-RRD-Simple Revision Changes Path 1.15906 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Aug 5 10:55:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 27A4A16A4DF; Sat, 5 Aug 2006 10:55:43 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6217343D46; Sat, 5 Aug 2006 10:55:42 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75Atg0X049479; Sat, 5 Aug 2006 10:55:42 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75AtgD5049478; Sat, 5 Aug 2006 10:55:42 GMT (envelope-from lth) Message-Id: <200608051055.k75AtgD5049478@repoman.freebsd.org> From: Lars Thegler Date: Sat, 5 Aug 2006 10:55: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/mail/p5-Email-Folder-POP3 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, 05 Aug 2006 10:55:43 -0000 lth 2006-08-05 10:55:42 UTC FreeBSD ports repository Modified files: mail/p5-Email-Folder-POP3 Makefile distinfo Log: - Update to 1.01.1 (version number mangled to prevent PORTEPOCH bump) - Use magic MASTER_SITES - Use BUILD_DEPENDS=${RUN_DEPENDS} to avoid extra dependencies - Use versioned package dependencies PR: ports/101218 Submitted by: Gea-Suan Lin Revision Changes Path 1.2 +8 -8 ports/mail/p5-Email-Folder-POP3/Makefile 1.3 +3 -3 ports/mail/p5-Email-Folder-POP3/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 5 10:58:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E51A16A4DD; Sat, 5 Aug 2006 10:58:18 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0C2843D45; Sat, 5 Aug 2006 10:58:17 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75AwHcm049641; Sat, 5 Aug 2006 10:58:17 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75AwHGe049640; Sat, 5 Aug 2006 10:58:17 GMT (envelope-from miwi) Message-Id: <200608051058.k75AwHGe049640@repoman.freebsd.org> From: Martin Wilke Date: Sat, 5 Aug 2006 10:58: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/misc Makefile ports/misc/kbfx 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, 05 Aug 2006 10:58:18 -0000 miwi 2006-08-05 10:58:17 UTC FreeBSD ports repository Modified files: misc Makefile Added files: misc/kbfx Makefile distinfo pkg-descr pkg-plist Log: KBFX is an alternative to the classical K-Menu button and it's menu. It improves the user experience by enabling the user to set a bigger start button and by finally replacing the Win95-like K-Menu. But if you still want the old menu, because you're used to it, it is still available as an option in kbfx. WWW: http://www.kbfx.org/ PR: ports/101059 Submitted by: Max Brazhnikov Approved by: krion (mentor) Revision Changes Path 1.817 +1 -0 ports/misc/Makefile 1.1 +26 -0 ports/misc/kbfx/Makefile (new) 1.1 +3 -0 ports/misc/kbfx/distinfo (new) 1.1 +7 -0 ports/misc/kbfx/pkg-descr (new) 1.1 +124 -0 ports/misc/kbfx/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 5 10:59:09 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3624416A4DA; Sat, 5 Aug 2006 10:59:09 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D386443D45; Sat, 5 Aug 2006 10:59:08 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75Ax897049721; Sat, 5 Aug 2006 10:59:08 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75Ax8sa049720; Sat, 5 Aug 2006 10:59:08 GMT (envelope-from miwi) Message-Id: <200608051059.k75Ax8sa049720@repoman.freebsd.org> From: Martin Wilke Date: Sat, 5 Aug 2006 10:59: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: Sat, 05 Aug 2006 10:59:09 -0000 miwi 2006-08-05 10:59:08 UTC FreeBSD ports repository Modified files: . modules Log: kbfx --> ports/misc/kbfx Revision Changes Path 1.15907 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Aug 5 10:59:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0504816A4DE; Sat, 5 Aug 2006 10:59:33 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83B4643D5C; Sat, 5 Aug 2006 10:59:32 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75AxWIT049748; Sat, 5 Aug 2006 10:59:32 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75AxWXi049747; Sat, 5 Aug 2006 10:59:32 GMT (envelope-from clsung) Message-Id: <200608051059.k75AxWXi049747@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 5 Aug 2006 10:59: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/textproc/yamcha 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, 05 Aug 2006 10:59:33 -0000 clsung 2006-08-05 10:59:32 UTC FreeBSD ports repository Modified files: textproc/yamcha Makefile Log: - add USE_PERL5_BUILD Noted by: erwin Revision Changes Path 1.2 +1 -0 ports/textproc/yamcha/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 5 11:21:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 81BD116A4DF; Sat, 5 Aug 2006 11:21:10 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3205943D46; Sat, 5 Aug 2006 11:21:10 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75BLADd052032; Sat, 5 Aug 2006 11:21:10 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75BLAEN052031; Sat, 5 Aug 2006 11:21:10 GMT (envelope-from lth) Message-Id: <200608051121.k75BLAEN052031@repoman.freebsd.org> From: Lars Thegler Date: Sat, 5 Aug 2006 11:21: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/mail/p5-Email-FolderType 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, 05 Aug 2006 11:21:10 -0000 lth 2006-08-05 11:21:09 UTC FreeBSD ports repository Modified files: mail/p5-Email-FolderType Makefile distinfo pkg-plist Log: - Update to 0.8.10 (version number mangled to prevent PORTEPOCH bump) [1] - Use magic MASTER_SITES - Use BUILD_DEPENDS=${RUN_DEPENDS} to avoid extra dependencies - Use versioned package dependency - Build.PL is gone, so use PERL_CONFIGURE=yes [1] PR: ports/101289 [1] Submitted by: Jin-Shan Tseng Revision Changes Path 1.5 +6 -6 ports/mail/p5-Email-FolderType/Makefile 1.6 +3 -3 ports/mail/p5-Email-FolderType/distinfo 1.5 +3 -0 ports/mail/p5-Email-FolderType/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 5 11:41:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8816616A4DD; Sat, 5 Aug 2006 11:41:47 +0000 (UTC) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E9A643D46; Sat, 5 Aug 2006 11:41:47 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75BfksW053005; Sat, 5 Aug 2006 11:41:46 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75BfkYV053004; Sat, 5 Aug 2006 11:41:46 GMT (envelope-from sos) Message-Id: <200608051141.k75BfkYV053004@repoman.freebsd.org> From: Søren Schmidt Date: Sat, 5 Aug 2006 11:41: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/dev/ata ata-chipset.c ata-pci.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, 05 Aug 2006 11:41:47 -0000 sos 2006-08-05 11:41:46 UTC FreeBSD src repository Modified files: sys/dev/ata ata-chipset.c ata-pci.h Log: Unbreak nForce3 SATA support. Revision Changes Path 1.167 +19 -19 src/sys/dev/ata/ata-chipset.c 1.67 +1 -2 src/sys/dev/ata/ata-pci.h From owner-cvs-all@FreeBSD.ORG Sat Aug 5 11:42:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1270016A4DA; Sat, 5 Aug 2006 11:42:26 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FF8143D53; Sat, 5 Aug 2006 11:42:25 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75BgPwp053064; Sat, 5 Aug 2006 11:42:25 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75BgPxf053063; Sat, 5 Aug 2006 11:42:25 GMT (envelope-from miwi) Message-Id: <200608051142.k75BgPxf053063@repoman.freebsd.org> From: Martin Wilke Date: Sat, 5 Aug 2006 11:42: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/trac-gantt Makefile distinfo pkg-descr ports/www/trac-gantt/files patch-tracgantt-gantt.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: Sat, 05 Aug 2006 11:42:26 -0000 miwi 2006-08-05 11:42:25 UTC FreeBSD ports repository Modified files: www/trac-gantt Makefile distinfo pkg-descr Removed files: www/trac-gantt/files patch-tracgantt-gantt.py Log: - Update to 0.3.2a - Update WWW and MASTER_SITES PR: ports/101244 Submitted by: Dryice Liu Approved by: krion (mentor) Revision Changes Path 1.3 +2 -2 ports/www/trac-gantt/Makefile 1.3 +3 -3 ports/www/trac-gantt/distinfo 1.2 +0 -11 ports/www/trac-gantt/files/patch-tracgantt-gantt.py (dead) 1.2 +1 -1 ports/www/trac-gantt/pkg-descr From owner-cvs-all@FreeBSD.ORG Sat Aug 5 11:44:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 870D116A4DD; Sat, 5 Aug 2006 11:44:50 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1587D43D46; Sat, 5 Aug 2006 11:44:50 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75Bin5b053169; Sat, 5 Aug 2006 11:44:49 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75Bin3p053168; Sat, 5 Aug 2006 11:44:49 GMT (envelope-from miwi) Message-Id: <200608051144.k75Bin3p053168@repoman.freebsd.org> From: Martin Wilke Date: Sat, 5 Aug 2006 11: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/mail/exim-doc-html 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, 05 Aug 2006 11:44:50 -0000 miwi 2006-08-05 11:44:49 UTC FreeBSD ports repository Modified files: mail/exim-doc-html Makefile distinfo Log: - Update to 4.63 PR: ports/101243 Submitted by: Dryice Liu maintainer Approved by: krion (mentor) Revision Changes Path 1.19 +1 -1 ports/mail/exim-doc-html/Makefile 1.14 +12 -12 ports/mail/exim-doc-html/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 5 11:49:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ADC9216A4DE; Sat, 5 Aug 2006 11:49:25 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6245D43D49; Sat, 5 Aug 2006 11:49:25 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75BnPEa053421; Sat, 5 Aug 2006 11:49:25 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75BnP0L053420; Sat, 5 Aug 2006 11:49:25 GMT (envelope-from miwi) Message-Id: <200608051149.k75BnP0L053420@repoman.freebsd.org> From: Martin Wilke Date: Sat, 5 Aug 2006 11:49: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/cad/gspiceui 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, 05 Aug 2006 11:49:25 -0000 miwi 2006-08-05 11:49:25 UTC FreeBSD ports repository Modified files: cad/gspiceui Makefile Log: - Update MASTER_SITES PR: ports/101240 Submitted by: Jin-Shan Tseng Approved by: krion (mentor), maintainer Revision Changes Path 1.2 +1 -0 ports/cad/gspiceui/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 5 12:29:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1994816A4DE; Sat, 5 Aug 2006 12:29:19 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3C0443D4C; Sat, 5 Aug 2006 12:29:18 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75CTIXX056498; Sat, 5 Aug 2006 12:29:18 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75CTIp4056497; Sat, 5 Aug 2006 12:29:18 GMT (envelope-from sat) Message-Id: <200608051229.k75CTIp4056497@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sat, 5 Aug 2006 12:29: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/sysutils/unieject 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, 05 Aug 2006 12:29:19 -0000 sat 2006-08-05 12:29:18 UTC FreeBSD ports repository Modified files: sysutils/unieject Makefile Log: - Avoid a call to "pkgconfig libconfuse" Reported by: pointyhat via erwin Revision Changes Path 1.3 +2 -0 ports/sysutils/unieject/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 5 12:38:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C05AD16A4DA; Sat, 5 Aug 2006 12:38:29 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 773ED43D45; Sat, 5 Aug 2006 12:38:29 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75CcT8c056944; Sat, 5 Aug 2006 12:38:29 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75CcTte056943; Sat, 5 Aug 2006 12:38:29 GMT (envelope-from sat) Message-Id: <200608051238.k75CcTte056943@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sat, 5 Aug 2006 12:38: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/www/xpi-google-notebook 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, 05 Aug 2006 12:38:29 -0000 sat 2006-08-05 12:38:29 UTC FreeBSD ports repository Modified files: www/xpi-google-notebook Makefile Log: - Update master sites PR: ports/101384 Submitted by: chinsan (maintainer) Revision Changes Path 1.3 +2 -1 ports/www/xpi-google-notebook/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 5 12:47:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B033C16A4DE; Sat, 5 Aug 2006 12:47:42 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6672443D46; Sat, 5 Aug 2006 12:47:42 +0000 (GMT) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75ClgTT065138; Sat, 5 Aug 2006 12:47:42 GMT (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75ClgQG065137; Sat, 5 Aug 2006 12:47:42 GMT (envelope-from jkoshy) Message-Id: <200608051247.k75ClgQG065137@repoman.freebsd.org> From: Joseph Koshy Date: Sat, 5 Aug 2006 12:47:42 +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 faq214.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, 05 Aug 2006 12:47:42 -0000 jkoshy 2006-08-05 12:47:42 UTC FreeBSD doc repository Modified files: en/gnome/docs faq214.sgml Log: Correct link text. Submitted by: Kedar Damle Revision Changes Path 1.9 +2 -2 www/en/gnome/docs/faq214.sgml From owner-cvs-all@FreeBSD.ORG Sat Aug 5 12:50:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE84A16A4DE; Sat, 5 Aug 2006 12:50:38 +0000 (UTC) (envelope-from rse@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5E8143D45; Sat, 5 Aug 2006 12:50:38 +0000 (GMT) (envelope-from rse@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75Coc8M065479; Sat, 5 Aug 2006 12:50:38 GMT (envelope-from rse@repoman.freebsd.org) Received: (from rse@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75Coc3o065477; Sat, 5 Aug 2006 12:50:38 GMT (envelope-from rse) Message-Id: <200608051250.k75Coc3o065477@repoman.freebsd.org> From: "Ralf S. Engelschall" Date: Sat, 5 Aug 2006 12:50:38 +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/dump optr.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, 05 Aug 2006 12:50:39 -0000 rse 2006-08-05 12:50:38 UTC FreeBSD src repository Modified files: sbin/dump optr.c Log: Do not pass-through the tailing newline character from the ctime(3) output to setproctitle(3) in order to get rid of the ugly two-character escape sequence "\n" in the ps(1) output of a dump(8) process: << [...] finished in 0:00 at Sat Aug 5 14:44:39 2006\n (dump) >> [...] finished in 0:00 at Sat Aug 5 14:44:39 2006 (dump) Revision Changes Path 1.33 +5 -3 src/sbin/dump/optr.c From owner-cvs-all@FreeBSD.ORG Sat Aug 5 13:00:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68B9616A4DD; Sat, 5 Aug 2006 13:00:17 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E0E9543D55; Sat, 5 Aug 2006 13:00:16 +0000 (GMT) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75D0GxY065951; Sat, 5 Aug 2006 13:00:16 GMT (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75D0GbJ065950; Sat, 5 Aug 2006 13:00:16 GMT (envelope-from jkoshy) Message-Id: <200608051300.k75D0GbJ065950@repoman.freebsd.org> From: Joseph Koshy Date: Sat, 5 Aug 2006 13:00: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/devel/cil Makefile ports/devel/cil/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: Sat, 05 Aug 2006 13:00:17 -0000 jkoshy 2006-08-05 13:00:16 UTC FreeBSD ports repository Modified files: devel/cil Makefile Added files: devel/cil/files patch-configure Log: - Fix Perl paths to allow "bin/cilly" to work. [1] - Enable this port on FreeBSD/amd64. PR: ports/101312 [1] Submitted by: Li-Wen Hsu Revision Changes Path 1.13 +8 -3 ports/devel/cil/Makefile 1.1 +22 -0 ports/devel/cil/files/patch-configure (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 5 13:09:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 883A716A4DA; Sat, 5 Aug 2006 13:09:43 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D9C043D46; Sat, 5 Aug 2006 13:09:43 +0000 (GMT) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75D9hBO067797; Sat, 5 Aug 2006 13:09:43 GMT (envelope-from cy@repoman.freebsd.org) Received: (from cy@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75D9hik067796; Sat, 5 Aug 2006 13:09:43 GMT (envelope-from cy) Message-Id: <200608051309.k75D9hik067796@repoman.freebsd.org> From: Cy Schubert Date: Sat, 5 Aug 2006 13:09: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/net/ntp-stable Makefile distinfo pkg-plist ports/net/ntp-stable/files patch-aa X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Aug 2006 13:09:43 -0000 cy 2006-08-05 13:09:42 UTC FreeBSD ports repository Modified files: net/ntp-stable Makefile distinfo pkg-plist Removed files: net/ntp-stable/files patch-aa Log: Update 4.2.0a-2006-02-24 --> 4.2.2p3.r2 Revision Changes Path 1.48 +12 -11 ports/net/ntp-stable/Makefile 1.25 +3 -3 ports/net/ntp-stable/distinfo 1.5 +0 -39 ports/net/ntp-stable/files/patch-aa (dead) 1.22 +6 -2 ports/net/ntp-stable/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 5 13:22:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B76BB16A4DD; Sat, 5 Aug 2006 13:22:05 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F16043D53; Sat, 5 Aug 2006 13:22:05 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75DM5Qi068483; Sat, 5 Aug 2006 13:22:05 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75DM5jA068482; Sat, 5 Aug 2006 13:22:05 GMT (envelope-from clsung) Message-Id: <200608051322.k75DM5jA068482@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 5 Aug 2006 13:22: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/lang/ruby-programmingruby 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: Sat, 05 Aug 2006 13:22:05 -0000 clsung 2006-08-05 13:22:05 UTC FreeBSD ports repository Modified files: lang/ruby-programmingruby Makefile Removed files: lang/ruby-programmingruby pkg-plist Log: - Deinstall RUBY_DOCDIR as well PR: ports/101347 Submitted by: maintainer (Stanislav Sedov) Revision Changes Path 1.10 +7 -1 ports/lang/ruby-programmingruby/Makefile 1.8 +0 -1 ports/lang/ruby-programmingruby/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Sat Aug 5 13:22:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A64C016A4F3; Sat, 5 Aug 2006 13:22:36 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DA5943D45; Sat, 5 Aug 2006 13:22:36 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75DMa6m068543; Sat, 5 Aug 2006 13:22:36 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75DMa8l068542; Sat, 5 Aug 2006 13:22:36 GMT (envelope-from clsung) Message-Id: <200608051322.k75DMa8l068542@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 5 Aug 2006 13:22: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/lang/ruby-usersguide 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: Sat, 05 Aug 2006 13:22:36 -0000 clsung 2006-08-05 13:22:36 UTC FreeBSD ports repository Modified files: lang/ruby-usersguide Makefile Removed files: lang/ruby-usersguide pkg-plist Log: - Remove RUBY_DOCDIR as well PR: ports/101350 Submitted by: maintainer (Stanislav Sedov) Revision Changes Path 1.24 +7 -1 ports/lang/ruby-usersguide/Makefile 1.12 +0 -1 ports/lang/ruby-usersguide/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Sat Aug 5 13:33:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24A2C16A4DA; Sat, 5 Aug 2006 13:33:47 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC09243D49; Sat, 5 Aug 2006 13:33:46 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75DXk2s069206; Sat, 5 Aug 2006 13:33:46 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75DXkma069205; Sat, 5 Aug 2006 13:33:46 GMT (envelope-from maho) Message-Id: <200608051333.k75DXkma069205@repoman.freebsd.org> From: Maho Nakata Date: Sat, 5 Aug 2006 13:33: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/editors/openoffice.org-2.0 Makefile ports/editors/openoffice.org-2.0/files Makefile.knobs cws-maho1.diff ports/editors/openoffice.org-2.0-devel Makefile ports/editors/openoffice.org-2.0-devel/files Makefile.knobs cws-maho1.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: Sat, 05 Aug 2006 13:33:47 -0000 maho 2006-08-05 13:33:46 UTC FreeBSD ports repository Modified files: editors/openoffice.org-2.0 Makefile editors/openoffice.org-2.0/files Makefile.knobs editors/openoffice.org-2.0-devel Makefile editors/openoffice.org-2.0-devel/files Makefile.knobs Removed files: editors/openoffice.org-2.0/files cws-maho1.diff editors/openoffice.org-2.0-devel/files cws-maho1.diff Log: Now buildable with java-gcj-compat. WITH_GNUGCJ uses it. Revision Changes Path 1.266 +7 -13 ports/editors/openoffice.org-2.0-devel/Makefile 1.30 +2 -2 ports/editors/openoffice.org-2.0-devel/files/Makefile.knobs 1.7 +0 -283 ports/editors/openoffice.org-2.0-devel/files/cws-maho1.diff (dead) 1.245 +7 -13 ports/editors/openoffice.org-2.0/Makefile 1.30 +2 -2 ports/editors/openoffice.org-2.0/files/Makefile.knobs 1.2 +0 -285 ports/editors/openoffice.org-2.0/files/cws-maho1.diff (dead) From owner-cvs-all@FreeBSD.ORG Sat Aug 5 13:42:24 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB0F816A4DE; Sat, 5 Aug 2006 13:42:24 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90F5743D81; Sat, 5 Aug 2006 13:42:19 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75DgJ4u069722; Sat, 5 Aug 2006 13:42:19 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75DgJpS069721; Sat, 5 Aug 2006 13:42:19 GMT (envelope-from miwi) Message-Id: <200608051342.k75DgJpS069721@repoman.freebsd.org> From: Martin Wilke Date: Sat, 5 Aug 2006 13:42: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/irc/eggdrop Makefile distinfo pkg-message pkg-plist ports/irc/eggdrop/files patch-ab patch-ac patch-ad patch-ae patch-ah patch-ai patch-aj patch-ak patch-eggdrop.conf patch-src::md5::md5c.c patch-src__Makefile.in patch-src__eggdrop.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, 05 Aug 2006 13:42:24 -0000 miwi 2006-08-05 13:42:19 UTC FreeBSD ports repository Modified files: irc/eggdrop Makefile distinfo pkg-plist irc/eggdrop/files patch-eggdrop.conf Added files: irc/eggdrop/files patch-src__Makefile.in patch-src__eggdrop.h patch-src__main.c patch-src__md5__md5c.c patch-src__mod__Makefile.in patch-src__mod__ctcp.mod__ctcp.c patch-src__mod__filesys.mod__filesys.c patch-src__mod__share.mod__share.c patch-src__modules.c pkg-message.in Removed files: irc/eggdrop pkg-message irc/eggdrop/files patch-ab patch-ac patch-ad patch-ae patch-ah patch-ai patch-aj patch-ak patch-src::md5::md5c.c Log: - Update to 1.6.18 PR: ports/101194 Submitted by: KATO Tsuguru Approved by: krion (mentor) Revision Changes Path 1.14 +64 -50 ports/irc/eggdrop/Makefile 1.7 +6 -6 ports/irc/eggdrop/distinfo 1.5 +0 -37 ports/irc/eggdrop/files/patch-ab (dead) 1.5 +0 -10 ports/irc/eggdrop/files/patch-ac (dead) 1.5 +0 -11 ports/irc/eggdrop/files/patch-ad (dead) 1.5 +0 -13 ports/irc/eggdrop/files/patch-ae (dead) 1.5 +0 -8 ports/irc/eggdrop/files/patch-ah (dead) 1.6 +0 -22 ports/irc/eggdrop/files/patch-ai (dead) 1.5 +0 -11 ports/irc/eggdrop/files/patch-aj (dead) 1.5 +0 -9 ports/irc/eggdrop/files/patch-ak (dead) 1.3 +2 -2 ports/irc/eggdrop/files/patch-eggdrop.conf 1.2 +0 -18 ports/irc/eggdrop/files/patch-src::md5::md5c.c (dead) 1.1 +11 -0 ports/irc/eggdrop/files/patch-src__Makefile.in (new) 1.1 +9 -0 ports/irc/eggdrop/files/patch-src__eggdrop.h (new) 1.1 +37 -0 ports/irc/eggdrop/files/patch-src__main.c (new) 1.1 +18 -0 ports/irc/eggdrop/files/patch-src__md5__md5c.c (new) 1.1 +11 -0 ports/irc/eggdrop/files/patch-src__mod__Makefile.in (new) 1.1 +13 -0 ports/irc/eggdrop/files/patch-src__mod__ctcp.mod__ctcp.c (new) 1.1 +11 -0 ports/irc/eggdrop/files/patch-src__mod__filesys.mod__filesys.c (new) 1.1 +22 -0 ports/irc/eggdrop/files/patch-src__mod__share.mod__share.c (new) 1.1 +8 -0 ports/irc/eggdrop/files/patch-src__modules.c (new) 1.1 +10 -0 ports/irc/eggdrop/files/pkg-message.in (new) 1.4 +0 -10 ports/irc/eggdrop/pkg-message (dead) 1.7 +7 -7 ports/irc/eggdrop/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 5 13:53:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E61F16A4DA; Sat, 5 Aug 2006 13:53:17 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5428A43D45; Sat, 5 Aug 2006 13:53:17 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75DrHTa070357; Sat, 5 Aug 2006 13:53:17 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75DrH2N070356; Sat, 5 Aug 2006 13:53:17 GMT (envelope-from clsung) Message-Id: <200608051353.k75DrH2N070356@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 5 Aug 2006 13:53: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/www Makefile ports/www/punbb 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, 05 Aug 2006 13:53:17 -0000 clsung 2006-08-05 13:53:16 UTC FreeBSD ports repository Modified files: www Makefile Added files: www/punbb Makefile distinfo pkg-descr pkg-plist Log: Add punbb 1.2.12, a fast and lightweight PHP-powered discussion board. PR: ports/101386 Submitted by: Gea-Suan Lin Revision Changes Path 1.1542 +1 -0 ports/www/Makefile 1.1 +30 -0 ports/www/punbb/Makefile (new) 1.1 +3 -0 ports/www/punbb/distinfo (new) 1.1 +8 -0 ports/www/punbb/pkg-descr (new) 1.1 +141 -0 ports/www/punbb/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 5 13:53:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32F4816A4DA; Sat, 5 Aug 2006 13:53:29 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E415D43D45; Sat, 5 Aug 2006 13:53:28 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75DrSVV070399; Sat, 5 Aug 2006 13:53:28 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75DrSPG070398; Sat, 5 Aug 2006 13:53:28 GMT (envelope-from clsung) Message-Id: <200608051353.k75DrSPG070398@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 5 Aug 2006 13:53: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: 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, 05 Aug 2006 13:53:29 -0000 clsung 2006-08-05 13:53:28 UTC FreeBSD ports repository Modified files: . modules Log: punbb --> ports/www/punbb Revision Changes Path 1.15908 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Aug 5 13:55:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FEAF16A4DA; Sat, 5 Aug 2006 13:55:31 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED14C43D45; Sat, 5 Aug 2006 13:55:30 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75DtUOa070555; Sat, 5 Aug 2006 13:55:30 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75DtULn070554; Sat, 5 Aug 2006 13:55:30 GMT (envelope-from clsung) Message-Id: <200608051355.k75DtULn070554@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 5 Aug 2006 13:55: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/security/p5-Digest-SHA 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, 05 Aug 2006 13:55:31 -0000 clsung 2006-08-05 13:55:30 UTC FreeBSD ports repository Modified files: security/p5-Digest-SHA Makefile distinfo Log: - update to 5.43 PR: ports/101405 Submitted by: Gea-Suan Lin Revision Changes Path 1.10 +1 -1 ports/security/p5-Digest-SHA/Makefile 1.9 +3 -3 ports/security/p5-Digest-SHA/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 5 13:58:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A53D116A4DD; Sat, 5 Aug 2006 13:58:51 +0000 (UTC) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26D9F43D69; Sat, 5 Aug 2006 13:58:51 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75DwpFa070714; Sat, 5 Aug 2006 13:58:51 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75DwpYr070713; Sat, 5 Aug 2006 13:58:51 GMT (envelope-from stefanf) Message-Id: <200608051358.k75DwpYr070713@repoman.freebsd.org> From: Stefan Farfeleder Date: Sat, 5 Aug 2006 13:58: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/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: Sat, 05 Aug 2006 13:58:51 -0000 stefanf 2006-08-05 13:58:50 UTC FreeBSD src repository Modified files: sbin/ipfw ipfw2.c Log: Use the SLIST_NEXT macro instead of sle_next. Checked with: cmp(1) Revision Changes Path 1.92 +2 -2 src/sbin/ipfw/ipfw2.c From owner-cvs-all@FreeBSD.ORG Sat Aug 5 13:59:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8ABBF16A4E0; Sat, 5 Aug 2006 13:59:49 +0000 (UTC) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E11F43D55; Sat, 5 Aug 2006 13:59:48 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75Dxm7J070796; Sat, 5 Aug 2006 13:59:48 GMT (envelope-from rodrigc@repoman.freebsd.org) Received: (from rodrigc@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75DxmVB070795; Sat, 5 Aug 2006 13:59:48 GMT (envelope-from rodrigc) Message-Id: <200608051359.k75DxmVB070795@repoman.freebsd.org> From: Craig Rodrigues Date: Sat, 5 Aug 2006 13:59: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/sysutils/xfsprogs Makefile distinfo ports/sysutils/xfsprogs/files patch-log_misc.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, 05 Aug 2006 13:59:49 -0000 rodrigc 2006-08-05 13:59:48 UTC FreeBSD ports repository (src committer) Modified files: sysutils/xfsprogs Makefile distinfo Removed files: sysutils/xfsprogs/files patch-log_misc.c Log: Upgrade to xfsprogs-2.8.10 Revision Changes Path 1.12 +1 -1 ports/sysutils/xfsprogs/Makefile 1.6 +3 -3 ports/sysutils/xfsprogs/distinfo 1.2 +0 -20 ports/sysutils/xfsprogs/files/patch-log_misc.c (dead) From owner-cvs-all@FreeBSD.ORG Sat Aug 5 14:11:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6C9516A4DE; Sat, 5 Aug 2006 14:11:46 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7165843D46; Sat, 5 Aug 2006 14:11:46 +0000 (GMT) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75EBku0072703; Sat, 5 Aug 2006 14:11:46 GMT (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75EBkkO072702; Sat, 5 Aug 2006 14:11:46 GMT (envelope-from jkoshy) Message-Id: <200608051411.k75EBkkO072702@repoman.freebsd.org> From: Joseph Koshy Date: Sat, 5 Aug 2006 14:11: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: 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: Sat, 05 Aug 2006 14:11:46 -0000 jkoshy 2006-08-05 14:11:46 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/contributors contrib.additional.sgml Log: Add Li-Wen Hsu for ports/101312. Revision Changes Path 1.598 +5 -0 doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml From owner-cvs-all@FreeBSD.ORG Sat Aug 5 14:14:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B05816A4DD; Sat, 5 Aug 2006 14:14:36 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45DC443D5A; Sat, 5 Aug 2006 14:14:35 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75EEZ6A072800; Sat, 5 Aug 2006 14:14:35 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75EEZcb072799; Sat, 5 Aug 2006 14:14:35 GMT (envelope-from rwatson) Message-Id: <200608051414.k75EEZcb072799@repoman.freebsd.org> From: Robert Watson Date: Sat, 5 Aug 2006 14:14: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/netatalk ddp_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, 05 Aug 2006 14:14:36 -0000 rwatson 2006-08-05 14:14:34 UTC FreeBSD src repository Modified files: sys/netatalk ddp_usrreq.c Log: Since soisdisconnected() is no longer called in pru_detach(), call it near consumers of at_pcbdisconnect() (_close, _abort). Revision Changes Path 1.52 +2 -0 src/sys/netatalk/ddp_usrreq.c From owner-cvs-all@FreeBSD.ORG Sat Aug 5 14:15:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 48AA516A4DF; Sat, 5 Aug 2006 14:15:44 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74E9043D66; Sat, 5 Aug 2006 14:15:41 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75EFfFl072931; Sat, 5 Aug 2006 14:15:41 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75EFfGa072930; Sat, 5 Aug 2006 14:15:41 GMT (envelope-from clsung) Message-Id: <200608051415.k75EFfGa072930@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 5 Aug 2006 14:15: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/graphics Makefile ports/graphics/p5-Image-MetaData-JPEG 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, 05 Aug 2006 14:15:44 -0000 clsung 2006-08-05 14:15:41 UTC FreeBSD ports repository Modified files: graphics Makefile Added files: graphics/p5-Image-MetaData-JPEG Makefile distinfo pkg-descr pkg-plist Log: Add p5-Image-MetaData-JPEG 0.15, perl extension for showing/modifying JPEG (meta)data]. PR: ports/101367 Submitted by: Tsung-Han Yeh Revision Changes Path 1.966 +1 -0 ports/graphics/Makefile 1.1 +31 -0 ports/graphics/p5-Image-MetaData-JPEG/Makefile (new) 1.1 +3 -0 ports/graphics/p5-Image-MetaData-JPEG/distinfo (new) 1.1 +4 -0 ports/graphics/p5-Image-MetaData-JPEG/pkg-descr (new) 1.1 +23 -0 ports/graphics/p5-Image-MetaData-JPEG/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 5 14:16:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5627016A4E6; Sat, 5 Aug 2006 14:16:07 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3838143D76; Sat, 5 Aug 2006 14:15:54 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75EFrPT072977; Sat, 5 Aug 2006 14:15:53 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75EFrar072976; Sat, 5 Aug 2006 14:15:53 GMT (envelope-from clsung) Message-Id: <200608051415.k75EFrar072976@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 5 Aug 2006 14:15: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: 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, 05 Aug 2006 14:16:07 -0000 clsung 2006-08-05 14:15:53 UTC FreeBSD ports repository Modified files: . modules Log: p5-Image-MetaData-JPEG --> ports/graphics/p5-Image-MetaData-JPEG Revision Changes Path 1.15909 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Aug 5 14:39:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D101516A4DF; Sat, 5 Aug 2006 14:39:53 +0000 (UTC) (envelope-from shaun@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E28543D49; Sat, 5 Aug 2006 14:39:53 +0000 (GMT) (envelope-from shaun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75Edr5W088445; Sat, 5 Aug 2006 14:39:53 GMT (envelope-from shaun@repoman.freebsd.org) Received: (from shaun@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75Edr0j088444; Sat, 5 Aug 2006 14:39:53 GMT (envelope-from shaun) Message-Id: <200608051439.k75Edr0j088444@repoman.freebsd.org> From: Shaun Amott Date: Sat, 5 Aug 2006 14:39: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/irc/ircd-ratbox Makefile distinfo pkg-plist ports/irc/ircd-ratbox-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: Sat, 05 Aug 2006 14:39:53 -0000 shaun 2006-08-05 14:39:53 UTC FreeBSD ports repository Modified files: irc/ircd-ratbox Makefile distinfo pkg-plist irc/ircd-ratbox-devel Makefile distinfo Log: - Update ircd-ratbox and ircd-ratbox-devel. They are now both at the same version. - Enable IPv6 by default in both ports. Revision Changes Path 1.5 +8 -8 ports/irc/ircd-ratbox-devel/Makefile 1.4 +3 -3 ports/irc/ircd-ratbox-devel/distinfo 1.5 +4 -10 ports/irc/ircd-ratbox/Makefile 1.3 +3 -3 ports/irc/ircd-ratbox/distinfo 1.2 +3 -2 ports/irc/ircd-ratbox/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 5 15:02:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92D4716A4DE; Sat, 5 Aug 2006 15:02:36 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A83D43D45; Sat, 5 Aug 2006 15:02:36 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75F2Z7k092135; Sat, 5 Aug 2006 15:02:35 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75F2ZVm092134; Sat, 5 Aug 2006 15:02:35 GMT (envelope-from miwi) Message-Id: <200608051502.k75F2ZVm092134@repoman.freebsd.org> From: Martin Wilke Date: Sat, 5 Aug 2006 15:02: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/german/wordpress 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, 05 Aug 2006 15:02:36 -0000 miwi 2006-08-05 15:02:35 UTC FreeBSD ports repository Modified files: german/wordpress distinfo Log: Some fixes were done in language support, so authors decided to reroll the tarball. Submitted by: pointyhat via erwin Approved by: krion (mentor) Revision Changes Path 1.2 +3 -3 ports/german/wordpress/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 5 15:19:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0866516A4DF; Sat, 5 Aug 2006 15:19:55 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A726643D53; Sat, 5 Aug 2006 15:19:54 +0000 (GMT) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75FJs03002446; Sat, 5 Aug 2006 15:19:54 GMT (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75FJssC002445; Sat, 5 Aug 2006 15:19:54 GMT (envelope-from jkoshy) Message-Id: <200608051519.k75FJssC002445@repoman.freebsd.org> From: Joseph Koshy Date: Sat, 5 Aug 2006 15:19: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/libtre 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, 05 Aug 2006 15:19:55 -0000 jkoshy 2006-08-05 15:19:54 UTC FreeBSD ports repository Modified files: textproc/libtre Makefile Log: Add a local MASTER_SITE, note conflict with textproc/glimpse, and adopt this port. Revision Changes Path 1.37 +6 -2 ports/textproc/libtre/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 5 15:22:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E239116A4DD; Sat, 5 Aug 2006 15:22:16 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CBF443D45; Sat, 5 Aug 2006 15:22:16 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75FMGPw002687; Sat, 5 Aug 2006 15:22:16 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75FMGDJ002686; Sat, 5 Aug 2006 15:22:16 GMT (envelope-from arved) Message-Id: <200608051522.k75FMGDJ002686@repoman.freebsd.org> From: Tilman Linneweh Date: Sat, 5 Aug 2006 15:22: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/www/MT 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, 05 Aug 2006 15:22:17 -0000 arved 2006-08-05 15:22:16 UTC FreeBSD ports repository Modified files: www/MT Makefile distinfo pkg-plist Log: Update to 3.3 - Changes: http://www.sixapart.com/movabletype/docs/3.3/ - Add dependency on p5-Crypt-DSA - Mark ignore for perl < 5.6 Revision Changes Path 1.20 +9 -4 ports/www/MT/Makefile 1.10 +3 -3 ports/www/MT/distinfo 1.10 +342 -15 ports/www/MT/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 5 15:27:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E991816A4DF; Sat, 5 Aug 2006 15:27:18 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6C0D43D46; Sat, 5 Aug 2006 15:27:18 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75FRIaq002970; Sat, 5 Aug 2006 15:27:18 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75FRIRC002969; Sat, 5 Aug 2006 15:27:18 GMT (envelope-from miwi) Message-Id: <200608051527.k75FRIRC002969@repoman.freebsd.org> From: Martin Wilke Date: Sat, 5 Aug 2006 15:27: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/irc/py-supybot 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, 05 Aug 2006 15:27:19 -0000 miwi 2006-08-05 15:27:18 UTC FreeBSD ports repository Modified files: irc/py-supybot Makefile distinfo Log: - Update 0.83.2 - Take maintainership [1] PR: ports/100988 Submitted by: Radim Kolar Approved by: krion (mentor), [1] miwi Revision Changes Path 1.6 +2 -2 ports/irc/py-supybot/Makefile 1.6 +3 -3 ports/irc/py-supybot/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 5 15:48:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4AC616A4DA; Sat, 5 Aug 2006 15:48:36 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 723C843D46; Sat, 5 Aug 2006 15:48:36 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75FmaGl009210; Sat, 5 Aug 2006 15:48:36 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75FmaR2009209; Sat, 5 Aug 2006 15:48:36 GMT (envelope-from miwi) Message-Id: <200608051548.k75FmaR2009209@repoman.freebsd.org> From: Martin Wilke Date: Sat, 5 Aug 2006 15:48: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/math/asymptote 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, 05 Aug 2006 15:48:36 -0000 miwi 2006-08-05 15:48:36 UTC FreeBSD ports repository Modified files: math/asymptote Makefile distinfo pkg-plist Log: - Update to 1.12 PR: ports/101246 Submitted by: Nicola Vitale Approved by: krion (mentor) Revision Changes Path 1.21 +1 -1 ports/math/asymptote/Makefile 1.18 +3 -3 ports/math/asymptote/distinfo 1.16 +17 -15 ports/math/asymptote/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 5 15:58:45 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 56A0616A4E2; Sat, 5 Aug 2006 15:58:45 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14ED143D49; Sat, 5 Aug 2006 15:58:45 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75FwikN009812; Sat, 5 Aug 2006 15:58:44 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75FwiNi009811; Sat, 5 Aug 2006 15:58:44 GMT (envelope-from acm) Message-Id: <200608051558.k75FwiNi009811@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Sat, 5 Aug 2006 15:58: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/print/foo2zjs 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, 05 Aug 2006 15:58:45 -0000 acm 2006-08-05 15:58:44 UTC FreeBSD ports repository Modified files: print/foo2zjs Makefile distinfo Log: - Update to 20060804 Approved by: garga (mentor) Revision Changes Path 1.8 +1 -1 ports/print/foo2zjs/Makefile 1.7 +3 -3 ports/print/foo2zjs/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 5 16:09:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A13716A4E0; Sat, 5 Aug 2006 16:09:07 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B49243D5C; Sat, 5 Aug 2006 16:09:07 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75G96ju011558; Sat, 5 Aug 2006 16:09:06 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75G96m2011557; Sat, 5 Aug 2006 16:09:06 GMT (envelope-from miwi) Message-Id: <200608051609.k75G96m2011557@repoman.freebsd.org> From: Martin Wilke Date: Sat, 5 Aug 2006 16:09: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/bsdadminscripts 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, 05 Aug 2006 16:09:07 -0000 miwi 2006-08-05 16:09:06 UTC FreeBSD ports repository Modified files: sysutils/bsdadminscripts Makefile distinfo Log: - Update to 2.1.1 PR: ports/101319 Submitted by: Dominic Fandrey Approved by: krion (mentor) Revision Changes Path 1.5 +2 -2 ports/sysutils/bsdadminscripts/Makefile 1.5 +3 -3 ports/sysutils/bsdadminscripts/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 5 16:12:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17E8F16A4DA; Sat, 5 Aug 2006 16:12:21 +0000 (UTC) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D198843D45; Sat, 5 Aug 2006 16:12:20 +0000 (GMT) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75GCKuq011822; Sat, 5 Aug 2006 16:12:20 GMT (envelope-from alepulver@repoman.freebsd.org) Received: (from alepulver@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75GCKtl011821; Sat, 5 Aug 2006 16:12:20 GMT (envelope-from alepulver) Message-Id: <200608051612.k75GCKtl011821@repoman.freebsd.org> From: Alejandro Pulver Date: Sat, 5 Aug 2006 16:12: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/games/jfduke3d Makefile distinfo pkg-descr pkg-plist ports/games/jfduke3d/files build-wrapper.sh fix.sh patch-Makefile patch-jfbuild_src_20050531-Makefile patch-jfbuild_src_20050531-Makefile.shared pkg-message.in wrapper.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: Sat, 05 Aug 2006 16:12:21 -0000 alepulver 2006-08-05 16:12:20 UTC FreeBSD ports repository Modified files: games/jfduke3d Makefile distinfo pkg-descr pkg-plist Removed files: games/jfduke3d/files build-wrapper.sh fix.sh patch-Makefile patch-jfbuild_src_20050531-Makefile patch-jfbuild_src_20050531-Makefile.shared pkg-message.in wrapper.sh Log: - Update to version 20051009. - Add patch for sound and joystick support taken from icculus.org/duke3d. - Integrate with games/duke3d-data. - Remove wrapper scripts (use programs' search path routines). - Remove CONFLICTS with nonexistent (removed) port games/duke3d. - Move notes in files/pkg-message.in to pkg-descr. PR: ports/101279 Submitted by: alepulver (myself) Approved by: maintainer Revision Changes Path 1.9 +31 -43 ports/games/jfduke3d/Makefile 1.3 +12 -6 ports/games/jfduke3d/distinfo 1.2 +0 -6 ports/games/jfduke3d/files/build-wrapper.sh (dead) 1.2 +0 -17 ports/games/jfduke3d/files/fix.sh (dead) 1.2 +0 -11 ports/games/jfduke3d/files/patch-Makefile (dead) 1.2 +0 -11 ports/games/jfduke3d/files/patch-jfbuild_src_20050531-Makefile (dead) 1.2 +0 -11 ports/games/jfduke3d/files/patch-jfbuild_src_20050531-Makefile.shared (dead) 1.2 +0 -45 ports/games/jfduke3d/files/pkg-message.in (dead) 1.2 +0 -6 ports/games/jfduke3d/files/wrapper.sh (dead) 1.3 +21 -7 ports/games/jfduke3d/pkg-descr 1.3 +7 -9 ports/games/jfduke3d/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 5 16:16:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9D2C16A4DE; Sat, 5 Aug 2006 16:16:33 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2923643D55; Sat, 5 Aug 2006 16:16:33 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75GGXWG012032; Sat, 5 Aug 2006 16:16:33 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75GGWD8012031; Sat, 5 Aug 2006 16:16:32 GMT (envelope-from erwin) Message-Id: <200608051616.k75GGWD8012031@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 5 Aug 2006 16:16: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/p5-DateTime-Calendar-Discordian 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, 05 Aug 2006 16:16:34 -0000 erwin 2006-08-05 16:16:32 UTC FreeBSD ports repository Modified files: devel/p5-DateTime-Calendar-Discordian Makefile Log: Fix dependency Submitted by: pointyhat Pointyhat to: philip Revision Changes Path 1.2 +1 -1 ports/devel/p5-DateTime-Calendar-Discordian/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 5 16:31:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A46ED16A4DA; Sat, 5 Aug 2006 16:31:34 +0000 (UTC) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61F2E43D46; Sat, 5 Aug 2006 16:31:34 +0000 (GMT) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75GVYLA012721; Sat, 5 Aug 2006 16:31:34 GMT (envelope-from joel@repoman.freebsd.org) Received: (from joel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75GVYif012720; Sat, 5 Aug 2006 16:31:34 GMT (envelope-from joel) Message-Id: <200608051631.k75GVYif012720@repoman.freebsd.org> From: Joel Dahl Date: Sat, 5 Aug 2006 16:31:34 +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/acpi 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: Sat, 05 Aug 2006 16:31:34 -0000 joel 2006-08-05 16:31:34 UTC FreeBSD doc repository Modified files: en/projects/acpi index.sgml Log: Remove the cpufreq category. It is no longer needed. Submitted by: njl Revision Changes Path 1.12 +1 -8 www/en/projects/acpi/index.sgml From owner-cvs-all@FreeBSD.ORG Sat Aug 5 16:40:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA10D16A4DE; Sat, 5 Aug 2006 16:40:20 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C13D43D67; Sat, 5 Aug 2006 16:40:18 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75GeHSG013097; Sat, 5 Aug 2006 16:40:17 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75GeHfQ013096; Sat, 5 Aug 2006 16:40:17 GMT (envelope-from rafan) Message-Id: <200608051640.k75GeHfQ013096@repoman.freebsd.org> From: Rong-En Fan Date: Sat, 5 Aug 2006 16:40: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/screen Makefile ports/sysutils/screen/files opt-cjkwidth X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Aug 2006 16:40:21 -0000 rafan 2006-08-05 16:40:17 UTC FreeBSD ports repository Modified files: sysutils/screen Makefile Added files: sysutils/screen/files opt-cjkwidth Log: A new option is added, called "cjkwidth [on|off]". When it is enabled, it treats CJK ambiguous characters as full width. This feature is very helpful for reading legacy CJK applications' output which assume all CJK characters are full width. This option is default off. The patch is obtained from http://www.mhsin.org/~mhsin/patches/screen/patch-cjkwidth The credit belongs to Michael Hsin . It also has been submitted to upstream: http://savannah.gnu.org/bugs/?func=detailitem&item_id=16666 PR: ports/96167 Submitted by: rafan Approved by: maintainer timeout (3 months and 2 weeks) Revision Changes Path 1.62 +5 -0 ports/sysutils/screen/Makefile 1.1 +227 -0 ports/sysutils/screen/files/opt-cjkwidth (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 5 17:14:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E0E7F16A4DD; Sat, 5 Aug 2006 17:14:53 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A14CA43D46; Sat, 5 Aug 2006 17:14:53 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75HErA5023850; Sat, 5 Aug 2006 17:14:53 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75HEr59023849; Sat, 5 Aug 2006 17:14:53 GMT (envelope-from rafan) Message-Id: <200608051714.k75HEr59023849@repoman.freebsd.org> From: Rong-En Fan Date: Sat, 5 Aug 2006 17:14: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/textproc/gladtex 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, 05 Aug 2006 17:14:54 -0000 rafan 2006-08-05 17:14:53 UTC FreeBSD ports repository Modified files: textproc/gladtex pkg-descr Log: - Remove email for anti-spam PR: ports/101411 Submitted by: Nicola Vitale (maintainer) Revision Changes Path 1.2 +1 -1 ports/textproc/gladtex/pkg-descr From owner-cvs-all@FreeBSD.ORG Sat Aug 5 17:42:09 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DAB0716A4DE; Sat, 5 Aug 2006 17:42:09 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F96243D67; Sat, 5 Aug 2006 17:42:09 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75Hg9fn026530; Sat, 5 Aug 2006 17:42:09 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75Hg9lp026529; Sat, 5 Aug 2006 17:42:09 GMT (envelope-from sat) Message-Id: <200608051742.k75Hg9lp026529@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sat, 5 Aug 2006 17:42: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/www/p5-Apache-SizeLimit 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, 05 Aug 2006 17:42:10 -0000 sat 2006-08-05 17:42:09 UTC FreeBSD ports repository Modified files: www/p5-Apache-SizeLimit Makefile Log: - Mark as BROKEN for conflicts with mod_perl Reported by: pointyhat via erwin Revision Changes Path 1.2 +2 -0 ports/www/p5-Apache-SizeLimit/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 5 18:19:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B11C16A4DD; Sat, 5 Aug 2006 18:19:39 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A6F543D4C; Sat, 5 Aug 2006 18:19:39 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75IJdCT029314; Sat, 5 Aug 2006 18:19:39 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75IJdGD029313; Sat, 5 Aug 2006 18:19:39 GMT (envelope-from sat) Message-Id: <200608051819.k75IJdGD029313@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sat, 5 Aug 2006 18: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/spidermonkey 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, 05 Aug 2006 18:19:39 -0000 sat 2006-08-05 18:19:38 UTC FreeBSD ports repository Modified files: lang/spidermonkey Makefile Log: - Install a versioned lib Approved by: citric@cubicone.tmetic.com (maintainer timeout, 16 days) Revision Changes Path 1.18 +2 -1 ports/lang/spidermonkey/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 5 18:21:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7741F16A4DE; Sat, 5 Aug 2006 18:21:20 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E218943D8D; Sat, 5 Aug 2006 18:21:05 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75IL4KR029488; Sat, 5 Aug 2006 18:21:04 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75IL4Ql029487; Sat, 5 Aug 2006 18:21:04 GMT (envelope-from sam) Message-Id: <200608051821.k75IL4Ql029487@repoman.freebsd.org> From: Sam Leffler Date: Sat, 5 Aug 2006 18:21: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/tools/tools/net80211/wlaninject wlaninject.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, 05 Aug 2006 18:21:20 -0000 sam 2006-08-05 18:21:04 UTC FreeBSD src repository Modified files: tools/tools/net80211/wlaninject wlaninject.c Log: make it work after the api change Submitted by: Andrea Bittau Revision Changes Path 1.2 +43 -6 src/tools/tools/net80211/wlaninject/wlaninject.c From owner-cvs-all@FreeBSD.ORG Sat Aug 5 18:22:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 194C716A4E5; Sat, 5 Aug 2006 18:22:25 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3611B43DB0; Sat, 5 Aug 2006 18:22:13 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75IMB4x029588; Sat, 5 Aug 2006 18:22:11 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75IMBnB029587; Sat, 5 Aug 2006 18:22:11 GMT (envelope-from imp) Message-Id: <200608051822.k75IMBnB029587@repoman.freebsd.org> From: Warner Losh Date: Sat, 5 Aug 2006 18:22: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/usr.sbin/kldxref kldxref.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, 05 Aug 2006 18:22:25 -0000 imp 2006-08-05 18:22:11 UTC FreeBSD src repository Modified files: usr.sbin/kldxref kldxref.c Log: Use safe strlcpy rather than unsafe strncpy. After marcel's last fix, there was still one overflow possible. strlcpy is faster anyway because it doesn't unexpectedly zero the entire length of the string when copying short strings.... Revision Changes Path 1.14 +2 -4 src/usr.sbin/kldxref/kldxref.c From owner-cvs-all@FreeBSD.ORG Sat Aug 5 18:37:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C5A516A4DE; Sat, 5 Aug 2006 18:37:15 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91FF143D62; Sat, 5 Aug 2006 18:37:14 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75IbECW030221; Sat, 5 Aug 2006 18:37:14 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75IbENV030220; Sat, 5 Aug 2006 18:37:14 GMT (envelope-from sat) Message-Id: <200608051837.k75IbENV030220@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sat, 5 Aug 2006 18:37: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/lang/spidermonkey 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, 05 Aug 2006 18:37:15 -0000 sat 2006-08-05 18:37:14 UTC FreeBSD ports repository Modified files: lang/spidermonkey Makefile Log: - Bump portrevision for the previous update - INSTALLS_SHLIB -> USE_LDCONFIG - Beautify master sites Revision Changes Path 1.19 +5 -6 ports/lang/spidermonkey/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 5 18:41:50 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0521216A4DE; Sat, 5 Aug 2006 18:41:50 +0000 (UTC) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 243B643D5E; Sat, 5 Aug 2006 18:41:48 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.4/8.13.3) with ESMTP id k75IffFu030177; Sat, 5 Aug 2006 22:41:41 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.4/8.13.3/Submit) id k75IfdFh030176; Sat, 5 Aug 2006 22:41:39 +0400 (MSD) (envelope-from yar) Date: Sat, 5 Aug 2006 22:41:39 +0400 From: Yar Tikhiy To: Marcel Moolenaar Message-ID: <20060805184139.GD29277@comp.chem.msu.su> References: <200608030959.k739x9N6007207@repoman.freebsd.org> <20060804070348.GR97316@comp.chem.msu.su> <6B15CBE0-00E0-4F64-A652-4A4B614975C2@xcllnt.net> <200608041314.24161.jhb@freebsd.org> <20060804200154.GC31805@ns1.xcllnt.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060804200154.GC31805@ns1.xcllnt.net> User-Agent: Mutt/1.5.9i Cc: Sam Leffler , src-committers@freebsd.org, cvs-all@freebsd.org, John Baldwin , cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/net if_vlan.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, 05 Aug 2006 18:41:50 -0000 On Fri, Aug 04, 2006 at 01:01:54PM -0700, Marcel Moolenaar wrote: > On Fri, Aug 04, 2006 at 01:14:22PM -0400, John Baldwin wrote: > > > > > > So, putting the kdb_backtrace() under KDB is not a matter of said > > > function not being present without KDB, it's that we don't want > > > to emit backtraces when debugging is not enabled. Backtraces are > > > a debugging tool and it makes sense to emit them only when the > > > kernel is configured for debugging. > > > > In practice this ends up being redundant though as to have kdb_backtrace() > > actually do anything you have to have DDB in your kernel config, which > > requires KDB. > > That's really an implementation detail. What if we get a new debugger > backend that allows backtraces? What if the GDB backend is extended to > allow backtraces? Anyway, they all will require KDB to register with. > The point is that kdb_backtrace() is there if you want a backtrace and > you call it based on whatever option that makes sense at the call-site > or even unconditionally if that's the right thing. > Whether there's actually a backend that can make a backtrace is really > a seperate issue. We just happen to implement backtracing and unwinding > by debuggers, but with an unwinder in the kernel on ia64, we really > don't need a debugger in order to make a backtrace and it's not that > unrealistic that I create a backend that can only do backtraces... Then it would be great to have that backend enabled by default. Backtraces are good not only to those who do actual debugging. Users could post them to the lists and so help developers. > > Places that call kdb_enter() aren't all #ifdef KDB IIRC. It's > > just a feature that kdb_foo() functions become NOPs when the kernel isn't > > configured for debugging, so I think the #ifdef KDB's would be redundant. > > None of the kdb_*() functions in src/sys/kern/subr_kdb.c turn into > NOPs when option KDB is not present. They are all unconditionally > functional by design and should therefore be called conditionally > by consequence. At least kdb_backtrace() will just return if there is no active backend. The KDB option seems to be used in two distinct cases. One of them is when a driver or subsystem can offer something to KDB. E.g., sio(4) can do line break condition. The other case is when a consumer call to KDB is made, e.g., that to kdb_backtrace(). Now KDB seems to be able to handle such calls even if they are made unconditionally. Of course, such calls will just return unless there is an active backend. Putting such calls under "#ifdef KDB" seems redundant now. As for the first case, such drivers could call something like kdb_is_on() to decide if special actions are to be taken. Using a build-time option to control a link between two kernel parts not depending on the option looks strange. E.g., the KDB code is always there, sio(4) is controlled by "device sio", but the ability of the latter to handle line break condition depends on "options KDB". Counter-intuitive, eh? -- Yar From owner-cvs-all@FreeBSD.ORG Sat Aug 5 19:01:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0956D16A4DA; Sat, 5 Aug 2006 19:01:54 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB86F43D46; Sat, 5 Aug 2006 19:01:53 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75J1r1M031850; Sat, 5 Aug 2006 19:01:53 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75J1rWV031849; Sat, 5 Aug 2006 19:01:53 GMT (envelope-from itetcu) Message-Id: <200608051901.k75J1rWV031849@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Sat, 5 Aug 2006 19:01: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/x11-toolkits/ocaml-lablgtk2 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, 05 Aug 2006 19:01:54 -0000 itetcu 2006-08-05 19:01:53 UTC FreeBSD ports repository Modified files: x11-toolkits/ocaml-lablgtk2 Makefile Log: - CFLAGS safety - Fix permissions (change cp->install in Makefile) - Use new OCaml framework - Pass maintainership to submitter PR: ports/101130 Submitted by: Stanislav Sedov Revision Changes Path 1.12 +14 -5 ports/x11-toolkits/ocaml-lablgtk2/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 5 19:07:08 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5313A16A4DF; Sat, 5 Aug 2006 19:07:08 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13FDB43D46; Sat, 5 Aug 2006 19:07:08 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75J77R0033395; Sat, 5 Aug 2006 19:07:07 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75J77er033394; Sat, 5 Aug 2006 19:07:07 GMT (envelope-from alc) Message-Id: <200608051907.k75J77er033394@repoman.freebsd.org> From: Alan Cox Date: Sat, 5 Aug 2006 19:07: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/sys/vm swap_pager.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, 05 Aug 2006 19:07:08 -0000 alc 2006-08-05 19:07:07 UTC FreeBSD src repository Modified files: sys/vm swap_pager.c Log: Remove a stale comment. Revision Changes Path 1.281 +0 -5 src/sys/vm/swap_pager.c From owner-cvs-all@FreeBSD.ORG Sat Aug 5 19:25:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7285316A4DE; Sat, 5 Aug 2006 19:25:15 +0000 (UTC) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0134C43D46; Sat, 5 Aug 2006 19:25:15 +0000 (GMT) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75JPEFu034317; Sat, 5 Aug 2006 19:25:14 GMT (envelope-from jb@repoman.freebsd.org) Received: (from jb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75JPEob034316; Sat, 5 Aug 2006 19:25:14 GMT (envelope-from jb) Message-Id: <200608051925.k75JPEob034316@repoman.freebsd.org> From: John Birrell Date: Sat, 5 Aug 2006 19:25: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/kern 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, 05 Aug 2006 19:25:15 -0000 jb 2006-08-05 19:25:14 UTC FreeBSD src repository Modified files: sys/kern Makefile Log: Add support for the generated file systrace_args.c. Revision Changes Path 1.13 +2 -1 src/sys/kern/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 5 20:05:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EAEC16A4DA; Sat, 5 Aug 2006 20:05:44 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE91E43D45; Sat, 5 Aug 2006 20:05:43 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75K5hNp037794; Sat, 5 Aug 2006 20:05:43 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75K5hxl037793; Sat, 5 Aug 2006 20:05:43 GMT (envelope-from sat) Message-Id: <200608052005.k75K5hxl037793@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sat, 5 Aug 2006 20:05: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/linux-firefox-devel Makefile ports/www/linux-seamonkey-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: Sat, 05 Aug 2006 20:05:44 -0000 sat 2006-08-05 20:05:43 UTC FreeBSD ports repository Modified files: www/linux-firefox-devel Makefile www/linux-seamonkey-devel Makefile Log: - Make master sites respect subdir Reported by: pointyhat via erwin Revision Changes Path 1.8 +4 -4 ports/www/linux-firefox-devel/Makefile 1.7 +4 -4 ports/www/linux-seamonkey-devel/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 5 20:13:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C74116A4DD; Sat, 5 Aug 2006 20:13:18 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18BFD43D45; Sat, 5 Aug 2006 20:13:18 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75KDHRf039181; Sat, 5 Aug 2006 20:13:17 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75KDHb8039180; Sat, 5 Aug 2006 20:13:17 GMT (envelope-from itetcu) Message-Id: <200608052013.k75KDHb8039180@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Sat, 5 Aug 2006 20:13: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-themes/e17-theme-blue_eyed 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, 05 Aug 2006 20:13:18 -0000 itetcu 2006-08-05 20:13:17 UTC FreeBSD ports repository Modified files: x11-themes/e17-theme-blue_eyed Makefile distinfo Log: - Update to 0.6.5.1 Changelog: * Big thank you to Stanislav Sedov for adding russian font support to 04b08. * The corners image has been removed from gadcon modules. * Added an invisible shelf theme, and shelf inset to jive with the pre shelf theme look. * The new fileselection wobble has been added. PR: ports/101349 Submitted by: Stanislav Sedov (maintainer) Revision Changes Path 1.3 +3 -3 ports/x11-themes/e17-theme-blue_eyed/Makefile 1.2 +3 -3 ports/x11-themes/e17-theme-blue_eyed/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 5 20:16:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A88116A4DA; Sat, 5 Aug 2006 20:16:15 +0000 (UTC) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 264FA43D46; Sat, 5 Aug 2006 20:16:15 +0000 (GMT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75KGFLt039371; Sat, 5 Aug 2006 20:16:15 GMT (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75KGEpm039370; Sat, 5 Aug 2006 20:16:14 GMT (envelope-from clement) Message-Id: <200608052016.k75KGEpm039370@repoman.freebsd.org> From: Clement Laforet Date: Sat, 5 Aug 2006 20:16: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/www/apache20 Makefile distinfo ports/www/apache20/files patch-secfix-CVE-2006-3747 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Aug 2006 20:16:15 -0000 clement 2006-08-05 20:16:14 UTC FreeBSD ports repository Modified files: www/apache20 Makefile distinfo Removed files: www/apache20/files patch-secfix-CVE-2006-3747 Log: - Update to 2.0.59 Revision Changes Path 1.242 +1 -2 ports/www/apache20/Makefile 1.71 +3 -3 ports/www/apache20/distinfo 1.2 +0 -13 ports/www/apache20/files/patch-secfix-CVE-2006-3747 (dead) From owner-cvs-all@FreeBSD.ORG Sat Aug 5 20:16:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34E7616A4E0; Sat, 5 Aug 2006 20:16:33 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E57AE43D45; Sat, 5 Aug 2006 20:16:32 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75KGWJm039424; Sat, 5 Aug 2006 20:16:32 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75KGWii039423; Sat, 5 Aug 2006 20:16:32 GMT (envelope-from itetcu) Message-Id: <200608052016.k75KGWii039423@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Sat, 5 Aug 2006 20:16: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/cad/linux-eagle 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, 05 Aug 2006 20:16:33 -0000 itetcu 2006-08-05 20:16:32 UTC FreeBSD ports repository Modified files: cad/linux-eagle Makefile Log: Depend on linux-xorg libs, reported by Brian Josefsen PR: ports/101227 Submitted by: Thomas E. Zander (maintainer) Revision Changes Path 1.19 +4 -2 ports/cad/linux-eagle/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 5 20:18:09 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6AB5016A4DF; Sat, 5 Aug 2006 20:18:09 +0000 (UTC) (envelope-from marcel@xcllnt.net) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1884943D5C; Sat, 5 Aug 2006 20:18:04 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from [192.168.5.252] (dhcp52.wlan.xcllnt.net [192.168.5.252]) by ns1.xcllnt.net (8.13.6/8.13.6) with ESMTP id k75KHdhW002634; Sat, 5 Aug 2006 13:17:39 -0700 (PDT) (envelope-from marcel@xcllnt.net) In-Reply-To: <20060805184139.GD29277@comp.chem.msu.su> References: <200608030959.k739x9N6007207@repoman.freebsd.org> <20060804070348.GR97316@comp.chem.msu.su> <6B15CBE0-00E0-4F64-A652-4A4B614975C2@xcllnt.net> <200608041314.24161.jhb@freebsd.org> <20060804200154.GC31805@ns1.xcllnt.net> <20060805184139.GD29277@comp.chem.msu.su> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <76B6A9D8-5BF2-4F5D-A711-C87A87B60696@xcllnt.net> Content-Transfer-Encoding: 7bit From: Marcel Moolenaar Date: Sat, 5 Aug 2006 13:17:26 -0700 To: Yar Tikhiy X-Mailer: Apple Mail (2.752.2) Cc: Sam Leffler , src-committers@freebsd.org, cvs-all@freebsd.org, John Baldwin , cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/net if_vlan.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, 05 Aug 2006 20:18:09 -0000 On Aug 5, 2006, at 11:41 AM, Yar Tikhiy wrote: > On Fri, Aug 04, 2006 at 01:01:54PM -0700, Marcel Moolenaar wrote: >> On Fri, Aug 04, 2006 at 01:14:22PM -0400, John Baldwin wrote: >>>> >>>> So, putting the kdb_backtrace() under KDB is not a matter of said >>>> function not being present without KDB, it's that we don't want >>>> to emit backtraces when debugging is not enabled. Backtraces are >>>> a debugging tool and it makes sense to emit them only when the >>>> kernel is configured for debugging. >>> >>> In practice this ends up being redundant though as to have >>> kdb_backtrace() >>> actually do anything you have to have DDB in your kernel config, >>> which >>> requires KDB. >> >> That's really an implementation detail. What if we get a new debugger >> backend that allows backtraces? What if the GDB backend is >> extended to >> allow backtraces? > > Anyway, they all will require KDB to register with. KDB is not conditional upon the KDB option. KDB is unconditionally present. >> The point is that kdb_backtrace() is there if you want a backtrace >> and >> you call it based on whatever option that makes sense at the call- >> site >> or even unconditionally if that's the right thing. >> Whether there's actually a backend that can make a backtrace is >> really >> a seperate issue. We just happen to implement backtracing and >> unwinding >> by debuggers, but with an unwinder in the kernel on ia64, we really >> don't need a debugger in order to make a backtrace and it's not that >> unrealistic that I create a backend that can only do backtraces... > > Then it would be great to have that backend enabled by default. I can see how some people would want that. >>> Places that call kdb_enter() aren't all #ifdef KDB IIRC. It's >>> just a feature that kdb_foo() functions become NOPs when the >>> kernel isn't >>> configured for debugging, so I think the #ifdef KDB's would be >>> redundant. >> >> None of the kdb_*() functions in src/sys/kern/subr_kdb.c turn into >> NOPs when option KDB is not present. They are all unconditionally >> functional by design and should therefore be called conditionally >> by consequence. > > At least kdb_backtrace() will just return if there is no active > backend. Yes. > The KDB option seems to be used in two distinct cases. One of them > is when a driver or subsystem can offer something to KDB. E.g., > sio(4) can do line break condition. The other case is when a > consumer call to KDB is made, e.g., that to kdb_backtrace(). Now > KDB seems to be able to handle such calls even if they are made > unconditionally. Of course, such calls will just return unless > there is an active backend. Putting such calls under "#ifdef KDB" > seems redundant now. No, not really. There can be a performance impact or a correctness impact of calling into KDB. A line break condition does not result in a '\0' character in the input stream with option KDB and it does when option KDB is not present. This is a change in behaviour and changes in behaviour may have compatibility impacts visible in user- space. > As for the first case, such drivers could call something like > kdb_is_on() to decide if special actions are to be taken. For the serial line break condition you could use a sysctl, but there's also a case to be made that it just opens up security holes. The point is that there are 2 ways we could react to a line break condition and we need some way to tell the kernel how we want to do it. It's for that purpose, among others, that we have the KDB option. > Using a > build-time option to control a link between two kernel parts not > depending on the option looks strange. E.g., the KDB code is always > there, sio(4) is controlled by "device sio", but the ability of the > latter to handle line break condition depends on "options KDB". > Counter-intuitive, eh? I think what might cause the confusion is the name "KDB", not what it does. -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-all@FreeBSD.ORG Sat Aug 5 20:28:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2458F16A4DE; Sat, 5 Aug 2006 20:28:51 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D712543D45; Sat, 5 Aug 2006 20:28:50 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75KSoxn039911; Sat, 5 Aug 2006 20:28:50 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75KSoW2039910; Sat, 5 Aug 2006 20:28:50 GMT (envelope-from njl) Message-Id: <200608052028.k75KSoW2039910@repoman.freebsd.org> From: Nate Lawson Date: Sat, 5 Aug 2006 20:28: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/etc/defaults rc.conf X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Aug 2006 20:28:51 -0000 njl 2006-08-05 20:28:50 UTC FreeBSD src repository Modified files: etc/defaults rc.conf Log: Back out 1.272. The LAPIC timer conflicts with C2/3 on various systems, and so users get hangs until interrupts are generated another way. We'll have to find a way to make the 2 work together before re-enabling this by default. Revision Changes Path 1.291 +2 -2 src/etc/defaults/rc.conf From owner-cvs-all@FreeBSD.ORG Sat Aug 5 20:35:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7706016A4DE; Sat, 5 Aug 2006 20:35:12 +0000 (UTC) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36A6343D45; Sat, 5 Aug 2006 20:35:12 +0000 (GMT) (envelope-from jb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75KZCX3040305; Sat, 5 Aug 2006 20:35:12 GMT (envelope-from jb@repoman.freebsd.org) Received: (from jb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75KZCpo040304; Sat, 5 Aug 2006 20:35:12 GMT (envelope-from jb) Message-Id: <200608052035.k75KZCpo040304@repoman.freebsd.org> From: John Birrell Date: Sat, 5 Aug 2006 20:35: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/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, 05 Aug 2006 20:35:12 -0000 jb 2006-08-05 20:35:12 UTC FreeBSD src repository Modified files: sys/sys param.h Log: Add OpenSolaris compatibility definitions which are only visible if _SOLARIS_C_SOURCE is defined. The _OpenSolaris_version is set to match the last import of the OpenSolaris tar ball and is based on the date in that file name. Revision Changes Path 1.270 +16 -0 src/sys/sys/param.h From owner-cvs-all@FreeBSD.ORG Sat Aug 5 20:37:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AE9516A4DA; Sat, 5 Aug 2006 20:37:23 +0000 (UTC) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68D4343D49; Sat, 5 Aug 2006 20:37:23 +0000 (GMT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75KbNRV040466; Sat, 5 Aug 2006 20:37:23 GMT (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75KbN4k040465; Sat, 5 Aug 2006 20:37:23 GMT (envelope-from clement) Message-Id: <200608052037.k75KbN4k040465@repoman.freebsd.org> From: Clement Laforet Date: Sat, 5 Aug 2006 20:37: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/apache22 Makefile Makefile.modules distinfo pkg-plist ports/www/apache22/files patch-secfix-CVE-2006-3747 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Aug 2006 20:37:23 -0000 clement 2006-08-05 20:37:23 UTC FreeBSD ports repository Modified files: www/apache22 Makefile Makefile.modules distinfo pkg-plist Removed files: www/apache22/files patch-secfix-CVE-2006-3747 Log: - Update to 2.2.3 - Update apr_dbd to latest version [1] - Add forgotten mod_authn_alias [2] Spotted by: Jim Riggs [1] Alexander Wittig [2 Revision Changes Path 1.196 +2 -3 ports/www/apache22/Makefile 1.15 +3 -2 ports/www/apache22/Makefile.modules 1.69 +3 -3 ports/www/apache22/distinfo 1.2 +0 -13 ports/www/apache22/files/patch-secfix-CVE-2006-3747 (dead) 1.77 +2 -1 ports/www/apache22/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 5 20:38:24 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9573016A4DD; Sat, 5 Aug 2006 20:38:24 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4658943D49; Sat, 5 Aug 2006 20:38:24 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75KcOw5040531; Sat, 5 Aug 2006 20:38:24 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75KcOIX040530; Sat, 5 Aug 2006 20:38:24 GMT (envelope-from yar) Message-Id: <200608052038.k75KcOIX040530@repoman.freebsd.org> From: Yar Tikhiy Date: Sat, 5 Aug 2006 20:38: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/gnu/usr.bin/groff/tmac mdoc.local X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Aug 2006 20:38:24 -0000 yar 2006-08-05 20:38:24 UTC FreeBSD src repository Modified files: gnu/usr.bin/groff/tmac mdoc.local Log: Add libbsm to the list of our standard libraries. Approved by: ru Revision Changes Path 1.53 +1 -0 src/gnu/usr.bin/groff/tmac/mdoc.local From owner-cvs-all@FreeBSD.ORG Sat Aug 5 20:46:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E618116A4DF; Sat, 5 Aug 2006 20:46:44 +0000 (UTC) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A30B243D46; Sat, 5 Aug 2006 20:46:44 +0000 (GMT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75Kki4R040979; Sat, 5 Aug 2006 20:46:44 GMT (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75Kkiur040978; Sat, 5 Aug 2006 20:46:44 GMT (envelope-from clement) Message-Id: <200608052046.k75Kkiur040978@repoman.freebsd.org> From: Clement Laforet Date: Sat, 5 Aug 2006 20: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/apache22 Makefile.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, 05 Aug 2006 20:46:45 -0000 clement 2006-08-05 20:46:43 UTC FreeBSD ports repository Modified files: www/apache22 Makefile.modules Log: - Force to add ${PTHREAD_CFLAGS} and ${PTHREAD_LIBS} to force detection of pthread_kill(3). Revision Changes Path 1.16 +6 -3 ports/www/apache22/Makefile.modules From owner-cvs-all@FreeBSD.ORG Sat Aug 5 21:08:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1725316A4DE; Sat, 5 Aug 2006 21:08:48 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C94D843D46; Sat, 5 Aug 2006 21:08:47 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75L8lZ3050950; Sat, 5 Aug 2006 21:08:47 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75L8l48050949; Sat, 5 Aug 2006 21:08:47 GMT (envelope-from rwatson) Message-Id: <200608052108.k75L8l48050949@repoman.freebsd.org> From: Robert Watson Date: Sat, 5 Aug 2006 21:08: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/kern vfs_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: Sat, 05 Aug 2006 21:08:48 -0000 rwatson 2006-08-05 21:08:47 UTC FreeBSD src repository Modified files: sys/kern vfs_lookup.c Log: We now spell "inode" as "vnode" in the VFS layer, so update comment for new world order. MFC after: 3 days Pointed out by: mckusick Revision Changes Path 1.92 +3 -3 src/sys/kern/vfs_lookup.c From owner-cvs-all@FreeBSD.ORG Sat Aug 5 21:11:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E3AC16A4DD; Sat, 5 Aug 2006 21:11:59 +0000 (UTC) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64EF443D53; Sat, 5 Aug 2006 21:11:58 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.4/8.13.3) with ESMTP id k75LBeTY031375; Sun, 6 Aug 2006 01:11:40 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.4/8.13.3/Submit) id k75LBeNl031374; Sun, 6 Aug 2006 01:11:40 +0400 (MSD) (envelope-from yar) Date: Sun, 6 Aug 2006 01:11:40 +0400 From: Yar Tikhiy To: Sam Leffler Message-ID: <20060805211140.GG29277@comp.chem.msu.su> References: <200608030959.k739x9N6007207@repoman.freebsd.org> <44D22E2F.4070307@errno.com> <20060803180854.GI97316@comp.chem.msu.su> <44D3758C.1000609@errno.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <44D3758C.1000609@errno.com> User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_vlan.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, 05 Aug 2006 21:11:59 -0000 On Fri, Aug 04, 2006 at 09:27:56AM -0700, Sam Leffler wrote: > Yar Tikhiy wrote: > > On Thu, Aug 03, 2006 at 10:11:11AM -0700, Sam Leffler wrote: > >> Yar Tikhiy wrote: > >>> yar 2006-08-03 09:59:09 UTC > >>> > >>> FreeBSD src repository > >>> > >>> Modified files: > >>> sys/net if_vlan.c > >>> Log: > >>> Should vlan_input() ever be called with ifp pointing to a non-Ethernet > >>> interface, do not just assign -1 to tag because it breaks the logic of > >>> the code to follow. The better way is to handle this case as an unsupported > >>> protocol and return unless INVARIANTS is in effect and we can panic. > >>> Panic is good there because the scenario can happen only because of a > >>> coding error elsewhere. > >>> > >>> We also should show the interface name in the panic message for easier > >>> debugging of the problem, should it ever emerge. > >> Introducing a panic in a place where you can trivially recover is bad > >> regardless of why you got there. Many people run production systems > >> with INVARIANTS turned on. Is it now possible to send a "packet of > >> death" by exploiting this code path? > > > > No nastygram can ever achieve this; only FreeBSD commiters possess > > the ability to :-) > > > > The panic can never be reached unless one manages to attach a vlan > > interface to a non-Ethernet physical interface in advance, which > > is totally prohibited by the code at the beginning of vlan_config(); > > and vlan_config() is the only way to attach a vlan interface to a > > physical interface. > > > > I.e., it will take a developer breaking the logic in /sys/net to > > make the code path expoloitable. > > > > OTOH, you are right that we can at least attempt to recover from > > the situation. Perhaps it's time to introduce a common macro or > > function that emits a message on the console and then just calls > > kdb_backtrace() instead of dumping core and halting the system? > > So users will be able to post the stack traces to the lists and > > thus help to spot the possible bugs w/o having to go through panics. > > I'm unsure if sticking raw kdb_backtrace() calls in such places > > is a good idea, so I'm suggesting a wrapper function or macro. > > It is to be used in "can absolutely never happen" cases that are > > not fatal, like the one under discussion. > > > > It is my experience that problems like the "packet of death" come about > from (well-meaning) planting of a landmine of this sort followed, > sometime later, by another person enabling the code path. I work by the > rule that panic should be used only in places where you have no way to > recover or recovery is so hard as to be not worthwhile (based on the > circumstances). Sounds fair! if_vlan.c appears to use quite a few KASSERT's and panic's in places where it could recover by, e.g., failing the current operation. I'll revise them. -- Yar From owner-cvs-all@FreeBSD.ORG Sat Aug 5 21:20:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0034216A4DA; Sat, 5 Aug 2006 21:20:54 +0000 (UTC) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4125243D45; Sat, 5 Aug 2006 21:20:53 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.4/8.13.3) with ESMTP id k75LKqhQ031449; Sun, 6 Aug 2006 01:20:52 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.4/8.13.3/Submit) id k75LKq9O031448; Sun, 6 Aug 2006 01:20:52 +0400 (MSD) (envelope-from yar) Date: Sun, 6 Aug 2006 01:20:52 +0400 From: Yar Tikhiy To: Gleb Smirnoff Message-ID: <20060805212051.GA31388@comp.chem.msu.su> References: <200608041336.k74DaSRI089155@repoman.freebsd.org> <20060804151509.GF96644@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060804151509.GF96644@FreeBSD.org> User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netgraph ng_ether.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, 05 Aug 2006 21:20:55 -0000 On Fri, Aug 04, 2006 at 07:15:09PM +0400, Gleb Smirnoff wrote: > On Fri, Aug 04, 2006 at 01:36:28PM +0000, Gleb Smirnoff wrote: > T> glebius 2006-08-04 13:36:28 UTC > T> > T> FreeBSD src repository > T> > T> Modified files: > T> sys/netgraph ng_ether.c > T> Log: > T> Turn off by default "feature" that overwrites MAC address > T> on output frames. > T> > T> Many people were confused with not working CARP, ng_bridge(4) > T> and other subsystems, because ng_ether(4) overwritten source > T> MAC address. > > About a year ago or more I have discussed this change with Yar > and Julian. AFAIR, there were no objections. I'm very happy with this change. Thanks! -- Yar From owner-cvs-all@FreeBSD.ORG Sat Aug 5 21:41:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD6E116A4DA; Sat, 5 Aug 2006 21:41:30 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA82043D8F; Sat, 5 Aug 2006 21:41:09 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75Lf5uC052588; Sat, 5 Aug 2006 21:41:05 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75Lf0Kb052587; Sat, 5 Aug 2006 21:41:00 GMT (envelope-from rwatson) Message-Id: <200608052141.k75Lf0Kb052587@repoman.freebsd.org> From: Robert Watson Date: Sat, 5 Aug 2006 21:41: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 vfs_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: Sat, 05 Aug 2006 21:41:30 -0000 rwatson 2006-08-05 21:41:00 UTC FreeBSD src repository Modified files: sys/kern vfs_lookup.c Log: Remove register, use ANSI function headers. Revision Changes Path 1.93 +9 -15 src/sys/kern/vfs_lookup.c From owner-cvs-all@FreeBSD.ORG Sat Aug 5 21:47:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ADBEC16A4DA; Sat, 5 Aug 2006 21:47:40 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6841C43D5A; Sat, 5 Aug 2006 21:47:40 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75LleZt052893; Sat, 5 Aug 2006 21:47:40 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75LleuZ052892; Sat, 5 Aug 2006 21:47:40 GMT (envelope-from itetcu) Message-Id: <200608052147.k75LleuZ052892@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Sat, 5 Aug 2006 21:47: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-im/sim-im-devel 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, 05 Aug 2006 21:47:40 -0000 itetcu 2006-08-05 21:47:40 UTC FreeBSD ports repository Modified files: net-im/sim-im-devel Makefile distinfo pkg-descr pkg-plist Log: Update sim-im-devel to latest and unbreak. PR: ports/101249 Submitted by: Alexey V. Panfilov (maintainer) Revision Changes Path 1.4 +5 -6 ports/net-im/sim-im-devel/Makefile 1.3 +3 -3 ports/net-im/sim-im-devel/distinfo 1.3 +0 -2 ports/net-im/sim-im-devel/pkg-descr 1.2 +45 -2 ports/net-im/sim-im-devel/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 5 21:49:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBED316A4E1; Sat, 5 Aug 2006 21:49:33 +0000 (UTC) (envelope-from shaun@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D621943D6B; Sat, 5 Aug 2006 21:49:31 +0000 (GMT) (envelope-from shaun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75LnVZh052974; Sat, 5 Aug 2006 21:49:31 GMT (envelope-from shaun@repoman.freebsd.org) Received: (from shaun@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75LnVKB052973; Sat, 5 Aug 2006 21:49:31 GMT (envelope-from shaun) Message-Id: <200608052149.k75LnVKB052973@repoman.freebsd.org> From: Shaun Amott Date: Sat, 5 Aug 2006 21:49: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/misc/bibletime 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, 05 Aug 2006 21:49:33 -0000 shaun 2006-08-05 21:49:31 UTC FreeBSD ports repository Modified files: misc/bibletime Makefile Log: Mark BROKEN on 4.x: fails to compile. PR: ports/101208 Submitted by: Thomas Abthorpe (maintainer) Revision Changes Path 1.17 +7 -1 ports/misc/bibletime/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 5 22:04:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D54C516A4DF; Sat, 5 Aug 2006 22:04:21 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 937F743D46; Sat, 5 Aug 2006 22:04:21 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75M4LJa054938; Sat, 5 Aug 2006 22:04:21 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75M4LJQ054937; Sat, 5 Aug 2006 22:04:21 GMT (envelope-from rwatson) Message-Id: <200608052204.k75M4LJQ054937@repoman.freebsd.org> From: Robert Watson Date: Sat, 5 Aug 2006 22:04: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/sys/compat/svr4 svr4_stream.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, 05 Aug 2006 22:04:21 -0000 rwatson 2006-08-05 22:04:21 UTC FreeBSD src repository Modified files: sys/compat/svr4 svr4_stream.c Log: With socket code no longer in svr4_stream.c, MAC includes are no longer required, so GC. Revision Changes Path 1.62 +0 -2 src/sys/compat/svr4/svr4_stream.c From owner-cvs-all@FreeBSD.ORG Sat Aug 5 22:21:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B44D16A4DE; Sat, 5 Aug 2006 22:21:38 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 397B143D49; Sat, 5 Aug 2006 22:21:38 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75MLc1C060707; Sat, 5 Aug 2006 22:21:38 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75MLckn060706; Sat, 5 Aug 2006 22:21:38 GMT (envelope-from edwin) Message-Id: <200608052221.k75MLckn060706@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Aug 2006 22:21: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/mail Makefile ports/mail/libsieve 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, 05 Aug 2006 22:21:38 -0000 edwin 2006-08-05 22:21:38 UTC FreeBSD ports repository Modified files: mail Makefile Added files: mail/libsieve Makefile distinfo pkg-descr pkg-plist Log: New port: mail/libsieve A library to interpret Sieve scripts, and to execute them over a given set of messages A library for parsing, sorting and filtering your mail. libSieve provides a library to interpret Sieve scripts, and to execute those scripts over a given set of messages. The return codes from the libSieve functions let your program know how to handle the message, and then it's up to you to make it so. libSieve makes no attempt to have knowledge of how SMTP, IMAP, or anything else work; just how to parse and deal with a buffer full of emails. PR: ports/101346 Submitted by: Mark Starovoytov Revision Changes Path 1.786 +1 -0 ports/mail/Makefile 1.1 +26 -0 ports/mail/libsieve/Makefile (new) 1.1 +3 -0 ports/mail/libsieve/distinfo (new) 1.1 +8 -0 ports/mail/libsieve/pkg-descr (new) 1.1 +6 -0 ports/mail/libsieve/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 5 22:22:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 525AA16A4DA; Sat, 5 Aug 2006 22:22:35 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12CBA43D49; Sat, 5 Aug 2006 22:22:35 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75MMYNI060770; Sat, 5 Aug 2006 22:22:34 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75MMYCH060769; Sat, 5 Aug 2006 22:22:34 GMT (envelope-from edwin) Message-Id: <200608052222.k75MMYCH060769@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Aug 2006 22:22: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: Sat, 05 Aug 2006 22:22:35 -0000 edwin 2006-08-05 22:22:34 UTC FreeBSD ports repository Modified files: . modules Log: libsieve --> ports/mail/libsieve Revision Changes Path 1.15910 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Aug 5 22:24:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A1FD16A4DD; Sat, 5 Aug 2006 22:24:20 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A8D243D49; Sat, 5 Aug 2006 22:24:20 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75MOJv5060843; Sat, 5 Aug 2006 22:24:19 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75MOJgO060842; Sat, 5 Aug 2006 22:24:19 GMT (envelope-from erwin) Message-Id: <200608052224.k75MOJgO060842@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 5 Aug 2006 22:24: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/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: Sat, 05 Aug 2006 22:24:20 -0000 erwin 2006-08-05 22:24:19 UTC FreeBSD ports repository Modified files: games/blobandconquer Makefile Log: Mark BROKEN: does not fetch. Unfortunately, the maintainer blocks my mail, so I see no other way. Revision Changes Path 1.3 +2 -0 ports/games/blobandconquer/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 5 22:35:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7515316A4DD; Sat, 5 Aug 2006 22:35:34 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3460943D45; Sat, 5 Aug 2006 22:35:34 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75MZYU8061509; Sat, 5 Aug 2006 22:35:34 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75MZYo3061508; Sat, 5 Aug 2006 22:35:34 GMT (envelope-from edwin) Message-Id: <200608052235.k75MZYo3061508@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Aug 2006 22: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/mail/dbmail-devel Makefile distinfo pkg-descr pkg-message pkg-plist ports/mail/dbmail-devel/files dbmail-imapd.sh.in dbmail-lmtpd.sh.in dbmail-pop3d.sh.in patch-2.1.7_001_383 patch-2.1.7_002 patch-2.1.7_004 ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Aug 2006 22:35:34 -0000 edwin 2006-08-05 22:35:33 UTC FreeBSD ports repository Modified files: mail/dbmail-devel Makefile distinfo pkg-descr pkg-plist mail/dbmail-devel/files dbmail-imapd.sh.in dbmail-lmtpd.sh.in dbmail-pop3d.sh.in Added files: mail/dbmail-devel pkg-message mail/dbmail-devel/files patch-2.1.7_001_383 patch-2.1.7_002 patch-2.1.7_004 patch-2.1.7_005 patch-2.1.7_006 patch-2.1.7_007_385 patch-2.1.7_008 patch-2.1.7_009_372 patch-2.1.7_010_372 Log: New port: mail/dbmail21 -current branch of DBMail Dbmail is the name of a group of programs that enable the possiblilty of storing and retrieving mail messages from a database (currently MySQL, PostgreSQL or SQLite). What are the advantages? * Scalability. Dbmail is as scalable as the database that is used for the mail storage. * Manageability. Dbmail is based upon a database. Dbmail can be managed by changing settings in the database (f.e. using PHP/Perl/SQL). * Speed. Dbmail uses very efficient, database specific queries for retrieving mail information. This is much faster then parsing a filesystem. * Security. Dbmail has got nothing to do with the filesystem or interaction with other programs in the Unix environment which need special permissions. Dbmail is as secure as the database it's based upon. * Flexibility. Changes on a Dbmail system (adding of users, changing passwords etc.) are effective immediately. WWW: http://www.dbmail.org/ PR: ports/101356 Submitted by: Mark Starovoytov Revision Changes Path 1.29 +106 -58 ports/mail/dbmail-devel/Makefile 1.16 +3 -3 ports/mail/dbmail-devel/distinfo 1.2 +1 -1 ports/mail/dbmail-devel/files/dbmail-imapd.sh.in 1.2 +1 -1 ports/mail/dbmail-devel/files/dbmail-lmtpd.sh.in 1.2 +2 -2 ports/mail/dbmail-devel/files/dbmail-pop3d.sh.in 1.1 +44 -0 ports/mail/dbmail-devel/files/patch-2.1.7_001_383 (new) 1.1 +28 -0 ports/mail/dbmail-devel/files/patch-2.1.7_002 (new) 1.1 +52 -0 ports/mail/dbmail-devel/files/patch-2.1.7_004 (new) 1.1 +14 -0 ports/mail/dbmail-devel/files/patch-2.1.7_005 (new) 1.1 +138 -0 ports/mail/dbmail-devel/files/patch-2.1.7_006 (new) 1.1 +76 -0 ports/mail/dbmail-devel/files/patch-2.1.7_007_385 (new) 1.1 +22 -0 ports/mail/dbmail-devel/files/patch-2.1.7_008 (new) 1.1 +63 -0 ports/mail/dbmail-devel/files/patch-2.1.7_009_372 (new) 1.1 +116 -0 ports/mail/dbmail-devel/files/patch-2.1.7_010_372 (new) 1.2 +16 -12 ports/mail/dbmail-devel/pkg-descr 1.1 +12 -0 ports/mail/dbmail-devel/pkg-message (new) 1.14 +47 -29 ports/mail/dbmail-devel/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 5 22:37:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61DAD16A4DE; Sat, 5 Aug 2006 22:37:46 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2120443D46; Sat, 5 Aug 2006 22:37:46 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75MbjYJ061603; Sat, 5 Aug 2006 22:37:45 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75MbjtI061602; Sat, 5 Aug 2006 22:37:45 GMT (envelope-from edwin) Message-Id: <200608052237.k75MbjtI061602@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Aug 2006 22:37: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: 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, 05 Aug 2006 22:37:46 -0000 edwin 2006-08-05 22:37:45 UTC FreeBSD ports repository Modified files: . modules Log: dbmail-devel -> mail/dbmail-devel Revision Changes Path 1.15911 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Aug 5 22:42:24 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBD1B16A4DA; Sat, 5 Aug 2006 22:42:24 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A8F4D43D46; Sat, 5 Aug 2006 22:42:24 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75MgOE5061906; Sat, 5 Aug 2006 22:42:24 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75MgO5T061905; Sat, 5 Aug 2006 22:42:24 GMT (envelope-from erwin) Message-Id: <200608052242.k75MgO5T061905@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 5 Aug 2006 22:42: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/finance/cbb Makefile ports/finance/cbb/files patch-01 patch-03 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Aug 2006 22:42:25 -0000 erwin 2006-08-05 22:42:24 UTC FreeBSD ports repository Modified files: finance/cbb Makefile Removed files: finance/cbb/files patch-01 patch-03 Log: Fix install after DESTDIR patch. Submitted by: gabor Revision Changes Path 1.27 +11 -1 ports/finance/cbb/Makefile 1.10 +0 -14 ports/finance/cbb/files/patch-01 (dead) 1.2 +0 -20 ports/finance/cbb/files/patch-03 (dead) From owner-cvs-all@FreeBSD.ORG Sat Aug 5 22:46:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C09116A4DA; Sat, 5 Aug 2006 22:46:56 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF2EA43D45; Sat, 5 Aug 2006 22:46:55 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75MktYl062113; Sat, 5 Aug 2006 22:46:55 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75MktHq062112; Sat, 5 Aug 2006 22:46:55 GMT (envelope-from erwin) Message-Id: <200608052246.k75MktHq062112@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 5 Aug 2006 22:46: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/devel/p5-DateTime-Calendar-Discordian 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, 05 Aug 2006 22:46:56 -0000 erwin 2006-08-05 22:46:55 UTC FreeBSD ports repository Modified files: devel/p5-DateTime-Calendar-Discordian Makefile Log: Remove extraneous / Pointyhat to: erwin Revision Changes Path 1.3 +1 -1 ports/devel/p5-DateTime-Calendar-Discordian/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 5 23:01:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A072916A4DE; Sat, 5 Aug 2006 23:01:07 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17E3C43D58; Sat, 5 Aug 2006 23:01:07 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k75N16ew062795; Sat, 5 Aug 2006 23:01:06 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75N16c9062794; Sat, 5 Aug 2006 23:01:06 GMT (envelope-from marcus) Message-Id: <200608052301.k75N16c9062794@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 5 Aug 2006 23:01: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/multimedia/totem 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, 05 Aug 2006 23:01:07 -0000 marcus 2006-08-05 23:01:06 UTC FreeBSD ports repository Modified files: multimedia/totem Makefile distinfo pkg-plist Log: Update to 1.4.4. Revision Changes Path 1.69 +1 -1 ports/multimedia/totem/Makefile 1.31 +3 -3 ports/multimedia/totem/distinfo 1.30 +5 -2 ports/multimedia/totem/pkg-plist