From owner-cvs-all@FreeBSD.ORG Sun Aug 19 00:49:19 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 36CEC16A420; Sun, 19 Aug 2007 00:49:19 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: from mail.netplex.net (mail.netplex.net [204.213.176.10]) by mx1.freebsd.org (Postfix) with ESMTP id CEDC313C458; Sun, 19 Aug 2007 00:49:18 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: from sea.ntplx.net (sea.ntplx.net [204.213.176.11]) by mail.netplex.net (8.14.1/8.14.1/NETPLEX) with ESMTP id l7J0n6k1009733; Sat, 18 Aug 2007 20:49:07 -0400 (EDT) X-Virus-Scanned: by AMaViS and Clam AntiVirus (mail.netplex.net) X-Greylist: Message whitelisted by DRAC access database, not delayed by milter-greylist-3.0 (mail.netplex.net [204.213.176.10]); Sat, 18 Aug 2007 20:49:07 -0400 (EDT) Date: Sat, 18 Aug 2007 20:49:06 -0400 (EDT) From: Daniel Eischen X-X-Sender: eischen@sea.ntplx.net To: Tijl Coosemans In-Reply-To: <200708182118.37998.tijl@ulyssis.org> Message-ID: References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C4FD02.3090708@freebsd.org> <200708182118.37998.tijl@ulyssis.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: wine-freebsd@hub.org, src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, David Xu , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys thr.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Daniel Eischen List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Aug 2007 00:49:19 -0000 On Sat, 18 Aug 2007, Tijl Coosemans wrote: > On Friday 17 August 2007 04:33:07 Daniel Eischen wrote: >> Yes, I know it's not needed by libthr :-) I would think you could >> use mq_open(), mq_notify() with sigev_notify = SIGEV_SIGNAL, etc. >> When the receiving process gets the signal, it reads the message >> queue to get the target thread id and the signal to send to it. >> >> It would be nice if we (FreeBSD) did have thread groups, and the >> ability to (soft) bind them to specific CPUs or CPU sets, ala Solaris >> processor_bind(), pset_bind(), etc. Once you have these, then I can >> perhaps see a thrgrp_signal() or something similar since the thread >> group would already be managable outside the context of a process. > > > To be honest, I'm not entirely fond of adding this syscall either, but > from an engineering point of view, it's really the easiest and cheapest > solution right now. That doesn't mean we should have added it. Our APIs that ship for 7.0 need to be maintained for compatibility, and this API is to satisfy just one application (Wine), and only for some of those applications that are run under it. > POSIX message queues aren't needed. Sigqueue() with sigval set to the > thread id would be enough. Then whichever thread receives the signal > can either handle it or dispatch it using thr_kill(). > > Sigqueue() doesn't exist in 6-STABLE though and as I understood will > never be MFC'd, because it involves too many other things (signal > queueing, ksiginfo,...), whereas thr_kill2() is entirely isolated and > trivial to merge. > > Perhaps it should be stressed in documentation that this syscall is > only meant for Wine and to be removed at some point when better > solutions become available. I want to test this sigqueue solution some > more, because the indirection in signal delivery causes trouble when a > thread signals itself. I guess this would have to be special-cased > somehow then. I would rather just use sigqueue in 7.0 if necessary and drop support for some set of applications run under Wine in 6.0. We shouldn't be adding hacks like this to suit just one application... -- DE From owner-cvs-all@FreeBSD.ORG Sun Aug 19 00:52:03 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C16816A419; Sun, 19 Aug 2007 00:52:03 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: from mail.netplex.net (mail.netplex.net [204.213.176.10]) by mx1.freebsd.org (Postfix) with ESMTP id 159BD13C469; Sun, 19 Aug 2007 00:52:02 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: from sea.ntplx.net (sea.ntplx.net [204.213.176.11]) by mail.netplex.net (8.14.1/8.14.1/NETPLEX) with ESMTP id l7J0pvaB010804; Sat, 18 Aug 2007 20:51:57 -0400 (EDT) X-Virus-Scanned: by AMaViS and Clam AntiVirus (mail.netplex.net) X-Greylist: Message whitelisted by DRAC access database, not delayed by milter-greylist-3.0 (mail.netplex.net [204.213.176.10]); Sat, 18 Aug 2007 20:51:58 -0400 (EDT) Date: Sat, 18 Aug 2007 20:51:57 -0400 (EDT) From: Daniel Eischen X-X-Sender: eischen@sea.ntplx.net To: Robert Watson In-Reply-To: <20070818204223.D1234@fledge.watson.org> Message-ID: References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C4FD02.3090708@freebsd.org> <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: wine-freebsd@hub.org, src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys thr.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Daniel Eischen List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Aug 2007 00:52:03 -0000 On Sat, 18 Aug 2007, Robert Watson wrote: > > On Sat, 18 Aug 2007, Tijl Coosemans wrote: > >> Perhaps it should be stressed in documentation that this syscall is only >> meant for Wine and to be removed at some point when better solutions become >> available. I want to test this sigqueue solution some more, because the >> indirection in signal delivery causes trouble when a thread signals itself. >> I guess this would have to be special-cased somehow then. > > As a general rule, removing system calls is discouraged as it breaks backward > compatibility allowing newer kernels to run older applications, so I think we > should avoid adding a system call with the intent to remove it in mind at the > time it's added :-). While thr_kill2() is imperfect from several > perspectives, it is certainly a minimalist and logical construction that can > be easily understood, and that's pretty valuable. You can say that about a lot of APIs, but that doesn't mean we should add them. This is a bit of a hack to satisfy one application (Wine) when there are other (perhaps harder) ways to skin the cat. We certainly don't want anything else using this API, so I'd advocate removing it. -- DE From owner-cvs-all@FreeBSD.ORG Sun Aug 19 01:21:40 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9A21516A418; Sun, 19 Aug 2007 01:21:40 +0000 (UTC) (envelope-from scrappy@hub.org) Received: from hub.org (hub.org [200.46.204.220]) by mx1.freebsd.org (Postfix) with ESMTP id 5A16E13C46E; Sun, 19 Aug 2007 01:21:40 +0000 (UTC) (envelope-from scrappy@hub.org) Received: from localhost (maia-2.hub.org [200.46.204.187]) by hub.org (Postfix) with ESMTP id 70E33B4750C; Sat, 18 Aug 2007 22:04:34 -0300 (ADT) Received: from hub.org ([200.46.204.220]) by localhost (mx1.hub.org [200.46.204.187]) (amavisd-maia, port 10024) with ESMTP id 80376-07; Sat, 18 Aug 2007 22:04:25 -0300 (ADT) Received: from fserv.hub.org (blk-89-241-126.eastlink.ca [24.89.241.126]) by hub.org (Postfix) with ESMTP id E93F8B47248; Sat, 18 Aug 2007 22:04:30 -0300 (ADT) Received: from [192.168.1.2] (unknown [192.168.1.2]) by fserv.hub.org (Postfix) with ESMTP id 29D82E6330; Sat, 18 Aug 2007 22:04:46 -0300 (ADT) Date: Sat, 18 Aug 2007 22:04:20 -0300 From: "Marc G. Fournier" To: Daniel Eischen , Robert Watson Message-ID: <250D8A54B98F12158C71D8FE@ganymede.hub.org> In-Reply-To: References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C4FD02.3090708@freebsd.org> <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> X-Mailer: Mulberry/4.0.8 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: wine-freebsd@hub.org, src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 01:21:40 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 - --On Saturday, August 18, 2007 20:51:57 -0400 Daniel Eischen wrote: > You can say that about a lot of APIs, but that doesn't mean we should add > them. This is a bit of a hack to satisfy one application (Wine) when there > are other (perhaps harder) ways to skin the cat. We certainly don't want > anything else using this API, so I'd advocate removing it. Stupid question, but ... why not? First off, do you know for a fact that Wine is the only app out there that needs the ability to kill off a thread in a seperate process, or has nobody in the past cared enough to see other apps ported from Linux -> FreeBSD to push for this sort of thing? - ---- Marc G. Fournier Hub.Org Networking Services (http://www.hub.org) Email . scrappy@hub.org MSN . scrappy@hub.org Yahoo . yscrappy Skype: hub.org ICQ . 7615664 -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQFGx5cU4QvfyHIvDvMRAnR/AKCZ2MpRWKxQ3WDtyp6l7W5GvToZ+ACcCbQI /LGG0jukEds5Lii82lhYdFs= =0wg7 -----END PGP SIGNATURE----- From owner-cvs-all@FreeBSD.ORG Sun Aug 19 02:26:17 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D04F816A417; Sun, 19 Aug 2007 02:26:17 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.freebsd.org (Postfix) with ESMTP id 5F7C913C428; Sun, 19 Aug 2007 02:26:17 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from phobos.samsco.home (phobos.samsco.home [192.168.254.11]) (authenticated bits=0) by pooker.samsco.org (8.13.8/8.13.8) with ESMTP id l7J2NXAO039318; Sat, 18 Aug 2007 20:23:34 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <46C7A9A4.5090404@samsco.org> Date: Sat, 18 Aug 2007 20:23:32 -0600 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.6) Gecko/20070802 SeaMonkey/1.1.4 MIME-Version: 1.0 To: Daniel Eischen References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C4FD02.3090708@freebsd.org> <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (pooker.samsco.org [168.103.85.57]); Sat, 18 Aug 2007 20:23:34 -0600 (MDT) X-Spam-Status: No, score=-1.4 required=5.5 tests=ALL_TRUSTED autolearn=failed version=3.1.8 X-Spam-Checker-Version: SpamAssassin 3.1.8 (2007-02-13) on pooker.samsco.org Cc: wine-freebsd@hub.org, src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, Robert Watson , David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys thr.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, 19 Aug 2007 02:26:17 -0000 Daniel Eischen wrote: > On Sat, 18 Aug 2007, Robert Watson wrote: > >> >> On Sat, 18 Aug 2007, Tijl Coosemans wrote: >> >>> Perhaps it should be stressed in documentation that this syscall is >>> only meant for Wine and to be removed at some point when better >>> solutions become available. I want to test this sigqueue solution >>> some more, because the indirection in signal delivery causes trouble >>> when a thread signals itself. I guess this would have to be >>> special-cased somehow then. >> >> As a general rule, removing system calls is discouraged as it breaks >> backward compatibility allowing newer kernels to run older >> applications, so I think we should avoid adding a system call with the >> intent to remove it in mind at the time it's added :-). While >> thr_kill2() is imperfect from several perspectives, it is certainly a >> minimalist and logical construction that can be easily understood, and >> that's pretty valuable. > > You can say that about a lot of APIs, but that doesn't mean we should add > them. This is a bit of a hack to satisfy one application (Wine) when there > are other (perhaps harder) ways to skin the cat. We certainly don't want > anything else using this API, so I'd advocate removing it. > I'm in strong agreement here. David? Scott From owner-cvs-all@FreeBSD.ORG Sun Aug 19 03:11:44 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9C0FE16A41A; Sun, 19 Aug 2007 03:11:44 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: from mail.netplex.net (mail.netplex.net [204.213.176.10]) by mx1.freebsd.org (Postfix) with ESMTP id 3926913C428; Sun, 19 Aug 2007 03:11:44 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: from sea.ntplx.net (sea.ntplx.net [204.213.176.11]) by mail.netplex.net (8.14.1/8.14.1/NETPLEX) with ESMTP id l7J3BbeA003344; Sat, 18 Aug 2007 23:11:37 -0400 (EDT) X-Virus-Scanned: by AMaViS and Clam AntiVirus (mail.netplex.net) X-Greylist: Message whitelisted by DRAC access database, not delayed by milter-greylist-3.0 (mail.netplex.net [204.213.176.10]); Sat, 18 Aug 2007 23:11:37 -0400 (EDT) Date: Sat, 18 Aug 2007 23:11:37 -0400 (EDT) From: Daniel Eischen X-X-Sender: eischen@sea.ntplx.net To: "Marc G. Fournier" In-Reply-To: <250D8A54B98F12158C71D8FE@ganymede.hub.org> Message-ID: References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C4FD02.3090708@freebsd.org> <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> <250D8A54B98F12158C71D8FE@ganymede.hub.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: wine-freebsd@hub.org, src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, Robert Watson , David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Daniel Eischen List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Aug 2007 03:11:44 -0000 On Sat, 18 Aug 2007, Marc G. Fournier wrote: > - --On Saturday, August 18, 2007 20:51:57 -0400 Daniel Eischen > wrote: > >> You can say that about a lot of APIs, but that doesn't mean we should add >> them. This is a bit of a hack to satisfy one application (Wine) when there >> are other (perhaps harder) ways to skin the cat. We certainly don't want >> anything else using this API, so I'd advocate removing it. > > Stupid question, but ... why not? > > First off, do you know for a fact that Wine is the only app out there that > needs the ability to kill off a thread in a seperate process, or has nobody in > the past cared enough to see other apps ported from Linux -> FreeBSD to push > for this sort of thing? FreeBSD as well as Solaris and Linux (it looks like Linux only allows a thread group to be signaled) have gotten along without this API, and Wine seems to be the only target for this syscall. In general, a process shouldn't know about threads in another process and should use more well-defined and portable APIs for interprocess communication. There is no method (at least portable) of determining the threads in another process, so what API are you going to add to get this information? And once you do get it, how do you know if the thread id is still valid or even reused by the process (or even a different process). I could see adding this API or other APIs if they were for our own internal use (e.g., for use by libthr), but it's not. I guess there are more than a few syscalls like that (e.g., thr_*, kse_*). It'd be nice if we could keep them private for our own internal use. We sorta do this with the symbol mapping in libc, and perhaps by prepending some syscalls with "__" (__acl_*). But applications are free to use syscalls without going through libc. -- DE From owner-cvs-all@FreeBSD.ORG Sun Aug 19 03:36:23 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B1CD116A418; Sun, 19 Aug 2007 03:36:23 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8A01313C46C; Sun, 19 Aug 2007 03:36:23 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7J3aN7L047926; Sun, 19 Aug 2007 03:36:23 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7J3aNsR047922; Sun, 19 Aug 2007 03:36:23 GMT (envelope-from rafan) Message-Id: <200708190336.l7J3aNsR047922@repoman.freebsd.org> From: Rong-En Fan Date: Sun, 19 Aug 2007 03:36: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/print/latex-cjk Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 03:36:23 -0000 rafan 2007-08-19 03:36:23 UTC FreeBSD ports repository Modified files: print/latex-cjk Makefile Log: - Finish move chinese/CJK to print/latex-cjk PR: ports/115451 Submitted by: Koji Yokota Revision Changes Path 1.45 +2 -2 ports/print/latex-cjk/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 19 03:36:38 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 536A416A418; Sun, 19 Aug 2007 03:36:38 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2BC0313C48A; Sun, 19 Aug 2007 03:36:38 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7J3acVt048167; Sun, 19 Aug 2007 03:36:38 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7J3acv7048166; Sun, 19 Aug 2007 03:36:38 GMT (envelope-from rafan) Message-Id: <200708190336.l7J3acv7048166@repoman.freebsd.org> From: Rong-En Fan Date: Sun, 19 Aug 2007 03:36:38 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/print Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 03:36:38 -0000 rafan 2007-08-19 03:36:38 UTC FreeBSD ports repository Modified files: print Makefile Log: - Connect print/latex-cjk to build Revision Changes Path 1.432 +1 -0 ports/print/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 19 03:39:30 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9817116A418; Sun, 19 Aug 2007 03:39:30 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8531E13C467; Sun, 19 Aug 2007 03:39:30 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7J3dUg2052014; Sun, 19 Aug 2007 03:39:30 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7J3dU4Q052009; Sun, 19 Aug 2007 03:39:30 GMT (envelope-from rafan) Message-Id: <200708190339.l7J3dU4Q052009@repoman.freebsd.org> From: Rong-En Fan Date: Sun, 19 Aug 2007 03:39: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 MOVED ports/chinese Makefile ports/chinese/CJK Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-plist ports/chinese/CJK/files patch-Makefile patch-texinput-Bg5-c00bsmi.fd patch-texinput-GB-c10gbsn.fd patch-texinput-GBBg5-fdfiles patch-texinput-GBBg5-type1fdfiles ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 03:39:30 -0000 rafan 2007-08-19 03:39:30 UTC FreeBSD ports repository Modified files: . MOVED chinese Makefile Removed files: chinese/CJK Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-plist chinese/CJK/files patch-Makefile patch-texinput-Bg5-c00bsmi.fd patch-texinput-GB-c10gbsn.fd patch-texinput-GBBg5-fdfiles patch-texinput-GBBg5-type1fdfiles patch-texinput-UTF8-arphicfdfiles patch-utils-Makefiles chinese/CJK/scripts fddiff.sh installt1enc.sh installtfm.sh pre-build Log: - Finish move chinese/CJK to print/latex-cjk PR: 115451 Submitted by: Koji Yokota Revision Changes Path 1.1459 +2 -1 ports/MOVED 1.44 +0 -144 ports/chinese/CJK/Makefile (dead) 1.15 +0 -6 ports/chinese/CJK/distinfo (dead) 1.2 +0 -27 ports/chinese/CJK/files/patch-Makefile (dead) 1.3 +0 -16 ports/chinese/CJK/files/patch-texinput-Bg5-c00bsmi.fd (dead) 1.2 +0 -16 ports/chinese/CJK/files/patch-texinput-GB-c10gbsn.fd (dead) 1.2 +0 -78 ports/chinese/CJK/files/patch-texinput-GBBg5-fdfiles (dead) 1.2 +0 -72 ports/chinese/CJK/files/patch-texinput-GBBg5-type1fdfiles (dead) 1.2 +0 -72 ports/chinese/CJK/files/patch-texinput-UTF8-arphicfdfiles (dead) 1.2 +0 -165 ports/chinese/CJK/files/patch-utils-Makefiles (dead) 1.4 +0 -28 ports/chinese/CJK/pkg-deinstall (dead) 1.8 +0 -22 ports/chinese/CJK/pkg-descr (dead) 1.2 +0 -127 ports/chinese/CJK/pkg-install (dead) 1.21 +0 -2445 ports/chinese/CJK/pkg-plist (dead) 1.2 +0 -64 ports/chinese/CJK/scripts/fddiff.sh (dead) 1.2 +0 -102 ports/chinese/CJK/scripts/installt1enc.sh (dead) 1.2 +0 -23 ports/chinese/CJK/scripts/installtfm.sh (dead) 1.7 +0 -19 ports/chinese/CJK/scripts/pre-build (dead) 1.258 +0 -1 ports/chinese/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 19 04:37:31 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6322A16A41B; Sun, 19 Aug 2007 04:37:30 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 39E2913C45A; Sun, 19 Aug 2007 04:37:30 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7J4bUH3059150; Sun, 19 Aug 2007 04:37:30 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7J4bUtf059149; Sun, 19 Aug 2007 04:37:30 GMT (envelope-from rafan) Message-Id: <200708190437.l7J4bUtf059149@repoman.freebsd.org> From: Rong-En Fan Date: Sun, 19 Aug 2007 04:37: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-im/pidgin-latex Makefile distinfo pkg-descr ports/net-im/pidgin-latex/files patch-LaTeX.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 04:37:31 -0000 rafan 2007-08-19 04:37:29 UTC FreeBSD ports repository Modified files: net-im/pidgin-latex Makefile distinfo pkg-descr Removed files: net-im/pidgin-latex/files patch-LaTeX.c Log: - Update to 1.0 PR: ports/115116 Submitted by: Geoffrey Mainland (maintainer) Revision Changes Path 1.11 +9 -8 ports/net-im/pidgin-latex/Makefile 1.4 +3 -3 ports/net-im/pidgin-latex/distinfo 1.3 +0 -17 ports/net-im/pidgin-latex/files/patch-LaTeX.c (dead) 1.3 +2 -2 ports/net-im/pidgin-latex/pkg-descr From owner-cvs-all@FreeBSD.ORG Sun Aug 19 04:37:43 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 03DEF16A418; Sun, 19 Aug 2007 04:37:42 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D057013C442; Sun, 19 Aug 2007 04:37:41 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7J4bfJ9059179; Sun, 19 Aug 2007 04:37:41 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7J4bfwb059178; Sun, 19 Aug 2007 04:37:41 GMT (envelope-from rafan) Message-Id: <200708190437.l7J4bfwb059178@repoman.freebsd.org> From: Rong-En Fan Date: Sun, 19 Aug 2007 04:37: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 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 04:37:43 -0000 rafan 2007-08-19 04:37:41 UTC FreeBSD ports repository Modified files: net-im Makefile Log: - Connect net-im/pidgin-latex to build Revision Changes Path 1.66 +1 -0 ports/net-im/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 19 04:39:21 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4A53316A419; Sun, 19 Aug 2007 04:39:21 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 223A113C428; Sun, 19 Aug 2007 04:39:21 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7J4dLoE059248; Sun, 19 Aug 2007 04:39:21 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7J4dK4Y059247; Sun, 19 Aug 2007 04:39:20 GMT (envelope-from rafan) Message-Id: <200708190439.l7J4dK4Y059247@repoman.freebsd.org> From: Rong-En Fan Date: Sun, 19 Aug 2007 04:39: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/chinese/docproj Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 04:39:21 -0000 rafan 2007-08-19 04:39:20 UTC FreeBSD ports repository Modified files: chinese/docproj Makefile Log: - Chase chinese/CJK -> print/latex-cjk move Noticed by: portsnap INDEX builder Revision Changes Path 1.7 +1 -1 ports/chinese/docproj/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 19 04:43:31 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5998016A417; Sun, 19 Aug 2007 04:43:31 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from tarsier.geekcn.org (tarsier.geekcn.org [210.51.165.229]) by mx1.freebsd.org (Postfix) with ESMTP id 0746B13C45E; Sun, 19 Aug 2007 04:43:30 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from localhost (tarsier.geekcn.org [210.51.165.229]) by tarsier.geekcn.org (Postfix) with ESMTP id 36852EB1121; Sun, 19 Aug 2007 12:43:30 +0800 (CST) X-Virus-Scanned: amavisd-new at geekcn.org Received: from tarsier.geekcn.org ([210.51.165.229]) by localhost (mail.geekcn.org [210.51.165.229]) (amavisd-new, port 10024) with ESMTP id xsN9xzWwP3yw; Sun, 19 Aug 2007 12:43:27 +0800 (CST) Received: from charlie.delphij.net (unknown [61.48.135.26]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tarsier.geekcn.org (Postfix) with ESMTP id 3B3EBEB0AEF; Sun, 19 Aug 2007 12:43:27 +0800 (CST) DomainKey-Signature: a=rsa-sha1; s=default; d=delphij.net; c=nofws; q=dns; h=message-id:date:from:user-agent:mime-version:to:cc:subject: references:in-reply-to:content-type:content-transfer-encoding; b=mStFMIye9xCbPGnhUlrhj7nR1+2A9sZIKHS7DHDXSWw7vBl9PKDiYbrGKVNgR2CP/ swcylb2Z8jWFrEEHjzPRw== Message-ID: <46C7CA6E.100@delphij.net> Date: Sun, 19 Aug 2007 12:43:26 +0800 From: Xin LI User-Agent: Thunderbird 2.0.0.6 (X11/20070803) MIME-Version: 1.0 To: Rong-En Fan References: <200708190339.l7J3dU4Q052009@repoman.freebsd.org> In-Reply-To: <200708190339.l7J3dU4Q052009@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-ports@FreeBSD.ORG, cvs-all@FreeBSD.ORG, ports-committers@FreeBSD.ORG Subject: Re: cvs commit: ports MOVED ports/chinese Makefile ports/chinese/CJK Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-plist ports/chinese/CJK/files patch-Makefile patch-texinput-Bg5-c00bsmi.fd patch-texinput-GB-c10gbsn.fd patch-texinput-GBBg5-fdfiles patch-texinput-GBBg5-type1fdfiles ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 04:43:31 -0000 Rong-En Fan wrote: > rafan 2007-08-19 03:39:30 UTC > > FreeBSD ports repository > > Modified files: > . MOVED > chinese Makefile > Removed files: > chinese/CJK Makefile distinfo pkg-deinstall pkg-descr > pkg-install pkg-plist > chinese/CJK/files patch-Makefile > patch-texinput-Bg5-c00bsmi.fd > patch-texinput-GB-c10gbsn.fd > patch-texinput-GBBg5-fdfiles > patch-texinput-GBBg5-type1fdfiles > patch-texinput-UTF8-arphicfdfiles > patch-utils-Makefiles > chinese/CJK/scripts fddiff.sh installt1enc.sh installtfm.sh > pre-build > Log: > - Finish move chinese/CJK to print/latex-cjk Er, what about the dependencies? Feel free to fix chinese/docproj :-) Cheers, From owner-cvs-all@FreeBSD.ORG Sun Aug 19 05:37:16 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 352E616A417; Sun, 19 Aug 2007 05:37:16 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0D07013C457; Sun, 19 Aug 2007 05:37:16 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7J5bFMq072431; Sun, 19 Aug 2007 05:37:15 GMT (envelope-from nobutaka@repoman.freebsd.org) Received: (from nobutaka@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7J5bFcv072430; Sun, 19 Aug 2007 05:37:15 GMT (envelope-from nobutaka) Message-Id: <200708190537.l7J5bFcv072430@repoman.freebsd.org> From: MANTANI Nobutaka Date: Sun, 19 Aug 2007 05:37: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/java/jde Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 05:37:16 -0000 nobutaka 2007-08-19 05:37:15 UTC FreeBSD ports repository Modified files: java/jde Makefile Log: Correct dependencies to fix package build. Reported by: pointyhat via kris Revision Changes Path 1.14 +14 -5 ports/java/jde/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 19 05:57:30 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 71BF616A417; Sun, 19 Aug 2007 05:57:30 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id 46A3113C428; Sun, 19 Aug 2007 05:57:30 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 2925C1A4D7C; Sat, 18 Aug 2007 22:55:47 -0700 (PDT) Date: Sat, 18 Aug 2007 22:55:47 -0700 From: Alfred Perlstein To: Daniel Eischen Message-ID: <20070819055547.GC87451@elvis.mu.org> References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C4FD02.3090708@freebsd.org> <200708182118.37998.tijl@ulyssis.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.3i Cc: wine-freebsd@hub.org, src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys thr.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, 19 Aug 2007 05:57:30 -0000 * Daniel Eischen [070818 17:47] wrote: > > I would rather just use sigqueue in 7.0 if necessary and drop support > for some set of applications run under Wine in 6.0. We shouldn't be > adding hacks like this to suit just one application... not to pick on you specifically Daniel, but this is a really cool API for debugging, why not support it? I mean, perhaps we add a pid arg to it? But I mean, there's no generation count for kill(2) (which could take one) to protect things, so why is this such a horrible thing? I can someone give a real reason for not liking it other than 1) it came from linux. 2) we didn't think of it. 3) supporting it is annoying. (it's not) -- - Alfred Perlstein From owner-cvs-all@FreeBSD.ORG Sun Aug 19 06:09:30 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 71BA316A46B; Sun, 19 Aug 2007 06:09:30 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 47CCC13C46E; Sun, 19 Aug 2007 06:09:30 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7J69URB075308; Sun, 19 Aug 2007 06:09:30 GMT (envelope-from nobutaka@repoman.freebsd.org) Received: (from nobutaka@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7J69UrX075307; Sun, 19 Aug 2007 06:09:30 GMT (envelope-from nobutaka) Message-Id: <200708190609.l7J69UrX075307@repoman.freebsd.org> From: MANTANI Nobutaka Date: Sun, 19 Aug 2007 06:09: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/multimedia/libdvdnav Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 06:09:30 -0000 nobutaka 2007-08-19 06:09:29 UTC FreeBSD ports repository Modified files: multimedia/libdvdnav Makefile Log: Add missing dependency on automake16. PR: ports/115435 [1], ports/115607 [2] Submitted by: rink [1], kevin [2], Andreas Braml Revision Changes Path 1.25 +1 -1 ports/multimedia/libdvdnav/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 19 06:49:12 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D59D016A419; Sun, 19 Aug 2007 06:49:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AD2A413C45B; Sun, 19 Aug 2007 06:49:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7J6nCPl077541; Sun, 19 Aug 2007 06:49:12 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7J6nC4H077540; Sun, 19 Aug 2007 06:49:12 GMT (envelope-from edwin) Message-Id: <200708190649.l7J6nC4H077540@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 19 Aug 2007 06:49: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/ports-mgmt/instant-tinderbox Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 06:49:12 -0000 edwin 2007-08-19 06:49:12 UTC FreeBSD ports repository Modified files: ports-mgmt/instant-tinderbox Makefile Log: Fix building of autotools after the large rename earlier Reviewed by: miwi Revision Changes Path 1.9 +5 -5 ports/ports-mgmt/instant-tinderbox/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 19 07:03:19 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5E4B516A419; Sun, 19 Aug 2007 07:03:19 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 35C6E13C458; Sun, 19 Aug 2007 07:03:19 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7J73Jc2079684; Sun, 19 Aug 2007 07:03:19 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7J73JBF079683; Sun, 19 Aug 2007 07:03:19 GMT (envelope-from miwi) Message-Id: <200708190703.l7J73JBF079683@repoman.freebsd.org> From: Martin Wilke Date: Sun, 19 Aug 2007 07: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/net/boclient Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 07:03:19 -0000 miwi 2007-08-19 07:03:18 UTC FreeBSD ports repository Modified files: net/boclient Makefile Log: - Update MASTER_SITES PR: 115600 Submitted by: Stefan Pauly Revision Changes Path 1.10 +1 -2 ports/net/boclient/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 19 07:40:46 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2427516A419; Sun, 19 Aug 2007 07:40:46 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EFCE513C442; Sun, 19 Aug 2007 07:40:45 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7J7ejo2081632; Sun, 19 Aug 2007 07:40:45 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7J7ej0P081631; Sun, 19 Aug 2007 07:40:45 GMT (envelope-from leeym) Message-Id: <200708190740.l7J7ej0P081631@repoman.freebsd.org> From: Yen-Ming Lee Date: Sun, 19 Aug 2007 07:40: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-Params-Util Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Aug 2007 07:40:46 -0000 leeym 2007-08-19 07:40:45 UTC FreeBSD ports repository Modified files: devel/p5-Params-Util Makefile distinfo Log: - update to 0.28 Revision Changes Path 1.16 +1 -4 ports/devel/p5-Params-Util/Makefile 1.15 +3 -3 ports/devel/p5-Params-Util/distinfo From owner-cvs-all@FreeBSD.ORG Sun Aug 19 07:47:39 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C7F6C16A417; Sun, 19 Aug 2007 07:47:39 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9EF4913C459; Sun, 19 Aug 2007 07:47:39 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7J7ldV7082074; Sun, 19 Aug 2007 07:47:39 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7J7ldhB082073; Sun, 19 Aug 2007 07:47:39 GMT (envelope-from leeym) Message-Id: <200708190747.l7J7ldhB082073@repoman.freebsd.org> From: Yen-Ming Lee Date: Sun, 19 Aug 2007 07:47: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/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: Sun, 19 Aug 2007 07:47:39 -0000 leeym 2007-08-19 07:47:39 UTC FreeBSD ports repository Modified files: net/p5-Net-Whois-Raw Makefile distinfo Log: - update to 1.24 Revision Changes Path 1.22 +1 -1 ports/net/p5-Net-Whois-Raw/Makefile 1.23 +3 -3 ports/net/p5-Net-Whois-Raw/distinfo From owner-cvs-all@FreeBSD.ORG Sun Aug 19 08:00:22 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1E00B16A419; Sun, 19 Aug 2007 08:00:22 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E8E9B13C46B; Sun, 19 Aug 2007 08:00:21 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7J80LQG082772; Sun, 19 Aug 2007 08:00:21 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7J80LKA082771; Sun, 19 Aug 2007 08:00:21 GMT (envelope-from leeym) Message-Id: <200708190800.l7J80LKA082771@repoman.freebsd.org> From: Yen-Ming Lee Date: Sun, 19 Aug 2007 08:00: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/textproc/p5-XML-RSS-JavaScript 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, 19 Aug 2007 08:00:22 -0000 leeym 2007-08-19 08:00:21 UTC FreeBSD ports repository Modified files: textproc/p5-XML-RSS-JavaScript Makefile distinfo Log: - update to 0.61 Revision Changes Path 1.7 +4 -9 ports/textproc/p5-XML-RSS-JavaScript/Makefile 1.7 +3 -3 ports/textproc/p5-XML-RSS-JavaScript/distinfo From owner-cvs-all@FreeBSD.ORG Sun Aug 19 08:13:01 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CFEA516A52C; Sun, 19 Aug 2007 08:13:01 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A768113C45E; Sun, 19 Aug 2007 08:13:01 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7J8D1aT084880; Sun, 19 Aug 2007 08:13:01 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7J8D1PT084878; Sun, 19 Aug 2007 08:13:01 GMT (envelope-from kmacy) Message-Id: <200708190813.l7J8D1PT084878@repoman.freebsd.org> From: Kip Macy Date: Sun, 19 Aug 2007 08:13:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/cxgb cxgb_adapter.h cxgb_main.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Aug 2007 08:13:01 -0000 kmacy 2007-08-19 08:13:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/cxgb cxgb_adapter.h cxgb_main.c Log: m_sanity and SA_LOCKED are not defined in RELENG6 - don't use Revision Changes Path 1.2.2.7 +9 -2 src/sys/dev/cxgb/cxgb_adapter.h 1.3.2.8 +1 -1 src/sys/dev/cxgb/cxgb_main.c From owner-cvs-all@FreeBSD.ORG Sun Aug 19 08:31:40 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5D4AB16A421; Sun, 19 Aug 2007 08:31:40 +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 23AFC13C474; Sun, 19 Aug 2007 08:31:40 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id 7FCEA49201; Sun, 19 Aug 2007 04:31:39 -0400 (EDT) Date: Sun, 19 Aug 2007 09:31:39 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Daniel Eischen In-Reply-To: Message-ID: <20070819092923.X65240@fledge.watson.org> References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C4FD02.3090708@freebsd.org> <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> <250D8A54B98F12158C71D8FE@ganymede.hub.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: wine-freebsd@hub.org, src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, "Marc G. Fournier" , David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 08:31:40 -0000 On Sat, 18 Aug 2007, Daniel Eischen wrote: >> Stupid question, but ... why not? >> >> First off, do you know for a fact that Wine is the only app out there that >> needs the ability to kill off a thread in a seperate process, or has nobody >> in the past cared enough to see other apps ported from Linux -> FreeBSD to >> push for this sort of thing? > > FreeBSD as well as Solaris and Linux (it looks like Linux only allows a > thread group to be signaled) have gotten along without this API, and Wine > seems to be the only target for this syscall. While I'm not familiar with the newer pthread code on Linux, I can say with reasonable authority that the older implementation used the same ID space for pids and thread IDs, since threads were tasks, and therefore Linux has always supported directly signalling threads in other processes. Robert N M Watson Computer Laboratory University of Cambridge From owner-cvs-all@FreeBSD.ORG Sun Aug 19 08:32:47 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 39C6616A418; Sun, 19 Aug 2007 08:32:47 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 269F313C483; Sun, 19 Aug 2007 08:32:47 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7J8WlQK086355; Sun, 19 Aug 2007 08:32:47 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7J8Wl5Q086354; Sun, 19 Aug 2007 08:32:47 GMT (envelope-from miwi) Message-Id: <200708190832.l7J8Wl5Q086354@repoman.freebsd.org> From: Martin Wilke Date: Sun, 19 Aug 2007 08:32:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules ports MOVED ports/databases Makefile ports/databases/bbdb-emacs20 Makefile ports/databases/lsdb-emacs20 Makefile ports/deskutils Makefile ports/deskutils/mhc-emacs20 Makefile ports/devel Makefile ports/devel/elib-emacs19 Makefile ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 08:32:47 -0000 miwi 2007-08-19 08:32:46 UTC FreeBSD ports repository Modified files: . modules . MOVED databases Makefile deskutils Makefile devel Makefile Removed files: databases/bbdb-emacs20 Makefile databases/lsdb-emacs20 Makefile deskutils/mhc-emacs20 Makefile devel/elib-emacs19 Makefile devel/elib-emacs20 Makefile devel/pcl-cvs-emacs20 Makefile distinfo pkg-descr pkg-message pkg-plist Log: 2007-08-19 databases/bbdb-emacs20: emacs20 and related ports are obsolete; please use a more recent version 2007-08-19 databases/lsdb-emacs20: emacs20 and related ports are obsolete; please use a more recent version 2007-08-19 deskutils/mhc-emacs20: emacs20 and related ports are obsolete; please use a more recent version 2007-08-19 devel/elib-emacs19: emacs19 is obsolete; please use a more recent version 2007-08-19 devel/elib-emacs20: emacs20 and related ports are obsolete; please use a more recent version 2007-08-19 devel/pcl-cvs-emacs20: emacs20 and related ports are obsolete; please use a more recent version Revision Changes Path 1.18550 +0 -6 CVSROOT/modules 1.1460 +7 -1 ports/MOVED 1.640 +0 -2 ports/databases/Makefile 1.5 +0 -16 ports/databases/bbdb-emacs20/Makefile (dead) 1.4 +0 -16 ports/databases/lsdb-emacs20/Makefile (dead) 1.305 +0 -1 ports/deskutils/Makefile 1.9 +0 -17 ports/deskutils/mhc-emacs20/Makefile (dead) 1.2843 +0 -3 ports/devel/Makefile 1.6 +0 -22 ports/devel/elib-emacs19/Makefile (dead) 1.7 +0 -22 ports/devel/elib-emacs20/Makefile (dead) 1.9 +0 -106 ports/devel/pcl-cvs-emacs20/Makefile (dead) 1.2 +0 -9 ports/devel/pcl-cvs-emacs20/distinfo (dead) 1.2 +0 -7 ports/devel/pcl-cvs-emacs20/pkg-descr (dead) 1.2 +0 -3 ports/devel/pcl-cvs-emacs20/pkg-message (dead) 1.2 +0 -21 ports/devel/pcl-cvs-emacs20/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Sun Aug 19 08:37:33 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 406BB16A41A; Sun, 19 Aug 2007 08:37:33 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2C69713C4F8; Sun, 19 Aug 2007 08:37:33 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7J8bXKl086671; Sun, 19 Aug 2007 08:37:33 GMT (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7J8bXPi086665; Sun, 19 Aug 2007 08:37:33 GMT (envelope-from glewis) Message-Id: <200708190837.l7J8bXPi086665@repoman.freebsd.org> From: Greg Lewis Date: Sun, 19 Aug 2007 08:37: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/games/slashem-tty Makefile distinfo pkg-message pkg-plist ports/games/slashem-tty/files patch-config.h patch-makefile.doc patch-makefile.src patch-makefile.top patch-makefile.utl patch-system.h patch-termcap.c patch-tshirt ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 08:37:33 -0000 glewis 2007-08-19 08:37:32 UTC FreeBSD ports repository Modified files: games/slashem-tty Makefile distinfo pkg-message pkg-plist games/slashem-tty/files patch-config.h patch-makefile.doc patch-makefile.src patch-makefile.top patch-makefile.utl patch-system.h patch-unixconf.h Added files: games/slashem-tty/files pkg-deinstall.in Removed files: games/slashem-tty/files patch-termcap.c patch-tshirt Log: . Update to 0.0.7E7F3. . Take maintainership. [1] Approved by: clive@darkarts.co.za (previous maintainer) Revision Changes Path 1.12 +12 -11 ports/games/slashem-tty/Makefile 1.9 +3 -3 ports/games/slashem-tty/distinfo 1.2 +13 -11 ports/games/slashem-tty/files/patch-config.h 1.2 +28 -26 ports/games/slashem-tty/files/patch-makefile.doc 1.2 +2 -9 ports/games/slashem-tty/files/patch-makefile.src 1.2 +18 -15 ports/games/slashem-tty/files/patch-makefile.top 1.2 +2 -0 ports/games/slashem-tty/files/patch-makefile.utl 1.2 +2 -0 ports/games/slashem-tty/files/patch-system.h 1.2 +0 -13 ports/games/slashem-tty/files/patch-termcap.c (dead) 1.2 +0 -42 ports/games/slashem-tty/files/patch-tshirt (dead) 1.2 +2 -0 ports/games/slashem-tty/files/patch-unixconf.h 1.1 +10 -0 ports/games/slashem-tty/files/pkg-deinstall.in (new) 1.2 +2 -2 ports/games/slashem-tty/pkg-message 1.4 +19 -19 ports/games/slashem-tty/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Aug 19 08:53:58 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A73216A421; Sun, 19 Aug 2007 08:53:58 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AD8F313C4CE; Sun, 19 Aug 2007 08:53:57 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7J8rv8o096720; Sun, 19 Aug 2007 08:53:57 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7J8rvO3096719; Sun, 19 Aug 2007 08:53:57 GMT (envelope-from miwi) Message-Id: <200708190853.l7J8rvO3096719@repoman.freebsd.org> From: Martin Wilke Date: Sun, 19 Aug 2007 08:53: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 ports MOVED ports/japanese Makefile ports/japanese/weather-emacs20 Makefile distinfo pkg-descr pkg-plist ports/korean Makefile ports/korean/hanemacs Makefile distinfo pkg-descr pkg-plist ports/korean/hanemacs/files emacs.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, 19 Aug 2007 08:53:58 -0000 miwi 2007-08-19 08:53:57 UTC FreeBSD ports repository Modified files: . modules . MOVED japanese Makefile korean Makefile lang Makefile mail Makefile www Makefile Removed files: japanese/weather-emacs20 Makefile distinfo pkg-descr pkg-plist korean/hanemacs Makefile distinfo pkg-descr pkg-plist korean/hanemacs/files emacs.sh patch-aa patch-ab patch-ac patch-ad patch-ae patch-af patch-bb patch-src:hangul.c site-init.el lang/tuareg-mode.el Makefile distinfo pkg-descr mail/emh-emacs20 Makefile mail/mew-emacs20 Makefile mail/mew2-emacs20 Makefile pkg-descr pkg-message pkg-plist mail/rmime Makefile distinfo pkg-descr pkg-plist mail/wanderlust-emacs20 Makefile www/emacs-w3m-emacs20 Makefile pkg-plist Log: 2007-08-19 www/emacs-w3m-emacs20: emacs20 and related ports are obsolete; please use a more recent version 2007-08-19 mail/wanderlust-emacs20: emacs20 and related ports are obsolete; please use a more recent version 2007-08-19 mail/rmime: emacs20 and related ports are obsolete; also, distfile is unfetchable 2007-08-19 mail/mew2-emacs20: emacs20 and related ports are obsolete; please use a more recent version 2007-08-19 mail/mew-emacs20: emacs20 and related ports are obsolete; please use a more recent version 2007-08-19 mail/emh-emacs20: emacs20 and related ports are obsolete; please use a more recent version 2007-08-19 lang/tuareg-mode.el: emacs20 and related ports are obsolete; this port needs an update 2007-08-19 korean/hanemacs: depends on emacs19 which is obsolete 2007-08-19 japanese/weather-emacs20: emacs20 and related ports are obsolete; please use a more recent version Revision Changes Path 1.18551 +0 -9 CVSROOT/modules 1.1461 +10 -1 ports/MOVED 1.663 +0 -1 ports/japanese/Makefile 1.12 +0 -44 ports/japanese/weather-emacs20/Makefile (dead) 1.9 +0 -3 ports/japanese/weather-emacs20/distinfo (dead) 1.2 +0 -1 ports/japanese/weather-emacs20/pkg-descr (dead) 1.4 +0 -5 ports/japanese/weather-emacs20/pkg-plist (dead) 1.127 +0 -1 ports/korean/Makefile 1.20 +0 -62 ports/korean/hanemacs/Makefile (dead) 1.4 +0 -3 ports/korean/hanemacs/distinfo (dead) 1.3 +0 -21 ports/korean/hanemacs/files/emacs.sh (dead) 1.2 +0 -199 ports/korean/hanemacs/files/patch-aa (dead) 1.2 +0 -11 ports/korean/hanemacs/files/patch-ab (dead) 1.4 +0 -74 ports/korean/hanemacs/files/patch-ac (dead) 1.2 +0 -695 ports/korean/hanemacs/files/patch-ad (dead) 1.3 +0 -215 ports/korean/hanemacs/files/patch-ae (dead) 1.2 +0 -22 ports/korean/hanemacs/files/patch-af (dead) 1.2 +0 -11 ports/korean/hanemacs/files/patch-bb (dead) 1.2 +0 -11 ports/korean/hanemacs/files/patch-src:hangul.c (dead) 1.2 +0 -19 ports/korean/hanemacs/files/site-init.el (dead) 1.3 +0 -11 ports/korean/hanemacs/pkg-descr (dead) 1.9 +0 -1061 ports/korean/hanemacs/pkg-plist (dead) 1.566 +0 -1 ports/lang/Makefile 1.10 +0 -51 ports/lang/tuareg-mode.el/Makefile (dead) 1.4 +0 -3 ports/lang/tuareg-mode.el/distinfo (dead) 1.2 +0 -17 ports/lang/tuareg-mode.el/pkg-descr (dead) 1.862 +0 -5 ports/mail/Makefile 1.7 +0 -16 ports/mail/emh-emacs20/Makefile (dead) 1.16 +0 -22 ports/mail/mew-emacs20/Makefile (dead) 1.10 +0 -27 ports/mail/mew2-emacs20/Makefile (dead) 1.3 +0 -19 ports/mail/mew2-emacs20/pkg-descr (dead) 1.3 +0 -12 ports/mail/mew2-emacs20/pkg-message (dead) 1.7 +0 -165 ports/mail/mew2-emacs20/pkg-plist (dead) 1.9 +0 -38 ports/mail/rmime/Makefile (dead) 1.4 +0 -3 ports/mail/rmime/distinfo (dead) 1.2 +0 -6 ports/mail/rmime/pkg-descr (dead) 1.2 +0 -2 ports/mail/rmime/pkg-plist (dead) 1.16 +0 -21 ports/mail/wanderlust-emacs20/Makefile (dead) 1.1885 +0 -1 ports/www/Makefile 1.15 +0 -18 ports/www/emacs-w3m-emacs20/Makefile (dead) 1.13 +0 -271 ports/www/emacs-w3m-emacs20/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Sun Aug 19 09:08:41 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6BAF516A41B; Sun, 19 Aug 2007 09:08:41 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5818B13C465; Sun, 19 Aug 2007 09:08:41 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7J98d1F099224; Sun, 19 Aug 2007 09:08:39 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7J98d2q099223; Sun, 19 Aug 2007 09:08:39 GMT (envelope-from miwi) Message-Id: <200708190908.l7J98d2q099223@repoman.freebsd.org> From: Martin Wilke Date: Sun, 19 Aug 2007 09:08: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 ports MOVED ports/japanese Makefile ports/japanese/ddskk-emacs20 Makefile ports/japanese/emacs20-emcws Makefile distinfo pkg-descr pkg-plist ports/japanese/emacs20-emcws/files emcws-message patch-af patch-ah ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 09:08:41 -0000 miwi 2007-08-19 09:08:39 UTC FreeBSD ports repository Modified files: . modules . MOVED japanese Makefile mail Makefile Removed files: japanese/ddskk-emacs20 Makefile japanese/emacs20-emcws Makefile distinfo pkg-descr pkg-plist japanese/emacs20-emcws/files emcws-message patch-af patch-ah patch-ai patch-aj patch-ca patch-cb patch-cc patch-cd patch-cf patch-cg patch-ch patch-da patch-ea patch-eb patch-src_emacs.c patch-src_wnnfns.c site-init.el.tmpl japanese/emacs20-emcws/scripts configure japanese/lookup-emacs20 Makefile pkg-descr pkg-plist japanese/migemo-emacs20 Makefile pkg-descr japanese/mule-canna+freewnn Makefile pkg-descr japanese/mule-freewnn+sj3 Makefile pkg-descr pkg-install japanese/mule-sj3+wnn6 Makefile pkg-descr pkg-install japanese/mule-sj3+wnn7 Makefile pkg-descr pkg-install japanese/skk10-elisp-emacs20 Makefile distinfo pkg-descr pkg-plist japanese/skk10-elisp-emacs20/files patch-aa skk-startup.el mail/mew3-emacs20 Makefile pkg-descr pkg-plist Log: 2007-08-19 mail/mew3-emacs20: emacs20 and related ports are obsolete; please use a more recent version 2007-08-19 japanese/skk10-elisp-emacs20: emacs20 and related ports are obsolete; please use a more recent version 2007-08-19 japanese/mule-sj3+wnn7: emacs19 and related ports are obsolete; please use a more recent version 2007-08-19 japanese/mule-sj3+wnn6: emacs19 and related ports are obsolete; please use a more recent version 2007-08-19 japanese/mule-freewnn+sj3: emacs19 and related ports are obsolete; please use a more recent version 2007-08-19 japanese/mule-canna+freewnn: emacs19 and related ports are obsolete; please use a more recent version 2007-08-19 japanese/migemo-emacs20: emacs20 and related ports are obsolete; please use a more recent version 2007-08-19 japanese/lookup-emacs20: emacs20 and related ports are obsolete; please use a more recent version 2007-08-19 japanese/emacs20-emcws: editors/emacs20 is also deprecated 2007-08-19 japanese/ddskk-emacs20: emacs20 and related ports are obsolete; please use a more recent version Revision Changes Path 1.18552 +0 -10 CVSROOT/modules 1.1462 +11 -1 ports/MOVED 1.664 +0 -9 ports/japanese/Makefile 1.4 +0 -16 ports/japanese/ddskk-emacs20/Makefile (dead) 1.30 +0 -200 ports/japanese/emacs20-emcws/Makefile (dead) 1.6 +0 -6 ports/japanese/emacs20-emcws/distinfo (dead) 1.3 +0 -16 ports/japanese/emacs20-emcws/files/emcws-message (dead) 1.2 +0 -695 ports/japanese/emacs20-emcws/files/patch-af (dead) 1.2 +0 -29 ports/japanese/emacs20-emcws/files/patch-ah (dead) 1.2 +0 -17 ports/japanese/emacs20-emcws/files/patch-ai (dead) 1.2 +0 -31 ports/japanese/emacs20-emcws/files/patch-aj (dead) 1.2 +0 -31 ports/japanese/emacs20-emcws/files/patch-ca (dead) 1.3 +0 -42 ports/japanese/emacs20-emcws/files/patch-cb (dead) 1.2 +0 -36 ports/japanese/emacs20-emcws/files/patch-cc (dead) 1.2 +0 -12 ports/japanese/emacs20-emcws/files/patch-cd (dead) 1.2 +0 -10 ports/japanese/emacs20-emcws/files/patch-cf (dead) 1.2 +0 -149 ports/japanese/emacs20-emcws/files/patch-cg (dead) 1.2 +0 -11 ports/japanese/emacs20-emcws/files/patch-ch (dead) 1.4 +0 -33 ports/japanese/emacs20-emcws/files/patch-da (dead) 1.2 +0 -13 ports/japanese/emacs20-emcws/files/patch-ea (dead) 1.3 +0 -26 ports/japanese/emacs20-emcws/files/patch-eb (dead) 1.2 +0 -13 ports/japanese/emacs20-emcws/files/patch-src_emacs.c (dead) 1.2 +0 -57 ports/japanese/emacs20-emcws/files/patch-src_wnnfns.c (dead) 1.2 +0 -10 ports/japanese/emacs20-emcws/files/site-init.el.tmpl (dead) 1.2 +0 -5 ports/japanese/emacs20-emcws/pkg-descr (dead) 1.4 +0 -54 ports/japanese/emacs20-emcws/pkg-plist (dead) 1.2 +0 -14 ports/japanese/emacs20-emcws/scripts/configure (dead) 1.14 +0 -18 ports/japanese/lookup-emacs20/Makefile (dead) 1.4 +0 -11 ports/japanese/lookup-emacs20/pkg-descr (dead) 1.6 +0 -49 ports/japanese/lookup-emacs20/pkg-plist (dead) 1.11 +0 -33 ports/japanese/migemo-emacs20/Makefile (dead) 1.2 +0 -11 ports/japanese/migemo-emacs20/pkg-descr (dead) 1.13 +0 -21 ports/japanese/mule-canna+freewnn/Makefile (dead) 1.6 +0 -32 ports/japanese/mule-canna+freewnn/pkg-descr (dead) 1.13 +0 -21 ports/japanese/mule-freewnn+sj3/Makefile (dead) 1.6 +0 -40 ports/japanese/mule-freewnn+sj3/pkg-descr (dead) 1.2 +0 -10 ports/japanese/mule-freewnn+sj3/pkg-install (dead) 1.14 +0 -21 ports/japanese/mule-sj3+wnn6/Makefile (dead) 1.5 +0 -40 ports/japanese/mule-sj3+wnn6/pkg-descr (dead) 1.2 +0 -10 ports/japanese/mule-sj3+wnn6/pkg-install (dead) 1.15 +0 -20 ports/japanese/mule-sj3+wnn7/Makefile (dead) 1.5 +0 -40 ports/japanese/mule-sj3+wnn7/pkg-descr (dead) 1.2 +0 -10 ports/japanese/mule-sj3+wnn7/pkg-install (dead) 1.21 +0 -116 ports/japanese/skk10-elisp-emacs20/Makefile (dead) 1.9 +0 -3 ports/japanese/skk10-elisp-emacs20/distinfo (dead) 1.4 +0 -11 ports/japanese/skk10-elisp-emacs20/files/patch-aa (dead) 1.2 +0 -33 ports/japanese/skk10-elisp-emacs20/files/skk-startup.el (dead) 1.3 +0 -16 ports/japanese/skk10-elisp-emacs20/pkg-descr (dead) 1.9 +0 -68 ports/japanese/skk10-elisp-emacs20/pkg-plist (dead) 1.863 +0 -1 ports/mail/Makefile 1.12 +0 -30 ports/mail/mew3-emacs20/Makefile (dead) 1.4 +0 -19 ports/mail/mew3-emacs20/pkg-descr (dead) 1.7 +0 -190 ports/mail/mew3-emacs20/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Sun Aug 19 09:13:40 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3BD3216A417; Sun, 19 Aug 2007 09:13:40 +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 065C013C45D; Sun, 19 Aug 2007 09:13:40 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id 9F8FB48394; Sun, 19 Aug 2007 05:13:39 -0400 (EDT) Date: Sun, 19 Aug 2007 10:13:39 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Scott Long In-Reply-To: <46C7A9A4.5090404@samsco.org> Message-ID: <20070819095302.D66918@fledge.watson.org> References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C4FD02.3090708@freebsd.org> <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> <46C7A9A4.5090404@samsco.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: wine-freebsd@hub.org, src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, Daniel Eischen , David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys thr.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, 19 Aug 2007 09:13:40 -0000 On Sat, 18 Aug 2007, Scott Long wrote: >> You can say that about a lot of APIs, but that doesn't mean we should add >> them. This is a bit of a hack to satisfy one application (Wine) when there >> are other (perhaps harder) ways to skin the cat. We certainly don't want >> anything else using this API, so I'd advocate removing it. > > I'm in strong agreement here. David? This work was done by Tijl at the request of the PC-BSD guys, who would like to be able to run windows applications out of the box on PC-BSD for their next release (impending). David then reviewed and committed the patch giving it his approval. The goal here was to avoid having the PC-BSD people have to run around with additional system call patches for the forseeable future, and to avoid requiring PC-BSD to fork the FreeBSD kernel to do that. Given that many systems do support sending signals to specific threads in other processes, it may be worth surveying how it's done. In Linux, historically it was done via kill(2) since processes were threads; the tgkill() interface has probably only been added because it represents a new grouping that doesn't fit the "negative pids are specific process groups, -1 is all other processes, 0 is the current process group, and positive pids are specific processes". In Mac OS X, signals can be delivered using a thread port, which is most easily done using the current process since the thread ports will be lying around anyway in the thread package, but also works for other processes as you can retrieve the thread ports of other processes using their task ports, which can be retrieved in turn using task_for_pid(). I'm not familiar with Solaris or Windows. Robert N M Watson Computer Laboratory University of Cambridge From owner-cvs-all@FreeBSD.ORG Sun Aug 19 09:26:11 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 11C8D16A417; Sun, 19 Aug 2007 09:26:11 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F34A213C457; Sun, 19 Aug 2007 09:26:10 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7J9QAXA000850; Sun, 19 Aug 2007 09:26:10 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7J9QA9R000849; Sun, 19 Aug 2007 09:26:10 GMT (envelope-from miwi) Message-Id: <200708190926.l7J9QA9R000849@repoman.freebsd.org> From: Martin Wilke Date: Sun, 19 Aug 2007 09:26: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 ports MOVED ports/devel Makefile ports/devel/semantic-emacs20 Makefile ports/editors Makefile ports/editors/gnuserv-emacs20 Makefile ports/editors/iiimecf 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: Sun, 19 Aug 2007 09:26:11 -0000 miwi 2007-08-19 09:26:10 UTC FreeBSD ports repository Modified files: . modules . MOVED devel Makefile editors Makefile irc Makefile news Makefile Removed files: devel/semantic-emacs20 Makefile editors/gnuserv-emacs20 Makefile editors/iiimecf Makefile distinfo pkg-descr pkg-message pkg-plist editors/leim20 Makefile distinfo pkg-descr pkg-plist editors/leim20/scripts configure editors/psgml-emacs19 Makefile editors/psgml-emacs20 Makefile editors/psgml-mule Makefile editors/tamago-emacs20 Makefile irc/riece-emacs20 Makefile news/gnus-emacs20 Makefile distinfo pkg-descr pkg-plist news/gnus-emacs20/files patch-aa patch-ab patch-ac patch-ad patch-ae Log: 2007-08-19 irc/riece-emacs20: emacs20 and related ports are obsolete; please use a more recent version 2007-08-19 news/gnus-emacs20: emacs20 and related ports are obsolete; please use a more recent version 2007-08-19 editors/tamago-emacs20: emacs20 and related ports are obsolete; please use a more recent version 2007-08-19 editors/psgml-mule: emacs19 and related ports are obsolete; please use a more recent version 2007-08-19 editors/psgml-emacs20: emacs20 and related ports are obsolete; please use a more recent version 2007-08-19 editors/psgml-emacs19: emacs19 is obsolete; please use a more recent version 2007-08-19 editors/leim20: emacs20 and related ports are obsolete; please use a more recent version 2007-08-19 editors/iiimecf: emacs20 and related ports are obsolete; please use a more recent version 2007-08-19 editors/gnuserv-emacs20: emacs20 and related ports are obsolete; please use a more recent version 2007-08-19 devel/semantic-emacs20: emacs20 and related ports are obsolete; please use a more recent version Revision Changes Path 1.18553 +0 -10 CVSROOT/modules 1.1463 +11 -1 ports/MOVED 1.2844 +0 -1 ports/devel/Makefile 1.4 +0 -16 ports/devel/semantic-emacs20/Makefile (dead) 1.382 +0 -7 ports/editors/Makefile 1.10 +0 -22 ports/editors/gnuserv-emacs20/Makefile (dead) 1.12 +0 -53 ports/editors/iiimecf/Makefile (dead) 1.6 +0 -3 ports/editors/iiimecf/distinfo (dead) 1.2 +0 -5 ports/editors/iiimecf/pkg-descr (dead) 1.2 +0 -13 ports/editors/iiimecf/pkg-message (dead) 1.3 +0 -17 ports/editors/iiimecf/pkg-plist (dead) 1.17 +0 -35 ports/editors/leim20/Makefile (dead) 1.8 +0 -3 ports/editors/leim20/distinfo (dead) 1.3 +0 -24 ports/editors/leim20/pkg-descr (dead) 1.3 +0 -99 ports/editors/leim20/pkg-plist (dead) 1.2 +0 -28 ports/editors/leim20/scripts/configure (dead) 1.9 +0 -28 ports/editors/psgml-emacs19/Makefile (dead) 1.19 +0 -21 ports/editors/psgml-emacs20/Makefile (dead) 1.16 +0 -28 ports/editors/psgml-mule/Makefile (dead) 1.8 +0 -19 ports/editors/tamago-emacs20/Makefile (dead) 1.153 +0 -1 ports/irc/Makefile 1.10 +0 -15 ports/irc/riece-emacs20/Makefile (dead) 1.132 +0 -1 ports/news/Makefile 1.22 +0 -54 ports/news/gnus-emacs20/Makefile (dead) 1.4 +0 -3 ports/news/gnus-emacs20/distinfo (dead) 1.4 +0 -19 ports/news/gnus-emacs20/files/patch-aa (dead) 1.4 +0 -19 ports/news/gnus-emacs20/files/patch-ab (dead) 1.4 +0 -19 ports/news/gnus-emacs20/files/patch-ac (dead) 1.2 +0 -22 ports/news/gnus-emacs20/files/patch-ad (dead) 1.2 +0 -11 ports/news/gnus-emacs20/files/patch-ae (dead) 1.2 +0 -5 ports/news/gnus-emacs20/pkg-descr (dead) 1.4 +0 -214 ports/news/gnus-emacs20/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Sun Aug 19 09:57:48 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C31C116A41B; Sun, 19 Aug 2007 09:57:48 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9A8FB13C468; Sun, 19 Aug 2007 09:57:48 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7J9vmSq002878; Sun, 19 Aug 2007 09:57:48 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7J9vmT9002877; Sun, 19 Aug 2007 09:57:48 GMT (envelope-from miwi) Message-Id: <200708190957.l7J9vmT9002877@repoman.freebsd.org> From: Martin Wilke Date: Sun, 19 Aug 2007 09:57: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-wm/transset-df Makefile ports/x11-wm/transset-df/files patch-transset.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 09:57:48 -0000 miwi 2007-08-19 09:57:48 UTC FreeBSD ports repository Modified files: x11-wm/transset-df Makefile Added files: x11-wm/transset-df/files patch-transset.c Log: - Add a new Feature -a select the actual window - Bump PORTREVISION Submitted by: Roman Divacky (via irc) Revision Changes Path 1.6 +1 -1 ports/x11-wm/transset-df/Makefile 1.1 +63 -0 ports/x11-wm/transset-df/files/patch-transset.c (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 19 10:16:51 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B7FA316A418; Sun, 19 Aug 2007 10:16:51 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9005813C459; Sun, 19 Aug 2007 10:16:51 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JAGpFg005984; Sun, 19 Aug 2007 10:16:51 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JAGpWo005983; Sun, 19 Aug 2007 10:16:51 GMT (envelope-from blackend) Message-Id: <200708191016.l7JAGpWo005983@repoman.freebsd.org> From: Marc Fonvieille Date: Sun, 19 Aug 2007 10:16:50 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/share/sgml man-refs.ent X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Aug 2007 10:16:51 -0000 blackend 2007-08-19 10:16:50 UTC FreeBSD doc repository Modified files: share/sgml man-refs.ent Log: Add snmp_bridge(3) for a future doc addition. Revision Changes Path 1.436 +1 -0 doc/share/sgml/man-refs.ent From owner-cvs-all@FreeBSD.ORG Sun Aug 19 10:22:45 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E814816A419; Sun, 19 Aug 2007 10:22:45 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D81ED13C428; Sun, 19 Aug 2007 10:22:45 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JAMjKm006454; Sun, 19 Aug 2007 10:22:45 GMT (envelope-from se@repoman.freebsd.org) Received: (from se@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JAMjvI006453; Sun, 19 Aug 2007 10:22:45 GMT (envelope-from se) Message-Id: <200708191022.l7JAMjvI006453@repoman.freebsd.org> From: Stefan Esser Date: Sun, 19 Aug 2007 10: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/multimedia/dvbcut/files patch-psfile.cpp patch-tsfile.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, 19 Aug 2007 10:22:46 -0000 se 2007-08-19 10:22:45 UTC FreeBSD ports repository Modified files: multimedia/dvbcut/files patch-psfile.cpp patch-tsfile.cpp Log: This port depends on ffmpegg and was broken by a change in ffmpeg (the sources, not the FreeBSD port), again. It is hard to catch up with all the API changes ffmpeg sees every few weeks. A similar patch will probably be required in other ports that depend on ffmpeg and that use the same method to access encoders/decoders. This port remains broken until the ffmpeg port installs the new header (allcodecs.h), which seems to have been forgotten by the ffmpeg developers (and until the ffmpeg port has added that file to its PLIST). Revision Changes Path 1.5 +4 -3 ports/multimedia/dvbcut/files/patch-psfile.cpp 1.5 +4 -3 ports/multimedia/dvbcut/files/patch-tsfile.cpp From owner-cvs-all@FreeBSD.ORG Sun Aug 19 10:35:00 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B200D16A417; Sun, 19 Aug 2007 10:35:00 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9DE5F13C45A; Sun, 19 Aug 2007 10:35:00 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JAZ0Ib007154; Sun, 19 Aug 2007 10:35:00 GMT (envelope-from se@repoman.freebsd.org) Received: (from se@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JAZ0BJ007153; Sun, 19 Aug 2007 10:35:00 GMT (envelope-from se) Message-Id: <200708191035.l7JAZ0BJ007153@repoman.freebsd.org> From: Stefan Esser Date: Sun, 19 Aug 2007 10:35:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/ffmpeg pkg-plist ports/multimedia/ffmpeg/files patch-libavcodec_Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 10:35:00 -0000 se 2007-08-19 10:35:00 UTC FreeBSD ports repository Modified files: multimedia/ffmpeg pkg-plist Added files: multimedia/ffmpeg/files patch-libavcodec_Makefile Log: The ffmpeg developers moved part of avcodec.h into a new file allcodecs.h, but have not modified the Makefile in libavcodec to install that header. This broke dvbcut and possibly other ports that directly access decoder or encoder functions (i.e. which do not use avcodec_find_decoder() to search for them). Direct access to the functions has not been declared deprecated (AFAIK) and thus it appears that installation of the header has just been forgotten ... Revision Changes Path 1.3 +11 -0 ports/multimedia/ffmpeg/files/patch-libavcodec_Makefile (new) 1.17 +1 -0 ports/multimedia/ffmpeg/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Aug 19 10:37:57 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BE62416A418; Sun, 19 Aug 2007 10:37:57 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9764413C457; Sun, 19 Aug 2007 10:37:57 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JAbvaM007297; Sun, 19 Aug 2007 10:37:57 GMT (envelope-from se@repoman.freebsd.org) Received: (from se@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JAbvaU007296; Sun, 19 Aug 2007 10:37:57 GMT (envelope-from se) Message-Id: <200708191037.l7JAbvaU007296@repoman.freebsd.org> From: Stefan Esser Date: Sun, 19 Aug 2007 10:37: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/multimedia/ffmpeg Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 10:37:57 -0000 se 2007-08-19 10:37:57 UTC FreeBSD ports repository Modified files: multimedia/ffmpeg Makefile Log: Bump PORTREVISION since this port now installs a previously forgotten header file that is required by dependent ports (i.e. those are broken until ffmpeg is installed with the missing header). Revision Changes Path 1.69 +1 -1 ports/multimedia/ffmpeg/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 19 10:39:19 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2459616A41B; Sun, 19 Aug 2007 10:39:19 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F0EFB13C461; Sun, 19 Aug 2007 10:39:18 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JAdIus007349; Sun, 19 Aug 2007 10:39:18 GMT (envelope-from se@repoman.freebsd.org) Received: (from se@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JAdI0Z007348; Sun, 19 Aug 2007 10:39:18 GMT (envelope-from se) Message-Id: <200708191039.l7JAdI0Z007348@repoman.freebsd.org> From: Stefan Esser Date: Sun, 19 Aug 2007 10:39:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/dvbcut Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 10:39:19 -0000 se 2007-08-19 10:39:18 UTC FreeBSD ports repository Modified files: multimedia/dvbcut Makefile Log: This port is no longer broken (after ffmpeg has been patched to install a misssing header). Revision Changes Path 1.14 +0 -2 ports/multimedia/dvbcut/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 19 10:51:04 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1DA7516A419; Sun, 19 Aug 2007 10:51:04 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EA68B13C468; Sun, 19 Aug 2007 10:51:03 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JAp3M4008101; Sun, 19 Aug 2007 10:51:03 GMT (envelope-from se@repoman.freebsd.org) Received: (from se@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JAp3nq008100; Sun, 19 Aug 2007 10:51:03 GMT (envelope-from se) Message-Id: <200708191051.l7JAp3nq008100@repoman.freebsd.org> From: Stefan Esser Date: Sun, 19 Aug 2007 10:51: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/sys/dev/sym sym_hipd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 10:51:04 -0000 se 2007-08-19 10:51:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/sym sym_hipd.c Log: MFC of rev. 1.67: Fix sym driver on amd64. Revision Changes Path 1.55.2.1 +17 -12 src/sys/dev/sym/sym_hipd.c From owner-cvs-all@FreeBSD.ORG Sun Aug 19 11:00:26 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F34F16A41B; Sun, 19 Aug 2007 11:00:26 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7791713C478; Sun, 19 Aug 2007 11:00:26 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JB0Qj6008619; Sun, 19 Aug 2007 11:00:26 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JB0QK1008617; Sun, 19 Aug 2007 11:00:26 GMT (envelope-from miwi) Message-Id: <200708191100.l7JB0QK1008617@repoman.freebsd.org> From: Martin Wilke Date: Sun, 19 Aug 2007 11:00: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/cvs2cl 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, 19 Aug 2007 11:00:26 -0000 miwi 2007-08-19 11:00:26 UTC FreeBSD ports repository Modified files: devel/cvs2cl Makefile distinfo Log: - Fixed wrong SIZE and checksum entries. - Fixed maintainer stupidity on patching. - Fixed manpage generation. - Use DIST_SUBDIR as recommended by sat@. - Added new MIRROR_SITES entry to provide backwards compatibility from version 2.67 and above. PR: 115245 Submitted by: Marcus von Appen (maintainer) Revision Changes Path 1.27 +8 -3 ports/devel/cvs2cl/Makefile 1.19 +3 -3 ports/devel/cvs2cl/distinfo From owner-cvs-all@FreeBSD.ORG Sun Aug 19 11:03:15 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 65E2716A418; Sun, 19 Aug 2007 11:03:15 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3DE9413C48A; Sun, 19 Aug 2007 11:03:15 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JB3F4W010091; Sun, 19 Aug 2007 11:03:15 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JB3Fu7010090; Sun, 19 Aug 2007 11:03:15 GMT (envelope-from miwi) Message-Id: <200708191103.l7JB3Fu7010090@repoman.freebsd.org> From: Martin Wilke Date: Sun, 19 Aug 2007 11:03: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/zend-framework 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, 19 Aug 2007 11:03:15 -0000 miwi 2007-08-19 11:03:14 UTC FreeBSD ports repository Modified files: www/zend-framework Makefile distinfo pkg-plist Log: - Update to 1.0.1 PR: ports/115527 Submitted by: Greg Larkin (maintainer) Revision Changes Path 1.9 +1 -1 ports/www/zend-framework/Makefile 1.7 +3 -3 ports/www/zend-framework/distinfo 1.7 +65 -217 ports/www/zend-framework/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Aug 19 11:11:06 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4FD8A16A417; Sun, 19 Aug 2007 11:11:06 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 28B2813C45D; Sun, 19 Aug 2007 11:11:06 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JBB6UJ010600; Sun, 19 Aug 2007 11:11:06 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JBB5un010599; Sun, 19 Aug 2007 11:11:05 GMT (envelope-from miwi) Message-Id: <200708191111.l7JBB5un010599@repoman.freebsd.org> From: Martin Wilke Date: Sun, 19 Aug 2007 11:11: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/graphics/pear-Image_Graph 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, 19 Aug 2007 11:11:06 -0000 miwi 2007-08-19 11:11:05 UTC FreeBSD ports repository Modified files: graphics/pear-Image_Graph Makefile distinfo Log: - Update to 0.7.2 PR: 115348 Submitted by: Linh Pham Approved by: maintainer Revision Changes Path 1.6 +1 -2 ports/graphics/pear-Image_Graph/Makefile 1.4 +3 -3 ports/graphics/pear-Image_Graph/distinfo From owner-cvs-all@FreeBSD.ORG Sun Aug 19 08:15:38 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E081416A41A; Sun, 19 Aug 2007 08:15:38 +0000 (UTC) (envelope-from julliard@winehq.org) Received: from mail.codeweavers.com (mail.codeweavers.com [216.251.189.131]) by mx1.freebsd.org (Postfix) with ESMTP id A7AF413C469; Sun, 19 Aug 2007 08:15:38 +0000 (UTC) (envelope-from julliard@winehq.org) Received: from adsl-62-167-26-218.adslplus.ch ([62.167.26.218] helo=wine.dyndns.org) by mail.codeweavers.com with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.63) (envelope-from ) id 1IMfcg-0005Li-3Y; Sun, 19 Aug 2007 02:54:58 -0500 Received: by wine.dyndns.org (Postfix, from userid 1000) id B865D1E7170; Sun, 19 Aug 2007 09:54:55 +0200 (CEST) To: Daniel Eischen References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C4FD02.3090708@freebsd.org> <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> <250D8A54B98F12158C71D8FE@ganymede.hub.org> From: Alexandre Julliard Date: Sun, 19 Aug 2007 09:54:55 +0200 In-Reply-To: (Daniel Eischen's message of "Sat\, 18 Aug 2007 23\:11\:37 -0400 \(EDT\)") Message-ID: <87hcmwot68.fsf@wine.dyndns.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailman-Approved-At: Sun, 19 Aug 2007 11:26:24 +0000 Cc: wine-freebsd@hub.org, src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, "Marc G. Fournier" , Robert Watson , David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 08:15:39 -0000 Daniel Eischen writes: > FreeBSD as well as Solaris and Linux (it looks like Linux only allows a > thread group to be signaled) have gotten along without this API, and > Wine seems to be the only target for this syscall. Actually, Linux, Solaris, and Mac OS X all export that functionality, and in all cases it was added before Wine requested it, probably because it's a fairly logical feature to have as part of a kernel threading mechanism. -- Alexandre Julliard julliard@winehq.org From owner-cvs-all@FreeBSD.ORG Sun Aug 19 11:42:41 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1B7DB16A418; Sun, 19 Aug 2007 11:42:41 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0BC8313C46B; Sun, 19 Aug 2007 11:42:41 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JBgemB012847; Sun, 19 Aug 2007 11:42:40 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JBgeTa012846; Sun, 19 Aug 2007 11:42:40 GMT (envelope-from novel) Message-Id: <200708191142.l7JBgeTa012846@repoman.freebsd.org> From: Roman Bogorodskiy Date: Sun, 19 Aug 2007 11: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: ports/multimedia/bmpx Makefile pkg-plist ports/multimedia/bmpx/files patch-docs-Makefile.am X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Aug 2007 11:42:41 -0000 novel 2007-08-19 11:42:40 UTC FreeBSD ports repository Modified files: multimedia/bmpx Makefile pkg-plist Added files: multimedia/bmpx/files patch-docs-Makefile.am Log: - Remove neon, mp4v2 and fam dependencies, since they are not needed anymore [1] - Disable hal support by default and andd WITH_HAL knob which turns it on. However bmpx with hal support might be not stable [1] - Mark BROKEN on 5.x [2] - Disable docs installation, they're pretty useless at this moment, but require additional dependencies Suggested by: David Le Brun [1] Repored by: pointyhat via kris [2] Revision Changes Path 1.36 +15 -7 ports/multimedia/bmpx/Makefile 1.1 +23 -0 ports/multimedia/bmpx/files/patch-docs-Makefile.am (new) 1.15 +0 -29 ports/multimedia/bmpx/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Aug 19 14:06:43 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3E4BB16A417; Sun, 19 Aug 2007 14:06:43 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2E3EC13C428; Sun, 19 Aug 2007 14:06:43 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JE6hB6038566; Sun, 19 Aug 2007 14:06:43 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JE6hxm038563; Sun, 19 Aug 2007 14:06:43 GMT (envelope-from miwi) Message-Id: <200708191406.l7JE6hxm038563@repoman.freebsd.org> From: Martin Wilke Date: Sun, 19 Aug 2007 14: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: ports/games Makefile ports/games/memonix 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, 19 Aug 2007 14:06:43 -0000 miwi 2007-08-19 14:06:42 UTC FreeBSD ports repository Modified files: games Makefile Added files: games/memonix Makefile distinfo pkg-descr Log: Brain teasers, puzzle and memory games for kid's in one pack! Memonix is the latest version of a wonderful collection of four brain twisters, including Mosaic, Builder, Pair and Jig-Saw. While being amazingly addictive and fun to play, these games can be used to improve your child's memory, thinking and reaction. Five difficulty levels from normal to obscene plus the timer mean that the challenge will never run away. Joyful music and brightly-colored visuals maximize the excitement from the gameplay. WWW: http://www.viewizard.com/ PR: ports/114539 Submitted by: Dmitry Marakasov Revision Changes Path 1.1136 +1 -0 ports/games/Makefile 1.1 +56 -0 ports/games/memonix/Makefile (new) 1.1 +6 -0 ports/games/memonix/distinfo (new) 1.1 +11 -0 ports/games/memonix/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 19 14:07:05 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6B74B16A418; Sun, 19 Aug 2007 14:07:05 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 45B6613C48A; Sun, 19 Aug 2007 14:07:05 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JE75xu038628; Sun, 19 Aug 2007 14:07:05 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JE75l4038627; Sun, 19 Aug 2007 14:07:05 GMT (envelope-from miwi) Message-Id: <200708191407.l7JE75l4038627@repoman.freebsd.org> From: Martin Wilke Date: Sun, 19 Aug 2007 14:07:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Aug 2007 14:07:05 -0000 miwi 2007-08-19 14:07:05 UTC FreeBSD ports repository Modified files: . modules Log: memonix --> ports/games/memonix Revision Changes Path 1.18554 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Aug 19 14:12:18 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CD4BB16A46B; Sun, 19 Aug 2007 14:12:18 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A721813C45B; Sun, 19 Aug 2007 14:12:18 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JECI2q039089; Sun, 19 Aug 2007 14:12:18 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JECIEU039088; Sun, 19 Aug 2007 14:12:18 GMT (envelope-from gabor) Message-Id: <200708191412.l7JECIEU039088@repoman.freebsd.org> From: Gabor Kovesdan Date: Sun, 19 Aug 2007 14:12: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/p5-Digest-SHA-PurePerl 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, 19 Aug 2007 14:12:18 -0000 gabor 2007-08-19 14:12:18 UTC FreeBSD ports repository Modified files: security/p5-Digest-SHA-PurePerl Makefile distinfo pkg-plist Log: - Update to 5.45 - Install example dups file when NOPORTEXAMPLES unset PR: ports/115347 Submitted by: Felippe de Meirelles Motta Revision Changes Path 1.10 +7 -1 ports/security/p5-Digest-SHA-PurePerl/Makefile 1.7 +3 -3 ports/security/p5-Digest-SHA-PurePerl/distinfo 1.4 +2 -0 ports/security/p5-Digest-SHA-PurePerl/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Aug 19 14:21:39 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4BC3616A418; Sun, 19 Aug 2007 14:21:39 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 25FF413C46E; Sun, 19 Aug 2007 14:21:39 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JELd1B039619; Sun, 19 Aug 2007 14:21:39 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JELcXl039618; Sun, 19 Aug 2007 14:21:38 GMT (envelope-from miwi) Message-Id: <200708191421.l7JELcXl039618@repoman.freebsd.org> From: Martin Wilke Date: Sun, 19 Aug 2007 14: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/devel/pear-PhpDocumentor 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, 19 Aug 2007 14:21:39 -0000 miwi 2007-08-19 14:21:38 UTC FreeBSD ports repository Modified files: devel/pear-PhpDocumentor Makefile distinfo Log: - Update to 1.4.0 PR: 115441 Submitted by: Gerrit Beine (maintainer) Revision Changes Path 1.2 +26 -6 ports/devel/pear-PhpDocumentor/Makefile 1.2 +3 -3 ports/devel/pear-PhpDocumentor/distinfo From owner-cvs-all@FreeBSD.ORG Sun Aug 19 14:44:18 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 823A216A417; Sun, 19 Aug 2007 14:44:18 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: from mail.netplex.net (mail.netplex.net [204.213.176.10]) by mx1.freebsd.org (Postfix) with ESMTP id 20FDF13C483; Sun, 19 Aug 2007 14:44:18 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: from sea.ntplx.net (sea.ntplx.net [204.213.176.11]) by mail.netplex.net (8.14.1/8.14.1/NETPLEX) with ESMTP id l7JEi9VL013246; Sun, 19 Aug 2007 10:44:09 -0400 (EDT) X-Virus-Scanned: by AMaViS and Clam AntiVirus (mail.netplex.net) X-Greylist: Message whitelisted by DRAC access database, not delayed by milter-greylist-3.0 (mail.netplex.net [204.213.176.10]); Sun, 19 Aug 2007 10:44:10 -0400 (EDT) Date: Sun, 19 Aug 2007 10:44:09 -0400 (EDT) From: Daniel Eischen X-X-Sender: eischen@sea.ntplx.net To: Robert Watson In-Reply-To: <20070819092923.X65240@fledge.watson.org> Message-ID: References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C4FD02.3090708@freebsd.org> <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> <250D8A54B98F12158C71D8FE@ganymede.hub.org> <20070819092923.X65240@fledge.watson.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: wine-freebsd@hub.org, src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, "Marc G. Fournier" , David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Daniel Eischen List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Aug 2007 14:44:18 -0000 On Sun, 19 Aug 2007, Robert Watson wrote: > On Sat, 18 Aug 2007, Daniel Eischen wrote: > >>> Stupid question, but ... why not? >>> >>> First off, do you know for a fact that Wine is the only app out there that >>> needs the ability to kill off a thread in a seperate process, or has >>> nobody in the past cared enough to see other apps ported from Linux -> >>> FreeBSD to push for this sort of thing? >> >> FreeBSD as well as Solaris and Linux (it looks like Linux only allows a >> thread group to be signaled) have gotten along without this API, and Wine >> seems to be the only target for this syscall. > > While I'm not familiar with the newer pthread code on Linux, I can say with > reasonable authority that the older implementation used the same ID space for > pids and thread IDs, since threads were tasks, and therefore Linux has always > supported directly signalling threads in other processes. Thread id's (as visible to an application) are not required to be something that is known by the kernel. They certainly are not in libkse and libc_r, and I don't think they are in libthr either. This API won't work with libkse (or libc_r if we care) and isn't guaranteed to work with any future libthreadX. POSIX has well defined behavior with regard to signaling, and this certainly bypasses that. If we want to add a more well thought out set of APIs for thread groups that can (in the future) support CPU binding and scheduling, then that's OK. But the API as committed is a hack that solves one particular problem that can be solved in other (more portable) ways. sigqueue() was mentioned as a possible solution earlier. -- DE From owner-cvs-all@FreeBSD.ORG Sun Aug 19 14:53:59 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 73EB416A46C; Sun, 19 Aug 2007 14:53:59 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 65C2213C48E; Sun, 19 Aug 2007 14:53:59 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JErxOW041356; Sun, 19 Aug 2007 14:53:59 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JErx8v041355; Sun, 19 Aug 2007 14:53:59 GMT (envelope-from gabor) Message-Id: <200708191453.l7JErx8v041355@repoman.freebsd.org> From: Gabor Kovesdan Date: Sun, 19 Aug 2007 14:53: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/emulators Makefile ports/emulators/fceu-server 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: Sun, 19 Aug 2007 14:53:59 -0000 gabor 2007-08-19 14:53:58 UTC FreeBSD ports repository Modified files: emulators Makefile Added files: emulators/fceu-server Makefile distinfo pkg-descr pkg-plist Log: This is a port of the FCE Ultra network play server. WWW: http://fceultra.sourceforge.net/ PR: ports/114997 Submitted by: Pontus Stenetorp Revision Changes Path 1.230 +1 -0 ports/emulators/Makefile 1.1 +43 -0 ports/emulators/fceu-server/Makefile (new) 1.1 +3 -0 ports/emulators/fceu-server/distinfo (new) 1.1 +3 -0 ports/emulators/fceu-server/pkg-descr (new) 1.1 +4 -0 ports/emulators/fceu-server/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 19 14:54:36 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 03BA816A417; Sun, 19 Aug 2007 14:54:36 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D30C613C457; Sun, 19 Aug 2007 14:54:35 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JEsZql041396; Sun, 19 Aug 2007 14:54:35 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JEsZ8h041395; Sun, 19 Aug 2007 14:54:35 GMT (envelope-from gabor) Message-Id: <200708191454.l7JEsZ8h041395@repoman.freebsd.org> From: Gabor Kovesdan Date: Sun, 19 Aug 2007 14:54: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: Sun, 19 Aug 2007 14:54:36 -0000 gabor 2007-08-19 14:54:35 UTC FreeBSD ports repository Modified files: . modules Log: fceu-server --> ports/emulators/fceu-server Revision Changes Path 1.18555 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Aug 19 14:58:37 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 01D5816A417; Sun, 19 Aug 2007 14:58:37 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D032E13C45D; Sun, 19 Aug 2007 14:58:36 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JEwaPJ041586; Sun, 19 Aug 2007 14:58:36 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JEwaIl041585; Sun, 19 Aug 2007 14:58:36 GMT (envelope-from gabor) Message-Id: <200708191458.l7JEwaIl041585@repoman.freebsd.org> From: Gabor Kovesdan Date: Sun, 19 Aug 2007 14:58:36 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/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, 19 Aug 2007 14:58:37 -0000 gabor 2007-08-19 14:58:36 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/contributors contrib.additional.sgml Log: - Add Pontus Stenetorp for emulators/fceu-server Approved by: keramida (mentor, implicit) Revision Changes Path 1.721 +5 -0 doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml From owner-cvs-all@FreeBSD.ORG Sun Aug 19 14:53:20 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A09E316A419; Sun, 19 Aug 2007 14:53:20 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: from mail.netplex.net (mail.netplex.net [204.213.176.10]) by mx1.freebsd.org (Postfix) with ESMTP id 57DC513C45E; Sun, 19 Aug 2007 14:53:20 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: from sea.ntplx.net (sea.ntplx.net [204.213.176.11]) by mail.netplex.net (8.14.1/8.14.1/NETPLEX) with ESMTP id l7JErDRS018278; Sun, 19 Aug 2007 10:53:14 -0400 (EDT) X-Virus-Scanned: by AMaViS and Clam AntiVirus (mail.netplex.net) X-Greylist: Message whitelisted by DRAC access database, not delayed by milter-greylist-3.0 (mail.netplex.net [204.213.176.10]); Sun, 19 Aug 2007 10:53:14 -0400 (EDT) Date: Sun, 19 Aug 2007 10:53:13 -0400 (EDT) From: Daniel Eischen X-X-Sender: eischen@sea.ntplx.net To: Alexandre Julliard In-Reply-To: <87hcmwot68.fsf@wine.dyndns.org> Message-ID: References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C4FD02.3090708@freebsd.org> <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> <250D8A54B98F12158C71D8FE@ganymede.hub.org> <87hcmwot68.fsf@wine.dyndns.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Mailman-Approved-At: Sun, 19 Aug 2007 15:05:53 +0000 Cc: wine-freebsd@hub.org, src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, "Marc G. Fournier" , Robert Watson , David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Daniel Eischen List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Aug 2007 14:53:20 -0000 On Sun, 19 Aug 2007, Alexandre Julliard wrote: > Daniel Eischen writes: > >> FreeBSD as well as Solaris and Linux (it looks like Linux only allows a >> thread group to be signaled) have gotten along without this API, and >> Wine seems to be the only target for this syscall. > > Actually, Linux, Solaris, and Mac OS X all export that functionality, > and in all cases it was added before Wine requested it, probably > because it's a fairly logical feature to have as part of a kernel > threading mechanism. I do not see it in Solaris. All I can find is _lwp_kill(), which isn't meant to be used by applications and isn't suppose to work for LWPs outside the current process. -- DE From owner-cvs-all@FreeBSD.ORG Sun Aug 19 15:07:07 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0296B16A419; Sun, 19 Aug 2007 15:07:07 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D12F813C46E; Sun, 19 Aug 2007 15:07:06 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JF76tn043352; Sun, 19 Aug 2007 15:07:06 GMT (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JF76iX043351; Sun, 19 Aug 2007 15:07:06 GMT (envelope-from gerald) Message-Id: <200708191507.l7JF76iX043351@repoman.freebsd.org> From: Gerald Pfeifer Date: Sun, 19 Aug 2007 15:07:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/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: Sun, 19 Aug 2007 15:07:07 -0000 gerald 2007-08-19 15:07:06 UTC FreeBSD ports repository Modified files: lang/gcc42 Makefile distinfo Log: Update to the 20070815 snapshot of GCC 4.2.2. Revision Changes Path 1.319 +3 -3 ports/lang/gcc42/Makefile 1.203 +18 -18 ports/lang/gcc42/distinfo From owner-cvs-all@FreeBSD.ORG Sun Aug 19 15:36:02 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6E39D16A41A; Sun, 19 Aug 2007 15:36:02 +0000 (UTC) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5E6B613C4B4; Sun, 19 Aug 2007 15:36:02 +0000 (UTC) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JFa2Qr045423; Sun, 19 Aug 2007 15:36:02 GMT (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JFa2Q8045421; Sun, 19 Aug 2007 15:36:02 GMT (envelope-from lofi) Message-Id: <200708191536.l7JFa2Q8045421@repoman.freebsd.org> From: Michael Nottebrock Date: Sun, 19 Aug 2007 15:36:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11/kdelibs3 Makefile ports/x11/kdelibs3/files patch-post-3.5.7-kdelibs-kdecore.diff ports/x11/kdebase3 Makefile ports/x11/kdebase3/files patch-post-3.5.7-kdebase-konqueror.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: Sun, 19 Aug 2007 15:36:02 -0000 lofi 2007-08-19 15:36:01 UTC FreeBSD ports repository Modified files: x11/kdelibs3 Makefile x11/kdebase3 Makefile Added files: x11/kdelibs3/files patch-post-3.5.7-kdelibs-kdecore.diff x11/kdebase3/files patch-post-3.5.7-kdebase-konqueror.diff Log: Fix Konqueror address bar spoofing attack vulnerability. Security: CVE-2007-4224, CVE-2007-4224, CVE-2007-3820 Security: http://www.kde.org/info/security/advisory-20070816-1.txt Revision Changes Path 1.199 +1 -1 ports/x11/kdebase3/Makefile 1.1 +49 -0 ports/x11/kdebase3/files/patch-post-3.5.7-kdebase-konqueror.diff (new) 1.217 +1 -1 ports/x11/kdelibs3/Makefile 1.1 +61 -0 ports/x11/kdelibs3/files/patch-post-3.5.7-kdelibs-kdecore.diff (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 19 15:51:59 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C0D5416A417; Sun, 19 Aug 2007 15:51:59 +0000 (UTC) (envelope-from krismoore@comcast.net) Received: from alnrmhc13.comcast.net (alnrmhc13.comcast.net [204.127.225.93]) by mx1.freebsd.org (Postfix) with ESMTP id 5F6C613C465; Sun, 19 Aug 2007 15:51:59 +0000 (UTC) (envelope-from krismoore@comcast.net) Received: from [192.168.1.102] (c-67-170-130-86.hsd1.wa.comcast.net[67.170.130.86]) by comcast.net (alnrmhc13) with ESMTP id <20070819153732b1300ef3hke>; Sun, 19 Aug 2007 15:37:34 +0000 Message-ID: <46C863C5.6090906@comcast.net> Date: Sun, 19 Aug 2007 08:37:41 -0700 From: Kris Moore User-Agent: Thunderbird 2.0.0.6 (Windows/20070728) MIME-Version: 1.0 To: Robert Watson References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C4FD02.3090708@freebsd.org> <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> <46C7A9A4.5090404@samsco.org> <20070819095302.D66918@fledge.watson.org> In-Reply-To: <20070819095302.D66918@fledge.watson.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Sun, 19 Aug 2007 16:05:57 +0000 Cc: wine-freebsd@hub.org, Scott Long , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, Daniel Eischen , David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 15:51:59 -0000 Robert Watson wrote: > This work was done by Tijl at the request of the PC-BSD guys, who would > like to be able to run windows applications out of the box on PC-BSD for > their next release (impending). David then reviewed and committed the > patch giving it his approval. The goal here was to avoid having the > PC-BSD people have to run around with additional system call patches for > the forseeable future, and to avoid requiring PC-BSD to fork the FreeBSD > kernel to do that. Robert is correct here. Tijl has done a fantastic job with getting Wine up to spec on FreeBSD, and it will help us greatly in trying to pursue our goal of getting PC-BSD / FreeBSD on as many desktops as possible. Easily the two most requested features we get from users who want to switch over to BSD is working Wine support, and Flash 9 support. This patch is a HUGE step in the right direction, and allows our users to very easily run old legacy business apps or play the latest games, like WoW. As such I really can't underscore the importance of this enough for a viable desktop product. That being said, most of the technical details are a bit over my head, but I will add my $0.02 to this. Whatever the solution, there needs to be a working solution in the end. If there's a better, more portable way to do this, then by all means lets get it done. If nobody can or will write this solution, then lets not just drop the original patch. A fix is greatly needed either way, so I hope this is added in the very near future. Even if you decide to only add this new functionality to FreeBSD 7.x, that's fine with us. Our next release of PC-BSD will be our last based on FreeBSD 6.x before moving to 7. We're committed to shipping with the patch Tijl wrote, since the improvements to Wine with it are night and day. Of course if you roll this into the tree, all the better since I won't have to spend the next 6 months to a year reminding users that when they update world, they have to apply the Wine patch first ;-) -- Kris Moore PC-BSD Software From owner-cvs-all@FreeBSD.ORG Sun Aug 19 16:08:45 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7310416A418 for ; Sun, 19 Aug 2007 16:08:45 +0000 (UTC) (envelope-from lynx.ripe@gmail.com) Received: from hu-out-0506.google.com (hu-out-0506.google.com [72.14.214.231]) by mx1.freebsd.org (Postfix) with ESMTP id E644A13C478 for ; Sun, 19 Aug 2007 16:08:44 +0000 (UTC) (envelope-from lynx.ripe@gmail.com) Received: by hu-out-0506.google.com with SMTP id 28so1178035hub for ; Sun, 19 Aug 2007 09:08:44 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=L2mR7IFNK4F32LbtlfMqxF0OMMskN7+EQ04mHthuiSdrEcedgbELyWOKDdrKvS1MasI8zKQ10/yOK7NxsSofbDQv5lZ7MokbO4RJKSnEeuhJ6gWGdtWfUixGhzwY9APbLIxBpnRZaQTDEeUyDlYMgWcJmw0p1YiVRCe4Ny8oULs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Aex/FdIMwuLyatX7zcV3F13ybTdseFaflyn0E8LugdyJc7DtS+7x5RZPz6Y7zxvrWln89ZCessmRBhuLtelWGLHxgJ2CZvujzznkzkNOjNtqwU0MG7hKQnYNR7L2y2rBgpBRv+RHh6ni1s5u0N6Pvx1IpH/MenmiifhmaxlFxjI= Received: by 10.114.204.7 with SMTP id b7mr3145340wag.1187538891230; Sun, 19 Aug 2007 08:54:51 -0700 (PDT) Received: by 10.115.22.8 with HTTP; Sun, 19 Aug 2007 08:54:51 -0700 (PDT) Message-ID: <754a9c140708190854vde1ca31n8ec1e9c5fbc9cbb3@mail.gmail.com> Date: Sun, 19 Aug 2007 18:54:51 +0300 From: "Dmitry Pryanishnikov" To: "Christian S.J. Peron" In-Reply-To: <46C861BA.4000708@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <46C861BA.4000708@gmail.com> Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: FreeBSD Mail Archives X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 16:08:45 -0000 Hello! > Date: Sat, 4 Aug 2007 20:35:42 +0000 (UTC) > From: "Christian S.J. Peron" > To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org > Subject: cvs commit: src/sbin/ipfw ipfw.8 > Message-ID: <200708042035.l74KZg6K061244@repoman.freebsd.org> > csjp 2007-08-04 20:35:42 UTC > > FreeBSD src repository > > Modified files: > sbin/ipfw ipfw.8 > Log: > Remove references to mpsafenet. This option no longer exists. I think this commit may create false feeling that using ipfw features such as gid, jail, uid and dummynet for IPv6 are now available for general use. However, I don't see commit messages for the locking fixes which would make these options safe. If I don't miss anything here, removal of the debug.mpsafenet makes all these ipfw uses always dangerous, so this fact should be mentioned in BUGS section of the manpage (until someone actually fixes those uses). -- Sincerely, Dmitry nic-hdl: LYNX-RIPE From owner-cvs-all@FreeBSD.ORG Sun Aug 19 16:22:25 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7504F16A419; Sun, 19 Aug 2007 16:22:25 +0000 (UTC) (envelope-from trasz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4F8CF13C4A8; Sun, 19 Aug 2007 16:22:25 +0000 (UTC) (envelope-from trasz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JGMPD1054526; Sun, 19 Aug 2007 16:22:25 GMT (envelope-from trasz@repoman.freebsd.org) Received: (from trasz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JGMPGc054525; Sun, 19 Aug 2007 16:22:25 GMT (envelope-from trasz) Message-Id: <200708191622.l7JGMPGc054525@repoman.freebsd.org> From: Edward Tomasz Napierala Date: Sun, 19 Aug 2007 16:22: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-im/gloox 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, 19 Aug 2007 16:22:25 -0000 trasz 2007-08-19 16:22:24 UTC FreeBSD ports repository Modified files: net-im/gloox Makefile distinfo Log: - Update to 0.9.4.1. Approved by: miwi (mentor) Revision Changes Path 1.14 +1 -1 ports/net-im/gloox/Makefile 1.7 +3 -3 ports/net-im/gloox/distinfo From owner-cvs-all@FreeBSD.ORG Sun Aug 19 16:31:58 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4442A16A417; Sun, 19 Aug 2007 16:31:58 +0000 (UTC) (envelope-from max@love2party.net) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.188]) by mx1.freebsd.org (Postfix) with ESMTP id C211C13C47E; Sun, 19 Aug 2007 16:31:57 +0000 (UTC) (envelope-from max@love2party.net) Received: from dslb-088-066-038-247.pools.arcor-ip.net [88.66.38.247] (helo=amd64.laiers.local) by mrelayeu.kundenserver.de (node=mrelayeu8) with ESMTP (Nemesis), id 0ML31I-1IMnUk1fFr-0001bP; Sun, 19 Aug 2007 18:19:19 +0200 From: Max Laier Organization: FreeBSD To: "Dmitry Pryanishnikov" Date: Sun, 19 Aug 2007 18:18:51 +0200 User-Agent: KMail/1.9.7 References: <46C861BA.4000708@gmail.com> <754a9c140708190854vde1ca31n8ec1e9c5fbc9cbb3@mail.gmail.com> In-Reply-To: <754a9c140708190854vde1ca31n8ec1e9c5fbc9cbb3@mail.gmail.com> X-Face: ,,8R(x[kmU]tKN@>gtH1yQE4aslGdu+2]; R]*pL,U>^H?)gW@49@wdJ`H<=?utf-8?q?=25=7D*=5FBD=0A=09U=5For=3D=5CmOZf764=26nYj=3DJYbR1PW0ud?=>|!~,,CPC.1-D$FG@0h3#'5"k{V]a~.<=?utf-8?q?mZ=7D44=23Se=7Em=0A=09Fe=7E=5C=5DX5B=5D=5Fxj?=(ykz9QKMw_l0C2AQ]}Ym8)fU MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart47503197.B6qlqSAryW"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200708191819.10716.max@love2party.net> X-Provags-ID: V01U2FsdGVkX1+u9XupsXeG97Vf/e7gpPBp/D4qKVDi3Sa3zWg MvH+GBgbMmTtkkdfexlQHj3jfvX9HEE31Tc4pcafIBftzCtRKC wrGKUelrh4mQhZ/6Ds+582L2PZyf3DdAKZxWEgK6Fk= Cc: cvs-src@freebsd.org, src-committers@freebsd.org, "Christian S.J. Peron" , cvs-all@freebsd.org Subject: Re: FreeBSD Mail Archives X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 16:31:58 -0000 --nextPart47503197.B6qlqSAryW Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Sunday 19 August 2007, Dmitry Pryanishnikov wrote: > Hello! > > > Date: Sat, 4 Aug 2007 20:35:42 +0000 (UTC) > > From: "Christian S.J. Peron" > > To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, > > cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/ipfw ipfw.8 > > Message-ID: <200708042035.l74KZg6K061244@repoman.freebsd.org> > > csjp 2007-08-04 20:35:42 UTC > > > > FreeBSD src repository > > > > Modified files: > > sbin/ipfw ipfw.8 > > Log: > > Remove references to mpsafenet. This option no longer exists. > > I think this commit may create false feeling that using ipfw features > such as gid, jail, uid and dummynet for IPv6 are now available for > general use. However, I don't see commit messages for the locking fixes > which would make these options safe. If I don't miss anything here, > removal of the debug.mpsafenet makes all these ipfw uses always > dangerous, so this fact should be mentioned in BUGS section of the > manpage (until someone actually fixes those uses). As discussed before the removal of mpsafenet, the LOR reported for uid,=20 gid and jail rules is a false positive! There is no danger (of deadlock)=20 from using these rules. I'd still discourage the use of these options as they don't always do what= =20 people expect. The right sollution is a MAC based filter in the socket=20 layer. Although it does !sometimes! make sense to drop/accept packets=20 early. Esp. with protocols like ftp or sip it can be helpful, but one=20 should still be aware of the implications. =2D-=20 /"\ Best regards, | mlaier@freebsd.org \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | mlaier@EFnet / \ ASCII Ribbon Campaign | Against HTML Mail and News --nextPart47503197.B6qlqSAryW Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part. -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQBGyG1+XyyEoT62BG0RAliBAJ4vR1EOP4QnHBCTh2cyHchUqW9sbACeJUEx 3woywfOIS0XrLk8AHi6ZPec= =D/eF -----END PGP SIGNATURE----- --nextPart47503197.B6qlqSAryW-- From owner-cvs-all@FreeBSD.ORG Sun Aug 19 16:38:03 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 71A4F16A418; Sun, 19 Aug 2007 16:38:03 +0000 (UTC) (envelope-from tijl@ulyssis.org) Received: from mailrelay005.isp.belgacom.be (mailrelay005.isp.belgacom.be [195.238.6.171]) by mx1.freebsd.org (Postfix) with ESMTP id 35D9C13C4A7; Sun, 19 Aug 2007 16:38:01 +0000 (UTC) (envelope-from tijl@ulyssis.org) Received: from 204.27-245-81.adsl-dyn.isp.belgacom.be (HELO kalimero.kotnet.org) ([81.245.27.204]) by mailrelay005.isp.belgacom.be with ESMTP; 19 Aug 2007 18:38:00 +0200 Received: from localhost (localhost [127.0.0.1]) by kalimero.kotnet.org (8.14.1/8.14.1) with ESMTP id l7JGbuor062403; Sun, 19 Aug 2007 18:37:56 +0200 (CEST) (envelope-from tijl@ulyssis.org) From: Tijl Coosemans To: Daniel Eischen Date: Sun, 19 Aug 2007 18:37:55 +0200 User-Agent: KMail/1.9.7 References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <20070819092923.X65240@fledge.watson.org> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200708191837.56412.tijl@ulyssis.org> Cc: wine-freebsd@hub.org, src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, "Marc G. Fournier" , Robert Watson , David Xu , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 16:38:03 -0000 On Sunday 19 August 2007 16:44:09 Daniel Eischen wrote: > Thread id's (as visible to an application) are not required to be > something that is known by the kernel. They certainly are not in > libkse and libc_r, and I don't think they are in libthr either. > This API won't work with libkse (or libc_r if we care) and isn't > guaranteed to work with any future libthreadX. Right, but this is irrelevant. Wine wants all threads to be visible by the kernel (system scope), and uses the kernel thread id to send signals, but also with ptrace for instance. > POSIX has well defined behavior with regard to signaling, and > this certainly bypasses that. If we want to add a more well thought > out set of APIs for thread groups that can (in the future) support > CPU binding and scheduling, then that's OK. But the API as committed > is a hack that solves one particular problem that can be solved in > other (more portable) ways. sigqueue() was mentioned as a possible > solution earlier. There's one immense downside to the sigqueue method though. When you call kill(2) you know the signal has been queued when the call returns and you know the signal will be posted when the thread next crosses the kernel-to-user boundary. With the sigqueue method signal delivery becomes entirely asynchronous and that introduces timing issues. I also don't see this syscall as a hack. It isn't in any portable specification, but it is an understandable extension to kernel threads, which the patch clearly shows because it isn't adding anything new. It's basically only exporting functionality that was already there and will never go away either, because the kernel will always need to send signals to threads. From owner-cvs-all@FreeBSD.ORG Sun Aug 19 16:50:24 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7D6D216A41A; Sun, 19 Aug 2007 16:50:24 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6E7BB13C46C; Sun, 19 Aug 2007 16:50:24 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JGoOnN064782; Sun, 19 Aug 2007 16:50:24 GMT (envelope-from mi@repoman.freebsd.org) Received: (from mi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JGoOZ9064781; Sun, 19 Aug 2007 16:50:24 GMT (envelope-from mi) Message-Id: <200708191650.l7JGoOZ9064781@repoman.freebsd.org> From: Mikhail Teterin Date: Sun, 19 Aug 2007 16: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/graphics/vips Makefile Makefile.man distinfo pkg-plist ports/graphics/vips/files patch-contrib-vdump-vdump.c ports/graphics/nip2 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, 19 Aug 2007 16:50:24 -0000 mi 2007-08-19 16:50:23 UTC FreeBSD ports repository Modified files: graphics/vips Makefile distinfo pkg-plist graphics/nip2 Makefile distinfo pkg-plist Added files: graphics/vips Makefile.man Removed files: graphics/vips/files patch-contrib-vdump-vdump.c Log: Unbreak and update the two ports to the latest version of 7.12.4. Take over maintainership temporarily upon request from the software's author(s), who were unable to reach the previous maintainer. In both: - use explict --mandir=${PREFIX}/man to avoid man-pages getting into ${PREFIX}/shared/man incorrectly - deal with the NOPORTDOCS situation by simply not-extracting the extra documentation from the distribution tarball - parallelize the build to scale with the number of CPUs In vips: - move the (giant) list of man-pages into a separate Makefile.man - turn the pages, which contain only `.so other-page', into MANLINKS (specified in Makefile.man) - provide a "maintainance target" to regenerate the Makefile.man during the next upgrade - do not install the HTML-ized versions of man-pages - create OPTIONS for use of devel/liboil and graphics/ImageMagick (OPTION to use PYTHON awaits portmgr's decision/action) In nip2: - do install the HTML pages regardless of NOPORTDOCS -- these are accessible to the user through the application GUI - arrange for update-mime-database and update-desktop-database to be run upon install (@exec) and uninstall (@unexec) - LIB_DEPEND on math/gsl, which nip2 can use for extra functionality These ports are in need of a dedicated maintainer. Approved by: maintainer timeout Revision Changes Path 1.16 +19 -12 ports/graphics/nip2/Makefile 1.7 +3 -3 ports/graphics/nip2/distinfo 1.4 +114 -152 ports/graphics/nip2/pkg-plist 1.21 +60 -144 ports/graphics/vips/Makefile 1.1 +549 -0 ports/graphics/vips/Makefile.man (new) 1.8 +3 -3 ports/graphics/vips/distinfo 1.2 +0 -14 ports/graphics/vips/files/patch-contrib-vdump-vdump.c (dead) 1.8 +114 -801 ports/graphics/vips/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Aug 19 16:17:30 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F319A16A417; Sun, 19 Aug 2007 16:17:29 +0000 (UTC) (envelope-from tijl@ulyssis.org) Received: from mailrelay001.isp.belgacom.be (mailrelay001.isp.belgacom.be [195.238.6.51]) by mx1.freebsd.org (Postfix) with ESMTP id B6E0813C457; Sun, 19 Aug 2007 16:17:28 +0000 (UTC) (envelope-from tijl@ulyssis.org) Received: from 204.27-245-81.adsl-dyn.isp.belgacom.be (HELO kalimero.kotnet.org) ([81.245.27.204]) by mailrelay001.isp.belgacom.be with ESMTP; 19 Aug 2007 18:17:27 +0200 Received: from localhost (localhost [127.0.0.1]) by kalimero.kotnet.org (8.14.1/8.14.1) with ESMTP id l7JGGucH062168; Sun, 19 Aug 2007 18:16:56 +0200 (CEST) (envelope-from tijl@ulyssis.org) From: Tijl Coosemans To: Daniel Eischen Date: Sun, 19 Aug 2007 18:16:52 +0200 User-Agent: KMail/1.9.7 References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <87hcmwot68.fsf@wine.dyndns.org> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200708191816.55617.tijl@ulyssis.org> X-Mailman-Approved-At: Sun, 19 Aug 2007 17:32:54 +0000 Cc: wine-freebsd@hub.org, "Marc G. Fournier" , src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, Alexandre Julliard , Robert Watson , David Xu , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 16:17:30 -0000 On Sunday 19 August 2007 16:53:13 Daniel Eischen wrote: > On Sun, 19 Aug 2007, Alexandre Julliard wrote: >> Daniel Eischen writes: >>> FreeBSD as well as Solaris and Linux (it looks like Linux only >>> allows a thread group to be signaled) have gotten along without >>> this API, and Wine seems to be the only target for this syscall. >> >> Actually, Linux, Solaris, and Mac OS X all export that >> functionality, and in all cases it was added before Wine requested >> it, probably because it's a fairly logical feature to have as part >> of a kernel threading mechanism. > > I do not see it in Solaris. All I can find is _lwp_kill(), which > isn't meant to be used by applications and isn't suppose to work for > LWPs outside the current process. Solaris exposes LWPs via the /proc file system and allows sending signals to them that way. From owner-cvs-all@FreeBSD.ORG Sun Aug 19 16:21:09 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6AEC616A418; Sun, 19 Aug 2007 16:21:09 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.freebsd.org (Postfix) with ESMTP id 0E77113C458; Sun, 19 Aug 2007 16:21:08 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from phobos.samsco.home (phobos.samsco.home [192.168.254.11]) (authenticated bits=0) by pooker.samsco.org (8.13.8/8.13.8) with ESMTP id l7JGJeOE047927; Sun, 19 Aug 2007 10:19:41 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <46C86D9A.9050705@samsco.org> Date: Sun, 19 Aug 2007 10:19:38 -0600 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.6) Gecko/20070802 SeaMonkey/1.1.4 MIME-Version: 1.0 To: Kris Moore References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C4FD02.3090708@freebsd.org> <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> <46C7A9A4.5090404@samsco.org> <20070819095302.D66918@fledge.watson.org> <46C863C5.6090906@comcast.net> In-Reply-To: <46C863C5.6090906@comcast.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (pooker.samsco.org [168.103.85.57]); Sun, 19 Aug 2007 10:19:41 -0600 (MDT) X-Spam-Status: No, score=-1.4 required=5.5 tests=ALL_TRUSTED autolearn=failed version=3.1.8 X-Spam-Checker-Version: SpamAssassin 3.1.8 (2007-02-13) on pooker.samsco.org X-Mailman-Approved-At: Sun, 19 Aug 2007 17:32:54 +0000 Cc: wine-freebsd@hub.org, src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, Daniel Eischen , Robert Watson , David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 16:21:09 -0000 Kris Moore wrote: > Robert Watson wrote: >> This work was done by Tijl at the request of the PC-BSD guys, who >> would like to be able to run windows applications out of the box on >> PC-BSD for their next release (impending). David then reviewed and >> committed the patch giving it his approval. The goal here was to >> avoid having the PC-BSD people have to run around with additional >> system call patches for the forseeable future, and to avoid requiring >> PC-BSD to fork the FreeBSD kernel to do that. > > Robert is correct here. Tijl has done a fantastic job with getting Wine > up to spec on FreeBSD, and it will help us greatly in trying to pursue > our goal of getting PC-BSD / FreeBSD on as many desktops as possible. > Easily the two most requested features we get from users who want to > switch over to BSD is working Wine support, and Flash 9 support. This > patch is a HUGE step in the right direction, and allows our users to > very easily run old legacy business apps or play the latest games, like > WoW. As such I really can't underscore the importance of this enough for > a viable desktop product. > I certainly appreciate the work that the PC-BSD guys are doing, and I apologize if it seemed like I didn't. However, adding a new syscall is a very big deal; once it's in, it lives with the OS for a very, very long time. So, it's something that does discussion. > > That being said, most of the technical details are a bit over my head, > but I will add my $0.02 to this. Whatever the solution, there needs to > be a working solution in the end. If there's a better, more portable way > to do this, then by all means lets get it done. If nobody can or will > write this solution, then lets not just drop the original patch. A fix > is greatly needed either way, so I hope this is added in the very near > future. > > Even if you decide to only add this new functionality to FreeBSD 7.x, > that's fine with us. Our next release of PC-BSD will be our last based > on FreeBSD 6.x before moving to 7. We're committed to shipping with the > patch Tijl wrote, since the improvements to Wine with it are night and > day. Of course if you roll this into the tree, all the better since I > won't have to spend the next 6 months to a year reminding users that > when they update world, they have to apply the Wine patch first ;-) > > Robert's comparison to Linux is only half-valid. There's really no reason to hold linux's clone/vfork threads up as a model to emulate via a new first-class interface into the kernel. If you want to emulate it, compile your app against the linux-threads package and be done with it. The Linux developers are moving beyond that primitive "threads" package anyways and onto real threads and a complementary API to manage those threads. So tkill and tgkill are interesting things to look at, not just here but in the broader need to work with Linux both at a source and a binary level. I believe that Dan also suggested something along this line in his discussion about having Solaris-style (and thus linux-style) thread groups, so I'm not exactly sure who is disagreeing with whom in Robert's response. Thread groups do seem like a logical next step, but it's impossible to say at this point whether the syscall API to support them would at all be served by the syscall that was just added. If it isn't, then this syscall becomes a 1-off orphan and a long-term liability to both users and developers. That's what ultimately needs to be avoided. So, supporting Wine is definitely a good idea, and there's no doubt a good solution available. It just makes me nervous when syscalls are added with such little discussion and commitment. Scott From owner-cvs-all@FreeBSD.ORG Sun Aug 19 16:24:32 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C0BC516A419; Sun, 19 Aug 2007 16:24:32 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [209.31.154.42]) by mx1.freebsd.org (Postfix) with ESMTP id 72C7A13C457; Sun, 19 Aug 2007 16:24:32 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id 0DC644AB3C; Sun, 19 Aug 2007 12:24:32 -0400 (EDT) Date: Sun, 19 Aug 2007 17:24:31 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Kris Moore In-Reply-To: <46C863C5.6090906@comcast.net> Message-ID: <20070819170957.H81759@fledge.watson.org> References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C4FD02.3090708@freebsd.org> <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> <46C7A9A4.5090404@samsco.org> <20070819095302.D66918@fledge.watson.org> <46C863C5.6090906@comcast.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Mailman-Approved-At: Sun, 19 Aug 2007 17:32:54 +0000 Cc: wine-freebsd@hub.org, Scott Long , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, Daniel Eischen , David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 16:24:32 -0000 On Sun, 19 Aug 2007, Kris Moore wrote: > That being said, most of the technical details are a bit over my head, but I > will add my $0.02 to this. Whatever the solution, there needs to be a > working solution in the end. If there's a better, more portable way to do > this, then by all means lets get it done. If nobody can or will write this > solution, then lets not just drop the original patch. A fix is greatly > needed either way, so I hope this is added in the very near future. Let me provide a bit more background for those who are just joining the conversation, as it has been going on since around March. (You can find fragments on the freebsd-threads list, etc). The underlying requirement here is for Wine to be able to suspend threads of the emulation process -- this is not a requirement I have any specific insight into, so can't justify it, but it seems a fairly reasonable thing to want to do. In Linux, suspending threads in a remote process is easy, because threads are processes, so signals can be delivered directly to specific threads in a target process using kill(2). This same functionality is available in Mac OS X via thread/task ports, and possibly in Solaris via procfs (I agree with Dan's reading that the _lwp_kill(2) system call in Solaris doesn't look like it can target remote process threads, but the debugging interfaces certainly can, and Wine is full of debugging interface use). As a more portable solution, sigqueue(2) can be used -- this is a POSIX realtime signaling interface that, among other things, allows a data value to be passed to the receiveing process. This would allow a proxy thread in the emulated process to "receive" the signal and then forward the signal to a specific thread within the same process. However, sigqueue(2) is available only in FreeBSD 7.x, and has been determined to be sufficiently complex to not be MFC'able. This leaves FreeBSD 6.x, which neither implement the richer signalling service, nor direct signal delivery to target threads. An obvious quick solution here is to add a system call to provide equivilent functionality to that in Linux, Mac OS X, Solaris, etc -- allow direct delivery of a signal to a specific target thread in a remote process. thr_kill2() does this in the expectedly straight forward way, but specific to libthr, as only libthr offers a 1:1 threading model in which the kernel is sufficiently aware of threads as to offer a useful way to signal them. You can imagine other schemes for forwarding signals to threads in a remote process that are only marginally more complicated than using sigqueue, such as having a proxy listening on an IPC pipe or the like. I can't really comment on the impact to Wine code of doing this. BTW, Wine already has to know a lot about the internals of operating systems and processes in order to do what it does -- how to lay out address spaces, using the ptrace interfaces to control and manage threads, etc. So I'm not sure I buy that we should expect Wine to conform to portable interfaces, or that portable interfaces should be able to express what Wine needs: it is doing something pretty inherrently non-portable. However, it could be that we could avoid introducing more non-portable interfaces through more Wine rewriting. Robert N M Watson Computer Laboratory University of Cambridge From owner-cvs-all@FreeBSD.ORG Sun Aug 19 17:54:33 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AE41816A417; Sun, 19 Aug 2007 17:54:33 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8815013C458; Sun, 19 Aug 2007 17:54:33 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JHsXKn070615; Sun, 19 Aug 2007 17:54:33 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JHsXrW070614; Sun, 19 Aug 2007 17:54:33 GMT (envelope-from acm) Message-Id: <200708191754.l7JHsXrW070614@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Sun, 19 Aug 2007 17:54: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/emulators/loemu Makefile distinfo pkg-plist ports/emulators/loemu/files patch-setup.py X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Aug 2007 17:54:33 -0000 acm 2007-08-19 17:54:33 UTC FreeBSD ports repository Modified files: emulators/loemu Makefile distinfo pkg-plist emulators/loemu/files patch-setup.py Log: - Update to 0.2.0 Revision Changes Path 1.5 +2 -2 ports/emulators/loemu/Makefile 1.3 +3 -3 ports/emulators/loemu/distinfo 1.3 +8 -31 ports/emulators/loemu/files/patch-setup.py 1.2 +2 -0 ports/emulators/loemu/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Aug 19 17:58:11 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E876516A417; Sun, 19 Aug 2007 17:58:11 +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 B4ED113C491; Sun, 19 Aug 2007 17:58:11 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id A72BF48DAE; Sun, 19 Aug 2007 13:58:10 -0400 (EDT) Date: Sun, 19 Aug 2007 18:58:10 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Scott Long In-Reply-To: <46C86D9A.9050705@samsco.org> Message-ID: <20070819185019.M81759@fledge.watson.org> References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C4FD02.3090708@freebsd.org> <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> <46C7A9A4.5090404@samsco.org> <20070819095302.D66918@fledge.watson.org> <46C863C5.6090906@comcast.net> <46C86D9A.9050705@samsco.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Mailman-Approved-At: Sun, 19 Aug 2007 18:06:05 +0000 Cc: wine-freebsd@hub.org, Kris Moore , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, Daniel Eischen , David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 17:58:12 -0000 On Sun, 19 Aug 2007, Scott Long wrote: > Robert's comparison to Linux is only half-valid. There's really no reason > to hold linux's clone/vfork threads up as a model to emulate via a new > first-class interface into the kernel. If you want to emulate it, compile > your app against the linux-threads package and be done with it. > > The Linux developers are moving beyond that primitive "threads" package > anyways and onto real threads and a complementary API to manage those > threads. So tkill and tgkill are interesting things to look at, not just > here but in the broader need to work with Linux both at a source and a > binary level. I believe that Dan also suggested something along this line > in his discussion about having Solaris-style (and thus linux-style) thread > groups, so I'm not exactly sure who is disagreeing with whom in Robert's > response. Thread groups do seem like a logical next step, but it's > impossible to say at this point whether the syscall API to support them > would at all be served by the syscall that was just added. If it isn't, > then this syscall becomes a 1-off orphan and a long-term liability to both > users and developers. That's what ultimately needs to be avoided. > > So, supporting Wine is definitely a good idea, and there's no doubt a good > solution available. It just makes me nervous when syscalls are added with > such little discussion and commitment. I think the misunderstanding here is in thinking that Wine is an application that can program to the pthreads API and behave in a normal way. Instead, think of it as including its own threads library implementing Windows threading behavior. On the whole, the existing thread calls meet the needs of Wine, and often it can access them via pthreads, but there are times when it needs to *know* how threading works, and in those cases, accessing threads via low-level system call like thr_kill2(2) or via ptrace(2) may be entirely appropriate. Tijl's example of having aligned thread IDs for use between ptrace(2) and the thr_*(2) system calls is a particularly good example of a case where the clean pthreads abstraction (which has no notion of how to interact with debuggers) isn't a good match. We have a plethora of low level threads system calls that applications generally shouldn't touch -- rfork(2), kse_*(2), thr_*(2), umtx_*(2), etc. Last time I checked, Valgrind on FreeBSD did something very similar, relying on low-level umtx(2) system calls. Robert N M Watson Computer Laboratory University of Cambridge From owner-cvs-all@FreeBSD.ORG Sun Aug 19 18:08:18 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 137FA16A417; Sun, 19 Aug 2007 18:08:18 +0000 (UTC) (envelope-from phk@critter.freebsd.dk) Received: from phk.freebsd.dk (phk.freebsd.dk [130.225.244.222]) by mx1.freebsd.org (Postfix) with ESMTP id 8FB5D13C457; Sun, 19 Aug 2007 18:08:17 +0000 (UTC) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (unknown [192.168.61.3]) by phk.freebsd.dk (Postfix) with ESMTP id 5DCC917382; Sun, 19 Aug 2007 18:08:15 +0000 (UTC) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.14.1/8.14.1) with ESMTP id l7JI8BEC085124; Sun, 19 Aug 2007 18:08:11 GMT (envelope-from phk@critter.freebsd.dk) To: Robert Watson From: "Poul-Henning Kamp" In-Reply-To: Your message of "Sun, 19 Aug 2007 18:58:10 +0100." <20070819185019.M81759@fledge.watson.org> Date: Sun, 19 Aug 2007 18:08:11 +0000 Message-ID: <85123.1187546891@critter.freebsd.dk> Sender: phk@critter.freebsd.dk X-Mailman-Approved-At: Sun, 19 Aug 2007 18:15:51 +0000 Cc: wine-freebsd@hub.org, Kris Moore , Scott Long , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, Daniel Eischen , David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 18:08:18 -0000 In message <20070819185019.M81759@fledge.watson.org>, Robert Watson writes: >Tijl's example of having aligned thread IDs for use between ptrace(2) and the >thr_*(2) system calls is a particularly good example of a case where the clean >pthreads abstraction (which has no notion of how to interact with debuggers) Calling "pthreads clean" is an act of spin that I find actionable. "Spartan", "rudimentary" or most precisely: "primitive" all describe pthreads much better than "clean". I say this as an old ass-hole who have done multiprogramming in various environments since 1980 and as somebody who has never been able to fathom how pthreads came to be without even basic development and debugging aids such as, for instance, a pthread_mutex_assert_held() function. I also fully agree that Wine isn't an application, it is an emulation framework for a alien API, and thus any argument based on pthreads, so called, purity is bollocks. If Wine needs this to work and we need Wine to work, then we need this. Remember: "FreeBSD: Tools, not politics" >Last time I checked, Valgrind on FreeBSD did something very >similar, relying on low-level umtx(2) system calls. Actually I'm helping peter on valgrind and I got it to handle a new thread started with thr_new() only yesterday. -- 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 Sun Aug 19 18:19:18 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B881A16A418; Sun, 19 Aug 2007 18:19: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 82A1913C4A3; Sun, 19 Aug 2007 18:19:18 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id 661A54C73C; Sun, 19 Aug 2007 14:19:17 -0400 (EDT) Date: Sun, 19 Aug 2007 19:19:17 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Scott Long In-Reply-To: <20070819185019.M81759@fledge.watson.org> Message-ID: <20070819191731.N81759@fledge.watson.org> References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C4FD02.3090708@freebsd.org> <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> <46C7A9A4.5090404@samsco.org> <20070819095302.D66918@fledge.watson.org> <46C863C5.6090906@comcast.net> <46C86D9A.9050705@samsco.org> <20070819185019.M81759@fledge.watson.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Mailman-Approved-At: Sun, 19 Aug 2007 18:30:51 +0000 Cc: wine-freebsd@hub.org, Kris Moore , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, Daniel Eischen , David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 18:19:18 -0000 On Sun, 19 Aug 2007, Robert Watson wrote: > I think the misunderstanding here is in thinking that Wine is an application > that can program to the pthreads API and behave in a normal way. Instead, > think of it as including its own threads library implementing Windows > threading behavior. On the whole, the existing thread calls meet the needs > of Wine, and often it can access them via pthreads, but there are times when > it needs to *know* how threading works, and in those cases, accessing > threads via low-level system call like thr_kill2(2) or via ptrace(2) may be > entirely appropriate. > > Tijl's example of having aligned thread IDs for use between ptrace(2) and > the thr_*(2) system calls is a particularly good example of a case where the > clean pthreads abstraction (which has no notion of how to interact with > debuggers) isn't a good match. We have a plethora of low level threads > system calls that applications generally shouldn't touch -- rfork(2), > kse_*(2), thr_*(2), umtx_*(2), etc. Last time I checked, Valgrind on > FreeBSD did something very similar, relying on low-level umtx(2) system > calls. Just to follow up on this point: as with the other kse(2), thr(2), umtx(2), etc, interfaces, I think we should heavily discourage programmers from using them -- they are internal interfaces used to implement threading, and not general purpose application programming interfaces. I think adding a libpthread-layer interface for killing threads in other processes would be a mistake for all the reasons that Daniel and others have pointed out. Robert N M Watson Computer Laboratory University of Cambridge From owner-cvs-all@FreeBSD.ORG Sun Aug 19 18:33:27 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E83BD16A418; Sun, 19 Aug 2007 18:33:27 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C24C413C45B; Sun, 19 Aug 2007 18:33:27 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JIXR0g074092; Sun, 19 Aug 2007 18:33:27 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JIXRqQ074091; Sun, 19 Aug 2007 18:33:27 GMT (envelope-from blackend) Message-Id: <200708191833.l7JIXRqQ074091@repoman.freebsd.org> From: Marc Fonvieille Date: Sun, 19 Aug 2007 18:33:27 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/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: Sun, 19 Aug 2007 18:33:28 -0000 blackend 2007-08-19 18:33:27 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/advanced-networking chapter.sgml Log: Add SNMP Monitoring section for the if_bridge(4) bridge implementation. Submitted by: thompsa, syrinx Revision Changes Path 1.399 +85 -0 doc/en_US.ISO8859-1/books/handbook/advanced-networking/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sun Aug 19 18:58:56 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4475616A420; Sun, 19 Aug 2007 18:58:56 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 353E113C47E; Sun, 19 Aug 2007 18:58:56 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JIwuUm075441; Sun, 19 Aug 2007 18:58:56 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JIwtd0075440; Sun, 19 Aug 2007 18:58:55 GMT (envelope-from acm) Message-Id: <200708191858.l7JIwtd0075440@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Sun, 19 Aug 2007 18: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/graphics/py-soya3d Makefile distinfo pkg-plist ports/graphics/py-soya3d/files patch-ode-0.5_Makefile patch-ode-0.5_configurator.c 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: Sun, 19 Aug 2007 18:58:56 -0000 acm 2007-08-19 18:58:55 UTC FreeBSD ports repository Modified files: graphics/py-soya3d Makefile distinfo pkg-plist graphics/py-soya3d/files patch-setup.py Removed files: graphics/py-soya3d/files patch-ode-0.5_Makefile patch-ode-0.5_configurator.c Log: - Update to 0.13.2 - Remove obsolete patch files - Add devel/ode like a dependency Revision Changes Path 1.19 +6 -31 ports/graphics/py-soya3d/Makefile 1.8 +6 -6 ports/graphics/py-soya3d/distinfo 1.3 +0 -28 ports/graphics/py-soya3d/files/patch-ode-0.5_Makefile (dead) 1.2 +0 -11 ports/graphics/py-soya3d/files/patch-ode-0.5_configurator.c (dead) 1.7 +8 -27 ports/graphics/py-soya3d/files/patch-setup.py 1.6 +204 -30 ports/graphics/py-soya3d/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Aug 19 19:31:59 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C487D16A419; Sun, 19 Aug 2007 19:31:59 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9EEE013C469; Sun, 19 Aug 2007 19:31:59 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JJVxYe078733; Sun, 19 Aug 2007 19:31:59 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JJVxFO078732; Sun, 19 Aug 2007 19:31:59 GMT (envelope-from gabor) Message-Id: <200708191931.l7JJVxFO078732@repoman.freebsd.org> From: Gabor Kovesdan Date: Sun, 19 Aug 2007 19:31:59 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/share/sgml commercial.consult.xml commercial.isp.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, 19 Aug 2007 19:31:59 -0000 gabor 2007-08-19 19:31:59 UTC FreeBSD doc repository Modified files: share/sgml commercial.consult.xml commercial.isp.xml Log: - Add FirmbIt as a Consulting and an ISP vendor PR: www/108291 Submitted by: Chad W. Approved by: keramida (mentor) Revision Changes Path 1.33 +14 -2 www/share/sgml/commercial.consult.xml 1.19 +14 -2 www/share/sgml/commercial.isp.xml From owner-cvs-all@FreeBSD.ORG Sun Aug 19 19:36:47 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 72DFB16A417; Sun, 19 Aug 2007 19:36:47 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4DC3613C442; Sun, 19 Aug 2007 19:36:47 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JJalTa079034; Sun, 19 Aug 2007 19:36:47 GMT (envelope-from mav@repoman.freebsd.org) Received: (from mav@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JJalSh079033; Sun, 19 Aug 2007 19:36:47 GMT (envelope-from mav) Message-Id: <200708191936.l7JJalSh079033@repoman.freebsd.org> From: Alexander Motin Date: Sun, 19 Aug 2007 19:36:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/netgraph ng_base.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Aug 2007 19:36:47 -0000 mav 2007-08-19 19:36:47 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netgraph ng_base.c Log: MFC rev. 1.135 Add ng_send_fn() error handeling inside ng_con_nodes(). Without it some errors may left unnoticed and unhandeled that lead to hooks left in half-connected state. Revision Changes Path 1.102.2.11 +5 -2 src/sys/netgraph/ng_base.c From owner-cvs-all@FreeBSD.ORG Sun Aug 19 20:13:20 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 613D716A417; Sun, 19 Aug 2007 20:13:20 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3AA9813C428; Sun, 19 Aug 2007 20:13:20 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JKDKbW082342; Sun, 19 Aug 2007 20:13:20 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JKDKmw082341; Sun, 19 Aug 2007 20:13:20 GMT (envelope-from acm) Message-Id: <200708192013.l7JKDKmw082341@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Sun, 19 Aug 2007 20:13:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-p2p/py-py2play 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, 19 Aug 2007 20:13:20 -0000 acm 2007-08-19 20:13:19 UTC FreeBSD ports repository Modified files: net-p2p/py-py2play Makefile distinfo Log: - Update to 0.1.10 Revision Changes Path 1.8 +1 -1 ports/net-p2p/py-py2play/Makefile 1.4 +3 -3 ports/net-p2p/py-py2play/distinfo From owner-cvs-all@FreeBSD.ORG Sun Aug 19 20:22:14 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1FA3216A46C; Sun, 19 Aug 2007 20:22:14 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id ED19B13C478; Sun, 19 Aug 2007 20:22:13 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JKMDUl082966; Sun, 19 Aug 2007 20:22:13 GMT (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JKMD0w082965; Sun, 19 Aug 2007 20:22:13 GMT (envelope-from glewis) Message-Id: <200708192022.l7JKMD0w082965@repoman.freebsd.org> From: Greg Lewis Date: Sun, 19 Aug 2007 20:22: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/java Makefile ports/java/jdk16-doc 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, 19 Aug 2007 20:22:14 -0000 glewis 2007-08-19 20:22:13 UTC FreeBSD ports repository Modified files: java Makefile Added files: java/jdk16-doc Makefile distinfo pkg-descr Log: . New port which installs the Java SE 6 documentation as provided by Sun. Revision Changes Path 1.187 +1 -0 ports/java/Makefile 1.1 +45 -0 ports/java/jdk16-doc/Makefile (new) 1.1 +3 -0 ports/java/jdk16-doc/distinfo (new) 1.1 +6 -0 ports/java/jdk16-doc/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 19 20:22:50 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 47AAE16A417; Sun, 19 Aug 2007 20:22:50 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2236113C458; Sun, 19 Aug 2007 20:22:50 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JKMoGB083026; Sun, 19 Aug 2007 20:22:50 GMT (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JKMnQl083025; Sun, 19 Aug 2007 20:22:50 GMT (envelope-from glewis) Message-Id: <200708192022.l7JKMnQl083025@repoman.freebsd.org> From: Greg Lewis Date: Sun, 19 Aug 2007 20:22: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: 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, 19 Aug 2007 20:22:50 -0000 glewis 2007-08-19 20:22:49 UTC FreeBSD ports repository Modified files: . modules Log: jdk16-doc -> ports/java/jdk16-doc Revision Changes Path 1.18556 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Aug 19 20:22:51 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E7D2416A528; Sun, 19 Aug 2007 20:22:51 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DA2F513C45B; Sun, 19 Aug 2007 20:22:50 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JKMop0083053; Sun, 19 Aug 2007 20:22:50 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JKMoHl083052; Sun, 19 Aug 2007 20:22:50 GMT (envelope-from acm) Message-Id: <200708192022.l7JKMoHl083052@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Sun, 19 Aug 2007 20: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/games/scourge Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 20:22:52 -0000 acm 2007-08-19 20:22:50 UTC FreeBSD ports repository Modified files: games/scourge Makefile Log: - Add missing dependencies, it fixes problems in configure time Reported by: kris Revision Changes Path 1.16 +2 -2 ports/games/scourge/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 19 20:30:52 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 184F216A41B; Sun, 19 Aug 2007 20:30:52 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E65ED13C461; Sun, 19 Aug 2007 20:30:51 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JKUpe6090967; Sun, 19 Aug 2007 20:30:51 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JKUpE3090966; Sun, 19 Aug 2007 20:30:51 GMT (envelope-from acm) Message-Id: <200708192030.l7JKUpE3090966@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Sun, 19 Aug 2007 20:30: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/emulators/yabause 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, 19 Aug 2007 20:30:52 -0000 acm 2007-08-19 20:30:51 UTC FreeBSD ports repository Modified files: emulators/yabause Makefile distinfo pkg-plist Log: - Update to 0.8.5 Revision Changes Path 1.9 +1 -3 ports/emulators/yabause/Makefile 1.5 +3 -3 ports/emulators/yabause/distinfo 1.3 +0 -1 ports/emulators/yabause/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Aug 19 20:34:15 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 042EA16A46C; Sun, 19 Aug 2007 20:34:15 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D2A3313C458; Sun, 19 Aug 2007 20:34:14 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JKYEaj091322; Sun, 19 Aug 2007 20:34:14 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JKYEC0091321; Sun, 19 Aug 2007 20:34:14 GMT (envelope-from njl) Message-Id: <200708192034.l7JKYEC0091321@repoman.freebsd.org> From: Nate Lawson Date: Sun, 19 Aug 2007 20:34: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 kern_cpu.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Aug 2007 20:34:15 -0000 njl 2007-08-19 20:34:14 UTC FreeBSD src repository Modified files: sys/kern kern_cpu.c Log: Use a different loop variable for the inner loop. This previous reuse could have caused a hang, but we got lucky with the available multi-CPU states on actual hardware. Submitted by: Bjorn Koenig Approved by: re MFC after: 3 days Revision Changes Path 1.26 +4 -4 src/sys/kern/kern_cpu.c From owner-cvs-all@FreeBSD.ORG Sun Aug 19 20:53:51 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B23116A418; Sun, 19 Aug 2007 20:53:51 +0000 (UTC) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 552C313C458; Sun, 19 Aug 2007 20:53:51 +0000 (UTC) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7JKrp87001208; Sun, 19 Aug 2007 20:53:51 GMT (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7JKrpqV001207; Sun, 19 Aug 2007 20:53:51 GMT (envelope-from ache) Message-Id: <200708192053.l7JKrpqV001207@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Sun, 19 Aug 2007 20:53:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/gnu/lib/libdialog dialog.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, 19 Aug 2007 20:53:51 -0000 ache 2007-08-19 20:53:51 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) gnu/lib/libdialog dialog.h Log: Increase MAX_LEN to 4096 It fix core dump with latest ghostscript-gpl port (too many items) Revision Changes Path 1.22.14.1 +1 -1 src/gnu/lib/libdialog/dialog.h From owner-cvs-all@FreeBSD.ORG Sun Aug 19 21:26:11 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7071F16A418; Sun, 19 Aug 2007 21:26:11 +0000 (UTC) (envelope-from erwin@mail.droso.net) Received: from mail.droso.net (koala.ipv6.droso.net [IPv6:2001:6c8:6:0:206:5bff:fef8:267d]) by mx1.freebsd.org (Postfix) with ESMTP id EF86213C45B; Sun, 19 Aug 2007 21:26:10 +0000 (UTC) (envelope-from erwin@mail.droso.net) Received: by mail.droso.net (Postfix, from userid 1001) id 70E461CC2B; Sun, 19 Aug 2007 23:26:09 +0200 (CEST) Date: Sun, 19 Aug 2007 23:26:09 +0200 From: Erwin Lansing To: Xin LI Message-ID: <20070819212609.GG93965@droso.net> Mail-Followup-To: Xin LI , Rong-En Fan , ports-committers@FreeBSD.ORG, cvs-ports@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <200708190339.l7J3dU4Q052009@repoman.freebsd.org> <46C7CA6E.100@delphij.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="+9kyDs7IugQ0lHaC" Content-Disposition: inline In-Reply-To: <46C7CA6E.100@delphij.net> X-Operating-System: FreeBSD/i386 6.2-STABLE User-Agent: Mutt/1.5.16 (2007-06-09) Cc: cvs-ports@FreeBSD.ORG, cvs-all@FreeBSD.ORG, Rong-En Fan , ports-committers@FreeBSD.ORG Subject: Re: cvs commit: ports MOVED ports/chinese Makefile ports/chinese/CJK Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-plist ports/chinese/CJK/files patch-Makefile patch-texinput-Bg5-c00bsmi.fd patch-texinput-GB-c10gbsn.fd patch-texinput-GBBg5-fdfiles patch-texinput-GBBg5-type1fdfiles ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 21:26:11 -0000 --+9kyDs7IugQ0lHaC Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Aug 19, 2007 at 12:43:26PM +0800, Xin LI wrote: > Rong-En Fan wrote: >> rafan 2007-08-19 03:39:30 UTC >> FreeBSD ports repository >> Modified files: >> . MOVED chinese Makefile Remov= ed=20 >> files: >> chinese/CJK Makefile distinfo pkg-deinstall pkg-descr = =20 >> pkg-install pkg-plist chinese/CJK/files =20 >> patch-Makefile patch-texinput-Bg5-c00bsmi.fd = =20 >> patch-texinput-GB-c10gbsn.fd = =20 >> patch-texinput-GBBg5-fdfiles =20 >> patch-texinput-GBBg5-type1fdfiles =20 >> patch-texinput-UTF8-arphicfdfiles =20 >> patch-utils-Makefiles chinese/CJK/scripts fddiff.sh installt1enc.sh= =20 >> installtfm.sh pre-build Log: >> - Finish move chinese/CJK to print/latex-cjk >=20 > Er, what about the dependencies? Feel free to fix chinese/docproj :-) >=20 And modules as well please. -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 --+9kyDs7IugQ0lHaC Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQFGyLVxqy9aWxUlaZARAtJDAJ4252pXn6SEe0zV7Az4Dc6OD/tzFQCgtm/0 PYP/r6F9JjhhiPE0JtEGtQA= =CoSP -----END PGP SIGNATURE----- --+9kyDs7IugQ0lHaC-- From owner-cvs-all@FreeBSD.ORG Sun Aug 19 21:39:36 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 017EB16A41B for ; Sun, 19 Aug 2007 21:39:36 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx22.fluidhosting.com [204.14.89.5]) by mx1.freebsd.org (Postfix) with SMTP id 980CE13C46E for ; Sun, 19 Aug 2007 21:39:35 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: (qmail 22119 invoked by uid 399); 19 Aug 2007 21:39:35 -0000 Received: from localhost (HELO slave.dougb.net) (dougb@dougbarton.us@127.0.0.1) by localhost with ESMTP; 19 Aug 2007 21:39:35 -0000 X-Originating-IP: 127.0.0.1 Date: Sun, 19 Aug 2007 14:39:33 -0700 (PDT) From: Doug Barton To: cvs-src@freebsd.org, cvs-all@freebsd.org Message-ID: X-message-flag: Outlook -- Not just for spreading viruses anymore! X-OpenPGP-Key-ID: 0xD5B2F0FB Organization: http://www.FreeBSD.org/ MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=us-ascii Cc: Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys (fwd) X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 21:39:36 -0000 On Sun, 19 Aug 2007, Robert Watson wrote: > The underlying requirement here is for Wine to be able to suspend threads of > the emulation process -- [ snip ] > As a more portable solution, sigqueue(2) can be used -- this is a POSIX > realtime signaling interface that, among other things, allows a data value to > be passed to the receiveing process. This would allow a proxy thread in the > emulated process to "receive" the signal and then forward the signal to a > specific thread within the same process. However, sigqueue(2) is available > only in FreeBSD 7.x, and has been determined to be sufficiently complex to > not be MFC'able. Given that Kris Moore has stated in this thread that he's not concerned (on behalf of pc-bsd) if this functionality doesn't get backported to RELENG_6, I'd be curious to hear how hard it would be to implement this same functionality with sigqueue(2). FWIW, I'm _all_ for improving our ability to run Wine (and any other functionality that will help us be a better desktop OS). If we can get Wine to the point where it's useful and reliable for day to day stuff, I'll be one of the people running it day to day myself. Doug -- This .signature sanitized for your protection From owner-cvs-all@FreeBSD.ORG Sun Aug 19 21:37:22 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9DBBD16A41B for ; Sun, 19 Aug 2007 21:37:22 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx22.fluidhosting.com [204.14.89.5]) by mx1.freebsd.org (Postfix) with SMTP id 363F113C48D for ; Sun, 19 Aug 2007 21:37:22 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: (qmail 19999 invoked by uid 399); 19 Aug 2007 21:37:19 -0000 Received: from localhost (HELO slave.dougb.net) (dougb@dougbarton.us@127.0.0.1) by localhost with ESMTP; 19 Aug 2007 21:37:19 -0000 X-Originating-IP: 127.0.0.1 Date: Sun, 19 Aug 2007 14:37:16 -0700 (PDT) From: Doug Barton To: Robert Watson In-Reply-To: <20070819170957.H81759@fledge.watson.org> Message-ID: References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C4FD02.3090708@freebsd.org> <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> <46C7A9A4.5090404@samsco.org> <20070819095302.D66918@fledge.watson.org> <46C863C5.6090906@comcast.net> <20070819170957.H81759@fledge.watson.org> X-message-flag: Outlook -- Not just for spreading viruses anymore! X-OpenPGP-Key-ID: 0xD5B2F0FB Organization: http://www.FreeBSD.org/ MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=us-ascii; format=flowed X-Mailman-Approved-At: Sun, 19 Aug 2007 21:56:04 +0000 Cc: wine-freebsd@hub.org, Kris Moore , Scott Long , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, Daniel Eischen , David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Aug 2007 21:37:22 -0000 On Sun, 19 Aug 2007, Robert Watson wrote: > The underlying requirement here is for Wine to be able to suspend threads of > the emulation process -- [ snip ] > As a more portable solution, sigqueue(2) can be used -- this is a POSIX > realtime signaling interface that, among other things, allows a data value to > be passed to the receiveing process. This would allow a proxy thread in the > emulated process to "receive" the signal and then forward the signal to a > specific thread within the same process. However, sigqueue(2) is available > only in FreeBSD 7.x, and has been determined to be sufficiently complex to > not be MFC'able. Given that Kris Moore has stated in this thread that he's not concerned (on behalf of pc-bsd) if this functionality doesn't get backported to RELENG_6, I'd be curious to hear how hard it would be to implement this same functionality with sigqueue(2). FWIW, I'm _all_ for improving our ability to run Wine (and any other functionality that will help us be a better desktop OS). If we can get Wine to the point where it's useful and reliable for day to day stuff, I'll be one of the people running it day to day myself. Doug -- This .signature sanitized for your protection From owner-cvs-all@FreeBSD.ORG Sun Aug 19 23:41:51 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E33CA16A419; Sun, 19 Aug 2007 23:41:51 +0000 (UTC) (envelope-from bmah@freebsd.org) Received: from a.mail.sonic.net (a.mail.sonic.net [64.142.16.245]) by mx1.freebsd.org (Postfix) with ESMTP id A83CC13C45E; Sun, 19 Aug 2007 23:41:51 +0000 (UTC) (envelope-from bmah@freebsd.org) Received: from bruce-a-mahs-computer.local (hornet.kitchenlab.org [64.142.31.105]) (authenticated bits=0) by a.mail.sonic.net (8.13.8.Beta0-Sonic/8.13.7) with ESMTP id l7JNfm88007500 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 19 Aug 2007 16:41:51 -0700 Message-ID: <46C8D535.1070503@freebsd.org> Date: Sun, 19 Aug 2007 16:41:41 -0700 From: "Bruce A. Mah" User-Agent: Thunderbird 2.0.0.6 (Macintosh/20070728) MIME-Version: 1.0 To: Ben Kaduk References: <200708182312.l7INCNZg015933@repoman.freebsd.org> <47d0403c0708181654o5b051939xa03cf920005d7201@mail.gmail.com> In-Reply-To: <47d0403c0708181654o5b051939xa03cf920005d7201@mail.gmail.com> X-Enigmail-Version: 0.95.3 OpenPGP: id=5ba052c3 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig14B6F36B9BB4DAE76CDD7C2E" Cc: doc-committers@freebsd.org, cvs-doc@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/books/handbook/introduction 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, 19 Aug 2007 23:41:52 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig14B6F36B9BB4DAE76CDD7C2E Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable If memory serves me right, Ben Kaduk wrote: > On 8/18/07, Bruce A. Mah wrote: >> bmah 2007-08-18 23:12:23 UTC >> >> FreeBSD doc repository >> >> Modified files: >> en_US.ISO8859-1/books/handbook/introduction chapter.sgml >> Log: >=20 >> Mention IPsec and IPv6 among the networking features. >> >> @@ -92,7 +92,7 @@ >> >> Strong TCP/IP networking with >> support for industry standards such as SCTP, DHCP, NFS, >> - NIS, PPP, and SLIP. This means that your FreeBSD machine can >> + NIS, PPP, SLIP, IPsec, and IPv6. This means that your FreeBSD > machine can >> interoperate easily with other systems as well as act as an >> enterprise server, providing vital functions such as NFS >> (remote file access) and email services or putting your >=20 > Hmm. . .perhaps we can drop SLIP from this list? I will not suggest > other reordering because that's too much of a bikeshed, but I remember > submitting a patch a couple months ago that de-emphasized SLIP (the > old version made it look like we claimed SLIP was new/modern). Hi Ben-- I saw your patch on doc@ (well, second-hand), and some other private conversation regarding the patch was actually what motivated me to be looking at this file in the first place. As far as I can see, the rest of the text (just before my change above) is the same as the patch you submitted, modulo whitespace changes. I don't have a strong opinion about the presence or absence of SLIP in the list; it *is* an industry standard, although I admit it's far from the top of my mental list of FreeBSD networking features. If someone else wants to nuke it, it's fine with me; otherwise I'll do it whenever I touch this file next. Thanks! Bruce. --------------enig14B6F36B9BB4DAE76CDD7C2E Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFGyNU52MoxcVugUsMRAt3JAJ9dsB1RjBIzVUUU2HwCMNh5JVm1hACeI7NM 1z16GY63w9VcoRetob4BgC4= =uIh1 -----END PGP SIGNATURE----- --------------enig14B6F36B9BB4DAE76CDD7C2E-- From owner-cvs-all@FreeBSD.ORG Mon Aug 20 00:29:51 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E24EE16A417; Mon, 20 Aug 2007 00:29:51 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BBEA213C467; Mon, 20 Aug 2007 00:29:51 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K0TpEU018526; Mon, 20 Aug 2007 00:29:51 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K0Tpta018525; Mon, 20 Aug 2007 00:29:51 GMT (envelope-from rafan) Message-Id: <200708200029.l7K0Tpta018525@repoman.freebsd.org> From: Rong-En Fan Date: Mon, 20 Aug 2007 00:29:51 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: 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, 20 Aug 2007 00:29:52 -0000 rafan 2007-08-20 00:29:51 UTC FreeBSD ports repository Modified files: . modules Log: - Really finish chinese/CJK -> print/latex-cjk move Reminded by: erwin Revision Changes Path 1.18557 +1 -1 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Aug 20 00:30:29 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F0AED16A418; Mon, 20 Aug 2007 00:30:29 +0000 (UTC) (envelope-from rafan@svm.csie.ntu.edu.tw) Received: from svm.csie.ntu.edu.tw (svm.csie.ntu.edu.tw [140.112.90.75]) by mx1.freebsd.org (Postfix) with ESMTP id 899CA13C45D; Mon, 20 Aug 2007 00:30:29 +0000 (UTC) (envelope-from rafan@svm.csie.ntu.edu.tw) Received: from svm.csie.ntu.edu.tw (localhost [127.0.0.1]) by svm.csie.ntu.edu.tw (8.14.1/8.14.1) with ESMTP id l7K0UNNT053166; Mon, 20 Aug 2007 08:30:23 +0800 (CST) (envelope-from rafan@svm.csie.ntu.edu.tw) Received: (from rafan@localhost) by svm.csie.ntu.edu.tw (8.14.1/8.14.1/Submit) id l7K0UN0q098703; Mon, 20 Aug 2007 08:30:23 +0800 (CST) (envelope-from rafan) Date: Mon, 20 Aug 2007 08:30:23 +0800 From: Rong-En Fan To: Xin LI , Rong-En Fan , ports-committers@FreeBSD.ORG, cvs-ports@FreeBSD.ORG, cvs-all@FreeBSD.ORG Message-ID: <20070820003023.GA90654@svm.csie.ntu.edu.tw> References: <200708190339.l7J3dU4Q052009@repoman.freebsd.org> <46C7CA6E.100@delphij.net> <20070819212609.GG93965@droso.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070819212609.GG93965@droso.net> User-Agent: Mutt/1.5.16 (2007-06-09) Cc: Subject: Re: cvs commit: ports MOVED ports/chinese Makefile ports/chinese/CJK Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-plist ports/chinese/CJK/files patch-Makefile patch-texinput-Bg5-c00bsmi.fd patch-texinput-GB-c10gbsn.fd patch-texinput-GBBg5-fdfiles patch-texinput-GBBg5-type1fdfiles ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 00:30:30 -0000 On Sun, Aug 19, 2007 at 11:26:09PM +0200, Erwin Lansing wrote: > On Sun, Aug 19, 2007 at 12:43:26PM +0800, Xin LI wrote: > > Rong-En Fan wrote: > >> rafan 2007-08-19 03:39:30 UTC > >> FreeBSD ports repository > >> Modified files: > >> . MOVED chinese Makefile Removed > >> files: > >> chinese/CJK Makefile distinfo pkg-deinstall pkg-descr > >> pkg-install pkg-plist chinese/CJK/files > >> patch-Makefile patch-texinput-Bg5-c00bsmi.fd > >> patch-texinput-GB-c10gbsn.fd > >> patch-texinput-GBBg5-fdfiles > >> patch-texinput-GBBg5-type1fdfiles > >> patch-texinput-UTF8-arphicfdfiles > >> patch-utils-Makefiles chinese/CJK/scripts fddiff.sh installt1enc.sh > >> installtfm.sh pre-build Log: > >> - Finish move chinese/CJK to print/latex-cjk > > > > Er, what about the dependencies? Feel free to fix chinese/docproj :-) > > > And modules as well please. Thanks for reminding me. It should be fixed by now. > > -erwin > > -- > 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 From owner-cvs-all@FreeBSD.ORG Mon Aug 20 01:07:19 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5BF4516A47B; Mon, 20 Aug 2007 01:07:19 +0000 (UTC) (envelope-from sumikawa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3504C13C478; Mon, 20 Aug 2007 01:07:19 +0000 (UTC) (envelope-from sumikawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K17J7N031240; Mon, 20 Aug 2007 01:07:19 GMT (envelope-from sumikawa@repoman.freebsd.org) Received: (from sumikawa@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K17J3a031239; Mon, 20 Aug 2007 01:07:19 GMT (envelope-from sumikawa) Message-Id: <200708200107.l7K17J3a031239@repoman.freebsd.org> From: Munechika SUMIKAWA Date: Mon, 20 Aug 2007 01: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/security/racoon2 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 01:07:19 -0000 sumikawa 2007-08-20 01:07:18 UTC FreeBSD ports repository Modified files: security/racoon2 Makefile Log: Revert removing USE_AUTOTOOLS. Revision Changes Path 1.51 +1 -0 ports/security/racoon2/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 20 01:59:40 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8579816A417; Mon, 20 Aug 2007 01:59:40 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5E1EF13C46C; Mon, 20 Aug 2007 01:59:40 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K1xeVK034259; Mon, 20 Aug 2007 01:59:40 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K1xeMW034258; Mon, 20 Aug 2007 01:59:40 GMT (envelope-from clsung) Message-Id: <200708200159.l7K1xeMW034258@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 20 Aug 2007 01:59: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-Params-Classify 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, 20 Aug 2007 01:59:40 -0000 clsung 2007-08-20 01:59:39 UTC FreeBSD ports repository Modified files: devel/p5-Params-Classify Makefile distinfo Log: - Update to 0.004 Revision Changes Path 1.5 +3 -10 ports/devel/p5-Params-Classify/Makefile 1.4 +3 -3 ports/devel/p5-Params-Classify/distinfo From owner-cvs-all@FreeBSD.ORG Mon Aug 20 02:31:07 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9243916A41A; Mon, 20 Aug 2007 02:31:07 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6A9D313C465; Mon, 20 Aug 2007 02:31:07 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K2V79n037515; Mon, 20 Aug 2007 02:31:07 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K2V7DY037514; Mon, 20 Aug 2007 02:31:07 GMT (envelope-from clsung) Message-Id: <200708200231.l7K2V7DY037514@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 20 Aug 2007 02:31: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/www/p5-WWW-Myspace 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, 20 Aug 2007 02:31:07 -0000 clsung 2007-08-20 02:31:07 UTC FreeBSD ports repository Modified files: www/p5-WWW-Myspace Makefile distinfo Log: - Update to 0.70 Revision Changes Path 1.17 +1 -1 ports/www/p5-WWW-Myspace/Makefile 1.17 +3 -3 ports/www/p5-WWW-Myspace/distinfo From owner-cvs-all@FreeBSD.ORG Mon Aug 20 03:41:00 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AAF1216A417; Mon, 20 Aug 2007 03:41:00 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 82BD913C457; Mon, 20 Aug 2007 03:41:00 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K3f0Kb042990; Mon, 20 Aug 2007 03:41:00 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K3f0Tk042986; Mon, 20 Aug 2007 03:41:00 GMT (envelope-from clsung) Message-Id: <200708200341.l7K3f0Tk042986@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 20 Aug 2007 03: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: ports/net/p5-Net-Amazon-S3 Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 03:41:00 -0000 clsung 2007-08-20 03:41:00 UTC FreeBSD ports repository Modified files: net/p5-Net-Amazon-S3 Makefile distinfo Log: - Update to 0.39 Revision Changes Path 1.4 +3 -3 ports/net/p5-Net-Amazon-S3/Makefile 1.4 +3 -3 ports/net/p5-Net-Amazon-S3/distinfo From owner-cvs-all@FreeBSD.ORG Mon Aug 20 05:15:57 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EDA1116A46C; Mon, 20 Aug 2007 05:15:57 +0000 (UTC) (envelope-from matusita@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BD94713C459; Mon, 20 Aug 2007 05:15:57 +0000 (UTC) (envelope-from matusita@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K5Fv6Y059647; Mon, 20 Aug 2007 05:15:57 GMT (envelope-from matusita@repoman.freebsd.org) Received: (from matusita@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K5FvSh059646; Mon, 20 Aug 2007 05:15:57 GMT (envelope-from matusita) Message-Id: <200708200515.l7K5FvSh059646@repoman.freebsd.org> From: Makoto Matsushita Date: Mon, 20 Aug 2007 05:15:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/irc/irchat-jp Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 05:15:58 -0000 matusita 2007-08-20 05:15:57 UTC FreeBSD ports repository Modified files: irc/irchat-jp Makefile Log: Since there are so many "cannot fetch distfiles" warning from krisbot, I'd like to have a copy of tgzball to local-distfiles. Just a "where-to-fetch" fix, no bump. Revision Changes Path 1.2 +4 -2 ports/irc/irchat-jp/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 20 05:28:29 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7488E16A420; Mon, 20 Aug 2007 05:28:29 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 60F8213C481; Mon, 20 Aug 2007 05:28:29 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K5ST9b060378; Mon, 20 Aug 2007 05:28:29 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K5STtJ060377; Mon, 20 Aug 2007 05:28:29 GMT (envelope-from delphij) Message-Id: <200708200528.l7K5STtJ060377@repoman.freebsd.org> From: Xin LI Date: Mon, 20 Aug 2007 05:28:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/kdesvn Makefile distinfo pkg-descr pkg-plist ports/devel/kdesvn/files patch-src-commandline_part.cpp patch-src-svnfrontend-importdir_logmsg.cpp patch-src-svnqt-dirent.cpp patch-src-svnqt-log_entry.cpp patch-src-svnqt-wc.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 05:28:29 -0000 delphij 2007-08-20 05:28:29 UTC FreeBSD ports repository Modified files: devel/kdesvn Makefile distinfo pkg-descr pkg-plist Removed files: devel/kdesvn/files patch-src-commandline_part.cpp patch-src-svnfrontend-importdir_logmsg.cpp patch-src-svnqt-dirent.cpp patch-src-svnqt-log_entry.cpp patch-src-svnqt-wc.cpp Log: Update to 0.13.0 PR: ports/115415 Submitted by: maintainer Revision Changes Path 1.20 +4 -4 ports/devel/kdesvn/Makefile 1.12 +3 -3 ports/devel/kdesvn/distinfo 1.2 +0 -11 ports/devel/kdesvn/files/patch-src-commandline_part.cpp (dead) 1.2 +0 -11 ports/devel/kdesvn/files/patch-src-svnfrontend-importdir_logmsg.cpp (dead) 1.3 +0 -11 ports/devel/kdesvn/files/patch-src-svnqt-dirent.cpp (dead) 1.3 +0 -13 ports/devel/kdesvn/files/patch-src-svnqt-log_entry.cpp (dead) 1.4 +0 -11 ports/devel/kdesvn/files/patch-src-svnqt-wc.cpp (dead) 1.2 +5 -5 ports/devel/kdesvn/pkg-descr 1.13 +1 -3 ports/devel/kdesvn/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 20 05:35:29 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ED66E16A418; Mon, 20 Aug 2007 05:35:29 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DC08C13C468; Mon, 20 Aug 2007 05:35:29 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K5ZTsA060971; Mon, 20 Aug 2007 05:35:29 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K5ZTeA060970; Mon, 20 Aug 2007 05:35:29 GMT (envelope-from delphij) Message-Id: <200708200535.l7K5ZTeA060970@repoman.freebsd.org> From: Xin LI Date: Mon, 20 Aug 2007 05:35:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/kcheckgmail Makefile distinfo pkg-descr pkg-plist ports/mail/kcheckgmail/files patch-admin__detect-autoconf.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: Mon, 20 Aug 2007 05:35:30 -0000 delphij 2007-08-20 05:35:29 UTC FreeBSD ports repository Modified files: mail/kcheckgmail Makefile distinfo pkg-descr pkg-plist Removed files: mail/kcheckgmail/files patch-admin__detect-autoconf.sh Log: Update to 0.5.7. PR: ports/115422 Submitted by: maintainer Revision Changes Path 1.2 +10 -10 ports/mail/kcheckgmail/Makefile 1.2 +3 -3 ports/mail/kcheckgmail/distinfo 1.2 +0 -19 ports/mail/kcheckgmail/files/patch-admin__detect-autoconf.sh (dead) 1.2 +5 -3 ports/mail/kcheckgmail/pkg-descr 1.3 +6 -4 ports/mail/kcheckgmail/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 20 06:28:27 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9DBB016A41A; Mon, 20 Aug 2007 06:28:27 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 74B3113C428; Mon, 20 Aug 2007 06:28:27 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K6SRqO065236; Mon, 20 Aug 2007 06:28:27 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K6SRwL065235; Mon, 20 Aug 2007 06:28:27 GMT (envelope-from njl) Message-Id: <200708200628.l7K6SRwL065235@repoman.freebsd.org> From: Nate Lawson Date: Mon, 20 Aug 2007 06:28: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 kern_cpu.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 06:28:27 -0000 njl 2007-08-20 06:28:26 UTC FreeBSD src repository Modified files: sys/kern kern_cpu.c Log: Always call sched_bind(), even if on the CPU in question. It is wrong to check if we're already on that cpu and skip the bind since the thread could be migrated off in the meantime. Suggested by: jeff Approved by: re Revision Changes Path 1.27 +15 -25 src/sys/kern/kern_cpu.c From owner-cvs-all@FreeBSD.ORG Mon Aug 20 06:34:20 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E892F16A420; Mon, 20 Aug 2007 06:34:20 +0000 (UTC) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C022D13C468; Mon, 20 Aug 2007 06:34:20 +0000 (UTC) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K6YKID065715; Mon, 20 Aug 2007 06:34:20 GMT (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K6YKsY065714; Mon, 20 Aug 2007 06:34:20 GMT (envelope-from jeff) Message-Id: <200708200634.l7K6YKsY065714@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 20 Aug 2007 06:34: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 sched_ule.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 06:34:21 -0000 jeff 2007-08-20 06:34:20 UTC FreeBSD src repository Modified files: sys/kern sched_ule.c Log: - Set steal_thresh to log2(ncpus). This improves idle-time load balancing on 2cpu machines by reducing it to 1 by default. This improves loaded operation on 8cpu machines by increasing it to 3 where the extra idle time is not as critical. Approved by: re Revision Changes Path 1.205 +6 -0 src/sys/kern/sched_ule.c From owner-cvs-all@FreeBSD.ORG Mon Aug 20 06:36:12 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9D99116A418; Mon, 20 Aug 2007 06:36:12 +0000 (UTC) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7496A13C4D1; Mon, 20 Aug 2007 06:36:12 +0000 (UTC) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K6aC9b065821; Mon, 20 Aug 2007 06:36:12 GMT (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K6aCCE065820; Mon, 20 Aug 2007 06:36:12 GMT (envelope-from jeff) Message-Id: <200708200636.l7K6aCCE065820@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 20 Aug 2007 06:36: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/kern kern_switch.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 06:36:12 -0000 jeff 2007-08-20 06:36:12 UTC FreeBSD src repository Modified files: sys/kern kern_switch.c Log: - Improve runq_findbit_from() which is used by ULE's circular queue. Mask of the bits we want to ignore on the first pass rather than doing a linear scan. This puts us within a few instructions of the cost of runq_findbit() and removes this function from the top of profiling output for context switch heavy workloads. Approved by: re Revision Changes Path 1.134 +22 -32 src/sys/kern/kern_switch.c From owner-cvs-all@FreeBSD.ORG Mon Aug 20 06:53:00 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C13C16A527; Mon, 20 Aug 2007 06:53:00 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2F82013C45B; Mon, 20 Aug 2007 06:53:00 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K6qx9H066949; Mon, 20 Aug 2007 06:52:59 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K6qxw3066948; Mon, 20 Aug 2007 06:52:59 GMT (envelope-from novel) Message-Id: <200708200652.l7K6qxw3066948@repoman.freebsd.org> From: Roman Bogorodskiy Date: Mon, 20 Aug 2007 06:52:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/conky Makefile distinfo ports/sysutils/conky/files patch-src-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: Mon, 20 Aug 2007 06:53:00 -0000 novel 2007-08-20 06:52:59 UTC FreeBSD ports repository Modified files: sysutils/conky Makefile distinfo sysutils/conky/files patch-src-freebsd.c Log: Update to 1.4.6. Revision Changes Path 1.24 +1 -2 ports/sysutils/conky/Makefile 1.13 +3 -3 ports/sysutils/conky/distinfo 1.11 +15 -9 ports/sysutils/conky/files/patch-src-freebsd.c From owner-cvs-all@FreeBSD.ORG Mon Aug 20 07:02:28 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A955E16A41B; Mon, 20 Aug 2007 07:02:28 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 80F0E13C480; Mon, 20 Aug 2007 07:02:28 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K72S5A067803; Mon, 20 Aug 2007 07:02:28 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K72SIe067802; Mon, 20 Aug 2007 07:02:28 GMT (envelope-from acm) Message-Id: <200708200702.l7K72SIe067802@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Mon, 20 Aug 2007 07:02: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/x11-toolkits/irrlicht Makefile distinfo pkg-plist ports/x11-toolkits/irrlicht/files patch-include_IrrCompileConfig.h patch-source-Irrlicht_COSOperator.cpp patch-source-Irrlicht_Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 07:02:28 -0000 acm 2007-08-20 07:02:28 UTC FreeBSD ports repository Modified files: x11-toolkits/irrlicht Makefile distinfo pkg-plist x11-toolkits/irrlicht/files patch-include_IrrCompileConfig.h patch-source-Irrlicht_COSOperator.cpp patch-source-Irrlicht_Makefile Log: - Update to 1.3.1 Revision Changes Path 1.12 +1 -2 ports/x11-toolkits/irrlicht/Makefile 1.6 +3 -3 ports/x11-toolkits/irrlicht/distinfo 1.3 +8 -8 ports/x11-toolkits/irrlicht/files/patch-include_IrrCompileConfig.h 1.2 +15 -11 ports/x11-toolkits/irrlicht/files/patch-source-Irrlicht_COSOperator.cpp 1.3 +13 -10 ports/x11-toolkits/irrlicht/files/patch-source-Irrlicht_Makefile 1.5 +4 -1 ports/x11-toolkits/irrlicht/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 20 07:12:47 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8CBC916A418; Mon, 20 Aug 2007 07:12:47 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 63E1313C45B; Mon, 20 Aug 2007 07:12:47 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K7Clh6069843; Mon, 20 Aug 2007 07:12:47 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K7Clk4069842; Mon, 20 Aug 2007 07:12:47 GMT (envelope-from acm) Message-Id: <200708200712.l7K7Clk4069842@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Mon, 20 Aug 2007 07:12: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/kbackup 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, 20 Aug 2007 07:12:47 -0000 acm 2007-08-20 07:12:47 UTC FreeBSD ports repository Modified files: archivers/kbackup Makefile distinfo pkg-plist Log: - Update to 0.5.2 Revision Changes Path 1.6 +1 -2 ports/archivers/kbackup/Makefile 1.3 +3 -3 ports/archivers/kbackup/distinfo 1.2 +2 -0 ports/archivers/kbackup/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 20 07:18:29 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BB1AB16A41B; Mon, 20 Aug 2007 07:18:29 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A92CC13C4CE; Mon, 20 Aug 2007 07:18:29 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K7ITEx070555; Mon, 20 Aug 2007 07:18:29 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K7ITSr070553; Mon, 20 Aug 2007 07:18:29 GMT (envelope-from acm) Message-Id: <200708200718.l7K7ITSr070553@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Mon, 20 Aug 2007 07:18: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/games/el Makefile distinfo ports/games/el/files patch-Makefile.bsdg ports/games/el-data 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, 20 Aug 2007 07:18:29 -0000 acm 2007-08-20 07:18:29 UTC FreeBSD ports repository Modified files: games/el Makefile distinfo games/el/files patch-Makefile.bsdg games/el-data Makefile distinfo Removed files: games/el-data pkg-plist Log: - Update to 140 - Remove el-data/pkg-plist file - Remove BROKEN - Add new el source code mastersite Revision Changes Path 1.6 +15 -15 ports/games/el-data/Makefile 1.5 +3 -6 ports/games/el-data/distinfo 1.5 +0 -3374 ports/games/el-data/pkg-plist (dead) 1.17 +4 -11 ports/games/el/Makefile 1.7 +3 -3 ports/games/el/distinfo 1.4 +18 -9 ports/games/el/files/patch-Makefile.bsdg From owner-cvs-all@FreeBSD.ORG Mon Aug 20 07:38:05 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EBC8A16A418; Mon, 20 Aug 2007 07:38:05 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C217A13C459; Mon, 20 Aug 2007 07:38:05 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K7c5TQ073131; Mon, 20 Aug 2007 07:38:05 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K7c54v073130; Mon, 20 Aug 2007 07:38:05 GMT (envelope-from rafan) Message-Id: <200708200738.l7K7c54v073130@repoman.freebsd.org> From: Rong-En Fan Date: Mon, 20 Aug 2007 07:38:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 07:38:06 -0000 rafan 2007-08-20 07:38:05 UTC FreeBSD ports repository Modified files: . modules Log: - Add pidgin-latex --> ports/net-im/pidgin-latex Reminded by: erwin Pointy hat to: rafan Revision Changes Path 1.18558 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Aug 20 07:38:41 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E497F16A420; Mon, 20 Aug 2007 07:38:41 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BC4FA13C465; Mon, 20 Aug 2007 07:38:41 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K7cfFa073161; Mon, 20 Aug 2007 07:38:41 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K7cfAA073160; Mon, 20 Aug 2007 07:38:41 GMT (envelope-from chinsan) Message-Id: <200708200738.l7K7cfAA073160@repoman.freebsd.org> From: Chin-San Huang Date: Mon, 20 Aug 2007 07:38:41 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: 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: Mon, 20 Aug 2007 07:38:42 -0000 chinsan 2007-08-20 07:38:41 UTC FreeBSD doc repository Modified files: . access Log: Remove vanilla's doc commit bit as his request. Thanks for his effort. Revision Changes Path 1.590 +0 -1 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Mon Aug 20 07:41:33 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8CFE016A417; Mon, 20 Aug 2007 07:41:33 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6482E13C45E; Mon, 20 Aug 2007 07:41:33 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K7fX0Q073514; Mon, 20 Aug 2007 07:41:33 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K7fXpZ073513; Mon, 20 Aug 2007 07:41:33 GMT (envelope-from erwin) Message-Id: <200708200741.l7K7fXpZ073513@repoman.freebsd.org> From: Erwin Lansing Date: Mon, 20 Aug 2007 07: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/net/p5-Net-Amazon-S3 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 07:41:33 -0000 erwin 2007-08-20 07:41:33 UTC FreeBSD ports repository Modified files: net/p5-Net-Amazon-S3 Makefile Log: perl is not a valid category, perl5 is and unbreak the port. I wonder why neither describe or portlint caught this. Noticed by: paul beard Pointy hat: clsung Revision Changes Path 1.5 +1 -1 ports/net/p5-Net-Amazon-S3/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 20 07:51:24 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8EC6C16A420; Mon, 20 Aug 2007 07:51:24 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7BED413C46E; Mon, 20 Aug 2007 07:51:24 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K7pOvw074054; Mon, 20 Aug 2007 07:51:24 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K7pOf7074053; Mon, 20 Aug 2007 07:51:24 GMT (envelope-from acm) Message-Id: <200708200751.l7K7pOf7074053@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Mon, 20 Aug 2007 07:51: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/games/ufoai Makefile distinfo pkg-descr pkg-plist ports/games/ufoai/files patch-Makefile patch-src-client_qal.h patch-src-ports-linux_qal_linux.h ports/games/ufoai-data 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, 20 Aug 2007 07:51:24 -0000 acm 2007-08-20 07:51:23 UTC FreeBSD ports repository Modified files: games/ufoai Makefile distinfo pkg-descr pkg-plist games/ufoai-data Makefile distinfo pkg-descr Added files: games/ufoai/files patch-src-client_qal.h patch-src-ports-linux_qal_linux.h Removed files: games/ufoai/files patch-Makefile Log: - Update to 2.1.1 - Update WWW - Add patch-src-client_qal.h,patch-src-ports-linux_qal_linux.h patch files - Add two new OPTIONS to games/ufoai port - Now, it uses GNU_CONFIGURE - Remove obsolete patch file - Another tiny modifications Revision Changes Path 1.2 +11 -15 ports/games/ufoai-data/Makefile 1.2 +3 -3 ports/games/ufoai-data/distinfo 1.2 +1 -1 ports/games/ufoai-data/pkg-descr 1.5 +40 -28 ports/games/ufoai/Makefile 1.2 +6 -3 ports/games/ufoai/distinfo 1.2 +0 -29 ports/games/ufoai/files/patch-Makefile (dead) 1.1 +11 -0 ports/games/ufoai/files/patch-src-client_qal.h (new) 1.1 +12 -0 ports/games/ufoai/files/patch-src-ports-linux_qal_linux.h (new) 1.3 +1 -1 ports/games/ufoai/pkg-descr 1.3 +27 -16 ports/games/ufoai/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 20 08:03:29 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8840416A420; Mon, 20 Aug 2007 08:03:29 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5F78013C48D; Mon, 20 Aug 2007 08:03:29 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K83TaZ075915; Mon, 20 Aug 2007 08:03:29 GMT (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K83Tag075914; Mon, 20 Aug 2007 08:03:29 GMT (envelope-from gerald) Message-Id: <200708200803.l7K83Tag075914@repoman.freebsd.org> From: Gerald Pfeifer Date: Mon, 20 Aug 2007 08:03:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/gcc43 Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 08:03:29 -0000 gerald 2007-08-20 08:03:28 UTC FreeBSD ports repository Modified files: lang/gcc43 Makefile distinfo Log: Update to the 20070817 snapshot of GCC 4.3.0. Revision Changes Path 1.320 +1 -1 ports/lang/gcc43/Makefile 1.206 +18 -18 ports/lang/gcc43/distinfo From owner-cvs-all@FreeBSD.ORG Mon Aug 20 08:56:51 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B7BF016A419; Mon, 20 Aug 2007 08:56:51 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A7F4C13C469; Mon, 20 Aug 2007 08:56:51 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K8up2v091018; Mon, 20 Aug 2007 08:56:51 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K8upRt091013; Mon, 20 Aug 2007 08:56:51 GMT (envelope-from miwi) Message-Id: <200708200856.l7K8upRt091013@repoman.freebsd.org> From: Martin Wilke Date: Mon, 20 Aug 2007 08:56:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/tomcat55 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 08:56:51 -0000 miwi 2007-08-20 08:56:50 UTC FreeBSD ports repository Modified files: www/tomcat55 Makefile Log: - Set ownership $TOMCAT_HOME/webapps directory to $TOMCAT_USER:$TOMCAT_GROUP [1] - While upgrading www/tomcat55 port, if there any directories with spaces in their names within $TOMCAT_HOME/webapps or $TOMCAT_HOME/work directories, setting up permissions fail. Rewrite the "Fixing permissions" loop. [2] PR: 115463 Gabor Tjong A Hung [1] Alexey Rubtsov [2] Approved by: Tomas Verbaitis (maintainer):x Revision Changes Path 1.42 +5 -2 ports/www/tomcat55/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 20 08:59:11 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 57E6116A417; Mon, 20 Aug 2007 08:59:11 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4764213C442; Mon, 20 Aug 2007 08:59:11 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K8xBh5091914; Mon, 20 Aug 2007 08:59:11 GMT (envelope-from danfe@repoman.freebsd.org) Received: (from danfe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K8xAe6091913; Mon, 20 Aug 2007 08:59:10 GMT (envelope-from danfe) Message-Id: <200708200859.l7K8xAe6091913@repoman.freebsd.org> From: Alexey Dokuchaev Date: Mon, 20 Aug 2007 08:59:10 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11/metisse Makefile pkg-plist ports/x11/metisse/files patch-mandriva-64bit-fixes X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 08:59:11 -0000 danfe 2007-08-20 08:59:10 UTC FreeBSD ports repository Modified files: x11/metisse Makefile pkg-plist Added files: x11/metisse/files patch-mandriva-64bit-fixes Log: - Fix the build on amd64 (and possibly other 64-bit archs) [1] - Unbreak by adding missing entries to pkg-plist [2] - Add another small cosmetic fix from Mandriva [3] - Bump PORTREVISION Reported by: pointyhat via pav [1,2] Obtained from: Mandriva SRPM [1,3] Revision Changes Path 1.5 +4 -2 ports/x11/metisse/Makefile 1.1 +429 -0 ports/x11/metisse/files/patch-mandriva-64bit-fixes (new) 1.4 +3 -0 ports/x11/metisse/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 20 09:04:42 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2422516A418; Mon, 20 Aug 2007 09:04:42 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EF7D813C458; Mon, 20 Aug 2007 09:04:41 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K94fUF095277; Mon, 20 Aug 2007 09:04:41 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K94fqG095269; Mon, 20 Aug 2007 09:04:41 GMT (envelope-from miwi) Message-Id: <200708200904.l7K94fqG095269@repoman.freebsd.org> From: Martin Wilke Date: Mon, 20 Aug 2007 09:04:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11-wm/wmakerconf 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, 20 Aug 2007 09:04:42 -0000 miwi 2007-08-20 09:04:41 UTC FreeBSD ports repository Modified files: x11-wm/wmakerconf Makefile distinfo pkg-descr Log: - Update to 2.12 PR: 115399 Submitted by: KATO Tsuguru Revision Changes Path 1.44 +12 -14 ports/x11-wm/wmakerconf/Makefile 1.15 +3 -3 ports/x11-wm/wmakerconf/distinfo 1.9 +1 -1 ports/x11-wm/wmakerconf/pkg-descr From owner-cvs-all@FreeBSD.ORG Mon Aug 20 09:05:31 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 45E4716A417; Mon, 20 Aug 2007 09:05:31 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1DED713C46E; Mon, 20 Aug 2007 09:05:31 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K95U1u095655; Mon, 20 Aug 2007 09:05:31 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K95U5P095654; Mon, 20 Aug 2007 09:05:30 GMT (envelope-from miwi) Message-Id: <200708200905.l7K95U5P095654@repoman.freebsd.org> From: Martin Wilke Date: Mon, 20 Aug 2007 09:05: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/science/openbabel 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, 20 Aug 2007 09:05:31 -0000 miwi 2007-08-20 09:05:30 UTC FreeBSD ports repository Modified files: science/openbabel Makefile distinfo pkg-plist Log: - Update to 2.1.1 PR: 115397 Submitted by: KATO Tsuguru Revision Changes Path 1.17 +3 -5 ports/science/openbabel/Makefile 1.9 +3 -3 ports/science/openbabel/distinfo 1.9 +6 -5 ports/science/openbabel/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 20 09:07:20 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DB83616A420; Mon, 20 Aug 2007 09:07:20 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B355513C4A6; Mon, 20 Aug 2007 09:07:20 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K97Knp096472; Mon, 20 Aug 2007 09:07:20 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K97KqO096471; Mon, 20 Aug 2007 09:07:20 GMT (envelope-from miwi) Message-Id: <200708200907.l7K97KqO096471@repoman.freebsd.org> From: Martin Wilke Date: Mon, 20 Aug 2007 09:07:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/phpbb-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: Mon, 20 Aug 2007 09:07:21 -0000 miwi 2007-08-20 09:07:20 UTC FreeBSD ports repository Modified files: www/phpbb-devel Makefile distinfo pkg-plist Log: - Update to 3.0.0RC43 PR: 115256 Submitted by: Dima Panov Approved by: maintainer Revision Changes Path 1.6 +2 -2 ports/www/phpbb-devel/Makefile 1.4 +3 -3 ports/www/phpbb-devel/distinfo 1.5 +4 -0 ports/www/phpbb-devel/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 20 09:12:43 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 68DDD16A418; Mon, 20 Aug 2007 09:12:43 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 411DE13C45D; Mon, 20 Aug 2007 09:12:43 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K9ChHS098952; Mon, 20 Aug 2007 09:12:43 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K9ChUs098951; Mon, 20 Aug 2007 09:12:43 GMT (envelope-from miwi) Message-Id: <200708200912.l7K9ChUs098951@repoman.freebsd.org> From: Martin Wilke Date: Mon, 20 Aug 2007 09:12: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/openser 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, 20 Aug 2007 09:12:43 -0000 miwi 2007-08-20 09:12:42 UTC FreeBSD ports repository Modified files: net/openser Makefile distinfo Log: - Update to 1.2 PR: 115622 Submitted by: jesusr@ Revision Changes Path 1.9 +1 -1 ports/net/openser/Makefile 1.7 +3 -3 ports/net/openser/distinfo From owner-cvs-all@FreeBSD.ORG Mon Aug 20 09:19:21 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 592E916A419; Mon, 20 Aug 2007 09:19:21 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 31B0D13C45E; Mon, 20 Aug 2007 09:19:21 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K9JLmK001696; Mon, 20 Aug 2007 09:19:21 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K9JLOi001695; Mon, 20 Aug 2007 09:19:21 GMT (envelope-from miwi) Message-Id: <200708200919.l7K9JLOi001695@repoman.freebsd.org> From: Martin Wilke Date: Mon, 20 Aug 2007 09:19:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/xglurbules 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, 20 Aug 2007 09:19:21 -0000 miwi 2007-08-20 09:19:20 UTC FreeBSD ports repository Modified files: graphics/xglurbules Makefile distinfo Log: - Update to 3.3 PR: 115556 Submitted by: steve roome (maintainer) Revision Changes Path 1.11 +1 -1 ports/graphics/xglurbules/Makefile 1.8 +3 -3 ports/graphics/xglurbules/distinfo From owner-cvs-all@FreeBSD.ORG Mon Aug 20 09:43:10 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9A58616A417; Mon, 20 Aug 2007 09:43:10 +0000 (UTC) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 72C6F13C459; Mon, 20 Aug 2007 09:43:10 +0000 (UTC) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K9hA27011639; Mon, 20 Aug 2007 09:43:10 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K9hA3A011635; Mon, 20 Aug 2007 09:43:10 GMT (envelope-from skv) Message-Id: <200708200943.l7K9hA3A011635@repoman.freebsd.org> From: Sergey Skvortsov Date: Mon, 20 Aug 2007 09:43: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/sysutils/p5-Schedule-Load Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 09:43:10 -0000 skv 2007-08-20 09:43:10 UTC FreeBSD ports repository Modified files: sysutils/p5-Schedule-Load Makefile Log: Unbreak plist - fix MAN1 Revision Changes Path 1.12 +2 -3 ports/sysutils/p5-Schedule-Load/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 20 09:56:40 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 42DD716A419; Mon, 20 Aug 2007 09:56:40 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 19FA013C4D1; Mon, 20 Aug 2007 09:56:39 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7K9udZ7017089; Mon, 20 Aug 2007 09:56:39 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7K9ud2L017088; Mon, 20 Aug 2007 09:56:39 GMT (envelope-from sat) Message-Id: <200708200956.l7K9ud2L017088@repoman.freebsd.org> From: Andrew Pantyukhin Date: Mon, 20 Aug 2007 09:56: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/misc/pantry 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, 20 Aug 2007 09:56:40 -0000 sat 2007-08-20 09:56:39 UTC FreeBSD ports repository Modified files: misc/pantry Makefile distinfo pkg-plist Log: - Update to 18 Revision Changes Path 1.5 +1 -1 ports/misc/pantry/Makefile 1.4 +3 -3 ports/misc/pantry/distinfo 1.4 +0 -1 ports/misc/pantry/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 20 10:26:48 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 51A9516A420; Mon, 20 Aug 2007 10:26:48 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 28D9E13C4D9; Mon, 20 Aug 2007 10:26:48 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KAQmBi030346; Mon, 20 Aug 2007 10:26:48 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KAQmKf030345; Mon, 20 Aug 2007 10:26:48 GMT (envelope-from itetcu) Message-Id: <200708201026.l7KAQmKf030345@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Mon, 20 Aug 2007 10:26: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/deskutils/kompose 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, 20 Aug 2007 10:26:48 -0000 itetcu 2007-08-20 10:26:47 UTC FreeBSD ports repository Modified files: deskutils/kompose Makefile distinfo pkg-descr pkg-plist Log: - Update to 0.5.2 - Pat portlint - Pass maintainership to submitter PR: ports/115478 Submitted by: Thomas Abthorpe Revision Changes Path 1.15 +7 -4 ports/deskutils/kompose/Makefile 1.4 +3 -3 ports/deskutils/kompose/distinfo 1.2 +3 -3 ports/deskutils/kompose/pkg-descr 1.3 +22 -2 ports/deskutils/kompose/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 20 09:31:57 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9C7C516A417; Mon, 20 Aug 2007 09:31:57 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id 7436013C45B; Mon, 20 Aug 2007 09:31:57 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 721331A4D7C; Mon, 20 Aug 2007 02:30:09 -0700 (PDT) Date: Mon, 20 Aug 2007 02:30:09 -0700 From: Alfred Perlstein To: Kris Moore Message-ID: <20070820093009.GE87451@elvis.mu.org> References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C4FD02.3090708@freebsd.org> <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> <46C7A9A4.5090404@samsco.org> <20070819095302.D66918@fledge.watson.org> <46C863C5.6090906@comcast.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <46C863C5.6090906@comcast.net> User-Agent: Mutt/1.4.2.3i X-Mailman-Approved-At: Mon, 20 Aug 2007 11:16:34 +0000 Cc: wine-freebsd@hub.org, Scott Long , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, Daniel Eischen , Robert Watson , David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 09:31:57 -0000 * Kris Moore [070819 08:50] wrote: > > Even if you decide to only add this new functionality to FreeBSD 7.x, > that's fine with us. Our next release of PC-BSD will be our last based > on FreeBSD 6.x before moving to 7. We're committed to shipping with the > patch Tijl wrote, since the improvements to Wine with it are night and > day. Of course if you roll this into the tree, all the better since I > won't have to spend the next 6 months to a year reminding users that > when they update world, they have to apply the Wine patch first ;-) Kris, I support the patch. That said, have you toyed with implementing this as a kld that you can ship with your code? -- - Alfred Perlstein From owner-cvs-all@FreeBSD.ORG Mon Aug 20 11:27:58 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D96416A418; Mon, 20 Aug 2007 11:27:58 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0585F13C442; Mon, 20 Aug 2007 11:27:58 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KBRvxS045425; Mon, 20 Aug 2007 11:27:57 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KBRvGl045424; Mon, 20 Aug 2007 11:27:57 GMT (envelope-from pav) Message-Id: <200708201127.l7KBRvGl045424@repoman.freebsd.org> From: Pav Lucistnik Date: Mon, 20 Aug 2007 11:27:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/liferea 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, 20 Aug 2007 11:27:58 -0000 pav 2007-08-20 11:27:57 UTC FreeBSD ports repository Modified files: net/liferea Makefile distinfo pkg-plist Log: Update to 1.2.22 Revision Changes Path 1.103 +1 -1 ports/net/liferea/Makefile 1.78 +3 -3 ports/net/liferea/distinfo 1.49 +1 -0 ports/net/liferea/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 20 11:53:28 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4E1A116A418; Mon, 20 Aug 2007 11:53:28 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 26C0D13C48A; Mon, 20 Aug 2007 11:53:28 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KBrS6r047544; Mon, 20 Aug 2007 11:53:28 GMT (envelope-from kib@repoman.freebsd.org) Received: (from kib@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KBrRCe047543; Mon, 20 Aug 2007 11:53:27 GMT (envelope-from kib) Message-Id: <200708201153.l7KBrRCe047543@repoman.freebsd.org> From: Konstantin Belousov Date: Mon, 20 Aug 2007 11:53: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 vfs_aio.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 11:53:28 -0000 kib 2007-08-20 11:53:27 UTC FreeBSD src repository Modified files: sys/kern vfs_aio.c Log: Destroy the kaio_mtx on the freeing the struct kaioinfo in the aio_proc_rundown. Do not allow for zero-length read to be passed to the fo_read file method by aio. Reported and tested by: Peter Holm Approved by: re (kensmith) Revision Changes Path 1.233 +5 -1 src/sys/kern/vfs_aio.c From owner-cvs-all@FreeBSD.ORG Mon Aug 20 12:05:45 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E18B216A418; Mon, 20 Aug 2007 12:05:45 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B8C9C13C467; Mon, 20 Aug 2007 12:05:45 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KC5jve049701; Mon, 20 Aug 2007 12:05:45 GMT (envelope-from kib@repoman.freebsd.org) Received: (from kib@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KC5jJr049700; Mon, 20 Aug 2007 12:05:45 GMT (envelope-from kib) Message-Id: <200708201205.l7KC5jJr049700@repoman.freebsd.org> From: Konstantin Belousov Date: Mon, 20 Aug 2007 12:05:45 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/vm vm_map.c vm_map.h vm_mmap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 12:05:46 -0000 kib 2007-08-20 12:05:45 UTC FreeBSD src repository Modified files: sys/vm vm_map.c vm_map.h vm_mmap.c Log: Do not drop vm_map lock between doing vm_map_remove() and vm_map_insert(). For this, introduce vm_map_fixed() that does that for MAP_FIXED case. Dropping the lock allowed for parallel thread to occupy the freed space. Reported by: Tijl Coosemans Reviewed by: alc Approved by: re (kensmith) MFC after: 2 weeks Revision Changes Path 1.387 +35 -16 src/sys/vm/vm_map.c 1.120 +1 -0 src/sys/vm/vm_map.h 1.213 +4 -2 src/sys/vm/vm_mmap.c From owner-cvs-all@FreeBSD.ORG Mon Aug 20 12:41:35 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9146316A418; Mon, 20 Aug 2007 12:41:35 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 67FBD13C49D; Mon, 20 Aug 2007 12:41:35 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KCfZAO059195; Mon, 20 Aug 2007 12:41:35 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KCfZYW059191; Mon, 20 Aug 2007 12:41:35 GMT (envelope-from gabor) Message-Id: <200708201241.l7KCfZYW059191@repoman.freebsd.org> From: Gabor Kovesdan Date: Mon, 20 Aug 2007 12:41: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/hu_HU.ISO8859-2/articles Makefile doc/hu_HU.ISO8859-2/articles/explaining-bsd Makefile 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: Mon, 20 Aug 2007 12:41:35 -0000 gabor 2007-08-20 12:41:34 UTC FreeBSD doc repository Modified files: hu_HU.ISO8859-2/articles Makefile Added files: hu_HU.ISO8859-2/articles/explaining-bsd Makefile article.sgml Log: - New translation: explaining-bsd Translated by: gabor Approved by: keramida (mentor) Revision Changes Path 1.2 +4 -1 doc/hu_HU.ISO8859-2/articles/Makefile 1.1 +24 -0 doc/hu_HU.ISO8859-2/articles/explaining-bsd/Makefile (new) 1.1 +780 -0 doc/hu_HU.ISO8859-2/articles/explaining-bsd/article.sgml (new) From owner-cvs-all@FreeBSD.ORG Mon Aug 20 12:56:07 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 79F5716A418; Mon, 20 Aug 2007 12:56:07 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6717013C4B3; Mon, 20 Aug 2007 12:56:07 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KCu7oV078593; Mon, 20 Aug 2007 12:56:07 GMT (envelope-from danfe@repoman.freebsd.org) Received: (from danfe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KCu7rq078592; Mon, 20 Aug 2007 12:56:07 GMT (envelope-from danfe) Message-Id: <200708201256.l7KCu7rq078592@repoman.freebsd.org> From: Alexey Dokuchaev Date: Mon, 20 Aug 2007 12:56:07 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11/nvidia-driver Makefile distinfo pkg-plist ports/x11/nvidia-driver/files 6113-patch-lib::Makefile 7667-patch-scripts::setup.sh crash-patch-by-zander-1759235 pkg-message.in ports/x11/nvidia-driver-71xx Makefile ports/x11/nvidia-driver-96xx Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 12:56:07 -0000 danfe 2007-08-20 12:56:07 UTC FreeBSD ports repository Modified files: x11/nvidia-driver Makefile distinfo pkg-plist x11/nvidia-driver/files pkg-message.in x11/nvidia-driver-71xx Makefile x11/nvidia-driver-96xx Makefile Removed files: x11/nvidia-driver/files 6113-patch-lib::Makefile 7667-patch-scripts::setup.sh crash-patch-by-zander-1759235 Log: Long-awaited NVidia driver update: - Update the driver to the latest version, 100.14.11 - Update legacy driver versions to 1.0-7185 and 1.0-9639 - Prevent the port from messing with system configuration files (e.g. /boot/loader.conf) and doing automatic module loading/unloading. This functionality would be lost in package anyway, and might cause undesired side effects [*] - Register proper @exec/@unexec for ldconfig(8) calls for Linux libraries - Kill NVidia's afterinstall banner, our pkg-message tells the same but is more detailed and accurate - Require X server being installed - INSTALLS_SHLIB -> USE_LDCONFIG, seems to be OK nowadays - Respect NOPORTDOCS user setting - Throw in couple of comments + other minor tweaks 100.14.11 Release Hightlights: - GeForce 7050 PV/NVidia nForce 630a - GeForce 7025/NVidia nForce 630a - Fixed console restore problems in several different configurations, e.g. VESA console, notebook LCD displays - Improved interaction with ATi RS480/482 based mainboards - Improved support for House Sync with G-Sync II - Improved NVidia X driver interaction with ACPI daemon Requested by: several [*] Revision Changes Path 1.3 +1 -1 ports/x11/nvidia-driver-71xx/Makefile 1.3 +1 -1 ports/x11/nvidia-driver-96xx/Makefile 1.64 +16 -17 ports/x11/nvidia-driver/Makefile 1.18 +9 -9 ports/x11/nvidia-driver/distinfo 1.3 +0 -23 ports/x11/nvidia-driver/files/6113-patch-lib::Makefile (dead) 1.2 +0 -23 ports/x11/nvidia-driver/files/7667-patch-scripts::setup.sh (dead) 1.2 +0 -749 ports/x11/nvidia-driver/files/crash-patch-by-zander-1759235 (dead) 1.5 +7 -3 ports/x11/nvidia-driver/files/pkg-message.in 1.19 +7 -5 ports/x11/nvidia-driver/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 20 13:00:36 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 874C416A41A; Mon, 20 Aug 2007 13:00:36 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5EFA613C465; Mon, 20 Aug 2007 13:00:36 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KD0aWp079000; Mon, 20 Aug 2007 13:00:36 GMT (envelope-from mm@repoman.freebsd.org) Received: (from mm@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KD0a1V078999; Mon, 20 Aug 2007 13:00:36 GMT (envelope-from mm) Message-Id: <200708201300.l7KD0a1V078999@repoman.freebsd.org> From: Martin Matuska Date: Mon, 20 Aug 2007 13: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/x11-toolkits/tktable Makefile distinfo pkg-plist ports/x11-toolkits/tktable/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, 20 Aug 2007 13:00:36 -0000 mm 2007-08-20 13:00:36 UTC FreeBSD ports repository Modified files: x11-toolkits/tktable Makefile distinfo pkg-plist x11-toolkits/tktable/files patch-Makefile.in Log: - Update to 2.9 - Switch to USE_XORG and USE_TK - Alter pkg-plist and PORTDOCS - Change maintainer to mm@FreeBSD.org PR: ports/109432 Revision Changes Path 1.6 +18 -21 ports/x11-toolkits/tktable/Makefile 1.4 +3 -3 ports/x11-toolkits/tktable/distinfo 1.2 +23 -12 ports/x11-toolkits/tktable/files/patch-Makefile.in 1.2 +4 -9 ports/x11-toolkits/tktable/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 20 13:00:48 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8CC1216A468; Mon, 20 Aug 2007 13:00:48 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7D13013C4CC; Mon, 20 Aug 2007 13:00:48 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KD0mlu079048; Mon, 20 Aug 2007 13:00:48 GMT (envelope-from truckman@repoman.freebsd.org) Received: (from truckman@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KD0mkV079047; Mon, 20 Aug 2007 13:00:48 GMT (envelope-from truckman) Message-Id: <200708201300.l7KD0mkV079047@repoman.freebsd.org> From: Don Lewis Date: Mon, 20 Aug 2007 13:00:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.sbin/rpc.statd 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: Mon, 20 Aug 2007 13:00:48 -0000 truckman 2007-08-20 13:00:48 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/rpc.statd file.c Log: MFC file.c 1.8 If the mmap() call in rpc.statd fails, rpc.statd prints a warning message and then dumps core because the subsequent code assumes that mmap() succeeded. Since rpc.statd does not have fallback code to implement the functionality needed to operate on the status file if it is not memory mapped, rpc.statd should use err() to force the process to exit if the mmap() call fails. PR: bin/115430 (mmap() failure previously fixed in statd.c 1.12.8.2) Revision Changes Path 1.7.10.1 +1 -1 src/usr.sbin/rpc.statd/file.c From owner-cvs-all@FreeBSD.ORG Mon Aug 20 13:04:05 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6B53B16A417; Mon, 20 Aug 2007 13:04:05 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5BE8E13C4D0; Mon, 20 Aug 2007 13:04:05 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KD45Fu080771; Mon, 20 Aug 2007 13:04:05 GMT (envelope-from truckman@repoman.freebsd.org) Received: (from truckman@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KD45I5080770; Mon, 20 Aug 2007 13:04:05 GMT (envelope-from truckman) Message-Id: <200708201304.l7KD45I5080770@repoman.freebsd.org> From: Don Lewis Date: Mon, 20 Aug 2007 13:04: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/sys/dev/usb ehci.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 13:04:05 -0000 truckman 2007-08-20 13:04:05 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/usb ehci.c Log: MFC ehci.c 1.56 Replace three copies of the host controller reset sequence that differ in their details with calls to a new function, ehci_hcreset(), that performs the reset. The original sequences either had no delay or a 1ms delay between telling the controller to stop and asserting the controller reset bit. One instance of the original reset sequence waited for the controller to indicate that its reset was complete before continuing, but the other two immediately let the subsequent code execute. The latter is a problem on some hardware, because a read of the HCCPARAMS register returns an incorrect value while the reset is in progress, which triggers an infinite loop in ehci_pci_givecontroller(), which hangs the system on shutdown. The reset sequence in ehci_hcreset() starts with the most complete instance from the original code, which contains a loop to wait for the controller to indicate that its reset is complete. This appears to be the correct thing to do according to "Enhanced Host Controller Interface Specification for Universal Serial Bus" revision 1.0, section 2.3.1. Add another loop to wait for the controller to indicate that it has stopped before setting the HCRESET bit. This is required by the section 2.3.1 in the specification, which says that setting HCRESET before the controller has halted "will result in undefined behaviour". Revision Changes Path 1.36.2.4 +37 -18 src/sys/dev/usb/ehci.c From owner-cvs-all@FreeBSD.ORG Mon Aug 20 13:58:39 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F6A916A41B; Mon, 20 Aug 2007 13:58:39 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 774F713C4DA; Mon, 20 Aug 2007 13:58:39 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KDwd8u084014; Mon, 20 Aug 2007 13:58:39 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KDwdmr084013; Mon, 20 Aug 2007 13:58:39 GMT (envelope-from thierry) Message-Id: <200708201358.l7KDwdmr084013@repoman.freebsd.org> From: Thierry Thomas Date: Mon, 20 Aug 2007 13:58: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/freemat 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, 20 Aug 2007 13:58:39 -0000 thierry 2007-08-20 13:58:39 UTC FreeBSD ports repository Modified files: math/freemat Makefile distinfo pkg-plist Log: - Upgrade to 3.4. Primarily a bug fix release. The most significant change from 3.3 is the fixes for the 64-bit build. - Reorder includes to avoid conflicts when QT3 is installed. Revision Changes Path 1.16 +6 -1 ports/math/freemat/Makefile 1.7 +3 -3 ports/math/freemat/distinfo 1.5 +4 -0 ports/math/freemat/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 20 14:48:08 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6C22B16A418; Mon, 20 Aug 2007 14:48:08 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 43E6913C46B; Mon, 20 Aug 2007 14:48:08 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KEm8Id089322; Mon, 20 Aug 2007 14:48:08 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KEm85V089320; Mon, 20 Aug 2007 14:48:08 GMT (envelope-from itetcu) Message-Id: <200708201448.l7KEm85V089320@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Mon, 20 Aug 2007 14:48: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/aap 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, 20 Aug 2007 14:48:08 -0000 itetcu 2007-08-20 14:48:08 UTC FreeBSD ports repository Modified files: devel/aap Makefile distinfo pkg-plist Log: Update to 1.090 PR: ports/115545 Submitted by: Thomas Abthorpe Revision Changes Path 1.22 +1 -1 ports/devel/aap/Makefile 1.20 +3 -3 ports/devel/aap/distinfo 1.16 +1 -1 ports/devel/aap/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 20 14:59:47 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B11616A417; Mon, 20 Aug 2007 14:59:47 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0F9D713C442; Mon, 20 Aug 2007 14:59:47 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KExkLF089993; Mon, 20 Aug 2007 14:59:46 GMT (envelope-from danfe@repoman.freebsd.org) Received: (from danfe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KExkCZ089992; Mon, 20 Aug 2007 14:59:46 GMT (envelope-from danfe) Message-Id: <200708201459.l7KExkCZ089992@repoman.freebsd.org> From: Alexey Dokuchaev Date: Mon, 20 Aug 2007 14:59: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/x11/nvidia-driver Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 14:59:47 -0000 danfe 2007-08-20 14:59:46 UTC FreeBSD ports repository Modified files: x11/nvidia-driver Makefile Log: Fix an edge case of "make describe". Reported by: portsnap buildbox Revision Changes Path 1.65 +4 -3 ports/x11/nvidia-driver/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 20 15:21:51 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 03E7316A419; Mon, 20 Aug 2007 15:21:51 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 83B6113C461; Mon, 20 Aug 2007 15:21:50 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KFLoe0092764; Mon, 20 Aug 2007 15:21:50 GMT (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KFLowL092763; Mon, 20 Aug 2007 15:21:50 GMT (envelope-from ume) Message-Id: <200708201521.l7KFLowL092763@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Mon, 20 Aug 2007 15:21: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/cyrus-imapd23 Makefile distinfo pkg-plist ports/mail/cyrus-imapd23/files extra-patch-cmulocal::berkdb.m4 patch-configure patch-imap::reconstruct.c patch-imtest::imtest.c patch-lib::cyrusdb_berkeley.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 15:21:51 -0000 ume 2007-08-20 15:21:50 UTC FreeBSD ports repository Modified files: mail/cyrus-imapd23 Makefile distinfo pkg-plist mail/cyrus-imapd23/files patch-configure patch-imtest::imtest.c Removed files: mail/cyrus-imapd23/files extra-patch-cmulocal::berkdb.m4 patch-imap::reconstruct.c patch-lib::cyrusdb_berkeley.c Log: Update to 2.3.9. Upgrading from 2.3.8 * The default value of the allowplaintext option has been changed to disabled (0). If you need to allow cleartext passwords on the wire, then you will have to explicitly enable the allowplaintext option in imapd.conf. Revision Changes Path 1.163 +7 -7 ports/mail/cyrus-imapd23/Makefile 1.44 +3 -3 ports/mail/cyrus-imapd23/distinfo 1.3 +0 -28 ports/mail/cyrus-imapd23/files/extra-patch-cmulocal::berkdb.m4 (dead) 1.3 +0 -17 ports/mail/cyrus-imapd23/files/patch-configure 1.2 +0 -14 ports/mail/cyrus-imapd23/files/patch-imap::reconstruct.c (dead) 1.3 +0 -8 ports/mail/cyrus-imapd23/files/patch-imtest::imtest.c 1.2 +0 -20 ports/mail/cyrus-imapd23/files/patch-lib::cyrusdb_berkeley.c (dead) 1.33 +0 -1 ports/mail/cyrus-imapd23/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 20 15:23:34 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E580A16A418; Mon, 20 Aug 2007 15:23:34 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D52AC13C461; Mon, 20 Aug 2007 15:23:34 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KFNYNv092924; Mon, 20 Aug 2007 15:23:34 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KFNY5t092923; Mon, 20 Aug 2007 15:23:34 GMT (envelope-from itetcu) Message-Id: <200708201523.l7KFNY5t092923@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Mon, 20 Aug 2007 15: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: ports/multimedia Makefile ports/multimedia/mimms 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, 20 Aug 2007 15:23:35 -0000 itetcu 2007-08-20 15:23:34 UTC FreeBSD ports repository Modified files: multimedia Makefile Added files: multimedia/mimms Makefile distinfo pkg-descr Log: MMS is a program designed to allow you to download streams using the MMS protocol and save them to your computer, as opposed to watching them live. Similar functionality is available in full media player suites such as Xine and MPlayer, but MiMMS is quick and easy to use, and for the time being, remains a useful program. WWW: http://savannah.nongnu.org/projects/mimms/ PR: ports/ports/114239 Submitted by: Yinghong.Liu Revision Changes Path 1.239 +1 -0 ports/multimedia/Makefile 1.1 +48 -0 ports/multimedia/mimms/Makefile (new) 1.1 +3 -0 ports/multimedia/mimms/distinfo (new) 1.1 +7 -0 ports/multimedia/mimms/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Mon Aug 20 15:23:59 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0B7CE16A41B; Mon, 20 Aug 2007 15:23:59 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D59C813C46B; Mon, 20 Aug 2007 15:23:58 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KFNw4E092964; Mon, 20 Aug 2007 15:23:58 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KFNwjD092963; Mon, 20 Aug 2007 15:23:58 GMT (envelope-from itetcu) Message-Id: <200708201523.l7KFNwjD092963@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Mon, 20 Aug 2007 15:23:58 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 15:23:59 -0000 itetcu 2007-08-20 15:23:58 UTC FreeBSD ports repository Modified files: . modules Log: mimms --> ports/multimedia/mimms Revision Changes Path 1.18559 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Aug 20 15:33:23 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 581D116A417; Mon, 20 Aug 2007 15:33:23 +0000 (UTC) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 488E113C494; Mon, 20 Aug 2007 15:33:23 +0000 (UTC) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KFXN9H095585; Mon, 20 Aug 2007 15:33:23 GMT (envelope-from cognet@repoman.freebsd.org) Received: (from cognet@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KFXNn1095584; Mon, 20 Aug 2007 15:33:23 GMT (envelope-from cognet) Message-Id: <200708201533.l7KFXNn1095584@repoman.freebsd.org> From: Olivier Houchard Date: Mon, 20 Aug 2007 15:33: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/gnu/fs/xfs/FreeBSD xfs_mountops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 15:33:23 -0000 cognet 2007-08-20 15:33:23 UTC FreeBSD src repository Modified files: sys/gnu/fs/xfs/FreeBSD xfs_mountops.c Log: Some times ago, vfs_getopts() was changed, so that it would set error to ENOENT if the option wasn't provided, instead of setting it to 0. xfs however didn't catch up on this, so it assumed something went bad if vfs_getopts() sets the error to non-zero, and just returns the error. Unbreak xfs mount by just ignoring the error if vfs_getopts() sets the error to ENOENT, as we should have sane defaults. Reviewed by: kan Approved by: re (rwatson) Tested by: rpaulo Revision Changes Path 1.10 +6 -6 src/sys/gnu/fs/xfs/FreeBSD/xfs_mountops.c From owner-cvs-all@FreeBSD.ORG Mon Aug 20 15:45:08 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2825816A418; Mon, 20 Aug 2007 15:45:08 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 17AF113C457; Mon, 20 Aug 2007 15:45:08 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KFj70B000499; Mon, 20 Aug 2007 15:45:07 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KFj75F000498; Mon, 20 Aug 2007 15:45:07 GMT (envelope-from miwi) Message-Id: <200708201545.l7KFj75F000498@repoman.freebsd.org> From: Martin Wilke Date: Mon, 20 Aug 2007 15:45: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/graphics Makefile ports/graphics/darknock 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, 20 Aug 2007 15:45:08 -0000 miwi 2007-08-20 15:45:07 UTC FreeBSD ports repository Modified files: graphics Makefile Added files: graphics/darknock Makefile distinfo pkg-descr pkg-plist Log: darknocK detects edges in images, better than any other program. It will be using Artificial Neural Networks to enchance the results of standard algorithms. It's a part of My work for My Master degree. WWW: http://sourceforge.net/projects/darknock/ PR: ports/115214 Submitted by: Yinghong.Liu Revision Changes Path 1.1091 +1 -0 ports/graphics/Makefile 1.1 +59 -0 ports/graphics/darknock/Makefile (new) 1.1 +3 -0 ports/graphics/darknock/distinfo (new) 1.1 +5 -0 ports/graphics/darknock/pkg-descr (new) 1.1 +9 -0 ports/graphics/darknock/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Aug 20 15:45:29 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DC62416A41A; Mon, 20 Aug 2007 15:45:29 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B4A2B13C469; Mon, 20 Aug 2007 15:45:29 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KFjTi4000550; Mon, 20 Aug 2007 15:45:29 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KFjTKg000549; Mon, 20 Aug 2007 15:45:29 GMT (envelope-from miwi) Message-Id: <200708201545.l7KFjTKg000549@repoman.freebsd.org> From: Martin Wilke Date: Mon, 20 Aug 2007 15:45:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: 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, 20 Aug 2007 15:45:30 -0000 miwi 2007-08-20 15:45:29 UTC FreeBSD ports repository Modified files: . modules Log: darknock --> ports/graphics/darknock Revision Changes Path 1.18560 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Aug 20 15:45:56 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0673716A41A; Mon, 20 Aug 2007 15:45:56 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E6A7013C4A8; Mon, 20 Aug 2007 15:45:55 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KFjtkx000617; Mon, 20 Aug 2007 15:45:55 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KFjtNY000616; Mon, 20 Aug 2007 15:45:55 GMT (envelope-from miwi) Message-Id: <200708201545.l7KFjtNY000616@repoman.freebsd.org> From: Martin Wilke Date: Mon, 20 Aug 2007 15:45:55 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio/cheesetracker Makefile distinfo pkg-descr pkg-plist ports/audio/cheesetracker/files patch-SConstruct patch-cheesetracker-trackercore-saver.cpp patch-common-components-audio-resampler_manager.h patch-common-components-data-property_bridges.h patch-common-drivers-posix-sound_driver_jack.h patch-common::drivers::posix::sound_driver_jack.cpp patch-detect.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: Mon, 20 Aug 2007 15:45:56 -0000 miwi 2007-08-20 15:45:55 UTC FreeBSD ports repository Modified files: audio/cheesetracker Makefile distinfo pkg-descr audio/cheesetracker/files patch-SConstruct patch-common::drivers::posix::sound_driver_jack.cpp patch-detect.py Removed files: audio/cheesetracker pkg-plist audio/cheesetracker/files patch-cheesetracker-trackercore-saver.cpp patch-common-components-audio-resampler_manager.h patch-common-components-data-property_bridges.h patch-common-drivers-posix-sound_driver_jack.h Log: - Update to 0.9.15.1 PR: 115389 Submitted by: KATO Tsuguru Revision Changes Path 1.26 +20 -9 ports/audio/cheesetracker/Makefile 1.10 +3 -3 ports/audio/cheesetracker/distinfo 1.4 +58 -10 ports/audio/cheesetracker/files/patch-SConstruct 1.2 +0 -14 ports/audio/cheesetracker/files/patch-cheesetracker-trackercore-saver.cpp (dead) 1.2 +0 -11 ports/audio/cheesetracker/files/patch-common-components-audio-resampler_manager.h (dead) 1.2 +0 -11 ports/audio/cheesetracker/files/patch-common-components-data-property_bridges.h (dead) 1.2 +0 -11 ports/audio/cheesetracker/files/patch-common-drivers-posix-sound_driver_jack.h (dead) 1.2 +4 -4 ports/audio/cheesetracker/files/patch-common::drivers::posix::sound_driver_jack.cpp 1.2 +29 -25 ports/audio/cheesetracker/files/patch-detect.py 1.3 +1 -1 ports/audio/cheesetracker/pkg-descr 1.5 +0 -6 ports/audio/cheesetracker/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Mon Aug 20 15:48:03 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4B7A916A419; Mon, 20 Aug 2007 15:48:03 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3B0C613C47E; Mon, 20 Aug 2007 15:48:03 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KFm3K0000835; Mon, 20 Aug 2007 15:48:03 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KFm38u000834; Mon, 20 Aug 2007 15:48:03 GMT (envelope-from miwi) Message-Id: <200708201548.l7KFm38u000834@repoman.freebsd.org> From: Martin Wilke Date: Mon, 20 Aug 2007 15:48: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 Makefile ports/mail/pecl-pop3 Makefile distinfo pkg-descr ports/mail/pecl-pop3/files patch-pop3.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 15:48:03 -0000 miwi 2007-08-20 15:48:03 UTC FreeBSD ports repository Modified files: mail Makefile Added files: mail/pecl-pop3 Makefile distinfo pkg-descr mail/pecl-pop3/files patch-pop3.c Log: The POP3 extension makes it possible for a PHP script to connect to and interact with a POP3 mail server. It is based on the PHP streams interface and requires no external library. WWW: http://pecl.php.net/package/POP3 PR: ports/115366 Submitted by: buganini at gmail.com Revision Changes Path 1.864 +1 -0 ports/mail/Makefile 1.1 +25 -0 ports/mail/pecl-pop3/Makefile (new) 1.1 +3 -0 ports/mail/pecl-pop3/distinfo (new) 1.1 +15 -0 ports/mail/pecl-pop3/files/patch-pop3.c (new) 1.1 +6 -0 ports/mail/pecl-pop3/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Mon Aug 20 15:48:25 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E22BB16A41A; Mon, 20 Aug 2007 15:48:25 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BA77613C4A8; Mon, 20 Aug 2007 15:48:25 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KFmPOK000966; Mon, 20 Aug 2007 15:48:25 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KFmPTt000962; Mon, 20 Aug 2007 15:48:25 GMT (envelope-from miwi) Message-Id: <200708201548.l7KFmPTt000962@repoman.freebsd.org> From: Martin Wilke Date: Mon, 20 Aug 2007 15:48: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: 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, 20 Aug 2007 15:48:26 -0000 miwi 2007-08-20 15:48:25 UTC FreeBSD ports repository Modified files: . modules Log: pecl-pop3 --> ports/mail/pecl-pop3 Revision Changes Path 1.18561 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Aug 20 15:49:24 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 60EE416A421; Mon, 20 Aug 2007 15:49:24 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 38B8813C491; Mon, 20 Aug 2007 15:49:24 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KFnO8G001183; Mon, 20 Aug 2007 15:49:24 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KFnOt8001182; Mon, 20 Aug 2007 15:49:24 GMT (envelope-from miwi) Message-Id: <200708201549.l7KFnOt8001182@repoman.freebsd.org> From: Martin Wilke Date: Mon, 20 Aug 2007 15:49: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/serendipity 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, 20 Aug 2007 15:49:24 -0000 miwi 2007-08-20 15:49:24 UTC FreeBSD ports repository Modified files: www/serendipity Makefile distinfo Log: - Update to 1.1.4 Approved by: maintainer implicit Revision Changes Path 1.19 +1 -1 ports/www/serendipity/Makefile 1.12 +3 -3 ports/www/serendipity/distinfo From owner-cvs-all@FreeBSD.ORG Mon Aug 20 15:50:21 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9D8F516A46B; Mon, 20 Aug 2007 15:50:21 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 74B7E13C46C; Mon, 20 Aug 2007 15:50:21 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KFoLxd001651; Mon, 20 Aug 2007 15:50:21 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KFoLX1001650; Mon, 20 Aug 2007 15:50:21 GMT (envelope-from miwi) Message-Id: <200708201550.l7KFoLX1001650@repoman.freebsd.org> From: Martin Wilke Date: Mon, 20 Aug 2007 15:50: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/mail/grepmail Makefile distinfo ports/mail/grepmail/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, 20 Aug 2007 15:50:21 -0000 miwi 2007-08-20 15:50:21 UTC FreeBSD ports repository Modified files: mail/grepmail Makefile distinfo Added files: mail/grepmail/files patch-Makefile.PL Log: - Update to 5.3033 Approved by: maintainer implicit Revision Changes Path 1.35 +1 -1 ports/mail/grepmail/Makefile 1.27 +3 -3 ports/mail/grepmail/distinfo 1.1 +16 -0 ports/mail/grepmail/files/patch-Makefile.PL (new) From owner-cvs-all@FreeBSD.ORG Mon Aug 20 16:01:46 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1B3DE16A418; Mon, 20 Aug 2007 16:01:46 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0AC4913C4A6; Mon, 20 Aug 2007 16:01:46 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KG1j9d006908; Mon, 20 Aug 2007 16:01:45 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KG1jH2006904; Mon, 20 Aug 2007 16:01:45 GMT (envelope-from itetcu) Message-Id: <200708201601.l7KG1jH2006904@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Mon, 20 Aug 2007 16:01:45 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia Makefile ports/multimedia/gmimms 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, 20 Aug 2007 16:01:46 -0000 itetcu 2007-08-20 16:01:45 UTC FreeBSD ports repository Modified files: multimedia Makefile Added files: multimedia/gmimms Makefile distinfo pkg-descr Log: GMiMMS is a GTK+ frontend for MiMMS, a multimedia-stream ripper. So it is easy to enter the MMS-URL and the output file. You can also record live-streams by setting the recording length in GMiMMS. WWW: http://gmimms.sourceforge.net/ PR: ports/ports/114239 Submitted by: Yinghong.Liu Revision Changes Path 1.240 +1 -0 ports/multimedia/Makefile 1.1 +44 -0 ports/multimedia/gmimms/Makefile (new) 1.1 +3 -0 ports/multimedia/gmimms/distinfo (new) 1.1 +5 -0 ports/multimedia/gmimms/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Mon Aug 20 16:02:12 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8206916A418; Mon, 20 Aug 2007 16:02:12 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5A58713C457; Mon, 20 Aug 2007 16:02:12 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KG2Cv4007135; Mon, 20 Aug 2007 16:02:12 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KG2Cwf007134; Mon, 20 Aug 2007 16:02:12 GMT (envelope-from itetcu) Message-Id: <200708201602.l7KG2Cwf007134@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Mon, 20 Aug 2007 16:02: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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 16:02:12 -0000 itetcu 2007-08-20 16:02:12 UTC FreeBSD ports repository Modified files: . modules Log: gmimms --> ports/multimedia/gmimms Revision Changes Path 1.18562 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Aug 20 15:09:52 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6D89316A418; Mon, 20 Aug 2007 15:09:52 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.freebsd.org (Postfix) with ESMTP id 1101013C45B; Mon, 20 Aug 2007 15:09:51 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from phobos.samsco.home (phobos.samsco.home [192.168.254.11]) (authenticated bits=0) by pooker.samsco.org (8.13.8/8.13.8) with ESMTP id l7KF8Lev055381; Mon, 20 Aug 2007 09:08:21 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <46C9AE64.50705@samsco.org> Date: Mon, 20 Aug 2007 09:08:20 -0600 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.6) Gecko/20070802 SeaMonkey/1.1.4 MIME-Version: 1.0 To: Kris Moore References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C4FD02.3090708@freebsd.org> <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> <46C7A9A4.5090404@samsco.org> <20070819095302.D66918@fledge.watson.org> <46C863C5.6090906@comcast.net><20070820093009.GE87451@elvis.mu.org> <222044094-1187603330-cardhu_decombobulator_blackberry.rim.net-1638751523-@bxe027.bisx.prod.on.blackberry> In-Reply-To: <222044094-1187603330-cardhu_decombobulator_blackberry.rim.net-1638751523-@bxe027.bisx.prod.on.blackberry> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (pooker.samsco.org [168.103.85.57]); Mon, 20 Aug 2007 09:08:22 -0600 (MDT) X-Spam-Status: No, score=-1.4 required=5.5 tests=ALL_TRUSTED autolearn=failed version=3.1.8 X-Spam-Checker-Version: SpamAssassin 3.1.8 (2007-02-13) on pooker.samsco.org X-Mailman-Approved-At: Mon, 20 Aug 2007 16:08:05 +0000 Cc: wine-freebsd@hub.org, src-committers@FreeBSD.org, cvs-src@FreeBSD.org, Alfred Perlstein , cvs-all@FreeBSD.org, Daniel Eischen , Robert Watson , David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 15:09:52 -0000 Having it as a loadable module that is essentially private to PC-BSD (though open source, of course) will lead to questions of why Wine works in PC-BSD and not FreeBSD. That's fine if your intention is to create a fork of FreeBSD, but I don't know if that's what you really want. Scott Kris Moore wrote: > The thought of a KLD hadn't occured to me actually. We are very close to releasing 1.4RC1 though, so it may be a bit to close to work that out at the moment. Tijl would probably be the one to ask about that though, since he's the one making all this come together :) > > However we will ship with the sys source on our disk 2, patch included. We'll just have to ensure we let users know when they do a csup to re-apply the wine patches manually. > > Sent via BlackBerry by AT&T > > -----Original Message----- > From: Alfred Perlstein > > Date: Mon, 20 Aug 2007 02:30:09 > To:Kris Moore > Cc:Robert Watson , Scott Long ,Daniel Eischen ,Tijl Coosemans , David Xu ,wine-freebsd@hub.org, Xin LI ,src-committers@FreeBSD.org, cvs-src@FreeBSD.org,cvs-all@FreeBSD.org > Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys > > > * Kris Moore [070819 08:50] wrote: >> Even if you decide to only add this new functionality to FreeBSD 7.x, >> that's fine with us. Our next release of PC-BSD will be our last based >> on FreeBSD 6.x before moving to 7. We're committed to shipping with the >> patch Tijl wrote, since the improvements to Wine with it are night and >> day. Of course if you roll this into the tree, all the better since I >> won't have to spend the next 6 months to a year reminding users that >> when they update world, they have to apply the Wine patch first ;-) > > Kris, I support the patch. > > That said, have you toyed with implementing this as a kld that > you can ship with your code? > From owner-cvs-all@FreeBSD.ORG Mon Aug 20 16:12:48 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 62E2B16A41A; Mon, 20 Aug 2007 16:12:48 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3B13C13C442; Mon, 20 Aug 2007 16:12:48 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KGCmp8012780; Mon, 20 Aug 2007 16:12:48 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KGCmno012779; Mon, 20 Aug 2007 16:12:48 GMT (envelope-from sat) Message-Id: <200708201612.l7KGCmno012779@repoman.freebsd.org> From: Andrew Pantyukhin Date: Mon, 20 Aug 2007 16:12: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/russian/xneur 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, 20 Aug 2007 16:12:48 -0000 sat 2007-08-20 16:12:47 UTC FreeBSD ports repository Modified files: russian/xneur Makefile distinfo pkg-plist Log: - Update to 0.6.2 PR: ports/114704 Submitted by: Alex Keda (maintainer) Revision Changes Path 1.6 +4 -3 ports/russian/xneur/Makefile 1.4 +3 -3 ports/russian/xneur/distinfo 1.4 +1 -1 ports/russian/xneur/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 20 16:22:11 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 219DC16A41B; Mon, 20 Aug 2007 16:22:11 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0F04813C491; Mon, 20 Aug 2007 16:22:11 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KGMAJZ016849; Mon, 20 Aug 2007 16:22:10 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KGMAN4016848; Mon, 20 Aug 2007 16:22:10 GMT (envelope-from itetcu) Message-Id: <200708201622.l7KGMAN4016848@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Mon, 20 Aug 2007 16:22:10 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11-wm/sapphire Makefile distinfo pkg-descr pkg-plist ports/x11-wm/sapphire/files patch-Makefile patch-ab patch-ac patch-image.cc patch-linkedlist.cc patch-linkedlist.hh patch-src_linkedlist.hh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 16:22:11 -0000 itetcu 2007-08-20 16:22:10 UTC FreeBSD ports repository Modified files: x11-wm/sapphire Makefile distinfo pkg-descr pkg-plist Added files: x11-wm/sapphire/files patch-Makefile patch-image.cc patch-linkedlist.cc patch-linkedlist.hh Removed files: x11-wm/sapphire/files patch-ab patch-ac patch-src_linkedlist.hh Log: - Update to 0.15.7 - Pass maintainership to submitter Added file(s): - files/patch-Makefile - files/patch-image.cc - files/patch-linkedlist.cc - files/patch-linkedlist.hh Removed file(s): - files/patch-ab - files/patch-ac - files/patch-src_linkedlist.hh PR: ports/115470 Submitted by: Thomas Abthorpe Revision Changes Path 1.17 +6 -10 ports/x11-wm/sapphire/Makefile 1.8 +3 -3 ports/x11-wm/sapphire/distinfo 1.1 +15 -0 ports/x11-wm/sapphire/files/patch-Makefile (new) 1.2 +0 -11 ports/x11-wm/sapphire/files/patch-ab (dead) 1.3 +0 -80 ports/x11-wm/sapphire/files/patch-ac (dead) 1.1 +78 -0 ports/x11-wm/sapphire/files/patch-image.cc (new) 1.1 +29 -0 ports/x11-wm/sapphire/files/patch-linkedlist.cc (new) 1.1 +29 -0 ports/x11-wm/sapphire/files/patch-linkedlist.hh (new) 1.2 +0 -13 ports/x11-wm/sapphire/files/patch-src_linkedlist.hh (dead) 1.7 +0 -2 ports/x11-wm/sapphire/pkg-descr 1.7 +2 -2 ports/x11-wm/sapphire/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 20 16:24:37 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5309516A41A; Mon, 20 Aug 2007 16:24:37 +0000 (UTC) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 17ACE13C45A; Mon, 20 Aug 2007 16:24:37 +0000 (UTC) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KGOa8n017834; Mon, 20 Aug 2007 16:24:36 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KGOaoF017833; Mon, 20 Aug 2007 16:24:36 GMT (envelope-from sem) Message-Id: <200708201624.l7KGOaoF017833@repoman.freebsd.org> From: Sergey Matveychuk Date: Mon, 20 Aug 2007 16:24:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/zmailer Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 16:24:37 -0000 sem 2007-08-20 16:24:36 UTC FreeBSD ports repository Modified files: mail/zmailer Makefile Log: - BROKEN -> IGNORE and more clean messge Revision Changes Path 1.30 +1 -1 ports/mail/zmailer/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 20 16:20:57 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C401016A417; Mon, 20 Aug 2007 16:20:57 +0000 (UTC) (envelope-from krismoore@comcast.net) Received: from alnrmhc11.comcast.net (alnrmhc11.comcast.net [206.18.177.51]) by mx1.freebsd.org (Postfix) with ESMTP id 1271813C45E; Mon, 20 Aug 2007 16:20:57 +0000 (UTC) (envelope-from krismoore@comcast.net) Received: from [192.168.1.102] (c-67-170-130-86.hsd1.wa.comcast.net[67.170.130.86]) by comcast.net (alnrmhc11) with ESMTP id <20070820162041b1100r2p3ge>; Mon, 20 Aug 2007 16:20:56 +0000 Message-ID: <46C9BF66.101@comcast.net> Date: Mon, 20 Aug 2007 09:20:54 -0700 From: Kris Moore User-Agent: Thunderbird 2.0.0.6 (Windows/20070728) MIME-Version: 1.0 To: Scott Long References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C4FD02.3090708@freebsd.org> <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> <46C7A9A4.5090404@samsco.org> <20070819095302.D66918@fledge.watson.org> <46C863C5.6090906@comcast.net><20070820093009.GE87451@elvis.mu.org> <222044094-1187603330-cardhu_decombobulator_blackberry.rim.net-1638751523-@bxe027.bisx.prod.on.blackberry> <46C9AE64.50705@samsco.org> In-Reply-To: <46C9AE64.50705@samsco.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Mon, 20 Aug 2007 16:25:27 +0000 Cc: wine-freebsd@hub.org, src-committers@FreeBSD.org, cvs-src@FreeBSD.org, Alfred Perlstein , cvs-all@FreeBSD.org, Daniel Eischen , Robert Watson , David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 16:20:57 -0000 Scott Long wrote: > Having it as a loadable module that is essentially private to PC-BSD > (though open source, of course) will lead to questions of why Wine works > in PC-BSD and not FreeBSD. That's fine if your intention is to create > a fork of FreeBSD, but I don't know if that's what you really want. > > Scott > Scott, We have no intention or desire to have a fork of FreeBSD at all, which is why I would LOVE to see this patch go into 6-Stable before we release. Right now our testing ISO's are being built with the patch for Q/A purposes. and it works so well that I couldn't imagine not having our next release include it. Any way you guys can make that happen, would really help a TON of desktop users such as myself. -- Kris Moore PC-BSD Software From owner-cvs-all@FreeBSD.ORG Mon Aug 20 16:40:57 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1F51E16A417; Mon, 20 Aug 2007 16:40:57 +0000 (UTC) (envelope-from rpaulo@fnop.net) Received: from core.fnop.net (mx.fnop.net [82.102.11.82]) by mx1.freebsd.org (Postfix) with ESMTP id 8630613C49D; Mon, 20 Aug 2007 16:40:56 +0000 (UTC) (envelope-from rpaulo@fnop.net) Received: from core.fnop.net (mx.fnop.net [82.102.11.82]) by core.fnop.net (Postfix) with ESMTP id 98CA2691061; Mon, 20 Aug 2007 17:44:32 +0100 (WEST) Received: by core.fnop.net (Postfix, from userid 1015) id 53B3669106F; Mon, 20 Aug 2007 17:44:32 +0100 (WEST) X-Spam-Checker-Version: SpamAssassin 3.1.7 (2006-10-05) on core.fnop.net X-Spam-Level: * X-Spam-Status: No, score=1.3 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DSBL, RCVD_IN_SORBS_DUL autolearn=no version=3.1.7 Received: from epsilon.local (unknown [83.144.141.37]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by core.fnop.net (Postfix) with ESMTP id CB1C5691061; Mon, 20 Aug 2007 17:44:28 +0100 (WEST) Message-ID: <46C9C413.5020102@fnop.net> Date: Mon, 20 Aug 2007 17:40:51 +0100 From: Rui Paulo User-Agent: Thunderbird 2.0.0.6 (Macintosh/20070728) MIME-Version: 1.0 To: Olivier Houchard References: <200708201533.l7KFXNn1095584@repoman.freebsd.org> In-Reply-To: <200708201533.l7KFXNn1095584@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/gnu/fs/xfs/FreeBSD xfs_mountops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 16:40:57 -0000 Olivier Houchard wrote: > cognet 2007-08-20 15:33:23 UTC > > FreeBSD src repository > > Modified files: > sys/gnu/fs/xfs/FreeBSD xfs_mountops.c > Log: > Some times ago, vfs_getopts() was changed, so that it would set error to > ENOENT if the option wasn't provided, instead of setting it to 0. > xfs however didn't catch up on this, so it assumed something went bad if > vfs_getopts() sets the error to non-zero, and just returns the error. > Unbreak xfs mount by just ignoring the error if vfs_getopts() sets the > error to ENOENT, as we should have sane defaults. > > Reviewed by: kan > Approved by: re (rwatson) > Tested by: rpaulo Thanks! -- Rui Paulo From owner-cvs-all@FreeBSD.ORG Mon Aug 20 16:48:02 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0AAB916A417; Mon, 20 Aug 2007 16:48:02 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D6FE213C4DD; Mon, 20 Aug 2007 16:48:01 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KGm1qo036715; Mon, 20 Aug 2007 16:48:01 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KGm1fD036714; Mon, 20 Aug 2007 16:48:01 GMT (envelope-from blackend) Message-Id: <200708201648.l7KGm1fD036714@repoman.freebsd.org> From: Marc Fonvieille Date: Mon, 20 Aug 2007 16:48:01 +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: Mon, 20 Aug 2007 16:48:02 -0000 blackend 2007-08-20 16:48:01 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/disks chapter.sgml Log: - Various SGML fixes (use of correct tags); - Avoid the capitalization of the geli command; - In disk encryption section, reword a sentence mentioning old removed swap encryption stuff; - Slight rewording of a title to match what we really talk about; - Punctuation fix where needed. Revision Changes Path 1.275 +15 -18 doc/en_US.ISO8859-1/books/handbook/disks/chapter.sgml From owner-cvs-all@FreeBSD.ORG Mon Aug 20 16:29:49 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B89BE16A418; Mon, 20 Aug 2007 16:29:49 +0000 (UTC) (envelope-from scrappy@hub.org) Received: from hub.org (hub.org [200.46.204.220]) by mx1.freebsd.org (Postfix) with ESMTP id 428DB13C46C; Mon, 20 Aug 2007 16:29:49 +0000 (UTC) (envelope-from scrappy@hub.org) Received: from localhost (maia-1.hub.org [200.46.204.191]) by hub.org (Postfix) with ESMTP id A818CB46FE5; Mon, 20 Aug 2007 13:29:48 -0300 (ADT) Received: from hub.org ([200.46.204.220]) by localhost (mx1.hub.org [200.46.204.191]) (amavisd-maia, port 10024) with ESMTP id 25084-01; Mon, 20 Aug 2007 13:29:38 -0300 (ADT) Received: from fserv.hub.org (blk-89-241-126.eastlink.ca [24.89.241.126]) by hub.org (Postfix) with ESMTP id 10095B46818; Mon, 20 Aug 2007 13:24:38 -0300 (ADT) Received: from [192.168.1.2] (unknown [192.168.1.2]) by fserv.hub.org (Postfix) with ESMTP id DE192E65FB; Mon, 20 Aug 2007 13:24:37 -0300 (ADT) Date: Mon, 20 Aug 2007 13:24:22 -0300 From: "Marc G. Fournier" To: Scott Long , Kris Moore Message-ID: <87BDE21001E9C907935CF6EB@ganymede.hub.org> In-Reply-To: <46C9AE64.50705@samsco.org> References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C4FD02.3090708@freebsd.org> <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> <46C7A9A4.5090404@samsco.org> <20070819095302.D66918@fledge.watson.org> <46C863C5.6090906@comcast.net><20070820093009.GE87451@elvis.mu.org> <222044094-1187603330-cardhu_decombobulator_blackberry.rim.net-1638751523-@bxe027.bisx.prod.on.blackberry> <46C9AE64.50705@samsco.org> X-Mailer: Mulberry/4.0.8 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Mailman-Approved-At: Mon, 20 Aug 2007 16:51:39 +0000 Cc: wine-freebsd@hub.org, src-committers@FreeBSD.org, cvs-src@FreeBSD.org, Alfred Perlstein , cvs-all@FreeBSD.org, Daniel Eischen , Robert Watson , David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 16:29:49 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 - --On Monday, August 20, 2007 09:08:20 -0600 Scott Long wrote: > Having it as a loadable module that is essentially private to PC-BSD (though > open source, of course) will lead to questions of why Wine works > in PC-BSD and not FreeBSD. That's fine if your intention is to create > a fork of FreeBSD, but I don't know if that's what you really want. Stupid question here, but wouldn't such a KLD work under both PC-BSD and FreeBSD? Something that we could put into ports and make a dependency *of* Wine? I kinda hate to see us do a whole whack of work on the Wine side when the problem is a deficiency on our part that Solaris, MacOS X and Linux have already seemed to dealt with :( > > Scott > > > Kris Moore wrote: >> The thought of a KLD hadn't occured to me actually. We are very close to >> releasing 1.4RC1 though, so it may be a bit to close to work that out at the >> moment. Tijl would probably be the one to ask about that though, since he's >> the one making all this come together :) >> >> However we will ship with the sys source on our disk 2, patch included. >> We'll just have to ensure we let users know when they do a csup to re-apply >> the wine patches manually. >> >> Sent via BlackBerry by AT&T >> >> -----Original Message----- >> From: Alfred Perlstein >> >> Date: Mon, 20 Aug 2007 02:30:09 >> To:Kris Moore >> Cc:Robert Watson , Scott Long >> ,Daniel Eischen ,Tijl Coosemans >> , David Xu ,wine-freebsd@hub.org, Xin >> LI ,src-committers@FreeBSD.org, >> cvs-src@FreeBSD.org,cvs-all@FreeBSD.org Subject: Re: cvs commit: >> src/sys/kern kern_thr.c syscalls.master src/sys/sys >> >> >> * Kris Moore [070819 08:50] wrote: >>> Even if you decide to only add this new functionality to FreeBSD 7.x, >>> that's fine with us. Our next release of PC-BSD will be our last based >>> on FreeBSD 6.x before moving to 7. We're committed to shipping with the >>> patch Tijl wrote, since the improvements to Wine with it are night and >>> day. Of course if you roll this into the tree, all the better since I >>> won't have to spend the next 6 months to a year reminding users that >>> when they update world, they have to apply the Wine patch first ;-) >> >> Kris, I support the patch. >> >> That said, have you toyed with implementing this as a kld that >> you can ship with your code? >> > - ---- Marc G. Fournier Hub.Org Networking Services (http://www.hub.org) Email . scrappy@hub.org MSN . scrappy@hub.org Yahoo . yscrappy Skype: hub.org ICQ . 7615664 -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQFGycA24QvfyHIvDvMRAgTWAKCtXFIsjCUyt1UPRM9JQSr+L/yexQCeJ56Q TDxTtLZy/up0aCz9xKYq0Wo= =4/Us -----END PGP SIGNATURE----- From owner-cvs-all@FreeBSD.ORG Mon Aug 20 16:32:49 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 426F616A41A; Mon, 20 Aug 2007 16:32:49 +0000 (UTC) Date: Mon, 20 Aug 2007 16:32:49 +0000 From: Alexey Dokuchaev To: Scott Long Message-ID: <20070820163249.GA28082@FreeBSD.org> References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C4FD02.3090708@freebsd.org> <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> <46C7A9A4.5090404@samsco.org> <20070819095302.D66918@fledge.watson.org> <222044094-1187603330-cardhu_decombobulator_blackberry.rim.net-1638751523-@bxe027.bisx.prod.on.blackberry> <46C9AE64.50705@samsco.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <46C9AE64.50705@samsco.org> User-Agent: Mutt/1.4.2.1i X-Mailman-Approved-At: Mon, 20 Aug 2007 16:51:39 +0000 Cc: wine-freebsd@hub.org, Kris Moore , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, Alfred Perlstein , cvs-all@FreeBSD.org, Daniel Eischen , Robert Watson , David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 16:32:49 -0000 On Mon, Aug 20, 2007 at 09:08:20AM -0600, Scott Long wrote: > Having it as a loadable module that is essentially private to PC-BSD > (though open source, of course) will lead to questions of why Wine works > in PC-BSD and not FreeBSD. Why not simply RUN_DEPEND on it in wine port? If that's not possible, I don't really see how having such module helps. ./danfe From owner-cvs-all@FreeBSD.ORG Mon Aug 20 16:52:43 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DF53E16A420; Mon, 20 Aug 2007 16:52:43 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id CE9DB13C48D; Mon, 20 Aug 2007 16:52:43 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KGqhtv038914; Mon, 20 Aug 2007 16:52:43 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KGqhZk038913; Mon, 20 Aug 2007 16:52:43 GMT (envelope-from itetcu) Message-Id: <200708201652.l7KGqhZk038913@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Mon, 20 Aug 2007 16:52: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/deskutils Makefile ports/deskutils/qorganizer 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, 20 Aug 2007 16:52:44 -0000 itetcu 2007-08-20 16:52:43 UTC FreeBSD ports repository Modified files: deskutils Makefile Added files: deskutils/qorganizer Makefile distinfo pkg-descr Log: qOrganizer is a general organizer that includes a calendar with schedule, reminders,journal/notes for every day, to-do list.But provides features useful for students such as:timetable and a booklet for marks and absences. It's designed to be easy to use. WWW: http://qorganizer.sourceforge.net/ PR: ports/ports/115650 Submitted by: Yinghong Liu Revision Changes Path 1.306 +1 -0 ports/deskutils/Makefile 1.1 +44 -0 ports/deskutils/qorganizer/Makefile (new) 1.1 +3 -0 ports/deskutils/qorganizer/distinfo (new) 1.1 +6 -0 ports/deskutils/qorganizer/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Mon Aug 20 16:53:09 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D5A716A417; Mon, 20 Aug 2007 16:53:09 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0664413C483; Mon, 20 Aug 2007 16:53:09 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KGr8Mk039084; Mon, 20 Aug 2007 16:53:08 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KGr8fo039083; Mon, 20 Aug 2007 16:53:08 GMT (envelope-from itetcu) Message-Id: <200708201653.l7KGr8fo039083@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Mon, 20 Aug 2007 16:53: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: Mon, 20 Aug 2007 16:53:09 -0000 itetcu 2007-08-20 16:53:08 UTC FreeBSD ports repository Modified files: . modules Log: qorganizer --> ports/deskutils/qorganizer Revision Changes Path 1.18563 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Aug 20 17:14:38 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E834916A420; Mon, 20 Aug 2007 17:14:38 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BF27D13C48E; Mon, 20 Aug 2007 17:14:38 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KHEcEu049700; Mon, 20 Aug 2007 17:14:38 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KHEcb0049699; Mon, 20 Aug 2007 17:14:38 GMT (envelope-from itetcu) Message-Id: <200708201714.l7KHEcb0049699@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Mon, 20 Aug 2007 17:14: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/mod_clamav Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 17:14:39 -0000 itetcu 2007-08-20 17:14:38 UTC FreeBSD ports repository Modified files: www/mod_clamav Makefile Log: Mark broken. PR: ports/115648 Submitted by: Tom Mueller-Kortkamp Revision Changes Path 1.10 +2 -0 ports/www/mod_clamav/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 20 17:41:04 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CCDD116A417; Mon, 20 Aug 2007 17:41:04 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BD61A13C4CB; Mon, 20 Aug 2007 17:41:04 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KHf4Et061780; Mon, 20 Aug 2007 17:41:04 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KHf4eR061777; Mon, 20 Aug 2007 17:41:04 GMT (envelope-from itetcu) Message-Id: <200708201741.l7KHf4eR061777@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Mon, 20 Aug 2007 17: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/graphics Makefile ports/graphics/autoq3d 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, 20 Aug 2007 17:41:04 -0000 itetcu 2007-08-20 17:41:04 UTC FreeBSD ports repository Modified files: graphics Makefile Added files: graphics/autoq3d Makefile distinfo pkg-descr pkg-plist Log: AutoQ3D Community is the open source software project of this 3D modeling application. WWW: http://autoq3d.ecuadra.com/ PR: ports/ports/114889 Submitted by: Yinghong.Liu Revision Changes Path 1.1092 +1 -0 ports/graphics/Makefile 1.1 +63 -0 ports/graphics/autoq3d/Makefile (new) 1.1 +3 -0 ports/graphics/autoq3d/distinfo (new) 1.1 +4 -0 ports/graphics/autoq3d/pkg-descr (new) 1.1 +57 -0 ports/graphics/autoq3d/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Aug 20 17:41:32 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C70616A469; Mon, 20 Aug 2007 17:41:32 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0554213C4B3; Mon, 20 Aug 2007 17:41:32 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KHfVWK062072; Mon, 20 Aug 2007 17:41:31 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KHfVUU062071; Mon, 20 Aug 2007 17:41:31 GMT (envelope-from itetcu) Message-Id: <200708201741.l7KHfVUU062071@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Mon, 20 Aug 2007 17:41: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: Mon, 20 Aug 2007 17:41:32 -0000 itetcu 2007-08-20 17:41:31 UTC FreeBSD ports repository Modified files: . modules Log: autoq3d --> ports/graphics/autoq3d Revision Changes Path 1.18564 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Aug 20 17:55:31 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9A29416A4CE; Mon, 20 Aug 2007 17:55:31 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8A6B313C481; Mon, 20 Aug 2007 17:55:31 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KHtVch073521; Mon, 20 Aug 2007 17:55:31 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KHtVPm073517; Mon, 20 Aug 2007 17:55:31 GMT (envelope-from itetcu) Message-Id: <200708201755.l7KHtVPm073517@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Mon, 20 Aug 2007 17:55: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 Makefile ports/security/chaosreader 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, 20 Aug 2007 17:55:31 -0000 itetcu 2007-08-20 17:55:31 UTC FreeBSD ports repository Modified files: security Makefile Added files: security/chaosreader Makefile distinfo pkg-descr Log: Chaosreader is a perl script that parses snoop or tcpdump logs and extracts sessions for a number of different appplications: ssh, telnet, smtp, irc, ftp, etc. The data are formatted into an html file and can be used to replay some sessions. Sshkeydata is a perl script that attempts to recreate ssh sessions extracted by chaosreader by estimating what commands may have been typed. Both scripts are installed in ${PREFIX}/bin WWW: http://sourceforge.net/projects/chaosreader PR: ports/115125 Submitted by: pauls Revision Changes Path 1.911 +1 -0 ports/security/Makefile 1.1 +36 -0 ports/security/chaosreader/Makefile (new) 1.1 +6 -0 ports/security/chaosreader/distinfo (new) 1.1 +12 -0 ports/security/chaosreader/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Mon Aug 20 17:55:55 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1AB5B16A41B; Mon, 20 Aug 2007 17:55:55 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E6E7C13C481; Mon, 20 Aug 2007 17:55:54 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KHts3t073724; Mon, 20 Aug 2007 17:55:54 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KHtsbo073723; Mon, 20 Aug 2007 17:55:54 GMT (envelope-from itetcu) Message-Id: <200708201755.l7KHtsbo073723@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Mon, 20 Aug 2007 17:55: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: Mon, 20 Aug 2007 17:55:55 -0000 itetcu 2007-08-20 17:55:54 UTC FreeBSD ports repository Modified files: . modules Log: chaosreader --> ports/security/chaosreader Revision Changes Path 1.18565 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Aug 20 18:00:59 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D166916A41A; Mon, 20 Aug 2007 18:00:59 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AA66E13C474; Mon, 20 Aug 2007 18:00:59 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KI0xuj074422; Mon, 20 Aug 2007 18:00:59 GMT (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KI0xsW074421; Mon, 20 Aug 2007 18:00:59 GMT (envelope-from ume) Message-Id: <200708201800.l7KI0xsW074421@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Mon, 20 Aug 2007 18:00: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/japanese/tomoe Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 18:00:59 -0000 ume 2007-08-20 18:00:59 UTC FreeBSD ports repository Modified files: japanese/tomoe Makefile Log: Require textproc/p5-XML-Parser for build. Revision Changes Path 1.12 +4 -2 ports/japanese/tomoe/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 20 18:21:09 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F350216A417 for ; Mon, 20 Aug 2007 18:21:08 +0000 (UTC) (envelope-from mattjreimer@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.239]) by mx1.freebsd.org (Postfix) with ESMTP id 9775713C491 for ; Mon, 20 Aug 2007 18:21:08 +0000 (UTC) (envelope-from mattjreimer@gmail.com) Received: by wr-out-0506.google.com with SMTP id 70so924249wra for ; Mon, 20 Aug 2007 11:21:08 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=FrgwzzIYf9/KluhGUjYAQQjghx3B3uuiQJ+K6hp/Lf60+cPpNH5/85TC1T4rvs6GPDVaqrANVWAD8zIpaz+Qa+DM5U+9GZMV4JVLJJdeQJ89mzzsuli4iWpgN6OwVem5lbmf59my+2NNpSZtcIB42LMmyUgIdqocC40CCXAwcOM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=k0OM4pCTIsE3B02TCA9Pfu/H1Sr8GeIJIC2ZqD9KYWahKuZXrRKLIuEPECP3KGuevUlnO1dpSG+x1n293tB2I190FlcyuA1Q2hcUn0G++SnnEN/+ge9i9ReoGYD1VTEm3Nej8A9gxuc5b+fK1LAKsGZM9xKTOuvWbmCaqDTh/5s= Received: by 10.90.34.3 with SMTP id h3mr10419957agh.1187632599192; Mon, 20 Aug 2007 10:56:39 -0700 (PDT) Received: by 10.100.122.7 with HTTP; Mon, 20 Aug 2007 10:56:39 -0700 (PDT) Message-ID: Date: Mon, 20 Aug 2007 10:56:39 -0700 From: "Matt Reimer" To: "Robert Watson" In-Reply-To: <20070819095302.D66918@fledge.watson.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C4FD02.3090708@freebsd.org> <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> <46C7A9A4.5090404@samsco.org> <20070819095302.D66918@fledge.watson.org> X-Mailman-Approved-At: Mon, 20 Aug 2007 18:33:23 +0000 Cc: wine-freebsd@hub.org, Scott Long , src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, Daniel Eischen , David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys thr.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, 20 Aug 2007 18:21:09 -0000 On 8/19/07, Robert Watson wrote: > > On Sat, 18 Aug 2007, Scott Long wrote: > > >> You can say that about a lot of APIs, but that doesn't mean we should add > >> them. This is a bit of a hack to satisfy one application (Wine) when there > >> are other (perhaps harder) ways to skin the cat. We certainly don't want > >> anything else using this API, so I'd advocate removing it. > > > > I'm in strong agreement here. David? > > This work was done by Tijl at the request of the PC-BSD guys, who would like > to be able to run windows applications out of the box on PC-BSD for their next > release (impending). David then reviewed and committed the patch giving it > his approval. The goal here was to avoid having the PC-BSD people have to run > around with additional system call patches for the forseeable future, and to > avoid requiring PC-BSD to fork the FreeBSD kernel to do that. In the meantime, how about implementing the syscall as a module that builds out of ports, using SYSCALL_MODULE() on the kernel side and modfind() on the userland side? That way the wine guys aren't blocked, but neither is code added to the kernel prematurely. Matt From owner-cvs-all@FreeBSD.ORG Mon Aug 20 18:31:00 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9B1C416A41A; Mon, 20 Aug 2007 18:31:00 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id 73EE813C478; Mon, 20 Aug 2007 18:30:55 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 807161A4D8D; Mon, 20 Aug 2007 11:29:05 -0700 (PDT) Date: Mon, 20 Aug 2007 11:29:05 -0700 From: Alfred Perlstein To: Scott Long Message-ID: <20070820182905.GH87451@elvis.mu.org> References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C4FD02.3090708@freebsd.org> <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> <46C7A9A4.5090404@samsco.org> <20070819095302.D66918@fledge.watson.org> <222044094-1187603330-cardhu_decombobulator_blackberry.rim.net-1638751523-@bxe027.bisx.prod.on.blackberry> <46C9AE64.50705@samsco.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <46C9AE64.50705@samsco.org> User-Agent: Mutt/1.4.2.3i X-Mailman-Approved-At: Mon, 20 Aug 2007 18:33:23 +0000 Cc: wine-freebsd@hub.org, Kris Moore , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, Daniel Eischen , Robert Watson , David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 18:31:00 -0000 * Scott Long [070820 08:08] wrote: > Having it as a loadable module that is essentially private to PC-BSD > (though open source, of course) will lead to questions of why Wine works > in PC-BSD and not FreeBSD. That's fine if your intention is to create > a fork of FreeBSD, but I don't know if that's what you really want. > Honestly I think he wants to contribute to the project, but you won't to punish him for it... I don't know why, it's not like you but whatever. I gave him a way to get around all the bs and continue with life, no need to guilt trip him on it. -Alfred > Scott > > > Kris Moore wrote: > >The thought of a KLD hadn't occured to me actually. We are very close to > >releasing 1.4RC1 though, so it may be a bit to close to work that out at > >the moment. Tijl would probably be the one to ask about that though, since > >he's the one making all this come together :) > > > >However we will ship with the sys source on our disk 2, patch included. > >We'll just have to ensure we let users know when they do a csup to > >re-apply the wine patches manually. > >Sent via BlackBerry by AT&T > > > >-----Original Message----- > >From: Alfred Perlstein > > > >Date: Mon, 20 Aug 2007 02:30:09 > >To:Kris Moore > >Cc:Robert Watson , Scott Long > >,Daniel Eischen ,Tijl Coosemans > >, David Xu ,wine-freebsd@hub.org, > >Xin LI ,src-committers@FreeBSD.org, > >cvs-src@FreeBSD.org,cvs-all@FreeBSD.org > >Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master > >src/sys/sys > > > > > >* Kris Moore [070819 08:50] wrote: > >>Even if you decide to only add this new functionality to FreeBSD 7.x, > >>that's fine with us. Our next release of PC-BSD will be our last based > >>on FreeBSD 6.x before moving to 7. We're committed to shipping with the > >>patch Tijl wrote, since the improvements to Wine with it are night and > >>day. Of course if you roll this into the tree, all the better since I > >>won't have to spend the next 6 months to a year reminding users that > >>when they update world, they have to apply the Wine patch first ;-) > > > >Kris, I support the patch. > > > >That said, have you toyed with implementing this as a kld that > >you can ship with your code? > > -- - Alfred Perlstein From owner-cvs-all@FreeBSD.ORG Mon Aug 20 18:49:27 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ACC6C16A476; Mon, 20 Aug 2007 18:49:27 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id 88F1B13C461; Mon, 20 Aug 2007 18:49:27 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id D85D91A4D90; Mon, 20 Aug 2007 11:47:37 -0700 (PDT) Date: Mon, 20 Aug 2007 11:47:37 -0700 From: Alfred Perlstein To: Matthew Dillon Message-ID: <20070820184737.GJ87451@elvis.mu.org> References: <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> <46C7A9A4.5090404@samsco.org> <20070819095302.D66918@fledge.watson.org> <222044094-1187603330-cardhu_decombobulator_blackberry.rim.net-1638751523-@bxe027.bisx.prod.on.blackberry> <46C9AE64.50705@samsco.org> <20070820182905.GH87451@elvis.mu.org> <200708201842.l7KIgAbd040030@apollo.backplane.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200708201842.l7KIgAbd040030@apollo.backplane.com> User-Agent: Mutt/1.4.2.3i X-Mailman-Approved-At: Mon, 20 Aug 2007 18:52:13 +0000 Cc: wine-freebsd@hub.org, Kris Moore , Scott Long , src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, Daniel Eischen , Robert Watson , David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 18:49:27 -0000 * Matthew Dillon [070820 11:43] wrote: > We have a lwp_kill() system call that sends a signal to a thread within > a process. It turns out to be fairly necessary for any sort of heavily > integrated multi-threaded work. In our case we need it to be able to > issue IPIs (aka SIGUSR1) to cpus within a SMP virtual kernel. > > int lwp_kill(pid_t pid, lwpid_t tid, int sig); > > -Matt It's always bothered me that there wasn't a generation count included in the kill(2) interface. What do you think about that? It would be useful for pidfiles to ensure that a recycled pid doesn't get a program SIGwhatever'd. -- - Alfred Perlstein From owner-cvs-all@FreeBSD.ORG Mon Aug 20 18:52:49 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1F5D616A419; Mon, 20 Aug 2007 18:52:49 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.freebsd.org (Postfix) with ESMTP id 9179C13C481; Mon, 20 Aug 2007 18:52:48 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from phobos.samsco.home (phobos.samsco.home [192.168.254.11]) (authenticated bits=0) by pooker.samsco.org (8.13.8/8.13.8) with ESMTP id l7KIpKca056568; Mon, 20 Aug 2007 12:51:20 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <46C9E2A7.8030202@samsco.org> Date: Mon, 20 Aug 2007 12:51:19 -0600 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.6) Gecko/20070802 SeaMonkey/1.1.4 MIME-Version: 1.0 To: Alfred Perlstein References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C4FD02.3090708@freebsd.org> <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> <46C7A9A4.5090404@samsco.org> <20070819095302.D66918@fledge.watson.org> <222044094-1187603330-cardhu_decombobulator_blackberry.rim.net-1638751523-@bxe027.bisx.prod.on.blackberry> <46C9AE64.50705@samsco.org> <20070820182905.GH87451@elvis.mu.org> In-Reply-To: <20070820182905.GH87451@elvis.mu.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (pooker.samsco.org [168.103.85.57]); Mon, 20 Aug 2007 12:51:20 -0600 (MDT) X-Spam-Status: No, score=-1.4 required=5.5 tests=ALL_TRUSTED autolearn=failed version=3.1.8 X-Spam-Checker-Version: SpamAssassin 3.1.8 (2007-02-13) on pooker.samsco.org X-Mailman-Approved-At: Mon, 20 Aug 2007 18:56:31 +0000 Cc: wine-freebsd@hub.org, Kris Moore , src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, Daniel Eischen , Robert Watson , David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 18:52:49 -0000 Alfred Perlstein wrote: > * Scott Long [070820 08:08] wrote: >> Having it as a loadable module that is essentially private to PC-BSD >> (though open source, of course) will lead to questions of why Wine works >> in PC-BSD and not FreeBSD. That's fine if your intention is to create >> a fork of FreeBSD, but I don't know if that's what you really want. >> > > Honestly I think he wants to contribute to the project, but you > won't to punish him for it... I don't know why, it's not like you > but whatever. > > I gave him a way to get around all the bs and continue with life, > no need to guilt trip him on it. > > -Alfred > I'm official out of this discussion. For the record, I have a lot of respect for the PC-BSD guys and I'm very happy that they are doing this work, I was just trying to provide some guidance so that this doesn't turn into a bad hack that we regret years from now. But whatever, it's quite obvious that my input is unwelcome. The subtle and not so subtle attacks from you and Robert really aren't warranted at all. Please drop me from all future emails on this subject. Thanks. Scott From owner-cvs-all@FreeBSD.ORG Mon Aug 20 19:31:21 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8B91D16A46D; Mon, 20 Aug 2007 19:31:21 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id 72C0913C4EB; Mon, 20 Aug 2007 19:31:21 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 9E8171A4D8E; Mon, 20 Aug 2007 12:29:31 -0700 (PDT) Date: Mon, 20 Aug 2007 12:29:31 -0700 From: Alfred Perlstein To: "Marc G. Fournier" Message-ID: <20070820192931.GK87451@elvis.mu.org> References: <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> <46C7A9A4.5090404@samsco.org> <20070819095302.D66918@fledge.watson.org> <222044094-1187603330-cardhu_decombobulator_blackberry.rim.net-1638751523-@bxe027.bisx.prod.on.blackberry> <46C9AE64.50705@samsco.org> <20070820182905.GH87451@elvis.mu.org> <46C9E2A7.8030202@samsco.org> <1639123F05401A4F2A1C3F33@ganymede.hub.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1639123F05401A4F2A1C3F33@ganymede.hub.org> User-Agent: Mutt/1.4.2.3i Cc: wine-freebsd@hub.org, cvs-src@freebsd.org, src-committers@freebsd.org, Xin LI , cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 19:31:21 -0000 * The Hermit Hacker [070820 11:59] wrote: > > Just for the record here, I think that Scott did bring up a very valid point in > what he had said ... Kris did mention 'PC-BSD including it even if FreeBSD > didn't' (or words to that effect), and Scott's response was only meant (at > least the way I had read it) to bring us back into focus that we are better to > come up with a BSD solution vs risking further forking of code ... > > Please note that in all of this dicussion, it is only been recent that someone > mentioned a 'kld solution', which I think would be cool ... > > I do think that the 'mud slinging' at Scott was quite out of place ... There was no mud being slung, threatening someone with a fork because they choose to go with a kld until the developers can accept a new call (that exists in just about every other OS)... whatever dude. I suggested the kld by the way. -Alfred From owner-cvs-all@FreeBSD.ORG Mon Aug 20 19:31:23 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1220116A41A; Mon, 20 Aug 2007 19:31:23 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DEBE313C4B0; Mon, 20 Aug 2007 19:31:22 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KJVMtx082140; Mon, 20 Aug 2007 19:31:22 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KJVMM0082139; Mon, 20 Aug 2007 19:31:22 GMT (envelope-from arved) Message-Id: <200708201931.l7KJVMM0082139@repoman.freebsd.org> From: Tilman Linneweh Date: Mon, 20 Aug 2007 19:31:22 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/grpplaylist 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, 20 Aug 2007 19:31:23 -0000 arved 2007-08-20 19:31:22 UTC FreeBSD ports repository Modified files: multimedia/grpplaylist pkg-plist Log: Fix pkg-plist. Reported by: pointyhat Revision Changes Path 1.2 +1 -0 ports/multimedia/grpplaylist/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 20 19:47:13 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9DEFF16A420; Mon, 20 Aug 2007 19:47:13 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5426E13C48A; Mon, 20 Aug 2007 19:47:13 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KJlD8X083108; Mon, 20 Aug 2007 19:47:13 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KJlDCa083107; Mon, 20 Aug 2007 19:47:13 GMT (envelope-from arved) Message-Id: <200708201947.l7KJlDCa083107@repoman.freebsd.org> From: Tilman Linneweh Date: Mon, 20 Aug 2007 19:47:13 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11-toolkits/SoXt Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 19:47:13 -0000 arved 2007-08-20 19:47:13 UTC FreeBSD ports repository Modified files: x11-toolkits/SoXt Makefile Log: Build requires perl. Reported by: pointyhat Revision Changes Path 1.11 +1 -0 ports/x11-toolkits/SoXt/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 20 18:56:47 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 231E216A419; Mon, 20 Aug 2007 18:56:47 +0000 (UTC) (envelope-from dillon@apollo.backplane.com) Received: from apollo.backplane.com (apollo.backplane.com [216.240.41.2]) by mx1.freebsd.org (Postfix) with ESMTP id E6E6D13C4B6; Mon, 20 Aug 2007 18:56:46 +0000 (UTC) (envelope-from dillon@apollo.backplane.com) Received: from apollo.backplane.com (localhost [127.0.0.1]) by apollo.backplane.com (8.14.1/8.13.7) with ESMTP id l7KIgB8f040031; Mon, 20 Aug 2007 11:42:11 -0700 (PDT) Received: (from dillon@localhost) by apollo.backplane.com (8.14.1/8.13.4/Submit) id l7KIgAbd040030; Mon, 20 Aug 2007 11:42:10 -0700 (PDT) Date: Mon, 20 Aug 2007 11:42:10 -0700 (PDT) From: Matthew Dillon Message-Id: <200708201842.l7KIgAbd040030@apollo.backplane.com> To: Alfred Perlstein References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C4FD02.3090708@freebsd.org> <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> <46C7A9A4.5090404@samsco.org> <20070819095302.D66918@fledge.watson.org> <222044094-1187603330-cardhu_decombobulator_blackberry.rim.net-1638751523-@bxe027.bisx.prod.on.blackberry> <46C9AE64.50705@samsco.org> <20070820182905.GH87451@elvis.mu.org> X-Mailman-Approved-At: Mon, 20 Aug 2007 19:51:03 +0000 Cc: wine-freebsd@hub.org, Kris Moore , Scott Long , src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, Daniel Eischen , Robert Watson , David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 18:56:47 -0000 We have a lwp_kill() system call that sends a signal to a thread within a process. It turns out to be fairly necessary for any sort of heavily integrated multi-threaded work. In our case we need it to be able to issue IPIs (aka SIGUSR1) to cpus within a SMP virtual kernel. int lwp_kill(pid_t pid, lwpid_t tid, int sig); -Matt From owner-cvs-all@FreeBSD.ORG Mon Aug 20 18:57:55 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 72D9516A420; Mon, 20 Aug 2007 18:57:55 +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 2A1E813C4A8; Mon, 20 Aug 2007 18:57:54 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.0.61] ([204.244.149.125]) (authenticated bits=0) by sippysoft.com (8.13.8/8.13.8) with ESMTP id l7KIuJpq069325 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 20 Aug 2007 11:56:20 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-ID: <46C9E39F.8010009@FreeBSD.org> Date: Mon, 20 Aug 2007 11:55:27 -0700 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 2.0.0.6 (Windows/20070728) MIME-Version: 1.0 To: Scott Long References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C4FD02.3090708@freebsd.org> <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> <46C7A9A4.5090404@samsco.org> <20070819095302.D66918@fledge.watson.org> <46C863C5.6090906@comcast.net><20070820093009.GE87451@elvis.mu.org> <222044094-1187603330-cardhu_decombobulator_blackberry.rim.net-1638751523-@bxe027.bisx.prod.on.blackberry> <46C9AE64.50705@samsco.org> In-Reply-To: <46C9AE64.50705@samsco.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Mon, 20 Aug 2007 19:51:03 +0000 Cc: wine-freebsd@hub.org, Kris Moore , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, Alfred Perlstein , cvs-all@FreeBSD.org, Daniel Eischen , Robert Watson , David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 18:57:55 -0000 Scott Long wrote: > Having it as a loadable module that is essentially private to PC-BSD > (though open source, of course) will lead to questions of why Wine works > in PC-BSD and not FreeBSD. That's fine if your intention is to create > a fork of FreeBSD, but I don't know if that's what you really want. There is no need for it to be private - we can just easily have it in the same port or in separate port (wine_kmod?) and get wine RUN_DEPEND on it. We have been using this scheme with VmWare for ages now and everybody seems to be happy. Indeed, as Robert has pointed out, wine is special in its needs to access some kernel internals to emulate sufficiently different threading model. Those internals are not and probably will never be exposed via POSIX layer, so that loadable module approach makes lot of sense. -Maxim From owner-cvs-all@FreeBSD.ORG Mon Aug 20 19:01:31 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6D51616A417; Mon, 20 Aug 2007 19:01:31 +0000 (UTC) (envelope-from scrappy@hub.org) Received: from hub.org (hub.org [200.46.204.220]) by mx1.freebsd.org (Postfix) with ESMTP id 1F17F13C4D3; Mon, 20 Aug 2007 19:01:31 +0000 (UTC) (envelope-from scrappy@hub.org) Received: from localhost (maia-3.hub.org [200.46.204.184]) by hub.org (Postfix) with ESMTP id B893DB4703D; Mon, 20 Aug 2007 16:01:30 -0300 (ADT) Received: from hub.org ([200.46.204.220]) by localhost (mx1.hub.org [200.46.204.184]) (amavisd-maia, port 10024) with ESMTP id 69386-10; Mon, 20 Aug 2007 16:01:22 -0300 (ADT) Received: from fserv.hub.org (blk-89-241-126.eastlink.ca [24.89.241.126]) by hub.org (Postfix) with ESMTP id B4C83B47032; Mon, 20 Aug 2007 16:01:25 -0300 (ADT) Received: from [192.168.1.2] (unknown [192.168.1.2]) by fserv.hub.org (Postfix) with ESMTP id 0DDB6E6651; Mon, 20 Aug 2007 16:01:27 -0300 (ADT) Date: Mon, 20 Aug 2007 16:01:09 -0300 From: "Marc G. Fournier" To: Scott Long , Alfred Perlstein Message-ID: <1639123F05401A4F2A1C3F33@ganymede.hub.org> In-Reply-To: <46C9E2A7.8030202@samsco.org> References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C4FD02.3090708@freebsd.org> <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> <46C7A9A4.5090404@samsco.org> <20070819095302.D66918@fledge.watson.org> <222044094-1187603330-cardhu_decombobulator_blackberry.rim.net-1638751523-@bxe027.bisx.prod.on.blackberry> <46C9AE64.50705@samsco.org> <20070820182905.GH87451@elvis.mu.org> <46C9E2A7.8030202@samsco.org> X-Mailer: Mulberry/4.0.8 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Mailman-Approved-At: Mon, 20 Aug 2007 19:51:03 +0000 Cc: wine-freebsd@hub.org, Kris Moore , src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, Daniel Eischen , Robert Watson , David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 19:01:31 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 - --On Monday, August 20, 2007 12:51:19 -0600 Scott Long wrote: > I'm official out of this discussion. For the record, I have a lot of respect > for the PC-BSD guys and I'm very happy that they are doing this > work, I was just trying to provide some guidance so that this doesn't > turn into a bad hack that we regret years from now. But whatever, it's > quite obvious that my input is unwelcome. The subtle and not so subtle > attacks from you and Robert really aren't warranted at all. Please drop > me from all future emails on this subject. Thanks. Just for the record here, I think that Scott did bring up a very valid point in what he had said ... Kris did mention 'PC-BSD including it even if FreeBSD didn't' (or words to that effect), and Scott's response was only meant (at least the way I had read it) to bring us back into focus that we are better to come up with a BSD solution vs risking further forking of code ... Please note that in all of this dicussion, it is only been recent that someone mentioned a 'kld solution', which I think would be cool ... I do think that the 'mud slinging' at Scott was quite out of place ... - ---- Marc G. Fournier Hub.Org Networking Services (http://www.hub.org) Email . scrappy@hub.org MSN . scrappy@hub.org Yahoo . yscrappy Skype: hub.org ICQ . 7615664 -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQFGyeT14QvfyHIvDvMRAtTfAJ0cZXBXk9QQaj0v04HKRr0+8qjygQCgogpi Zk5Vhl+4STblk/NaMZ8Vs4k= =tOSd -----END PGP SIGNATURE----- From owner-cvs-all@FreeBSD.ORG Mon Aug 20 19:39:04 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6262116A421; Mon, 20 Aug 2007 19:39:04 +0000 (UTC) (envelope-from matt@ixsystems.com) Received: from mail.iXsystems.com (newknight.ixsystems.net [206.40.55.70]) by mx1.freebsd.org (Postfix) with ESMTP id BA37D13C491; Mon, 20 Aug 2007 19:39:03 +0000 (UTC) (envelope-from matt@ixsystems.com) Received: from localhost (localhost [127.0.0.1]) by mail.iXsystems.com (Postfix) with ESMTP id 14C86BE63; Mon, 20 Aug 2007 12:07:38 -0700 (PDT) Received: from mail.iXsystems.com ([127.0.0.1]) by localhost (mail.ixsystems.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 92894-02; Mon, 20 Aug 2007 12:07:19 -0700 (PDT) Received: from client-173.nat.ixsystems.net (unknown [192.168.1.173]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.iXsystems.com (Postfix) with ESMTP id 8DEEEBDDE; Mon, 20 Aug 2007 12:07:19 -0700 (PDT) From: Matt Olander Organization: iXsystems To: "Marc G. Fournier" Date: Mon, 20 Aug 2007 12:07:18 -0700 User-Agent: KMail/1.9.5 References: <200708160526.l7G5Qg0b008022@repoman.freebsd.org> <46C9E2A7.8030202@samsco.org> <1639123F05401A4F2A1C3F33@ganymede.hub.org> In-Reply-To: <1639123F05401A4F2A1C3F33@ganymede.hub.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200708201207.19122.matt@ixsystems.com> X-Virus-Scanned: Maia Mailguard X-Mailman-Approved-At: Mon, 20 Aug 2007 19:51:03 +0000 Cc: wine-freebsd@hub.org, Kris Moore , Scott Long , src-committers@freebsd.org, cvs-src@freebsd.org, Alfred Perlstein , cvs-all@freebsd.org, Daniel Eischen , Robert Watson , David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 19:39:04 -0000 On Monday 20 August 2007 12:01 pm, Marc G. Fournier wrote: > --On Monday, August 20, 2007 12:51:19 -0600 Scott Long > > wrote: > > I'm official out of this discussion. For the record, I have a lot of > > respect for the PC-BSD guys and I'm very happy that they are doing this > > work, I was just trying to provide some guidance so that this doesn't > > turn into a bad hack that we regret years from now. But whatever, it's > > quite obvious that my input is unwelcome. The subtle and not so subtle > > attacks from you and Robert really aren't warranted at all. Please drop > > me from all future emails on this subject. Thanks. > > Just for the record here, I think that Scott did bring up a very valid > point in what he had said ... Kris did mention 'PC-BSD including it even = if > FreeBSD didn't' (or words to that effect), and Scott's response was only > meant (at least the way I had read it) to bring us back into focus that we > are better to come up with a BSD solution vs risking further forking of > code ... > > Please note that in all of this dicussion, it is only been recent that > someone mentioned a 'kld solution', which I think would be cool ... PC-BSD definitely doesn't want to fork. Kris just meant that he'd include t= he=20 patches until a better solution, such as a kld in -CURRENT, was found. =2Dmatt =2D-=20 Matt Olander CTO, iXsystems - "Servers for Open Source" =A0http://www.iXsystems.com Public Relations, The FreeBSD Project =A0 =A0 =A0 =A0 http://www.FreeBSD.org BSD on the Desktop! =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= http://www.pcbsd.org Phone: (408)943-4100 ext. 113 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 Fax: = (408)943-4101 From owner-cvs-all@FreeBSD.ORG Mon Aug 20 20:51:50 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DAEBE16A418; Mon, 20 Aug 2007 20:51:50 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B291D13C46E; Mon, 20 Aug 2007 20:51:50 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KKpoTm096973; Mon, 20 Aug 2007 20:51:50 GMT (envelope-from bsam@repoman.freebsd.org) Received: (from bsam@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KKpoZq096972; Mon, 20 Aug 2007 20:51:50 GMT (envelope-from bsam) Message-Id: <200708202051.l7KKpoZq096972@repoman.freebsd.org> From: Boris Samorodov Date: Mon, 20 Aug 2007 20:51:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/comms/gammu Makefile distinfo ports/comms/gammu/files patch-CMakeLists.txt patch-common-CMakeLists.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, 20 Aug 2007 20:51:51 -0000 bsam 2007-08-20 20:51:50 UTC FreeBSD ports repository Modified files: comms/gammu Makefile distinfo comms/gammu/files patch-CMakeLists.txt Removed files: comms/gammu/files patch-common-CMakeLists.txt Log: . update to stable release 1.13.0; . remove patch patch-common-CMakeLists.txt (incorporated upstream). Revision Changes Path 1.29 +1 -1 ports/comms/gammu/Makefile 1.19 +3 -3 ports/comms/gammu/distinfo 1.2 +8 -8 ports/comms/gammu/files/patch-CMakeLists.txt 1.2 +0 -17 ports/comms/gammu/files/patch-common-CMakeLists.txt (dead) From owner-cvs-all@FreeBSD.ORG Mon Aug 20 21:47:50 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1132F16A419; Mon, 20 Aug 2007 21:47:50 +0000 (UTC) (envelope-from davidch@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0268C13C457; Mon, 20 Aug 2007 21:47:50 +0000 (UTC) (envelope-from davidch@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KLln0v001504; Mon, 20 Aug 2007 21:47:49 GMT (envelope-from davidch@repoman.freebsd.org) Received: (from davidch@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KLlnuH001503; Mon, 20 Aug 2007 21:47:49 GMT (envelope-from davidch) Message-Id: <200708202147.l7KLlnuH001503@repoman.freebsd.org> From: David Christensen Date: Mon, 20 Aug 2007 21:47:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/bce if_bce.c if_bcereg.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, 20 Aug 2007 21:47:50 -0000 davidch 2007-08-20 21:47:49 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/bce if_bce.c if_bcereg.h Log: - Fixed a problem that would cause kernel panics and "bce0: discard frame .." errors (especially when jumbo frames are enabled or in low memory systems) because the RX chain was corrupted when an mbuf was mapped to an unexpected number of buffers. - Fixed a problem that would cause kernel panics when an excessively fragmented TX mbuf couldn't be defragmented and was released by bce_tx_encap(). Revision Changes Path 1.2.2.20 +233 -115 src/sys/dev/bce/if_bce.c 1.1.2.8 +14 -1 src/sys/dev/bce/if_bcereg.h From owner-cvs-all@FreeBSD.ORG Mon Aug 20 21:55:55 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B2C6016A420; Mon, 20 Aug 2007 21:55:55 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A15E613C469; Mon, 20 Aug 2007 21:55:55 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KLttb4002151; Mon, 20 Aug 2007 21:55:55 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KLttnj002150; Mon, 20 Aug 2007 21:55:55 GMT (envelope-from des) Message-Id: <200708202155.l7KLttnj002150@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 20 Aug 2007 21: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: ports/www/varnish Makefile distinfo pkg-descr ports/www/varnish/files patch-svn-r1745 patch-svn-r1750 patch-svn-r1751 patch-svn-r1752 patch-svn-r1753 patch-svn-r1754 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 21:55:55 -0000 des 2007-08-20 21:55:55 UTC FreeBSD ports repository Modified files: www/varnish Makefile distinfo pkg-descr Removed files: www/varnish/files patch-svn-r1745 patch-svn-r1750 patch-svn-r1751 patch-svn-r1752 patch-svn-r1753 patch-svn-r1754 Log: Upgrade to 1.1.1. Revision Changes Path 1.16 +2 -4 ports/www/varnish/Makefile 1.8 +3 -3 ports/www/varnish/distinfo 1.2 +0 -19 ports/www/varnish/files/patch-svn-r1745 (dead) 1.2 +0 -26 ports/www/varnish/files/patch-svn-r1750 (dead) 1.2 +0 -12 ports/www/varnish/files/patch-svn-r1751 (dead) 1.2 +0 -10 ports/www/varnish/files/patch-svn-r1752 (dead) 1.2 +0 -39 ports/www/varnish/files/patch-svn-r1753 (dead) 1.2 +0 -35 ports/www/varnish/files/patch-svn-r1754 (dead) 1.3 +1 -5 ports/www/varnish/pkg-descr From owner-cvs-all@FreeBSD.ORG Mon Aug 20 23:20:04 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2296716A41A; Mon, 20 Aug 2007 23:20:04 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EFECE13C442; Mon, 20 Aug 2007 23:20:03 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KNK3MT009625; Mon, 20 Aug 2007 23:20:03 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KNK3Pp009624; Mon, 20 Aug 2007 23:20:03 GMT (envelope-from sat) Message-Id: <200708202320.l7KNK3Pp009624@repoman.freebsd.org> From: Andrew Pantyukhin Date: Mon, 20 Aug 2007 23:20: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/games/mangos 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, 20 Aug 2007 23:20:04 -0000 sat 2007-08-20 23:20:03 UTC FreeBSD ports repository Modified files: games/mangos Makefile distinfo pkg-plist Log: - Update to 4345 (SD2-107) Submitted by: Artemiy Kropachev (maintainer) Revision Changes Path 1.8 +7 -2 ports/games/mangos/Makefile 1.8 +6 -6 ports/games/mangos/distinfo 1.8 +16 -0 ports/games/mangos/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 20 23:57:05 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5632B16A418; Mon, 20 Aug 2007 23:57:05 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2F96313C465; Mon, 20 Aug 2007 23:57:05 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KNv5Od011701; Mon, 20 Aug 2007 23:57:05 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KNv4rE011700; Mon, 20 Aug 2007 23:57:04 GMT (envelope-from clsung) Message-Id: <200708202357.l7KNv4rE011700@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 20 Aug 2007 23:57: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: 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: Mon, 20 Aug 2007 23:57:05 -0000 clsung 2007-08-20 23:57:04 UTC FreeBSD ports repository Modified files: . access Log: Please welcome Thomas Abthorpe (tabthorpe) to the rank of ports committers! He has submitted many qualified PRs. It's time to punish him. I will be his mentor. Approved by: portmgr Account create by: simon Revision Changes Path 1.798 +1 -0 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Mon Aug 20 23:59:28 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 482DB16A41B; Mon, 20 Aug 2007 23:59:28 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 21C8013C474; Mon, 20 Aug 2007 23:59:28 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KNxSt2011797; Mon, 20 Aug 2007 23:59:28 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7KNxREg011796; Mon, 20 Aug 2007 23:59:27 GMT (envelope-from sat) Message-Id: <200708202359.l7KNxREg011796@repoman.freebsd.org> From: Andrew Pantyukhin Date: Mon, 20 Aug 2007 23:59:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/netsurf Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 23:59:28 -0000 sat 2007-08-20 23:59:27 UTC FreeBSD ports repository Modified files: www/netsurf Makefile Log: - Remove "-fgnu89-inline" to pacify gcc 3.x Reported by: pointyhat via kris Revision Changes Path 1.2 +0 -1 ports/www/netsurf/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 21 00:24:36 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DF83F16A46C; Tue, 21 Aug 2007 00:24:36 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B91B713C47E; Tue, 21 Aug 2007 00:24:36 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L0OaT4014549; Tue, 21 Aug 2007 00:24:36 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L0OaTw014547; Tue, 21 Aug 2007 00:24:36 GMT (envelope-from leeym) Message-Id: <200708210024.l7L0OaTw014547@repoman.freebsd.org> From: Yen-Ming Lee Date: Tue, 21 Aug 2007 00:24:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/p5-Net-SAP Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 00:24:37 -0000 leeym 2007-08-21 00:24:35 UTC FreeBSD ports repository Modified files: net/p5-Net-SAP Makefile Log: - fix MAINTAINER's email address Revision Changes Path 1.9 +1 -1 ports/net/p5-Net-SAP/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 21 01:33:57 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 671D916A41A; Tue, 21 Aug 2007 01:33:57 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3FF9713C4DA; Tue, 21 Aug 2007 01:33:57 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L1Xvql028340; Tue, 21 Aug 2007 01:33:57 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L1XvNr028339; Tue, 21 Aug 2007 01:33:57 GMT (envelope-from rafan) Message-Id: <200708210133.l7L1XvNr028339@repoman.freebsd.org> From: Rong-En Fan Date: Tue, 21 Aug 2007 01: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/dns/adns Makefile ports/dns/adns/files patch-cname-chains X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 01:33:57 -0000 rafan 2007-08-21 01:33:57 UTC FreeBSD ports repository Modified files: dns/adns Makefile Added files: dns/adns/files patch-cname-chains Log: - Add a patch for chained CNAME PR: ports/115297 Submitted by: rafan Approved by: farrokhi (maintainer) Obtained from: http://hugo.vulcano.cl/development/adns-cc Revision Changes Path 1.20 +1 -0 ports/dns/adns/Makefile 1.1 +56 -0 ports/dns/adns/files/patch-cname-chains (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 21 02:03:28 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8145D16A418; Tue, 21 Aug 2007 02:03:28 +0000 (UTC) (envelope-from nemoliu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5BB2913C46C; Tue, 21 Aug 2007 02:03:28 +0000 (UTC) (envelope-from nemoliu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L23SLG031149; Tue, 21 Aug 2007 02:03:28 GMT (envelope-from nemoliu@repoman.freebsd.org) Received: (from nemoliu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L23Sim031148; Tue, 21 Aug 2007 02:03:28 GMT (envelope-from nemoliu) Message-Id: <200708210203.l7L23Sim031148@repoman.freebsd.org> From: Tong LIU Date: Tue, 21 Aug 2007 02:03:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/jruby Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 02:03:28 -0000 nemoliu 2007-08-21 02:03:28 UTC FreeBSD ports repository Modified files: lang/jruby Makefile Log: - add two sites to MASTER_SITE Approved by: delphij (mentor) Revision Changes Path 1.22 +2 -0 ports/lang/jruby/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 21 02:08:38 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 80D9616A41A; Tue, 21 Aug 2007 02:08:38 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5A3BC13C45E; Tue, 21 Aug 2007 02:08:38 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L28cER031344; Tue, 21 Aug 2007 02:08:38 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L28cAD031343; Tue, 21 Aug 2007 02:08:38 GMT (envelope-from obrien) Message-Id: <200708210208.l7L28cAD031343@repoman.freebsd.org> From: "David E. O'Brien" Date: Tue, 21 Aug 2007 02:08: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/p5-Mail-SpamAssassin/files patch-sa-learn.raw X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 02:08:38 -0000 obrien 2007-08-21 02:08:38 UTC FreeBSD ports repository Added files: mail/p5-Mail-SpamAssassin/files patch-sa-learn.raw Log: Restore the -q[uiet] flag to 'sa-learn' that was lost in the 3.1.8 update. Revision Changes Path 1.8 +27 -0 ports/mail/p5-Mail-SpamAssassin/files/patch-sa-learn.raw (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 21 03:39:07 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 044FA16A41A; Tue, 21 Aug 2007 03:39:07 +0000 (UTC) (envelope-from nemoliu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D36C813C47E; Tue, 21 Aug 2007 03:39:06 +0000 (UTC) (envelope-from nemoliu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L3d6hN038019; Tue, 21 Aug 2007 03:39:06 GMT (envelope-from nemoliu@repoman.freebsd.org) Received: (from nemoliu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L3d6r4038018; Tue, 21 Aug 2007 03:39:06 GMT (envelope-from nemoliu) Message-Id: <200708210339.l7L3d6r4038018@repoman.freebsd.org> From: Tong LIU Date: Tue, 21 Aug 2007 03:39: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/tomcat6 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, 21 Aug 2007 03:39:07 -0000 nemoliu 2007-08-21 03:39:06 UTC FreeBSD ports repository Modified files: www/tomcat6 Makefile distinfo pkg-plist Log: - update to 6.0.14 Approved by: delphij (mentor) Revision Changes Path 1.45 +1 -2 ports/www/tomcat6/Makefile 1.22 +3 -3 ports/www/tomcat6/distinfo 1.23 +68 -1 ports/www/tomcat6/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 21 04:59:34 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C424F16A417; Tue, 21 Aug 2007 04:59:34 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B7C2B13C457; Tue, 21 Aug 2007 04:59:34 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L4xYAu053651; Tue, 21 Aug 2007 04:59:34 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L4xYWe053650; Tue, 21 Aug 2007 04:59:34 GMT (envelope-from alc) Message-Id: <200708210459.l7L4xYWe053650@repoman.freebsd.org> From: Alan Cox Date: Tue, 21 Aug 2007 04:59:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/amd64/amd64 pmap.c src/sys/i386/i386 pmap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 04:59:34 -0000 alc 2007-08-21 04:59:34 UTC FreeBSD src repository Modified files: sys/amd64/amd64 pmap.c sys/i386/i386 pmap.c Log: In general, when we map a page into the kernel's address space, we no longer create a pv entry for that mapping. (The two exceptions are mappings into the kernel's exec and pipe submaps.) Consequently, there is no reason for get_pv_entry() to dig deep into the free page queues, i.e., use VM_ALLOC_SYSTEM, by default. This revision changes get_pv_entry() to use VM_ALLOC_NORMAL by default, i.e., before calling pmap_collect() to reclaim pv entries. Approved by: re (kensmith) Revision Changes Path 1.590 +3 -4 src/sys/amd64/amd64/pmap.c 1.594 +3 -4 src/sys/i386/i386/pmap.c From owner-cvs-all@FreeBSD.ORG Tue Aug 21 05:46:51 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 705AC16A418; Tue, 21 Aug 2007 05:46:51 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4648013C45B; Tue, 21 Aug 2007 05:46:51 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L5kpSg057919; Tue, 21 Aug 2007 05:46:51 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L5kp6k057918; Tue, 21 Aug 2007 05:46:51 GMT (envelope-from clsung) Message-Id: <200708210546.l7L5kp6k057918@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 21 Aug 2007 05:46: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/p5-threads 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, 21 Aug 2007 05:46:51 -0000 clsung 2007-08-21 05:46:50 UTC FreeBSD ports repository Modified files: devel/p5-threads Makefile distinfo Log: - Update to 1.64 Revision Changes Path 1.16 +1 -1 ports/devel/p5-threads/Makefile 1.16 +3 -3 ports/devel/p5-threads/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 21 05:48:07 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D239A16A418; Tue, 21 Aug 2007 05:48:07 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AE17813C442; Tue, 21 Aug 2007 05:48:07 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L5m72S057993; Tue, 21 Aug 2007 05:48:07 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L5m7HD057992; Tue, 21 Aug 2007 05:48:07 GMT (envelope-from clsung) Message-Id: <200708210548.l7L5m7HD057992@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 21 Aug 2007 05: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/devel/p5-IPC-Mmap 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, 21 Aug 2007 05:48:07 -0000 clsung 2007-08-21 05:48:07 UTC FreeBSD ports repository Modified files: devel/p5-IPC-Mmap Makefile distinfo Log: - Update to 0.13 - pass maintainership Revision Changes Path 1.3 +3 -4 ports/devel/p5-IPC-Mmap/Makefile 1.3 +3 -3 ports/devel/p5-IPC-Mmap/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 21 05:48:51 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7D8D116A41B; Tue, 21 Aug 2007 05:48:51 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5839513C459; Tue, 21 Aug 2007 05:48:51 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L5mpbm058044; Tue, 21 Aug 2007 05:48:51 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L5mpB3058043; Tue, 21 Aug 2007 05:48:51 GMT (envelope-from clsung) Message-Id: <200708210548.l7L5mpB3058043@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 21 Aug 2007 05:48: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/p5-Class-Measure 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, 21 Aug 2007 05:48:51 -0000 clsung 2007-08-21 05:48:51 UTC FreeBSD ports repository Modified files: devel/p5-Class-Measure Makefile distinfo Log: - Update to 0.03 - reset maintainership Revision Changes Path 1.2 +3 -9 ports/devel/p5-Class-Measure/Makefile 1.2 +3 -3 ports/devel/p5-Class-Measure/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 21 05:49:51 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8D2A116A419; Tue, 21 Aug 2007 05:49:51 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6847013C459; Tue, 21 Aug 2007 05:49:51 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L5npLZ058096; Tue, 21 Aug 2007 05:49:51 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L5nplq058095; Tue, 21 Aug 2007 05:49:51 GMT (envelope-from clsung) Message-Id: <200708210549.l7L5nplq058095@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 21 Aug 2007 05:49:51 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/p5-Net-OpenID-Consumer 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, 21 Aug 2007 05:49:51 -0000 clsung 2007-08-21 05:49:51 UTC FreeBSD ports repository Modified files: net/p5-Net-OpenID-Consumer Makefile distinfo Log: - Update to 0.14 - reset maintainership PR: ports/115555 Submitted by: Gea-Suan Lin Revision Changes Path 1.2 +2 -2 ports/net/p5-Net-OpenID-Consumer/Makefile 1.2 +3 -3 ports/net/p5-Net-OpenID-Consumer/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 21 05:53:17 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D387516A41B; Tue, 21 Aug 2007 05:53:17 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AED5913C45A; Tue, 21 Aug 2007 05:53:17 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L5rHUc058458; Tue, 21 Aug 2007 05:53:17 GMT (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L5rHJX058457; Tue, 21 Aug 2007 05:53:17 GMT (envelope-from glewis) Message-Id: <200708210553.l7L5rHJX058457@repoman.freebsd.org> From: Greg Lewis Date: Tue, 21 Aug 2007 05:53: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/java/jdk16 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 05:53:17 -0000 glewis 2007-08-21 05:53:17 UTC FreeBSD ports repository Modified files: java/jdk16 Makefile Log: . Make sure ${PREFIX}/share/applications exists before installing files there. Pointed out by: pointyhat (via kris) Revision Changes Path 1.142 +1 -0 ports/java/jdk16/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 21 06:03:23 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC9C216A419; Tue, 21 Aug 2007 06:03:23 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 978BE13C4A5; Tue, 21 Aug 2007 06:03:23 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L63Nk9060246; Tue, 21 Aug 2007 06:03:23 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L63NRg060245; Tue, 21 Aug 2007 06:03:23 GMT (envelope-from marcus) Message-Id: <200708210603.l7L63NRg060245@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 21 Aug 2007 06: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/graphics/librsvg2 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, 21 Aug 2007 06:03:23 -0000 marcus 2007-08-21 06:03:23 UTC FreeBSD ports repository Modified files: graphics/librsvg2 Makefile distinfo Log: Update to 2.18.1. Revision Changes Path 1.60 +1 -1 ports/graphics/librsvg2/Makefile 1.23 +3 -3 ports/graphics/librsvg2/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 21 06:11:18 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4525C16A468; Tue, 21 Aug 2007 06:11:18 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2021513C461; Tue, 21 Aug 2007 06:11:18 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L6BHBE060720; Tue, 21 Aug 2007 06:11:18 GMT (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L6BHE7060717; Tue, 21 Aug 2007 06:11:17 GMT (envelope-from glewis) Message-Id: <200708210611.l7L6BHE7060717@repoman.freebsd.org> From: Greg Lewis Date: Tue, 21 Aug 2007 06:11: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/java/jdk13 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 06:11:18 -0000 glewis 2007-08-21 06:11:17 UTC FreeBSD ports repository Modified files: java/jdk13 Makefile Log: . Add USE_XORG configuration. I'm guessing that prior to the modular xorg ports the Open Motif dependency pulled in the appropriate X11 libraries since this hasn't been a problem previously. Reported by: pointyhat (via kris) Revision Changes Path 1.92 +1 -0 ports/java/jdk13/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 21 06:13:33 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8787516A417; Tue, 21 Aug 2007 06:13:33 +0000 (UTC) (envelope-from daichi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7997B13C442; Tue, 21 Aug 2007 06:13:33 +0000 (UTC) (envelope-from daichi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L6DX35060917; Tue, 21 Aug 2007 06:13:33 GMT (envelope-from daichi@repoman.freebsd.org) Received: (from daichi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L6DXE0060916; Tue, 21 Aug 2007 06:13:33 GMT (envelope-from daichi) Message-Id: <200708210613.l7L6DXE0060916@repoman.freebsd.org> From: Daichi GOTO Date: Tue, 21 Aug 2007 06: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/lang Makefile ports/lang/neko 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, 21 Aug 2007 06:13:33 -0000 daichi 2007-08-21 06:13:33 UTC FreeBSD ports repository Modified files: lang Makefile Added files: lang/neko Makefile distinfo pkg-descr pkg-plist Log: The Neko Programming Language Neko is a high-level dynamically typed programming language which can also be used as an embedded scripting language. It has been designed to provide a common runtime for several different languages. Neko is not only very easy to learn and use, but also has the flexibility of being able to extend the language with C libraries. You can even write generators from your own language to Neko and then use the Neko Runtime to compile, run, and access existing libraries. WWW: http://nekovm.org/ Submitted by: Masanori OZAWA Revision Changes Path 1.567 +1 -0 ports/lang/Makefile 1.1 +163 -0 ports/lang/neko/Makefile (new) 1.1 +3 -0 ports/lang/neko/distinfo (new) 1.1 +12 -0 ports/lang/neko/pkg-descr (new) 1.1 +17 -0 ports/lang/neko/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 21 06:14:04 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 188CC16A498; Tue, 21 Aug 2007 06:14:04 +0000 (UTC) (envelope-from daichi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E876E13C46E; Tue, 21 Aug 2007 06:14:03 +0000 (UTC) (envelope-from daichi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L6E3uf060967; Tue, 21 Aug 2007 06:14:03 GMT (envelope-from daichi@repoman.freebsd.org) Received: (from daichi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L6E3Vl060966; Tue, 21 Aug 2007 06:14:03 GMT (envelope-from daichi) Message-Id: <200708210614.l7L6E3Vl060966@repoman.freebsd.org> From: Daichi GOTO Date: Tue, 21 Aug 2007 06:14:03 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: 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, 21 Aug 2007 06:14:04 -0000 daichi 2007-08-21 06:14:03 UTC FreeBSD ports repository Modified files: . modules Log: neko --> ports/lang/neko Revision Changes Path 1.18566 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 21 06:16:35 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4562A16A420; Tue, 21 Aug 2007 06:16:35 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 203BE13C494; Tue, 21 Aug 2007 06:16:35 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L6GY8Z061112; Tue, 21 Aug 2007 06:16:35 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L6GYXZ061111; Tue, 21 Aug 2007 06:16:34 GMT (envelope-from clsung) Message-Id: <200708210616.l7L6GYXZ061111@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 21 Aug 2007 06: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/net/p5-POE-Component-Generic 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, 21 Aug 2007 06:16:35 -0000 clsung 2007-08-21 06:16:34 UTC FreeBSD ports repository Modified files: net/p5-POE-Component-Generic Makefile distinfo Log: - Update to 0.10.06 (0.1006) Revision Changes Path 1.8 +1 -1 ports/net/p5-POE-Component-Generic/Makefile 1.8 +3 -3 ports/net/p5-POE-Component-Generic/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 21 06:16:57 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F6FB16A418; Tue, 21 Aug 2007 06:16:57 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0A4B813C480; Tue, 21 Aug 2007 06:16:57 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L6Gu3B061153; Tue, 21 Aug 2007 06:16:56 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L6GuWU061152; Tue, 21 Aug 2007 06:16:56 GMT (envelope-from clsung) Message-Id: <200708210616.l7L6GuWU061152@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 21 Aug 2007 06:16: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/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: Tue, 21 Aug 2007 06:16:57 -0000 clsung 2007-08-21 06:16:56 UTC FreeBSD ports repository Modified files: dns/p5-Net-Domain-ExpireDate Makefile distinfo Log: - Update to 0.42 Revision Changes Path 1.9 +2 -3 ports/dns/p5-Net-Domain-ExpireDate/Makefile 1.10 +3 -3 ports/dns/p5-Net-Domain-ExpireDate/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 21 06:32:15 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 70E4516A417; Tue, 21 Aug 2007 06:32:15 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4BC8A13C442; Tue, 21 Aug 2007 06:32:15 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L6WFLC062173; Tue, 21 Aug 2007 06:32:15 GMT (envelope-from lbr@repoman.freebsd.org) Received: (from lbr@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L6WFP9062172; Tue, 21 Aug 2007 06:32:15 GMT (envelope-from lbr) Message-Id: <200708210632.l7L6WFP9062172@repoman.freebsd.org> From: Lars Balker Rasmussen Date: Tue, 21 Aug 2007 06:32: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/devel/p5-Task-Weaken 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, 21 Aug 2007 06:32:15 -0000 lbr 2007-08-21 06:32:15 UTC FreeBSD ports repository Modified files: devel/p5-Task-Weaken Makefile distinfo Log: Update to 1.00 Revision Changes Path 1.2 +2 -3 ports/devel/p5-Task-Weaken/Makefile 1.2 +3 -3 ports/devel/p5-Task-Weaken/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 21 06:43:30 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B563716A417; Tue, 21 Aug 2007 06:43:30 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8FD2613C46E; Tue, 21 Aug 2007 06:43:30 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L6hUnK062825; Tue, 21 Aug 2007 06:43:30 GMT (envelope-from lbr@repoman.freebsd.org) Received: (from lbr@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L6hUCh062824; Tue, 21 Aug 2007 06:43:30 GMT (envelope-from lbr) Message-Id: <200708210643.l7L6hUCh062824@repoman.freebsd.org> From: Lars Balker Rasmussen Date: Tue, 21 Aug 2007 06:43: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/p5-Catalyst-View-Mason 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, 21 Aug 2007 06:43:30 -0000 lbr 2007-08-21 06:43:30 UTC FreeBSD ports repository Modified files: www/p5-Catalyst-View-Mason Makefile distinfo Log: Update to 0.12 Revision Changes Path 1.5 +1 -1 ports/www/p5-Catalyst-View-Mason/Makefile 1.3 +3 -3 ports/www/p5-Catalyst-View-Mason/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 21 07:36:38 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2915016A419; Tue, 21 Aug 2007 07:36:38 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0316013C461; Tue, 21 Aug 2007 07:36:38 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L7abPO067579; Tue, 21 Aug 2007 07:36:37 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L7ab3o067578; Tue, 21 Aug 2007 07:36:37 GMT (envelope-from erwin) Message-Id: <200708210736.l7L7ab3o067578@repoman.freebsd.org> From: Erwin Lansing Date: Tue, 21 Aug 2007 07: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/chinese/CJK/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: Tue, 21 Aug 2007 07:36:38 -0000 erwin 2007-08-21 07:36:37 UTC FreeBSD ports repository Removed files: chinese/CJK/files pkg-message.in Log: Remove file that was left behind when the port moved to print/latex-cjk Revision Changes Path 1.2 +0 -110 ports/chinese/CJK/files/pkg-message.in (dead) From owner-cvs-all@FreeBSD.ORG Tue Aug 21 07:42:44 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 09E2416A421; Tue, 21 Aug 2007 07:42:44 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from nat-application.b1.lan.prg.vol.cz (nat-application.b1.lan.prg.vol.cz [195.122.204.152]) by mx1.freebsd.org (Postfix) with ESMTP id 8425F13C45B; Tue, 21 Aug 2007 07:42:43 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from pav.hide.vol.cz (localhost [127.0.0.1]) by nat-application.b1.lan.prg.vol.cz (8.14.1/8.14.1) with ESMTP id l7L7ggj7039791; Tue, 21 Aug 2007 09:42:42 +0200 (CEST) (envelope-from pav@FreeBSD.org) Received: (from pav@localhost) by pav.hide.vol.cz (8.14.1/8.14.1/Submit) id l7L7ggFh039790; Tue, 21 Aug 2007 09:42:42 +0200 (CEST) (envelope-from pav@FreeBSD.org) X-Authentication-Warning: pav.hide.vol.cz: pav set sender to pav@FreeBSD.org using -f From: Pav Lucistnik To: "David E. O'Brien" In-Reply-To: <200708210208.l7L28cAD031343@repoman.freebsd.org> References: <200708210208.l7L28cAD031343@repoman.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-poRjlc7JI2UQvVOhNYZh" Date: Tue, 21 Aug 2007 09:42:42 +0200 Message-Id: <1187682162.39461.6.camel@pav.hide.vol.cz> Mime-Version: 1.0 X-Mailer: Evolution 2.10.3 FreeBSD GNOME Team Port Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/mail/p5-Mail-SpamAssassin/files patch-sa-learn.raw X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pav@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 07:42:44 -0000 --=-poRjlc7JI2UQvVOhNYZh Content-Type: text/plain; charset=ISO8859-2 Content-Transfer-Encoding: quoted-printable David E. O'Brien p=ED=B9e v =FAt 21. 08. 2007 v 02:08 +0000: > obrien 2007-08-21 02:08:38 UTC >=20 > FreeBSD ports repository >=20 > Added files: > mail/p5-Mail-SpamAssassin/files patch-sa-learn.raw=20 > Log: > Restore the -q[uiet] flag to 'sa-learn' that was lost in the 3.1.8 upda= te. Approved by: ? --=20 Pav Lucistnik Bento's Law: If It Can Break, It Will Break Bento's Corollary: If It Can Break, Kris Can Send Mail About It --=-poRjlc7JI2UQvVOhNYZh Content-Type: application/pgp-signature; name=signature.asc Content-Description: Toto je =?UTF-8?Q?digit=C3=A1ln=C4=9B?= =?ISO-8859-1?Q?_podepsan=E1?= =?UTF-8?Q?_=C4=8D=C3=A1st?= =?ISO-8859-1?Q?_zpr=E1vy?= -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQBGypduntdYP8FOsoIRAuLjAJwJo5jx+WuCsA8p+6A8Bp3kJBcIHgCgzk+1 lXp4efsbbkI4JDepCddFrbw= =ew4x -----END PGP SIGNATURE----- --=-poRjlc7JI2UQvVOhNYZh-- From owner-cvs-all@FreeBSD.ORG Tue Aug 21 07:45:45 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0E6B716A4EC; Tue, 21 Aug 2007 07:45:45 +0000 (UTC) (envelope-from az@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0018413C428; Tue, 21 Aug 2007 07:45:44 +0000 (UTC) (envelope-from az@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L7jiPH068159; Tue, 21 Aug 2007 07:45:44 GMT (envelope-from az@repoman.freebsd.org) Received: (from az@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L7jioE068158; Tue, 21 Aug 2007 07:45:44 GMT (envelope-from az) Message-Id: <200708210745.l7L7jioE068158@repoman.freebsd.org> From: Andrej Zverev Date: Tue, 21 Aug 2007 07:45: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 Makefile ports/devel/cvs-syncmail 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, 21 Aug 2007 07:45:45 -0000 az 2007-08-21 07:45:44 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/cvs-syncmail Makefile distinfo pkg-descr Log: Syncmail is a CVS notification tool which can provide a diff for every change to a CVS repository, mailed to specified email addresses. This tool is useful for large communities to monitor activity, and is used for Python and many other active projects. PR: ports/115476 Submitted by: Greg Larkin Revision Changes Path 1.2845 +1 -0 ports/devel/Makefile 1.1 +49 -0 ports/devel/cvs-syncmail/Makefile (new) 1.1 +3 -0 ports/devel/cvs-syncmail/distinfo (new) 1.1 +6 -0 ports/devel/cvs-syncmail/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 21 07:46:10 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8337516A41B; Tue, 21 Aug 2007 07:46:10 +0000 (UTC) (envelope-from az@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5CBA213C4A7; Tue, 21 Aug 2007 07:46:10 +0000 (UTC) (envelope-from az@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L7kAQC068202; Tue, 21 Aug 2007 07:46:10 GMT (envelope-from az@repoman.freebsd.org) Received: (from az@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L7kAFB068201; Tue, 21 Aug 2007 07:46:10 GMT (envelope-from az) Message-Id: <200708210746.l7L7kAFB068201@repoman.freebsd.org> From: Andrej Zverev Date: Tue, 21 Aug 2007 07:46: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, 21 Aug 2007 07:46:10 -0000 az 2007-08-21 07:46:10 UTC FreeBSD ports repository Modified files: . modules Log: cvs-syncmail --> ports/devel/cvs-syncmail Revision Changes Path 1.18567 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 21 08:18:09 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9554E16A417; Tue, 21 Aug 2007 08:18:09 +0000 (UTC) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6EFDA13C428; Tue, 21 Aug 2007 08:18:09 +0000 (UTC) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L8I9JE071154; Tue, 21 Aug 2007 08:18:09 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L8I9Oh071151; Tue, 21 Aug 2007 08:18:09 GMT (envelope-from tobez) Message-Id: <200708210818.l7L8I9Oh071151@repoman.freebsd.org> From: Anton Berezin Date: Tue, 21 Aug 2007 08:18: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-CPAN-Mini 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, 21 Aug 2007 08:18:09 -0000 tobez 2007-08-21 08:18:08 UTC FreeBSD ports repository Modified files: devel/p5-CPAN-Mini Makefile distinfo Log: Upgrade to 0.562. Changes: http://search.cpan.org/src/RJBS/CPAN-Mini-0.562/Changes Revision Changes Path 1.10 +5 -1 ports/devel/p5-CPAN-Mini/Makefile 1.9 +3 -3 ports/devel/p5-CPAN-Mini/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 21 08:20:58 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EDF4916A417; Tue, 21 Aug 2007 08:20:58 +0000 (UTC) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C7B6013C46C; Tue, 21 Aug 2007 08:20:58 +0000 (UTC) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L8KwFU071311; Tue, 21 Aug 2007 08:20:58 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L8Kwbh071309; Tue, 21 Aug 2007 08:20:58 GMT (envelope-from tobez) Message-Id: <200708210820.l7L8Kwbh071309@repoman.freebsd.org> From: Anton Berezin Date: Tue, 21 Aug 2007 08: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/p5-Clone 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, 21 Aug 2007 08:20:59 -0000 tobez 2007-08-21 08:20:58 UTC FreeBSD ports repository Modified files: devel/p5-Clone Makefile distinfo Log: Update to 0.27. Changes: http://search.cpan.org/src/RDF/Clone-0.27/Changes Revision Changes Path 1.9 +9 -2 ports/devel/p5-Clone/Makefile 1.9 +3 -3 ports/devel/p5-Clone/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 21 08:26:33 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AD90716A418; Tue, 21 Aug 2007 08:26:33 +0000 (UTC) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7880513C45B; Tue, 21 Aug 2007 08:26:33 +0000 (UTC) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L8QXpg071717; Tue, 21 Aug 2007 08:26:33 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L8QXMo071716; Tue, 21 Aug 2007 08:26:33 GMT (envelope-from tobez) Message-Id: <200708210826.l7L8QXMo071716@repoman.freebsd.org> From: Anton Berezin Date: Tue, 21 Aug 2007 08:26:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-Data-Compare 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, 21 Aug 2007 08:26:33 -0000 tobez 2007-08-21 08:26:31 UTC FreeBSD ports repository Modified files: devel/p5-Data-Compare Makefile distinfo Log: Update to 0.17. Remove 4.X bits from the port. Changes: http://search.cpan.org/src/DCANTRELL/Data-Compare-0.17/CHANGES Revision Changes Path 1.11 +2 -8 ports/devel/p5-Data-Compare/Makefile 1.9 +3 -3 ports/devel/p5-Data-Compare/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 21 08:30:19 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1B4F316A474; Tue, 21 Aug 2007 08:30:19 +0000 (UTC) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E7B0413C461; Tue, 21 Aug 2007 08:30:18 +0000 (UTC) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L8UFUA071952; Tue, 21 Aug 2007 08:30:15 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L8UFsk071948; Tue, 21 Aug 2007 08:30:15 GMT (envelope-from tobez) Message-Id: <200708210830.l7L8UFsk071948@repoman.freebsd.org> From: Anton Berezin Date: Tue, 21 Aug 2007 08:30: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/devel/p5-Test-Base 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, 21 Aug 2007 08:30:19 -0000 tobez 2007-08-21 08:30:14 UTC FreeBSD ports repository Modified files: devel/p5-Test-Base Makefile distinfo Log: Update to 0.54. Remove 4.X support from the port. Changes: http://search.cpan.org/src/INGY/Test-Base-0.54/Changes Revision Changes Path 1.10 +2 -8 ports/devel/p5-Test-Base/Makefile 1.10 +3 -3 ports/devel/p5-Test-Base/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 21 08:31:55 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8737C16A417; Tue, 21 Aug 2007 08:31:55 +0000 (UTC) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 60B4113C46E; Tue, 21 Aug 2007 08:31:55 +0000 (UTC) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L8VtRj072188; Tue, 21 Aug 2007 08:31:55 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L8VtgG072187; Tue, 21 Aug 2007 08:31:55 GMT (envelope-from tobez) Message-Id: <200708210831.l7L8VtgG072187@repoman.freebsd.org> From: Anton Berezin Date: Tue, 21 Aug 2007 08:31: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/databases/p5-DBIx-Perlish 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, 21 Aug 2007 08:31:55 -0000 tobez 2007-08-21 08:31:55 UTC FreeBSD ports repository Modified files: databases/p5-DBIx-Perlish Makefile distinfo Log: Update to 0.27. Changes: http://search.cpan.org/src/GRUBER/DBIx-Perlish-0.27/Changes Revision Changes Path 1.9 +1 -1 ports/databases/p5-DBIx-Perlish/Makefile 1.9 +3 -3 ports/databases/p5-DBIx-Perlish/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 21 08:33:35 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D709316A41B; Tue, 21 Aug 2007 08:33:35 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B0DB213C45A; Tue, 21 Aug 2007 08:33:35 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L8XZHJ072311; Tue, 21 Aug 2007 08:33:35 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L8XZw9072310; Tue, 21 Aug 2007 08:33:35 GMT (envelope-from miwi) Message-Id: <200708210833.l7L8XZw9072310@repoman.freebsd.org> From: Martin Wilke Date: Tue, 21 Aug 2007 08:33: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/drupal5 bsd.drupal.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, 21 Aug 2007 08:33:35 -0000 miwi 2007-08-21 08:33:35 UTC FreeBSD ports repository Modified files: www/drupal5 bsd.drupal.mk Log: - Add support for Drupal5 Themes PR: 114894 Submitted by: Geoff Glasson Approved by: maintainer Revision Changes Path 1.7 +34 -11 ports/www/drupal5/bsd.drupal.mk From owner-cvs-all@FreeBSD.ORG Tue Aug 21 08:34:42 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B621216A418; Tue, 21 Aug 2007 08:34:42 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8F37713C461; Tue, 21 Aug 2007 08:34:42 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L8YgGH072418; Tue, 21 Aug 2007 08:34:42 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L8Ygpi072417; Tue, 21 Aug 2007 08:34:42 GMT (envelope-from miwi) Message-Id: <200708210834.l7L8Ygpi072417@repoman.freebsd.org> From: Martin Wilke Date: Tue, 21 Aug 2007 08: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/www Makefile ports/www/drupal5-bluebreeze 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, 21 Aug 2007 08:34:42 -0000 miwi 2007-08-21 08:34:42 UTC FreeBSD ports repository Modified files: www Makefile Added files: www/drupal5-bluebreeze Makefile distinfo pkg-descr Log: The bluebreeze theme wants to combine style with good usability WWW: http://drupal.org/project/bluebreeze PR: ports/114962 Submitted by: Geoff Glasson Revision Changes Path 1.1886 +1 -0 ports/www/Makefile 1.1 +37 -0 ports/www/drupal5-bluebreeze/Makefile (new) 1.1 +3 -0 ports/www/drupal5-bluebreeze/distinfo (new) 1.1 +3 -0 ports/www/drupal5-bluebreeze/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 21 08:34:46 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5EC7A16A479; Tue, 21 Aug 2007 08:34:46 +0000 (UTC) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3791013C45B; Tue, 21 Aug 2007 08:34:46 +0000 (UTC) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L8Yk3O072450; Tue, 21 Aug 2007 08:34:46 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L8YkQ2072449; Tue, 21 Aug 2007 08:34:46 GMT (envelope-from tobez) Message-Id: <200708210834.l7L8YkQ2072449@repoman.freebsd.org> From: Anton Berezin Date: Tue, 21 Aug 2007 08: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/security/p5-Authen-Htpasswd 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, 21 Aug 2007 08:34:46 -0000 tobez 2007-08-21 08:34:46 UTC FreeBSD ports repository Modified files: security/p5-Authen-Htpasswd Makefile distinfo Log: Update to 0.16. Remove 4.X support bits. Changes: http://search.cpan.org/src/DKAMHOLZ/Authen-Htpasswd-0.16/Changes Revision Changes Path 1.5 +2 -8 ports/security/p5-Authen-Htpasswd/Makefile 1.5 +3 -3 ports/security/p5-Authen-Htpasswd/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 21 08:35:05 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ADCE516A417; Tue, 21 Aug 2007 08:35:05 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 87FE113C45A; Tue, 21 Aug 2007 08:35:05 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L8Z5k1072527; Tue, 21 Aug 2007 08:35:05 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L8Z5K8072526; Tue, 21 Aug 2007 08:35:05 GMT (envelope-from miwi) Message-Id: <200708210835.l7L8Z5K8072526@repoman.freebsd.org> From: Martin Wilke Date: Tue, 21 Aug 2007 08:35:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 08:35:05 -0000 miwi 2007-08-21 08:35:05 UTC FreeBSD ports repository Modified files: . modules Log: drupal5-bluebreeze --> ports/www/drupal5-bluebreeze Revision Changes Path 1.18568 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 21 08:36:05 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 41C0A16A41A; Tue, 21 Aug 2007 08:36:05 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3180213C45A; Tue, 21 Aug 2007 08:36:05 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L8a54b072623; Tue, 21 Aug 2007 08:36:05 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L8a5cs072622; Tue, 21 Aug 2007 08:36:05 GMT (envelope-from miwi) Message-Id: <200708210836.l7L8a5cs072622@repoman.freebsd.org> From: Martin Wilke Date: Tue, 21 Aug 2007 08:36: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/textproc Makefile ports/textproc/p5-HTML-FormatText-WithLinks 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, 21 Aug 2007 08:36:05 -0000 miwi 2007-08-21 08:36:04 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/p5-HTML-FormatText-WithLinks Makefile distinfo pkg-descr pkg-plist Log: HTML::FormatText::WithLinks takes HTML and turns it into plain text but prints all the links in the HTML as footnotes. By default, it attempts to mimic the format of the lynx text based web browser's --dump option. Author: Struan Donald. WWW: http://search.cpan.org/~struan/HTML-FormatText-WithLinks-0.09/ PR: ports/115358 Submitted by: loader Revision Changes Path 1.1173 +1 -0 ports/textproc/Makefile 1.1 +24 -0 ports/textproc/p5-HTML-FormatText-WithLinks/Makefile (new) 1.1 +3 -0 ports/textproc/p5-HTML-FormatText-WithLinks/distinfo (new) 1.1 +7 -0 ports/textproc/p5-HTML-FormatText-WithLinks/pkg-descr (new) 1.1 +5 -0 ports/textproc/p5-HTML-FormatText-WithLinks/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 21 08:36:26 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A1D6B16A41B; Tue, 21 Aug 2007 08:36:26 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7C45813C480; Tue, 21 Aug 2007 08:36:26 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L8aQR4072662; Tue, 21 Aug 2007 08:36:26 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L8aQlv072661; Tue, 21 Aug 2007 08:36:26 GMT (envelope-from miwi) Message-Id: <200708210836.l7L8aQlv072661@repoman.freebsd.org> From: Martin Wilke Date: Tue, 21 Aug 2007 08:36: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: Tue, 21 Aug 2007 08:36:26 -0000 miwi 2007-08-21 08:36:26 UTC FreeBSD ports repository Modified files: . modules Log: p5-HTML-FormatText-WithLinks --> ports/textproc/p5-HTML-FormatText-WithLinks Revision Changes Path 1.18569 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 21 08:42:19 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1C89F16A419; Tue, 21 Aug 2007 08:42:19 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0E31A13C48E; Tue, 21 Aug 2007 08:42:19 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L8gIZG073157; Tue, 21 Aug 2007 08:42:18 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L8gI21073156; Tue, 21 Aug 2007 08:42:18 GMT (envelope-from miwi) Message-Id: <200708210842.l7L8gI21073156@repoman.freebsd.org> From: Martin Wilke Date: Tue, 21 Aug 2007 08:42: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 Makefile ports/deskutils/nagaina 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, 21 Aug 2007 08:42:19 -0000 miwi 2007-08-21 08:42:18 UTC FreeBSD ports repository Modified files: deskutils Makefile Added files: deskutils/nagaina Makefile distinfo pkg-descr Log: Nagaina is a notes-taking application. Features * Classifications of notes in categories; * Rich text editor, with support for font, font size, font color, alignment... * Style editor; WWW: http://code.google.com/p/nagaina/ PR: ports/115662 Submitted by: Yinghong Liu Revision Changes Path 1.307 +1 -0 ports/deskutils/Makefile 1.1 +44 -0 ports/deskutils/nagaina/Makefile (new) 1.1 +3 -0 ports/deskutils/nagaina/distinfo (new) 1.1 +8 -0 ports/deskutils/nagaina/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 21 08:42:41 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 29FD016A41A; Tue, 21 Aug 2007 08:42:41 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0398713C4B4; Tue, 21 Aug 2007 08:42:41 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L8geDE073198; Tue, 21 Aug 2007 08:42:40 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L8geW2073197; Tue, 21 Aug 2007 08:42:40 GMT (envelope-from miwi) Message-Id: <200708210842.l7L8geW2073197@repoman.freebsd.org> From: Martin Wilke Date: Tue, 21 Aug 2007 08: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, 21 Aug 2007 08:42:41 -0000 miwi 2007-08-21 08:42:40 UTC FreeBSD ports repository Modified files: . modules Log: nagaina --> ports/deskutils/nagaina Revision Changes Path 1.18570 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 21 08:44:14 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5229D16A417; Tue, 21 Aug 2007 08:44:14 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4268E13C48E; Tue, 21 Aug 2007 08:44:14 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L8iE4h073332; Tue, 21 Aug 2007 08:44:14 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L8iE0q073331; Tue, 21 Aug 2007 08:44:14 GMT (envelope-from miwi) Message-Id: <200708210844.l7L8iE0q073331@repoman.freebsd.org> From: Martin Wilke Date: Tue, 21 Aug 2007 08:44: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 Makefile ports/devel/p5-Test-Perl-Critic 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, 21 Aug 2007 08:44:14 -0000 miwi 2007-08-21 08:44:14 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-Test-Perl-Critic Makefile distinfo pkg-descr pkg-plist Log: Test::Perl::Critic wraps the Perl::Critic engine in a convenient subroutine suitable for test programs written using the Test::More framework. This makes it easy to integrate coding-standards enforcement into the build process. WWW: http://search.cpan.org/dist/Test-Perl-Critic/ PR: ports/115291 Submitted by: Tomoyuki Sakurai Revision Changes Path 1.2846 +1 -0 ports/devel/Makefile 1.1 +25 -0 ports/devel/p5-Test-Perl-Critic/Makefile (new) 1.1 +3 -0 ports/devel/p5-Test-Perl-Critic/distinfo (new) 1.1 +5 -0 ports/devel/p5-Test-Perl-Critic/pkg-descr (new) 1.1 +4 -0 ports/devel/p5-Test-Perl-Critic/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 21 08:53:47 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1B57B16A417; Tue, 21 Aug 2007 08:53:47 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E885113C480; Tue, 21 Aug 2007 08:53:46 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L8rktl082452; Tue, 21 Aug 2007 08:53:46 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L8rkb7082451; Tue, 21 Aug 2007 08:53:46 GMT (envelope-from miwi) Message-Id: <200708210853.l7L8rkb7082451@repoman.freebsd.org> From: Martin Wilke Date: Tue, 21 Aug 2007 08:53: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 Makefile ports/devel/p5-Test-Perl-Critic 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, 21 Aug 2007 08:53:47 -0000 miwi 2007-08-21 08:53:46 UTC FreeBSD ports repository Modified files: devel Makefile Removed files: devel/p5-Test-Perl-Critic Makefile distinfo pkg-descr pkg-plist Log: Remove from portstree port life under textproc. Revision Changes Path 1.2847 +0 -1 ports/devel/Makefile 1.2 +0 -25 ports/devel/p5-Test-Perl-Critic/Makefile (dead) 1.2 +0 -3 ports/devel/p5-Test-Perl-Critic/distinfo (dead) 1.2 +0 -5 ports/devel/p5-Test-Perl-Critic/pkg-descr (dead) 1.2 +0 -4 ports/devel/p5-Test-Perl-Critic/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Tue Aug 21 08:57:31 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E00C316A417; Tue, 21 Aug 2007 08:57:31 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D15CD13C47E; Tue, 21 Aug 2007 08:57:31 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L8vVup082728; Tue, 21 Aug 2007 08:57:31 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L8vVda082726; Tue, 21 Aug 2007 08:57:31 GMT (envelope-from miwi) Message-Id: <200708210857.l7L8vVda082726@repoman.freebsd.org> From: Martin Wilke Date: Tue, 21 Aug 2007 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/devel Makefile ports/devel/p5-Data-Validate 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, 21 Aug 2007 08:57:32 -0000 miwi 2007-08-21 08:57:31 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-Data-Validate Makefile distinfo pkg-descr pkg-plist Log: This module collects common validation routines to make input validation, and untainting easier and more readable. Most of the functions are not much shorter than their direct perl equivalent, but their names make it clear what you're trying to test for. WWW: http://search.cpan.org/~sonnen/Data-Validate-0.08/ PR: ports/115328 Submitted by: Steven Kreuzer Revision Changes Path 1.2848 +1 -0 ports/devel/Makefile 1.1 +25 -0 ports/devel/p5-Data-Validate/Makefile (new) 1.1 +3 -0 ports/devel/p5-Data-Validate/distinfo (new) 1.1 +6 -0 ports/devel/p5-Data-Validate/pkg-descr (new) 1.1 +23 -0 ports/devel/p5-Data-Validate/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 21 08:57:53 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 14D7616A41B; Tue, 21 Aug 2007 08:57:53 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C45E613C4A7; Tue, 21 Aug 2007 08:57:52 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L8vqIf082769; Tue, 21 Aug 2007 08:57:52 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L8vqII082768; Tue, 21 Aug 2007 08:57:52 GMT (envelope-from miwi) Message-Id: <200708210857.l7L8vqII082768@repoman.freebsd.org> From: Martin Wilke Date: Tue, 21 Aug 2007 08:57: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, 21 Aug 2007 08:57:53 -0000 miwi 2007-08-21 08:57:52 UTC FreeBSD ports repository Modified files: . modules Log: p5-Data-Validate --> ports/devel/p5-Data-Validate Revision Changes Path 1.18571 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 21 08:58:23 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 158D416A41A; Tue, 21 Aug 2007 08:58:23 +0000 (UTC) (envelope-from hm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E2C1213C47E; Tue, 21 Aug 2007 08:58:22 +0000 (UTC) (envelope-from hm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L8wMww082823; Tue, 21 Aug 2007 08:58:22 GMT (envelope-from hm@repoman.freebsd.org) Received: (from hm@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L8wMU3082822; Tue, 21 Aug 2007 08:58:22 GMT (envelope-from hm) Message-Id: <200708210858.l7L8wMU3082822@repoman.freebsd.org> From: Hellmuth Michaelis Date: Tue, 21 Aug 2007 08:58: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/modules/if_tap Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 08:58:23 -0000 hm 2007-08-21 08:58:22 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/modules/if_tap Makefile Log: PR: kern/115414 Submitted by: Eugene Grosbein The fix for PR kern/111480 was incomplete, "make MODULES_WITH_WORLD=true buildworld" stopped with an error. Revision Changes Path 1.4.2.2 +4 -1 src/sys/modules/if_tap/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 21 08:59:03 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4DFB916A47E; Tue, 21 Aug 2007 08:59:03 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0186013C481; Tue, 21 Aug 2007 08:59:03 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L8wx3t082917; Tue, 21 Aug 2007 08:58:59 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L8wxJ8082916; Tue, 21 Aug 2007 08:58:59 GMT (envelope-from miwi) Message-Id: <200708210858.l7L8wxJ8082916@repoman.freebsd.org> From: Martin Wilke Date: Tue, 21 Aug 2007 08:58:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc Makefile ports/textproc/pecl-syck 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, 21 Aug 2007 08:59:03 -0000 miwi 2007-08-21 08:58:59 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/pecl-syck Makefile distinfo pkg-descr Log: The syck extension is a binding to the Syck library which facilitates YAML parsing. YAML(tm) (rhymes with "camel") is a straightforward machine parsable data serialization format designed for human readability and interaction with scripting languages. YAML is optimized for data serialization, configuration settings, log files, Internet messaging and filtering. WWW: http://pecl.php.net/package/syck/ PR: ports/115252 Submitted by: Ditesh Shashikant Gathani Revision Changes Path 1.1174 +1 -0 ports/textproc/Makefile 1.1 +27 -0 ports/textproc/pecl-syck/Makefile (new) 1.1 +3 -0 ports/textproc/pecl-syck/distinfo (new) 1.1 +10 -0 ports/textproc/pecl-syck/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 21 08:59:23 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C7DCE16A419; Tue, 21 Aug 2007 08:59:23 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A118E13C45E; Tue, 21 Aug 2007 08:59:23 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L8xNfK082962; Tue, 21 Aug 2007 08:59:23 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L8xNNE082961; Tue, 21 Aug 2007 08:59:23 GMT (envelope-from miwi) Message-Id: <200708210859.l7L8xNNE082961@repoman.freebsd.org> From: Martin Wilke Date: Tue, 21 Aug 2007 08:59: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: Tue, 21 Aug 2007 08:59:23 -0000 miwi 2007-08-21 08:59:23 UTC FreeBSD ports repository Modified files: . modules Log: pecl-syck --> ports/textproc/pecl-syck Revision Changes Path 1.18572 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 21 09:01:00 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8CDA916A41B; Tue, 21 Aug 2007 09:01:00 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7D54E13C46B; Tue, 21 Aug 2007 09:01:00 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L910d7083251; Tue, 21 Aug 2007 09:01:00 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L9104E083248; Tue, 21 Aug 2007 09:01:00 GMT (envelope-from miwi) Message-Id: <200708210901.l7L9104E083248@repoman.freebsd.org> From: Martin Wilke Date: Tue, 21 Aug 2007 09:01:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/finance Makefile ports/finance/eqonomize Makefile distinfo pkg-descr pkg-plist ports/finance/eqonomize/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, 21 Aug 2007 09:01:00 -0000 miwi 2007-08-21 09:01:00 UTC FreeBSD ports repository Modified files: finance Makefile Added files: finance/eqonomize Makefile distinfo pkg-descr pkg-plist finance/eqonomize/files patch-configure Log: Eqonomize! is a personal accounting software, with focus on efficiency and ease of use for the small household economy. Eqonomize! provides a complete solution,with bookkeeping by double entry and support for scheduled recurring transactions,security investments, and budgeting. It gives a clear overview of past and present transactions, and development of incomes and expenses, with descriptive tables and charts, as well as an approximation of future account values. WWW: http://eqonomize.sourceforge.net/ PR: ports/115237 Submitted by: Yinghong.Liu Revision Changes Path 1.53 +1 -0 ports/finance/Makefile 1.1 +28 -0 ports/finance/eqonomize/Makefile (new) 1.1 +3 -0 ports/finance/eqonomize/distinfo (new) 1.1 +23 -0 ports/finance/eqonomize/files/patch-configure (new) 1.1 +9 -0 ports/finance/eqonomize/pkg-descr (new) 1.1 +45 -0 ports/finance/eqonomize/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 21 09:01:28 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3CC0C16A502; Tue, 21 Aug 2007 09:01:28 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 15C9E13C457; Tue, 21 Aug 2007 09:01:28 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L91R5D083396; Tue, 21 Aug 2007 09:01:27 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L91R3Q083395; Tue, 21 Aug 2007 09:01:27 GMT (envelope-from miwi) Message-Id: <200708210901.l7L91R3Q083395@repoman.freebsd.org> From: Martin Wilke Date: Tue, 21 Aug 2007 09:01: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: Tue, 21 Aug 2007 09:01:28 -0000 miwi 2007-08-21 09:01:27 UTC FreeBSD ports repository Modified files: . modules Log: eqonomize --> ports/finance/eqonomize Revision Changes Path 1.18573 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 21 09:10:15 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 72AB416A46D; Tue, 21 Aug 2007 09:10:15 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6321E13C4B4; Tue, 21 Aug 2007 09:10:15 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L9AFoq085112; Tue, 21 Aug 2007 09:10:15 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L9AFXV085109; Tue, 21 Aug 2007 09:10:15 GMT (envelope-from miwi) Message-Id: <200708210910.l7L9AFXV085109@repoman.freebsd.org> From: Martin Wilke Date: Tue, 21 Aug 2007 09:10: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/archivers Makefile ports/archivers/pecl-phar 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, 21 Aug 2007 09:10:15 -0000 miwi 2007-08-21 09:10:15 UTC FreeBSD ports repository Modified files: archivers Makefile Added files: archivers/pecl-phar Makefile distinfo pkg-descr Log: The phar extension provides the phar stream wrapper and the Phar class for manipulating self-contained PHP Archive (phar) files. The Phar class can be used to create and to extract contents of phar files as well as iterating over their contents. PHP Archive files (Phars) are special collections of files that can be transparently run right out of the file, similar to Java's jar archive files. Using a phar archive, it is possible to distribute a complete PHP application in a single file that will run out of the file without modification or extraction. WWW: http://pecl.php.net/package/phar/ PR: ports/115224 Submitted by: Ditesh Shashikant Gathani Revision Changes Path 1.181 +1 -0 ports/archivers/Makefile 1.1 +38 -0 ports/archivers/pecl-phar/Makefile (new) 1.1 +3 -0 ports/archivers/pecl-phar/distinfo (new) 1.1 +13 -0 ports/archivers/pecl-phar/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 21 09:10:37 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BE7E216A421; Tue, 21 Aug 2007 09:10:37 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 851D413C442; Tue, 21 Aug 2007 09:10:37 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L9AbUb085191; Tue, 21 Aug 2007 09:10:37 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L9AblY085190; Tue, 21 Aug 2007 09:10:37 GMT (envelope-from miwi) Message-Id: <200708210910.l7L9AblY085190@repoman.freebsd.org> From: Martin Wilke Date: Tue, 21 Aug 2007 09:10: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: Tue, 21 Aug 2007 09:10:37 -0000 miwi 2007-08-21 09:10:37 UTC FreeBSD ports repository Modified files: . modules Log: pecl-phar --> ports/archivers/pecl-phar Revision Changes Path 1.18574 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 21 09:12:10 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F33E616A420; Tue, 21 Aug 2007 09:12:09 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E3C5A13C4F6; Tue, 21 Aug 2007 09:12:09 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L9C9rc085558; Tue, 21 Aug 2007 09:12:09 GMT (envelope-from jkois@repoman.freebsd.org) Received: (from jkois@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L9C9wh085557; Tue, 21 Aug 2007 09:12:09 GMT (envelope-from jkois) Message-Id: <200708210912.l7L9C9wh085557@repoman.freebsd.org> From: Johann Kois Date: Tue, 21 Aug 2007 09:12:09 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/de_DE.ISO8859-1/books Makefile doc/de_DE.ISO8859-1/books/porters-handbook Makefile book.sgml freebsd.dsl X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 09:12:10 -0000 jkois 2007-08-21 09:12:09 UTC FreeBSD doc repository Modified files: de_DE.ISO8859-1/books Makefile Added files: de_DE.ISO8859-1/books/porters-handbook Makefile book.sgml freebsd.dsl Log: A big welcome to the german tranlation of the porters-handbook. This work was done by the FreeBSD German Documentation Project. A list of people involved in this translation can be found under https://doc.bsdgroup.de/status/porters-handbook.html Revision Changes Path 1.4 +2 -1 doc/de_DE.ISO8859-1/books/Makefile 1.1 +43 -0 doc/de_DE.ISO8859-1/books/porters-handbook/Makefile (new) 1.1 +13979 -0 doc/de_DE.ISO8859-1/books/porters-handbook/book.sgml (new) 1.1 +47 -0 doc/de_DE.ISO8859-1/books/porters-handbook/freebsd.dsl (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 21 09:13:44 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 19F2C16A46C; Tue, 21 Aug 2007 09:13:44 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 04FDD13C4DA; Tue, 21 Aug 2007 09:13:43 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L9Dh2v085710; Tue, 21 Aug 2007 09:13:43 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L9DhEL085708; Tue, 21 Aug 2007 09:13:43 GMT (envelope-from miwi) Message-Id: <200708210913.l7L9DhEL085708@repoman.freebsd.org> From: Martin Wilke Date: Tue, 21 Aug 2007 09:13: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/textproc Makefile ports/textproc/p5-HTML-Entities-ImodePictogram 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, 21 Aug 2007 09:13:44 -0000 miwi 2007-08-21 09:13:43 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/p5-HTML-Entities-ImodePictogram Makefile distinfo pkg-descr pkg-plist Log: HTML::Entities::ImodePictogram handles HTML entities for i-mode pictogram (emoji), which are assigned in Shift_JIS private area. See http://www.nttdocomo.co.jp/i/tag/emoji/index.html for details about i-mode pictogram. WWW: http://search.cpan.org/dist/HTML-Entities-ImodePictogram/ PR: ports/115594 Submitted by: Shinsuke Matsui Revision Changes Path 1.1175 +1 -0 ports/textproc/Makefile 1.1 +23 -0 ports/textproc/p5-HTML-Entities-ImodePictogram/Makefile (new) 1.1 +3 -0 ports/textproc/p5-HTML-Entities-ImodePictogram/distinfo (new) 1.1 +7 -0 ports/textproc/p5-HTML-Entities-ImodePictogram/pkg-descr (new) 1.1 +8 -0 ports/textproc/p5-HTML-Entities-ImodePictogram/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 21 09:14:08 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 238BC16A420; Tue, 21 Aug 2007 09:14:08 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F18EA13C461; Tue, 21 Aug 2007 09:14:07 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L9E7B9085756; Tue, 21 Aug 2007 09:14:07 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L9E7t8085755; Tue, 21 Aug 2007 09:14:07 GMT (envelope-from miwi) Message-Id: <200708210914.l7L9E7t8085755@repoman.freebsd.org> From: Martin Wilke Date: Tue, 21 Aug 2007 09: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: 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, 21 Aug 2007 09:14:08 -0000 miwi 2007-08-21 09:14:07 UTC FreeBSD ports repository Modified files: . modules Log: p5-HTML-Entities-ImodePictogram --> ports/textproc/p5-HTML-Entities-ImodePictogram Revision Changes Path 1.18575 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 21 09:17:26 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C78F16A41A; Tue, 21 Aug 2007 09:17:26 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 04C1B13C48A; Tue, 21 Aug 2007 09:17:26 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L9HP2p085958; Tue, 21 Aug 2007 09:17:25 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L9HPJX085957; Tue, 21 Aug 2007 09:17:25 GMT (envelope-from delphij) Message-Id: <200708210917.l7L9HPJX085957@repoman.freebsd.org> From: Xin LI Date: Tue, 21 Aug 2007 09:17: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/openldap23-server Makefile distinfo ports/net/openldap23-server/files slapd.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: Tue, 21 Aug 2007 09:17:26 -0000 delphij 2007-08-21 09:17:25 UTC FreeBSD ports repository Modified files: net/openldap23-server Makefile distinfo net/openldap23-server/files slapd.sh.in Log: - Update to 2.3.38. - Adjust DATABASEDIR's permission to 700 upon slapd start. Revision Changes Path 1.157 +1 -1 ports/net/openldap23-server/Makefile 1.75 +3 -3 ports/net/openldap23-server/distinfo 1.3 +2 -1 ports/net/openldap23-server/files/slapd.sh.in From owner-cvs-all@FreeBSD.ORG Tue Aug 21 09:23:43 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3DC3816A41A; Tue, 21 Aug 2007 09:23:43 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1647113C458; Tue, 21 Aug 2007 09:23:43 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L9NgSt086505; Tue, 21 Aug 2007 09:23:42 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L9NgXG086504; Tue, 21 Aug 2007 09:23:42 GMT (envelope-from delphij) Message-Id: <200708210923.l7L9NgXG086504@repoman.freebsd.org> From: Xin LI Date: Tue, 21 Aug 2007 09:23: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/openldap24-server Makefile ports/net/openldap24-server/files slapd.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: Tue, 21 Aug 2007 09:23:43 -0000 delphij 2007-08-21 09:23:42 UTC FreeBSD ports repository Modified files: net/openldap24-server Makefile net/openldap24-server/files slapd.sh.in Log: - Adjust DATABASEDIR's permission to 700 upon slapd start. Revision Changes Path 1.142 +1 -1 ports/net/openldap24-server/Makefile 1.3 +2 -1 ports/net/openldap24-server/files/slapd.sh.in From owner-cvs-all@FreeBSD.ORG Tue Aug 21 09:23:55 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4EBB216A46B; Tue, 21 Aug 2007 09:23:55 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3E6E413C494; Tue, 21 Aug 2007 09:23:55 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L9NtHu086558; Tue, 21 Aug 2007 09:23:55 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L9NtFt086557; Tue, 21 Aug 2007 09:23:55 GMT (envelope-from clsung) Message-Id: <200708210923.l7L9NtFt086557@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 21 Aug 2007 09:23: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/textproc Makefile ports/textproc/p5-Net-YASA 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, 21 Aug 2007 09:23:55 -0000 clsung 2007-08-21 09:23:55 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/p5-Net-YASA Makefile distinfo pkg-descr pkg-plist Log: YASA is a simple implementation of Suffix Array for counting frequency of given text/string. This module provides a Perl interface to YASA via REST. WWW: http://search.cpan.org/dist/Net-YASA/ Revision Changes Path 1.1176 +1 -0 ports/textproc/Makefile 1.1 +24 -0 ports/textproc/p5-Net-YASA/Makefile (new) 1.1 +3 -0 ports/textproc/p5-Net-YASA/distinfo (new) 1.1 +6 -0 ports/textproc/p5-Net-YASA/pkg-descr (new) 1.1 +4 -0 ports/textproc/p5-Net-YASA/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 21 09:24:07 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5324E16A468; Tue, 21 Aug 2007 09:24:07 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2AFD613C4DA; Tue, 21 Aug 2007 09:24:07 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L9O762086602; Tue, 21 Aug 2007 09:24:07 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L9O7Yf086601; Tue, 21 Aug 2007 09:24:07 GMT (envelope-from clsung) Message-Id: <200708210924.l7L9O7Yf086601@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 21 Aug 2007 09:24:07 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 09:24:07 -0000 clsung 2007-08-21 09:24:07 UTC FreeBSD ports repository Modified files: . modules Log: p5-Net-YASA --> ports/textproc/p5-Net-YASA Revision Changes Path 1.18576 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 21 09:25:22 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D6E7D16A418; Tue, 21 Aug 2007 09:25:22 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B02AA13C428; Tue, 21 Aug 2007 09:25:22 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L9PMLL086735; Tue, 21 Aug 2007 09:25:22 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L9PMjp086734; Tue, 21 Aug 2007 09:25:22 GMT (envelope-from miwi) Message-Id: <200708210925.l7L9PMjp086734@repoman.freebsd.org> From: Martin Wilke Date: Tue, 21 Aug 2007 09: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/lang/gauche 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, 21 Aug 2007 09:25:22 -0000 miwi 2007-08-21 09:25:22 UTC FreeBSD ports repository Modified files: lang/gauche Makefile distinfo pkg-plist Log: - Update to 0.8.11 PR: 115602 Submitted by: Erik Greenwald (maintainer) Revision Changes Path 1.46 +1 -1 ports/lang/gauche/Makefile 1.26 +3 -3 ports/lang/gauche/distinfo 1.26 +6 -0 ports/lang/gauche/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 21 09:26:19 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5B8A516A49C; Tue, 21 Aug 2007 09:26:19 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 334F213C481; Tue, 21 Aug 2007 09:26:19 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L9QJno086842; Tue, 21 Aug 2007 09:26:19 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L9QJLR086841; Tue, 21 Aug 2007 09:26:19 GMT (envelope-from miwi) Message-Id: <200708210926.l7L9QJLR086841@repoman.freebsd.org> From: Martin Wilke Date: Tue, 21 Aug 2007 09:26: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/databases/gauche-gdbm Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 09:26:19 -0000 miwi 2007-08-21 09:26:19 UTC FreeBSD ports repository Modified files: databases/gauche-gdbm Makefile Log: - Update to 0.8.11 PR: 115603 Submitted by: Erik Greenwald (maintainer) Revision Changes Path 1.39 +1 -1 ports/databases/gauche-gdbm/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 21 09:28:43 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 75BEF16A473; Tue, 21 Aug 2007 09:28:43 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4E05513C4B6; Tue, 21 Aug 2007 09:28:43 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L9ShYH087064; Tue, 21 Aug 2007 09:28:43 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L9Shnn087063; Tue, 21 Aug 2007 09:28:43 GMT (envelope-from miwi) Message-Id: <200708210928.l7L9Shnn087063@repoman.freebsd.org> From: Martin Wilke Date: Tue, 21 Aug 2007 09:28:43 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/gauche-gl 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, 21 Aug 2007 09:28:43 -0000 miwi 2007-08-21 09:28:43 UTC FreeBSD ports repository Modified files: graphics/gauche-gl Makefile distinfo Log: - Update to 0.4.4 PR: 115604 Submitted by: Erik Greenwald (maintainer) Revision Changes Path 1.24 +1 -1 ports/graphics/gauche-gl/Makefile 1.9 +3 -3 ports/graphics/gauche-gl/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 21 09:29:02 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A6C9416A473; Tue, 21 Aug 2007 09:29:02 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7299A13C47E; Tue, 21 Aug 2007 09:29:02 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L9T2jW087145; Tue, 21 Aug 2007 09:29:02 GMT (envelope-from mm@repoman.freebsd.org) Received: (from mm@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L9T2u9087144; Tue, 21 Aug 2007 09:29:02 GMT (envelope-from mm) Message-Id: <200708210929.l7L9T2u9087144@repoman.freebsd.org> From: Martin Matuska Date: Tue, 21 Aug 2007 09:29: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/databases/db45 pkg-descr ports/databases/db46 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, 21 Aug 2007 09:29:02 -0000 mm 2007-08-21 09:29:02 UTC FreeBSD ports repository Modified files: databases/db45 pkg-descr databases/db46 pkg-descr Log: - Update WWW link PR: ports/115668 Approved by: maintainer Revision Changes Path 1.15 +1 -1 ports/databases/db45/pkg-descr 1.16 +1 -1 ports/databases/db46/pkg-descr From owner-cvs-all@FreeBSD.ORG Tue Aug 21 09:38:32 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0447416A421; Tue, 21 Aug 2007 09:38:32 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D186C13C45D; Tue, 21 Aug 2007 09:38:31 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L9cVAw088124; Tue, 21 Aug 2007 09:38:31 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L9cV98088123; Tue, 21 Aug 2007 09:38:31 GMT (envelope-from clsung) Message-Id: <200708210938.l7L9cV98088123@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 21 Aug 2007 09:38: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/science/crf++ 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, 21 Aug 2007 09:38:32 -0000 clsung 2007-08-21 09:38:30 UTC FreeBSD ports repository Modified files: science/crf++ Makefile distinfo Log: - Update to 0.48 - distfile moves to SourceForge Revision Changes Path 1.9 +3 -3 ports/science/crf++/Makefile 1.7 +3 -3 ports/science/crf++/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 21 09:43:14 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6907716A418; Tue, 21 Aug 2007 09:43:14 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5893913C4A5; Tue, 21 Aug 2007 09:43:14 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L9hElV088582; Tue, 21 Aug 2007 09:43:14 GMT (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L9hE8Y088581; Tue, 21 Aug 2007 09:43:14 GMT (envelope-from fjoe) Message-Id: <200708210943.l7L9hE8Y088581@repoman.freebsd.org> From: Max Khon Date: Tue, 21 Aug 2007 09:43: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/lang Makefile ports/lang/cint Makefile distinfo pkg-descr pkg-plist ports/lang/cint/files patch-Makefile patch-configure patch-tool-INSTALLBIN X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 09:43:14 -0000 fjoe 2007-08-21 09:43:13 UTC FreeBSD ports repository Modified files: lang Makefile Added files: lang/cint Makefile distinfo pkg-descr pkg-plist lang/cint/files patch-Makefile patch-configure patch-tool-INSTALLBIN Log: New port: cint CINT is a C/C++ interpreter aimed at processing C/C++ scripts. CINT covers about 95% of ANSI C and 85% of C++. A CINT script can call compiled classes/functions and compiled code can make callbacks to CINT user defined functions. Utilities, like makecint and rootcint, automate the process of embedding compiled C/C++ library code as shared objects (as Dynamic Link Library, DLL, or shared library, .so). Source files and shared objects can be dynamically loaded/unloaded without stopping the CINT process. CINT offers a gdb like debugging environment for interpreted programs. Revision Changes Path 1.568 +1 -0 ports/lang/Makefile 1.1 +35 -0 ports/lang/cint/Makefile (new) 1.1 +3 -0 ports/lang/cint/distinfo (new) 1.1 +16 -0 ports/lang/cint/files/patch-Makefile (new) 1.1 +41 -0 ports/lang/cint/files/patch-configure (new) 1.1 +31 -0 ports/lang/cint/files/patch-tool-INSTALLBIN (new) 1.1 +12 -0 ports/lang/cint/pkg-descr (new) 1.1 +312 -0 ports/lang/cint/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 21 09:44:38 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1D98C16A417; Tue, 21 Aug 2007 09:44:38 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EB4C913C494; Tue, 21 Aug 2007 09:44:37 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L9iboF088656; Tue, 21 Aug 2007 09:44:37 GMT (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L9ibAO088655; Tue, 21 Aug 2007 09:44:37 GMT (envelope-from fjoe) Message-Id: <200708210944.l7L9ibAO088655@repoman.freebsd.org> From: Max Khon Date: Tue, 21 Aug 2007 09:44: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: Tue, 21 Aug 2007 09:44:38 -0000 fjoe 2007-08-21 09:44:37 UTC FreeBSD ports repository Modified files: . modules Log: cint -> ports/lang/cint Revision Changes Path 1.18577 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 21 09:47:20 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E7A3416A419; Tue, 21 Aug 2007 09:47:20 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C066513C481; Tue, 21 Aug 2007 09:47:20 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L9lKTA088819; Tue, 21 Aug 2007 09:47:20 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L9lKA4088818; Tue, 21 Aug 2007 09:47:20 GMT (envelope-from clsung) Message-Id: <200708210947.l7L9lKA4088818@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 21 Aug 2007 09:47: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/science/crf++ 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, 21 Aug 2007 09:47:21 -0000 clsung 2007-08-21 09:47:20 UTC FreeBSD ports repository Modified files: science/crf++ Makefile distinfo Log: - update to 0.49 - 0.49 is out, and I missed it in last commit - Changes 2007-08-18: CRF++ 0.49 Released * Added setter/getter for nbest, cost_factor and vlevel to API 2007-07-07: CRF++ 0.48 Released * Support L1-CRF. use -a CRF-L1 option to enable L1 regularization. Revision Changes Path 1.10 +1 -1 ports/science/crf++/Makefile 1.8 +3 -3 ports/science/crf++/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 21 09:53:22 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A26416A417; Tue, 21 Aug 2007 09:53:22 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1ACAE13C457; Tue, 21 Aug 2007 09:53:22 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L9rLdj089391; Tue, 21 Aug 2007 09:53:21 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L9rLkY089390; Tue, 21 Aug 2007 09:53:21 GMT (envelope-from itetcu) Message-Id: <200708210953.l7L9rLkY089390@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 21 Aug 2007 09: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/x11 Makefile ports/x11/simdock 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, 21 Aug 2007 09:53:22 -0000 itetcu 2007-08-21 09:53:21 UTC FreeBSD ports repository Modified files: x11 Makefile Added files: x11/simdock Makefile distinfo pkg-descr pkg-plist Log: SimDock is a fast and customizable dockbar. It is written in c++ and wxWidgets and fits well in Gnome but works on most desktop environments. Does not require Compiz nor 3D acceleration. WWW: http://sourceforge.net/projects/simdock/ Author: simonedll@yahoo.it PR: ports/114867 Submitted by: Yinghong.Liu Revision Changes Path 1.662 +1 -0 ports/x11/Makefile 1.1 +42 -0 ports/x11/simdock/Makefile (new) 1.1 +3 -0 ports/x11/simdock/distinfo (new) 1.1 +6 -0 ports/x11/simdock/pkg-descr (new) 1.1 +10 -0 ports/x11/simdock/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 21 09:53:59 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C47B416A419; Tue, 21 Aug 2007 09:53:59 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9D01F13C469; Tue, 21 Aug 2007 09:53:59 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7L9rxS9089439; Tue, 21 Aug 2007 09:53:59 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7L9rxQD089429; Tue, 21 Aug 2007 09:53:59 GMT (envelope-from itetcu) Message-Id: <200708210953.l7L9rxQD089429@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 21 Aug 2007 09:53:48 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: 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, 21 Aug 2007 09:53:59 -0000 itetcu 2007-08-21 09:53:48 UTC FreeBSD ports repository Modified files: . modules Log: simdock --> ports/x11/simdock Revision Changes Path 1.18578 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 21 10:05:41 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E952916A418; Tue, 21 Aug 2007 10:05:41 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C20A813C491; Tue, 21 Aug 2007 10:05:41 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LA5f6v091376; Tue, 21 Aug 2007 10:05:41 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LA5fs8091375; Tue, 21 Aug 2007 10:05:41 GMT (envelope-from clsung) Message-Id: <200708211005.l7LA5fs8091375@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 21 Aug 2007 10:05:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/p5-POE-Component-Jabber 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, 21 Aug 2007 10:05:42 -0000 clsung 2007-08-21 10:05:41 UTC FreeBSD ports repository Modified files: net/p5-POE-Component-Jabber Makefile distinfo Log: - Update to 2.02 Revision Changes Path 1.5 +2 -3 ports/net/p5-POE-Component-Jabber/Makefile 1.5 +3 -3 ports/net/p5-POE-Component-Jabber/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 21 10:16:48 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2017F16A468; Tue, 21 Aug 2007 10:16:48 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EC6AF13C48E; Tue, 21 Aug 2007 10:16:47 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LAGlli092085; Tue, 21 Aug 2007 10:16:47 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LAGlem092084; Tue, 21 Aug 2007 10:16:47 GMT (envelope-from clsung) Message-Id: <200708211016.l7LAGlem092084@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 21 Aug 2007 10: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/devel/p5-Data-Hexdumper 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, 21 Aug 2007 10:16:48 -0000 clsung 2007-08-21 10:16:47 UTC FreeBSD ports repository Modified files: devel/p5-Data-Hexdumper Makefile distinfo Log: - Update to 1.3 Revision Changes Path 1.2 +3 -4 ports/devel/p5-Data-Hexdumper/Makefile 1.3 +3 -3 ports/devel/p5-Data-Hexdumper/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 21 10:22:28 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9540E16A46B; Tue, 21 Aug 2007 10:22:28 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6E47413C49D; Tue, 21 Aug 2007 10:22:28 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LAMSCA092512; Tue, 21 Aug 2007 10:22:28 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LAMSLP092511; Tue, 21 Aug 2007 10:22:28 GMT (envelope-from clsung) Message-Id: <200708211022.l7LAMSLP092511@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 21 Aug 2007 10: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/pecl-geoip 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, 21 Aug 2007 10:22:28 -0000 clsung 2007-08-21 10:22:27 UTC FreeBSD ports repository Modified files: net/pecl-geoip Makefile distinfo Log: - Update to 1.0.0 - pass maintainership PR: ports/115635 Submitted by: Gea-Suan Lin Revision Changes Path 1.2 +2 -2 ports/net/pecl-geoip/Makefile 1.2 +3 -3 ports/net/pecl-geoip/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 21 10:44:08 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3804916A417; Tue, 21 Aug 2007 10:44:08 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1031413C48D; Tue, 21 Aug 2007 10:44:08 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LAi7kD093824; Tue, 21 Aug 2007 10:44:07 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LAi7Y8093823; Tue, 21 Aug 2007 10:44:07 GMT (envelope-from rafan) Message-Id: <200708211044.l7LAi7Y8093823@repoman.freebsd.org> From: Rong-En Fan Date: Tue, 21 Aug 2007 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/devel/pushmi 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, 21 Aug 2007 10:44:08 -0000 rafan 2007-08-21 10:44:07 UTC FreeBSD ports repository Modified files: devel/pushmi Makefile distinfo Log: - Update to 1.0.0 Revision Changes Path 1.5 +1 -1 ports/devel/pushmi/Makefile 1.5 +3 -3 ports/devel/pushmi/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 21 11:00:18 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B446616A418; Tue, 21 Aug 2007 11:00:18 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8CF3513C494; Tue, 21 Aug 2007 11:00:18 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LB0Idn094740; Tue, 21 Aug 2007 11:00:18 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LB0I7W094739; Tue, 21 Aug 2007 11:00:18 GMT (envelope-from miwi) Message-Id: <200708211100.l7LB0I7W094739@repoman.freebsd.org> From: Martin Wilke Date: Tue, 21 Aug 2007 11:00: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/drupal5-nice_menus 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, 21 Aug 2007 11:00:18 -0000 miwi 2007-08-21 11:00:17 UTC FreeBSD ports repository Modified files: www/drupal5-nice_menus Makefile distinfo Log: - Update to 20070816 - Unbreak PR: 115649 Submitted by: Nick Hilliard (maintainer) Revision Changes Path 1.6 +4 -6 ports/www/drupal5-nice_menus/Makefile 1.3 +3 -3 ports/www/drupal5-nice_menus/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 21 11:01:56 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9C10916A41B; Tue, 21 Aug 2007 11:01:56 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8B98913C4DE; Tue, 21 Aug 2007 11:01:56 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LB1uiw095031; Tue, 21 Aug 2007 11:01:56 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LB1uM6095030; Tue, 21 Aug 2007 11:01:56 GMT (envelope-from itetcu) Message-Id: <200708211101.l7LB1uM6095030@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 21 Aug 2007 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/dns Makefile ports/dns/p5-Net-DNSBL-MultiDaemon 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, 21 Aug 2007 11:01:56 -0000 itetcu 2007-08-21 11:01:56 UTC FreeBSD ports repository Modified files: dns Makefile Added files: dns/p5-Net-DNSBL-MultiDaemon Makefile distinfo pkg-descr pkg-plist Log: Net::DNSBL::MultiDaemon is the Perl module that implements the multi_dnsbl daemon. multi_dnsbl is a DNS emulator daemon that increases the efficacy of DNSBL look-ups in a mail system. multi_dnsbl may be used as a stand-alone DNSBL or as a plug-in for a standard BIND 9 installation. multi_dnsbl shares a common configuration file format with the Mail::SpamCannibal sc_BLcheck.pl script so that DNSBL's can be maintained in a common configuration file for an entire mail installation. Because DNSBL usefulness is dependent on the nature and source of spam sent to a specific site and because sometimes DNSBL's may provide intermittant service, multi_dnsbl interrogates them sorted in the order of greatest successful hits. DNSBL's that do not respond within the configured timeout period are not interrogated at all after 6 consecutive failures, and thereafter will be retried not more often than once every hour until they come back online. This eliminates the need to place DNSBL's in a particular order in your MTA's config file or periodically monitor the DNSBL statistics and/or update the MTA config file. WWW: http://search.cpan.org/~miker/Net-DNSBL-MultiDaemon-0.18/MultiDaemon.pm PR: ports/115639 Submitted by: Andrew Greenwood Revision Changes Path 1.83 +1 -0 ports/dns/Makefile 1.1 +28 -0 ports/dns/p5-Net-DNSBL-MultiDaemon/Makefile (new) 1.1 +3 -0 ports/dns/p5-Net-DNSBL-MultiDaemon/distinfo (new) 1.1 +21 -0 ports/dns/p5-Net-DNSBL-MultiDaemon/pkg-descr (new) 1.1 +29 -0 ports/dns/p5-Net-DNSBL-MultiDaemon/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 21 11:02:21 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CBC4E16A418; Tue, 21 Aug 2007 11:02:21 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A41EB13C478; Tue, 21 Aug 2007 11:02:21 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LB2LHb095072; Tue, 21 Aug 2007 11:02:21 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LB2LJB095071; Tue, 21 Aug 2007 11:02:21 GMT (envelope-from itetcu) Message-Id: <200708211102.l7LB2LJB095071@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 21 Aug 2007 11:02: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: Tue, 21 Aug 2007 11:02:21 -0000 itetcu 2007-08-21 11:02:21 UTC FreeBSD ports repository Modified files: . modules Log: p5-Net-DNSBL-MultiDaemon --> ports/dns/p5-Net-DNSBL-MultiDaemon Revision Changes Path 1.18579 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 21 11:16:22 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 63F0C16A468; Tue, 21 Aug 2007 11:16:22 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3BDFE13C4D0; Tue, 21 Aug 2007 11:16:22 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LBGMx7097110; Tue, 21 Aug 2007 11:16:22 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LBGM4F097109; Tue, 21 Aug 2007 11:16:22 GMT (envelope-from itetcu) Message-Id: <200708211116.l7LBGM4F097109@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 21 Aug 2007 11:16:22 +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, 21 Aug 2007 11:16:22 -0000 itetcu 2007-08-21 11:16:21 UTC FreeBSD doc repository (ports committer) Modified files: en_US.ISO8859-1/articles/contributors contrib.additional.sgml Log: Add Andrew Greenwood for dns/p5-Net-DNSBL-MultiDaemon. Revision Changes Path 1.722 +5 -0 doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml From owner-cvs-all@FreeBSD.ORG Tue Aug 21 11:18:13 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D582716A41B; Tue, 21 Aug 2007 11:18:13 +0000 (UTC) (envelope-from nemoliu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id ACD6113C4B3; Tue, 21 Aug 2007 11:18:13 +0000 (UTC) (envelope-from nemoliu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LBIDgl097236; Tue, 21 Aug 2007 11:18:13 GMT (envelope-from nemoliu@repoman.freebsd.org) Received: (from nemoliu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LBIDko097235; Tue, 21 Aug 2007 11:18:13 GMT (envelope-from nemoliu) Message-Id: <200708211118.l7LBIDko097235@repoman.freebsd.org> From: Tong LIU Date: Tue, 21 Aug 2007 11: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: ports/lang/jruby Makefile ports/lang/jruby/files patch-jruby patch-jrubyc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 11:18:13 -0000 nemoliu 2007-08-21 11:18:13 UTC FreeBSD ports repository Modified files: lang/jruby Makefile lang/jruby/files patch-jruby patch-jrubyc Log: - add bash to RUN_DEPENDS - change bash declare in patch Approved by: delphij (mentor) Revision Changes Path 1.23 +2 -0 ports/lang/jruby/Makefile 1.2 +1 -1 ports/lang/jruby/files/patch-jruby 1.2 +12 -6 ports/lang/jruby/files/patch-jrubyc From owner-cvs-all@FreeBSD.ORG Tue Aug 21 11:22:01 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D324316A418; Tue, 21 Aug 2007 11:22:01 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id ABA0F13C478; Tue, 21 Aug 2007 11:22:01 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LBM1Qb097564; Tue, 21 Aug 2007 11:22:01 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LBM1O9097563; Tue, 21 Aug 2007 11:22:01 GMT (envelope-from itetcu) Message-Id: <200708211122.l7LBM1O9097563@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 21 Aug 2007 11:22:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/wyvern Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 11:22:01 -0000 itetcu 2007-08-21 11:22:01 UTC FreeBSD ports repository Modified files: www/wyvern Makefile Log: Mark broken on amd64/7.0 PR: ports/115491 Submitted by: Kouichi ABE (WALL) (maintainer) Revision Changes Path 1.19 +4 -0 ports/www/wyvern/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 21 11:43:16 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A9B716A41A; Tue, 21 Aug 2007 11:43:16 +0000 (UTC) (envelope-from pjd@garage.freebsd.pl) Received: from mail.garage.freebsd.pl (arm132.internetdsl.tpnet.pl [83.17.198.132]) by mx1.freebsd.org (Postfix) with ESMTP id AC79613C4DE; Tue, 21 Aug 2007 11:43:15 +0000 (UTC) (envelope-from pjd@garage.freebsd.pl) Received: by mail.garage.freebsd.pl (Postfix, from userid 65534) id 5377145CD9; Tue, 21 Aug 2007 13:43:13 +0200 (CEST) Received: from localhost (pjd.wheel.pl [10.0.1.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.garage.freebsd.pl (Postfix) with ESMTP id BD4474569A; Tue, 21 Aug 2007 13:43:04 +0200 (CEST) Date: Tue, 21 Aug 2007 13:42:07 +0200 From: Pawel Jakub Dawidek To: Alfred Perlstein Message-ID: <20070821114207.GC1132@garage.freebsd.pl> References: <200708182118.37998.tijl@ulyssis.org> <20070818204223.D1234@fledge.watson.org> <46C7A9A4.5090404@samsco.org> <20070819095302.D66918@fledge.watson.org> <222044094-1187603330-cardhu_decombobulator_blackberry.rim.net-1638751523-@bxe027.bisx.prod.on.blackberry> <46C9AE64.50705@samsco.org> <20070820182905.GH87451@elvis.mu.org> <200708201842.l7KIgAbd040030@apollo.backplane.com> <20070820184737.GJ87451@elvis.mu.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="HG+GLK89HZ1zG0kk" Content-Disposition: inline In-Reply-To: <20070820184737.GJ87451@elvis.mu.org> User-Agent: Mutt/1.4.2.3i X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 7.0-CURRENT i386 X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.garage.freebsd.pl X-Spam-Level: X-Spam-Status: No, score=-5.9 required=3.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.0.4 X-Mailman-Approved-At: Tue, 21 Aug 2007 11:45:22 +0000 Cc: wine-freebsd@hub.org, Kris Moore , Matthew Dillon , src-committers@freebsd.org, cvs-src@freebsd.org, Scott Long , cvs-all@freebsd.org, Daniel Eischen , Robert Watson , David Xu , Tijl Coosemans , Xin LI Subject: Re: cvs commit: src/sys/kern kern_thr.c syscalls.master src/sys/sys X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 11:43:16 -0000 --HG+GLK89HZ1zG0kk Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 20, 2007 at 11:47:37AM -0700, Alfred Perlstein wrote: > * Matthew Dillon [070820 11:43] wrote: > > We have a lwp_kill() system call that sends a signal to a thread wi= thin > > a process. It turns out to be fairly necessary for any sort of hea= vily > > integrated multi-threaded work. In our case we need it to be able = to > > issue IPIs (aka SIGUSR1) to cpus within a SMP virtual kernel. > >=20 > > int lwp_kill(pid_t pid, lwpid_t tid, int sig); > >=20 > > -Matt >=20 > It's always bothered me that there wasn't a generation count > included in the kill(2) interface. >=20 > What do you think about that? >=20 > It would be useful for pidfiles to ensure that a recycled pid > doesn't get a program SIGwhatever'd. I worked on process generation number when I was working on pidfile(3) API. We had discussion about this and consensus was (AFAIR) that we don't need that, because for purpose of pidfile(3) we can use flock(2), which is enough (modulo file systems that doesn't support it). The probably incomplete and never tested patch you can find here: http://people.freebsd.org/~pjd/patches/procbid.patch (I called it process born ID.) --=20 Pawel Jakub Dawidek http://www.wheel.pl pjd@FreeBSD.org http://www.FreeBSD.org FreeBSD committer Am I Evil? Yes, I Am! --HG+GLK89HZ1zG0kk Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQFGys+PForvXbEpPzQRAht9AKCEmp66NkVksmlZI5AfidLufha5ZACggdmZ VpThYhiuJlnXyWeDPwDRihI= =teKn -----END PGP SIGNATURE----- --HG+GLK89HZ1zG0kk-- From owner-cvs-all@FreeBSD.ORG Tue Aug 21 11:57:11 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A940216A417; Tue, 21 Aug 2007 11:57:11 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 81B1213C48A; Tue, 21 Aug 2007 11:57:11 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LBvBYn099409; Tue, 21 Aug 2007 11:57:11 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LBvBdu099408; Tue, 21 Aug 2007 11:57:11 GMT (envelope-from edwin) Message-Id: <200708211157.l7LBvBdu099408@repoman.freebsd.org> From: Edwin Groothuis Date: Tue, 21 Aug 2007 11:57: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/cint Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 11:57:11 -0000 edwin 2007-08-21 11:57:10 UTC FreeBSD ports repository Modified files: lang/cint Makefile Log: Fix INDEX. Pointy hat to: fjoe@ See http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/makefile-depend.html#AEN2125 on how to use BUILD_DEPENDS. Revision Changes Path 1.2 +1 -1 ports/lang/cint/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 21 12:50:58 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7C8EB16A418; Tue, 21 Aug 2007 12:50:58 +0000 (UTC) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6A77F13C467; Tue, 21 Aug 2007 12:50:58 +0000 (UTC) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LCoww2012505; Tue, 21 Aug 2007 12:50:58 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LCowfE012502; Tue, 21 Aug 2007 12:50:58 GMT (envelope-from sem) Message-Id: <200708211250.l7LCowfE012502@repoman.freebsd.org> From: Sergey Matveychuk Date: Tue, 21 Aug 2007 12:50:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/zmailer Makefile distinfo pkg-message pkg-plist ports/mail/zmailer/files patch-EAI_NODATA patch-aa patch-ab patch-proto::post-install.sh.in patch-smtpserver-smtpetrn.c patch-transports-smtp-smtp.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, 21 Aug 2007 12:50:58 -0000 sem 2007-08-21 12:50:57 UTC FreeBSD ports repository Modified files: mail/zmailer Makefile distinfo pkg-plist Added files: mail/zmailer pkg-message mail/zmailer/files patch-EAI_NODATA patch-aa patch-ab patch-proto::post-install.sh.in patch-smtpserver-smtpetrn.c patch-transports-smtp-smtp.h Log: - Roll back to a previous version. The last one complete broken. - PORTEPOCH bump. Revision Changes Path 1.31 +2 -3 ports/mail/zmailer/Makefile 1.6 +3 -3 ports/mail/zmailer/distinfo 1.3 +37 -0 ports/mail/zmailer/files/patch-EAI_NODATA (new) 1.6 +34 -0 ports/mail/zmailer/files/patch-aa (new) 1.6 +10 -0 ports/mail/zmailer/files/patch-ab (new) 1.3 +11 -0 ports/mail/zmailer/files/patch-proto::post-install.sh.in (new) 1.3 +11 -0 ports/mail/zmailer/files/patch-smtpserver-smtpetrn.c (new) 1.3 +12 -0 ports/mail/zmailer/files/patch-transports-smtp-smtp.h (new) 1.4 +3 -0 ports/mail/zmailer/pkg-message (new) 1.7 +9 -2 ports/mail/zmailer/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 21 12:52:57 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A363316A46D; Tue, 21 Aug 2007 12:52:57 +0000 (UTC) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8FA6113C4CC; Tue, 21 Aug 2007 12:52:57 +0000 (UTC) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LCqvoS012835; Tue, 21 Aug 2007 12:52:57 GMT (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LCqv6X012833; Tue, 21 Aug 2007 12:52:57 GMT (envelope-from keramida) Message-Id: <200708211252.l7LCqv6X012833@repoman.freebsd.org> From: Giorgos Keramidas Date: Tue, 21 Aug 2007 12:52: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/mn_MN.UTF-8/books/handbook/advanced-networking chapter.sgml doc/mn_MN.UTF-8/books/handbook/config chapter.sgml doc/mn_MN.UTF-8/books/handbook/disks chapter.sgml doc/mn_MN.UTF-8/books/handbook/introduction chapter.sgml doc/mn_MN.UTF-8/books/handbook/network-servers 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, 21 Aug 2007 12:52:57 -0000 keramida 2007-08-21 12:52:57 UTC FreeBSD doc repository Modified files: mn_MN.UTF-8/books/handbook/advanced-networking chapter.sgml mn_MN.UTF-8/books/handbook/config chapter.sgml mn_MN.UTF-8/books/handbook/disks chapter.sgml mn_MN.UTF-8/books/handbook/introduction chapter.sgml mn_MN.UTF-8/books/handbook/network-servers chapter.sgml Log: Update the Mongolian translation of the Handbook. MFen: 1.398 -> 1.399 mn_MN.UTF-8/books/handbook/advanced-networking/chapter.sgml 1.226 -> 1.227 mn_MN.UTF-8/books/handbook/config/chapter.sgml 1.274 -> 1.275 mn_MN.UTF-8/books/handbook/disks/chapter.sgml 1.119 -> 1.120 mn_MN.UTF-8/books/handbook/introduction/chapter.sgml 1.99 -> 1.101 mn_MN.UTF-8/books/handbook/network-servers/chapter.sgml Revision Changes Path 1.7 +87 -1 doc/mn_MN.UTF-8/books/handbook/advanced-networking/chapter.sgml 1.4 +5 -5 doc/mn_MN.UTF-8/books/handbook/config/chapter.sgml 1.6 +16 -18 doc/mn_MN.UTF-8/books/handbook/disks/chapter.sgml 1.7 +8 -4 doc/mn_MN.UTF-8/books/handbook/introduction/chapter.sgml 1.8 +20 -9 doc/mn_MN.UTF-8/books/handbook/network-servers/chapter.sgml From owner-cvs-all@FreeBSD.ORG Tue Aug 21 12:53:02 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DC67316A46E; Tue, 21 Aug 2007 12:53:02 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A830613C45D; Tue, 21 Aug 2007 12:53:02 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LCqvVe012834; Tue, 21 Aug 2007 12:53:02 GMT (envelope-from kib@repoman.freebsd.org) Received: (from kib@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LCqvBg012831; Tue, 21 Aug 2007 12:52:57 GMT (envelope-from kib) Message-Id: <200708211252.l7LCqvBg012831@repoman.freebsd.org> From: Konstantin Belousov Date: Tue, 21 Aug 2007 12:52:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/drm i915_dma.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 12:53:03 -0000 kib 2007-08-21 12:52:57 UTC FreeBSD src repository Modified files: sys/dev/drm i915_dma.c Log: Properly initialize the dev_priv before calling the i915_dma_cleanup(). This fixes my rev. 1.5. Reviewed by: anholt Approved by: re (kensmith) MFC after: 2 weeks Revision Changes Path 1.6 +2 -3 src/sys/dev/drm/i915_dma.c From owner-cvs-all@FreeBSD.ORG Tue Aug 21 13:20:14 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 262C716A41B; Tue, 21 Aug 2007 13:20:14 +0000 (UTC) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F1F3613C442; Tue, 21 Aug 2007 13:20:13 +0000 (UTC) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LDKDWT015846; Tue, 21 Aug 2007 13:20:13 GMT (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LDKDFF015845; Tue, 21 Aug 2007 13:20:13 GMT (envelope-from sanpei) Message-Id: <200708211320.l7LDKDFF015845@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Tue, 21 Aug 2007 13:20: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/share/man/man4 umodem.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: Tue, 21 Aug 2007 13:20:14 -0000 sanpei 2007-08-21 13:20:13 UTC FreeBSD src repository Modified files: share/man/man4 umodem.4 Log: Add a HARDWARE section which lists supported devices. Kyocera AH-K3001V Mobile Phone(WILLCOM) Kyocera WX320K Mobile Phone(WILLCOM) Approved by: re (bmah) Revision Changes Path 1.10 +4 -0 src/share/man/man4/umodem.4 From owner-cvs-all@FreeBSD.ORG Tue Aug 21 13:32:04 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9965916A46E; Tue, 21 Aug 2007 13:32:04 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EE5B713C45E; Tue, 21 Aug 2007 13:32:03 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LDW3Fj016817; Tue, 21 Aug 2007 13:32:03 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LDW3B7016816; Tue, 21 Aug 2007 13:32:03 GMT (envelope-from itetcu) Message-Id: <200708211332.l7LDW3B7016816@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Tue, 21 Aug 2007 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/sysutils/usbhotkey 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, 21 Aug 2007 13:32:04 -0000 itetcu 2007-08-21 13:32:03 UTC FreeBSD ports repository Modified files: sysutils/usbhotkey Makefile distinfo pkg-plist Log: Update to 0.3 PR: ports/115669 Submitted by: Nikos Ntarmos (maintainer) Revision Changes Path 1.2 +1 -1 ports/sysutils/usbhotkey/Makefile 1.2 +3 -3 ports/sysutils/usbhotkey/distinfo 1.2 +3 -13 ports/sysutils/usbhotkey/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 21 13:43:50 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1331316A419; Tue, 21 Aug 2007 13:43:50 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DD94613C46C; Tue, 21 Aug 2007 13:43:49 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LDhndQ017597; Tue, 21 Aug 2007 13:43:49 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LDhn60017596; Tue, 21 Aug 2007 13:43:49 GMT (envelope-from dinoex) Message-Id: <200708211343.l7LDhn60017596@repoman.freebsd.org> From: Dirk Meyer Date: Tue, 21 Aug 2007 13: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/multimedia/sabbu 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, 21 Aug 2007 13:43:50 -0000 dinoex 2007-08-21 13:43:49 UTC FreeBSD ports repository Modified files: multimedia/sabbu pkg-descr Log: - add url Revision Changes Path 1.3 +2 -0 ports/multimedia/sabbu/pkg-descr From owner-cvs-all@FreeBSD.ORG Tue Aug 21 14:00:30 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E99C416A47D; Tue, 21 Aug 2007 14:00:30 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 687B513C468; Tue, 21 Aug 2007 14:00:30 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LE0U3U024839; Tue, 21 Aug 2007 14:00:30 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LE0Uqq024838; Tue, 21 Aug 2007 14:00:30 GMT (envelope-from ahze) Message-Id: <200708211400.l7LE0Uqq024838@repoman.freebsd.org> From: Michael Johnson Date: Tue, 21 Aug 2007 14:00: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/multimedia/ffmpeg Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 14:00:31 -0000 ahze 2007-08-21 14:00:30 UTC FreeBSD ports repository Modified files: multimedia/ffmpeg Makefile Log: Make CONFIGURE_ARGS and MAKE_ENV append since its included after bsd.port.pre.mk Reported by: lol@chistydom.ru Revision Changes Path 1.70 +2 -2 ports/multimedia/ffmpeg/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 21 14:02:42 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A0F816A419; Tue, 21 Aug 2007 14:02:42 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 16D4113C483; Tue, 21 Aug 2007 14:02:42 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LE2fpa025276; Tue, 21 Aug 2007 14:02:41 GMT (envelope-from mm@repoman.freebsd.org) Received: (from mm@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LE2fro025275; Tue, 21 Aug 2007 14:02:41 GMT (envelope-from mm) Message-Id: <200708211402.l7LE2fro025275@repoman.freebsd.org> From: Martin Matuska Date: Tue, 21 Aug 2007 14:02: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/archivers/aolserver-nszlib Makefile ports/databases/aolserver-nsmysql Makefile ports/databases/aolserver-nspostgres Makefile ports/graphics/aolserver-nsgd Makefile ports/security/aolserver-nsencrypt Makefile ports/security/aolserver-nsmcrypt Makefile ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 14:02:42 -0000 mm 2007-08-21 14:02:41 UTC FreeBSD ports repository Modified files: archivers/aolserver-nszlib Makefile databases/aolserver-nsmysql Makefile databases/aolserver-nspostgres Makefile graphics/aolserver-nsgd Makefile security/aolserver-nsencrypt Makefile security/aolserver-nsmcrypt Makefile security/aolserver-nsmhash Makefile security/aolserver-nsopenssl Makefile security/aolserver-nssha1 Makefile www/aolserver-nscache Makefile Log: - Fix RUN_DEPENDS - Bump PORTREVISION devel/gmake was accidentially included in RUN_DEPENDS Revision Changes Path 1.4 +2 -2 ports/archivers/aolserver-nszlib/Makefile 1.4 +2 -2 ports/databases/aolserver-nsmysql/Makefile 1.6 +2 -2 ports/databases/aolserver-nspostgres/Makefile 1.7 +2 -2 ports/graphics/aolserver-nsgd/Makefile 1.4 +2 -2 ports/security/aolserver-nsencrypt/Makefile 1.6 +2 -1 ports/security/aolserver-nsmcrypt/Makefile 1.6 +2 -1 ports/security/aolserver-nsmhash/Makefile 1.3 +6 -5 ports/security/aolserver-nsopenssl/Makefile 1.3 +6 -5 ports/security/aolserver-nssha1/Makefile 1.5 +2 -2 ports/www/aolserver-nscache/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 21 15:55:39 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7D4AF16A420; Tue, 21 Aug 2007 15:55:39 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 54D7513C481; Tue, 21 Aug 2007 15:55:39 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LFtdR9046618; Tue, 21 Aug 2007 15:55:39 GMT (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LFtdec046613; Tue, 21 Aug 2007 15:55:39 GMT (envelope-from fjoe) Message-Id: <200708211555.l7LFtdec046613@repoman.freebsd.org> From: Max Khon Date: Tue, 21 Aug 2007 15:55: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/archivers/upx 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, 21 Aug 2007 15:55:39 -0000 fjoe 2007-08-21 15:55:38 UTC FreeBSD ports repository Modified files: archivers/upx Makefile distinfo Log: Update to 3.01 PR: 115570 Submitted by: mm@ Revision Changes Path 1.5 +1 -1 ports/archivers/upx/Makefile 1.5 +3 -3 ports/archivers/upx/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 21 16:03:49 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D110E16A417; Tue, 21 Aug 2007 16:03:49 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A8AA113C46E; Tue, 21 Aug 2007 16:03:49 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LG3n05048298; Tue, 21 Aug 2007 16:03:49 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LG3nCg048297; Tue, 21 Aug 2007 16:03:49 GMT (envelope-from garga) Message-Id: <200708211603.l7LG3nCg048297@repoman.freebsd.org> From: Renato Botelho Date: Tue, 21 Aug 2007 16:03:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/clamav 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, 21 Aug 2007 16:03:49 -0000 garga 2007-08-21 16:03:49 UTC FreeBSD ports repository Modified files: security/clamav Makefile distinfo Log: - Update to 0.91.2 PR: ports/115682 Submitted by: Michael Scheidell Revision Changes Path 1.104 +1 -1 ports/security/clamav/Makefile 1.43 +3 -3 ports/security/clamav/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 21 16:27:51 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B47D016A418; Tue, 21 Aug 2007 16:27:51 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A283813C4A8; Tue, 21 Aug 2007 16:27:51 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LGRp7W049691; Tue, 21 Aug 2007 16:27:51 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LGRpom049690; Tue, 21 Aug 2007 16:27:51 GMT (envelope-from thierry) Message-Id: <200708211627.l7LGRpom049690@repoman.freebsd.org> From: Thierry Thomas Date: Tue, 21 Aug 2007 16:27: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/french Makefile ports/french/pluxml Makefile distinfo pkg-descr pkg-plist ports/french/pluxml/files pkg-deinstall.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: Tue, 21 Aug 2007 16:27:51 -0000 thierry 2007-08-21 16:27:51 UTC FreeBSD ports repository Modified files: french Makefile Added files: french/pluxml Makefile distinfo pkg-descr pkg-plist french/pluxml/files pkg-deinstall.in pkg-message.in Log: Pluxml is a tiny tool to generate blog based on php and xml. Feature: * Rss * categories * can be used as a photoblog WWW: http://pluxml.org/ PR: ports/115382 Submitted by: Philippe Audeoud Revision Changes Path 1.54 +1 -0 ports/french/Makefile 1.1 +39 -0 ports/french/pluxml/Makefile (new) 1.1 +3 -0 ports/french/pluxml/distinfo (new) 1.1 +12 -0 ports/french/pluxml/files/pkg-deinstall.in (new) 1.1 +16 -0 ports/french/pluxml/files/pkg-message.in (new) 1.1 +7 -0 ports/french/pluxml/pkg-descr (new) 1.1 +43 -0 ports/french/pluxml/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 21 16:28:01 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 401A316A502; Tue, 21 Aug 2007 16:28:01 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 128CD13C469; Tue, 21 Aug 2007 16:28:01 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LGS0ik049731; Tue, 21 Aug 2007 16:28:00 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LGS0I7049730; Tue, 21 Aug 2007 16:28:00 GMT (envelope-from thierry) Message-Id: <200708211628.l7LGS0I7049730@repoman.freebsd.org> From: Thierry Thomas Date: Tue, 21 Aug 2007 16: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: 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, 21 Aug 2007 16:28:01 -0000 thierry 2007-08-21 16:28:00 UTC FreeBSD ports repository Modified files: . modules Log: fr-pluxml --> ports/french/pluxml Revision Changes Path 1.18580 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 21 16:33:56 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2304516A418; Tue, 21 Aug 2007 16:33:56 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EE5A913C480; Tue, 21 Aug 2007 16:33:55 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LGXt7I050274; Tue, 21 Aug 2007 16:33:55 GMT (envelope-from emaste@repoman.freebsd.org) Received: (from emaste@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LGXtS2050273; Tue, 21 Aug 2007 16:33:55 GMT (envelope-from emaste) Message-Id: <200708211633.l7LGXtS2050273@repoman.freebsd.org> From: Ed Maste Date: Tue, 21 Aug 2007 16:33: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/dev/aac aac.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 16:33:56 -0000 emaste 2007-08-21 16:33:55 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/aac aac.c Log: MFC aac.c 1.119: The return value of aac_alloc_command() was misinterpreted in aac_ioctl_event(). Once triggered this would leak away all available commands and starve the rest of the driver. Revision Changes Path 1.109.2.6 +1 -1 src/sys/dev/aac/aac.c From owner-cvs-all@FreeBSD.ORG Tue Aug 21 16:43:47 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EFCB416A418; Tue, 21 Aug 2007 16:43:47 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C724413C4B5; Tue, 21 Aug 2007 16:43:47 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LGhl6C050923; Tue, 21 Aug 2007 16:43:47 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LGhlgD050922; Tue, 21 Aug 2007 16:43:47 GMT (envelope-from thierry) Message-Id: <200708211643.l7LGhlgD050922@repoman.freebsd.org> From: Thierry Thomas Date: Tue, 21 Aug 2007 16:43: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/math/freefem++ 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, 21 Aug 2007 16:43:48 -0000 thierry 2007-08-21 16:43:47 UTC FreeBSD ports repository Modified files: math/freefem++ Makefile distinfo pkg-plist Log: Upgrade to 2.19. Revision Changes Path 1.70 +1 -1 ports/math/freefem++/Makefile 1.49 +3 -3 ports/math/freefem++/distinfo 1.32 +4 -0 ports/math/freefem++/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 21 17:20:48 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DE42A16A419; Tue, 21 Aug 2007 17:20:48 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B5BDE13C4A7; Tue, 21 Aug 2007 17:20:48 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LHKmpu062933; Tue, 21 Aug 2007 17:20:48 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LHKSR7062921; Tue, 21 Aug 2007 17:20:28 GMT (envelope-from delphij) Message-Id: <200708211720.l7LHKSR7062921@repoman.freebsd.org> From: Xin LI Date: Tue, 21 Aug 2007 17:20:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 17:20:49 -0000 delphij 2007-08-21 17:20:28 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Document rsync off-by-one stack overflow vulnerability. Revision Changes Path 1.1401 +31 -1 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Tue Aug 21 18:21:27 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C1F516A417; Tue, 21 Aug 2007 18:21:27 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5B09113C4B4; Tue, 21 Aug 2007 18:21:27 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LILRbM067669; Tue, 21 Aug 2007 18:21:27 GMT (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LILRZl067668; Tue, 21 Aug 2007 18:21:27 GMT (envelope-from sobomax) Message-Id: <200708211821.l7LILRZl067668@repoman.freebsd.org> From: Maxim Sobolev Date: Tue, 21 Aug 2007 18:21:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/exim Makefile ports/mail/exim/files patch-src::auths::call_radius.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 18:21:27 -0000 sobomax 2007-08-21 18:21:26 UTC FreeBSD ports repository Modified files: mail/exim Makefile Added files: mail/exim/files patch-src::auths::call_radius.c Log: Fix building with radiusclient. PR: 115687 Revision Changes Path 1.231 +4 -4 ports/mail/exim/Makefile 1.1 +17 -0 ports/mail/exim/files/patch-src::auths::call_radius.c (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 21 18:24:26 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9C2E516A421; Tue, 21 Aug 2007 18:24:26 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4DB4613C4B5; Tue, 21 Aug 2007 18:24:26 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LIOQls067819; Tue, 21 Aug 2007 18:24:26 GMT (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LIOQYY067818; Tue, 21 Aug 2007 18:24:26 GMT (envelope-from sobomax) Message-Id: <200708211824.l7LIOQYY067818@repoman.freebsd.org> From: Maxim Sobolev Date: Tue, 21 Aug 2007 18:24:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/exim Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 18:24:26 -0000 sobomax 2007-08-21 18:24:26 UTC FreeBSD ports repository Modified files: mail/exim Makefile Log: Fix wrong path to config file in previous commit. Revision Changes Path 1.232 +1 -1 ports/mail/exim/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 21 18:31:59 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8DCA716A41A; Tue, 21 Aug 2007 18:31:59 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 65CD013C459; Tue, 21 Aug 2007 18:31:59 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LIVxQi068312; Tue, 21 Aug 2007 18:31:59 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LIVxmn068311; Tue, 21 Aug 2007 18:31:59 GMT (envelope-from novel) Message-Id: <200708211831.l7LIVxmn068311@repoman.freebsd.org> From: Roman Bogorodskiy Date: Tue, 21 Aug 2007 18:31:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/conky/files patch-src-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: Tue, 21 Aug 2007 18:31:59 -0000 novel 2007-08-21 18:31:59 UTC FreeBSD ports repository Modified files: sysutils/conky/files patch-src-freebsd.c Log: Fix build on i386. PR: 115642 Submitted by: Barbara Revision Changes Path 1.12 +10 -1 ports/sysutils/conky/files/patch-src-freebsd.c From owner-cvs-all@FreeBSD.ORG Tue Aug 21 18:48:36 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CEF1516A418; Tue, 21 Aug 2007 18:48:36 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A64C413C458; Tue, 21 Aug 2007 18:48:36 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LIma9p069119; Tue, 21 Aug 2007 18:48:36 GMT (envelope-from jkois@repoman.freebsd.org) Received: (from jkois@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LImabn069117; Tue, 21 Aug 2007 18:48:36 GMT (envelope-from jkois) Message-Id: <200708211848.l7LImabn069117@repoman.freebsd.org> From: Johann Kois Date: Tue, 21 Aug 2007 18:48:36 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/de send-pr.sgml www/de/share/sgml press.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 18:48:36 -0000 jkois 2007-08-21 18:48:36 UTC FreeBSD doc repository Modified files: de send-pr.sgml de/share/sgml press.xml Log: MFde:  Minor update to the German website. www/de/send-pr.sgml 1.58 -> 1.59 www/de/share/sgml/press.xml 1.43 -> 1.45 Obtained from:  The FreeBSD German Documentation Project. Revision Changes Path 1.9 +3 -3 www/de/send-pr.sgml 1.22 +13 -2 www/de/share/sgml/press.xml From owner-cvs-all@FreeBSD.ORG Tue Aug 21 19:09:01 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B427D16A41B; Tue, 21 Aug 2007 19:09:01 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A08A513C48D; Tue, 21 Aug 2007 19:09:01 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LJ91SM071599; Tue, 21 Aug 2007 19:09:01 GMT (envelope-from jkois@repoman.freebsd.org) Received: (from jkois@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LJ91lE071598; Tue, 21 Aug 2007 19:09:01 GMT (envelope-from jkois) Message-Id: <200708211909.l7LJ91lE071598@repoman.freebsd.org> From: Johann Kois Date: Tue, 21 Aug 2007 19:09:01 +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/contributing-ports article.sgml doc/de_DE.ISO8859-1/books/fdp-primer/writing-style chapter.sgml doc/de_DE.ISO8859-1/books/handbook/bibliography chapter.sgml doc/de_DE.ISO8859-1/books/handbook/config chapter.sgml doc/de_DE.ISO8859-1/books/handbook/eresources chapter.sgml doc/de_DE.ISO8859-1/books/handbook/introduction 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, 21 Aug 2007 19:09:01 -0000 jkois 2007-08-21 19:09:01 UTC FreeBSD doc repository Modified files: de_DE.ISO8859-1/articles/contributing-ports article.sgml de_DE.ISO8859-1/books/fdp-primer/writing-style chapter.sgml de_DE.ISO8859-1/books/handbook/bibliography chapter.sgml de_DE.ISO8859-1/books/handbook/config chapter.sgml de_DE.ISO8859-1/books/handbook/eresources chapter.sgml de_DE.ISO8859-1/books/handbook/introduction 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/share/sgml transtable.xml Log: MFde:   Update the german documentation set. doc/de_DE.ISO8859-1/articles/contributing-ports/article.sgml fixes only doc/de_DE.ISO8859-1/books/fdp-primer/writing-style/chapter.sgml fixes only doc/de_DE.ISO8859-1/books/handbook/bibliography/chapter.sgml 1.78 -> 1.85 doc/de_DE.ISO8859-1/books/handbook/config/chapter.sgml 1.226 -> 1.227 doc/de_DE.ISO8859-1/books/handbook/eresources/chapter.sgml 1.181 -> 1.182 doc/de_DE.ISO8859-1/books/handbook/introduction/chapter.sgml 1.119 -> 1.120 doc/de_DE.ISO8859-1/books/handbook/multimedia/chapter.sgml 1.127 -> 1.128 doc/de_DE.ISO8859-1/books/handbook/network-servers/chapter.sgml 1.99 -> 1.101 doc/de_DE.ISO8859-1/share/sgml/transtable.xml fixes only Obtained from:  The FreeBSD German Documentation Project. Revision Changes Path 1.2 +35 -36 doc/de_DE.ISO8859-1/articles/contributing-ports/article.sgml 1.9 +4 -4 doc/de_DE.ISO8859-1/books/fdp-primer/writing-style/chapter.sgml 1.32 +36 -16 doc/de_DE.ISO8859-1/books/handbook/bibliography/chapter.sgml 1.46 +6 -6 doc/de_DE.ISO8859-1/books/handbook/config/chapter.sgml 1.33 +9 -2 doc/de_DE.ISO8859-1/books/handbook/eresources/chapter.sgml 1.26 +10 -6 doc/de_DE.ISO8859-1/books/handbook/introduction/chapter.sgml 1.36 +2 -2 doc/de_DE.ISO8859-1/books/handbook/multimedia/chapter.sgml 1.19 +17 -8 doc/de_DE.ISO8859-1/books/handbook/network-servers/chapter.sgml 1.5 +12 -2 doc/de_DE.ISO8859-1/share/sgml/transtable.xml From owner-cvs-all@FreeBSD.ORG Tue Aug 21 19:28:24 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 003D716A474; Tue, 21 Aug 2007 19:28:23 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C1A5A13C458; Tue, 21 Aug 2007 19:28:23 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LJSNQk072808; Tue, 21 Aug 2007 19:28:23 GMT (envelope-from beech@repoman.freebsd.org) Received: (from beech@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LJSNhh072807; Tue, 21 Aug 2007 19:28:23 GMT (envelope-from beech) Message-Id: <200708211928.l7LJSNhh072807@repoman.freebsd.org> From: Beech Rintoul Date: Tue, 21 Aug 2007 19:28: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/ftp/bftpd 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, 21 Aug 2007 19:28:24 -0000 beech 2007-08-21 19:28:22 UTC FreeBSD ports repository Modified files: ftp/bftpd Makefile distinfo Log: - Update to 2.0 PR: ports/115633 Submitted by: Chin-San Huang Approved by: sat (mentor) Revision Changes Path 1.23 +1 -1 ports/ftp/bftpd/Makefile 1.14 +3 -3 ports/ftp/bftpd/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 21 19:40:58 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 749A416A46B; Tue, 21 Aug 2007 19:40:58 +0000 (UTC) (envelope-from az@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4D25913C478; Tue, 21 Aug 2007 19:40:58 +0000 (UTC) (envelope-from az@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LJewtl073697; Tue, 21 Aug 2007 19:40:58 GMT (envelope-from az@repoman.freebsd.org) Received: (from az@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LJew6q073695; Tue, 21 Aug 2007 19:40:58 GMT (envelope-from az) Message-Id: <200708211940.l7LJew6q073695@repoman.freebsd.org> From: Andrej Zverev Date: Tue, 21 Aug 2007 19:40: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/lincity-ng 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, 21 Aug 2007 19:40:58 -0000 az 2007-08-21 19:40:57 UTC FreeBSD ports repository Modified files: games/lincity-ng Makefile distinfo pkg-plist Log: - Update to version 1.1.1 PR: ports/115637 Revision Changes Path 1.15 +1 -2 ports/games/lincity-ng/Makefile 1.6 +3 -3 ports/games/lincity-ng/distinfo 1.8 +184 -2 ports/games/lincity-ng/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 21 19:41:30 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4026616A419; Tue, 21 Aug 2007 19:41:30 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1956713C478; Tue, 21 Aug 2007 19:41:30 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LJfTVZ073856; Tue, 21 Aug 2007 19:41:29 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LJfTG0073855; Tue, 21 Aug 2007 19:41:29 GMT (envelope-from remko) Message-Id: <200708211941.l7LJfTG0073855@repoman.freebsd.org> From: Remko Lodder Date: Tue, 21 Aug 2007 19:41:29 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: 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, 21 Aug 2007 19:41:30 -0000 remko 2007-08-21 19:41:29 UTC FreeBSD doc repository Modified files: . access Log: Johann Kois had shown me a lot that he has enough experience and clue about how to handle the English tree as well that I deem him fit to fly solo. Keep up the good work Johann! May the pointyhats be with you ;) Revision Changes Path 1.591 +0 -0 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Tue Aug 21 19:44:55 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8695116A421; Tue, 21 Aug 2007 19:44:55 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5E90513C481; Tue, 21 Aug 2007 19:44:55 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LJitWs073980; Tue, 21 Aug 2007 19:44:55 GMT (envelope-from jkois@repoman.freebsd.org) Received: (from jkois@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LJitHO073979; Tue, 21 Aug 2007 19:44:55 GMT (envelope-from jkois) Message-Id: <200708211944.l7LJitHO073979@repoman.freebsd.org> From: Johann Kois Date: Tue, 21 Aug 2007 19:44:55 +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/docproj translations.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, 21 Aug 2007 19:44:55 -0000 jkois 2007-08-21 19:44:55 UTC FreeBSD doc repository Modified files: en/docproj translations.sgml Log: Update the status of the FreeBSD German Documentation Team: - porters-handbook: translation finished and committed - developers-handbook: translation underway Approved by: remko@ (mentor) Revision Changes Path 1.96 +2 -1 www/en/docproj/translations.sgml From owner-cvs-all@FreeBSD.ORG Tue Aug 21 20:31:50 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 48DBB16A419; Tue, 21 Aug 2007 20:31:50 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 216BE13C46B; Tue, 21 Aug 2007 20:31:50 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LKVoIq078781; Tue, 21 Aug 2007 20:31:50 GMT (envelope-from emaste@repoman.freebsd.org) Received: (from emaste@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LKVnvJ078780; Tue, 21 Aug 2007 20:31:49 GMT (envelope-from emaste) Message-Id: <200708212031.l7LKVnvJ078780@repoman.freebsd.org> From: Ed Maste Date: Tue, 21 Aug 2007 20:31:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/aac aac.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 20:31:50 -0000 emaste 2007-08-21 20:31:49 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/aac aac.c Log: MFC aac.c 1.118: Rearrange locking in the alloc_commands and ioctl paths to avoid problems. Revision Changes Path 1.109.2.7 +9 -5 src/sys/dev/aac/aac.c From owner-cvs-all@FreeBSD.ORG Tue Aug 21 20:40:00 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E1CE316A419; Tue, 21 Aug 2007 20:40:00 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D0AF913C458; Tue, 21 Aug 2007 20:40:00 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LKe0va079155; Tue, 21 Aug 2007 20:40:00 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LKe0nQ079142; Tue, 21 Aug 2007 20:40:00 GMT (envelope-from marcus) Message-Id: <200708212040.l7LKe0nQ079142@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 21 Aug 2007 20:39: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/libpurple Makefile distinfo pkg-plist ports/net-im/pidgin 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, 21 Aug 2007 20:40:01 -0000 marcus 2007-08-21 20:39:59 UTC FreeBSD ports repository Modified files: net-im/libpurple Makefile distinfo pkg-plist net-im/pidgin pkg-plist Log: Update to 2.1.1. Yahoo: * Added an account action to open your inbox in the yahoo prpl. * Added support for Unicode status messages in Yahoo. * Server-stored aliases for Yahoo. (John Moody) * Fixed support for Yahoo! doodling. * Limited support for MSN Messenger contacts Bonjour: * Bonjour plugin uses native Avahi instead of Howl * Bonjour plugin supports Buddy Icons XMPP: * Only report conversation close when 'send typing notifications' preference is turned on (Bob Rossi) Pidgin: * Show current outgoing conversation formatting on the font label on the toolbar * Slim new redesign of conversation tabs to maximize number of conversations that can fit in a window * Tab bar is not visible when only one conversation is open. You can drag and drop conversations from the infopane. * Moved "Reset Formatting" toolbar button to Font menu. * Double click on the infopane to alias buddies and set topics on chats * New smiley style Finch: * Sound support (Eric Polino) Revision Changes Path 1.32 +1 -1 ports/net-im/libpurple/Makefile 1.12 +3 -3 ports/net-im/libpurple/distinfo 1.12 +7 -0 ports/net-im/libpurple/pkg-plist 1.13 +33 -9 ports/net-im/pidgin/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 21 20:42:36 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 933E716A421; Tue, 21 Aug 2007 20:42:36 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6BED813C483; Tue, 21 Aug 2007 20:42:36 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LKgaTM079518; Tue, 21 Aug 2007 20:42:36 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LKgaa1079517; Tue, 21 Aug 2007 20:42:36 GMT (envelope-from marcus) Message-Id: <200708212042.l7LKgaa1079517@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 21 Aug 2007 20: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: 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, 21 Aug 2007 20:42:36 -0000 marcus 2007-08-21 20:42:35 UTC FreeBSD ports repository Modified files: . UPDATING Log: Add an entry for net-im/pidgin to handle the sound file changes. Revision Changes Path 1.533 +14 -1 ports/UPDATING From owner-cvs-all@FreeBSD.ORG Tue Aug 21 21:55:56 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B982116A419; Tue, 21 Aug 2007 21:55:56 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 929C213C46B; Tue, 21 Aug 2007 21:55:56 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LLtuvB096403; Tue, 21 Aug 2007 21:55:56 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LLtuhW096402; Tue, 21 Aug 2007 21:55:56 GMT (envelope-from thierry) Message-Id: <200708212155.l7LLtuhW096402@repoman.freebsd.org> From: Thierry Thomas Date: Tue, 21 Aug 2007 21: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: ports/sysutils/xvidcap Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 21:55:56 -0000 thierry 2007-08-21 21:55:55 UTC FreeBSD ports repository Modified files: sysutils/xvidcap Makefile Log: Chase the ffmpeg-devel removal and don't mark broken when ffmpeg is installed. Reminded by: Mark Evenson Revision Changes Path 1.20 +1 -12 ports/sysutils/xvidcap/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 21 22:42:00 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 45D6D16A417; Tue, 21 Aug 2007 22:42:00 +0000 (UTC) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.org (trang.nuxi.org [74.95.12.85]) by mx1.freebsd.org (Postfix) with ESMTP id DE38C13C483; Tue, 21 Aug 2007 22:41:59 +0000 (UTC) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.org (obrien@localhost [127.0.0.1]) by dragon.nuxi.org (8.14.1/8.14.1) with ESMTP id l7LMf1U7063265; Tue, 21 Aug 2007 15:41:06 -0700 (PDT) (envelope-from obrien@dragon.nuxi.org) Received: (from obrien@localhost) by dragon.nuxi.org (8.14.1/8.14.1/Submit) id l7LMf0dD063264; Tue, 21 Aug 2007 15:41:00 -0700 (PDT) (envelope-from obrien) Date: Tue, 21 Aug 2007 15:41:00 -0700 From: "David O'Brien" To: Pav Lucistnik Message-ID: <20070821224100.GA63190@dragon.NUXI.org> References: <200708210208.l7L28cAD031343@repoman.freebsd.org> <1187682162.39461.6.camel@pav.hide.vol.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=unknown-8bit Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <1187682162.39461.6.camel@pav.hide.vol.cz> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.11 Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/mail/p5-Mail-SpamAssassin/files patch-sa-learn.raw X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2007 22:42:00 -0000 On Tue, Aug 21, 2007 at 09:42:42AM +0200, Pav Lucistnik wrote: > David E. O'Brien pí¹e v út 21. 08. 2007 v 02:08 +0000: > > obrien 2007-08-21 02:08:38 UTC > > > > FreeBSD ports repository > > > > Added files: > > mail/p5-Mail-SpamAssassin/files patch-sa-learn.raw > > Log: > > Restore the -q[uiet] flag to 'sa-learn' that was lost in the 3.1.8 update. > > Approved by: ? It restored functionality we've had since 2004/06/11 - it was obviously accidentally missing from the the patch in the PR. -- -- David (obrien@FreeBSD.org) Q: Because it reverses the logical flow of conversation. A: Why is top-posting (putting a reply at the top of the message) frowned upon? Let's not play "Jeopardy-style quoting" From owner-cvs-all@FreeBSD.ORG Tue Aug 21 23:23:31 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E152116A417; Tue, 21 Aug 2007 23:23:31 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BB08913C45D; Tue, 21 Aug 2007 23:23:31 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7LNNVNX004180; Tue, 21 Aug 2007 23:23:31 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7LNNVMT004179; Tue, 21 Aug 2007 23:23:31 GMT (envelope-from obrien) Message-Id: <200708212323.l7LNNVMT004179@repoman.freebsd.org> From: "David E. O'Brien" Date: Tue, 21 Aug 2007 23:23: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/editors/vim 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, 21 Aug 2007 23:23:32 -0000 obrien 2007-08-21 23:23:31 UTC FreeBSD ports repository Modified files: editors/vim Makefile distinfo Log: Update to Vim 7.1 patchlevel 87. Revision Changes Path 1.304 +2 -2 ports/editors/vim/Makefile 1.178 +48 -3 ports/editors/vim/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 22 00:18:44 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B24D16A419; Wed, 22 Aug 2007 00:18:44 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 53D8013C4CA; Wed, 22 Aug 2007 00:18:44 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M0IiUc009504; Wed, 22 Aug 2007 00:18:44 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M0Iia8009503; Wed, 22 Aug 2007 00:18:44 GMT (envelope-from edwin) Message-Id: <200708220018.l7M0Iia8009503@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 22 Aug 2007 00:18: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/misc/zoneinfo 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, 22 Aug 2007 00:18:44 -0000 edwin 2007-08-22 00:18:44 UTC FreeBSD ports repository Modified files: misc/zoneinfo Makefile distinfo Log: Update to 2007g Revision Changes Path 1.25 +1 -1 ports/misc/zoneinfo/Makefile 1.16 +3 -3 ports/misc/zoneinfo/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 22 00:59:56 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2468816A417; Wed, 22 Aug 2007 00:59:56 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F2ACA13C458; Wed, 22 Aug 2007 00:59:55 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M0xtIX020781; Wed, 22 Aug 2007 00:59:55 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M0xtuk020780; Wed, 22 Aug 2007 00:59:55 GMT (envelope-from clsung) Message-Id: <200708220059.l7M0xtuk020780@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 22 Aug 2007 00:59: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/converters/p5-JSON-XS 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, 22 Aug 2007 00:59:56 -0000 clsung 2007-08-22 00:59:55 UTC FreeBSD ports repository Modified files: converters/p5-JSON-XS Makefile distinfo Log: - Update to 1.44 Revision Changes Path 1.12 +1 -1 ports/converters/p5-JSON-XS/Makefile 1.12 +3 -3 ports/converters/p5-JSON-XS/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 22 01:00:11 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7724116A480; Wed, 22 Aug 2007 01:00:11 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5126D13C458; Wed, 22 Aug 2007 01:00:11 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M10B9s020899; Wed, 22 Aug 2007 01:00:11 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M10BGR020898; Wed, 22 Aug 2007 01:00:11 GMT (envelope-from clsung) Message-Id: <200708220100.l7M10BGR020898@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 22 Aug 2007 01:00: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/p5-File-Copy-Recursive 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, 22 Aug 2007 01:00:11 -0000 clsung 2007-08-22 01:00:11 UTC FreeBSD ports repository Modified files: devel/p5-File-Copy-Recursive Makefile distinfo Log: - Update to 0.34 Revision Changes Path 1.18 +2 -3 ports/devel/p5-File-Copy-Recursive/Makefile 1.16 +3 -3 ports/devel/p5-File-Copy-Recursive/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 22 01:09:24 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A05216A417; Wed, 22 Aug 2007 01:09:24 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E152D13C4A5; Wed, 22 Aug 2007 01:09:23 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M19NcG022632; Wed, 22 Aug 2007 01:09:23 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M19N84022631; Wed, 22 Aug 2007 01:09:23 GMT (envelope-from tabthorpe) Message-Id: <200708220109.l7M19N84022631@repoman.freebsd.org> From: Thomas Abthorpe Date: Wed, 22 Aug 2007 01:09:23 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/share/sgml authors.ent X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 01:09:24 -0000 tabthorpe 2007-08-22 01:09:23 UTC FreeBSD doc repository (ports committer) Modified files: en_US.ISO8859-1/share/sgml authors.ent Log: Add myself Approved by: clsung (mentor) Revision Changes Path 1.429 +2 -0 doc/en_US.ISO8859-1/share/sgml/authors.ent From owner-cvs-all@FreeBSD.ORG Wed Aug 22 01:10:48 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5A4F216A469; Wed, 22 Aug 2007 01:10:48 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3423713C480; Wed, 22 Aug 2007 01:10:48 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M1Am34022785; Wed, 22 Aug 2007 01:10:48 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M1AmiA022784; Wed, 22 Aug 2007 01:10:48 GMT (envelope-from tabthorpe) Message-Id: <200708220110.l7M1AmiA022784@repoman.freebsd.org> From: Thomas Abthorpe Date: Wed, 22 Aug 2007 01:10:48 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en developers.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 01:10:48 -0000 tabthorpe 2007-08-22 01:10:48 UTC FreeBSD doc repository (ports committer) Modified files: en developers.sgml Log: Add myself Approved by: clsung (mentor) Revision Changes Path 1.173 +2 -1 www/en/developers.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 22 01:12:32 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2374B16A418; Wed, 22 Aug 2007 01:12:32 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F0CF013C461; Wed, 22 Aug 2007 01:12:31 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M1CVVI023078; Wed, 22 Aug 2007 01:12:31 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M1CVxv023077; Wed, 22 Aug 2007 01:12:31 GMT (envelope-from tabthorpe) Message-Id: <200708220112.l7M1CVxv023077@repoman.freebsd.org> From: Thomas Abthorpe Date: Wed, 22 Aug 2007 01:12:31 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/share/pgpkeys pgpkeys-developers.sgml pgpkeys.ent tabthorpe.key X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 01:12:32 -0000 tabthorpe 2007-08-22 01:12:31 UTC FreeBSD doc repository (ports committer) Modified files: share/pgpkeys pgpkeys-developers.sgml pgpkeys.ent Added files: share/pgpkeys tabthorpe.key Log: Add myself Approved by: clsung (mentor) Revision Changes Path 1.53 +6 -0 doc/share/pgpkeys/pgpkeys-developers.sgml 1.150 +1 -0 doc/share/pgpkeys/pgpkeys.ent 1.1 +69 -0 doc/share/pgpkeys/tabthorpe.key (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 22 01:16:11 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5046A16A420; Wed, 22 Aug 2007 01:16:11 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 29DA813C4A5; Wed, 22 Aug 2007 01:16:11 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M1GBu0023273; Wed, 22 Aug 2007 01:16:11 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M1GApB023272; Wed, 22 Aug 2007 01:16:10 GMT (envelope-from tabthorpe) Message-Id: <200708220116.l7M1GApB023272@repoman.freebsd.org> From: Thomas Abthorpe Date: Wed, 22 Aug 2007 01:16: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/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, 22 Aug 2007 01:16:11 -0000 tabthorpe 2007-08-22 01:16:10 UTC FreeBSD ports repository Modified files: astro/xearth/files freebsd.committers.markers Log: Add myself Approved by: clsung (mentor) Revision Changes Path 1.372 +2 -1 ports/astro/xearth/files/freebsd.committers.markers From owner-cvs-all@FreeBSD.ORG Wed Aug 22 01:34:27 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6D1EE16A41A; Wed, 22 Aug 2007 01:34:27 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 474A113C46C; Wed, 22 Aug 2007 01:34:27 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M1YRDR024405; Wed, 22 Aug 2007 01:34:27 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M1YRi6024404; Wed, 22 Aug 2007 01:34:27 GMT (envelope-from clsung) Message-Id: <200708220134.l7M1YRi6024404@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 22 Aug 2007 01:34: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/p5-Perl-Critic 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, 22 Aug 2007 01:34:27 -0000 clsung 2007-08-22 01:34:26 UTC FreeBSD ports repository Modified files: textproc/p5-Perl-Critic Makefile distinfo pkg-plist Log: - Update to 1.07 Revision Changes Path 1.19 +13 -3 ports/textproc/p5-Perl-Critic/Makefile 1.18 +3 -3 ports/textproc/p5-Perl-Critic/distinfo 1.14 +10 -0 ports/textproc/p5-Perl-Critic/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 22 01:36:24 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C83D916A419; Wed, 22 Aug 2007 01:36:24 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A226213C46B; Wed, 22 Aug 2007 01:36:24 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M1aO2i024561; Wed, 22 Aug 2007 01:36:24 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M1aOlx024560; Wed, 22 Aug 2007 01:36:24 GMT (envelope-from clsung) Message-Id: <200708220136.l7M1aOlx024560@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 22 Aug 2007 01: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/devel/rubygem-inline 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, 22 Aug 2007 01:36:24 -0000 clsung 2007-08-22 01:36:24 UTC FreeBSD ports repository Modified files: devel/rubygem-inline Makefile distinfo pkg-plist Log: - Update to 3.6.4 Revision Changes Path 1.9 +1 -1 ports/devel/rubygem-inline/Makefile 1.7 +3 -3 ports/devel/rubygem-inline/distinfo 1.5 +5 -1 ports/devel/rubygem-inline/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 22 01:40:59 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3E50516A417; Wed, 22 Aug 2007 01:40:59 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1852113C469; Wed, 22 Aug 2007 01:40:59 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M1ewCB024851; Wed, 22 Aug 2007 01:40:58 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M1ewWX024850; Wed, 22 Aug 2007 01:40:58 GMT (envelope-from tabthorpe) Message-Id: <200708220140.l7M1ewWX024850@repoman.freebsd.org> From: Thomas Abthorpe Date: Wed, 22 Aug 2007 01:40:58 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/share/sgml news.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 01:40:59 -0000 tabthorpe 2007-08-22 01:40:58 UTC FreeBSD doc repository (ports committer) Modified files: share/sgml news.xml Log: Add myself Reviewed by: clsung (mentor) Revision Changes Path 1.106 +9 -1 www/share/sgml/news.xml From owner-cvs-all@FreeBSD.ORG Wed Aug 22 01:45:24 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 55C9D16A41A; Wed, 22 Aug 2007 01:45:24 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 300FF13C480; Wed, 22 Aug 2007 01:45:24 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M1jORP025250; Wed, 22 Aug 2007 01:45:24 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M1jOxx025249; Wed, 22 Aug 2007 01:45:24 GMT (envelope-from clsung) Message-Id: <200708220145.l7M1jOxx025249@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 22 Aug 2007 01:45: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/clucene 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, 22 Aug 2007 01:45:24 -0000 clsung 2007-08-22 01:45:24 UTC FreeBSD ports repository Modified files: textproc/clucene Makefile distinfo Log: - Update to 0.9.20 PR: ports/115693 Submitted by: tabthorpe Revision Changes Path 1.6 +1 -1 ports/textproc/clucene/Makefile 1.4 +3 -3 ports/textproc/clucene/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 22 01:45:52 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BFEF616A41B; Wed, 22 Aug 2007 01:45:52 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9839F13C4A7; Wed, 22 Aug 2007 01:45:52 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M1jqsw025285; Wed, 22 Aug 2007 01:45:52 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M1jqMd025284; Wed, 22 Aug 2007 01:45:52 GMT (envelope-from tabthorpe) Message-Id: <200708220145.l7M1jqMd025284@repoman.freebsd.org> From: Thomas Abthorpe Date: Wed, 22 Aug 2007 01:45: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/articles/contributors contrib.committers.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 01:45:52 -0000 tabthorpe 2007-08-22 01:45:52 UTC FreeBSD doc repository (ports committer) Modified files: en_US.ISO8859-1/articles/contributors contrib.committers.sgml Log: Add myself Approved by: clsung (mentor) Revision Changes Path 1.204 +4 -0 doc/en_US.ISO8859-1/articles/contributors/contrib.committers.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 22 01:45:53 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0548716A468; Wed, 22 Aug 2007 01:45:53 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D3BD913C4A8; Wed, 22 Aug 2007 01:45:52 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M1jq5W025314; Wed, 22 Aug 2007 01:45:52 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M1jq4t025313; Wed, 22 Aug 2007 01:45:52 GMT (envelope-from clsung) Message-Id: <200708220145.l7M1jq4t025313@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 22 Aug 2007 01:45: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/textproc/metaf2xml 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, 22 Aug 2007 01:45:53 -0000 clsung 2007-08-22 01:45:52 UTC FreeBSD ports repository Modified files: textproc/metaf2xml Makefile distinfo Log: - Update to 1.27 Revision Changes Path 1.15 +2 -3 ports/textproc/metaf2xml/Makefile 1.13 +3 -3 ports/textproc/metaf2xml/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 22 01:48:55 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1D8AB16A418; Wed, 22 Aug 2007 01:48:55 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EB9D113C49D; Wed, 22 Aug 2007 01:48:54 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M1msmq025449; Wed, 22 Aug 2007 01:48:54 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M1msLJ025448; Wed, 22 Aug 2007 01:48:54 GMT (envelope-from tabthorpe) Message-Id: <200708220148.l7M1msLJ025448@repoman.freebsd.org> From: Thomas Abthorpe Date: Wed, 22 Aug 2007 01:48:54 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors contrib.additional.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 01:48:55 -0000 tabthorpe 2007-08-22 01:48:44 UTC FreeBSD doc repository (ports committer) Modified files: en_US.ISO8859-1/articles/contributors contrib.additional.sgml Log: Remove my old entry Approved by: clsung (mentor) Revision Changes Path 1.723 +0 -5 doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 22 01:52:03 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5E68316A421; Wed, 22 Aug 2007 01:52:03 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3860213C4A7; Wed, 22 Aug 2007 01:52:03 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M1q33F025809; Wed, 22 Aug 2007 01:52:03 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M1q2Zi025808; Wed, 22 Aug 2007 01:52:02 GMT (envelope-from clsung) Message-Id: <200708220152.l7M1q2Zi025808@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 22 Aug 2007 01:52: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/rubygem-zentest 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, 22 Aug 2007 01:52:03 -0000 clsung 2007-08-22 01:52:01 UTC FreeBSD ports repository Modified files: devel/rubygem-zentest pkg-plist Log: - remove redundant @dirrm Revision Changes Path 1.3 +0 -4 ports/devel/rubygem-zentest/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 22 01:56:36 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 91E8616A41A; Wed, 22 Aug 2007 01:56:36 +0000 (UTC) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6C06A13C4A7; Wed, 22 Aug 2007 01:56:36 +0000 (UTC) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M1uama026003; Wed, 22 Aug 2007 01:56:36 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M1uaEv026002; Wed, 22 Aug 2007 01:56:36 GMT (envelope-from davidxu) Message-Id: <200708220156.l7M1uaEv026002@repoman.freebsd.org> From: David Xu Date: Wed, 22 Aug 2007 01:56: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/libc/sys Symbol.map X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 01:56:36 -0000 davidxu 2007-08-22 01:56:36 UTC FreeBSD src repository Modified files: lib/libc/sys Symbol.map Log: Add thr_kill2 syscall. Submitted by: Tijl Coosemans tijl at ulyssis dot org Approved by: re (kensmith) Revision Changes Path 1.9 +3 -0 src/lib/libc/sys/Symbol.map From owner-cvs-all@FreeBSD.ORG Wed Aug 22 02:11:52 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E1D1616A418; Wed, 22 Aug 2007 02:11:52 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BC30713C461; Wed, 22 Aug 2007 02:11:52 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M2Bqac028507; Wed, 22 Aug 2007 02:11:52 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M2BqRC028506; Wed, 22 Aug 2007 02:11:52 GMT (envelope-from clsung) Message-Id: <200708220211.l7M2BqRC028506@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 22 Aug 2007 02: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/textproc/p5-Tree-Suffix 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, 22 Aug 2007 02:11:53 -0000 clsung 2007-08-22 02:11:52 UTC FreeBSD ports repository Modified files: textproc/p5-Tree-Suffix Makefile distinfo Log: - Update to 0.18 Revision Changes Path 1.4 +1 -1 ports/textproc/p5-Tree-Suffix/Makefile 1.4 +3 -3 ports/textproc/p5-Tree-Suffix/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 22 03:23:59 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D5A5716A41B; Wed, 22 Aug 2007 03:23:59 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AF29913C4A7; Wed, 22 Aug 2007 03:23:59 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M3Nxv8033682; Wed, 22 Aug 2007 03:23:59 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M3Nxee033681; Wed, 22 Aug 2007 03:23:59 GMT (envelope-from mezz) Message-Id: <200708220323.l7M3Nxee033681@repoman.freebsd.org> From: Jeremy Messenger Date: Wed, 22 Aug 2007 03:23: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/x11-toolkits/gtkscintilla Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 03:23:59 -0000 mezz 2007-08-22 03:23:59 UTC FreeBSD ports repository Modified files: x11-toolkits/gtkscintilla Makefile Log: Use pkg_info to check if scintilla built with GTK+2 support rather than check on if .scintilla-gtk1 exists. It solves problem on clean system. Revision Changes Path 1.20 +6 -6 ports/x11-toolkits/gtkscintilla/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 22 03:25:30 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2192B16A418; Wed, 22 Aug 2007 03:25:30 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EF4C813C459; Wed, 22 Aug 2007 03:25:29 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M3PTYS033833; Wed, 22 Aug 2007 03:25:29 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M3PTSs033832; Wed, 22 Aug 2007 03:25:29 GMT (envelope-from mezz) Message-Id: <200708220325.l7M3PTSs033832@repoman.freebsd.org> From: Jeremy Messenger Date: Wed, 22 Aug 2007 03:25: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-toolkits/scintilla Makefile ports/x11-toolkits/scintilla/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: Wed, 22 Aug 2007 03:25:30 -0000 mezz 2007-08-22 03:25:29 UTC FreeBSD ports repository Modified files: x11-toolkits/scintilla Makefile x11-toolkits/scintilla/files patch-aa Log: -Respect CC/CXX/CXXFLAGS. -Remove all of un-need ``, which the $(shell) works fine. Approved by: Naram Qashat (maintainer) Revision Changes Path 1.39 +5 -0 ports/x11-toolkits/scintilla/Makefile 1.20 +17 -22 ports/x11-toolkits/scintilla/files/patch-aa From owner-cvs-all@FreeBSD.ORG Wed Aug 22 03:36:06 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2CCF916A418; Wed, 22 Aug 2007 03:36:06 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1E76413C48A; Wed, 22 Aug 2007 03:36:06 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M3a5df034427; Wed, 22 Aug 2007 03:36:05 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M3a5TN034426; Wed, 22 Aug 2007 03:36:05 GMT (envelope-from mezz) Message-Id: <200708220336.l7M3a5TN034426@repoman.freebsd.org> From: Jeremy Messenger Date: Wed, 22 Aug 2007 03:36: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/editors/scite Makefile distinfo pkg-plist ports/editors/scite/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: Wed, 22 Aug 2007 03:36:06 -0000 mezz 2007-08-22 03:36:05 UTC FreeBSD ports repository Modified files: editors/scite Makefile distinfo pkg-plist editors/scite/files patch-aa Log: - Update to 1.74, only build with GTK+2 since GTK+1 is broke. - Passing the maintainership to the submitter. - Respect CC/CXX/CFLAGS/CXXFLAGS. - Remove IGNORE check on amd64, need someone to test it to see if it's fixed or not. If not, then it can be add back. - Block create package since scintilla builds with GTK+1 by default. It will not build unless you enable scintilla with GTK+2 support. - Removed DEPRECATED/EXPIRATION_DATE. PR: ports/115188 Submitted by: Naram Qashat Revision Changes Path 1.45 +18 -51 ports/editors/scite/Makefile 1.22 +3 -3 ports/editors/scite/distinfo 1.15 +36 -29 ports/editors/scite/files/patch-aa 1.24 +4 -0 ports/editors/scite/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 22 04:26:08 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AF32116A417; Wed, 22 Aug 2007 04:26:08 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 88A1E13C457; Wed, 22 Aug 2007 04:26:08 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M4Q8LX038848; Wed, 22 Aug 2007 04:26:08 GMT (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M4Q8mZ038847; Wed, 22 Aug 2007 04:26:08 GMT (envelope-from jkoshy) Message-Id: <200708220426.l7M4Q8mZ038847@repoman.freebsd.org> From: Joseph Koshy Date: Wed, 22 Aug 2007 04:26: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/i386/include asm.h asmacros.h src/sys/amd64/include asm.h asmacros.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, 22 Aug 2007 04:26:08 -0000 jkoshy 2007-08-22 04:26:07 UTC FreeBSD src repository Modified files: sys/i386/include asm.h asmacros.h sys/amd64/include asm.h asmacros.h Log: Define an END() macro for use in i386 and amd64 assembly code, akin to the one available on the ia64, sparc64, and sun4v architectures. Approved by: re (kensmith) Revision Changes Path 1.18 +2 -0 src/sys/amd64/include/asm.h 1.33 +2 -0 src/sys/amd64/include/asmacros.h 1.14 +1 -0 src/sys/i386/include/asm.h 1.30 +2 -0 src/sys/i386/include/asmacros.h From owner-cvs-all@FreeBSD.ORG Wed Aug 22 04:55:06 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 105D516A41A; Wed, 22 Aug 2007 04:55:06 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DF50E13C459; Wed, 22 Aug 2007 04:55:05 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M4t5Z0049018; Wed, 22 Aug 2007 04:55:05 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M4t5SI049017; Wed, 22 Aug 2007 04:55:05 GMT (envelope-from njl) Message-Id: <200708220455.l7M4t5SI049017@repoman.freebsd.org> From: Nate Lawson Date: Wed, 22 Aug 2007 04:55: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/sys/kern kern_cpu.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 04:55:06 -0000 njl 2007-08-22 04:55:05 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern kern_cpu.c Log: MFC 1.26 and 1.27: use proper loop variables and sched_bind() behavior Revision Changes Path 1.14.2.5 +19 -29 src/sys/kern/kern_cpu.c From owner-cvs-all@FreeBSD.ORG Wed Aug 22 05:06:15 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 84DC916A417; Wed, 22 Aug 2007 05:06:15 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5E73C13C467; Wed, 22 Aug 2007 05:06:15 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M56F4U050855; Wed, 22 Aug 2007 05:06:15 GMT (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M56FBY050854; Wed, 22 Aug 2007 05:06:15 GMT (envelope-from jkoshy) Message-Id: <200708220506.l7M56FBY050854@repoman.freebsd.org> From: Joseph Koshy Date: Wed, 22 Aug 2007 05:06: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/i386/i386 support.s swtch.s src/sys/amd64/amd64 cpu_switch.S support.S X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 05:06:15 -0000 jkoshy 2007-08-22 05:06:15 UTC FreeBSD src repository Modified files: sys/i386/i386 support.s swtch.s sys/amd64/amd64 cpu_switch.S support.S Log: Assign sizes to assembly language support functions. Approved by: re (kensmith) Revision Changes Path 1.160 +4 -1 src/sys/amd64/amd64/cpu_switch.S 1.128 +30 -3 src/sys/amd64/amd64/support.S 1.119 +40 -4 src/sys/i386/i386/support.s 1.156 +3 -0 src/sys/i386/i386/swtch.s From owner-cvs-all@FreeBSD.ORG Wed Aug 22 05:17:39 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7FEA316A417; Wed, 22 Aug 2007 05:17:39 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 591CD13C481; Wed, 22 Aug 2007 05:17:39 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M5HaQ7051523; Wed, 22 Aug 2007 05:17:36 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M5HaJ9051522; Wed, 22 Aug 2007 05:17:36 GMT (envelope-from clsung) Message-Id: <200708220517.l7M5HaJ9051522@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 22 Aug 2007 05:17: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/rubygem-parsetree 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, 22 Aug 2007 05:17:39 -0000 clsung 2007-08-22 05:17:36 UTC FreeBSD ports repository Modified files: devel/rubygem-parsetree Makefile distinfo pkg-plist Log: - Update to 2.0.1 Revision Changes Path 1.6 +1 -1 ports/devel/rubygem-parsetree/Makefile 1.4 +3 -3 ports/devel/rubygem-parsetree/distinfo 1.4 +55 -46 ports/devel/rubygem-parsetree/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 22 05:20:00 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 80FA216A418; Wed, 22 Aug 2007 05:20:00 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5AE8D13C4A6; Wed, 22 Aug 2007 05:20:00 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M5K08E051651; Wed, 22 Aug 2007 05:20:00 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M5K0Bn051650; Wed, 22 Aug 2007 05:20:00 GMT (envelope-from clsung) Message-Id: <200708220520.l7M5K0Bn051650@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 22 Aug 2007 05:20: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/rubygem-tzinfo 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, 22 Aug 2007 05:20:00 -0000 clsung 2007-08-22 05:20:00 UTC FreeBSD ports repository Modified files: devel/rubygem-tzinfo Makefile distinfo pkg-plist Log: - Update to 0.3.4 Revision Changes Path 1.8 +3 -17 ports/devel/rubygem-tzinfo/Makefile 1.5 +3 -3 ports/devel/rubygem-tzinfo/distinfo 1.5 +6 -0 ports/devel/rubygem-tzinfo/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 22 05:54:30 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4B67416A417; Wed, 22 Aug 2007 05:54:30 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 254E313C442; Wed, 22 Aug 2007 05:54:30 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M5sUxd054198; Wed, 22 Aug 2007 05:54:30 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M5sTxa054197; Wed, 22 Aug 2007 05:54:29 GMT (envelope-from clsung) Message-Id: <200708220554.l7M5sTxa054197@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 22 Aug 2007 05:54: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-WWW-Search-AltaVista 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, 22 Aug 2007 05:54:30 -0000 clsung 2007-08-22 05:54:29 UTC FreeBSD ports repository Modified files: www/p5-WWW-Search-AltaVista Makefile distinfo Log: - Update to 2.148 Revision Changes Path 1.22 +2 -3 ports/www/p5-WWW-Search-AltaVista/Makefile 1.19 +3 -3 ports/www/p5-WWW-Search-AltaVista/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 22 06:20:51 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7348316A418; Wed, 22 Aug 2007 06:20:51 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6395813C45A; Wed, 22 Aug 2007 06:20:51 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M6KpZD056984; Wed, 22 Aug 2007 06:20:51 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M6Ko6v056981; Wed, 22 Aug 2007 06:20:50 GMT (envelope-from edwin) Message-Id: <200708220620.l7M6Ko6v056981@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 22 Aug 2007 06:20: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 MOVED ports/net Makefile ports/net/ddc Makefile distinfo pkg-descr ports/net/ddc/files patch-Makefile patch-ddc patch-ddc.8 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 06:20:51 -0000 edwin 2007-08-22 06:20:50 UTC FreeBSD ports repository Modified files: . MOVED net Makefile Removed files: net/ddc Makefile distinfo pkg-descr net/ddc/files patch-Makefile patch-ddc patch-ddc.8 Log: Remove obsolete port. Revision Changes Path 1.1464 +2 -1 ports/MOVED 1.1908 +0 -1 ports/net/Makefile 1.5 +0 -19 ports/net/ddc/Makefile (dead) 1.4 +0 -3 ports/net/ddc/distinfo (dead) 1.2 +0 -18 ports/net/ddc/files/patch-Makefile (dead) 1.3 +0 -15 ports/net/ddc/files/patch-ddc (dead) 1.2 +0 -18 ports/net/ddc/files/patch-ddc.8 (dead) 1.3 +0 -7 ports/net/ddc/pkg-descr (dead) From owner-cvs-all@FreeBSD.ORG Wed Aug 22 06:23:05 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 00B1A16A418; Wed, 22 Aug 2007 06:23:05 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E3FFD13C494; Wed, 22 Aug 2007 06:23:04 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M6N4AC057363; Wed, 22 Aug 2007 06:23:04 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M6N41L057362; Wed, 22 Aug 2007 06:23:04 GMT (envelope-from edwin) Message-Id: <200708220623.l7M6N41L057362@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 22 Aug 2007 06:23: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 MOVED ports/games Makefile ports/games/groundhog Makefile distinfo pkg-descr pkg-plist ports/games/groundhog/files patch-src-highscore.cc patch-src-options_dialog.h patch-src__game.cc patch-src__pocket.h patch-src__score.cc patch-src__score.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, 22 Aug 2007 06:23:05 -0000 edwin 2007-08-22 06:23:04 UTC FreeBSD ports repository Modified files: . MOVED games Makefile Removed files: games/groundhog Makefile distinfo pkg-descr pkg-plist games/groundhog/files patch-src-highscore.cc patch-src-options_dialog.h patch-src__game.cc patch-src__pocket.h patch-src__score.cc patch-src__score.h patch-src_highscore_tab.cc patch-src_new_highscore_dialog.h patch-src_solved_dialog.cc Log: Remove game: not worth trying to keep it afloat with the new GCC. Revision Changes Path 1.1465 +2 -1 ports/MOVED 1.1137 +0 -1 ports/games/Makefile 1.20 +0 -22 ports/games/groundhog/Makefile (dead) 1.4 +0 -3 ports/games/groundhog/distinfo (dead) 1.4 +0 -40 ports/games/groundhog/files/patch-src-highscore.cc (dead) 1.2 +0 -35 ports/games/groundhog/files/patch-src-options_dialog.h (dead) 1.2 +0 -49 ports/games/groundhog/files/patch-src__game.cc (dead) 1.2 +0 -19 ports/games/groundhog/files/patch-src__pocket.h (dead) 1.2 +0 -74 ports/games/groundhog/files/patch-src__score.cc (dead) 1.2 +0 -50 ports/games/groundhog/files/patch-src__score.h (dead) 1.2 +0 -51 ports/games/groundhog/files/patch-src_highscore_tab.cc (dead) 1.2 +0 -19 ports/games/groundhog/files/patch-src_new_highscore_dialog.h (dead) 1.2 +0 -27 ports/games/groundhog/files/patch-src_solved_dialog.cc (dead) 1.2 +0 -3 ports/games/groundhog/pkg-descr (dead) 1.2 +0 -3 ports/games/groundhog/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Wed Aug 22 06:24:36 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6A2DA16A418; Wed, 22 Aug 2007 06:24:36 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 445DD13C4B3; Wed, 22 Aug 2007 06:24:36 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M6OaY7057444; Wed, 22 Aug 2007 06:24:36 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M6Oagx057443; Wed, 22 Aug 2007 06:24:36 GMT (envelope-from edwin) Message-Id: <200708220624.l7M6Oagx057443@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 22 Aug 2007 06:24:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: 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, 22 Aug 2007 06:24:36 -0000 edwin 2007-08-22 06:24:36 UTC FreeBSD ports repository Modified files: . modules Log: remove groundhog remove ddc Revision Changes Path 1.18581 +0 -2 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 22 06:31:15 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 51DA016A469; Wed, 22 Aug 2007 06:31:15 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E6F6A13C46B; Wed, 22 Aug 2007 06:31:14 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M6VExt057915; Wed, 22 Aug 2007 06:31:14 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M6VEFj057914; Wed, 22 Aug 2007 06:31:14 GMT (envelope-from ehaupt) Message-Id: <200708220631.l7M6VEFj057914@repoman.freebsd.org> From: Emanuel Haupt Date: Wed, 22 Aug 2007 06:31: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/sysutils/tmpreaper 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, 22 Aug 2007 06:31:15 -0000 ehaupt 2007-08-22 06:31:14 UTC FreeBSD ports repository Modified files: sysutils/tmpreaper Makefile distinfo Log: Update to 1.6.8 Revision Changes Path 1.5 +1 -1 ports/sysutils/tmpreaper/Makefile 1.5 +3 -3 ports/sysutils/tmpreaper/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 22 06:32:47 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0851316A417; Wed, 22 Aug 2007 06:32:47 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D5F0613C4A3; Wed, 22 Aug 2007 06:32:46 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M6WkTt058082; Wed, 22 Aug 2007 06:32:46 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M6WkO8058081; Wed, 22 Aug 2007 06:32:46 GMT (envelope-from ehaupt) Message-Id: <200708220632.l7M6WkO8058081@repoman.freebsd.org> From: Emanuel Haupt Date: Wed, 22 Aug 2007 06:32:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/math/mathomatic Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 06:32:47 -0000 ehaupt 2007-08-22 06:32:46 UTC FreeBSD ports repository Modified files: math/mathomatic Makefile distinfo Log: Update to 12.7.5 Revision Changes Path 1.33 +1 -1 ports/math/mathomatic/Makefile 1.32 +3 -3 ports/math/mathomatic/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 22 07:06:41 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DE04616A417; Wed, 22 Aug 2007 07:06:41 +0000 (UTC) (envelope-from az@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D025B13C46B; Wed, 22 Aug 2007 07:06:41 +0000 (UTC) (envelope-from az@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M76fwR061201; Wed, 22 Aug 2007 07:06:41 GMT (envelope-from az@repoman.freebsd.org) Received: (from az@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M76fi6061200; Wed, 22 Aug 2007 07:06:41 GMT (envelope-from az) Message-Id: <200708220706.l7M76fi6061200@repoman.freebsd.org> From: Andrej Zverev Date: Wed, 22 Aug 2007 07:06: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/ismail 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: Wed, 22 Aug 2007 07:06:42 -0000 az 2007-08-22 07:06:41 UTC FreeBSD ports repository Modified files: www/ismail Makefile pkg-message Log: - óhange MASTER_SITES to mirror one - Drop maintainership In original PR maintainer requesting remove port from ports collection, but after email discussion he sad OK to change distfile hosting and drop maintainership. Note: This project is EOL, no more support from developers will be available (no new versions and no security fixes). PR: ports/115689 Submitted by: Kelley Reynolds (maintainer) Revision Changes Path 1.5 +2 -2 ports/www/ismail/Makefile 1.2 +0 -1 ports/www/ismail/pkg-message From owner-cvs-all@FreeBSD.ORG Wed Aug 22 07:06:56 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 477FB16A49C; Wed, 22 Aug 2007 07:06:56 +0000 (UTC) (envelope-from sergei@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 214C713C465; Wed, 22 Aug 2007 07:06:56 +0000 (UTC) (envelope-from sergei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M76tkf061230; Wed, 22 Aug 2007 07:06:55 GMT (envelope-from sergei@repoman.freebsd.org) Received: (from sergei@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M76tp9061229; Wed, 22 Aug 2007 07:06:55 GMT (envelope-from sergei) Message-Id: <200708220706.l7M76tp9061229@repoman.freebsd.org> From: Sergei Kolobov Date: Wed, 22 Aug 2007 07: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: 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: Wed, 22 Aug 2007 07:06:56 -0000 sergei 2007-08-22 07:06:55 UTC FreeBSD ports repository Modified files: . access Log: Change e-mail address for CVS committ messages Revision Changes Path 1.799 +1 -1 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Wed Aug 22 07:09:42 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0666D16A420; Wed, 22 Aug 2007 07:09:42 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EAAC113C442; Wed, 22 Aug 2007 07:09:41 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M79fgL061342; Wed, 22 Aug 2007 07:09:41 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M79fWN061341; Wed, 22 Aug 2007 07:09:41 GMT (envelope-from clsung) Message-Id: <200708220709.l7M79fWN061341@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 22 Aug 2007 07:09: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/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: Wed, 22 Aug 2007 07:09:42 -0000 clsung 2007-08-22 07:09:41 UTC FreeBSD ports repository Modified files: databases/phpmyadmin Makefile distinfo Log: Routine update of phpmyadmin to version 2.11.0 >From the announce message: The phpMyAdmin Project is proud to announce the immediate availability of phpMyAdmin 2.11.0, which will probably be the last series supporting PHP 4. This version supports creating VIEWs from query results and can manage triggers, procedures and functions. It also supports MySQL 5.0.37 query profiling and has an improved interface for servers hosting thousands of databases and tables. For the full announcement, see: http://sourceforge.net/mailarchive/message.php?msg_name=46CB572E.7020200%40cegepsherbrooke.qc.ca Full release notes can be found in either of these places: https://sourceforge.net/project/shownotes.php?release_id=533830 http://www.phpmyadmin.net/ChangeLog.txt PR: ports/115707 Submitted by: maintainer (Matthew Seaman) Revision Changes Path 1.73 +1 -1 ports/databases/phpmyadmin/Makefile 1.57 +3 -3 ports/databases/phpmyadmin/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 22 09:56:55 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 968D516A419; Wed, 22 Aug 2007 09:56:55 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 508E113C45E; Wed, 22 Aug 2007 09:56:55 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7M9uto5083052; Wed, 22 Aug 2007 09:56:55 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7M9utTl083051; Wed, 22 Aug 2007 09:56:55 GMT (envelope-from miwi) Message-Id: <200708220956.l7M9utTl083051@repoman.freebsd.org> From: Martin Wilke Date: Wed, 22 Aug 2007 09:56: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/www/tomcat55 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 09:56:55 -0000 miwi 2007-08-22 09:56:54 UTC FreeBSD ports repository Modified files: www/tomcat55 Makefile Log: My last commit changed functionality, but the old actions were still present. So, just remove the old line. PR: 115680 Submitted by: Tomas Verbaitis (maintainer) Revision Changes Path 1.43 +1 -2 ports/www/tomcat55/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 22 11:20:34 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A519316A41B; Wed, 22 Aug 2007 11:20:34 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7BF3713C46A; Wed, 22 Aug 2007 11:20:34 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MBKYeW090166; Wed, 22 Aug 2007 11:20:34 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MBKY3v090165; Wed, 22 Aug 2007 11:20:34 GMT (envelope-from miwi) Message-Id: <200708221120.l7MBKY3v090165@repoman.freebsd.org> From: Martin Wilke Date: Wed, 22 Aug 2007 11:20: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/databases/pear-MDB2_Schema 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, 22 Aug 2007 11:20:34 -0000 miwi 2007-08-22 11:20:32 UTC FreeBSD ports repository Modified files: databases/pear-MDB2_Schema Makefile distinfo Log: - Update to 0.8.0 Revision Changes Path 1.3 +1 -1 ports/databases/pear-MDB2_Schema/Makefile 1.3 +3 -3 ports/databases/pear-MDB2_Schema/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 22 11:38:06 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6B17B16A418; Wed, 22 Aug 2007 11:38:06 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 424AF13C442; Wed, 22 Aug 2007 11:38:06 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MBc6hF091177; Wed, 22 Aug 2007 11:38:06 GMT (envelope-from mm@repoman.freebsd.org) Received: (from mm@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MBc6Hw091176; Wed, 22 Aug 2007 11:38:06 GMT (envelope-from mm) Message-Id: <200708221138.l7MBc6Hw091176@repoman.freebsd.org> From: Martin Matuska Date: Wed, 22 Aug 2007 11:38: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/fusefs-kmod/files patch-fuse_module_Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 11:38:06 -0000 mm 2007-08-22 11:38:06 UTC FreeBSD ports repository Added files: sysutils/fusefs-kmod/files patch-fuse_module_Makefile Log: - Add patch for better processing of KERNCONF variable on build time PR: ports/115585 Submitted by: Marcin Wisnicki Approved by: maintainer Revision Changes Path 1.3 +12 -0 ports/sysutils/fusefs-kmod/files/patch-fuse_module_Makefile (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 22 11:41:03 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C118616A417; Wed, 22 Aug 2007 11:41:03 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9885713C459; Wed, 22 Aug 2007 11:41:03 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MBf32j091386; Wed, 22 Aug 2007 11:41:03 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MBf3tf091385; Wed, 22 Aug 2007 11:41:03 GMT (envelope-from miwi) Message-Id: <200708221141.l7MBf3tf091385@repoman.freebsd.org> From: Martin Wilke Date: Wed, 22 Aug 2007 11:41: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/libetpan 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, 22 Aug 2007 11:41:03 -0000 miwi 2007-08-22 11:41:03 UTC FreeBSD ports repository Modified files: mail/libetpan Makefile distinfo Log: - Update to 0.52 PR: 115150 Submitted by: "Pawel Pekala" (maintainer) Revision Changes Path 1.44 +5 -8 ports/mail/libetpan/Makefile 1.27 +3 -3 ports/mail/libetpan/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 22 11:47:28 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 33E7F16A41B for ; Wed, 22 Aug 2007 11:47:28 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from capeta.freebsdbrasil.com.br (vrrp.freebsdbrasil.com.br [200.210.70.30]) by mx1.freebsd.org (Postfix) with SMTP id 5C91213C45B for ; Wed, 22 Aug 2007 11:47:27 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: (qmail 79790 invoked from network); 22 Aug 2007 08:51:02 -0300 Received: by simscan 1.1.0 ppid: 79730, pid: 79757, t: 4.4962s scanners: clamav: 0.91.1/m: spam: 3.1.1 X-Spam-Checker-Version: SpamAssassin: -last, FreeBSD Brasil LTDA rulesets: Yes X-Spam-Status: No, hits=0.2 required=3.7 Received: from unknown (HELO soc90.bluepex.com) (garga@201.28.114.106) by capeta.freebsdbrasil.com.br with SMTP; 22 Aug 2007 08:50:57 -0300 Received: (qmail 59825 invoked by uid 1001); 22 Aug 2007 08:47:22 -0300 Date: Wed, 22 Aug 2007 08:47:22 -0300 From: Renato Botelho To: David O'Brien Message-ID: <20070822114721.GA59806@bluepex.com> Mail-Followup-To: David O'Brien , Pav Lucistnik , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200708210208.l7L28cAD031343@repoman.freebsd.org> <1187682162.39461.6.camel@pav.hide.vol.cz> <20070821224100.GA63190@dragon.NUXI.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; x-action=pgp-signed Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20070821224100.GA63190@dragon.NUXI.org> User-Agent: Mutt/1.5.16 (2007-06-09) Cc: cvs-ports@FreeBSD.org, Pav Lucistnik , cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/mail/p5-Mail-SpamAssassin/files patch-sa-learn.raw X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 11:47:28 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Tue, Aug 21, 2007 at 03:41:00PM -0700, David O'Brien wrote: > On Tue, Aug 21, 2007 at 09:42:42AM +0200, Pav Lucistnik wrote: > > David E. O'Brien pí¹e v út 21. 08. 2007 v 02:08 +0000: > > > obrien 2007-08-21 02:08:38 UTC > > > > > > FreeBSD ports repository > > > > > > Added files: > > > mail/p5-Mail-SpamAssassin/files patch-sa-learn.raw > > > Log: > > > Restore the -q[uiet] flag to 'sa-learn' that was lost in the 3.1.8 update. > > > > Approved by: ? > > It restored functionality we've had since 2004/06/11 - it was obviously > accidentally missing from the the patch in the PR. AFAIK, we need to *always* respect maintainers. - -- Renato Botelho GnuPG Key: http://www.FreeBSD.org/~garga/pubkey.asc It's not whether you win or lose, it's how you place the blame. -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQFGzCJJ6CRbiSJE7akRAh0NAKCs8C96gGIdAkSjh9USrQqMCb3/bwCfR40s iz6iE4WK4QimULiBr2zBXbo= =hBOc -----END PGP SIGNATURE----- From owner-cvs-all@FreeBSD.ORG Wed Aug 22 11:58:38 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D2E4716A420; Wed, 22 Aug 2007 11:58:38 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AA55913C45E; Wed, 22 Aug 2007 11:58:38 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MBwcm8092289; Wed, 22 Aug 2007 11:58:38 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MBwcZP092288; Wed, 22 Aug 2007 11:58:38 GMT (envelope-from ahze) Message-Id: <200708221158.l7MBwcZP092288@repoman.freebsd.org> From: Michael Johnson Date: Wed, 22 Aug 2007 11:58: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/multimedia/gstreamer-plugins-gnonlin 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, 22 Aug 2007 11:58:38 -0000 ahze 2007-08-22 11:58:38 UTC FreeBSD ports repository Modified files: multimedia/gstreamer-plugins-gnonlin Makefile distinfo Log: Update to 0.10.9 Revision Changes Path 1.18 +1 -1 ports/multimedia/gstreamer-plugins-gnonlin/Makefile 1.9 +3 -3 ports/multimedia/gstreamer-plugins-gnonlin/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 22 12:04:49 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B04D16A419; Wed, 22 Aug 2007 12:04:49 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4FDFE13C459; Wed, 22 Aug 2007 12:04:49 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MC4n2B093978; Wed, 22 Aug 2007 12:04:49 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MC4n2P093977; Wed, 22 Aug 2007 12:04:49 GMT (envelope-from miwi) Message-Id: <200708221204.l7MC4n2P093977@repoman.freebsd.org> From: Martin Wilke Date: Wed, 22 Aug 2007 12:04: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/irc/irssi-devel Makefile distinfo ports/irc/irssi-devel/files patch-irssi-version.h.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 12:04:49 -0000 miwi 2007-08-22 12:04:49 UTC FreeBSD ports repository Modified files: irc/irssi-devel Makefile distinfo irc/irssi-devel/files patch-irssi-version.h.in Log: - Update to 20070819 Revision Changes Path 1.100 +1 -1 ports/irc/irssi-devel/Makefile 1.55 +3 -3 ports/irc/irssi-devel/distinfo 1.10 +5 -4 ports/irc/irssi-devel/files/patch-irssi-version.h.in From owner-cvs-all@FreeBSD.ORG Wed Aug 22 12:10:09 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2EE4516A417; Wed, 22 Aug 2007 12:10:09 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0616113C483; Wed, 22 Aug 2007 12:10:09 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MCA8Ei094242; Wed, 22 Aug 2007 12:10:08 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MCA8Nq094241; Wed, 22 Aug 2007 12:10:08 GMT (envelope-from ahze) Message-Id: <200708221210.l7MCA8Nq094241@repoman.freebsd.org> From: Michael Johnson Date: Wed, 22 Aug 2007 12:10: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/converters/fribidi 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, 22 Aug 2007 12:10:09 -0000 ahze 2007-08-22 12:10:08 UTC FreeBSD ports repository Modified files: converters/fribidi Makefile distinfo Log: Update to 0.10.9 Revision Changes Path 1.20 +1 -2 ports/converters/fribidi/Makefile 1.7 +3 -3 ports/converters/fribidi/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 22 12:11:07 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 306FC16A419; Wed, 22 Aug 2007 12:11:07 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1E93813C468; Wed, 22 Aug 2007 12:11:07 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MCB7uN094459; Wed, 22 Aug 2007 12:11:07 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MCB6Xw094458; Wed, 22 Aug 2007 12:11:06 GMT (envelope-from miwi) Message-Id: <200708221211.l7MCB6Xw094458@repoman.freebsd.org> From: Martin Wilke Date: Wed, 22 Aug 2007 12:11: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 Makefile ports/multimedia/transkode 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, 22 Aug 2007 12:11:07 -0000 miwi 2007-08-22 12:11:06 UTC FreeBSD ports repository Modified files: multimedia Makefile Added files: multimedia/transkode Makefile distinfo pkg-descr pkg-plist Log: TransKode is a KDE/Qt based frontend for varios audio transcoding tools. Supported input formats: * aac, ape/mac, bonk, flac, la, mp2, mp3, mp4/m4a/m4b, mpc/mpp/mp+, ofr, ogg, pac, shn, spx, tta, wav, wv * other media formats decodable by ffmpeg, mplayer, xine or gstreamer (mp1, wma, ra/ram, ac3, dts, mka, asf, avi, mpg/mpeg, wmv, qt/mov, rv/rm/rmvb, flv, 3gp, vob...) Supported output formats: * aac, ape/mac, bonk, flac, la, mp2, mp3, mp4/m4a/m4b, mpc/mpp/mp+, ofr, ogg, pac, shn, spx, tta, wav, wv * other audio formats encodable by ffmpeg or gstreamer (ac3, wma, asf...) WWW: http://sourceforge.net/projects/transkode/ PR: ports/115247 Submitted by: Yinghong.Liu Revision Changes Path 1.241 +1 -0 ports/multimedia/Makefile 1.1 +109 -0 ports/multimedia/transkode/Makefile (new) 1.1 +3 -0 ports/multimedia/transkode/distinfo (new) 1.1 +15 -0 ports/multimedia/transkode/pkg-descr (new) 1.1 +19 -0 ports/multimedia/transkode/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 22 12:11:31 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EFA8616A41A; Wed, 22 Aug 2007 12:11:31 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C765D13C491; Wed, 22 Aug 2007 12:11:31 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MCBVmW094570; Wed, 22 Aug 2007 12:11:31 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MCBVnf094569; Wed, 22 Aug 2007 12:11:31 GMT (envelope-from miwi) Message-Id: <200708221211.l7MCBVnf094569@repoman.freebsd.org> From: Martin Wilke Date: Wed, 22 Aug 2007 12:11: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: Wed, 22 Aug 2007 12:11:32 -0000 miwi 2007-08-22 12:11:31 UTC FreeBSD ports repository Modified files: . modules Log: transkode --> ports/multimedia/transkode Revision Changes Path 1.18582 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 22 12:32:09 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 520EF16A417; Wed, 22 Aug 2007 12:32:09 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 28AE413C46A; Wed, 22 Aug 2007 12:32:09 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MCW9fs000820; Wed, 22 Aug 2007 12:32:09 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MCW8T8000819; Wed, 22 Aug 2007 12:32:08 GMT (envelope-from ahze) Message-Id: <200708221232.l7MCW8T8000819@repoman.freebsd.org> From: Michael Johnson Date: Wed, 22 Aug 2007 12:32: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/print/cupsddk 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, 22 Aug 2007 12:32:09 -0000 ahze 2007-08-22 12:32:08 UTC FreeBSD ports repository Modified files: print/cupsddk Makefile distinfo pkg-plist Log: Update to 1.2.0 Revision Changes Path 1.2 +3 -4 ports/print/cupsddk/Makefile 1.2 +3 -3 ports/print/cupsddk/distinfo 1.2 +11 -0 ports/print/cupsddk/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 22 12:49:50 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A00F16A419; Wed, 22 Aug 2007 12:49:50 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 013EE13C46A; Wed, 22 Aug 2007 12:49:50 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MCnnNj010173; Wed, 22 Aug 2007 12:49:49 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MCnnQt010172; Wed, 22 Aug 2007 12:49:49 GMT (envelope-from ahze) Message-Id: <200708221249.l7MCnnQt010172@repoman.freebsd.org> From: Michael Johnson Date: Wed, 22 Aug 2007 12:49: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/mkvtoolnix 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, 22 Aug 2007 12:49:50 -0000 ahze 2007-08-22 12:49:49 UTC FreeBSD ports repository Modified files: multimedia/mkvtoolnix Makefile distinfo Log: Update to 2.1.0 Revision Changes Path 1.42 +2 -3 ports/multimedia/mkvtoolnix/Makefile 1.21 +3 -3 ports/multimedia/mkvtoolnix/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 22 13:22:13 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4A46016A418; Wed, 22 Aug 2007 13:22:13 +0000 (UTC) (envelope-from gallatin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3940E13C46E; Wed, 22 Aug 2007 13:22:13 +0000 (UTC) (envelope-from gallatin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MDMD3b017230; Wed, 22 Aug 2007 13:22:13 GMT (envelope-from gallatin@repoman.freebsd.org) Received: (from gallatin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MDMDVr017229; Wed, 22 Aug 2007 13:22:13 GMT (envelope-from gallatin) Message-Id: <200708221322.l7MDMDVr017229@repoman.freebsd.org> From: Andrew Gallatin Date: Wed, 22 Aug 2007 13:22: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/mxge eth_z8e.h ethp_z8e.h if_mxge.c if_mxge_var.h mxge_mcp.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, 22 Aug 2007 13:22:13 -0000 gallatin 2007-08-22 13:22:12 UTC FreeBSD src repository Modified files: sys/dev/mxge eth_z8e.h ethp_z8e.h if_mxge.c if_mxge_var.h mxge_mcp.h Log: - Fix a bug which could cause a panic when enabling LRO on an down mxge interface - Fix a bug where mxge reported the link state as active when it wasn't (after ifconfig down). - Prevent spurious watchdog resets when link partner is not consuming - Add support for CX4 and popular XFP media detection - Update the firmware and associated header files to 1.4.25 Approved by: re (kensmith) Revision Changes Path 1.2 +12731 -12338 src/sys/dev/mxge/eth_z8e.h 1.2 +12807 -12399 src/sys/dev/mxge/ethp_z8e.h 1.41 +174 -15 src/sys/dev/mxge/if_mxge.c 1.15 +10 -0 src/sys/dev/mxge/if_mxge_var.h 1.8 +91 -3 src/sys/dev/mxge/mxge_mcp.h From owner-cvs-all@FreeBSD.ORG Wed Aug 22 13:41:01 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3685416A41B; Wed, 22 Aug 2007 13:41:01 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0D87A13C48E; Wed, 22 Aug 2007 13:41:01 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MDf0U2018725; Wed, 22 Aug 2007 13:41:00 GMT (envelope-from mm@repoman.freebsd.org) Received: (from mm@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MDf0IN018724; Wed, 22 Aug 2007 13:41:00 GMT (envelope-from mm) Message-Id: <200708221341.l7MDf0IN018724@repoman.freebsd.org> From: Martin Matuska Date: Wed, 22 Aug 2007 13: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: ports/net-mgmt/TkTopNetFlows Makefile ports/net-mgmt/tknetmon Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 13:41:01 -0000 mm 2007-08-22 13:41:00 UTC FreeBSD ports repository Modified files: net-mgmt/TkTopNetFlows Makefile net-mgmt/tknetmon Makefile Log: - Fix TkTable dependency to 2.9 - Bump PORTREVISION Revision Changes Path 1.3 +2 -2 ports/net-mgmt/TkTopNetFlows/Makefile 1.3 +2 -2 ports/net-mgmt/tknetmon/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 22 13:41:25 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5B5A516A41B; Wed, 22 Aug 2007 13:41:25 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 32B3413C4A5; Wed, 22 Aug 2007 13:41:25 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MDfPQs018833; Wed, 22 Aug 2007 13:41:25 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MDfPv8018832; Wed, 22 Aug 2007 13:41:25 GMT (envelope-from des) Message-Id: <200708221341.l7MDfPv8018832@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 22 Aug 2007 13:41: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/varnish 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, 22 Aug 2007 13:41:25 -0000 des 2007-08-22 13:41:25 UTC FreeBSD ports repository Modified files: www/varnish pkg-plist Log: (annoyed grunt) Revision Changes Path 1.9 +4 -0 ports/www/varnish/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 22 13:45:10 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 19B4C16A419; Wed, 22 Aug 2007 13:45:10 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E519013C442; Wed, 22 Aug 2007 13:45:09 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MDj96U019081; Wed, 22 Aug 2007 13:45:09 GMT (envelope-from mm@repoman.freebsd.org) Received: (from mm@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MDj9U0019080; Wed, 22 Aug 2007 13:45:09 GMT (envelope-from mm) Message-Id: <200708221345.l7MDj9U0019080@repoman.freebsd.org> From: Martin Matuska Date: Wed, 22 Aug 2007 13:45:09 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/mailman 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, 22 Aug 2007 13:45:10 -0000 mm 2007-08-22 13:45:09 UTC FreeBSD ports repository Modified files: mail/mailman Makefile distinfo pkg-plist Log: - Add patch with Slovak translation (OPTIONAL) - Bump PORTREVISION PR: ports/114828 Submitted by: mm Approved by: jmelo (maintainer, private e-mail) Revision Changes Path 1.72 +10 -1 ports/mail/mailman/Makefile 1.33 +3 -0 ports/mail/mailman/distinfo 1.36 +51 -1 ports/mail/mailman/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 22 14:11:51 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F14DE16A41B; Wed, 22 Aug 2007 14:11:51 +0000 (UTC) (envelope-from erwin@mail.droso.net) Received: from mail.droso.net (koala.ipv6.droso.net [IPv6:2001:6c8:6:0:206:5bff:fef8:267d]) by mx1.freebsd.org (Postfix) with ESMTP id 742B413C478; Wed, 22 Aug 2007 14:11:51 +0000 (UTC) (envelope-from erwin@mail.droso.net) Received: by mail.droso.net (Postfix, from userid 1001) id CC01E1CC42; Wed, 22 Aug 2007 16:11:49 +0200 (CEST) Date: Wed, 22 Aug 2007 16:11:49 +0200 From: Erwin Lansing To: Dag-Erling Smorgrav Message-ID: <20070822141149.GH93965@droso.net> Mail-Followup-To: Dag-Erling Smorgrav , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200708221341.l7MDfPv8018832@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="jk/5KjyVsvxWSMIA" Content-Disposition: inline In-Reply-To: <200708221341.l7MDfPv8018832@repoman.freebsd.org> X-Operating-System: FreeBSD/i386 6.2-STABLE User-Agent: Mutt/1.5.16 (2007-06-09) Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/www/varnish 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, 22 Aug 2007 14:11:52 -0000 --jk/5KjyVsvxWSMIA Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Aug 22, 2007 at 01:41:25PM +0000, Dag-Erling Smorgrav wrote: > des 2007-08-22 13:41:25 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > www/varnish pkg-plist=20 > Log: > (annoyed grunt) So what's the functional change to the file? This is not an acceptable log message. And why wasn't PORTREVISION not bumped? -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 --jk/5KjyVsvxWSMIA Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQFGzEQlqy9aWxUlaZARAvn/AJ4obnyoJ2/XX/3FMzAy/lNeu6Zu1QCg0mSz wRtFBGbqCOtOWjdEsYzG1+Y= =4owb -----END PGP SIGNATURE----- --jk/5KjyVsvxWSMIA-- From owner-cvs-all@FreeBSD.ORG Wed Aug 22 14:37:38 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7461E16A478; Wed, 22 Aug 2007 14:37:38 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6F5CA13C4D5; Wed, 22 Aug 2007 14:37:37 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MEbaaP023623; Wed, 22 Aug 2007 14:37:36 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MEba6a023621; Wed, 22 Aug 2007 14:37:36 GMT (envelope-from ahze) Message-Id: <200708221437.l7MEba6a023621@repoman.freebsd.org> From: Michael Johnson Date: Wed, 22 Aug 2007 14:37: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/eps Makefile pkg-plist ports/mail/epstools Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 14:37:38 -0000 ahze 2007-08-22 14:37:36 UTC FreeBSD ports repository Modified files: mail/eps Makefile pkg-plist mail/epstools Makefile Log: - Install header files in include/eps instead of include/ to not conflict with ffmpeg PR: ports/115038 Approved by: maintainer timeout Revision Changes Path 1.3 +3 -1 ports/mail/eps/Makefile 1.2 +19 -18 ports/mail/eps/pkg-plist 1.3 +1 -1 ports/mail/epstools/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 22 14:46:29 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D7D416A41A; Wed, 22 Aug 2007 14:46:29 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0363E13C467; Wed, 22 Aug 2007 14:46:29 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MEkSdM024135; Wed, 22 Aug 2007 14:46:28 GMT (envelope-from emaste@repoman.freebsd.org) Received: (from emaste@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MEkSDT024133; Wed, 22 Aug 2007 14:46:28 GMT (envelope-from emaste) Message-Id: <200708221446.l7MEkSDT024133@repoman.freebsd.org> From: Ed Maste Date: Wed, 22 Aug 2007 14:46:28 +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/aac aac_cam.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 14:46:29 -0000 emaste 2007-08-22 14:46:28 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/aac aac_cam.c Log: MFC aac_cam.c 1.26: Add a missing mutex unlock to an error path. Submitted by: Yuxiang Luo PR: 107943 Revision Changes Path 1.20.2.4 +1 -0 src/sys/dev/aac/aac_cam.c From owner-cvs-all@FreeBSD.ORG Wed Aug 22 14:48:57 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8580516A504; Wed, 22 Aug 2007 14:48:57 +0000 (UTC) (envelope-from az@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 706C813C45D; Wed, 22 Aug 2007 14:48:55 +0000 (UTC) (envelope-from az@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MEmtIG024227; Wed, 22 Aug 2007 14:48:55 GMT (envelope-from az@repoman.freebsd.org) Received: (from az@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MEmt3h024226; Wed, 22 Aug 2007 14:48:55 GMT (envelope-from az) Message-Id: <200708221448.l7MEmt3h024226@repoman.freebsd.org> From: Andrej Zverev Date: Wed, 22 Aug 2007 14: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/games/lincity-ng 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, 22 Aug 2007 14:48:57 -0000 az 2007-08-22 14:48:55 UTC FreeBSD ports repository Modified files: games/lincity-ng Makefile pkg-plist Log: - Fix plist - bump portrevision Pointed by: kris@ via pointyhat Revision Changes Path 1.16 +1 -0 ports/games/lincity-ng/Makefile 1.9 +0 -1 ports/games/lincity-ng/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 22 14:57:18 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 171EC16A474; Wed, 22 Aug 2007 14:57:18 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.freebsd.org (Postfix) with ESMTP id C4C5B13C48A; Wed, 22 Aug 2007 14:57:17 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id 8B61F20B0; Wed, 22 Aug 2007 16:57:13 +0200 (CEST) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: 0.0/3.0 X-Spam-Checker-Version: SpamAssassin 3.2.1 (2007-05-02) on tim.des.no Received: from ds4.des.no (des.no [80.203.243.180]) by smtp.des.no (Postfix) with ESMTP id 7E725208A; Wed, 22 Aug 2007 16:57:13 +0200 (CEST) Received: by ds4.des.no (Postfix, from userid 1001) id 5C9FD84463; Wed, 22 Aug 2007 16:57:13 +0200 (CEST) From: =?utf-8?Q?Dag-Erling_Sm=C3=B8rgrav?= To: ports-committers@FreeBSD.org References: <200708221341.l7MDfPv8018832@repoman.freebsd.org> <20070822141149.GH93965@droso.net> Date: Wed, 22 Aug 2007 16:57:13 +0200 In-Reply-To: <20070822141149.GH93965@droso.net> (Erwin Lansing's message of "Wed\, 22 Aug 2007 16\:11\:49 +0200") Message-ID: <864pir8vna.fsf@ds4.des.no> User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/22.1 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/www/varnish 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, 22 Aug 2007 14:57:18 -0000 Erwin Lansing writes: > On Wed, Aug 22, 2007 at 01:41:25PM +0000, Dag-Erling Smorgrav wrote: > > Log: > > (annoyed grunt) > So what's the functional change to the file? This is not an acceptable > log message. It's a joke. Wikipedia is your friend. > And why wasn't PORTREVISION not bumped? No good reason. Maybe I will if you ask nicely. DES --=20 Dag-Erling Sm=C3=B8rgrav - des@des.no From owner-cvs-all@FreeBSD.ORG Wed Aug 22 15:50:32 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 90ACF16A417; Wed, 22 Aug 2007 15:50:32 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6592A13C458; Wed, 22 Aug 2007 15:50:32 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MFoWHT030262; Wed, 22 Aug 2007 15:50:32 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MFoWRL030261; Wed, 22 Aug 2007 15:50:32 GMT (envelope-from gabor) Message-Id: <200708221550.l7MFoWRL030261@repoman.freebsd.org> From: Gabor Kovesdan Date: Wed, 22 Aug 2007 15:50:32 +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 doc/en_US.ISO8859-1/books/handbook/install chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 15:50:32 -0000 gabor 2007-08-22 15:50:32 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/disks chapter.sgml en_US.ISO8859-1/books/handbook/install chapter.sgml Log: - Use mount -t msdosfs instead of mount_msdosfs PR: docs/115571 Submitted by: lme Approved by: keramida (mentor) Revision Changes Path 1.276 +1 -1 doc/en_US.ISO8859-1/books/handbook/disks/chapter.sgml 1.381 +1 -1 doc/en_US.ISO8859-1/books/handbook/install/chapter.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 22 15:50:53 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4CB1916A46E; Wed, 22 Aug 2007 15:50:53 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2339E13C4B6; Wed, 22 Aug 2007 15:50:53 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MForPG030303; Wed, 22 Aug 2007 15:50:53 GMT (envelope-from lbr@repoman.freebsd.org) Received: (from lbr@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MFor2e030302; Wed, 22 Aug 2007 15:50:53 GMT (envelope-from lbr) Message-Id: <200708221550.l7MFor2e030302@repoman.freebsd.org> From: Lars Balker Rasmussen Date: Wed, 22 Aug 2007 15:50: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/p5-Catalyst-Runtime 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, 22 Aug 2007 15:50:53 -0000 lbr 2007-08-22 15:50:52 UTC FreeBSD ports repository Modified files: www/p5-Catalyst-Runtime Makefile distinfo pkg-plist Log: Update to 5.7010 Revision Changes Path 1.7 +1 -1 ports/www/p5-Catalyst-Runtime/Makefile 1.7 +3 -3 ports/www/p5-Catalyst-Runtime/distinfo 1.3 +1 -1 ports/www/p5-Catalyst-Runtime/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 22 15:55:04 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 37B3916A420; Wed, 22 Aug 2007 15:55:04 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0E82813C459; Wed, 22 Aug 2007 15:55:04 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MFt33Z030664; Wed, 22 Aug 2007 15:55:03 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MFt35W030663; Wed, 22 Aug 2007 15:55:03 GMT (envelope-from flz) Message-Id: <200708221555.l7MFt35W030663@repoman.freebsd.org> From: Florent Thoumie Date: Wed, 22 Aug 2007 15:55: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/x11-wm/compiz 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, 22 Aug 2007 15:55:04 -0000 flz 2007-08-22 15:55:03 UTC FreeBSD ports repository Modified files: x11-wm/compiz Makefile distinfo pkg-plist Log: Update x11-wm/compiz to 0.5.2. PR: ports/112826 Submitted by: maintainer Revision Changes Path 1.2 +39 -4 ports/x11-wm/compiz/Makefile 1.2 +3 -3 ports/x11-wm/compiz/distinfo 1.2 +43 -5 ports/x11-wm/compiz/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 22 15:59:35 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4EF4E16A417; Wed, 22 Aug 2007 15:59:35 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3D8C413C45A; Wed, 22 Aug 2007 15:59:35 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MFxZ1m030841; Wed, 22 Aug 2007 15:59:35 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MFxZpO030840; Wed, 22 Aug 2007 15:59:35 GMT (envelope-from flz) Message-Id: <200708221559.l7MFxZpO030840@repoman.freebsd.org> From: Florent Thoumie Date: Wed, 22 Aug 2007 15:59: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/compiz-bcop 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, 22 Aug 2007 15:59:35 -0000 flz 2007-08-22 15:59:34 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/compiz-bcop Makefile distinfo pkg-descr pkg-plist Log: Add devel/compiz-bcop, a code generator that provides an easy way to handle plugin options by generating parts of the plugin code directly from the xml metadata file. It is used for most of the Compiz Fusion plugins. PR: ports/115704 Submitted by: Robert Noland Revision Changes Path 1.2849 +1 -0 ports/devel/Makefile 1.1 +35 -0 ports/devel/compiz-bcop/Makefile (new) 1.1 +3 -0 ports/devel/compiz-bcop/distinfo (new) 1.1 +5 -0 ports/devel/compiz-bcop/pkg-descr (new) 1.1 +5 -0 ports/devel/compiz-bcop/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 22 16:00:33 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E0B5B16A417; Wed, 22 Aug 2007 16:00:33 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B822413C48D; Wed, 22 Aug 2007 16:00:33 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MG0XBv030991; Wed, 22 Aug 2007 16:00:33 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MG0XNZ030990; Wed, 22 Aug 2007 16:00:33 GMT (envelope-from flz) Message-Id: <200708221600.l7MG0XNZ030990@repoman.freebsd.org> From: Florent Thoumie Date: Wed, 22 Aug 2007 16:00:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: 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, 22 Aug 2007 16:00:34 -0000 flz 2007-08-22 16:00:33 UTC FreeBSD ports repository Modified files: . modules Log: compiz-bcop --> ports/devel/compiz-bcop Revision Changes Path 1.18583 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 22 16:05:21 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DFC2516A418; Wed, 22 Aug 2007 16:05:21 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B659013C468; Wed, 22 Aug 2007 16:05:21 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MG5Lpr032600; Wed, 22 Aug 2007 16:05:21 GMT (envelope-from lbr@repoman.freebsd.org) Received: (from lbr@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MG5LO9032599; Wed, 22 Aug 2007 16:05:21 GMT (envelope-from lbr) Message-Id: <200708221605.l7MG5LO9032599@repoman.freebsd.org> From: Lars Balker Rasmussen Date: Wed, 22 Aug 2007 16:05: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/p5-Catalyst-View-Mason 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, 22 Aug 2007 16:05:22 -0000 lbr 2007-08-22 16:05:21 UTC FreeBSD ports repository Modified files: www/p5-Catalyst-View-Mason Makefile distinfo Log: Update to 0.13 Revision Changes Path 1.6 +1 -1 ports/www/p5-Catalyst-View-Mason/Makefile 1.4 +3 -3 ports/www/p5-Catalyst-View-Mason/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 22 16:05:58 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9A15616A418; Wed, 22 Aug 2007 16:05:58 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 871F113C465; Wed, 22 Aug 2007 16:05:58 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MG5wKC032738; Wed, 22 Aug 2007 16:05:58 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MG5wst032737; Wed, 22 Aug 2007 16:05:58 GMT (envelope-from flz) Message-Id: <200708221605.l7MG5wst032737@repoman.freebsd.org> From: Florent Thoumie Date: Wed, 22 Aug 2007 16: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/x11-wm Makefile ports/x11-wm/compiz-fusion-plugins-main Makefile distinfo pkg-descr pkg-plist ports/x11-wm/compiz-fusion-plugins-main/files patch-src-text-text.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 16:05:58 -0000 flz 2007-08-22 16:05:58 UTC FreeBSD ports repository Modified files: x11-wm Makefile Added files: x11-wm/compiz-fusion-plugins-main Makefile distinfo pkg-descr pkg-plist x11-wm/compiz-fusion-plugins-main/files patch-src-text-text.c Log: Add compiz-fusion-plugins-main, the main set of plugins for Compiz. PR: ports/115705 Submitted by: Robert Noland Revision Changes Path 1.198 +1 -0 ports/x11-wm/Makefile 1.1 +37 -0 ports/x11-wm/compiz-fusion-plugins-main/Makefile (new) 1.1 +3 -0 ports/x11-wm/compiz-fusion-plugins-main/distinfo (new) 1.1 +28 -0 ports/x11-wm/compiz-fusion-plugins-main/files/patch-src-text-text.c (new) 1.1 +3 -0 ports/x11-wm/compiz-fusion-plugins-main/pkg-descr (new) 1.1 +89 -0 ports/x11-wm/compiz-fusion-plugins-main/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 22 16:07:06 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A18AE16A418; Wed, 22 Aug 2007 16:07:06 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7876513C480; Wed, 22 Aug 2007 16:07:06 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MG76U3032925; Wed, 22 Aug 2007 16:07:06 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MG76lJ032922; Wed, 22 Aug 2007 16:07:06 GMT (envelope-from flz) Message-Id: <200708221607.l7MG76lJ032922@repoman.freebsd.org> From: Florent Thoumie Date: Wed, 22 Aug 2007 16:07:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 16:07:06 -0000 flz 2007-08-22 16:07:05 UTC FreeBSD ports repository Modified files: . modules Log: compiz-fusion-plugins-main --> ports/x11-wm/compiz-fusion-plugins-main Revision Changes Path 1.18584 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 22 16:10:34 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 713EC16A41A; Wed, 22 Aug 2007 16:10:34 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 47B2813C483; Wed, 22 Aug 2007 16:10:34 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MGAYIf033508; Wed, 22 Aug 2007 16:10:34 GMT (envelope-from lbr@repoman.freebsd.org) Received: (from lbr@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MGAYtU033507; Wed, 22 Aug 2007 16:10:34 GMT (envelope-from lbr) Message-Id: <200708221610.l7MGAYtU033507@repoman.freebsd.org> From: Lars Balker Rasmussen Date: Wed, 22 Aug 2007 16:10: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/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: Wed, 22 Aug 2007 16:10:34 -0000 lbr 2007-08-22 16:10:34 UTC FreeBSD ports repository Modified files: www/p5-Catalyst-Plugin-ConfigLoader Makefile distinfo Log: Update to 0.15 Revision Changes Path 1.6 +1 -1 ports/www/p5-Catalyst-Plugin-ConfigLoader/Makefile 1.6 +3 -3 ports/www/p5-Catalyst-Plugin-ConfigLoader/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 22 16:12:27 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9462A16A4C8; Wed, 22 Aug 2007 16:12:27 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 822B313C465; Wed, 22 Aug 2007 16:12:27 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MGCR6P033989; Wed, 22 Aug 2007 16:12:27 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MGCRBp033988; Wed, 22 Aug 2007 16:12:27 GMT (envelope-from gabor) Message-Id: <200708221612.l7MGCRBp033988@repoman.freebsd.org> From: Gabor Kovesdan Date: Wed, 22 Aug 2007 16:12:27 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/hu_HU.ISO8859-2/articles/explaining-bsd 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: Wed, 22 Aug 2007 16:12:27 -0000 gabor 2007-08-22 16:12:27 UTC FreeBSD doc repository Modified files: hu_HU.ISO8859-2/articles/explaining-bsd article.sgml Log: - Correct some typos and improve language Reported by: Gyorgy Abraham , Gabor Legradi , Gabor Micsko , Robert Fridrich , Lajos Nagy , Peter Kotcauer , Miklos Quartus Approved by: keramida (mentor) Revision Changes Path 1.2 +17 -17 doc/hu_HU.ISO8859-2/articles/explaining-bsd/article.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 22 16:17:02 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5EF1E16A41B; Wed, 22 Aug 2007 16:17:02 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 34B6613C49D; Wed, 22 Aug 2007 16:17:02 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MGH2pV034356; Wed, 22 Aug 2007 16:17:02 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MGH1YP034355; Wed, 22 Aug 2007 16:17:01 GMT (envelope-from pav) Message-Id: <200708221617.l7MGH1YP034355@repoman.freebsd.org> From: Pav Lucistnik Date: Wed, 22 Aug 2007 16:17: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/net/rsync Makefile ports/net/rsync/files patch-CVE-2007-4091 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 16:17:02 -0000 pav 2007-08-22 16:17:01 UTC FreeBSD ports repository Modified files: net/rsync Makefile Added files: net/rsync/files patch-CVE-2007-4091 Log: - Fix off-by-one buffer overflow in f_name() function. It is not clear if this problem can be exploited. Submitted by: several Obtained from: http://www.suse.de/~krahmer/rsync-2.6.9-fname-obo.diff Security: CVE-2007-4091 Security: http://www.novell.com/linux/security/advisories/2007_17_sr.html Revision Changes Path 1.122 +1 -0 ports/net/rsync/Makefile 1.1 +60 -0 ports/net/rsync/files/patch-CVE-2007-4091 (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 22 16:17:23 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6979616A418; Wed, 22 Aug 2007 16:17:23 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3E8DC13C4F3; Wed, 22 Aug 2007 16:17:23 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MGHNJH034388; Wed, 22 Aug 2007 16:17:23 GMT (envelope-from mi@repoman.freebsd.org) Received: (from mi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MGHNOC034387; Wed, 22 Aug 2007 16:17:23 GMT (envelope-from mi) Message-Id: <200708221617.l7MGHNOC034387@repoman.freebsd.org> From: Mikhail Teterin Date: Wed, 22 Aug 2007 16:17:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/vips Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 16:17:23 -0000 mi 2007-08-22 16:17:23 UTC FreeBSD ports repository Modified files: graphics/vips Makefile Log: Add libxml2 to the list of the required GNOME-components. Prompted by: build failure (via kris) Confirmed by: software author Revision Changes Path 1.22 +1 -1 ports/graphics/vips/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 22 16:19:02 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2335316A417; Wed, 22 Aug 2007 16:19:02 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EDA3613C45D; Wed, 22 Aug 2007 16:19:01 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MGJ12m034467; Wed, 22 Aug 2007 16:19:01 GMT (envelope-from lbr@repoman.freebsd.org) Received: (from lbr@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MGJ11b034466; Wed, 22 Aug 2007 16:19:01 GMT (envelope-from lbr) Message-Id: <200708221619.l7MGJ11b034466@repoman.freebsd.org> From: Lars Balker Rasmussen Date: Wed, 22 Aug 2007 16:19: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/p5-Test-WWW-Mechanize-Catalyst 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, 22 Aug 2007 16:19:02 -0000 lbr 2007-08-22 16:19:01 UTC FreeBSD ports repository Modified files: devel/p5-Test-WWW-Mechanize-Catalyst Makefile distinfo Log: Update to 0.40 Revision Changes Path 1.9 +1 -1 ports/devel/p5-Test-WWW-Mechanize-Catalyst/Makefile 1.7 +3 -3 ports/devel/p5-Test-WWW-Mechanize-Catalyst/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 22 16:31:47 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0C58B16A421; Wed, 22 Aug 2007 16:31:47 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D6DA713C468; Wed, 22 Aug 2007 16:31:46 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MGVkPt035486; Wed, 22 Aug 2007 16:31:46 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MGVkSb035485; Wed, 22 Aug 2007 16:31:46 GMT (envelope-from delphij) Message-Id: <200708221631.l7MGVkSb035485@repoman.freebsd.org> From: Xin LI Date: Wed, 22 Aug 2007 16:31: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/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, 22 Aug 2007 16:31:47 -0000 delphij 2007-08-22 16:31:46 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Update vuln.xml for rsync 2.6.9_1 which fixed CVE-2007-4091 Revision Changes Path 1.1402 +3 -2 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Wed Aug 22 16:37:45 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 35AA616A418; Wed, 22 Aug 2007 16:37:45 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0B43213C459; Wed, 22 Aug 2007 16:37:45 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MGbiQp035756; Wed, 22 Aug 2007 16:37:44 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MGbiYo035755; Wed, 22 Aug 2007 16:37:44 GMT (envelope-from novel) Message-Id: <200708221637.l7MGbiYo035755@repoman.freebsd.org> From: Roman Bogorodskiy Date: Wed, 22 Aug 2007 16:37: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/conky/files patch-src-freebsd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 16:37:45 -0000 novel 2007-08-22 16:37:44 UTC FreeBSD ports repository Modified files: sysutils/conky/files patch-src-freebsd.c Log: Really fix build on i386. XXXL size pointy hat to: novel Revision Changes Path 1.13 +6 -7 ports/sysutils/conky/files/patch-src-freebsd.c From owner-cvs-all@FreeBSD.ORG Wed Aug 22 16:40:38 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9C30616A419; Wed, 22 Aug 2007 16:40:38 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7250613C459; Wed, 22 Aug 2007 16:40:38 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MGecUY035921; Wed, 22 Aug 2007 16:40:38 GMT (envelope-from lbr@repoman.freebsd.org) Received: (from lbr@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MGecx5035920; Wed, 22 Aug 2007 16:40:38 GMT (envelope-from lbr) Message-Id: <200708221640.l7MGecx5035920@repoman.freebsd.org> From: Lars Balker Rasmussen Date: Wed, 22 Aug 2007 16:40: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/p5-Catalyst-Plugin-Cache-Store-FastMmap 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, 22 Aug 2007 16:40:38 -0000 lbr 2007-08-22 16:40:38 UTC FreeBSD ports repository Modified files: www/p5-Catalyst-Plugin-Cache-Store-FastMmap Makefile distinfo pkg-descr Log: Update to 0.02. Note, marked DEPRECATED because a Catalyst application can easily be configured to not use this module without sacrificing functionality. Revision Changes Path 1.2 +3 -1 ports/www/p5-Catalyst-Plugin-Cache-Store-FastMmap/Makefile 1.2 +3 -3 ports/www/p5-Catalyst-Plugin-Cache-Store-FastMmap/distinfo 1.2 +4 -1 ports/www/p5-Catalyst-Plugin-Cache-Store-FastMmap/pkg-descr From owner-cvs-all@FreeBSD.ORG Wed Aug 22 16:43:52 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BB42516A419; Wed, 22 Aug 2007 16:43:52 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9129D13C480; Wed, 22 Aug 2007 16:43:52 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MGhqne036194; Wed, 22 Aug 2007 16:43:52 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MGhqLM036193; Wed, 22 Aug 2007 16:43:52 GMT (envelope-from ahze) Message-Id: <200708221643.l7MGhqLM036193@repoman.freebsd.org> From: Michael Johnson Date: Wed, 22 Aug 2007 16: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/graphics/gimp-app-devel Makefile distinfo pkg-plist ports/graphics/gimp-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: Wed, 22 Aug 2007 16:43:52 -0000 ahze 2007-08-22 16:43:51 UTC FreeBSD ports repository Modified files: graphics/gimp-app-devel Makefile distinfo pkg-plist graphics/gimp-devel Makefile Log: Update to 2.4.0-rc1 Revision Changes Path 1.177 +11 -10 ports/graphics/gimp-app-devel/Makefile 1.77 +3 -3 ports/graphics/gimp-app-devel/distinfo 1.100 +12 -8 ports/graphics/gimp-app-devel/pkg-plist 1.171 +1 -1 ports/graphics/gimp-devel/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 22 16:43:57 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5D27516A417; Wed, 22 Aug 2007 16:43:57 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3291413C494; Wed, 22 Aug 2007 16:43:57 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MGhvGK036221; Wed, 22 Aug 2007 16:43:57 GMT (envelope-from mi@repoman.freebsd.org) Received: (from mi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MGhvbV036220; Wed, 22 Aug 2007 16:43:57 GMT (envelope-from mi) Message-Id: <200708221643.l7MGhvbV036220@repoman.freebsd.org> From: Mikhail Teterin Date: Wed, 22 Aug 2007 16:43: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/qmake Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 16:43:57 -0000 mi 2007-08-22 16:43:57 UTC FreeBSD ports repository Modified files: devel/qmake Makefile Log: Use make's `-j' flag to build (but not install) on all available CPUs. Tested on a four CPU system. The same trick may/should be used when building other large ports (Qt, KDE components)... Revision Changes Path 1.21 +1 -1 ports/devel/qmake/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 22 17:10:17 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9E4D616A417; Wed, 22 Aug 2007 17:10:17 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 891B913C45E; Wed, 22 Aug 2007 17:10:17 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MHAHJg047381; Wed, 22 Aug 2007 17:10:17 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MHAHKv047380; Wed, 22 Aug 2007 17:10:17 GMT (envelope-from ahze) Message-Id: <200708221710.l7MHAHKv047380@repoman.freebsd.org> From: Michael Johnson Date: Wed, 22 Aug 2007 17:10:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics Makefile ports/graphics/gimp-gap Makefile distinfo pkg-descr pkg-plist ports/graphics/gimp-gap/files patch-gap_Makefile.in patch-libgapvidapi_gap_vid_api_ffmpeg.c patch-libwavplayclient_client.c patch-libwavplayclient_msg.c patch-libwavplayclient_wpc_msg.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 17:10:17 -0000 ahze 2007-08-22 17:10:17 UTC FreeBSD ports repository Modified files: graphics Makefile Added files: graphics/gimp-gap Makefile distinfo pkg-descr pkg-plist graphics/gimp-gap/files patch-gap_Makefile.in patch-libgapvidapi_gap_vid_api_ffmpeg.c patch-libwavplayclient_client.c patch-libwavplayclient_msg.c patch-libwavplayclient_wpc_msg.c patch-vid_common_Makefile.in patch-vid_enc_avi_Makefile.in patch-vid_enc_ffmpeg_Makefile.in patch-vid_enc_ffmpeg_gap_enc_ffmpeg_main.c patch-vid_enc_single_Makefile.in Log: Add gimp-gap The GIMP-GAP (GIMP Animation Package) is a collection of Plug-Ins to extend the GIMP with capabilities to edit and create Animations as sequences of single frames. Revision Changes Path 1.1093 +1 -0 ports/graphics/Makefile 1.1 +36 -0 ports/graphics/gimp-gap/Makefile (new) 1.1 +3 -0 ports/graphics/gimp-gap/distinfo (new) 1.1 +11 -0 ports/graphics/gimp-gap/files/patch-gap_Makefile.in (new) 1.1 +31 -0 ports/graphics/gimp-gap/files/patch-libgapvidapi_gap_vid_api_ffmpeg.c (new) 1.1 +19 -0 ports/graphics/gimp-gap/files/patch-libwavplayclient_client.c (new) 1.1 +19 -0 ports/graphics/gimp-gap/files/patch-libwavplayclient_msg.c (new) 1.1 +19 -0 ports/graphics/gimp-gap/files/patch-libwavplayclient_wpc_msg.c (new) 1.1 +11 -0 ports/graphics/gimp-gap/files/patch-vid_common_Makefile.in (new) 1.1 +11 -0 ports/graphics/gimp-gap/files/patch-vid_enc_avi_Makefile.in (new) 1.1 +11 -0 ports/graphics/gimp-gap/files/patch-vid_enc_ffmpeg_Makefile.in (new) 1.1 +28 -0 ports/graphics/gimp-gap/files/patch-vid_enc_ffmpeg_gap_enc_ffmpeg_main.c (new) 1.1 +11 -0 ports/graphics/gimp-gap/files/patch-vid_enc_single_Makefile.in (new) 1.1 +3 -0 ports/graphics/gimp-gap/pkg-descr (new) 1.1 +68 -0 ports/graphics/gimp-gap/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 22 17:10:39 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0FF1F16A420; Wed, 22 Aug 2007 17:10:39 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DAF8A13C458; Wed, 22 Aug 2007 17:10:38 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MHAchF047451; Wed, 22 Aug 2007 17:10:38 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MHAc4q047450; Wed, 22 Aug 2007 17:10:38 GMT (envelope-from ahze) Message-Id: <200708221710.l7MHAc4q047450@repoman.freebsd.org> From: Michael Johnson Date: Wed, 22 Aug 2007 17:10: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, 22 Aug 2007 17:10:39 -0000 ahze 2007-08-22 17:10:38 UTC FreeBSD ports repository Modified files: . modules Log: gimp-gap --> ports/graphics/gimp-gap Revision Changes Path 1.18585 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 22 17:19:54 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A93E216A418; Wed, 22 Aug 2007 17:19:54 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7EC9913C468; Wed, 22 Aug 2007 17:19:54 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MHJsFI047922; Wed, 22 Aug 2007 17:19:54 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MHJs6l047921; Wed, 22 Aug 2007 17:19:54 GMT (envelope-from mezz) Message-Id: <200708221719.l7MHJs6l047921@repoman.freebsd.org> From: Jeremy Messenger Date: Wed, 22 Aug 2007 17: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/finance/homebank 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, 22 Aug 2007 17:19:54 -0000 mezz 2007-08-22 17:19:54 UTC FreeBSD ports repository Modified files: finance/homebank Makefile distinfo pkg-plist Log: Update to 3.5. Revision Changes Path 1.10 +2 -3 ports/finance/homebank/Makefile 1.8 +3 -3 ports/finance/homebank/distinfo 1.8 +94 -3 ports/finance/homebank/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 22 17:39:05 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 09AA116A46B; Wed, 22 Aug 2007 17:39:05 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D44EF13C480; Wed, 22 Aug 2007 17:39:04 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MHd4fm049177; Wed, 22 Aug 2007 17:39:04 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MHd4xt049176; Wed, 22 Aug 2007 17:39:04 GMT (envelope-from flz) Message-Id: <200708221739.l7MHd4xt049176@repoman.freebsd.org> From: Florent Thoumie Date: Wed, 22 Aug 2007 17:39:04 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11-wm/compiz Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 17:39:05 -0000 flz 2007-08-22 17:39:04 UTC FreeBSD ports repository Modified files: x11-wm/compiz Makefile Log: Force commit to note that previous commit was ports/115703, not ports/112826. Revision Changes Path 1.3 +0 -0 ports/x11-wm/compiz/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 22 17:46:14 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 913AD16A46B; Wed, 22 Aug 2007 17:46:14 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7EE6613C491; Wed, 22 Aug 2007 17:46:14 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MHkE1F049704; Wed, 22 Aug 2007 17:46:14 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MHkEq4049703; Wed, 22 Aug 2007 17:46:14 GMT (envelope-from flz) Message-Id: <200708221746.l7MHkEq4049703@repoman.freebsd.org> From: Florent Thoumie Date: Wed, 22 Aug 2007 17:46: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/x11-wm Makefile ports/x11-wm/compiz-fusion-plugins-extra 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, 22 Aug 2007 17:46:14 -0000 flz 2007-08-22 17:46:14 UTC FreeBSD ports repository Modified files: x11-wm Makefile Added files: x11-wm/compiz-fusion-plugins-extra Makefile distinfo pkg-descr pkg-plist Log: Add compiz-fusion-plugins-extra, the extra set of plugins for Compiz fusion. PR: ports/115727 Submitted by: Robert Noland Revision Changes Path 1.199 +1 -0 ports/x11-wm/Makefile 1.1 +43 -0 ports/x11-wm/compiz-fusion-plugins-extra/Makefile (new) 1.1 +3 -0 ports/x11-wm/compiz-fusion-plugins-extra/distinfo (new) 1.1 +3 -0 ports/x11-wm/compiz-fusion-plugins-extra/pkg-descr (new) 1.1 +82 -0 ports/x11-wm/compiz-fusion-plugins-extra/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 22 17:46:54 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3D7B316A417; Wed, 22 Aug 2007 17:46:54 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1425013C442; Wed, 22 Aug 2007 17:46:54 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MHkrse049744; Wed, 22 Aug 2007 17:46:53 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MHkrdc049743; Wed, 22 Aug 2007 17:46:53 GMT (envelope-from flz) Message-Id: <200708221746.l7MHkrdc049743@repoman.freebsd.org> From: Florent Thoumie Date: Wed, 22 Aug 2007 17:46: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, 22 Aug 2007 17:46:54 -0000 flz 2007-08-22 17:46:53 UTC FreeBSD ports repository Modified files: . modules Log: compiz-fusion-plugins-extra --> ports/x11-wm/compiz-fusion-plugins-extra Revision Changes Path 1.18586 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 22 17:50:45 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A935116A417; Wed, 22 Aug 2007 17:50:45 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7F7B613C458; Wed, 22 Aug 2007 17:50:45 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MHojMf049927; Wed, 22 Aug 2007 17:50:45 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MHoj30049926; Wed, 22 Aug 2007 17:50:45 GMT (envelope-from flz) Message-Id: <200708221750.l7MHoj30049926@repoman.freebsd.org> From: Florent Thoumie Date: Wed, 22 Aug 2007 17:50:45 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11-wm/compiz-fusion-plugins-extra Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 17:50:45 -0000 flz 2007-08-22 17:50:45 UTC FreeBSD ports repository Modified files: x11-wm/compiz-fusion-plugins-extra Makefile Log: Style fix. Revision Changes Path 1.2 +1 -2 ports/x11-wm/compiz-fusion-plugins-extra/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 22 17:58:55 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1979B16A419; Wed, 22 Aug 2007 17:58:55 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0644513C458; Wed, 22 Aug 2007 17:58:55 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MHwsw1050430; Wed, 22 Aug 2007 17:58:54 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MHwsg7050429; Wed, 22 Aug 2007 17:58:54 GMT (envelope-from flz) Message-Id: <200708221758.l7MHwsg7050429@repoman.freebsd.org> From: Florent Thoumie Date: Wed, 22 Aug 2007 17:58: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-wm Makefile ports/x11-wm/compiz-fusion-plugins-unsupported 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, 22 Aug 2007 17:58:55 -0000 flz 2007-08-22 17:58:54 UTC FreeBSD ports repository Modified files: x11-wm Makefile Added files: x11-wm/compiz-fusion-plugins-unsupported Makefile distinfo pkg-descr pkg-plist Log: Add compiz-fusion-plugins-unsupported, the unsupported set of plugins for Compiz fusion. PR: ports/115728 Submitted by: Robert Noland Revision Changes Path 1.200 +2 -1 ports/x11-wm/Makefile 1.1 +37 -0 ports/x11-wm/compiz-fusion-plugins-unsupported/Makefile (new) 1.1 +3 -0 ports/x11-wm/compiz-fusion-plugins-unsupported/distinfo (new) 1.1 +3 -0 ports/x11-wm/compiz-fusion-plugins-unsupported/pkg-descr (new) 1.1 +28 -0 ports/x11-wm/compiz-fusion-plugins-unsupported/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 22 17:59:51 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 94E6816A420; Wed, 22 Aug 2007 17:59:51 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6B5CA13C483; Wed, 22 Aug 2007 17:59:51 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MHxpBC050485; Wed, 22 Aug 2007 17:59:51 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MHxp6f050484; Wed, 22 Aug 2007 17:59:51 GMT (envelope-from flz) Message-Id: <200708221759.l7MHxp6f050484@repoman.freebsd.org> From: Florent Thoumie Date: Wed, 22 Aug 2007 17: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: 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, 22 Aug 2007 17:59:51 -0000 flz 2007-08-22 17:59:51 UTC FreeBSD ports repository Modified files: . modules Log: compiz-fusion-plugins-unsupported --> ports/x11-wm/compiz-fusion-plugins-unsupported Revision Changes Path 1.18587 +2 -1 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 22 18:02:01 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C6E5616A41A; Wed, 22 Aug 2007 18:02:01 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9CC0D13C465; Wed, 22 Aug 2007 18:02:01 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MI21xn050847; Wed, 22 Aug 2007 18:02:01 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MI21t4050846; Wed, 22 Aug 2007 18:02:01 GMT (envelope-from gabor) Message-Id: <200708221802.l7MI21t4050846@repoman.freebsd.org> From: Gabor Kovesdan Date: Wed, 22 Aug 2007 18:02: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 nfe.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, 22 Aug 2007 18:02:01 -0000 gabor 2007-08-22 18:02:01 UTC FreeBSD src repository (doc,ports committer) Modified files: share/man/man4 nfe.4 Log: - Fix a copy-paste bug in the list of supported chips PR: docs/115151 Submitted by: O. Hartmann Approved by: re (bmah), keramida (mentor) Revision Changes Path 1.8 +2 -2 src/share/man/man4/nfe.4 From owner-cvs-all@FreeBSD.ORG Wed Aug 22 18:04:09 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 382AC16A419; Wed, 22 Aug 2007 18:04:09 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0E8E113C46B; Wed, 22 Aug 2007 18:04:09 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MI48bY052168; Wed, 22 Aug 2007 18:04:08 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MI485k052167; Wed, 22 Aug 2007 18:04:08 GMT (envelope-from gabor) Message-Id: <200708221804.l7MI485k052167@repoman.freebsd.org> From: Gabor Kovesdan Date: Wed, 22 Aug 2007 18:04:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man5 msdosfs.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: Wed, 22 Aug 2007 18:04:09 -0000 gabor 2007-08-22 18:04:08 UTC FreeBSD src repository (doc,ports committer) Modified files: share/man/man5 msdosfs.5 Log: - Use mount -t msdosfs instead of mount_msdosfs PR: docs/115571 Submitted by: rodrigc Approved by: re (bmah), keramida (mentor) MFC after: 1 week Revision Changes Path 1.6 +2 -2 src/share/man/man5/msdosfs.5 From owner-cvs-all@FreeBSD.ORG Wed Aug 22 18:07:42 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 95B1C16A417; Wed, 22 Aug 2007 18:07:42 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6B30A13C45D; Wed, 22 Aug 2007 18:07:42 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MI7gF6052346; Wed, 22 Aug 2007 18:07:42 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MI7gZH052345; Wed, 22 Aug 2007 18:07:42 GMT (envelope-from gabor) Message-Id: <200708221807.l7MI7gZH052345@repoman.freebsd.org> From: Gabor Kovesdan Date: Wed, 22 Aug 2007 18:07: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/share/man/man7 ports.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: Wed, 22 Aug 2007 18:07:42 -0000 gabor 2007-08-22 18:07:42 UTC FreeBSD src repository (doc,ports committer) Modified files: share/man/man7 ports.7 Log: - Fix origin of the portcheckout port as we have it in the port-mgmt category now PR: docs/115193 Submitted by: Tomas Mozes Approved by: re (bmah), keramida (mentor) MFC after: 0 days Revision Changes Path 1.61 +2 -2 src/share/man/man7/ports.7 From owner-cvs-all@FreeBSD.ORG Wed Aug 22 18:11:26 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EAA9916A417; Wed, 22 Aug 2007 18:11:26 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C131613C46C; Wed, 22 Aug 2007 18:11:26 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MIBQ9x052686; Wed, 22 Aug 2007 18:11:26 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MIBQNp052685; Wed, 22 Aug 2007 18:11:26 GMT (envelope-from gabor) Message-Id: <200708221811.l7MIBQNp052685@repoman.freebsd.org> From: Gabor Kovesdan Date: Wed, 22 Aug 2007 18:11:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/share/man/man7 ports.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: Wed, 22 Aug 2007 18:11:27 -0000 gabor 2007-08-22 18:11:26 UTC FreeBSD src repository (doc,ports committer) Modified files: (Branch: RELENG_6) share/man/man7 ports.7 Log: MFC: r1.61 Approved by: keramida (mentor) Revision Changes Path 1.50.2.6 +3 -5 src/share/man/man7/ports.7 From owner-cvs-all@FreeBSD.ORG Wed Aug 22 18:17:51 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E0FC616A417; Wed, 22 Aug 2007 18:17:51 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B5C2413C428; Wed, 22 Aug 2007 18:17:51 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MIHpoI052949; Wed, 22 Aug 2007 18:17:51 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MIHpWj052948; Wed, 22 Aug 2007 18:17:51 GMT (envelope-from chinsan) Message-Id: <200708221817.l7MIHpWj052948@repoman.freebsd.org> From: Chin-San Huang Date: Wed, 22 Aug 2007 18:17: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: doc/en_US.ISO8859-1/books/handbook/geom chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 18:17:52 -0000 chinsan 2007-08-22 18:17:51 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/geom chapter.sgml Log: - Fix a missing tag. Reported by: paefchen via #bsddocs Revision Changes Path 1.31 +1 -0 doc/en_US.ISO8859-1/books/handbook/geom/chapter.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 22 18:18:25 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E0DC416A41B; Wed, 22 Aug 2007 18:18:25 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B68CC13C45E; Wed, 22 Aug 2007 18:18:25 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MIIP2H053009; Wed, 22 Aug 2007 18:18:25 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MIIPJi053008; Wed, 22 Aug 2007 18:18:25 GMT (envelope-from chinsan) Message-Id: <200708221818.l7MIIPJi053008@repoman.freebsd.org> From: Chin-San Huang Date: Wed, 22 Aug 2007 18:18:25 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/geom chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 18:18:26 -0000 chinsan 2007-08-22 18:18:25 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/geom chapter.sgml Log: - Whitespace cleanup. This can safely be ignonred by translators. Revision Changes Path 1.32 +1 -0 doc/en_US.ISO8859-1/books/handbook/geom/chapter.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 22 18:27:38 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C0B3E16A417; Wed, 22 Aug 2007 18:27:38 +0000 (UTC) (envelope-from anray@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9475813C4A5; Wed, 22 Aug 2007 18:27:38 +0000 (UTC) (envelope-from anray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MIRcRf056125; Wed, 22 Aug 2007 18:27:38 GMT (envelope-from anray@repoman.freebsd.org) Received: (from anray@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MIRcwr056124; Wed, 22 Aug 2007 18:27:38 GMT (envelope-from anray) Message-Id: <200708221827.l7MIRcwr056124@repoman.freebsd.org> From: Andrey Slusar Date: Wed, 22 Aug 2007 18:27: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/haskell-mode.el Makefile distinfo ports/lang/haskell-mode.el/files patch-haskell-indent.el X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 18:27:38 -0000 anray 2007-08-22 18:27:38 UTC FreeBSD ports repository Modified files: lang/haskell-mode.el Makefile distinfo Removed files: lang/haskell-mode.el/files patch-haskell-indent.el Log: - Update to latest version 2.3 PR: ports/115685 Submitted by: KIMURA Yasuhiro Approved by: Hirohisa Yamaguchi (maintainer) Revision Changes Path 1.8 +6 -6 ports/lang/haskell-mode.el/Makefile 1.6 +3 -3 ports/lang/haskell-mode.el/distinfo 1.2 +0 -11 ports/lang/haskell-mode.el/files/patch-haskell-indent.el (dead) From owner-cvs-all@FreeBSD.ORG Wed Aug 22 18:45:01 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 55BFA16A418; Wed, 22 Aug 2007 18:45:01 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3E47D13C46A; Wed, 22 Aug 2007 18:45:01 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MIj1bp057294; Wed, 22 Aug 2007 18:45:01 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MIj19b057279; Wed, 22 Aug 2007 18:45:01 GMT (envelope-from remko) Message-Id: <200708221845.l7MIj19b057279@repoman.freebsd.org> From: Remko Lodder Date: Wed, 22 Aug 2007 18:45: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/tools/tools/tinybsd tinybsd src/tools/tools/tinybsd/conf/bridge TINYBSD src/tools/tools/tinybsd/conf/default TINYBSD src/tools/tools/tinybsd/conf/firewall TINYBSD src/tools/tools/tinybsd/conf/minimal TINYBSD src/tools/tools/tinybsd/conf/vpn TINYBSD ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 18:45:01 -0000 remko 2007-08-22 18:45:00 UTC FreeBSD src repository Modified files: tools/tools/tinybsd tinybsd tools/tools/tinybsd/conf/bridge TINYBSD tools/tools/tinybsd/conf/default TINYBSD tools/tools/tinybsd/conf/firewall TINYBSD tools/tools/tinybsd/conf/minimal TINYBSD tools/tools/tinybsd/conf/vpn TINYBSD tools/tools/tinybsd/conf/wireless TINYBSD tools/tools/tinybsd/conf/wrap TINYBSD Log: Bring in two fixes for TinyBSD: - Add the bind mtree to the TinyBSD build so that files can be installed there (else the build fails) - Change GEOM_GPT to GEOM_PART_GPT since that had been renamed in current. The kernel configuration provided by TinyBSD will not build without these changes. PR: misc/115484 PR: misc/115405 Submitted by: Richard Arends Approved by: re (bmah) Approved by: imp (mentor) Revision Changes Path 1.3 +1 -1 src/tools/tools/tinybsd/conf/bridge/TINYBSD 1.3 +1 -1 src/tools/tools/tinybsd/conf/default/TINYBSD 1.3 +1 -1 src/tools/tools/tinybsd/conf/firewall/TINYBSD 1.3 +1 -1 src/tools/tools/tinybsd/conf/minimal/TINYBSD 1.3 +1 -1 src/tools/tools/tinybsd/conf/vpn/TINYBSD 1.3 +1 -1 src/tools/tools/tinybsd/conf/wireless/TINYBSD 1.3 +1 -1 src/tools/tools/tinybsd/conf/wrap/TINYBSD 1.7 +1 -0 src/tools/tools/tinybsd/tinybsd From owner-cvs-all@FreeBSD.ORG Wed Aug 22 19:43:52 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1D30516A41B; Wed, 22 Aug 2007 19:43:52 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D7C8413C4B3; Wed, 22 Aug 2007 19:43:51 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MJhpLW061648; Wed, 22 Aug 2007 19:43:51 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MJhpHj061647; Wed, 22 Aug 2007 19:43:51 GMT (envelope-from tabthorpe) Message-Id: <200708221943.l7MJhpHj061647@repoman.freebsd.org> From: Thomas Abthorpe Date: Wed, 22 Aug 2007 19: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/comms/smstools Makefile distinfo pkg-plist ports/comms/smstools/files patch-examples_smsd.conf.easy patch-examples_smsd.conf.full 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: Wed, 22 Aug 2007 19:43:52 -0000 tabthorpe 2007-08-22 19:43:51 UTC FreeBSD ports repository Modified files: comms/smstools Makefile distinfo pkg-plist comms/smstools/files patch-examples_smsd.conf.easy patch-examples_smsd.conf.full patch-install.sh Log: - Update to 2.2.18 PR: ports/114769 Submitted by: tabthorpe@ Approved by: maintainer timeout, clsung (mentor) Revision Changes Path 1.5 +1 -2 ports/comms/smstools/Makefile 1.5 +3 -3 ports/comms/smstools/distinfo 1.3 +2 -2 ports/comms/smstools/files/patch-examples_smsd.conf.easy 1.3 +12 -14 ports/comms/smstools/files/patch-examples_smsd.conf.full 1.2 +4 -13 ports/comms/smstools/files/patch-install.sh 1.5 +1 -2 ports/comms/smstools/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 22 20:28:14 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EA9B316A418; Wed, 22 Aug 2007 20:28:14 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C291D13C45B; Wed, 22 Aug 2007 20:28:14 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MKSE6t069958; Wed, 22 Aug 2007 20:28:14 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MKSENA069957; Wed, 22 Aug 2007 20:28:14 GMT (envelope-from jhb) Message-Id: <200708222028.l7MKSENA069957@repoman.freebsd.org> From: John Baldwin Date: Wed, 22 Aug 2007 20:28:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/gnu/usr.bin/gdb/kgdb trgt_amd64.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 20:28:15 -0000 jhb 2007-08-22 20:28:14 UTC FreeBSD src repository Modified files: gnu/usr.bin/gdb/kgdb trgt_amd64.c Log: NMIs now come from 'nmi_calltrap' rather than 'calltrap', so teach 'kgdb' to treat the frame under 'nmi_calltrap' as a trapframe. MFC after: 3 days Approved by: re (bmah) Revision Changes Path 1.8 +1 -0 src/gnu/usr.bin/gdb/kgdb/trgt_amd64.c From owner-cvs-all@FreeBSD.ORG Wed Aug 22 21:02:56 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7DF6016A420; Wed, 22 Aug 2007 21:02:56 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 55AB413C48D; Wed, 22 Aug 2007 21:02:56 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7ML2ump080725; Wed, 22 Aug 2007 21:02:56 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7ML2uu4080724; Wed, 22 Aug 2007 21:02:56 GMT (envelope-from chinsan) Message-Id: <200708222102.l7ML2uu4080724@repoman.freebsd.org> From: Chin-San Huang Date: Wed, 22 Aug 2007 21:02:55 +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/writing-style chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 21:02:56 -0000 chinsan 2007-08-22 21:02:55 UTC FreeBSD doc repository Modified files: zh_TW.Big5/books/fdp-primer/writing-style chapter.sgml Log: - More translation. Obtained from: The FreeBSD Traditional Chinese project Revision Changes Path 1.3 +106 -125 doc/zh_TW.Big5/books/fdp-primer/writing-style/chapter.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 22 21:08:30 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E69E416A418; Wed, 22 Aug 2007 21:08:30 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BE4C213C459; Wed, 22 Aug 2007 21:08:30 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7ML8UHo082229; Wed, 22 Aug 2007 21:08:30 GMT (envelope-from emaste@repoman.freebsd.org) Received: (from emaste@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7ML8UKY082228; Wed, 22 Aug 2007 21:08:30 GMT (envelope-from emaste) Message-Id: <200708222108.l7ML8UKY082228@repoman.freebsd.org> From: Ed Maste Date: Wed, 22 Aug 2007 21:08:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/sys/crypto/sha2 sha2.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 21:08:31 -0000 emaste 2007-08-22 21:08:30 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/crypto/sha2 sha2.c Log: MFC elimination of compiler warnings: sha2.c 1.8: GCC 3.4.6 gets confused on this file and produces bogus warning. Shut it up. sha2.c 1.9: Initialize T1 to silent gcc warning. Revision Changes Path 1.7.4.1 +1 -1 src/sys/crypto/sha2/sha2.c From owner-cvs-all@FreeBSD.ORG Wed Aug 22 21:17:45 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0FB0116A419; Wed, 22 Aug 2007 21:17:45 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DBFF713C457; Wed, 22 Aug 2007 21:17:44 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MLHiYC082842; Wed, 22 Aug 2007 21:17:44 GMT (envelope-from emaste@repoman.freebsd.org) Received: (from emaste@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MLHiPR082841; Wed, 22 Aug 2007 21:17:44 GMT (envelope-from emaste) Message-Id: <200708222117.l7MLHiPR082841@repoman.freebsd.org> From: Ed Maste Date: Wed, 22 Aug 2007 21:17:44 +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/crypto/sha2 sha2.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 21:17:45 -0000 emaste 2007-08-22 21:17:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/crypto/sha2 sha2.c Log: MFC sha2.c 1.9: Initialize T1 to silent gcc warning. Revision Changes Path 1.7.10.2 +1 -1 src/sys/crypto/sha2/sha2.c From owner-cvs-all@FreeBSD.ORG Wed Aug 22 21:29:39 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0C5AF16A46B; Wed, 22 Aug 2007 21:29:39 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D5B6313C469; Wed, 22 Aug 2007 21:29:38 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MLTc3l083966; Wed, 22 Aug 2007 21:29:38 GMT (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MLTcn9083965; Wed, 22 Aug 2007 21:29:38 GMT (envelope-from trhodes) Message-Id: <200708222129.l7MLTcn9083965@repoman.freebsd.org> From: Tom Rhodes Date: Wed, 22 Aug 2007 21:29: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/en_US.ISO8859-1/books/handbook/audit chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 21:29:39 -0000 trhodes 2007-08-22 21:29:38 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/audit chapter.sgml Log: Remove duplicate word. Found by: ds Revision Changes Path 1.29 +1 -1 doc/en_US.ISO8859-1/books/handbook/audit/chapter.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 22 22:47:34 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3968916A41B; Wed, 22 Aug 2007 22:47:34 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1253F13C46B; Wed, 22 Aug 2007 22:47:34 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MMlXAq093396; Wed, 22 Aug 2007 22:47:33 GMT (envelope-from db@repoman.freebsd.org) Received: (from db@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MMlX3B093395; Wed, 22 Aug 2007 22:47:33 GMT (envelope-from db) Message-Id: <200708222247.l7MMlX3B093395@repoman.freebsd.org> From: Diane Bruce Date: Wed, 22 Aug 2007 22:47:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/comms/wsjt Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 22:47:34 -0000 db 2007-08-22 22:47:33 UTC FreeBSD ports repository Modified files: comms/wsjt Makefile Log: - Add additional mirror for port as BERLIOS is somewhat unreliable. [1] - Fix very minor typo in COMMENT Notified by: kris (via pointyhat) [1] Reviewed by: gabor, linimon Revision Changes Path 1.7 +3 -3 ports/comms/wsjt/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 22 23:01:25 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9033216A417; Wed, 22 Aug 2007 23:01:25 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 69EAA13C469; Wed, 22 Aug 2007 23:01:25 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7MN1Pqr094351; Wed, 22 Aug 2007 23:01:25 GMT (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7MN1P1q094349; Wed, 22 Aug 2007 23:01:25 GMT (envelope-from gerald) Message-Id: <200708222301.l7MN1P1q094349@repoman.freebsd.org> From: Gerald Pfeifer Date: Wed, 22 Aug 2007 23:01: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/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: Wed, 22 Aug 2007 23:01:25 -0000 gerald 2007-08-22 23:01:24 UTC FreeBSD ports repository Modified files: lang/gcc41 Makefile distinfo Log: Update to the 20070820 snapshot of GCC 4.1.3. Add the same CONFLICTS with lang/gcc295 that we already have in lang/gcc43. Revision Changes Path 1.329 +4 -1 ports/lang/gcc41/Makefile 1.207 +15 -15 ports/lang/gcc41/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 22 23:03:20 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0907A16A417; Wed, 22 Aug 2007 23:03:20 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.131.111.2]) by mx1.freebsd.org (Postfix) with ESMTP id BB7F013C459; Wed, 22 Aug 2007 23:03:19 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from acrux.dbai.tuwien.ac.at (acrux [128.131.111.60]) by vexpert.dbai.tuwien.ac.at (Postfix) with ESMTP id 650B139112; Thu, 23 Aug 2007 01:03:18 +0200 (CEST) Date: Thu, 23 Aug 2007 01:03:25 +0200 (CEST) From: Gerald Pfeifer To: Cy Schubert In-Reply-To: <200708121526.l7CFQlon028184@cwsys.cwsent.com> Message-ID: References: <200708121526.l7CFQlon028184@cwsys.cwsent.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: cvs-ports@freebsd.org, cvs-all@freebsd.org, ports-committers@freebsd.org Subject: Re: cvs commit: ports/lang/gcc43 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2007 23:03:20 -0000 On Sun, 12 Aug 2007, Cy Schubert wrote: >> Log: >> Add missing note on the CONFLICTS with lang/gcc295. > Similar changes should be made to the gcc41 and gcc42 ports as these > ports had the same problem. Yup. Done now for lang/gcc41 and planned for the next update of lang/gcc42. Gerald From owner-cvs-all@FreeBSD.ORG Thu Aug 23 01:49:40 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B8F0116A419; Thu, 23 Aug 2007 01:49:40 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9311213C465; Thu, 23 Aug 2007 01:49:40 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N1nelh022586; Thu, 23 Aug 2007 01:49:40 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N1nedb022585; Thu, 23 Aug 2007 01:49:40 GMT (envelope-from vanilla) Message-Id: <200708230149.l7N1nedb022585@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Thu, 23 Aug 2007 01: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/textproc/google-ctemplate Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 01:49:40 -0000 vanilla 2007-08-23 01:49:40 UTC FreeBSD ports repository Modified files: textproc/google-ctemplate Makefile distinfo Log: Upgrade to 0.8. Approved by: clsung@ Revision Changes Path 1.9 +1 -1 ports/textproc/google-ctemplate/Makefile 1.8 +3 -3 ports/textproc/google-ctemplate/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 23 02:07:59 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4C7FF16A418; Thu, 23 Aug 2007 02:07:59 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1571D13C468; Thu, 23 Aug 2007 02:07:59 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N27w1A024838; Thu, 23 Aug 2007 02:07:58 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N27wTg024837; Thu, 23 Aug 2007 02:07:58 GMT (envelope-from delphij) Message-Id: <200708230207.l7N27wTg024837@repoman.freebsd.org> From: Xin LI Date: Thu, 23 Aug 2007 02:07: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/net/openldap23-server Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 02:07:59 -0000 delphij 2007-08-23 02:07:58 UTC FreeBSD ports repository Modified files: net/openldap23-server Makefile Log: This release of OpenLDAP does not support Berkeley DB 4.6 yet. Submitted by: mm PR: ports/115712 Revision Changes Path 1.158 +1 -0 ports/net/openldap23-server/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 23 02:09:15 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5969E16A46D; Thu, 23 Aug 2007 02:09:15 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 341EC13C45B; Thu, 23 Aug 2007 02:09:15 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N29FvJ024889; Thu, 23 Aug 2007 02:09:15 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N29FsZ024888; Thu, 23 Aug 2007 02:09:15 GMT (envelope-from delphij) Message-Id: <200708230209.l7N29FsZ024888@repoman.freebsd.org> From: Xin LI Date: Thu, 23 Aug 2007 02:09: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/openldap24-server Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 02:09:15 -0000 delphij 2007-08-23 02:09:15 UTC FreeBSD ports repository Modified files: net/openldap24-server Makefile Log: Mark as incompatible with Berkeley DB 4.6. Next OpenLDAP alpha release will hopefully support it, though. Revision Changes Path 1.143 +1 -0 ports/net/openldap24-server/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 23 02:39:24 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5402316A419; Thu, 23 Aug 2007 02:39:24 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2E43113C458; Thu, 23 Aug 2007 02:39:24 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N2dOo0026588; Thu, 23 Aug 2007 02:39:24 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N2dN0I026587; Thu, 23 Aug 2007 02:39:23 GMT (envelope-from ijliao) Message-Id: <200708230239.l7N2dN0I026587@repoman.freebsd.org> From: Ying-Chieh Liao Date: Thu, 23 Aug 2007 02:39: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/ulxmlrpcpp 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, 23 Aug 2007 02:39:24 -0000 ijliao 2007-08-23 02:39:22 UTC FreeBSD ports repository Modified files: net/ulxmlrpcpp Makefile distinfo pkg-plist Log: upgrade to 1.7.0 Revision Changes Path 1.18 +1 -1 ports/net/ulxmlrpcpp/Makefile 1.14 +3 -3 ports/net/ulxmlrpcpp/distinfo 1.8 +2 -2 ports/net/ulxmlrpcpp/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 23 03:30:32 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F61116A417; Thu, 23 Aug 2007 03:30:32 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7A0AE13C458; Thu, 23 Aug 2007 03:30:32 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N3UWZA030661; Thu, 23 Aug 2007 03:30:32 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N3UW1p030660; Thu, 23 Aug 2007 03:30:32 GMT (envelope-from tabthorpe) Message-Id: <200708230330.l7N3UW1p030660@repoman.freebsd.org> From: Thomas Abthorpe Date: Thu, 23 Aug 2007 03:30: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/pear-File_Gettext 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, 23 Aug 2007 03:30:32 -0000 tabthorpe 2007-08-23 03:30:31 UTC FreeBSD ports repository Modified files: sysutils/pear-File_Gettext Makefile distinfo Log: - Update to 0.4.0 - pass maintainership to submitter PR: ports/115103 Submitted by: tabthorpe@ Approved by: clsung (mentor) Revision Changes Path 1.6 +2 -9 ports/sysutils/pear-File_Gettext/Makefile 1.5 +3 -3 ports/sysutils/pear-File_Gettext/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 23 03:37:27 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0158C16A419; Thu, 23 Aug 2007 03:37:27 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id CFA2313C46E; Thu, 23 Aug 2007 03:37:26 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N3bQew031098; Thu, 23 Aug 2007 03:37:26 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N3bQYw031097; Thu, 23 Aug 2007 03:37:26 GMT (envelope-from tabthorpe) Message-Id: <200708230337.l7N3bQYw031097@repoman.freebsd.org> From: Thomas Abthorpe Date: Thu, 23 Aug 2007 03:37: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/sysutils/eventwatcher 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, 23 Aug 2007 03:37:27 -0000 tabthorpe 2007-08-23 03:37:26 UTC FreeBSD ports repository Modified files: sysutils/eventwatcher Makefile distinfo pkg-plist Log: - Update to 0.4.3 - pass maintainership to submitter PR: ports/115104 Submitted by: tabthorpe@ Approved by: clsung (mentor) Revision Changes Path 1.11 +6 -6 ports/sysutils/eventwatcher/Makefile 1.4 +3 -3 ports/sysutils/eventwatcher/distinfo 1.3 +4 -0 ports/sysutils/eventwatcher/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 23 03:44:13 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 47C6016A417; Thu, 23 Aug 2007 03:44:13 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 38D8213C459; Thu, 23 Aug 2007 03:44:13 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N3iD8K031542; Thu, 23 Aug 2007 03:44:13 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N3iDU9031541; Thu, 23 Aug 2007 03:44:13 GMT (envelope-from tabthorpe) Message-Id: <200708230344.l7N3iDU9031541@repoman.freebsd.org> From: Thomas Abthorpe Date: Thu, 23 Aug 2007 03: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/french/verbiste Makefile distinfo pkg-plist ports/french/verbiste/files lib-patch-Makefile.in lib-patch-src_verbiste_FrenchVerbDictionary.cpp 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: Thu, 23 Aug 2007 03:44:13 -0000 tabthorpe 2007-08-23 03:44:12 UTC FreeBSD ports repository Modified files: french/verbiste Makefile distinfo pkg-plist french/verbiste/files patch-configure Removed files: french/verbiste/files lib-patch-Makefile.in lib-patch-src_verbiste_FrenchVerbDictionary.cpp Log: - Update to 0.1.20 - Take maintainership Removed file(s): - files/lib-patch-src_verbiste_FrenchVerbDictionary.cpp - files/lib-patch-Makefile.in PR: ports/115145 Submitted by: tabthorpe@ Approved by: clsung (mentor) Revision Changes Path 1.7 +3 -7 ports/french/verbiste/Makefile 1.4 +3 -3 ports/french/verbiste/distinfo 1.2 +0 -15 ports/french/verbiste/files/lib-patch-Makefile.in (dead) 1.2 +0 -20 ports/french/verbiste/files/lib-patch-src_verbiste_FrenchVerbDictionary.cpp (dead) 1.2 +6 -6 ports/french/verbiste/files/patch-configure 1.3 +12 -12 ports/french/verbiste/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 23 03:46:12 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 61FE016A46C; Thu, 23 Aug 2007 03:46:12 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3B9B813C4A6; Thu, 23 Aug 2007 03:46:12 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N3kCbT031823; Thu, 23 Aug 2007 03:46:12 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N3kCqF031822; Thu, 23 Aug 2007 03:46:12 GMT (envelope-from tabthorpe) Message-Id: <200708230346.l7N3kCqF031822@repoman.freebsd.org> From: Thomas Abthorpe Date: Thu, 23 Aug 2007 03:46: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/french/verbiste/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, 23 Aug 2007 03:46:12 -0000 tabthorpe 2007-08-23 03:46:11 UTC FreeBSD ports repository Added files: french/verbiste/files patch-Makefile.in Log: force commit for missed file. Revision Changes Path 1.1 +15 -0 ports/french/verbiste/files/patch-Makefile.in (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 23 03:53:10 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7539A16A418; Thu, 23 Aug 2007 03:53:10 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4F78C13C465; Thu, 23 Aug 2007 03:53:10 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N3rAIW032276; Thu, 23 Aug 2007 03:53:10 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N3rAna032275; Thu, 23 Aug 2007 03:53:10 GMT (envelope-from tabthorpe) Message-Id: <200708230353.l7N3rAna032275@repoman.freebsd.org> From: Thomas Abthorpe Date: Thu, 23 Aug 2007 03:53: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/audio/gtick 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, 23 Aug 2007 03:53:10 -0000 tabthorpe 2007-08-23 03:53:09 UTC FreeBSD ports repository Modified files: audio/gtick Makefile distinfo Log: - Update to 0.4.1 PR: ports/115735 Approved by: clsung (mentor) Revision Changes Path 1.18 +1 -1 ports/audio/gtick/Makefile 1.13 +3 -3 ports/audio/gtick/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 23 03:57:30 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 13F1216A41A; Thu, 23 Aug 2007 03:57:30 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E26DA13C45D; Thu, 23 Aug 2007 03:57:29 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N3vTgL032456; Thu, 23 Aug 2007 03:57:29 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N3vT5q032455; Thu, 23 Aug 2007 03:57:29 GMT (envelope-from clsung) Message-Id: <200708230357.l7N3vT5q032455@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 23 Aug 2007 03:57:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/p5-XML-Flow 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, 23 Aug 2007 03:57:30 -0000 clsung 2007-08-23 03:57:29 UTC FreeBSD ports repository Modified files: textproc/p5-XML-Flow Makefile distinfo Log: - Update to 0.83 Revision Changes Path 1.3 +1 -2 ports/textproc/p5-XML-Flow/Makefile 1.3 +3 -3 ports/textproc/p5-XML-Flow/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 23 04:00:05 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 91EBF16A41A; Thu, 23 Aug 2007 04:00:05 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7A1E613C457; Thu, 23 Aug 2007 04:00:05 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N405CD033733; Thu, 23 Aug 2007 04:00:05 GMT (envelope-from tabthorpe@repoman.freebsd.org) Received: (from tabthorpe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N405t9033732; Thu, 23 Aug 2007 04:00:05 GMT (envelope-from tabthorpe) Message-Id: <200708230400.l7N405t9033732@repoman.freebsd.org> From: Thomas Abthorpe Date: Thu, 23 Aug 2007 04:00: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/p5-Compress-Raw-Bzip2 Makefile ports/archivers/p5-Compress-Raw-Zlib Makefile ports/archivers/p5-IO-Compress-Base Makefile ports/archivers/p5-IO-Compress-Bzip2 Makefile ports/cad/gplcver Makefile ports/converters/p5-Convert-TNEF Makefile ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 04:00:05 -0000 tabthorpe 2007-08-23 04:00:04 UTC FreeBSD ports repository Modified files: archivers/p5-Compress-Raw-Bzip2 Makefile archivers/p5-Compress-Raw-Zlib Makefile archivers/p5-IO-Compress-Base Makefile archivers/p5-IO-Compress-Bzip2 Makefile cad/gplcver Makefile converters/p5-Convert-TNEF Makefile databases/mrtg-mysql-load Makefile databases/pear-DB Makefile deskutils/kompose Makefile devel/global Makefile devel/libcwd Makefile devel/pear-Console_Getargs Makefile devel/pear-Date Makefile devel/pear-Date_Holidays Makefile devel/pear-XML_Parser Makefile devel/pear-XML_Serializer Makefile devel/pear-XML_Util Makefile devel/pharmacy Makefile devel/strace Makefile ftp/jftp Makefile german/citrix_ica Makefile japanese/citrix_ica Makefile mail/spamass-milter Makefile mail/squirrelmail-change_ldappass-plugin Makefile mail/squirrelmail-compatibility-plugin Makefile mail/squirrelmail-compatibility-plugin1 Makefile mail/squirrelmail-newuser_wiz-plugin Makefile mail/squirrelmail-pupdate-plugin Makefile mail/squirrelmail-secure_login-plugin Makefile mail/squirrelmail-timeout_user-plugin Makefile misc/bibletime Makefile misc/colortail Makefile misc/gnomesword Makefile misc/iso-codes Makefile misc/kcd Makefile misc/kcd-devel Makefile misc/since Makefile misc/sword Makefile net/citrix_ica Makefile net-mgmt/arpwatch Makefile net-mgmt/nbtscan Makefile net-mgmt/p5-Net-CIDR Makefile security/p5-Digest-MD5 Makefile security/p5-MD5 Makefile security/pear-Crypt_Blowfish Makefile security/pear-Crypt_CBC Makefile security/pear-Crypt_CHAP Makefile security/pear-Crypt_HMAC Makefile security/pear-Crypt_RC4 Makefile security/pear-Crypt_RSA Makefile shells/rssh Makefile sysutils/pear-Log Makefile sysutils/tree Makefile sysutils/virtualmin Makefile textproc/pear-Numbers_Roman Makefile www/pear-HTTP Makefile www/pear-HTTP_Header Makefile x11-wm/sapphire Makefile Log: - change maintainer address on ports I maintain Approved by: clsung (mentor) Revision Changes Path 1.4 +1 -1 ports/archivers/p5-Compress-Raw-Bzip2/Makefile 1.6 +1 -1 ports/archivers/p5-Compress-Raw-Zlib/Makefile 1.6 +1 -1 ports/archivers/p5-IO-Compress-Base/Makefile 1.4 +1 -1 ports/archivers/p5-IO-Compress-Bzip2/Makefile 1.8 +1 -1 ports/cad/gplcver/Makefile 1.12 +1 -1 ports/converters/p5-Convert-TNEF/Makefile 1.7 +1 -1 ports/databases/mrtg-mysql-load/Makefile 1.31 +1 -1 ports/databases/pear-DB/Makefile 1.16 +1 -1 ports/deskutils/kompose/Makefile 1.29 +1 -1 ports/devel/global/Makefile 1.19 +1 -1 ports/devel/libcwd/Makefile 1.9 +1 -1 ports/devel/pear-Console_Getargs/Makefile 1.18 +1 -1 ports/devel/pear-Date/Makefile 1.7 +1 -1 ports/devel/pear-Date_Holidays/Makefile 1.16 +1 -1 ports/devel/pear-XML_Parser/Makefile 1.18 +1 -1 ports/devel/pear-XML_Serializer/Makefile 1.16 +1 -1 ports/devel/pear-XML_Util/Makefile 1.20 +1 -1 ports/devel/pharmacy/Makefile 1.18 +1 -1 ports/devel/strace/Makefile 1.13 +1 -1 ports/ftp/jftp/Makefile 1.19 +1 -1 ports/german/citrix_ica/Makefile 1.6 +1 -1 ports/japanese/citrix_ica/Makefile 1.27 +1 -1 ports/mail/spamass-milter/Makefile 1.7 +1 -1 ports/mail/squirrelmail-change_ldappass-plugin/Makefile 1.8 +1 -1 ports/mail/squirrelmail-compatibility-plugin/Makefile 1.9 +1 -1 ports/mail/squirrelmail-compatibility-plugin1/Makefile 1.5 +1 -1 ports/mail/squirrelmail-newuser_wiz-plugin/Makefile 1.3 +1 -1 ports/mail/squirrelmail-pupdate-plugin/Makefile 1.4 +1 -1 ports/mail/squirrelmail-secure_login-plugin/Makefile 1.4 +1 -1 ports/mail/squirrelmail-timeout_user-plugin/Makefile 1.25 +1 -1 ports/misc/bibletime/Makefile 1.26 +1 -1 ports/misc/colortail/Makefile 1.31 +1 -1 ports/misc/gnomesword/Makefile 1.22 +1 -1 ports/misc/iso-codes/Makefile 1.35 +1 -1 ports/misc/kcd-devel/Makefile 1.33 +1 -1 ports/misc/kcd/Makefile 1.9 +1 -1 ports/misc/since/Makefile 1.29 +1 -1 ports/misc/sword/Makefile 1.51 +1 -1 ports/net-mgmt/arpwatch/Makefile 1.10 +1 -1 ports/net-mgmt/nbtscan/Makefile 1.11 +1 -1 ports/net-mgmt/p5-Net-CIDR/Makefile 1.49 +1 -1 ports/net/citrix_ica/Makefile 1.33 +1 -1 ports/security/p5-Digest-MD5/Makefile 1.26 +1 -1 ports/security/p5-MD5/Makefile 1.7 +1 -1 ports/security/pear-Crypt_Blowfish/Makefile 1.12 +1 -1 ports/security/pear-Crypt_CBC/Makefile 1.6 +1 -1 ports/security/pear-Crypt_CHAP/Makefile 1.5 +1 -1 ports/security/pear-Crypt_HMAC/Makefile 1.5 +1 -1 ports/security/pear-Crypt_RC4/Makefile 1.5 +1 -1 ports/security/pear-Crypt_RSA/Makefile 1.12 +1 -1 ports/shells/rssh/Makefile 1.39 +1 -1 ports/sysutils/pear-Log/Makefile 1.15 +1 -1 ports/sysutils/tree/Makefile 1.16 +1 -1 ports/sysutils/virtualmin/Makefile 1.5 +1 -1 ports/textproc/pear-Numbers_Roman/Makefile 1.14 +1 -1 ports/www/pear-HTTP/Makefile 1.10 +1 -1 ports/www/pear-HTTP_Header/Makefile 1.18 +1 -1 ports/x11-wm/sapphire/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 23 04:33:01 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A180616A417; Thu, 23 Aug 2007 04:33:01 +0000 (UTC) (envelope-from daichi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7BC8613C48A; Thu, 23 Aug 2007 04:33:01 +0000 (UTC) (envelope-from daichi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N4X1sY036807; Thu, 23 Aug 2007 04:33:01 GMT (envelope-from daichi@repoman.freebsd.org) Received: (from daichi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N4X111036796; Thu, 23 Aug 2007 04:33:01 GMT (envelope-from daichi) Message-Id: <200708230433.l7N4X111036796@repoman.freebsd.org> From: Daichi GOTO Date: Thu, 23 Aug 2007 04:33:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/neko Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 04:33:01 -0000 daichi 2007-08-23 04:33:00 UTC FreeBSD ports repository Modified files: lang/neko Makefile Log: lang/neko: fixed compile error on amd64 6 - fixed compile error (6-RELEASE amd64, 7-CURRENT amd64) PR: ports/115723 Submitted by: Masanori OZAWA (maintainer) Pointed out by: via krisbot Revision Changes Path 1.2 +5 -1 ports/lang/neko/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 23 04:38:52 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D1B9616A417; Thu, 23 Aug 2007 04:38:52 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id ABDEC13C461; Thu, 23 Aug 2007 04:38:52 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N4cq1A037019; Thu, 23 Aug 2007 04:38:52 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N4cq6X037018; Thu, 23 Aug 2007 04:38:52 GMT (envelope-from novel) Message-Id: <200708230438.l7N4cq6X037018@repoman.freebsd.org> From: Roman Bogorodskiy Date: Thu, 23 Aug 2007 04:38: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/lang/arena 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, 23 Aug 2007 04:38:52 -0000 novel 2007-08-23 04:38:52 UTC FreeBSD ports repository Modified files: lang/arena Makefile distinfo Log: Update 0.9.12. Revision Changes Path 1.11 +1 -1 ports/lang/arena/Makefile 1.11 +3 -3 ports/lang/arena/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 23 05:09:32 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3574B16A41B; Thu, 23 Aug 2007 05:09:32 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0EF6313C46A; Thu, 23 Aug 2007 05:09:32 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N59V2F048342; Thu, 23 Aug 2007 05:09:31 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N59VCi048341; Thu, 23 Aug 2007 05:09:31 GMT (envelope-from yar) Message-Id: <200708230509.l7N59VCi048341@repoman.freebsd.org> From: Yar Tikhiy Date: Thu, 23 Aug 2007 05:09: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/libc/gen fts-compat.c fts-compat.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, 23 Aug 2007 05:09:32 -0000 yar 2007-08-23 05:09:31 UTC FreeBSD src repository Modified files: lib/libc/gen fts-compat.c fts-compat.h Log: Forced commit to note repo-copy: These files have been repo-copied from src/include/fts.h and src/lib/libc/gen/fts.c to serve as a base for 4.4BSD compatible versions of fts(3) functions to be preserved through libc symbol versioning while the default versions undergo ABI-breaking extension to support big file trees. Approved by: re (kensmith) Revision Changes Path 1.29 +0 -0 src/lib/libc/gen/fts-compat.c 1.12 +0 -0 src/lib/libc/gen/fts-compat.h From owner-cvs-all@FreeBSD.ORG Thu Aug 23 05:12:27 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1F5EE16A419; Thu, 23 Aug 2007 05:12:27 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EC9DC13C467; Thu, 23 Aug 2007 05:12:26 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N5CQwG048682; Thu, 23 Aug 2007 05:12:26 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N5CQW4048681; Thu, 23 Aug 2007 05:12:26 GMT (envelope-from chinsan) Message-Id: <200708230512.l7N5CQW4048681@repoman.freebsd.org> From: Chin-San Huang Date: Thu, 23 Aug 2007 05:12: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/books/handbook/audit 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: Thu, 23 Aug 2007 05:12:27 -0000 chinsan 2007-08-23 05:12:26 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/audit chapter.sgml Log: - Fix a missing tag. Reported by: paefchen via #bsddocs Revision Changes Path 1.30 +1 -0 doc/en_US.ISO8859-1/books/handbook/audit/chapter.sgml From owner-cvs-all@FreeBSD.ORG Thu Aug 23 05:23:54 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 704D816A41A; Thu, 23 Aug 2007 05:23:54 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 492A313C46E; Thu, 23 Aug 2007 05:23:54 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N5NsZM049277; Thu, 23 Aug 2007 05:23:54 GMT (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N5NsYJ049276; Thu, 23 Aug 2007 05:23:54 GMT (envelope-from fjoe) Message-Id: <200708230523.l7N5NsYJ049276@repoman.freebsd.org> From: Max Khon Date: Thu, 23 Aug 2007 05:23: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/lang/cint/files patch-configure patch-src-gcc3strm.cxx X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 05:23:54 -0000 fjoe 2007-08-23 05:23:54 UTC FreeBSD ports repository Modified files: lang/cint/files patch-configure Added files: lang/cint/files patch-src-gcc3strm.cxx Log: - Fix build on x86_64 [1] - Fix build with gcc 4.2.1. Pointed out by: kris via pointyhat [1] Revision Changes Path 1.2 +10 -8 ports/lang/cint/files/patch-configure 1.1 +29 -0 ports/lang/cint/files/patch-src-gcc3strm.cxx (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 23 07:23:37 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 816FD16A417; Thu, 23 Aug 2007 07:23:37 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5883213C45E; Thu, 23 Aug 2007 07:23:37 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N7Nbws058714; Thu, 23 Aug 2007 07:23:37 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N7NbQW058713; Thu, 23 Aug 2007 07:23:37 GMT (envelope-from ijliao) Message-Id: <200708230723.l7N7NbQW058713@repoman.freebsd.org> From: Ying-Chieh Liao Date: Thu, 23 Aug 2007 07:23: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/p5-Sort-Key-Top 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, 23 Aug 2007 07:23:37 -0000 ijliao 2007-08-23 07:23:37 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-Sort-Key-Top Makefile distinfo pkg-descr pkg-plist Log: add p5-Sort-Key-Top 0.01 Select and sort top n elements Revision Changes Path 1.2850 +1 -0 ports/devel/Makefile 1.1 +23 -0 ports/devel/p5-Sort-Key-Top/Makefile (new) 1.1 +3 -0 ports/devel/p5-Sort-Key-Top/distinfo (new) 1.1 +4 -0 ports/devel/p5-Sort-Key-Top/pkg-descr (new) 1.1 +9 -0 ports/devel/p5-Sort-Key-Top/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 23 07:23:54 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F9CD16A41A; Thu, 23 Aug 2007 07:23:54 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0743A13C469; Thu, 23 Aug 2007 07:23:54 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N7NrFh058750; Thu, 23 Aug 2007 07:23:53 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N7NrFw058749; Thu, 23 Aug 2007 07:23:53 GMT (envelope-from ijliao) Message-Id: <200708230723.l7N7NrFw058749@repoman.freebsd.org> From: Ying-Chieh Liao Date: Thu, 23 Aug 2007 07:23: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: Thu, 23 Aug 2007 07:23:54 -0000 ijliao 2007-08-23 07:23:53 UTC FreeBSD ports repository Modified files: . modules Log: p5-Sort-Key-Top --> ports/devel/p5-Sort-Key-Top Revision Changes Path 1.18588 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Aug 23 07:28:37 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AF72316A41B; Thu, 23 Aug 2007 07:28:37 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9DF7713C46B; Thu, 23 Aug 2007 07:28:37 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N7SbNc059003; Thu, 23 Aug 2007 07:28:37 GMT (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N7SbOU059002; Thu, 23 Aug 2007 07:28:37 GMT (envelope-from fjoe) Message-Id: <200708230728.l7N7SbOU059002@repoman.freebsd.org> From: Max Khon Date: Thu, 23 Aug 2007 07:28: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/sysutils Makefile ports/sysutils/fusefs-pod Makefile distinfo pkg-descr ports/sysutils/fusefs-pod/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: Thu, 23 Aug 2007 07:28:37 -0000 fjoe 2007-08-23 07:28:36 UTC FreeBSD ports repository Modified files: sysutils Makefile Added files: sysutils/fusefs-pod Makefile distinfo pkg-descr sysutils/fusefs-pod/files patch-configure Log: New port: fusefs-pod FUSEPod is a userspace filesystem which mounts your iPod into a directory for easy browsing of your songs on your iPod. It features a configurable directory layout, read/write support, read support for playlists and finds where your iPod is. Revision Changes Path 1.936 +1 -0 ports/sysutils/Makefile 1.1 +30 -0 ports/sysutils/fusefs-pod/Makefile (new) 1.1 +3 -0 ports/sysutils/fusefs-pod/distinfo (new) 1.1 +11 -0 ports/sysutils/fusefs-pod/files/patch-configure (new) 1.1 +6 -0 ports/sysutils/fusefs-pod/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 23 07:32:40 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1BA7216A419; Thu, 23 Aug 2007 07:32:40 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E7A7F13C465; Thu, 23 Aug 2007 07:32:39 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N7WdrR059382; Thu, 23 Aug 2007 07:32:39 GMT (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N7Wdmr059381; Thu, 23 Aug 2007 07:32:39 GMT (envelope-from fjoe) Message-Id: <200708230732.l7N7Wdmr059381@repoman.freebsd.org> From: Max Khon Date: Thu, 23 Aug 2007 07: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: 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, 23 Aug 2007 07:32:40 -0000 fjoe 2007-08-23 07:32:39 UTC FreeBSD ports repository Modified files: . modules Log: fusefs-pod -> ports/sysutils/fusefs-pod Revision Changes Path 1.18589 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Aug 23 07:35:54 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7EA7816A418; Thu, 23 Aug 2007 07:35:54 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 55B5713C459; Thu, 23 Aug 2007 07:35:54 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N7Zs2N059575; Thu, 23 Aug 2007 07:35:54 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N7ZsUe059574; Thu, 23 Aug 2007 07:35:54 GMT (envelope-from itetcu) Message-Id: <200708230735.l7N7ZsUe059574@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Thu, 23 Aug 2007 07:35: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/misc/alevt Makefile ports/misc/alevt/files patch-xio.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 07:35:54 -0000 itetcu 2007-08-23 07:35:53 UTC FreeBSD ports repository Modified files: misc/alevt Makefile Added files: misc/alevt/files patch-xio.c Log: - Unbreak on HEAD (gcc 4.2) PR: ports/115744 Submitted by: Simun Mikecin Revision Changes Path 1.22 +0 -4 ports/misc/alevt/Makefile 1.1 +30 -0 ports/misc/alevt/files/patch-xio.c (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 23 07:38:21 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B6E016A417; Thu, 23 Aug 2007 07:38:21 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5303F13C467; Thu, 23 Aug 2007 07:38:21 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N7cLfA059684; Thu, 23 Aug 2007 07:38:21 GMT (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N7cLFO059683; Thu, 23 Aug 2007 07:38:21 GMT (envelope-from fjoe) Message-Id: <200708230738.l7N7cLFO059683@repoman.freebsd.org> From: Max Khon Date: Thu, 23 Aug 2007 07:38: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/sysutils/fusefs-pod Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 07:38:21 -0000 fjoe 2007-08-23 07:38:21 UTC FreeBSD ports repository Modified files: sysutils/fusefs-pod Makefile Log: Remove USE_LDCONFIG (not required). Revision Changes Path 1.2 +0 -1 ports/sysutils/fusefs-pod/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 23 08:19:10 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6C19416A41A; Thu, 23 Aug 2007 08:19:10 +0000 (UTC) (envelope-from syrinx@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5A4A413C465; Thu, 23 Aug 2007 08:19:10 +0000 (UTC) (envelope-from syrinx@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N8JASJ063217; Thu, 23 Aug 2007 08:19:10 GMT (envelope-from syrinx@repoman.freebsd.org) Received: (from syrinx@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N8JAQZ063216; Thu, 23 Aug 2007 08:19:10 GMT (envelope-from syrinx) Message-Id: <200708230819.l7N8JAQZ063216@repoman.freebsd.org> From: Shteryana Shopova Date: Thu, 23 Aug 2007 08:19: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/usr.sbin/bsnmpd/modules/snmp_bridge BEGEMOT-BRIDGE-MIB.txt bridge_port.c bridge_snmp.h bridge_sys.c bridge_tree.def snmp_bridge.3 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 08:19:10 -0000 syrinx 2007-08-23 08:19:09 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/bsnmpd/modules/snmp_bridge BEGEMOT-BRIDGE-MIB.txt bridge_port.c bridge_snmp.h bridge_sys.c bridge_tree.def snmp_bridge.3 Log: MFC: src/usr.sbin/bsnmpd/modules/snmp_bridge/BEGEMOT-BRIDGE-MIB.txt, Revision 1.3 src/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_port.c, Revision 1.6 src/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_snmp.h, Revision 1.5 src/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_sys.c, Revision 1.7 src/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_tree.def, Revision 1.3 src/usr.sbin/bsnmpd/modules/snmp_bridge/snmp_bridge.3, Revision 1.4 Keep the snmp_bridge(3) module up to date with if_bridge(4) and add an object to control the value of the new 'PRIVATE' bridge members' flag. While here, remove stale '__unused' compiler directives. Reviewed by: bz Approved by: bz (mentor) Revision Changes Path 1.2.2.2 +18 -2 src/usr.sbin/bsnmpd/modules/snmp_bridge/BEGEMOT-BRIDGE-MIB.txt 1.5.2.2 +23 -0 src/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_port.c 1.4.2.2 +5 -0 src/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_snmp.h 1.6.2.2 +57 -8 src/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_sys.c 1.2.2.2 +1 -0 src/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_tree.def 1.2.2.2 +5 -2 src/usr.sbin/bsnmpd/modules/snmp_bridge/snmp_bridge.3 From owner-cvs-all@FreeBSD.ORG Thu Aug 23 08:48:35 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 92DCB16A419; Thu, 23 Aug 2007 08:48:35 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 688D513C478; Thu, 23 Aug 2007 08:48:35 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N8mZxg073492; Thu, 23 Aug 2007 08:48:35 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N8mZcH073491; Thu, 23 Aug 2007 08:48:35 GMT (envelope-from blackend) Message-Id: <200708230848.l7N8mZcH073491@repoman.freebsd.org> From: Marc Fonvieille Date: Thu, 23 Aug 2007 08:48: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/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: Thu, 23 Aug 2007 08:48:35 -0000 blackend 2007-08-23 08:48:34 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/disks chapter.sgml Log: - Remove obsolete -r flag for commands using bsdlabel(8) - Add some missing tags Revision Changes Path 1.277 +9 -9 doc/en_US.ISO8859-1/books/handbook/disks/chapter.sgml From owner-cvs-all@FreeBSD.ORG Thu Aug 23 08:50:23 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A148F16A418; Thu, 23 Aug 2007 08:50:23 +0000 (UTC) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7516313C459; Thu, 23 Aug 2007 08:50:23 +0000 (UTC) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N8oNh3073694; Thu, 23 Aug 2007 08:50:23 GMT (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N8oNmF073693; Thu, 23 Aug 2007 08:50:23 GMT (envelope-from ache) Message-Id: <200708230850.l7N8oNmF073693@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 23 Aug 2007 08: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/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: Thu, 23 Aug 2007 08:50:23 -0000 ache 2007-08-23 08:50:23 UTC FreeBSD ports repository Modified files: mail/dkim-milter Makefile distinfo Log: Upgrade to 2.1.2 PR: 115720 Submitted by: Hirohisa Yamaguchi (maintainer) Revision Changes Path 1.31 +1 -1 ports/mail/dkim-milter/Makefile 1.22 +3 -3 ports/mail/dkim-milter/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 23 09:30:58 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EE35F16A417; Thu, 23 Aug 2007 09:30:58 +0000 (UTC) (envelope-from dhartmei@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DD5FC13C459; Thu, 23 Aug 2007 09:30:58 +0000 (UTC) (envelope-from dhartmei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N9Uww1078622; Thu, 23 Aug 2007 09:30:58 GMT (envelope-from dhartmei@repoman.freebsd.org) Received: (from dhartmei@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N9Uwqk078621; Thu, 23 Aug 2007 09:30:58 GMT (envelope-from dhartmei) Message-Id: <200708230930.l7N9Uwqk078621@repoman.freebsd.org> From: Daniel Hartmeier Date: Thu, 23 Aug 2007 09: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/contrib/pf/net pf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 09:30:59 -0000 dhartmei 2007-08-23 09:30:58 UTC FreeBSD src repository Modified files: sys/contrib/pf/net pf.c Log: When checking the sequence number of a TCP header embedded in an ICMP error message, do not access th_flags. The field is beyond the first eight bytes of the header that are required to be present and were pulled up in the mbuf. A random value of th_flags can have TH_SYN set, which made the sequence number comparison not apply the window scaling factor, which led to legitimate ICMP(v6) packets getting blocked with "BAD ICMP" debug log messages (if enabled with pfctl -xm), thus breaking PMTU discovery. Triggering the bug requires TCP window scaling to be enabled (sysctl net.inet.tcp.rfc1323, enabled by default) on both end- points of the TCP connection. Large scaling factors increase the probability of triggering the bug. PR: kern/115413: [ipv6] ipv6 pmtu not working Tested by: Jacek Zapala Reviewed by: mlaier Approved by: re (kensmith) Revision Changes Path 1.46 +1 -2 src/sys/contrib/pf/net/pf.c From owner-cvs-all@FreeBSD.ORG Thu Aug 23 09:37:02 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0994816A417; Thu, 23 Aug 2007 09:37:02 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D330313C469; Thu, 23 Aug 2007 09:37:01 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N9b1bF079010; Thu, 23 Aug 2007 09:37:01 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N9b1cp079009; Thu, 23 Aug 2007 09:37:01 GMT (envelope-from blackend) Message-Id: <200708230937.l7N9b1cp079009@repoman.freebsd.org> From: Marc Fonvieille Date: Thu, 23 Aug 2007 09:37:01 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/fr_FR.ISO8859-1/books/handbook/disks chapter.sgml doc/fr_FR.ISO8859-1/books/handbook/config 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: Thu, 23 Aug 2007 09:37:02 -0000 blackend 2007-08-23 09:37:01 UTC FreeBSD doc repository Modified files: fr_FR.ISO8859-1/books/handbook/disks chapter.sgml fr_FR.ISO8859-1/books/handbook/config chapter.sgml Log: MFen: config/chapter.sgml: 1.191 --> 1.227 disks/chapter.sgml: 1.242 --> 1.277 Revision Changes Path 1.13 +496 -202 doc/fr_FR.ISO8859-1/books/handbook/config/chapter.sgml 1.25 +746 -441 doc/fr_FR.ISO8859-1/books/handbook/disks/chapter.sgml From owner-cvs-all@FreeBSD.ORG Thu Aug 23 09:38:15 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4086E16A417; Thu, 23 Aug 2007 09:38:15 +0000 (UTC) (envelope-from dhartmei@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 174A613C46C; Thu, 23 Aug 2007 09:38:15 +0000 (UTC) (envelope-from dhartmei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N9cEkN079097; Thu, 23 Aug 2007 09:38:14 GMT (envelope-from dhartmei@repoman.freebsd.org) Received: (from dhartmei@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N9cEu5079096; Thu, 23 Aug 2007 09:38:14 GMT (envelope-from dhartmei) Message-Id: <200708230938.l7N9cEu5079096@repoman.freebsd.org> From: Daniel Hartmeier Date: Thu, 23 Aug 2007 09:38: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/contrib/pf/net pf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 09:38:15 -0000 dhartmei 2007-08-23 09:38:14 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/contrib/pf/net pf.c Log: MFC: r1.46 Revision Changes Path 1.34.2.6 +2 -3 src/sys/contrib/pf/net/pf.c From owner-cvs-all@FreeBSD.ORG Thu Aug 23 09:38:26 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7BD6B16A41B; Thu, 23 Aug 2007 09:38:26 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5276F13C457; Thu, 23 Aug 2007 09:38:26 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N9cQEj079136; Thu, 23 Aug 2007 09:38:26 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N9cQIw079135; Thu, 23 Aug 2007 09:38:26 GMT (envelope-from delphij) Message-Id: <200708230938.l7N9cQIw079135@repoman.freebsd.org> From: Xin LI Date: Thu, 23 Aug 2007 09:38: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/usr.bin/rpcgen rpc_main.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 09:38:26 -0000 delphij 2007-08-23 09:38:26 UTC FreeBSD src repository Modified files: usr.bin/rpcgen rpc_main.c Log: sysent.h is installed as sys/sysent.h, so reflect it. Approved by: re (kensmith) Spotted by: Changming Sun Sponsored by: SINA Corporation Revision Changes Path 1.33 +1 -1 src/usr.bin/rpcgen/rpc_main.c From owner-cvs-all@FreeBSD.ORG Thu Aug 23 09:39:41 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DC9CA16A417; Thu, 23 Aug 2007 09:39:41 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B3AA313C467; Thu, 23 Aug 2007 09:39:41 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7N9dfos079175; Thu, 23 Aug 2007 09:39:41 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7N9dfrY079174; Thu, 23 Aug 2007 09:39:41 GMT (envelope-from delphij) Message-Id: <200708230939.l7N9dfrY079174@repoman.freebsd.org> From: Xin LI Date: Thu, 23 Aug 2007 09:39: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/rpcgen rpc_svcout.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 09:39:42 -0000 delphij 2007-08-23 09:39:40 UTC FreeBSD src repository Modified files: usr.bin/rpcgen rpc_svcout.c Log: Use POSIX mutex instead of Solaris ones. This makes generation of threaded RPC servers to work out of the box. Spotted by: Changming Sun Sponsored by: SINA Corporation Approved by: re (kensmith) Revision Changes Path 1.25 +8 -8 src/usr.bin/rpcgen/rpc_svcout.c From owner-cvs-all@FreeBSD.ORG Thu Aug 23 10:05:21 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 266E616A419; Thu, 23 Aug 2007 10:05:21 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EFB6613C457; Thu, 23 Aug 2007 10:05:20 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NA5KVK081992; Thu, 23 Aug 2007 10:05:20 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NA5KnS081991; Thu, 23 Aug 2007 10:05:20 GMT (envelope-from rafan) Message-Id: <200708231005.l7NA5KnS081991@repoman.freebsd.org> From: Rong-En Fan Date: Thu, 23 Aug 2007 10:05:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/databases/postgis Makefile distinfo ports/databases/postgis/files patch-GNUmakefile 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: Thu, 23 Aug 2007 10:05:21 -0000 rafan 2007-08-23 10:05:20 UTC FreeBSD ports repository Modified files: databases/postgis Makefile distinfo databases/postgis/files patch-GNUmakefile patch-configure Log: - Update to 1.3.1 PR: ports/115605 Submitted by: Anderson S. Ferreira (maintainer) Revision Changes Path 1.41 +1 -1 ports/databases/postgis/Makefile 1.22 +3 -3 ports/databases/postgis/distinfo 1.3 +13 -20 ports/databases/postgis/files/patch-GNUmakefile 1.2 +10 -10 ports/databases/postgis/files/patch-configure From owner-cvs-all@FreeBSD.ORG Thu Aug 23 10:09:59 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CC83516A417; Thu, 23 Aug 2007 10:09:59 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A288813C458; Thu, 23 Aug 2007 10:09:59 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NA9xTD082173; Thu, 23 Aug 2007 10:09:59 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NA9xEs082172; Thu, 23 Aug 2007 10:09:59 GMT (envelope-from rafan) Message-Id: <200708231009.l7NA9xEs082172@repoman.freebsd.org> From: Rong-En Fan Date: Thu, 23 Aug 2007 10: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/x11-toolkits/p5-Prima 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, 23 Aug 2007 10:09:59 -0000 rafan 2007-08-23 10:09:59 UTC FreeBSD ports repository Modified files: x11-toolkits/p5-Prima Makefile distinfo pkg-plist Log: - Update to 1.22 - Switch to USE_XORG PR: ports/115500 Submitted by: Dmitry Karasik (maintainer) Revision Changes Path 1.14 +10 -6 ports/x11-toolkits/p5-Prima/Makefile 1.8 +3 -3 ports/x11-toolkits/p5-Prima/distinfo 1.8 +2 -0 ports/x11-toolkits/p5-Prima/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 23 10:10:55 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5B2C916A417; Thu, 23 Aug 2007 10:10:55 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 31B7F13C461; Thu, 23 Aug 2007 10:10:55 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NAAtTa082314; Thu, 23 Aug 2007 10:10:55 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NAAtBE082311; Thu, 23 Aug 2007 10:10:55 GMT (envelope-from rafan) Message-Id: <200708231010.l7NAAtBE082311@repoman.freebsd.org> From: Rong-En Fan Date: Thu, 23 Aug 2007 10:10:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/astro/gpsbabel 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, 23 Aug 2007 10:10:55 -0000 rafan 2007-08-23 10:10:54 UTC FreeBSD ports repository Modified files: astro/gpsbabel Makefile distinfo Log: - Update to 1.3.4 - Use macro from bsd.sites.mk PR: ports/115670 Submitted by: ijliao Approved by: Laurent Courty (maintainer) Revision Changes Path 1.4 +2 -3 ports/astro/gpsbabel/Makefile 1.3 +3 -3 ports/astro/gpsbabel/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 23 10:12:00 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ECD9D16A418; Thu, 23 Aug 2007 10:12:00 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C2E5C13C428; Thu, 23 Aug 2007 10:12:00 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NAC0b1082559; Thu, 23 Aug 2007 10:12:00 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NAC0Op082558; Thu, 23 Aug 2007 10:12:00 GMT (envelope-from rafan) Message-Id: <200708231012.l7NAC0Op082558@repoman.freebsd.org> From: Rong-En Fan Date: Thu, 23 Aug 2007 10:12: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/net-im/emesene Makefile distinfo pkg-plist ports/net-im/emesene/files emesene.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, 23 Aug 2007 10:12:01 -0000 rafan 2007-08-23 10:12:00 UTC FreeBSD ports repository Modified files: net-im/emesene Makefile distinfo pkg-plist Removed files: net-im/emesene/files emesene.desktop.in Log: - Update to 0.20070820 - Use DESKTOP_ENTRIES PR: ports/115671 Submitted by: Yinghong Liu (maintainer) Revision Changes Path 1.4 +9 -5 ports/net-im/emesene/Makefile 1.3 +3 -3 ports/net-im/emesene/distinfo 1.2 +0 -8 ports/net-im/emesene/files/emesene.desktop.in (dead) 1.4 +118 -48 ports/net-im/emesene/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 23 10:43:50 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E60A016A41A; Thu, 23 Aug 2007 10:43:50 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BC34513C49D; Thu, 23 Aug 2007 10:43:50 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NAho22084289; Thu, 23 Aug 2007 10:43:50 GMT (envelope-from osa@repoman.freebsd.org) Received: (from osa@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NAho3G084288; Thu, 23 Aug 2007 10:43:50 GMT (envelope-from osa) Message-Id: <200708231043.l7NAho3G084288@repoman.freebsd.org> From: "Sergey A. Osokin" Date: Thu, 23 Aug 2007 10:43:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/nginx-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, 23 Aug 2007 10:43:51 -0000 osa 2007-08-23 10:43:50 UTC FreeBSD ports repository Modified files: www/nginx-devel Makefile Log: OPTIONify. (*) Add more switches for built-in modules. Submitted by: Ilya Pizik aka polzun at scar dot jinr dot ru (*) Merge to www/nginx after: 2 weeks Revision Changes Path 1.129 +75 -27 ports/www/nginx-devel/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 23 10:48:56 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2130F16A420; Thu, 23 Aug 2007 10:48:56 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0FC7913C491; Thu, 23 Aug 2007 10:48:56 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NAmtHW087788; Thu, 23 Aug 2007 10:48:55 GMT (envelope-from osa@repoman.freebsd.org) Received: (from osa@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NAmtuD087787; Thu, 23 Aug 2007 10:48:55 GMT (envelope-from osa) Message-Id: <200708231048.l7NAmtuD087787@repoman.freebsd.org> From: "Sergey A. Osokin" Date: Thu, 23 Aug 2007 10:48:55 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/nginx-devel Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 10:48:56 -0000 osa 2007-08-23 10:48:55 UTC FreeBSD ports repository Modified files: www/nginx-devel Makefile distinfo Log: Update to 0.6.8. *) Change: now nginx tries to set the "worker_priority", "worker_rlimit_nofile", "worker_rlimit_core", and "worker_rlimit_sigpending" without super-user privileges. *) Change: now nginx escapes space and "%" in request to a mail proxy authentication server. *) Change: now nginx escapes "%" in $memcached_key variable. *) Bugfix: nginx used path relative to configuration prefix for non-absolute configuration file path specified in the "-c" key; bug appeared in 0.6.6. *) Bugfix: nginx did not work on FreeBSD/sparc64. Revision Changes Path 1.130 +1 -1 ports/www/nginx-devel/Makefile 1.119 +3 -3 ports/www/nginx-devel/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 23 10:53:04 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F2DDB16A418; Thu, 23 Aug 2007 10:53:03 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C98DC13C491; Thu, 23 Aug 2007 10:53:03 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NAr3f1088161; Thu, 23 Aug 2007 10:53:03 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NAr3Pc088160; Thu, 23 Aug 2007 10:53:03 GMT (envelope-from des) Message-Id: <200708231053.l7NAr3Pc088160@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Thu, 23 Aug 2007 10:53: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/sys/dev/coretemp coretemp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 10:53:04 -0000 des 2007-08-23 10:53:03 UTC FreeBSD src repository Modified files: sys/dev/coretemp coretemp.c Log: Style nits + more reliable Tj(max) detection + improved reporting of critical temperature + sched_unbind() after rdmsr + initialize sc_dev. Submitted by: Rui Paulo , cnst Approved by: re (kensmith) Revision Changes Path 1.2 +42 -34 src/sys/dev/coretemp/coretemp.c From owner-cvs-all@FreeBSD.ORG Thu Aug 23 10:54:13 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 68C9716A420; Thu, 23 Aug 2007 10:54:13 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3CAFC13C442; Thu, 23 Aug 2007 10:54:13 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NAsDnK088217; Thu, 23 Aug 2007 10:54:13 GMT (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NAsDQQ088216; Thu, 23 Aug 2007 10:54:13 GMT (envelope-from gerald) Message-Id: <200708231054.l7NAsDQQ088216@repoman.freebsd.org> From: Gerald Pfeifer Date: Thu, 23 Aug 2007 10:54: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/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: Thu, 23 Aug 2007 10:54:13 -0000 gerald 2007-08-23 10:54:13 UTC FreeBSD ports repository Modified files: lang/gcc42 Makefile distinfo Log: Update to the 20070822 snapshot of GCC 4.2.2. Add the same CONFLICTS with lang/gcc295 that we already have in lang/gcc43. Revision Changes Path 1.320 +4 -1 ports/lang/gcc42/Makefile 1.204 +18 -18 ports/lang/gcc42/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 23 10:56:33 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DEB4A16A417; Thu, 23 Aug 2007 10:56:33 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.freebsd.org (Postfix) with ESMTP id 9735B13C458; Thu, 23 Aug 2007 10:56:33 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id 1F2F220B0; Thu, 23 Aug 2007 12:56:29 +0200 (CEST) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: 0.0/3.0 X-Spam-Checker-Version: SpamAssassin 3.2.1 (2007-05-02) on tim.des.no Received: from ds4.des.no (des.no [80.203.243.180]) by smtp.des.no (Postfix) with ESMTP id 05475208A; Thu, 23 Aug 2007 12:56:29 +0200 (CEST) Received: by ds4.des.no (Postfix, from userid 1001) id D94BD84479; Thu, 23 Aug 2007 12:56:28 +0200 (CEST) From: =?utf-8?Q?Dag-Erling_Sm=C3=B8rgrav?= To: src-committers@FreeBSD.org References: <200708231053.l7NAr3Pc088160@repoman.freebsd.org> Date: Thu, 23 Aug 2007 12:56:28 +0200 In-Reply-To: <200708231053.l7NAr3Pc088160@repoman.freebsd.org> (Dag-Erling Smorgrav's message of "Thu\, 23 Aug 2007 10\:53\:03 +0000 \(UTC\)") Message-ID: <86zm0izfhf.fsf@ds4.des.no> User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/22.1 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Cc: cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/coretemp coretemp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 10:56:34 -0000 Dag-Erling Smorgrav writes: > Log: > Style nits + more reliable Tj(max) detection + improved reporting of > critical temperature + sched_unbind() after rdmsr + initialize sc_dev. I should note that the driver currently only checks for (and reports) a critical temperature when you read the sysctl; if you want to use devd to react to a critical temperature, you need to set up a cron job to poll dev.cpu.N.temperature. Hopefully, a future version of the driver will install an interrupt handler and activate the temperature threshold interrupts. DES --=20 Dag-Erling Sm=C3=B8rgrav - des@des.no From owner-cvs-all@FreeBSD.ORG Thu Aug 23 10:57:37 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CCB6816A419; Thu, 23 Aug 2007 10:57:37 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A376E13C480; Thu, 23 Aug 2007 10:57:37 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NAvbc3088382; Thu, 23 Aug 2007 10:57:37 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NAvbIo088381; Thu, 23 Aug 2007 10:57:37 GMT (envelope-from rafan) Message-Id: <200708231057.l7NAvbIo088381@repoman.freebsd.org> From: Rong-En Fan Date: Thu, 23 Aug 2007 10:57: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/emulators/yape Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 10:57:37 -0000 rafan 2007-08-23 10:57:37 UTC FreeBSD ports repository Modified files: emulators/yape Makefile Log: - Fix build with gcc 4 - Pet portlint(1) PR: ports/115749 Submitted by: Janos Mohacsi (maintainer) Revision Changes Path 1.13 +2 -1 ports/emulators/yape/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 23 10:59:00 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F2B3816A468; Thu, 23 Aug 2007 10:58:59 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DCF3013C45D; Thu, 23 Aug 2007 10:58:59 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NAwxot088495; Thu, 23 Aug 2007 10:58:59 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NAwxqF088494; Thu, 23 Aug 2007 10:58:59 GMT (envelope-from miwi) Message-Id: <200708231058.l7NAwxqF088494@repoman.freebsd.org> From: Martin Wilke Date: Thu, 23 Aug 2007 10:58:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/astro/boinc-setiathome-enhanced Makefile distinfo pkg-descr ports/astro/boinc-setiathome-enhanced/files patch-db-sqlblob.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, 23 Aug 2007 10:59:00 -0000 miwi 2007-08-23 10:58:59 UTC FreeBSD ports repository Modified files: astro/boinc-setiathome-enhanced Makefile distinfo pkg-descr Removed files: astro/boinc-setiathome-enhanced/files patch-db-sqlblob.h Log: - Update to 5.27 PR: 115449 Submitted by: Rene Ladan (maintainer) Revision Changes Path 1.9 +3 -4 ports/astro/boinc-setiathome-enhanced/Makefile 1.4 +3 -3 ports/astro/boinc-setiathome-enhanced/distinfo 1.2 +0 -12 ports/astro/boinc-setiathome-enhanced/files/patch-db-sqlblob.h (dead) 1.4 +2 -2 ports/astro/boinc-setiathome-enhanced/pkg-descr From owner-cvs-all@FreeBSD.ORG Thu Aug 23 11:06:23 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CAC1B16A46B; Thu, 23 Aug 2007 11:06:23 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B8EDE13C458; Thu, 23 Aug 2007 11:06:23 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NB6N8R090222; Thu, 23 Aug 2007 11:06:23 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NB6NUq090221; Thu, 23 Aug 2007 11:06:23 GMT (envelope-from miwi) Message-Id: <200708231106.l7NB6NUq090221@repoman.freebsd.org> From: Martin Wilke Date: Thu, 23 Aug 2007 11: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: ports/audio Makefile ports/audio/padevchooser 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, 23 Aug 2007 11:06:23 -0000 miwi 2007-08-23 11:06:23 UTC FreeBSD ports repository Modified files: audio Makefile Added files: audio/padevchooser Makefile distinfo pkg-descr pkg-plist Log: PulseAudio Device Chooser (padevchooser) is a simple GTK tool which registers an icon in the tray area and allows quick access to some features of the PulseAudio sound server. Specifically it can do for you: - Notify about new sink/sources becoming available on the LAN - Quickly change the default PulseAudio sink/source/server assigned to the current X11 display, selecting devices available on the LAN - Start the auxiliary tools PulseAudio Volume Control, PulseAudio Volume Meter, PulseAudio Manager, PulseAudio Preferences WWW: http://0pointer.de/lennart/projects/padevchooser/ PR: ports/115315 Submitted by: Romain Tartière Revision Changes Path 1.883 +1 -0 ports/audio/Makefile 1.1 +27 -0 ports/audio/padevchooser/Makefile (new) 1.1 +3 -0 ports/audio/padevchooser/distinfo (new) 1.1 +11 -0 ports/audio/padevchooser/pkg-descr (new) 1.1 +5 -0 ports/audio/padevchooser/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 23 11:06:57 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 624A316A419; Thu, 23 Aug 2007 11:06:57 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 38F9F13C4A5; Thu, 23 Aug 2007 11:06:57 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NB6vnQ090285; Thu, 23 Aug 2007 11:06:57 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NB6vMC090284; Thu, 23 Aug 2007 11:06:57 GMT (envelope-from miwi) Message-Id: <200708231106.l7NB6vMC090284@repoman.freebsd.org> From: Martin Wilke Date: Thu, 23 Aug 2007 11: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: 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, 23 Aug 2007 11:06:57 -0000 miwi 2007-08-23 11:06:57 UTC FreeBSD ports repository Modified files: . modules Log: padevchooser --> ports/audio/padevchooser Revision Changes Path 1.18590 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Aug 23 11:10:22 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 206AF16A417; Thu, 23 Aug 2007 11:10:22 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0E7B913C457; Thu, 23 Aug 2007 11:10:22 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NBALZa090499; Thu, 23 Aug 2007 11:10:21 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NBALF8090498; Thu, 23 Aug 2007 11:10:21 GMT (envelope-from miwi) Message-Id: <200708231110.l7NBALF8090498@repoman.freebsd.org> From: Martin Wilke Date: Thu, 23 Aug 2007 11:10:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio Makefile ports/audio/pavucontrol 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, 23 Aug 2007 11:10:22 -0000 miwi 2007-08-23 11:10:21 UTC FreeBSD ports repository Modified files: audio Makefile Added files: audio/pavucontrol Makefile distinfo pkg-descr pkg-plist Log: PulseAudio Volume Control (pavucontrol) is a simple GTK based volume control tool ("mixer") for the PulseAudio sound server. In contrast to classic mixer tools this one allows you to control both the volume of hardware devices and of each playback stream seperately. WWW: http://0pointer.de/lennart/projects/pavucontrol/ PR: ports/115320 Submitted by: Romain Tartière Revision Changes Path 1.884 +1 -0 ports/audio/Makefile 1.1 +24 -0 ports/audio/pavucontrol/Makefile (new) 1.1 +3 -0 ports/audio/pavucontrol/distinfo (new) 1.1 +6 -0 ports/audio/pavucontrol/pkg-descr (new) 1.1 +5 -0 ports/audio/pavucontrol/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 23 11:10:43 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A51F816A420; Thu, 23 Aug 2007 11:10:43 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7C23A13C4A8; Thu, 23 Aug 2007 11:10:43 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NBAhpo090533; Thu, 23 Aug 2007 11:10:43 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NBAh2v090532; Thu, 23 Aug 2007 11:10:43 GMT (envelope-from miwi) Message-Id: <200708231110.l7NBAh2v090532@repoman.freebsd.org> From: Martin Wilke Date: Thu, 23 Aug 2007 11:10: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: Thu, 23 Aug 2007 11:10:43 -0000 miwi 2007-08-23 11:10:43 UTC FreeBSD ports repository Modified files: . modules Log: pavucontrol --> ports/audio/pavucontrol Revision Changes Path 1.18591 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Aug 23 11:12:38 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DD72816A420; Thu, 23 Aug 2007 11:12:38 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id CB93C13C457; Thu, 23 Aug 2007 11:12:38 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NBCcBO090840; Thu, 23 Aug 2007 11:12:38 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NBCcx7090839; Thu, 23 Aug 2007 11:12:38 GMT (envelope-from miwi) Message-Id: <200708231112.l7NBCcx7090839@repoman.freebsd.org> From: Martin Wilke Date: Thu, 23 Aug 2007 11:12: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/audio Makefile ports/audio/paprefs 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, 23 Aug 2007 11:12:39 -0000 miwi 2007-08-23 11:12:38 UTC FreeBSD ports repository Modified files: audio Makefile Added files: audio/paprefs Makefile distinfo pkg-descr pkg-plist Log: PulseAudio Preferences (paprefs) is a simple GTK based configuration dialog for the PulseAudio sound server. Please note that this program can only configure local servers, and requires that a special module module-gconf is loaded in the sound server. (Since PulseAudio 0.9.5 this modules is loaded by default.) WWW: http://0pointer.de/lennart/projects/paprefs/ PR: ports/115318 Submitted by: Romain Tartière Revision Changes Path 1.885 +1 -0 ports/audio/Makefile 1.1 +24 -0 ports/audio/paprefs/Makefile (new) 1.1 +3 -0 ports/audio/paprefs/distinfo (new) 1.1 +8 -0 ports/audio/paprefs/pkg-descr (new) 1.1 +5 -0 ports/audio/paprefs/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 23 11:12:59 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CF34216A507; Thu, 23 Aug 2007 11:12:59 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A61E013C45A; Thu, 23 Aug 2007 11:12:59 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NBCxnl090879; Thu, 23 Aug 2007 11:12:59 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NBCx35090878; Thu, 23 Aug 2007 11:12:59 GMT (envelope-from miwi) Message-Id: <200708231112.l7NBCx35090878@repoman.freebsd.org> From: Martin Wilke Date: Thu, 23 Aug 2007 11:12: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: Thu, 23 Aug 2007 11:12:59 -0000 miwi 2007-08-23 11:12:59 UTC FreeBSD ports repository Modified files: . modules Log: paprefs --> ports/audio/paprefs Revision Changes Path 1.18592 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Aug 23 11:14:32 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 79BD616A419; Thu, 23 Aug 2007 11:14:32 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6851E13C45B; Thu, 23 Aug 2007 11:14:32 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NBEWpW091011; Thu, 23 Aug 2007 11:14:32 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NBEWKk091010; Thu, 23 Aug 2007 11:14:32 GMT (envelope-from miwi) Message-Id: <200708231114.l7NBEWKk091010@repoman.freebsd.org> From: Martin Wilke Date: Thu, 23 Aug 2007 11:14:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio Makefile ports/audio/pavumeter 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, 23 Aug 2007 11:14:32 -0000 miwi 2007-08-23 11:14:32 UTC FreeBSD ports repository Modified files: audio Makefile Added files: audio/pavumeter Makefile distinfo pkg-descr pkg-plist Log: PulseAudio Volume Meter (pavumeter) is a simple GTK volume meter for the PulseAudio sound server. WWW: http://0pointer.de/lennart/projects/pavumeter/ PR: ports/115317 Submitted by: Romain Tartière Revision Changes Path 1.886 +1 -0 ports/audio/Makefile 1.1 +24 -0 ports/audio/pavumeter/Makefile (new) 1.1 +3 -0 ports/audio/pavumeter/distinfo (new) 1.1 +4 -0 ports/audio/pavumeter/pkg-descr (new) 1.1 +3 -0 ports/audio/pavumeter/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 23 11:15:01 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CBA4F16A419; Thu, 23 Aug 2007 11:15:01 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A25DE13C45E; Thu, 23 Aug 2007 11:15:01 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NBF1SR091061; Thu, 23 Aug 2007 11:15:01 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NBF1Ui091060; Thu, 23 Aug 2007 11:15:01 GMT (envelope-from miwi) Message-Id: <200708231115.l7NBF1Ui091060@repoman.freebsd.org> From: Martin Wilke Date: Thu, 23 Aug 2007 11:15: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: Thu, 23 Aug 2007 11:15:01 -0000 miwi 2007-08-23 11:15:01 UTC FreeBSD ports repository Modified files: . modules Log: pavumeter --> ports/audio/pavumeter Revision Changes Path 1.18593 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Aug 23 11:24:58 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3BA5316A417; Thu, 23 Aug 2007 11:24:58 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 11D3113C46A; Thu, 23 Aug 2007 11:24:58 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NBOvCK091601; Thu, 23 Aug 2007 11:24:57 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NBOvQt091600; Thu, 23 Aug 2007 11:24:57 GMT (envelope-from maho) Message-Id: <200708231124.l7NBOvQt091600@repoman.freebsd.org> From: Maho Nakata Date: Thu, 23 Aug 2007 11: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/editors/openoffice.org-2-RC Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 11:24:58 -0000 maho 2007-08-23 11:24:57 UTC FreeBSD ports repository Modified files: editors/openoffice.org-2-RC Makefile distinfo Log: Update to OOG680_m2. Revision Changes Path 1.300 +2 -2 ports/editors/openoffice.org-2-RC/Makefile 1.112 +3 -3 ports/editors/openoffice.org-2-RC/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 23 11:53:42 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 091F316A418; Thu, 23 Aug 2007 11:53:42 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D3E3C13C47E; Thu, 23 Aug 2007 11:53:41 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NBrftv094858; Thu, 23 Aug 2007 11:53:41 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NBrfu2094857; Thu, 23 Aug 2007 11:53:41 GMT (envelope-from sat) Message-Id: <200708231153.l7NBrfu2094857@repoman.freebsd.org> From: Andrew Pantyukhin Date: Thu, 23 Aug 2007 11: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/devel/p5-Log-Report Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 11:53:42 -0000 sat 2007-08-23 11:53:41 UTC FreeBSD ports repository Modified files: devel/p5-Log-Report Makefile Log: - Use a more appropriate master site subdir Submitted by: Jin-Shan Tseng (maintainer) Revision Changes Path 1.2 +1 -1 ports/devel/p5-Log-Report/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 23 12:18:21 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F65016A419; Thu, 23 Aug 2007 12:18:21 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id CC38B13C465; Thu, 23 Aug 2007 12:18:20 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NCIKid097341; Thu, 23 Aug 2007 12:18:20 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NCIKOL097340; Thu, 23 Aug 2007 12:18:20 GMT (envelope-from miwi) Message-Id: <200708231218.l7NCIKOL097340@repoman.freebsd.org> From: Martin Wilke Date: Thu, 23 Aug 2007 12:18:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net Makefile ports/net/pyrad 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, 23 Aug 2007 12:18:21 -0000 miwi 2007-08-23 12:18:20 UTC FreeBSD ports repository Modified files: net Makefile Added files: net/pyrad Makefile distinfo pkg-descr pkg-plist Log: pyrad is a Python implementation of a RADIUS client as described in RFC2865. It takes care of all the details like building RADIUS packets, sending them and decoding responses. WWW: http://www.wiggy.net/code/pyrad/ PR: ports/115458 Submitted by: Blaz Zupan Revision Changes Path 1.1909 +1 -0 ports/net/Makefile 1.1 +28 -0 ports/net/pyrad/Makefile (new) 1.1 +3 -0 ports/net/pyrad/distinfo (new) 1.1 +5 -0 ports/net/pyrad/pkg-descr (new) 1.1 +34 -0 ports/net/pyrad/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 23 12:18:41 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A48EF16A419; Thu, 23 Aug 2007 12:18:41 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7B4DE13C46B; Thu, 23 Aug 2007 12:18:41 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NCIfiZ097379; Thu, 23 Aug 2007 12:18:41 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NCIfVD097378; Thu, 23 Aug 2007 12:18:41 GMT (envelope-from miwi) Message-Id: <200708231218.l7NCIfVD097378@repoman.freebsd.org> From: Martin Wilke Date: Thu, 23 Aug 2007 12: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: 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, 23 Aug 2007 12:18:41 -0000 miwi 2007-08-23 12:18:41 UTC FreeBSD ports repository Modified files: . modules Log: pyrad --> ports/net/pyrad Revision Changes Path 1.18594 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Aug 23 12:31:04 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4A95F16A417; Thu, 23 Aug 2007 12:31:04 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2045913C45A; Thu, 23 Aug 2007 12:31:04 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NCV4LP098185; Thu, 23 Aug 2007 12:31:04 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NCV327098182; Thu, 23 Aug 2007 12:31:03 GMT (envelope-from arved) Message-Id: <200708231231.l7NCV327098182@repoman.freebsd.org> From: Tilman Linneweh Date: Thu, 23 Aug 2007 12:31: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/newsbeuter Makefile ports/www/newsbeuter/files patch-src-view.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 12:31:04 -0000 arved 2007-08-23 12:31:03 UTC FreeBSD ports repository Modified files: www/newsbeuter Makefile Added files: www/newsbeuter/files patch-src-view.cpp Log: Add a link to the main article to saved articles Obtained from: newsbeuter svn Reported by: clemens fischer Revision Changes Path 1.11 +2 -1 ports/www/newsbeuter/Makefile 1.1 +15 -0 ports/www/newsbeuter/files/patch-src-view.cpp (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 23 12:46:36 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4A95F16A420; Thu, 23 Aug 2007 12:46:36 +0000 (UTC) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 20CE313C465; Thu, 23 Aug 2007 12:46:36 +0000 (UTC) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NCkaxC099160; Thu, 23 Aug 2007 12:46:36 GMT (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NCkZ7o099159; Thu, 23 Aug 2007 12:46:35 GMT (envelope-from kan) Message-Id: <200708231246.l7NCkZ7o099159@repoman.freebsd.org> From: Alexander Kabaev Date: Thu, 23 Aug 2007 12:46: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/editors/openoffice.org-1.1/files patch-objformat X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 12:46:36 -0000 kan 2007-08-23 12:46:35 UTC FreeBSD ports repository Modified files: editors/openoffice.org-1.1/files patch-objformat Log: Regenerate patch-objformat with 5 lines of context. If target file was already patched by optpatch-freetype and patch program needs to locate shifted position for the hunk, default three lines of context are not enough to properly locate the right place. This unbreaks builds with optional WITH_TTF_BYTECODE_ENABLED feature enabled. Revision Changes Path 1.2 +3 -2 ports/editors/openoffice.org-1.1/files/patch-objformat From owner-cvs-all@FreeBSD.ORG Thu Aug 23 13:05:13 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C075E16A418; Thu, 23 Aug 2007 13:05:13 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 96DF913C45D; Thu, 23 Aug 2007 13:05:13 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7ND5BNW010102; Thu, 23 Aug 2007 13:05:11 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7ND5BTv010097; Thu, 23 Aug 2007 13:05:11 GMT (envelope-from krion) Message-Id: <200708231305.l7ND5BTv010097@repoman.freebsd.org> From: Kirill Ponomarew Date: Thu, 23 Aug 2007 13:05: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/pkg_install/add extract.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 13:05:13 -0000 krion 2007-08-23 13:05:11 UTC FreeBSD src repository Modified files: usr.sbin/pkg_install/add extract.c Log: Fix pkg_add behaviour to preserve pathnames. PR: bin/93915 bin/109134 Submitted by: Jason Heiss , Constantin Stefanov Approved by: re@ (kensmith) MFC after: 7 days Revision Changes Path 1.45 +1 -1 src/usr.sbin/pkg_install/add/extract.c From owner-cvs-all@FreeBSD.ORG Thu Aug 23 13:13:59 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 44E3A16A419; Thu, 23 Aug 2007 13:13:59 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1B3CE13C45D; Thu, 23 Aug 2007 13:13:59 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NDDwqj010651; Thu, 23 Aug 2007 13:13:59 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NDDw4F010650; Thu, 23 Aug 2007 13:13:58 GMT (envelope-from krion) Message-Id: <200708231313.l7NDDw4F010650@repoman.freebsd.org> From: Kirill Ponomarew Date: Thu, 23 Aug 2007 13:13:58 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11/xterm Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 13:13:59 -0000 krion 2007-08-23 13:13:58 UTC FreeBSD ports repository Modified files: x11/xterm Makefile Log: Utilize USE_XORG PR: ports/115537 Submitted by: mm Revision Changes Path 1.49 +1 -3 ports/x11/xterm/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 23 13:34:46 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0064B16A469; Thu, 23 Aug 2007 13:34:45 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B643113C483; Thu, 23 Aug 2007 13:34:45 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NDYjEx012161; Thu, 23 Aug 2007 13:34:45 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NDYjGq012160; Thu, 23 Aug 2007 13:34:45 GMT (envelope-from des) Message-Id: <200708231334.l7NDYjGq012160@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Thu, 23 Aug 2007 13:34: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/varnish 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, 23 Aug 2007 13:34:46 -0000 des 2007-08-23 13:34:45 UTC FreeBSD ports repository Modified files: www/varnish Makefile pkg-plist Log: Bump port revision to mark the addition of four missing plist entries. Revision Changes Path 1.17 +1 -0 ports/www/varnish/Makefile 1.10 +0 -0 ports/www/varnish/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 23 14:17:32 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 340C016A417 for ; Thu, 23 Aug 2007 14:17:32 +0000 (UTC) (envelope-from minimarmot@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.251]) by mx1.freebsd.org (Postfix) with ESMTP id E38BC13C45E for ; Thu, 23 Aug 2007 14:17:31 +0000 (UTC) (envelope-from minimarmot@gmail.com) Received: by an-out-0708.google.com with SMTP id c14so66920anc for ; Thu, 23 Aug 2007 07:17:31 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=qM3Ylvmxc9S2Jfv5kQgQ7fdFIFUJ8V+AKwWiLCpbu/r3gkqovntE3UByrLr6b/NnutyKzUO6OlroKwo+8ddyJhZtywcphINU4YZamtFS/3F1GINEnrMQs/0j291RjMwqqh0T5FEyRVMV/KCcu3xVfBROk92Tf7dWMUBym3BcdLA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=QnrBEj0/qZVTAkYvH5a+u4r2AXnRaY2gbu3kWVYr/VEEcjqIfjQHfw9P5L7pFPoSvGK818Sj6vRPpYBuGFzUsgBLxqY+lRUVAWJ1RF9fJoLcsaB3kZUBoWRi+k9vjz/xC52bbb+3GEoCLxD1txeA/Qmr1LZVhCUmeKa+hUtMAwc= Received: by 10.142.139.6 with SMTP id m6mr183651wfd.1187878650528; Thu, 23 Aug 2007 07:17:30 -0700 (PDT) Received: by 10.143.1.8 with HTTP; Thu, 23 Aug 2007 07:17:30 -0700 (PDT) Message-ID: <47d0403c0708230717n6f81899bodd793547df516103@mail.gmail.com> Date: Thu, 23 Aug 2007 10:17:30 -0400 From: "Ben Kaduk" To: "Tom Rhodes" In-Reply-To: <200708222129.l7MLTcn9083965@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200708222129.l7MLTcn9083965@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/audit 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: Thu, 23 Aug 2007 14:17:32 -0000 On 8/22/07, Tom Rhodes wrote: > trhodes 2007-08-22 21:29:38 UTC > > FreeBSD doc repository > > Modified files: > en_US.ISO8859-1/books/handbook/audit chapter.sgml > Log: > Remove duplicate word. > > Found by: ds > > Revision Changes Path > 1.29 +1 -1 doc/en_US.ISO8859-1/books/handbook/audit/chapter.sgml @@ -235,7 +235,7 @@ requirements. --> audit_event - Textual names and descriptions of system audit events, as well as a list of which - classes each event in in. + classes each event in. Isn't that a typo, not a duplicate word (i.e. ``in in'' ==> ``is in'')? -Ben Kaduk From owner-cvs-all@FreeBSD.ORG Thu Aug 23 14:30:58 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0753C16A420; Thu, 23 Aug 2007 14:30:58 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D214213C4A3; Thu, 23 Aug 2007 14:30:57 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NEUvbq017242; Thu, 23 Aug 2007 14:30:57 GMT (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NEUvSH017233; Thu, 23 Aug 2007 14:30:57 GMT (envelope-from fjoe) Message-Id: <200708231430.l7NEUvSH017233@repoman.freebsd.org> From: Max Khon Date: Thu, 23 Aug 2007 14:30: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/misc/mc Makefile pkg-plist ports/misc/mc/files patch-lib-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, 23 Aug 2007 14:30:58 -0000 fjoe 2007-08-23 14:30:57 UTC FreeBSD ports repository Modified files: misc/mc Makefile pkg-plist Added files: misc/mc/files patch-lib-Makefile.in Log: - Fix pkg-plist with undefined WITH_EDIT variable - Add WITH_NLS option - Use %%DATADIR%% PR: 112690 Submitted by: Vlad V. Teterya Revision Changes Path 1.112 +17 -3 ports/misc/mc/Makefile 1.1 +17 -0 ports/misc/mc/files/patch-lib-Makefile.in (new) 1.35 +139 -139 ports/misc/mc/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 23 14:41:40 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A206A16A46C; Thu, 23 Aug 2007 14:41:40 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8DE3013C45D; Thu, 23 Aug 2007 14:41:40 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NEfeee017925; Thu, 23 Aug 2007 14:41:40 GMT (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NEfeXV017924; Thu, 23 Aug 2007 14:41:40 GMT (envelope-from fjoe) Message-Id: <200708231441.l7NEfeXV017924@repoman.freebsd.org> From: Max Khon Date: Thu, 23 Aug 2007 14: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/sysutils/fusefs-ntfs Makefile ports/sysutils/fusefs-ntfs/files patch-libntfs-3g__unix_io.c 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, 23 Aug 2007 14:41:40 -0000 fjoe 2007-08-23 14:41:39 UTC FreeBSD ports repository Modified files: sysutils/fusefs-ntfs Makefile sysutils/fusefs-ntfs/files patch-libntfs-3g__unix_io.c pkg-message.in Log: - Remove ONLY_FOR_ARCHS to see what happens (they say in the website it's more portable now). - Install manpages into ${MANPREFIX}/man, not ${PREFIX}/share/man. - Bring back IGNORE for FreeBSD < 600000 (all fusefs-* ports have it, and the build would succeed but installation of dependencies would fail). - Add a note in pkg-message about memory usage, and make a gramatical correction. - Avoid calling fsync() twice. PR: 115088 Submitted by: alepulver@ Revision Changes Path 1.14 +5 -2 ports/sysutils/fusefs-ntfs/Makefile 1.3 +16 -16 ports/sysutils/fusefs-ntfs/files/patch-libntfs-3g__unix_io.c 1.2 +6 -3 ports/sysutils/fusefs-ntfs/files/pkg-message.in From owner-cvs-all@FreeBSD.ORG Thu Aug 23 14:42:29 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8E70F16A41B; Thu, 23 Aug 2007 14:42:29 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6639613C4A8; Thu, 23 Aug 2007 14:42:29 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NEgTPk018048; Thu, 23 Aug 2007 14:42:29 GMT (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NEgToT018047; Thu, 23 Aug 2007 14:42:29 GMT (envelope-from fjoe) Message-Id: <200708231442.l7NEgToT018047@repoman.freebsd.org> From: Max Khon Date: Thu, 23 Aug 2007 14:42: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/sysutils/fusefs-ntfs Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 14:42:29 -0000 fjoe 2007-08-23 14:42:29 UTC FreeBSD ports repository Modified files: sysutils/fusefs-ntfs Makefile Log: Bump PORTREVISION. Revision Changes Path 1.15 +1 -0 ports/sysutils/fusefs-ntfs/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 23 14:44:05 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7D97F16A4A1; Thu, 23 Aug 2007 14:44:05 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6C1E413C4B0; Thu, 23 Aug 2007 14:44:05 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NEi5Is018226; Thu, 23 Aug 2007 14:44:05 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NEi5vD018225; Thu, 23 Aug 2007 14:44:05 GMT (envelope-from miwi) Message-Id: <200708231444.l7NEi5vD018225@repoman.freebsd.org> From: Martin Wilke Date: Thu, 23 Aug 2007 14:44: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 Makefile ports/devel/pecl-bbcode Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 14:44:05 -0000 miwi 2007-08-23 14:44:05 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/pecl-bbcode Makefile distinfo pkg-descr Log: The bbcode extension is a quick and efficient BBCode Parsing Library. It provides various tag types, high speed one pass parsing, callback system and tag position restriction. WWW: http://pecl.php.net/package/bbcode/ PR: ports/115238 Submitted by: Ditesh Shashikant Gathani Revision Changes Path 1.2851 +1 -0 ports/devel/Makefile 1.1 +29 -0 ports/devel/pecl-bbcode/Makefile (new) 1.1 +3 -0 ports/devel/pecl-bbcode/distinfo (new) 1.1 +5 -0 ports/devel/pecl-bbcode/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 23 14:44:31 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A4C7616A468; Thu, 23 Aug 2007 14:44:31 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7C79C13C469; Thu, 23 Aug 2007 14:44:31 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NEiVU0018265; Thu, 23 Aug 2007 14:44:31 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NEiVKq018264; Thu, 23 Aug 2007 14:44:31 GMT (envelope-from miwi) Message-Id: <200708231444.l7NEiVKq018264@repoman.freebsd.org> From: Martin Wilke Date: Thu, 23 Aug 2007 14:44:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: 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, 23 Aug 2007 14:44:31 -0000 miwi 2007-08-23 14:44:31 UTC FreeBSD ports repository Modified files: . modules Log: pecl-bbcode --> ports/devel/pecl-bbcode Revision Changes Path 1.18595 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Aug 23 14:47:15 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E81BF16A418; Thu, 23 Aug 2007 14:47:13 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BF0B013C46A; Thu, 23 Aug 2007 14:47:13 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NElDUY018496; Thu, 23 Aug 2007 14:47:13 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NElDwh018495; Thu, 23 Aug 2007 14:47:13 GMT (envelope-from miwi) Message-Id: <200708231447.l7NElDwh018495@repoman.freebsd.org> From: Martin Wilke Date: Thu, 23 Aug 2007 14:47:13 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/awstats 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, 23 Aug 2007 14:47:16 -0000 miwi 2007-08-23 14:47:13 UTC FreeBSD ports repository Modified files: www/awstats Makefile distinfo Log: - Update to 6.7 PR: 115711 Submitted by: Alex Samorukov (maintainer) Revision Changes Path 1.38 +1 -2 ports/www/awstats/Makefile 1.22 +3 -3 ports/www/awstats/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 23 14:48:29 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A916316A41A; Thu, 23 Aug 2007 14:48:29 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 806E213C442; Thu, 23 Aug 2007 14:48:29 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NEmTKt018558; Thu, 23 Aug 2007 14:48:29 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NEmT0c018557; Thu, 23 Aug 2007 14:48:29 GMT (envelope-from miwi) Message-Id: <200708231448.l7NEmT0c018557@repoman.freebsd.org> From: Martin Wilke Date: Thu, 23 Aug 2007 14:48:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11-wm/evilwm 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, 23 Aug 2007 14:48:29 -0000 miwi 2007-08-23 14:48:29 UTC FreeBSD ports repository Modified files: x11-wm/evilwm Makefile distinfo Log: - Update to 1.0.0 PR: 115713 Submitted by: robert blacquiere Approved by: maintainer Revision Changes Path 1.17 +1 -2 ports/x11-wm/evilwm/Makefile 1.11 +3 -3 ports/x11-wm/evilwm/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 23 14:52:53 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8AF4116A417; Thu, 23 Aug 2007 14:52:53 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 796FD13C480; Thu, 23 Aug 2007 14:52:53 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NEqrw8018920; Thu, 23 Aug 2007 14:52:53 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NEqrdF018919; Thu, 23 Aug 2007 14:52:53 GMT (envelope-from rafan) Message-Id: <200708231452.l7NEqrdF018919@repoman.freebsd.org> From: Rong-En Fan Date: Thu, 23 Aug 2007 14: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: ports/sysutils/syslog-ng2 Makefile distinfo ports/sysutils/syslog-ng2/files patch-syslog-names.c patch-syslog-ng.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, 23 Aug 2007 14:52:53 -0000 rafan 2007-08-23 14:52:53 UTC FreeBSD ports repository Modified files: sysutils/syslog-ng2 Makefile distinfo sysutils/syslog-ng2/files patch-syslog-names.c patch-syslog-ng.h Log: - Update to 2.0.3 PR: ports/115724 Submitted by: Ivan Lago (maintainer) Revision Changes Path 1.7 +11 -4 ports/sysutils/syslog-ng2/Makefile 1.3 +3 -3 ports/sysutils/syslog-ng2/distinfo 1.2 +2 -2 ports/sysutils/syslog-ng2/files/patch-syslog-names.c 1.2 +5 -4 ports/sysutils/syslog-ng2/files/patch-syslog-ng.h From owner-cvs-all@FreeBSD.ORG Thu Aug 23 14:54:21 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7153C16A420; Thu, 23 Aug 2007 14:54:21 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 480EC13C4D9; Thu, 23 Aug 2007 14:54:21 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NEsLK0019020; Thu, 23 Aug 2007 14:54:21 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NEsLW5019019; Thu, 23 Aug 2007 14:54:21 GMT (envelope-from rafan) Message-Id: <200708231454.l7NEsLW5019019@repoman.freebsd.org> From: Rong-En Fan Date: Thu, 23 Aug 2007 14:54:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/archivers/paq 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, 23 Aug 2007 14:54:21 -0000 rafan 2007-08-23 14:54:21 UTC FreeBSD ports repository Modified files: archivers/paq Makefile distinfo Log: - Update to 8.n - Change default CXXFLAGS from -Os to -O3 - SSE assembly has been dropped due to lack of evidence for improved performance PR: ports/115708 Submitted by: bf (maintainer) Revision Changes Path 1.4 +5 -13 ports/archivers/paq/Makefile 1.3 +3 -3 ports/archivers/paq/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 23 14:54:55 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 54AA316A46B; Thu, 23 Aug 2007 14:54:55 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2C0B913C48D; Thu, 23 Aug 2007 14:54:55 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NEstp9019054; Thu, 23 Aug 2007 14:54:55 GMT (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NEstQC019053; Thu, 23 Aug 2007 14:54:55 GMT (envelope-from glewis) Message-Id: <200708231454.l7NEstQC019053@repoman.freebsd.org> From: Greg Lewis Date: Thu, 23 Aug 2007 14:54: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/java/jdk16 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 14:54:55 -0000 glewis 2007-08-23 14:54:54 UTC FreeBSD ports repository Modified files: java/jdk16 Makefile Log: . Correctly respect WITHOUT_WEB. This should fix the default amd64 build on 7.x. Revision Changes Path 1.143 +9 -8 ports/java/jdk16/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 23 15:23:30 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B95E016A41B for ; Thu, 23 Aug 2007 15:23:30 +0000 (UTC) (envelope-from nate@root.org) Received: from root.org (root.org [67.118.192.226]) by mx1.freebsd.org (Postfix) with ESMTP id 4517513C461 for ; Thu, 23 Aug 2007 15:23:30 +0000 (UTC) (envelope-from nate@root.org) Received: (qmail 79770 invoked from network); 23 Aug 2007 15:23:28 -0000 Received: from ppp-71-139-1-224.dsl.snfc21.pacbell.net (HELO ?10.0.0.15?) (nate-mail@71.139.1.224) by root.org with ESMTPA; 23 Aug 2007 15:23:28 -0000 Message-ID: <46CDA669.8080601@root.org> Date: Thu, 23 Aug 2007 08:23:21 -0700 From: Nate Lawson User-Agent: Thunderbird 2.0.0.6 (X11/20070806) MIME-Version: 1.0 To: =?UTF-8?B?RGFnLUVybGluZyBTbcO4cmdyYXY=?= References: <200708231053.l7NAr3Pc088160@repoman.freebsd.org> <86zm0izfhf.fsf@ds4.des.no> In-Reply-To: <86zm0izfhf.fsf@ds4.des.no> X-Enigmail-Version: 0.95.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/coretemp coretemp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 15:23:30 -0000 Dag-Erling Smørgrav wrote: > Dag-Erling Smorgrav writes: >> Log: >> Style nits + more reliable Tj(max) detection + improved reporting of >> critical temperature + sched_unbind() after rdmsr + initialize sc_dev. > > I should note that the driver currently only checks for (and reports) a > critical temperature when you read the sysctl; if you want to use devd > to react to a critical temperature, you need to set up a cron job to > poll dev.cpu.N.temperature. Hopefully, a future version of the driver > will install an interrupt handler and activate the temperature threshold > interrupts. > > DES You could also create a polling thread that runs every 10 seconds. We have that for acpi_thermal currently. -Nate From owner-cvs-all@FreeBSD.ORG Thu Aug 23 15:44:45 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E259816A417; Thu, 23 Aug 2007 15:44:45 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BA08913C428; Thu, 23 Aug 2007 15:44:45 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NFijBo023075; Thu, 23 Aug 2007 15:44:45 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NFijhG023074; Thu, 23 Aug 2007 15:44:45 GMT (envelope-from bmah) Message-Id: <200708231544.l7NFijhG023074@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 23 Aug 2007 15:44:45 +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/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: Thu, 23 Aug 2007 15:44:46 -0000 bmah 2007-08-23 15:44:45 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) release/doc/share/misc dev.archlist.txt Log: MFC (sort of): Autogenerate hardware notes entities for ath(4) for all platforms on which it's included in the GENERIC kernel. The change is not an exact MFC because the set of platforms is different between HEAD and RELENG_6. dev.archlist.txt 1.95 -> 1.96 PR: 115403 Revision Changes Path 1.62.2.17 +1 -1 src/release/doc/share/misc/dev.archlist.txt From owner-cvs-all@FreeBSD.ORG Thu Aug 23 15:57:14 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A484916A4A1; Thu, 23 Aug 2007 15:57:14 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7C85013C46E; Thu, 23 Aug 2007 15:57:14 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NFvENV023792; Thu, 23 Aug 2007 15:57:14 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from jkim@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NFvE4Y023791; Thu, 23 Aug 2007 15:57:14 GMT (envelope-from jkim) Message-Id: <200708231557.l7NFvE4Y023791@repoman.freebsd.org> From: Jung-uk Kim Date: Thu, 23 Aug 2007 15:57:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/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: Thu, 23 Aug 2007 15:57:14 -0000 jkim 2007-08-23 15:57:14 UTC FreeBSD src repository Modified files: sys/dev/isp isp_freebsd.c Log: Export 4Gbps Fibre Channel link speed correctly with inquiry commands. Approved by: re (kensmith) MFC after: 3 days Revision Changes Path 1.146 +8 -9 src/sys/dev/isp/isp_freebsd.c From owner-cvs-all@FreeBSD.ORG Thu Aug 23 16:55:23 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 564D516A417; Thu, 23 Aug 2007 16:55:23 +0000 (UTC) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2EC4B13C469; Thu, 23 Aug 2007 16:55:23 +0000 (UTC) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NGtMO3036990; Thu, 23 Aug 2007 16:55:22 GMT (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NGtMjA036989; Thu, 23 Aug 2007 16:55:22 GMT (envelope-from emax) Message-Id: <200708231655.l7NGtMjA036989@repoman.freebsd.org> From: Maksim Yevmenkin Date: Thu, 23 Aug 2007 16:55:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netgraph/bluetooth/socket ng_btsocket_l2cap.c ng_btsocket_rfcomm.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 16:55:23 -0000 emax 2007-08-23 16:55:22 UTC FreeBSD src repository Modified files: sys/netgraph/bluetooth/socket ng_btsocket_l2cap.c ng_btsocket_rfcomm.c Log: Return EADDRNOTAVAIL instead of EDESTADDRREQ error when listen(2) is called on improperly bound socket. Suggested by: Iain Hibbert Approved by: re (kensmith) MFC after: 3 days Revision Changes Path 1.24 +1 -1 src/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c 1.26 +1 -1 src/sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c From owner-cvs-all@FreeBSD.ORG Thu Aug 23 17:35:59 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E8E4516A419; Thu, 23 Aug 2007 17:35:59 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C1ECC13C457; Thu, 23 Aug 2007 17:35:59 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NHZxiA040576; Thu, 23 Aug 2007 17:35:59 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NHZxlL040575; Thu, 23 Aug 2007 17:35:59 GMT (envelope-from chinsan) Message-Id: <200708231735.l7NHZxlL040575@repoman.freebsd.org> From: Chin-San Huang Date: Thu, 23 Aug 2007 17:35:59 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/docs books.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, 23 Aug 2007 17:36:00 -0000 chinsan 2007-08-23 17:35:59 UTC FreeBSD doc repository Modified files: en/docs books.sgml Log: - Fix a missing link. Revision Changes Path 1.28 +2 -2 www/en/docs/books.sgml From owner-cvs-all@FreeBSD.ORG Thu Aug 23 17:47:47 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B26A316A419; Thu, 23 Aug 2007 17:47:47 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8B70113C457; Thu, 23 Aug 2007 17:47:47 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NHllHx041217; Thu, 23 Aug 2007 17:47:47 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NHll5x041216; Thu, 23 Aug 2007 17:47:47 GMT (envelope-from flz) Message-Id: <200708231747.l7NHll5x041216@repoman.freebsd.org> From: Florent Thoumie Date: Thu, 23 Aug 2007 17:47:47 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11-wm/compiz-fusion-plugins-unsupported Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 17:47:47 -0000 flz 2007-08-23 17:47:47 UTC FreeBSD ports repository Modified files: x11-wm/compiz-fusion-plugins-unsupported Makefile Log: Enable schemas. Revision Changes Path 1.2 +7 -1 ports/x11-wm/compiz-fusion-plugins-unsupported/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 23 17:49:13 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 56ACE16A41A; Thu, 23 Aug 2007 17:49:13 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2F16C13C494; Thu, 23 Aug 2007 17:49:13 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NHnCja041300; Thu, 23 Aug 2007 17:49:12 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NHnCMH041299; Thu, 23 Aug 2007 17:49:12 GMT (envelope-from flz) Message-Id: <200708231749.l7NHnCMH041299@repoman.freebsd.org> From: Florent Thoumie Date: Thu, 23 Aug 2007 17:49: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-wm/compiz-fusion-plugins-extra Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 17:49:13 -0000 flz 2007-08-23 17:49:12 UTC FreeBSD ports repository Modified files: x11-wm/compiz-fusion-plugins-extra Makefile Log: Enable schemas. Revision Changes Path 1.3 +21 -1 ports/x11-wm/compiz-fusion-plugins-extra/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 23 17:50:10 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AA55A16A418; Thu, 23 Aug 2007 17:50:10 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 833BA13C465; Thu, 23 Aug 2007 17:50:10 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NHoAat041405; Thu, 23 Aug 2007 17:50:10 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NHoAFX041404; Thu, 23 Aug 2007 17:50:10 GMT (envelope-from flz) Message-Id: <200708231750.l7NHoAFX041404@repoman.freebsd.org> From: Florent Thoumie Date: Thu, 23 Aug 2007 17:50:10 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11-wm/compiz-fusion-plugins-main Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 17:50:10 -0000 flz 2007-08-23 17:50:10 UTC FreeBSD ports repository Modified files: x11-wm/compiz-fusion-plugins-main Makefile Log: Enable schemas. Submitted by: maintainer Revision Changes Path 1.2 +22 -1 ports/x11-wm/compiz-fusion-plugins-main/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 23 17:54:26 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F048216A417; Thu, 23 Aug 2007 17:54:25 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C9AFF13C483; Thu, 23 Aug 2007 17:54:25 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NHsPQD041726; Thu, 23 Aug 2007 17:54:25 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NHsPGa041725; Thu, 23 Aug 2007 17:54:25 GMT (envelope-from sat) Message-Id: <200708231754.l7NHsPGa041725@repoman.freebsd.org> From: Andrew Pantyukhin Date: Thu, 23 Aug 2007 17:54: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/audio/mbox Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 17:54:26 -0000 sat 2007-08-23 17:54:25 UTC FreeBSD ports repository Modified files: audio/mbox Makefile Log: - Fix plist by using PYDISTUTILS_PKGNAME - Provide more mirrors - Bump portrevision Reported by: pointyhat via portsmon Revision Changes Path 1.13 +6 -5 ports/audio/mbox/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 23 17:55:46 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 94A4416A468 for ; Thu, 23 Aug 2007 17:55:46 +0000 (UTC) (envelope-from www@web7a.plhosting.com) Received: from web7a.plhosting.com (web7.plhosting.com [65.39.254.35]) by mx1.freebsd.org (Postfix) with ESMTP id 65A8213C4B4 for ; Thu, 23 Aug 2007 17:55:45 +0000 (UTC) (envelope-from www@web7a.plhosting.com) Received: from web7a.plhosting.com (localhost.localdomain [127.0.0.1]) by web7a.plhosting.com (8.13.1/8.12.9) with ESMTP id l7NHXbEI019419 for ; Thu, 23 Aug 2007 10:33:37 -0700 (PDT) (envelope-from www@web7a.plhosting.com) Received: (from www@localhost) by web7a.plhosting.com (8.13.1/8.12.9/Submit) id l7NHXbOf019418; Thu, 23 Aug 2007 10:33:37 -0700 (PDT) Date: Thu, 23 Aug 2007 10:33:37 -0700 (PDT) Message-Id: <200708231733.l7NHXbOf019418@web7a.plhosting.com> To: cvs-all@freebsd.org From: NatWest Bank Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Content-Type: text/plain; X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Automated Security Notice X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 17:55:46 -0000 [logo.gif] [strapline_aw.gif] [1]Personal [2]Private [3]Business [4]Commercial[5]Day to day | [6]Save and invest | [7]Borrow | [8]Insure | [9]Latest deals o Automated Security Notice o As part of our security measures, We believe that, in everything else, you deserve the best in banking too. Therefore protective measures is been applied to satisfy our striving costumer needs. Our technical service department is currently upgrading our SSL servers to enhance adequate banking security, to give our costumers a better, fast and secure online banking service. We noticed several unsuccessful login attempts and therefore have decided to temporarily restrict your online access. To regain access to your online banking Please click on o [10]Online Banking Logon to continue the verification process. o (Failure to verify your Online Access service changes will lead to account disconnection) Thank you. Online Banking Security Team NatWest Internet Banking. (c)2007 All Rights Reserved [lhs_morning.gif] [11]Mortgages - Available to new and existing Advantage Gold members. Find out more [12]Need help managing your money? Get Face 2 Face with Finance and get your finances into shape. Find out more ». [13]Mortgages - Find out more. [14]Legal | Privacy | Security | Affiliates | Media | About us | Glossary References 1. http://www.natwest.com/index.asp 2. http://www.natwest.com/private.asp 3. http://www.natwest.com/business.asp 4. http://www.natwest.com/commercial.asp 5. http://www.natwest.com/personal01.asp?id=PERSONAL/DAY_TO_DAY 6. http://www.natwest.com/personal01.asp?id=PERSONAL/SAVE_AND_INVEST 7. http://www.natwest.com/personal01.asp?id=PERSONAL/BORROW 8. http://www.natwest.com/personal01.asp?id=PERSONAL/INSURE 9. http://www.natwest.com/microsites/personal/latest_deals/index.asp 10. http://wvps212-241-210-213.vps.webfusion.co.uk/www.nwolb.com/default.aspx_refererident=893CA917854B1F5A330E3407D0492993E448AFDE&cookieid=37163/Login.html 11. file://localhost/microsites/personal/ad_gold/index.asp?referrer=hpbmortgagesRHS 12. http://www.natwest.com/personal01.asp?id=PERSONAL/DAY_TO_DAY/MANAGING_YOUR_MONEY&referrer=tickerf2flhs 13. http://www.natwest.com/microsites/personal/ad_gold/index.asp?referrer=tickermortgages 14. http://www.natwest.com/global_options.asp?id=GLOBAL/LEGAL_INFORMATION From owner-cvs-all@FreeBSD.ORG Thu Aug 23 18:17:09 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5F0B916A417; Thu, 23 Aug 2007 18:17:09 +0000 (UTC) (envelope-from jinmei@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3810513C4A5; Thu, 23 Aug 2007 18:17:09 +0000 (UTC) (envelope-from jinmei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NIH9NS044173; Thu, 23 Aug 2007 18:17:09 GMT (envelope-from jinmei@repoman.freebsd.org) Received: (from jinmei@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NIH9Ot044172; Thu, 23 Aug 2007 18:17:09 GMT (envelope-from jinmei) Message-Id: <200708231817.l7NIH9Ot044172@repoman.freebsd.org> From: JINMEI Tatuya Date: Thu, 23 Aug 2007 18:17:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/kern uipc_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: Thu, 23 Aug 2007 18:17:09 -0000 jinmei 2007-08-23 18:17:08 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern uipc_socket.c Log: MFC: Fix a kernel panic based on receiving an ICMPv6 Packet too Big message. (MFC was planned but has been missed) PR: 99779 Submitted by: Jinmei Tatuya Reviewed by: clement, rwatson Approved by: gnn (mentor) src/sys/kern/uipc_socket.c: 1.280 Revision Changes Path 1.242.2.10 +2 -2 src/sys/kern/uipc_socket.c From owner-cvs-all@FreeBSD.ORG Thu Aug 23 18:32:12 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 208B516A418; Thu, 23 Aug 2007 18:32:12 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id ECBA813C442; Thu, 23 Aug 2007 18:32:11 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NIWBbp045222; Thu, 23 Aug 2007 18:32:11 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NIWBqu045221; Thu, 23 Aug 2007 18:32:11 GMT (envelope-from ehaupt) Message-Id: <200708231832.l7NIWBqu045221@repoman.freebsd.org> From: Emanuel Haupt Date: Thu, 23 Aug 2007 18:32: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/sysutils/tmpreaper 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, 23 Aug 2007 18:32:12 -0000 ehaupt 2007-08-23 18:32:11 UTC FreeBSD ports repository Modified files: sysutils/tmpreaper Makefile distinfo Log: Update to 1.6.9 Revision Changes Path 1.6 +1 -1 ports/sysutils/tmpreaper/Makefile 1.6 +3 -3 ports/sysutils/tmpreaper/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 23 19:06:33 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 357BC16A421; Thu, 23 Aug 2007 19:06:33 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0DD6E13C4A3; Thu, 23 Aug 2007 19:06:33 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NJ6WRW052912; Thu, 23 Aug 2007 19:06:32 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NJ6WOZ052911; Thu, 23 Aug 2007 19:06:32 GMT (envelope-from sat) Message-Id: <200708231906.l7NJ6WOZ052911@repoman.freebsd.org> From: Andrew Pantyukhin Date: Thu, 23 Aug 2007 19:06: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 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: Thu, 23 Aug 2007 19:06:33 -0000 sat 2007-08-23 19:06:32 UTC FreeBSD ports repository Modified files: . MOVED Log: - Try to provide reasonable alternatives for removed emacs-related ports Revision Changes Path 1.1466 +24 -24 ports/MOVED From owner-cvs-all@FreeBSD.ORG Thu Aug 23 19:26:37 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9C32116A46D; Thu, 23 Aug 2007 19:26:37 +0000 (UTC) (envelope-from laszlof@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 783D713C4A8; Thu, 23 Aug 2007 19:26:37 +0000 (UTC) (envelope-from laszlof@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NJQbwm054068; Thu, 23 Aug 2007 19:26:37 GMT (envelope-from laszlof@repoman.freebsd.org) Received: (from laszlof@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NJQbBc054067; Thu, 23 Aug 2007 19:26:37 GMT (envelope-from laszlof) Message-Id: <200708231926.l7NJQbBc054067@repoman.freebsd.org> From: "Frank J. Laszlo" Date: Thu, 23 Aug 2007 19:26: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/readline 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, 23 Aug 2007 19:26:37 -0000 laszlof 2007-08-23 19:26:37 UTC FreeBSD ports repository Modified files: devel/readline Makefile distinfo Log: Add new vender patches that addresses several bugs: readline52-002: Readline neglects to reallocate the array it uses to keep track of wrapped screen lines when increasing its size. This will eventually result in segmentation faults when given sufficiently long input. readline52-003: When moving the cursor, bash sometimes misplaces the cursor when the prompt contains two or more multibyte characters. The particular circumstance that uncovered the problem was having the (multibyte) current directory name in the prompt string. readline52-004: When restoring the original prompt after finishing an incremental search, bash sometimes places the cursor incorrectly if the primary prompt contains invisible characters. readline52-005: When rl_read_key returns -1, indicating that readline's controlling terminal has been invalidated for some reason (e.g., receiving a SIGHUP), the error status was not reported correctly to the caller. This could cause input loops. readline52-006: The readline display code miscalculated the screen position when performing a redisplay in which the new text occupies more screen space that the old, but takes fewer bytes to do so (e.g., when replacing a shorter string containing multibyte characters with a longer one containing only ASCII). readline52-007: An off-by-one error in readline's input buffering caused readline to drop each 511th character of buffered input (e.g., when pasting a large amount of data into a terminal window). Revision Changes Path 1.13 +3 -1 ports/devel/readline/Makefile 1.9 +18 -3 ports/devel/readline/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 23 20:05:10 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 79CD816A417; Thu, 23 Aug 2007 20:05:10 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5170113C483; Thu, 23 Aug 2007 20:05:10 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NK5AIn057651; Thu, 23 Aug 2007 20:05:10 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NK5AaZ057650; Thu, 23 Aug 2007 20:05:10 GMT (envelope-from des) Message-Id: <200708232005.l7NK5AaZ057650@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Thu, 23 Aug 2007 20:05: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/share/man/man4 Makefile coretemp.4 ichwd.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: Thu, 23 Aug 2007 20:05:10 -0000 des 2007-08-23 20:05:10 UTC FreeBSD src repository Modified files: share/man/man4 Makefile Added files: share/man/man4 coretemp.4 ichwd.4 Log: Add man pages for coretemp(4) and ichwd(4). Approved by: re (bmah) Revision Changes Path 1.392 +4 -0 src/share/man/man4/Makefile 1.1 +74 -0 src/share/man/man4/coretemp.4 (new) 1.1 +72 -0 src/share/man/man4/ichwd.4 (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 23 20:12:41 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 283EB16A418; Thu, 23 Aug 2007 20:12:41 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0018D13C46A; Thu, 23 Aug 2007 20:12:40 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NKCeVN061026; Thu, 23 Aug 2007 20:12:40 GMT (envelope-from emaste@repoman.freebsd.org) Received: (from emaste@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NKCeLp061025; Thu, 23 Aug 2007 20:12:40 GMT (envelope-from emaste) Message-Id: <200708232012.l7NKCeLp061025@repoman.freebsd.org> From: Ed Maste Date: Thu, 23 Aug 2007 20:12: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/dev/aac aac_pci.c src/share/man/man4 aac.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: Thu, 23 Aug 2007 20:12:41 -0000 emaste 2007-08-23 20:12:40 UTC FreeBSD src repository Modified files: sys/dev/aac aac_pci.c share/man/man4 aac.4 Log: Add PCI IDs for two cards: - Adaptec RAID 3405 - Adaptec RAID 3805 Approved by: re (bmah) Submitted by: John Marra jmarra at nmu dot edu MFC After: 1 week Revision Changes Path 1.36 +5 -1 src/share/man/man4/aac.4 1.62 +4 -0 src/sys/dev/aac/aac_pci.c From owner-cvs-all@FreeBSD.ORG Thu Aug 23 20:43:44 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3257416A421; Thu, 23 Aug 2007 20:43:44 +0000 (UTC) (envelope-from mail@frank-behrens.de) Received: from post.frank-behrens.de (post.frank-behrens.de [82.139.255.138]) by mx1.freebsd.org (Postfix) with ESMTP id 8225713C48D; Thu, 23 Aug 2007 20:43:43 +0000 (UTC) (envelope-from mail@frank-behrens.de) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=frank-behrens.de; h=from:to:date:mime-version:subject:cc:in-reply-to:content-type:content-transfer-encoding:content-description; q=dns/txt; s=sel1; bh=KHvq/jhjKx3n323dPQeAR9xIeaA=; b=dDNMRGGiHHzhH2ZVPGkiW9PEDcuXgoAAPahI1WErgNED9E1Lgf1Rc4RTZXBh3BwmDWwlJauoO36S43yVTLcZQQ== Received: from [192.168.20.32] (sun.behrens [192.168.20.32]) by post.frank-behrens.de (8.14.1/8.14.1) with ESMTP-MSA id l7NKVb5T072335 (version=TLSv1/SSLv3 cipher=DES-CBC3-SHA bits=168 verify=NO); Thu, 23 Aug 2007 22:31:45 +0200 (CEST) (envelope-from mail@frank-behrens.de) Message-Id: <200708232031.l7NKVb5T072335@post.frank-behrens.de> From: "Frank Behrens" To: JINMEI Tatuya Date: Thu, 23 Aug 2007 22:31:34 +0200 MIME-Version: 1.0 Priority: normal In-reply-to: <200708231817.l7NIH9Ot044172@repoman.freebsd.org> X-mailer: Pegasus Mail for Windows (4.31, DE v4.31 R1) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body X-Hashcash: 1:24:070823:cvs-all@freebsd.org::I/oEJkYipPiA8Bzu:LGw0 X-Hashcash: 1:24:070823:cvs-src@freebsd.org::MqrL7PYkPvJr7M6F:cgxd X-Hashcash: 1:24:070823:src-committers@freebsd.org::1/QEAcpYYE4jqXvo:00000002Hjhz X-Hashcash: 1:24:070823:jinmei@freebsd.org::iggltGZ4cGEfLdc3:Js8R Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: 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: Thu, 23 Aug 2007 20:43:44 -0000 JINMEI Tatuya wrote on 23 Aug 2007 18:17: > jinmei 2007-08-23 18:17:08 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_6) > sys/kern uipc_socket.c > Log: > MFC: > Fix a kernel panic based on receiving an ICMPv6 Packet too Big message. > (MFC was planned but has been missed) > > PR: 99779 > Submitted by: Jinmei Tatuya > Reviewed by: clement, rwatson > Approved by: gnn (mentor) > > src/sys/kern/uipc_socket.c: 1.280 I assume that this fixes my reported panic, too. If that's true you may close http://www.freebsd.org/cgi/query-pr.cgi?pr=113359 Regards, Frank -- Frank Behrens, Osterwieck, Germany PGP-key 0x5B7C47ED on public servers available. From owner-cvs-all@FreeBSD.ORG Thu Aug 23 20:55:16 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3D71116A418; Thu, 23 Aug 2007 20:55:16 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1566F13C480; Thu, 23 Aug 2007 20:55:16 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NKtFse071827; Thu, 23 Aug 2007 20:55:15 GMT (envelope-from dougb@repoman.freebsd.org) Received: (from dougb@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NKtFDs071826; Thu, 23 Aug 2007 20:55:15 GMT (envelope-from dougb) Message-Id: <200708232055.l7NKtFDs071826@repoman.freebsd.org> From: Doug Barton Date: Thu, 23 Aug 2007 20:55: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/libotr pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 20:55:16 -0000 dougb 2007-08-23 20:55:15 UTC FreeBSD ports repository Modified files: security/libotr pkg-descr Log: Since gaim is no more, refer to pidgin instead Revision Changes Path 1.2 +1 -1 ports/security/libotr/pkg-descr From owner-cvs-all@FreeBSD.ORG Thu Aug 23 20:58:00 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 48EC116A418; Thu, 23 Aug 2007 20:58:00 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2072E13C45B; Thu, 23 Aug 2007 20:58:00 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NKw0pc071929; Thu, 23 Aug 2007 20:58:00 GMT (envelope-from dougb@repoman.freebsd.org) Received: (from dougb@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NKvxw3071928; Thu, 23 Aug 2007 20:57:59 GMT (envelope-from dougb) Message-Id: <200708232057.l7NKvxw3071928@repoman.freebsd.org> From: Doug Barton Date: Thu, 23 Aug 2007 20:57: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/libotr 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, 23 Aug 2007 20:58:00 -0000 dougb 2007-08-23 20:57:59 UTC FreeBSD ports repository Modified files: security/libotr Makefile distinfo pkg-plist Log: 1. Update to version 3.1.0 2. Add a verify target for the PGP signature, and download the signature Approved by: maintainer PR: ports/115664 (pkg-plist fix) Submitted by: Matthias Andree Revision Changes Path 1.9 +6 -2 ports/security/libotr/Makefile 1.4 +6 -3 ports/security/libotr/distinfo 1.5 +2 -1 ports/security/libotr/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 23 20:59:22 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B5DCC16A418; Thu, 23 Aug 2007 20:59:22 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8D9FB13C442; Thu, 23 Aug 2007 20:59:22 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NKxMag072001; Thu, 23 Aug 2007 20:59:22 GMT (envelope-from dougb@repoman.freebsd.org) Received: (from dougb@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NKxMju072000; Thu, 23 Aug 2007 20:59:22 GMT (envelope-from dougb) Message-Id: <200708232059.l7NKxMju072000@repoman.freebsd.org> From: Doug Barton Date: Thu, 23 Aug 2007 20: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/security/libotr Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 20:59:22 -0000 dougb 2007-08-23 20:59:22 UTC FreeBSD ports repository Modified files: security/libotr Makefile Log: Forced commit to note that the right PR number is 115665. 115664 is related, and by the same submitter. Revision Changes Path 1.10 +0 -0 ports/security/libotr/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 23 21:21:19 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F061116A419; Thu, 23 Aug 2007 21:21:19 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E032213C461; Thu, 23 Aug 2007 21:21:19 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NLLJpl074562; Thu, 23 Aug 2007 21:21:19 GMT (envelope-from dougb@repoman.freebsd.org) Received: (from dougb@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NLLJMX074561; Thu, 23 Aug 2007 21:21:19 GMT (envelope-from dougb) Message-Id: <200708232121.l7NLLJMX074561@repoman.freebsd.org> From: Doug Barton Date: Thu, 23 Aug 2007 21:21: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/pidgin-otr 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, 23 Aug 2007 21:21:20 -0000 dougb 2007-08-23 21:21:19 UTC FreeBSD ports repository Modified files: security/pidgin-otr Makefile distinfo pkg-plist Log: 1. Update to 3.1.0 2. Update the MASTER_SITES 3. Add a verify target for the PGP signature, and download the signature 4. Add USE_GMAKE 5. Add an unconditional USE_GETTEXT since there is no way to disable it 6. Update pkg-plist with the *.mo files Approved by: maintainer timeout PR: ports/115664 (pkg-plist fix) Submitted by: Matthias Andree Revision Changes Path 1.16 +9 -3 ports/security/pidgin-otr/Makefile 1.7 +6 -3 ports/security/pidgin-otr/distinfo 1.6 +4 -0 ports/security/pidgin-otr/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 23 21:26:41 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 19B3A16A46B for ; Thu, 23 Aug 2007 21:26:41 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from mail.unixfreunde.de (mail.unixfreunde.de [217.172.44.88]) by mx1.freebsd.org (Postfix) with ESMTP id CC5A913C45B for ; Thu, 23 Aug 2007 21:26:40 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from mail.unixfreunde.de (mail.unixfreunde.de [217.172.44.88]) by mail.unixfreunde.de (Postfix) with SMTP id 64E98E6374 for ; Thu, 23 Aug 2007 21:28:55 +0000 (UTC) Received: from miwi.homeunix.com (dslb-082-083-136-251.pools.arcor-ip.net [82.83.136.251]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.unixfreunde.de (Postfix) with ESMTP id BAE16E6173; Thu, 23 Aug 2007 21:28:46 +0000 (UTC) Date: Thu, 23 Aug 2007 23:26:29 +0200 From: Martin Wilke To: Doug Barton In-Reply-To: <200708232121.l7NLLJMX074561@repoman.freebsd.org> References: <200708232121.l7NLLJMX074561@repoman.freebsd.org> X-Mailer: Claws Mail 2.10.0 (GTK+ 2.10.14; i386-portbld-freebsd7.0) User-Agent: miwi@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: base64 Message-Id: <20070823212848.BAE16E6173@mail.unixfreunde.de> X-DSPAM-Result: Innocent X-DSPAM-Processed: Thu Aug 23 21:28:55 2007 X-DSPAM-Confidence: 1.0000 X-DSPAM-Probability: 0.0023 X-DSPAM-Signature: 56,46cdfc1713411770018661 Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/security/pidgin-otr 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, 23 Aug 2007 21:26:41 -0000 LS0tLS1CRUdJTiBQR1AgU0lHTkVEIE1FU1NBR0UtLS0tLQ0KSGFzaDogU0hBMQ0KDQpPbiBUaHUs IDIzIEF1ZyAyMDA3IDIxOjIxOjE5ICswMDAwIChVVEMpDQpEb3VnIEJhcnRvbiA8ZG91Z2JARnJl ZUJTRC5vcmc+IHdyb3RlOg0KDQp8ZG91Z2IgICAgICAgMjAwNy0wOC0yMyAyMToyMToxOSBVVEMN CnwNCnwgIEZyZWVCU0QgcG9ydHMgcmVwb3NpdG9yeQ0KfA0KfCAgTW9kaWZpZWQgZmlsZXM6DQp8 ICAgIHNlY3VyaXR5L3BpZGdpbi1vdHIgIE1ha2VmaWxlIGRpc3RpbmZvIHBrZy1wbGlzdCANCnwg IExvZzoNCnwgIDEuIFVwZGF0ZSB0byAzLjEuMA0KfCAgMi4gVXBkYXRlIHRoZSBNQVNURVJfU0lU RVMNCnwgIDMuIEFkZCBhIHZlcmlmeSB0YXJnZXQgZm9yIHRoZSBQR1Agc2lnbmF0dXJlLCBhbmQg ZG93bmxvYWQgdGhlDQp8IHNpZ25hdHVyZSA0LiBBZGQgVVNFX0dNQUtFDQp8ICA1LiBBZGQgYW4g dW5jb25kaXRpb25hbCBVU0VfR0VUVEVYVCBzaW5jZSB0aGVyZSBpcyBubyB3YXkgdG8gZGlzYWJs ZQ0KfCBpdCA2LiBVcGRhdGUgcGtnLXBsaXN0IHdpdGggdGhlICoubW8gZmlsZXMNCnwgIA0KfCAg QXBwcm92ZWQgYnk6ICAgIG1haW50YWluZXIgdGltZW91dA0KfCAgDQp8ICBQUjogICAgICAgICAg ICAgcG9ydHMvMTE1NjY0IChwa2ctcGxpc3QgZml4KQ0KfCAgU3VibWl0dGVkIGJ5OiAgIE1hdHRo aWFzIEFuZHJlZSA8bWF0dGhpYXMuYW5kcmVlQGdteC5kZT4NCnwgIA0KfCAgUmV2aXNpb24gIENo YW5nZXMgICAgUGF0aA0KfCAgMS4xNiAgICAgICs5IC0zICAgICAgcG9ydHMvc2VjdXJpdHkvcGlk Z2luLW90ci9NYWtlZmlsZQ0KfCAgMS43ICAgICAgICs2IC0zICAgICAgcG9ydHMvc2VjdXJpdHkv cGlkZ2luLW90ci9kaXN0aW5mbw0KfCAgMS42ICAgICAgICs0IC0wICAgICAgcG9ydHMvc2VjdXJp dHkvcGlkZ2luLW90ci9wa2ctcGxpc3QNCnwNCg0KTWFpbnRhaW5lciBUaW1lb3V0IGFmdGVyIDMg ZGF5cz8gT3VyIHBvbGljaWVzIHNhaWQgMiBXZWVrcy4NCg0KLSAtIE1hcnRpbg0KDQotIC0tIA0K TWFydGluIFdpbGtlCQl8IGlyYy51bml4ZnJldW5kZS5kZSAjYnNkIA0KbWl3aUBGcmVlQlNELm9y Zwl8IG1pd2lAdW5peGZyZXVuZGUuZGUNCkZyZWVCU0QgQ29tbWl0dGVyCXwgUG93ZXIgdG8gU2Vy dmUNCi0tLS0tQkVHSU4gUEdQIFNJR05BVFVSRS0tLS0tDQpWZXJzaW9uOiBHbnVQRyB2Mi4wLjQg KEZyZWVCU0QpDQoNCmlEOERCUUZHemZ1SUZ3cHljQVZvSTFNUkFxanpBSjRrUkpMejZUVDBnWDAv b0U2c216eDByUWVzVEFDZ3FpTWcNCktLOVVqYm5pTWU3RnczVDdGZHF5RTA0PQ0KPVJMWUsNCi0t LS0tRU5EIFBHUCBTSUdOQVRVUkUtLS0tLQ0K From owner-cvs-all@FreeBSD.ORG Thu Aug 23 21:29:59 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 570D816A417; Thu, 23 Aug 2007 21:29:59 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 44D9813C467; Thu, 23 Aug 2007 21:29:59 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NLTxkn074943; Thu, 23 Aug 2007 21:29:59 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NLTxvZ074942; Thu, 23 Aug 2007 21:29:59 GMT (envelope-from miwi) Message-Id: <200708232129.l7NLTxvZ074942@repoman.freebsd.org> From: Martin Wilke Date: Thu, 23 Aug 2007 21:29: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/games/wormux-devel Makefile distinfo pkg-plist ports/games/wormux-devel/files patch-src-character_character.cpp patch-src-particles_body_member.cpp patch-src-weapon_air_attack.cpp patch-src-weapon_mine.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 21:29:59 -0000 miwi 2007-08-23 21:29:58 UTC FreeBSD ports repository Modified files: games/wormux-devel Makefile distinfo pkg-plist Removed files: games/wormux-devel/files patch-src-character_character.cpp patch-src-particles_body_member.cpp patch-src-weapon_air_attack.cpp patch-src-weapon_mine.cpp Log: - Update to 20070823 Revision Changes Path 1.7 +1 -1 ports/games/wormux-devel/Makefile 1.5 +3 -3 ports/games/wormux-devel/distinfo 1.2 +0 -40 ports/games/wormux-devel/files/patch-src-character_character.cpp (dead) 1.2 +0 -12 ports/games/wormux-devel/files/patch-src-particles_body_member.cpp (dead) 1.2 +0 -12 ports/games/wormux-devel/files/patch-src-weapon_air_attack.cpp (dead) 1.2 +0 -24 ports/games/wormux-devel/files/patch-src-weapon_mine.cpp (dead) 1.6 +7 -1 ports/games/wormux-devel/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 23 21:31:46 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B467D16A421; Thu, 23 Aug 2007 21:31:46 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8933913C4B0; Thu, 23 Aug 2007 21:31:46 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NLVhgp075280; Thu, 23 Aug 2007 21:31:43 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NLVXLE075278; Thu, 23 Aug 2007 21:31:33 GMT (envelope-from miwi) Message-Id: <200708232131.l7NLVXLE075278@repoman.freebsd.org> From: Martin Wilke Date: Thu, 23 Aug 2007 21:31:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/irc/irssi-devel Makefile distinfo ports/irc/irssi-devel/files patch-irssi-version.h.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 21:31:46 -0000 miwi 2007-08-23 21:31:33 UTC FreeBSD ports repository Modified files: irc/irssi-devel Makefile distinfo irc/irssi-devel/files patch-irssi-version.h.in Log: - Update to 20070822 Revision Changes Path 1.101 +1 -1 ports/irc/irssi-devel/Makefile 1.56 +3 -3 ports/irc/irssi-devel/distinfo 1.11 +2 -2 ports/irc/irssi-devel/files/patch-irssi-version.h.in From owner-cvs-all@FreeBSD.ORG Thu Aug 23 21:33:13 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 900D716A418 for ; Thu, 23 Aug 2007 21:33:13 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx22.fluidhosting.com [204.14.89.5]) by mx1.freebsd.org (Postfix) with SMTP id 238D613C46B for ; Thu, 23 Aug 2007 21:33:13 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: (qmail 23120 invoked by uid 399); 23 Aug 2007 21:33:12 -0000 Received: from localhost (HELO lap.dougb.net) (dougb@dougbarton.us@127.0.0.1) by localhost with ESMTP; 23 Aug 2007 21:33:12 -0000 X-Originating-IP: 127.0.0.1 Date: Thu, 23 Aug 2007 14:33:10 -0700 (PDT) From: Doug Barton To: Martin Wilke In-Reply-To: <20070823212848.BAE16E6173@mail.unixfreunde.de> Message-ID: References: <200708232121.l7NLLJMX074561@repoman.freebsd.org> <20070823212848.BAE16E6173@mail.unixfreunde.de> X-message-flag: Outlook -- Not just for spreading viruses anymore! X-OpenPGP-Key-ID: 0xD5B2F0FB Organization: http://www.FreeBSD.org/ MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=us-ascii Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/security/pidgin-otr 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, 23 Aug 2007 21:33:13 -0000 On Thu, 23 Aug 2007, Martin Wilke wrote: > Maintainer Timeout after 3 days? Our policies said 2 Weeks. Sorry I didn't make that bit more clear. I sent him the same patch (minus the plist fix) on 6 August, and a reminder last week. No response at all. hth, Doug -- This .signature sanitized for your protection From owner-cvs-all@FreeBSD.ORG Thu Aug 23 21:51:35 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F1C5E16A41B; Thu, 23 Aug 2007 21:51:35 +0000 (UTC) (envelope-from tataz@tataz.chchile.org) Received: from smtp5-g19.free.fr (smtp5-g19.free.fr [212.27.42.35]) by mx1.freebsd.org (Postfix) with ESMTP id AC9D013C48A; Thu, 23 Aug 2007 21:51:35 +0000 (UTC) (envelope-from tataz@tataz.chchile.org) Received: from smtp5-g19.free.fr (localhost.localdomain [127.0.0.1]) by smtp5-g19.free.fr (Postfix) with ESMTP id B7631444B9; Thu, 23 Aug 2007 23:51:34 +0200 (CEST) Received: from tatooine.tataz.chchile.org (tataz.chchile.org [82.233.239.98]) by smtp5-g19.free.fr (Postfix) with ESMTP id A7A434425B; Thu, 23 Aug 2007 23:51:34 +0200 (CEST) Received: from obiwan.tataz.chchile.org (unknown [192.168.1.25]) by tatooine.tataz.chchile.org (Postfix) with ESMTP id DC0529B497; Thu, 23 Aug 2007 21:51:08 +0000 (UTC) Received: by obiwan.tataz.chchile.org (Postfix, from userid 1000) id CC2D1405B; Thu, 23 Aug 2007 23:51:08 +0200 (CEST) Date: Thu, 23 Aug 2007 23:51:08 +0200 From: Jeremie Le Hen To: Alexey Dokuchaev Message-ID: <20070823215108.GB50852@obiwan.tataz.chchile.org> References: <200708012048.l71KmKjg080201@repoman.freebsd.org> <20070802084423.GA93647@FreeBSD.org> <20070802084755.GA2797@tirith.brixandersen.dk> <20070803152914.GB33159@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070803152914.GB33159@FreeBSD.org> User-Agent: Mutt/1.5.15 (2007-04-06) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src UPDATING src/contrib/bind9/bin/named client.c src/contrib/bind9/lib/dns dispatch.c src/contrib/bind9/lib/dns/include/dns dispatch.h src/contrib/tcpdump print-bgp.c src/etc/rc.d jail src/sys/conf newvers.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 21:51:36 -0000 Hi Alexey, On Fri, Aug 03, 2007 at 03:29:14PM +0000, Alexey Dokuchaev wrote: > On Thu, Aug 02, 2007 at 10:47:56AM +0200, Henrik Brix Andersen wrote: > > On Thu, Aug 02, 2007 at 08:44:23AM +0000, Alexey Dokuchaev wrote: > > > What about RELENG_4, is it going to be fixed, or these bugs are not > > > applicable to it? It was not quite clear from the SA. > > > > RELENG_4 reached EOL on January 31st, 2007. > > It is still very popular branch. Given my recent experience with > RELENG_6, it's still the best one either. :-( FWIW, freebsd-eol@FreeBSD.org mailing-list aims to provide a peer to peer support for branches that reached their EOL. There hasn't been much traffic for now, but this thread might be a good opportunity to stir it up a bit :). Regards, -- Jeremie Le Hen < jeremie at le-hen dot org >< ttz at chchile dot org > From owner-cvs-all@FreeBSD.ORG Thu Aug 23 22:13:36 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 62E1F16A419; Thu, 23 Aug 2007 22:13:36 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4F99F13C46B; Thu, 23 Aug 2007 22:13:36 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NMDapS078861; Thu, 23 Aug 2007 22:13:36 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NMDasD078851; Thu, 23 Aug 2007 22:13:36 GMT (envelope-from thierry) Message-Id: <200708232213.l7NMDasD078851@repoman.freebsd.org> From: Thierry Thomas Date: Thu, 23 Aug 2007 22: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/textproc/libtextcat Makefile distinfo ports/textproc/libtextcat/files patch-src_Makefile.in patch-src_constants.h patch-src_fingerprint.c patch-src_fingerprint.h patch-src_textcat.c patch-src_textcat.h patch-src_utf8misc.c patch-src_utf8misc.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, 23 Aug 2007 22:13:36 -0000 thierry 2007-08-23 22:13:35 UTC FreeBSD ports repository Modified files: textproc/libtextcat Makefile distinfo textproc/libtextcat/files patch-src_Makefile.in Added files: textproc/libtextcat/files patch-src_constants.h patch-src_fingerprint.c patch-src_fingerprint.h patch-src_textcat.c patch-src_textcat.h patch-src_utf8misc.c patch-src_utf8misc.h Log: Import patches (imported from OpenOffice.org 2.3 by Fedora, at least in part). These patches, released under a BSD license, seem to improve the accuracy of language detection, especially those that don't have a Latin script. Revision Changes Path 1.3 +5 -0 ports/textproc/libtextcat/Makefile 1.2 +3 -0 ports/textproc/libtextcat/distinfo 1.2 +24 -2 ports/textproc/libtextcat/files/patch-src_Makefile.in 1.1 +45 -0 ports/textproc/libtextcat/files/patch-src_constants.h (new) 1.1 +164 -0 ports/textproc/libtextcat/files/patch-src_fingerprint.c (new) 1.1 +50 -0 ports/textproc/libtextcat/files/patch-src_fingerprint.h (new) 1.1 +97 -0 ports/textproc/libtextcat/files/patch-src_textcat.c (new) 1.1 +20 -0 ports/textproc/libtextcat/files/patch-src_textcat.h (new) 1.1 +135 -0 ports/textproc/libtextcat/files/patch-src_utf8misc.c (new) 1.1 +91 -0 ports/textproc/libtextcat/files/patch-src_utf8misc.h (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 23 22:13:37 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B3F316A468; Thu, 23 Aug 2007 22:13:37 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0179913C428; Thu, 23 Aug 2007 22:13:37 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NMDarI078902; Thu, 23 Aug 2007 22:13:36 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NMDaKo078901; Thu, 23 Aug 2007 22:13:36 GMT (envelope-from thierry) Message-Id: <200708232213.l7NMDaKo078901@repoman.freebsd.org> From: Thierry Thomas Date: Thu, 23 Aug 2007 22: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/deskutils/pinot Makefile distinfo ports/deskutils/pinot/files patch-boost-spirit-134 patch-gsoap279e X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 22:13:37 -0000 thierry 2007-08-23 22:13:36 UTC FreeBSD ports repository Modified files: deskutils/pinot Makefile distinfo Removed files: deskutils/pinot/files patch-boost-spirit-134 patch-gsoap279e Log: Upgrade to 0.76. Changelog at Revision Changes Path 1.17 +5 -2 ports/deskutils/pinot/Makefile 1.8 +3 -3 ports/deskutils/pinot/distinfo 1.2 +0 -22 ports/deskutils/pinot/files/patch-boost-spirit-134 (dead) 1.3 +0 -3481 ports/deskutils/pinot/files/patch-gsoap279e (dead) From owner-cvs-all@FreeBSD.ORG Thu Aug 23 22:30:15 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EE92416A418; Thu, 23 Aug 2007 22:30:15 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C613413C4A5; Thu, 23 Aug 2007 22:30:15 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NMUF84079682; Thu, 23 Aug 2007 22:30:15 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NMUFcR079681; Thu, 23 Aug 2007 22:30:15 GMT (envelope-from obrien) Message-Id: <200708232230.l7NMUFcR079681@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 23 Aug 2007 22:30: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/sys/conf files X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 22:30:16 -0000 obrien 2007-08-23 22:30:15 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/conf files Log: MFC: rev 1.1034: add warnings for additional GPL infecting sub-systems. Revision Changes Path 1.1031.2.67 +6 -3 src/sys/conf/files From owner-cvs-all@FreeBSD.ORG Thu Aug 23 22:38:36 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C9C416A417; Thu, 23 Aug 2007 22:38:36 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 03BFB13C46E; Thu, 23 Aug 2007 22:38:36 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NMcZM5080148; Thu, 23 Aug 2007 22:38:35 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NMcZME080147; Thu, 23 Aug 2007 22:38:35 GMT (envelope-from miwi) Message-Id: <200708232238.l7NMcZME080147@repoman.freebsd.org> From: Martin Wilke Date: Thu, 23 Aug 2007 22:38:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/groupoffice 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, 23 Aug 2007 22:38:36 -0000 miwi 2007-08-23 22:38:35 UTC FreeBSD ports repository Modified files: www/groupoffice Makefile distinfo pkg-plist Log: - Update to 2.17-stable-12 Submitted by: Aron Schlesinger via irc (maintainer) Revision Changes Path 1.5 +2 -2 ports/www/groupoffice/Makefile 1.5 +3 -3 ports/www/groupoffice/distinfo 1.3 +1 -0 ports/www/groupoffice/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 23 22:57:43 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5101E16A418; Thu, 23 Aug 2007 22:57:43 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2741913C458; Thu, 23 Aug 2007 22:57:43 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NMvhQ3081195; Thu, 23 Aug 2007 22:57:43 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NMvgZi081194; Thu, 23 Aug 2007 22:57:42 GMT (envelope-from obrien) Message-Id: <200708232257.l7NMvgZi081194@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 23 Aug 2007 22:57: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/vietnamese/vnless/files patch-02 patch-ch.c patch-decode.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 22:57:43 -0000 obrien 2007-08-23 22:57:41 UTC FreeBSD ports repository Modified files: vietnamese/vnless/files patch-02 Added files: vietnamese/vnless/files patch-ch.c patch-decode.c Log: Fix gcc4 build. Revision Changes Path 1.2 +7 -5 ports/vietnamese/vnless/files/patch-02 1.1 +9 -0 ports/vietnamese/vnless/files/patch-ch.c (new) 1.1 +9 -0 ports/vietnamese/vnless/files/patch-decode.c (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 23 23:03:37 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2857C16A417; Thu, 23 Aug 2007 23:03:37 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F3B0513C458; Thu, 23 Aug 2007 23:03:36 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NN3aqG082869; Thu, 23 Aug 2007 23:03:36 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NN3aOQ082868; Thu, 23 Aug 2007 23:03:36 GMT (envelope-from maho) Message-Id: <200708232303.l7NN3aOQ082868@repoman.freebsd.org> From: Maho Nakata Date: Thu, 23 Aug 2007 23:03: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/editors/openoffice.org-2-devel Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2007 23:03:37 -0000 maho 2007-08-23 23:03:36 UTC FreeBSD ports repository Modified files: editors/openoffice.org-2-devel Makefile distinfo Log: Update to SRC680_m226. Revision Changes Path 1.329 +2 -2 ports/editors/openoffice.org-2-devel/Makefile 1.145 +3 -3 ports/editors/openoffice.org-2-devel/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 23 23:16:16 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3615316A417; Thu, 23 Aug 2007 23:16:16 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0D76913C46E; Thu, 23 Aug 2007 23:16:16 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NNGFVA083549; Thu, 23 Aug 2007 23:16:15 GMT (envelope-from cy@repoman.freebsd.org) Received: (from cy@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NNGF4P083548; Thu, 23 Aug 2007 23:16:15 GMT (envelope-from cy) Message-Id: <200708232316.l7NNGF4P083548@repoman.freebsd.org> From: Cy Schubert Date: Thu, 23 Aug 2007 23: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: ports/security/libfwbuilder 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, 23 Aug 2007 23:16:16 -0000 cy 2007-08-23 23:16:15 UTC FreeBSD ports repository Modified files: security/libfwbuilder Makefile distinfo pkg-plist Log: Update 2.1.12 --> 2.1.13 Revision Changes Path 1.37 +1 -1 ports/security/libfwbuilder/Makefile 1.18 +3 -3 ports/security/libfwbuilder/distinfo 1.17 +1 -0 ports/security/libfwbuilder/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 23 23:16:37 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A096116A417; Thu, 23 Aug 2007 23:16:37 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7825713C4A7; Thu, 23 Aug 2007 23:16:37 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NNGb3h083587; Thu, 23 Aug 2007 23:16:37 GMT (envelope-from cy@repoman.freebsd.org) Received: (from cy@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NNGbC1083586; Thu, 23 Aug 2007 23:16:37 GMT (envelope-from cy) Message-Id: <200708232316.l7NNGbC1083586@repoman.freebsd.org> From: Cy Schubert Date: Thu, 23 Aug 2007 23:16: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/security/fwbuilder 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, 23 Aug 2007 23:16:37 -0000 cy 2007-08-23 23:16:37 UTC FreeBSD ports repository Modified files: security/fwbuilder Makefile distinfo pkg-plist Log: Update 2.1.12 --> 2.1.13 Revision Changes Path 1.37 +1 -1 ports/security/fwbuilder/Makefile 1.19 +3 -3 ports/security/fwbuilder/distinfo 1.18 +2 -0 ports/security/fwbuilder/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 23 23:53:59 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C52BA16A420; Thu, 23 Aug 2007 23:53:59 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9C01C13C45B; Thu, 23 Aug 2007 23:53:59 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7NNrxFx086007; Thu, 23 Aug 2007 23:53:59 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7NNrxqJ086006; Thu, 23 Aug 2007 23:53:59 GMT (envelope-from obrien) Message-Id: <200708232353.l7NNrxqJ086006@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 23 Aug 2007 23: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: ports/net/rdesktop/files patch-rdpsnd_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: Thu, 23 Aug 2007 23:53:59 -0000 obrien 2007-08-23 23:53:59 UTC FreeBSD ports repository Added files: net/rdesktop/files patch-rdpsnd_oss.c Log: Upon server-initiated closure of the sound device, rdesktop(1) hangs in a tight loop if the sound packet buffer is not empty. This usually occurs after a long playback, and is indicated by an endless stream of "ERROR: select: Bad file descriptor" messages on stderr. Fix: forcibly empty the sound packet buffer after closing the sound device. PR: 115692 Submitted by: "Eugene M. Kim" Revision Changes Path 1.1 +57 -0 ports/net/rdesktop/files/patch-rdpsnd_oss.c (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 24 00:35:19 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 61D7016A417; Fri, 24 Aug 2007 00:35:19 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 38B2A13C458; Fri, 24 Aug 2007 00:35:19 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7O0ZJxO089549; Fri, 24 Aug 2007 00:35:19 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7O0ZJSY089548; Fri, 24 Aug 2007 00:35:19 GMT (envelope-from rrs) Message-Id: <200708240035.l7O0ZJSY089548@repoman.freebsd.org> From: Randall Stewart Date: Fri, 24 Aug 2007 00:35:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/netstat sctp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2007 00:35:19 -0000 rrs 2007-08-24 00:35:18 UTC FreeBSD src repository Modified files: usr.bin/netstat sctp.c Log: - Fix typo in netstat's display of Nagle algorithm - refer to the RFC. Submitted by: bruce@cran.org.uk Approved by: re@freebsd.org (Bruce Mah) Revision Changes Path 1.6 +2 -2 src/usr.bin/netstat/sctp.c From owner-cvs-all@FreeBSD.ORG Fri Aug 24 00:53:53 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB92B16A419; Fri, 24 Aug 2007 00:53:53 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B722F13C45B; Fri, 24 Aug 2007 00:53:53 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7O0rrhV099179; Fri, 24 Aug 2007 00:53:53 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7O0rrEl099178; Fri, 24 Aug 2007 00:53:53 GMT (envelope-from rrs) Message-Id: <200708240053.l7O0rrEl099178@repoman.freebsd.org> From: Randall Stewart Date: Fri, 24 Aug 2007 00:53:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet sctp.h sctp_asconf.c sctp_auth.c sctp_constants.h sctp_header.h sctp_indata.c sctp_input.c sctp_os.h sctp_os_bsd.h sctp_output.c sctp_pcb.c sctp_pcb.h sctp_peeloff.c sctp_structs.h sctp_sysctl.c sctp_sysctl.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, 24 Aug 2007 00:53:53 -0000 rrs 2007-08-24 00:53:53 UTC FreeBSD src repository Modified files: sys/netinet sctp.h sctp_asconf.c sctp_auth.c sctp_constants.h sctp_header.h sctp_indata.c sctp_input.c sctp_os.h sctp_os_bsd.h sctp_output.c sctp_pcb.c sctp_pcb.h sctp_peeloff.c sctp_structs.h sctp_sysctl.c sctp_sysctl.h sctp_timer.c sctp_usrreq.c sctp_var.h sctputil.c sctputil.h sys/netinet6 sctp6_usrreq.c sys/sys mbuf.h Log: - Fix address add handling to clear cached routes and source addresses when peer acks the add in case the routing table changes. - Fix sctp_lower_sosend to send shutdown chunk for mbuf send case when sndlen = 0 and sinfoflag = SCTP_EOF - Fix sctp_lower_sosend for SCTP_ABORT mbuf send case with null data, So that it does not send the "null" data mbuf out and cause it to get freed twice. - Fix so auto-asconf sysctl actually effect the socket's asconf state. - Do not allow SCTP_AUTO_ASCONF option to be used on subset bound sockets. - Memset bug in sctp_output.c (arguments were reversed) submitted found and reported by Dave Jones (davej@codemonkey.org.uk). - PD-API point needs to be invoked >= not just > to conform to socket api draft this fixes sctp_indata.c in the two places need to be >=. - move M_NOTIFICATION to use M_PROTO5. - PEER_ADDR_PARAMS did not fail properly if you specify an address that is not in the association with a valid assoc_id. This meant you got or set the stcb level values instead of the destination you thought you were going to get/set. Now validate if the stcb is non-null and the net is NULL that the sa_family is set and the address is unspecified otherwise return an error. - The thread based iterator could crash if associations were freed at the exact time it was running. rework the worker thread to use the increment/decrement to prevent this and no longer use the markers that the timer based iterator uses. - Fix the memleak in sctp_add_addr_to_vrf() for the case when it is detected that ifa is already pointing to a ifn. - Fix it so that if someone is so insane that they drop the send window below the minimal add mark, they still can send. - Changed all state for associations to use mask safe macro. - During front states in association freeing in sctp_inpcbfree, we had a locking problem where locks were not in place where they should have been. - Free association calls were not testing the return value in sctp_inpcb_free() properly... others should be cast void returns where we don't care about the return value. - If a reference count is held on an assoc, even from the "force free" we should not do the actual free.. but instead let the timer free it. - When we enter sctp_input(), if the SCTP_ASOC_ABOUT_TO_BE_FREED flag is set, we must NOT process the packet but handle it like ootb. This is because while freeing an assoc we release the locks to get all the higher order locks so we can purge all the hash tables. This leaves a hole if a packet comes in just at that point. Now sctp_common_input_processing() will call the ootb code in such a case. - Change MBUF M_NOTIFICATION to use M_PROTO5 (per Sam L). This makes it so we don't have a conflict (I think this is a covertity change). We made this change AFTER some conversation and looking to make sure that M_PROTO5 does not have a problem between SCTP and the 802.11 stuff (which is the only other place its used). - Fixed lock order reversal and missing atomic protection around locked_tcb during association lookup and the 1-2-1 model. - Added debug to source address selection. - V6 output must always do checksum even for loopback. - Remove more locks around inp that are not needed for an atomically added/subtracted ref count. - slight optimization in the way we zero the array in sctp_sack_check() - It was possible to respond to a ABORT() with bad checksum with a PKT-DROP. This lead to a PKT-DROP/ABORT war. Add code to NOT send a PKT-DROP to any ABORT(). - Add an option for local logging (useful for macintosh or when you need better performing during debugging). Note no commands are here to get the log info, you must just use kgdb. - The timer code needs to be aware of if it needs to call sctp_sack_check() to slide the maps and adjust the cum-ack. This is because it may be out of sync cum-ack wise. - Added threshold managment logging. - If the user picked just the right size, that just filled the send window minus one mtu, we would enter a forever loop not copying and at the same time not blocking. Change from < to <= solves this. - Sysctl added to control the fragment interleave level which defaults to 1. - My rwnd control was not being used to control the rwnd properly (we did not add and subtract to it :-() this is now fixed so we handle small messages (1 byte etc) better to bring our rwnd down more slowly. Approved by: re@freebsd.org (Bruce Mah) Revision Changes Path 1.18 +2 -0 src/sys/netinet/sctp.h 1.25 +13 -1 src/sys/netinet/sctp_asconf.c 1.16 +1 -1 src/sys/netinet/sctp_auth.c 1.26 +12 -1 src/sys/netinet/sctp_constants.h 1.6 +0 -1 src/sys/netinet/sctp_header.h 1.40 +36 -22 src/sys/netinet/sctp_indata.c 1.57 +120 -47 src/sys/netinet/sctp_input.c 1.9 +1 -0 src/sys/netinet/sctp_os.h 1.31 +19 -2 src/sys/netinet/sctp_os_bsd.h 1.50 +196 -67 src/sys/netinet/sctp_output.c 1.53 +97 -22 src/sys/netinet/sctp_pcb.c 1.28 +1 -0 src/sys/netinet/sctp_pcb.h 1.14 +13 -3 src/sys/netinet/sctp_peeloff.c 1.23 +3 -3 src/sys/netinet/sctp_structs.h 1.13 +8 -0 src/sys/netinet/sctp_sysctl.c 1.9 +15 -3 src/sys/netinet/sctp_sysctl.h 1.27 +15 -1 src/sys/netinet/sctp_timer.c 1.43 +241 -30 src/sys/netinet/sctp_usrreq.c 1.17 +3 -10 src/sys/netinet/sctp_var.h 1.56 +124 -40 src/sys/netinet/sctputil.c 1.27 +5 -0 src/sys/netinet/sctputil.h 1.37 +53 -14 src/sys/netinet6/sctp6_usrreq.c 1.215 +1 -1 src/sys/sys/mbuf.h From owner-cvs-all@FreeBSD.ORG Fri Aug 24 01:24:54 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6E25F16A419; Fri, 24 Aug 2007 01:24:54 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5C1A913C46B; Fri, 24 Aug 2007 01:24:54 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7O1Ost4002282; Fri, 24 Aug 2007 01:24:54 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7O1Os5p002281; Fri, 24 Aug 2007 01:24:54 GMT (envelope-from brooks) Message-Id: <200708240124.l7O1Os5p002281@repoman.freebsd.org> From: Brooks Davis Date: Fri, 24 Aug 2007 01:24:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/ganglia-monitor-core Makefile distinfo ports/sysutils/ganglia-monitor-core/files patch-libmetrics_freebsd_metrics.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2007 01:24:54 -0000 brooks 2007-08-24 01:24:54 UTC FreeBSD ports repository Modified files: sysutils/ganglia-monitor-core Makefile distinfo Added files: sysutils/ganglia-monitor-core/files patch-libmetrics_freebsd_metrics.c Log: - Upgrade to ganglia 3.0.4 [1] - Fix support for large memory systems (hw.physmem is a u_long not a long) [2] - Make portlint happier [3] PR: ports/115362 [1], some of [3] Submitted by: Michael Fuckner [1], some of [3] Clement Laforet [2] Revision Changes Path 1.22 +4 -5 ports/sysutils/ganglia-monitor-core/Makefile 1.10 +3 -3 ports/sysutils/ganglia-monitor-core/distinfo 1.1 +14 -0 ports/sysutils/ganglia-monitor-core/files/patch-libmetrics_freebsd_metrics.c (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 24 01:25:39 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B377D16A41A; Fri, 24 Aug 2007 01:25:39 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A0B2C13C45B; Fri, 24 Aug 2007 01:25:39 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7O1Pd2s002428; Fri, 24 Aug 2007 01:25:39 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7O1PdVS002427; Fri, 24 Aug 2007 01:25:39 GMT (envelope-from brooks) Message-Id: <200708240125.l7O1PdVS002427@repoman.freebsd.org> From: Brooks Davis Date: Fri, 24 Aug 2007 01:25:39 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/ganglia-webfrontend Makefile distinfo ports/sysutils/ganglia-webfrontend/files patch-cluster__view.php patch-ganglia.php pkg-message.in version.php X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2007 01:25:39 -0000 brooks 2007-08-24 01:25:39 UTC FreeBSD ports repository Modified files: sysutils/ganglia-webfrontend Makefile distinfo sysutils/ganglia-webfrontend/files pkg-message.in Added files: sysutils/ganglia-webfrontend/files version.php Removed files: sysutils/ganglia-webfrontend/files patch-cluster__view.php patch-ganglia.php Log: - Upgrade to ganglia 3.0.4 PR: ports/115363 Submitted by: Michael Fuckner Revision Changes Path 1.13 +4 -5 ports/sysutils/ganglia-webfrontend/Makefile 1.7 +3 -3 ports/sysutils/ganglia-webfrontend/distinfo 1.2 +0 -22 ports/sysutils/ganglia-webfrontend/files/patch-cluster__view.php (dead) 1.2 +0 -16 ports/sysutils/ganglia-webfrontend/files/patch-ganglia.php (dead) 1.2 +2 -2 ports/sysutils/ganglia-webfrontend/files/pkg-message.in 1.1 +11 -0 ports/sysutils/ganglia-webfrontend/files/version.php (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 24 02:55:50 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C9BE816A418; Fri, 24 Aug 2007 02:55:50 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A062E13C4A5; Fri, 24 Aug 2007 02:55:50 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7O2toKX008610; Fri, 24 Aug 2007 02:55:50 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7O2toVC008609; Fri, 24 Aug 2007 02:55:50 GMT (envelope-from bmah) Message-Id: <200708240255.l7O2toVC008609@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 24 Aug 2007 02:55:50 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/share/sgml man-refs.ent X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2007 02:55:50 -0000 bmah 2007-08-24 02:55:50 UTC FreeBSD doc repository Modified files: share/sgml man-refs.ent Log: Add entities for coretemp(4) and ichwd(4). Revision Changes Path 1.437 +2 -0 doc/share/sgml/man-refs.ent From owner-cvs-all@FreeBSD.ORG Fri Aug 24 03:01:53 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AEFD216A41B; Fri, 24 Aug 2007 03:01:53 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8369313C467; Fri, 24 Aug 2007 03:01:53 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7O31reL009170; Fri, 24 Aug 2007 03:01:53 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7O31rpP009169; Fri, 24 Aug 2007 03:01:53 GMT (envelope-from rafan) Message-Id: <200708240301.l7O31rpP009169@repoman.freebsd.org> From: Rong-En Fan Date: Fri, 24 Aug 2007 03: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/security/bdc Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2007 03:01:53 -0000 rafan 2007-08-24 03:01:53 UTC FreeBSD ports repository Modified files: security/bdc Makefile Log: - Update download and license url PR: ports/115754 Submitted by: Adi Pircalabu (maintainer) Revision Changes Path 1.7 +2 -2 ports/security/bdc/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 24 04:12:09 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3E31B16A419; Fri, 24 Aug 2007 04:12:09 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 148E513C459; Fri, 24 Aug 2007 04:12:09 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7O4C8Io015634; Fri, 24 Aug 2007 04:12:08 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7O4C8WF015633; Fri, 24 Aug 2007 04:12:08 GMT (envelope-from chinsan) Message-Id: <200708240412.l7O4C8WF015633@repoman.freebsd.org> From: Chin-San Huang Date: Fri, 24 Aug 2007 04:12:08 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/zh_TW Makefile www/zh_TW/docs Makefile books.sgml webresources.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, 24 Aug 2007 04:12:09 -0000 chinsan 2007-08-24 04:12:08 UTC FreeBSD doc repository Modified files: zh_TW Makefile Added files: zh_TW/docs Makefile books.sgml webresources.sgml Log: - More translation. Obtained from: The FreeBSD Traditional Chinese project Revision Changes Path 1.5 +12 -1 www/zh_TW/Makefile 1.1 +16 -0 www/zh_TW/docs/Makefile (new) 1.1 +412 -0 www/zh_TW/docs/books.sgml (new) 1.1 +111 -0 www/zh_TW/docs/webresources.sgml (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 24 05:01:10 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E107916A41A; Fri, 24 Aug 2007 05:01:10 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B7E7713C459; Fri, 24 Aug 2007 05:01:10 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7O51A9d030640; Fri, 24 Aug 2007 05:01:10 GMT (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7O51ATm030637; Fri, 24 Aug 2007 05:01:10 GMT (envelope-from fjoe) Message-Id: <200708240501.l7O51ATm030637@repoman.freebsd.org> From: Max Khon Date: Fri, 24 Aug 2007 05:01: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/archivers/upx/files patch-src-miniacc.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, 24 Aug 2007 05:01:11 -0000 fjoe 2007-08-24 05:01:09 UTC FreeBSD ports repository Added files: archivers/upx/files patch-src-miniacc.h Log: Fix build on IA64. Revision Changes Path 1.1 +11 -0 ports/archivers/upx/files/patch-src-miniacc.h (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 24 05:44:19 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A9A5C16A417; Fri, 24 Aug 2007 05:44:19 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 805C313C458; Fri, 24 Aug 2007 05:44:19 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7O5iJCk034292; Fri, 24 Aug 2007 05:44:19 GMT (envelope-from lbr@repoman.freebsd.org) Received: (from lbr@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7O5iJf1034291; Fri, 24 Aug 2007 05:44:19 GMT (envelope-from lbr) Message-Id: <200708240544.l7O5iJf1034291@repoman.freebsd.org> From: Lars Balker Rasmussen Date: Fri, 24 Aug 2007 05: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/devel/p5-Config-Any 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, 24 Aug 2007 05:44:19 -0000 lbr 2007-08-24 05:44:19 UTC FreeBSD ports repository Modified files: devel/p5-Config-Any Makefile distinfo pkg-plist Log: Update to 0.08 Revision Changes Path 1.3 +2 -2 ports/devel/p5-Config-Any/Makefile 1.3 +3 -3 ports/devel/p5-Config-Any/distinfo 1.2 +3 -0 ports/devel/p5-Config-Any/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 24 05:48:16 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 14DFE16A417; Fri, 24 Aug 2007 05:48:16 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E07AF13C457; Fri, 24 Aug 2007 05:48:15 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7O5mFs9034461; Fri, 24 Aug 2007 05:48:15 GMT (envelope-from lbr@repoman.freebsd.org) Received: (from lbr@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7O5mF9c034460; Fri, 24 Aug 2007 05:48:15 GMT (envelope-from lbr) Message-Id: <200708240548.l7O5mF9c034460@repoman.freebsd.org> From: Lars Balker Rasmussen Date: Fri, 24 Aug 2007 05: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/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: Fri, 24 Aug 2007 05:48:16 -0000 lbr 2007-08-24 05:48:15 UTC FreeBSD ports repository Modified files: www/p5-Catalyst-Plugin-ConfigLoader Makefile distinfo Log: Update to 0.16 Revision Changes Path 1.7 +3 -4 ports/www/p5-Catalyst-Plugin-ConfigLoader/Makefile 1.7 +3 -3 ports/www/p5-Catalyst-Plugin-ConfigLoader/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 24 07:26:18 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C02B916A417; Fri, 24 Aug 2007 07:26:18 +0000 (UTC) (envelope-from Cy.Schubert@komquats.com) Received: from spqr.komquats.com (S01060002b31a8191.gv.shawcable.net [24.68.216.215]) by mx1.freebsd.org (Postfix) with ESMTP id 75B0813C45A; Fri, 24 Aug 2007 07:26:18 +0000 (UTC) (envelope-from Cy.Schubert@komquats.com) Received: from cwsys.cwsent.com (cwsys [10.1.1.1]) by spqr.komquats.com (Postfix) with ESMTP id 1462B279BB; Fri, 24 Aug 2007 00:26:18 -0700 (PDT) Received: from cwsys (localhost [127.0.0.1]) by cwsys.cwsent.com (8.14.1/8.14.1) with ESMTP id l7O7QHJn013572; Fri, 24 Aug 2007 00:26:17 -0700 (PDT) (envelope-from Cy.Schubert@komquats.com) Message-Id: <200708240726.l7O7QHJn013572@cwsys.cwsent.com> X-Mailer: exmh version 2.7.2 01/07/2005 with nmh-1.2 From: Cy Schubert X-os: FreeBSD X-Sender: cy@cwsent.com X-URL: http://www.komquats.com/ To: Gerald Pfeifer In-Reply-To: Message from Gerald Pfeifer of "Thu, 23 Aug 2007 01:03:25 +0200." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 24 Aug 2007 00:26:17 -0700 Sender: Cy.Schubert@komquats.com Cc: cvs-ports@FreeBSD.org, ports-committers@FreeBSD.org, cvs-all@FreeBSD.org, Cy Schubert Subject: Re: cvs commit: ports/lang/gcc43 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Cy Schubert List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2007 07:26:18 -0000 In message , Gerald Pfeifer writes: > On Sun, 12 Aug 2007, Cy Schubert wrote: > >> Log: > >> Add missing note on the CONFLICTS with lang/gcc295. > > Similar changes should be made to the gcc41 and gcc42 ports as these > > ports had the same problem. > > Yup. Done now for lang/gcc41 and planned for the next update of > lang/gcc42. Thanks. -- Cheers, Cy Schubert FreeBSD UNIX: Web: http://www.FreeBSD.org e**(i*pi)+1=0 From owner-cvs-all@FreeBSD.ORG Fri Aug 24 07:53:47 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E338F16A417; Fri, 24 Aug 2007 07:53:47 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D091213C468; Fri, 24 Aug 2007 07:53:47 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7O7rl1p044320; Fri, 24 Aug 2007 07:53:47 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7O7rlOq044319; Fri, 24 Aug 2007 07:53:47 GMT (envelope-from vanilla) Message-Id: <200708240753.l7O7rlOq044319@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Fri, 24 Aug 2007 07:53: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/spserver Makefile distinfo pkg-plist ports/net/spserver/files patch-Makefile patch-event_msgqueue.c patch-openssl_Makefile patch-spbuffer.cpp patch-spdispatcher.cpp patch-speventcb.cpp patch-spexecutor.cpp patch-spiochannel.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, 24 Aug 2007 07:53:48 -0000 vanilla 2007-08-24 07:53:47 UTC FreeBSD ports repository Modified files: net/spserver Makefile distinfo pkg-plist net/spserver/files patch-Makefile patch-event_msgqueue.c patch-spbuffer.cpp patch-spdispatcher.cpp patch-speventcb.cpp patch-spexecutor.cpp patch-spiochannel.cpp patch-spioutils.cpp patch-splfserver.cpp patch-spserver.cpp patch-spsession.cpp patch-spthreadpool.cpp patch-testhttpmsg.cpp patch-teststress.cpp patch-testthreadpool.cpp Added files: net/spserver/files patch-openssl_Makefile patch-spserver_Makefile Log: Upgrade to 0.8. Revision Changes Path 1.5 +9 -4 ports/net/spserver/Makefile 1.5 +3 -3 ports/net/spserver/distinfo 1.2 +20 -13 ports/net/spserver/files/patch-Makefile 1.2 +2 -2 ports/net/spserver/files/patch-event_msgqueue.c 1.1 +20 -0 ports/net/spserver/files/patch-openssl_Makefile (new) 1.2 +2 -2 ports/net/spserver/files/patch-spbuffer.cpp 1.2 +6 -6 ports/net/spserver/files/patch-spdispatcher.cpp 1.4 +2 -2 ports/net/spserver/files/patch-speventcb.cpp 1.2 +3 -3 ports/net/spserver/files/patch-spexecutor.cpp 1.2 +2 -2 ports/net/spserver/files/patch-spiochannel.cpp 1.2 +2 -2 ports/net/spserver/files/patch-spioutils.cpp 1.2 +4 -4 ports/net/spserver/files/patch-splfserver.cpp 1.2 +6 -6 ports/net/spserver/files/patch-spserver.cpp 1.1 +26 -0 ports/net/spserver/files/patch-spserver_Makefile (new) 1.2 +4 -4 ports/net/spserver/files/patch-spsession.cpp 1.2 +3 -3 ports/net/spserver/files/patch-spthreadpool.cpp 1.2 +2 -2 ports/net/spserver/files/patch-testhttpmsg.cpp 1.2 +2 -2 ports/net/spserver/files/patch-teststress.cpp 1.2 +2 -2 ports/net/spserver/files/patch-testthreadpool.cpp 1.5 +3 -0 ports/net/spserver/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 24 09:15:18 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9460716A417; Fri, 24 Aug 2007 09:15:18 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from pittgoth.com (pittgoth.com [205.134.163.206]) by mx1.freebsd.org (Postfix) with ESMTP id 53ABF13C480; Fri, 24 Aug 2007 09:15:18 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from localhost.fbsdsecure.org (net-ix.gw.ai.net [205.134.160.6]) (authenticated bits=0) by pittgoth.com (8.13.6/8.13.6) with ESMTP id l7O9FHUc001313 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 24 Aug 2007 05:15:17 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Fri, 24 Aug 2007 05:14:46 -0400 From: Tom Rhodes To: "Ben Kaduk" Message-Id: <20070824051446.3e50a3bd.trhodes@FreeBSD.org> In-Reply-To: <47d0403c0708230717n6f81899bodd793547df516103@mail.gmail.com> References: <200708222129.l7MLTcn9083965@repoman.freebsd.org> <47d0403c0708230717n6f81899bodd793547df516103@mail.gmail.com> X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: trhodes@FreeBSD.org, doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/books/handbook/audit chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2007 09:15:18 -0000 On Thu, 23 Aug 2007 10:17:30 -0400 "Ben Kaduk" wrote: > On 8/22/07, Tom Rhodes wrote: > > trhodes 2007-08-22 21:29:38 UTC > > > > FreeBSD doc repository > > > > Modified files: > > en_US.ISO8859-1/books/handbook/audit chapter.sgml > > Log: > > Remove duplicate word. > > > > Found by: ds > > > > Revision Changes Path > > 1.29 +1 -1 doc/en_US.ISO8859-1/books/handbook/audit/chapter.sgml > > @@ -235,7 +235,7 @@ requirements. --> > > audit_event - Textual names and > descriptions of system audit events, as well as a list of which > - classes each event in in. > + classes each event in. > > > Isn't that a typo, not a duplicate word (i.e. ``in in'' ==> ``is in'')? Re-reading it, I guess it does make more sense to say ``is in'' and I will be reading this chapter over again soon. It will be fixed along with whatever else I find. Thanks, -- Tom Rhodes From owner-cvs-all@FreeBSD.ORG Fri Aug 24 09:40:35 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A259B16A417; Fri, 24 Aug 2007 09:40:35 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7B54813C457; Fri, 24 Aug 2007 09:40:35 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7O9eZlN061307; Fri, 24 Aug 2007 09:40:35 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7O9eZIG061306; Fri, 24 Aug 2007 09:40:35 GMT (envelope-from flz) Message-Id: <200708240940.l7O9eZIG061306@repoman.freebsd.org> From: Florent Thoumie Date: Fri, 24 Aug 2007 09:40:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-p2p/ctorrent Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2007 09:40:35 -0000 flz 2007-08-24 09:40:35 UTC FreeBSD ports repository Modified files: net-p2p/ctorrent Makefile Log: Add UserGuide to the list of installed documentation files. Suggested by: John E Hein Revision Changes Path 1.16 +2 -1 ports/net-p2p/ctorrent/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 24 09:44:13 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8FA9016A418; Fri, 24 Aug 2007 09:44:13 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 680C013C46E; Fri, 24 Aug 2007 09:44:13 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7O9iDGw061599; Fri, 24 Aug 2007 09:44:13 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7O9iDMr061598; Fri, 24 Aug 2007 09:44:13 GMT (envelope-from flz) Message-Id: <200708240944.l7O9iDMr061598@repoman.freebsd.org> From: Florent Thoumie Date: Fri, 24 Aug 2007 09: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/x11-drivers/xf86-video-nv 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, 24 Aug 2007 09:44:13 -0000 flz 2007-08-24 09:44:12 UTC FreeBSD ports repository Modified files: x11-drivers/xf86-video-nv Makefile distinfo Log: Update x11-drivers/xf86-video-nv to 2.1.3. Revision Changes Path 1.3 +1 -1 ports/x11-drivers/xf86-video-nv/Makefile 1.3 +3 -3 ports/x11-drivers/xf86-video-nv/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 24 10:34:31 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 84FD416A419; Fri, 24 Aug 2007 10:34:31 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3F78013C45E; Fri, 24 Aug 2007 10:34:31 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OAYVIr065552; Fri, 24 Aug 2007 10:34:31 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OAYVkv065551; Fri, 24 Aug 2007 10:34:31 GMT (envelope-from thompsa) Message-Id: <200708241034.l7OAYVkv065551@repoman.freebsd.org> From: Andrew Thompson Date: Fri, 24 Aug 2007 10:34: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/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: Fri, 24 Aug 2007 10:34:31 -0000 thompsa 2007-08-24 10:34:30 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/net bridgestp.c bridgestp.h Log: MFC r1.38,1.39 - Ensure the path cost does not exceed 65535 in legacy STP mode. - If the path cost is calculated when the link is down, set a pending flag so it is calculated again when it comes back up. - To not use 00:00:00:00:00:00 as the bridge id, all interfaces are scanned and the lowest number wins. All zeros is too low. - If the STP state machine is stopped then clear the bridge-id and root-id. Revision Changes Path 1.3.2.13 +41 -8 src/sys/net/bridgestp.c 1.12.2.3 +1 -0 src/sys/net/bridgestp.h From owner-cvs-all@FreeBSD.ORG Fri Aug 24 10:39:19 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 813E716A419; Fri, 24 Aug 2007 10:39:19 +0000 (UTC) (envelope-from vd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5ACE513C469; Fri, 24 Aug 2007 10:39:19 +0000 (UTC) (envelope-from vd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OAdJax065748; Fri, 24 Aug 2007 10:39:19 GMT (envelope-from vd@repoman.freebsd.org) Received: (from vd@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OAdJoY065747; Fri, 24 Aug 2007 10:39:19 GMT (envelope-from vd) Message-Id: <200708241039.l7OAdJoY065747@repoman.freebsd.org> From: Vasil Dimov Date: Fri, 24 Aug 2007 10:39: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/duplicity 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, 24 Aug 2007 10:39:19 -0000 vd 2007-08-24 10:39:18 UTC FreeBSD ports repository Modified files: sysutils/duplicity Makefile distinfo pkg-plist Log: * Upgrade sysutils/duplicity from 0.4.2 to 0.4.3 * Add conditional dependency to misc/py-pexpect Sample patches from rafan@ and from Peter Schuller [1] PR: ports/115762 [1] Submitted by: Peter Schuller [1] Revision Changes Path 1.12 +16 -6 ports/sysutils/duplicity/Makefile 1.6 +3 -3 ports/sysutils/duplicity/distinfo 1.2 +0 -3 ports/sysutils/duplicity/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 24 12:21:32 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7255D16A468; Fri, 24 Aug 2007 12:21:32 +0000 (UTC) (envelope-from rpaulo@fnop.net) Received: from core.fnop.net (mx.fnop.net [82.102.11.82]) by mx1.freebsd.org (Postfix) with ESMTP id DE43E13C442; Fri, 24 Aug 2007 12:21:31 +0000 (UTC) (envelope-from rpaulo@fnop.net) Received: from core.fnop.net (mx.fnop.net [82.102.11.82]) by core.fnop.net (Postfix) with ESMTP id C9957691005; Fri, 24 Aug 2007 13:24:46 +0100 (WEST) Received: by core.fnop.net (Postfix, from userid 1015) id 85848691015; Fri, 24 Aug 2007 13:24:46 +0100 (WEST) X-Spam-Checker-Version: SpamAssassin 3.1.7 (2006-10-05) on core.fnop.net X-Spam-Level: X-Spam-Status: No, score=-0.3 required=5.0 tests=AWL,BAYES_00, FORGED_RCVD_HELO,RCVD_IN_XBL autolearn=no version=3.1.7 Received: from epsilon.mshome.net (62.169.100.218.rev.optimus.pt [62.169.100.218]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by core.fnop.net (Postfix) with ESMTP id 1E797691005; Fri, 24 Aug 2007 13:24:41 +0100 (WEST) Message-ID: <46CECD3E.1040302@fnop.net> Date: Fri, 24 Aug 2007 13:21:18 +0100 From: Rui Paulo User-Agent: Thunderbird 2.0.0.6 (Macintosh/20070728) MIME-Version: 1.0 To: Nate Lawson References: <200708231053.l7NAr3Pc088160@repoman.freebsd.org> <86zm0izfhf.fsf@ds4.des.no> <46CDA669.8080601@root.org> In-Reply-To: <46CDA669.8080601@root.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Scanned: ClamAV using ClamSMTP Cc: =?UTF-8?B?RGFnLUVybGluZyBTbcO4cmdyYXY=?= , src-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/coretemp coretemp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2007 12:21:32 -0000 Nate Lawson wrote: > Dag-Erling Smørgrav wrote: >> Dag-Erling Smorgrav writes: >>> Log: >>> Style nits + more reliable Tj(max) detection + improved reporting of >>> critical temperature + sched_unbind() after rdmsr + initialize sc_dev. >> I should note that the driver currently only checks for (and reports) a >> critical temperature when you read the sysctl; if you want to use devd >> to react to a critical temperature, you need to set up a cron job to >> poll dev.cpu.N.temperature. Hopefully, a future version of the driver >> will install an interrupt handler and activate the temperature threshold >> interrupts. >> >> DES > > You could also create a polling thread that runs every 10 seconds. We > have that for acpi_thermal currently. Will do that when I find time. Regards. -- Rui Paulo From owner-cvs-all@FreeBSD.ORG Fri Aug 24 13:20:03 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5867416A417; Fri, 24 Aug 2007 13:20:03 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 32E8113C459; Fri, 24 Aug 2007 13:20:03 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7ODK302087294; Fri, 24 Aug 2007 13:20:03 GMT (envelope-from nivit@repoman.freebsd.org) Received: (from nivit@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7ODK2dL087285; Fri, 24 Aug 2007 13:20:02 GMT (envelope-from nivit) Message-Id: <200708241320.l7ODK2dL087285@repoman.freebsd.org> From: Nicola Vitale Date: Fri, 24 Aug 2007 13:20:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/editors/morla 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, 24 Aug 2007 13:20:03 -0000 nivit 2007-08-24 13:20:02 UTC FreeBSD ports repository Modified files: editors/morla Makefile distinfo pkg-plist Log: - Update to 0.13 - Change MASTER_SITES - Add USE_LDCONFIG Revision Changes Path 1.11 +6 -4 ports/editors/morla/Makefile 1.7 +3 -3 ports/editors/morla/distinfo 1.2 +7 -1 ports/editors/morla/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 24 13:21:24 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6CFFE16A419; Fri, 24 Aug 2007 13:21:24 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 472D913C45D; Fri, 24 Aug 2007 13:21:24 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7ODLO2L087515; Fri, 24 Aug 2007 13:21:24 GMT (envelope-from nivit@repoman.freebsd.org) Received: (from nivit@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7ODLOfQ087514; Fri, 24 Aug 2007 13:21:24 GMT (envelope-from nivit) Message-Id: <200708241321.l7ODLOfQ087514@repoman.freebsd.org> From: Nicola Vitale Date: Fri, 24 Aug 2007 13:21: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/jdraw 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, 24 Aug 2007 13:21:24 -0000 nivit 2007-08-24 13:21:24 UTC FreeBSD ports repository Modified files: graphics/jdraw pkg-descr Log: - Change web site URL in pkg-descr Revision Changes Path 1.2 +1 -1 ports/graphics/jdraw/pkg-descr From owner-cvs-all@FreeBSD.ORG Fri Aug 24 13:22:46 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8CBD216A417; Fri, 24 Aug 2007 13:22:46 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 66EB013C442; Fri, 24 Aug 2007 13:22:46 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7ODMk2M087656; Fri, 24 Aug 2007 13:22:46 GMT (envelope-from nivit@repoman.freebsd.org) Received: (from nivit@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7ODMkoU087655; Fri, 24 Aug 2007 13:22:46 GMT (envelope-from nivit) Message-Id: <200708241322.l7ODMkoU087655@repoman.freebsd.org> From: Nicola Vitale Date: Fri, 24 Aug 2007 13:22:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/l2p 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, 24 Aug 2007 13:22:46 -0000 nivit 2007-08-24 13:22:45 UTC FreeBSD ports repository Modified files: graphics/l2p Makefile distinfo Log: - Update to 1.1 Revision Changes Path 1.4 +3 -5 ports/graphics/l2p/Makefile 1.2 +3 -3 ports/graphics/l2p/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 24 13:26:13 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AD87816A41A; Fri, 24 Aug 2007 13:26:13 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 87E5C13C467; Fri, 24 Aug 2007 13:26:13 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7ODQDvP087828; Fri, 24 Aug 2007 13:26:13 GMT (envelope-from nivit@repoman.freebsd.org) Received: (from nivit@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7ODQDbI087827; Fri, 24 Aug 2007 13:26:13 GMT (envelope-from nivit) Message-Id: <200708241326.l7ODQDbI087827@repoman.freebsd.org> From: Nicola Vitale Date: Fri, 24 Aug 2007 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/graphics/mapyrus 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, 24 Aug 2007 13:26:13 -0000 nivit 2007-08-24 13:26:13 UTC FreeBSD ports repository Modified files: graphics/mapyrus Makefile distinfo Log: - Update to 0.704 - Replace WITH_EXAMPLES knob with NOPORTEXAMPLES Revision Changes Path 1.15 +7 -14 ports/graphics/mapyrus/Makefile 1.11 +3 -3 ports/graphics/mapyrus/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 24 13:27:28 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 791E916A41A; Fri, 24 Aug 2007 13:27:28 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 688B313C45E; Fri, 24 Aug 2007 13:27:28 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7ODRS5G087882; Fri, 24 Aug 2007 13:27:28 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7ODRSDf087879; Fri, 24 Aug 2007 13:27:28 GMT (envelope-from edwin) Message-Id: <200708241327.l7ODRSDf087879@repoman.freebsd.org> From: Edwin Groothuis Date: Fri, 24 Aug 2007 13:27:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: ADO Cc: Subject: cvs commit: src/share/zoneinfo - Imported sources X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2007 13:27:28 -0000 edwin 2007-08-24 13:27:27 UTC FreeBSD src repository src/share/zoneinfo - Imported sources Update of /home/ncvs/src/share/zoneinfo In directory repoman.freebsd.org:/tmp/cvs-serv87348 Log Message: Import of timezone database from Arthur Olson et al. Timezone data changes in the following locations: - Egypt - Australia (new DST rules for 2008 and following) - Perry County, Indiana - America/Indiana/Tell_City - Pike County, Indiana Also: - City coordinates corrected. - Layout of leapseconds is updated PR: conf/115706 Approved by: re (bmah@) Status: Vendor Tag: ADO Release Tags: tzdata2007g C src/share/zoneinfo/africa U src/share/zoneinfo/antarctica U src/share/zoneinfo/asia C src/share/zoneinfo/australasia C src/share/zoneinfo/europe C src/share/zoneinfo/northamerica U src/share/zoneinfo/southamerica U src/share/zoneinfo/pacificnew U src/share/zoneinfo/etcetera U src/share/zoneinfo/factory U src/share/zoneinfo/backward U src/share/zoneinfo/systemv U src/share/zoneinfo/solar87 U src/share/zoneinfo/solar88 U src/share/zoneinfo/solar89 U src/share/zoneinfo/iso3166.tab C src/share/zoneinfo/zone.tab C src/share/zoneinfo/leapseconds U src/share/zoneinfo/yearistype.sh 6 conflicts created by this import. Use the following command to help the merge: cvs checkout -jADO:yesterday -jADO src/share/zoneinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 24 13:33:20 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C85116A418; Fri, 24 Aug 2007 13:33:20 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 06D9F13C4A6; Fri, 24 Aug 2007 13:33:20 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7ODXJ9i088351; Fri, 24 Aug 2007 13:33:19 GMT (envelope-from nivit@repoman.freebsd.org) Received: (from nivit@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7ODXJDX088350; Fri, 24 Aug 2007 13:33:19 GMT (envelope-from nivit) Message-Id: <200708241333.l7ODXJDX088350@repoman.freebsd.org> From: Nicola Vitale Date: Fri, 24 Aug 2007 13:33: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/databases/py-Elixir Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2007 13:33:20 -0000 nivit 2007-08-24 13:33:19 UTC FreeBSD ports repository Modified files: databases/py-Elixir Makefile Log: - Set PLIST_FILES to %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% (as suggested by sat@) Revision Changes Path 1.4 +1 -1 ports/databases/py-Elixir/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 24 13:34:25 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D738C16A417; Fri, 24 Aug 2007 13:34:25 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from nat-application.b1.lan.prg.vol.cz (nat-application.b1.lan.prg.vol.cz [195.122.204.152]) by mx1.freebsd.org (Postfix) with ESMTP id 6248313C4B4; Fri, 24 Aug 2007 13:34:25 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from pav.hide.vol.cz (localhost [127.0.0.1]) by nat-application.b1.lan.prg.vol.cz (8.14.1/8.14.1) with ESMTP id l7ODYN37024014; Fri, 24 Aug 2007 15:34:23 +0200 (CEST) (envelope-from pav@FreeBSD.org) Received: (from pav@localhost) by pav.hide.vol.cz (8.14.1/8.14.1/Submit) id l7ODYNCi024013; Fri, 24 Aug 2007 15:34:23 +0200 (CEST) (envelope-from pav@FreeBSD.org) X-Authentication-Warning: pav.hide.vol.cz: pav set sender to pav@FreeBSD.org using -f From: Pav Lucistnik To: Nicola Vitale In-Reply-To: <200708241333.l7ODXJDX088350@repoman.freebsd.org> References: <200708241333.l7ODXJDX088350@repoman.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-OPj1wXoQscHSzF10uRoE" Date: Fri, 24 Aug 2007 15:34:22 +0200 Message-Id: <1187962462.20903.20.camel@pav.hide.vol.cz> Mime-Version: 1.0 X-Mailer: Evolution 2.10.3 FreeBSD GNOME Team Port Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/databases/py-Elixir Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pav@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, 24 Aug 2007 13:34:26 -0000 --=-OPj1wXoQscHSzF10uRoE Content-Type: text/plain; charset=ISO8859-2 Content-Transfer-Encoding: quoted-printable Nicola Vitale p=ED=B9e v p=E1 24. 08. 2007 v 13:33 +0000: > nivit 2007-08-24 13:33:19 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > databases/py-Elixir Makefile=20 > Log: > - Set PLIST_FILES to %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% (as su= ggested by sat@) You could also experiment with USE_DISTUTILS=3Deasy_install (sp?) which does that plist thing for you. --=20 Pav Lucistnik And the sign said long haired, freaky people need not apply. --=-OPj1wXoQscHSzF10uRoE Content-Type: application/pgp-signature; name=signature.asc Content-Description: Toto je =?UTF-8?Q?digit=C3=A1ln=C4=9B?= =?ISO-8859-1?Q?_podepsan=E1?= =?UTF-8?Q?_=C4=8D=C3=A1st?= =?ISO-8859-1?Q?_zpr=E1vy?= -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQBGzt5bntdYP8FOsoIRAkMnAJ0a4GMs/yOPpZwbnhliTxtMYGfyEACeONPq tVLbcqhyHRjZ+WefzN7tM2c= =5LLD -----END PGP SIGNATURE----- --=-OPj1wXoQscHSzF10uRoE-- From owner-cvs-all@FreeBSD.ORG Fri Aug 24 13:34:57 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6A9A216A421; Fri, 24 Aug 2007 13:34:57 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 00C6C13C4A8; Fri, 24 Aug 2007 13:34:56 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7ODYubk088420; Fri, 24 Aug 2007 13:34:56 GMT (envelope-from nivit@repoman.freebsd.org) Received: (from nivit@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7ODYuwB088419; Fri, 24 Aug 2007 13:34:56 GMT (envelope-from nivit) Message-Id: <200708241334.l7ODYuwB088419@repoman.freebsd.org> From: Nicola Vitale Date: Fri, 24 Aug 2007 13:34: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/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: Fri, 24 Aug 2007 13:34:57 -0000 nivit 2007-08-24 13:34:56 UTC FreeBSD ports repository Modified files: math/jsmath Makefile distinfo pkg-plist Log: - Update to 3.4c Revision Changes Path 1.10 +1 -1 ports/math/jsmath/Makefile 1.7 +3 -3 ports/math/jsmath/distinfo 1.6 +2 -1 ports/math/jsmath/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 24 13:36:06 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5E31416A417; Fri, 24 Aug 2007 13:36:06 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 388CF13C47E; Fri, 24 Aug 2007 13:36:06 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7ODa6Og088516; Fri, 24 Aug 2007 13:36:06 GMT (envelope-from nivit@repoman.freebsd.org) Received: (from nivit@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7ODa6Ee088515; Fri, 24 Aug 2007 13:36:06 GMT (envelope-from nivit) Message-Id: <200708241336.l7ODa6Ee088515@repoman.freebsd.org> From: Nicola Vitale Date: Fri, 24 Aug 2007 13:36: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/textogif 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, 24 Aug 2007 13:36:06 -0000 nivit 2007-08-24 13:36:06 UTC FreeBSD ports repository Modified files: textproc/textogif pkg-descr Log: - Fix web site URL in pkg-descr Revision Changes Path 1.2 +1 -1 ports/textproc/textogif/pkg-descr From owner-cvs-all@FreeBSD.ORG Fri Aug 24 13:36:20 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E06B716A41B; Fri, 24 Aug 2007 13:36:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D295413C46C; Fri, 24 Aug 2007 13:36:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7ODaKZw088586; Fri, 24 Aug 2007 13:36:20 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7ODaKfF088585; Fri, 24 Aug 2007 13:36:20 GMT (envelope-from edwin) Message-Id: <200708241336.l7ODaKfF088585@repoman.freebsd.org> From: Edwin Groothuis Date: Fri, 24 Aug 2007 13:36:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/zoneinfo africa australasia europe leapseconds northamerica zone.tab X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2007 13:36:21 -0000 edwin 2007-08-24 13:36:20 UTC FreeBSD src repository Modified files: share/zoneinfo africa australasia europe leapseconds northamerica zone.tab Log: MFV: tzdata2007g PR: conf/115706 Submitted by: edwin@ Approved by: re (bmah@) Obtained from: ftp://elsie.nci.nih.gov/pub/ MFC after: 1 week Revision Changes Path 1.20 +10 -2 src/share/zoneinfo/africa 1.32 +52 -39 src/share/zoneinfo/australasia 1.35 +10 -3 src/share/zoneinfo/europe 1.19 +26 -27 src/share/zoneinfo/leapseconds 1.33 +36 -14 src/share/zoneinfo/northamerica 1.22 +9 -8 src/share/zoneinfo/zone.tab From owner-cvs-all@FreeBSD.ORG Fri Aug 24 13:37:30 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7355616A417; Fri, 24 Aug 2007 13:37:30 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3489B13C480; Fri, 24 Aug 2007 13:37:30 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7ODbUwe088664; Fri, 24 Aug 2007 13:37:30 GMT (envelope-from nivit@repoman.freebsd.org) Received: (from nivit@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7ODbTLF088663; Fri, 24 Aug 2007 13:37:29 GMT (envelope-from nivit) Message-Id: <200708241337.l7ODbTLF088663@repoman.freebsd.org> From: Nicola Vitale Date: Fri, 24 Aug 2007 13:37:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/misc/py-yolk 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, 24 Aug 2007 13:37:30 -0000 nivit 2007-08-24 13:37:29 UTC FreeBSD ports repository Modified files: misc/py-yolk Makefile distinfo Log: - Update to 0.3.0 - Remove PLIST_SUB variable Revision Changes Path 1.6 +1 -3 ports/misc/py-yolk/Makefile 1.4 +3 -3 ports/misc/py-yolk/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 24 13:38:47 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B9D716A418; Fri, 24 Aug 2007 13:38:47 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 14D0D13C457; Fri, 24 Aug 2007 13:38:47 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7ODclLc088757; Fri, 24 Aug 2007 13:38:47 GMT (envelope-from nivit@repoman.freebsd.org) Received: (from nivit@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7ODckUN088756; Fri, 24 Aug 2007 13:38:46 GMT (envelope-from nivit) Message-Id: <200708241338.l7ODckUN088756@repoman.freebsd.org> From: Nicola Vitale Date: Fri, 24 Aug 2007 13:38: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/x11/wbar Makefile distinfo pkg-plist ports/x11/wbar/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: Fri, 24 Aug 2007 13:38:47 -0000 nivit 2007-08-24 13:38:46 UTC FreeBSD ports repository Modified files: x11/wbar Makefile distinfo pkg-plist x11/wbar/files patch-Makefile Log: - Update to 1.3.1 Revision Changes Path 1.3 +2 -2 ports/x11/wbar/Makefile 1.2 +3 -3 ports/x11/wbar/distinfo 1.3 +29 -37 ports/x11/wbar/files/patch-Makefile 1.2 +74 -17 ports/x11/wbar/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 24 13:39:55 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 548D616A41B; Fri, 24 Aug 2007 13:39:55 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2EF0F13C442; Fri, 24 Aug 2007 13:39:55 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7ODdtOk088822; Fri, 24 Aug 2007 13:39:55 GMT (envelope-from nivit@repoman.freebsd.org) Received: (from nivit@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7ODdtQp088821; Fri, 24 Aug 2007 13:39:55 GMT (envelope-from nivit) Message-Id: <200708241339.l7ODdtQp088821@repoman.freebsd.org> From: Nicola Vitale Date: Fri, 24 Aug 2007 13:39: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/textproc/py-pygments 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, 24 Aug 2007 13:39:55 -0000 nivit 2007-08-24 13:39:55 UTC FreeBSD ports repository Modified files: textproc/py-pygments Makefile distinfo pkg-plist Log: - Update to 0.8.1 Revision Changes Path 1.4 +1 -1 ports/textproc/py-pygments/Makefile 1.2 +3 -3 ports/textproc/py-pygments/distinfo 1.3 +17 -1 ports/textproc/py-pygments/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 24 13:44:29 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8652416A475; Fri, 24 Aug 2007 13:44:29 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 559F013C465; Fri, 24 Aug 2007 13:44:29 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7ODiTgJ089229; Fri, 24 Aug 2007 13:44:29 GMT (envelope-from nivit@repoman.freebsd.org) Received: (from nivit@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7ODiTiN089228; Fri, 24 Aug 2007 13:44:29 GMT (envelope-from nivit) Message-Id: <200708241344.l7ODiTiN089228@repoman.freebsd.org> From: Nicola Vitale Date: Fri, 24 Aug 2007 13:44:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/py-genshi 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, 24 Aug 2007 13:44:29 -0000 nivit 2007-08-24 13:44:28 UTC FreeBSD ports repository Modified files: textproc/py-genshi Makefile distinfo pkg-plist Log: - Update to 0.4.4 [1] - Install docs and/or examples PR: ports/115533 Submitted by: clsung [1] Revision Changes Path 1.6 +13 -2 ports/textproc/py-genshi/Makefile 1.3 +3 -3 ports/textproc/py-genshi/distinfo 1.3 +214 -0 ports/textproc/py-genshi/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 24 13:57:58 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C298D16A417; Fri, 24 Aug 2007 13:57:58 +0000 (UTC) (envelope-from edwin@mavetju.org) Received: from mail5out.barnet.com.au (mail5.barnet.com.au [202.83.178.78]) by mx1.freebsd.org (Postfix) with ESMTP id 765AC13C461; Fri, 24 Aug 2007 13:57:58 +0000 (UTC) (envelope-from edwin@mavetju.org) Received: by mail5out.barnet.com.au (Postfix, from userid 1001) id 763E42219D0B; Fri, 24 Aug 2007 23:40:01 +1000 (EST) X-Viruscan-Id: <46CEDFB100012FE0774549@BarNet> Received: from mail5auth.barnet.com.au (mail5.barnet.com.au [202.83.178.78]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mail5.barnet.com.au (Postfix) with ESMTP id 0CC8A21B28EF; Fri, 24 Aug 2007 23:40:01 +1000 (EST) Received: from k7.mavetju (k7.mavetju.org [10.251.1.18]) by mail5auth.barnet.com.au (Postfix) with ESMTP id 5CDBA2219D10; Fri, 24 Aug 2007 23:39:59 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 196E016C; Fri, 24 Aug 2007 23:39:56 +1000 (EST) Date: Fri, 24 Aug 2007 23:39:56 +1000 From: Edwin Groothuis To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20070824133956.GC1384@k7.mavetju> References: <200708241336.l7ODaKfF088585@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200708241336.l7ODaKfF088585@repoman.freebsd.org> User-Agent: Mutt/1.4.2.3i Cc: Subject: Re: cvs commit: src/share/zoneinfo africa australasia europe leapseconds northamerica zone.tab X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2007 13:57:58 -0000 On Fri, Aug 24, 2007 at 01:36:20PM +0000, Edwin Groothuis wrote: > PR: conf/115706 > Submitted by: edwin@ > Approved by: re (bmah@) Also approved by: greg@ (mentor) > Obtained from: ftp://elsie.nci.nih.gov/pub/ > MFC after: 1 week Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://www.mavetju.org/weblog/ From owner-cvs-all@FreeBSD.ORG Fri Aug 24 13:57:58 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C875816A419; Fri, 24 Aug 2007 13:57:58 +0000 (UTC) (envelope-from edwin@mavetju.org) Received: from mail5out.barnet.com.au (mail5.barnet.com.au [202.83.178.78]) by mx1.freebsd.org (Postfix) with ESMTP id 7681913C468; Fri, 24 Aug 2007 13:57:58 +0000 (UTC) (envelope-from edwin@mavetju.org) Received: by mail5out.barnet.com.au (Postfix, from userid 1001) id DFA102219D1D; Fri, 24 Aug 2007 23:39:38 +1000 (EST) X-Viruscan-Id: <46CEDF9A00012F70CD85B9@BarNet> Received: from mail5auth.barnet.com.au (mail5.barnet.com.au [202.83.178.78]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mail5.barnet.com.au (Postfix) with ESMTP id A2C0321B2A0D; Fri, 24 Aug 2007 23:39:38 +1000 (EST) Received: from k7.mavetju (k7.mavetju.org [10.251.1.18]) by mail5auth.barnet.com.au (Postfix) with ESMTP id 4E6562219D0B; Fri, 24 Aug 2007 23:39:38 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id E9A1F35C; Fri, 24 Aug 2007 23:39:39 +1000 (EST) Date: Fri, 24 Aug 2007 23:39:39 +1000 From: Edwin Groothuis To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20070824133939.GB1384@k7.mavetju> References: <200708241327.l7ODRSDf087879@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200708241327.l7ODRSDf087879@repoman.freebsd.org> User-Agent: Mutt/1.4.2.3i Cc: Subject: Re: cvs commit: src/share/zoneinfo - Imported sources X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2007 13:57:59 -0000 On Fri, Aug 24, 2007 at 01:27:27PM +0000, Edwin Groothuis wrote: > PR: conf/115706 > Approved by: re (bmah@) Also approved by: greg@ (mentor) Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://www.mavetju.org/weblog/ From owner-cvs-all@FreeBSD.ORG Fri Aug 24 13:58:05 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A974016A49E; Fri, 24 Aug 2007 13:58:04 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F38ED13C469; Fri, 24 Aug 2007 13:58:03 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7ODw3JU089948; Fri, 24 Aug 2007 13:58:03 GMT (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7ODw3cL089947; Fri, 24 Aug 2007 13:58:03 GMT (envelope-from fjoe) Message-Id: <200708241358.l7ODw3cL089947@repoman.freebsd.org> From: Max Khon Date: Fri, 24 Aug 2007 13:58: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/databases/virtuoso Makefile distinfo pkg-plist ports/databases/virtuoso/files patch-configure patch-libsrc-Wi-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, 24 Aug 2007 13:58:05 -0000 fjoe 2007-08-24 13:58:03 UTC FreeBSD ports repository Modified files: databases/virtuoso Makefile distinfo pkg-plist databases/virtuoso/files patch-configure Added files: databases/virtuoso/files patch-libsrc-Wi-Makefile.in Log: Update to 5.0.1. Revision Changes Path 1.6 +2 -5 ports/databases/virtuoso/Makefile 1.3 +3 -3 ports/databases/virtuoso/distinfo 1.4 +9 -11 ports/databases/virtuoso/files/patch-configure 1.1 +51 -0 ports/databases/virtuoso/files/patch-libsrc-Wi-Makefile.in (new) 1.2 +28 -12 ports/databases/virtuoso/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 24 14:29:03 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E083D16A417; Fri, 24 Aug 2007 14:29:03 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BAAAF13C45A; Fri, 24 Aug 2007 14:29:03 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OET3sB092902; Fri, 24 Aug 2007 14:29:03 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OET3JC092901; Fri, 24 Aug 2007 14:29:03 GMT (envelope-from netchild) Message-Id: <200708241429.l7OET3JC092901@repoman.freebsd.org> From: Alexander Leidinger Date: Fri, 24 Aug 2007 14: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/Tools/scripts resolveportsfromlibs.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: Fri, 24 Aug 2007 14:29:04 -0000 netchild 2007-08-24 14:29:03 UTC FreeBSD ports repository Modified files: Tools/scripts resolveportsfromlibs.sh Log: Teach about USE_ICONV, USE_GETTEXT, USE_GNOME and USE_XORG. Revision Changes Path 1.2 +39 -2 ports/Tools/scripts/resolveportsfromlibs.sh From owner-cvs-all@FreeBSD.ORG Fri Aug 24 14:29:43 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 11F7F16A418; Fri, 24 Aug 2007 14:29:43 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 04D3713C46B; Fri, 24 Aug 2007 14:29:43 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OETg0v092943; Fri, 24 Aug 2007 14:29:42 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OETgR1092942; Fri, 24 Aug 2007 14:29:42 GMT (envelope-from netchild) Message-Id: <200708241429.l7OETgR1092942@repoman.freebsd.org> From: Alexander Leidinger Date: Fri, 24 Aug 2007 14:29: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/Tools/scripts explicit_lib_depends.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: Fri, 24 Aug 2007 14:29:43 -0000 netchild 2007-08-24 14:29:42 UTC FreeBSD ports repository Added files: Tools/scripts explicit_lib_depends.sh Log: explicit_lib_depends.sh shows you the current explicit dependency list of libs for a given installed port, e.g.: # ./explicit_lib_depends.sh gnome-vfs-2.18.1_2 USE_GETTEXT=yes USE_GNOME+=gconf2 USE_GNOME+=glib20 USE_GNOME+=gnomevfs2 USE_GNOME+=libxml2 USE_GNOME+=orbit2 USE_ICONV=yes avahi-client:net/avahi avahi-common:net/avahi avahi-glib:net/avahi dbus-1:devel/dbus dbus-glib-1:devel/dbus-glib Revision Changes Path 1.1 +115 -0 ports/Tools/scripts/explicit_lib_depends.sh (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 24 14:55:37 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1163716A418; Fri, 24 Aug 2007 14:55:37 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 02F5713C46B; Fri, 24 Aug 2007 14:55:37 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OEtafI094527; Fri, 24 Aug 2007 14:55:36 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OEtajT094526; Fri, 24 Aug 2007 14:55:36 GMT (envelope-from itetcu) Message-Id: <200708241455.l7OEtajT094526@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Fri, 24 Aug 2007 14:55: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-mgmt Makefile ports/net-mgmt/ocsinventory-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: Fri, 24 Aug 2007 14:55:37 -0000 itetcu 2007-08-24 14:55:36 UTC FreeBSD ports repository Modified files: net-mgmt Makefile Added files: net-mgmt/ocsinventory-agent Makefile distinfo pkg-descr pkg-plist Log: Open Computer and Software Inventory Next Generation is an application designed to help a network or system administrator keep track of the computers configuration and software that are installed on the network WWW: http://www.ocsinventory-ng.org/ PR: ports/115520 Submitted by: Dennis Cabooter Revision Changes Path 1.132 +1 -0 ports/net-mgmt/Makefile 1.1 +28 -0 ports/net-mgmt/ocsinventory-agent/Makefile (new) 1.1 +3 -0 ports/net-mgmt/ocsinventory-agent/distinfo (new) 1.1 +5 -0 ports/net-mgmt/ocsinventory-agent/pkg-descr (new) 1.1 +130 -0 ports/net-mgmt/ocsinventory-agent/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 24 14:55:59 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7D72416A46B; Fri, 24 Aug 2007 14:55:59 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5807513C45A; Fri, 24 Aug 2007 14:55:59 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OEtxdl094566; Fri, 24 Aug 2007 14:55:59 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OEtxp9094565; Fri, 24 Aug 2007 14:55:59 GMT (envelope-from itetcu) Message-Id: <200708241455.l7OEtxp9094565@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Fri, 24 Aug 2007 14:55: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: Fri, 24 Aug 2007 14:55:59 -0000 itetcu 2007-08-24 14:55:59 UTC FreeBSD ports repository Modified files: . modules Log: ocsinventory-agent --> ports/net-mgmt/ocsinventory-agent Revision Changes Path 1.18596 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Aug 24 15:02:26 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 857CD16A417; Fri, 24 Aug 2007 15:02:26 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5FF4613C45A; Fri, 24 Aug 2007 15:02:26 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OF2Qgc095075; Fri, 24 Aug 2007 15:02:26 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OF2Q8p095074; Fri, 24 Aug 2007 15:02:26 GMT (envelope-from itetcu) Message-Id: <200708241502.l7OF2Q8p095074@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Fri, 24 Aug 2007 15:02: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/x11-themes/gtk-murrina-aqua Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2007 15:02:26 -0000 itetcu 2007-08-24 15:02:26 UTC FreeBSD ports repository Modified files: x11-themes/gtk-murrina-aqua Makefile Log: Tell the subdir of local master site. Submitted by: sat@ Revision Changes Path 1.4 +1 -0 ports/x11-themes/gtk-murrina-aqua/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 24 15:03:14 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A6E9C16A420; Fri, 24 Aug 2007 15:03:14 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: from mail.netplex.net (mail.netplex.net [204.213.176.10]) by mx1.freebsd.org (Postfix) with ESMTP id 66DD513C481; Fri, 24 Aug 2007 15:03:13 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: from sea.ntplx.net (sea.ntplx.net [204.213.176.11]) by mail.netplex.net (8.14.1/8.14.1/NETPLEX) with ESMTP id l7OF3C6L000179; Fri, 24 Aug 2007 11:03:12 -0400 (EDT) X-Virus-Scanned: by AMaViS and Clam AntiVirus (mail.netplex.net) X-Greylist: Message whitelisted by DRAC access database, not delayed by milter-greylist-3.0 (mail.netplex.net [204.213.176.10]); Fri, 24 Aug 2007 11:03:12 -0400 (EDT) Date: Fri, 24 Aug 2007 11:03:12 -0400 (EDT) From: Daniel Eischen X-X-Sender: eischen@sea.ntplx.net To: Yar Tikhiy In-Reply-To: <200708230509.l7N59VCi048341@repoman.freebsd.org> Message-ID: References: <200708230509.l7N59VCi048341@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libc/gen fts-compat.c fts-compat.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Daniel Eischen List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2007 15:03:14 -0000 On Thu, 23 Aug 2007, Yar Tikhiy wrote: > yar 2007-08-23 05:09:31 UTC > > FreeBSD src repository > > Modified files: > lib/libc/gen fts-compat.c fts-compat.h > Log: > Forced commit to note repo-copy: > > These files have been repo-copied from src/include/fts.h > and src/lib/libc/gen/fts.c to serve as a base for 4.4BSD > compatible versions of fts(3) functions to be preserved > through libc symbol versioning while the default versions > undergo ABI-breaking extension to support big file trees. When are you going to break the ABI? After 7.0 is tagged and released? If you break the ABI before, you don't need or want to have the compat versions; the libraries have already been bumped in prep for release. I don't think we want to use symbol versioning as a crutch for -current users; the version definitions are meant for public releases only. -- DE From owner-cvs-all@FreeBSD.ORG Fri Aug 24 15:18:43 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4104416A41A; Fri, 24 Aug 2007 15:18:43 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1AC8613C48D; Fri, 24 Aug 2007 15:18:43 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OFIggL097201; Fri, 24 Aug 2007 15:18:43 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OFIgH3097200; Fri, 24 Aug 2007 15:18:42 GMT (envelope-from bmah) Message-Id: <200708241518.l7OFIgH3097200@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 24 Aug 2007 15:18: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/release/doc/en_US.ISO8859-1/relnotes 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, 24 Aug 2007 15:18:43 -0000 bmah 2007-08-24 15:18:42 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes article.sgml Log: New release note: coretemp(4). Updated release note: tzdata2007g [1]. [1] Technically I should remove the &merged; entity here but the commit has a one-week MFC-after so I figure I can leave it this way for now. Approved by: re (implicitly) Revision Changes Path 1.1061 +5 -1 src/release/doc/en_US.ISO8859-1/relnotes/article.sgml From owner-cvs-all@FreeBSD.ORG Fri Aug 24 15:20:17 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F0CE416A41A; Fri, 24 Aug 2007 15:20:17 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id CAE9913C4B7; Fri, 24 Aug 2007 15:20:17 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OFKHpZ097324; Fri, 24 Aug 2007 15:20:17 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OFKHJR097322; Fri, 24 Aug 2007 15:20:17 GMT (envelope-from itetcu) Message-Id: <200708241520.l7OFKHJR097322@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Fri, 24 Aug 2007 15:20: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/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: Fri, 24 Aug 2007 15:20:18 -0000 itetcu 2007-08-24 15:20:17 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: linux-opera and (for the moment defunct) opera-devel are also affected by df4a7d21-4b17-11dc-9fc2-001372ae3ab9 - Vulnerability in javascript handling so addd them to the entry. Submitted by: sat@ Revision Changes Path 1.1403 +3 -1 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Fri Aug 24 15:30:32 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9C98216A41B; Fri, 24 Aug 2007 15:30:32 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 76A6813C467; Fri, 24 Aug 2007 15:30:32 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OFUW3n098197; Fri, 24 Aug 2007 15:30:32 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OFUWg5098196; Fri, 24 Aug 2007 15:30:32 GMT (envelope-from netchild) Message-Id: <200708241530.l7OFUWg5098196@repoman.freebsd.org> From: Alexander Leidinger Date: Fri, 24 Aug 2007 15:30: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/Tools/scripts explicit_lib_depends.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: Fri, 24 Aug 2007 15:30:32 -0000 netchild 2007-08-24 15:30:32 UTC FreeBSD ports repository Modified files: Tools/scripts explicit_lib_depends.sh Log: We should also look into sbin/ (not only bin/ and lib/). Revision Changes Path 1.2 +2 -2 ports/Tools/scripts/explicit_lib_depends.sh From owner-cvs-all@FreeBSD.ORG Fri Aug 24 15:44:28 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 36B9016A417; Fri, 24 Aug 2007 15:44:28 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1176613C483; Fri, 24 Aug 2007 15:44:28 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OFiRek099110; Fri, 24 Aug 2007 15:44:27 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OFiRU9099109; Fri, 24 Aug 2007 15:44:27 GMT (envelope-from sam) Message-Id: <200708241544.l7OFiRU9099109@repoman.freebsd.org> From: Sam Leffler Date: Fri, 24 Aug 2007 15:44: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/net80211 ieee80211_output.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2007 15:44:28 -0000 sam 2007-08-24 15:44:27 UTC FreeBSD src repository Modified files: sys/net80211 ieee80211_output.c Log: drop frames marked for encryption when no key is available Reviewed by: avatar Approved by: re (kensmith) Obtained from: madwifi Revision Changes Path 1.51 +1 -0 src/sys/net80211/ieee80211_output.c From owner-cvs-all@FreeBSD.ORG Fri Aug 24 16:26:25 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0959A16A41A; Fri, 24 Aug 2007 16:26:25 +0000 (UTC) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D842413C457; Fri, 24 Aug 2007 16:26:24 +0000 (UTC) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OGQObb003212; Fri, 24 Aug 2007 16:26:24 GMT (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OGQOE1003211; Fri, 24 Aug 2007 16:26:24 GMT (envelope-from ache) Message-Id: <200708241626.l7OGQOE1003211@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Fri, 24 Aug 2007 16:26: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/lib/libdialog dialog.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, 24 Aug 2007 16:26:25 -0000 ache 2007-08-24 16:26:24 UTC FreeBSD src repository Modified files: gnu/lib/libdialog dialog.h Log: Fix stack overflow with too many items return list in 'dialog' program. (Noticed in ghostscript-gpl core dump) Approved by: re@ (bmah) Revision Changes Path 1.23 +1 -1 src/gnu/lib/libdialog/dialog.h From owner-cvs-all@FreeBSD.ORG Fri Aug 24 16:43:59 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B524216A418; Fri, 24 Aug 2007 16:43:59 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A731F13C4EB; Fri, 24 Aug 2007 16:43:59 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OGhxSM004243; Fri, 24 Aug 2007 16:43:59 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OGhxNU004242; Fri, 24 Aug 2007 16:43:59 GMT (envelope-from itetcu) Message-Id: <200708241643.l7OGhxNU004242@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Fri, 24 Aug 2007 16:43:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/databases/mywwwatcher 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: Fri, 24 Aug 2007 16:43:59 -0000 itetcu 2007-08-24 16:43:59 UTC FreeBSD ports repository Modified files: databases/mywwwatcher Makefile distinfo pkg-plist Removed files: databases/mywwwatcher pkg-message Log: - update to 3.1 - WANT_PHP_WEB since it's web-based - default php to 5 and mark ignore with 3 - use WWWDIR - use SUB_FILES for pkg-message PR: ports/115584 Submitted by: Petr Macek (maintainer) Revision Changes Path 1.2 +10 -10 ports/databases/mywwwatcher/Makefile 1.2 +3 -3 ports/databases/mywwwatcher/distinfo 1.2 +0 -5 ports/databases/mywwwatcher/pkg-message (dead) 1.2 +44 -44 ports/databases/mywwwatcher/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 24 16:45:49 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C3FC16A41A; Fri, 24 Aug 2007 16:45:49 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 065BD13C467; Fri, 24 Aug 2007 16:45:49 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OGjmM9004384; Fri, 24 Aug 2007 16:45:48 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OGjm93004383; Fri, 24 Aug 2007 16:45:48 GMT (envelope-from itetcu) Message-Id: <200708241645.l7OGjm93004383@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Fri, 24 Aug 2007 16:45: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/databases/mywwwatcher/files pkg-message.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2007 16:45:49 -0000 itetcu 2007-08-24 16:45:48 UTC FreeBSD ports repository Added files: databases/mywwwatcher/files pkg-message.in Log: Add file forgotten in previous commit: - update to 3.1 - WANT_PHP_WEB since it's web-based - default php to 5 and mark ignore with 3 - use WWWDIR - use SUB_FILES for pkg-message PR: ports/115584 Submitted by: Petr Macek (maintainer) Revision Changes Path 1.1 +14 -0 ports/databases/mywwwatcher/files/pkg-message.in (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 24 17:27:24 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1E23116A41A; Fri, 24 Aug 2007 17:27:24 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id ED64413C459; Fri, 24 Aug 2007 17:27:23 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OHRNhU016649; Fri, 24 Aug 2007 17:27:23 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OHRNVD016648; Fri, 24 Aug 2007 17:27:23 GMT (envelope-from sat) Message-Id: <200708241727.l7OHRNVD016648@repoman.freebsd.org> From: Andrew Pantyukhin Date: Fri, 24 Aug 2007 17: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: 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: Fri, 24 Aug 2007 17:27:24 -0000 sat 2007-08-24 17:27:23 UTC FreeBSD ports repository Modified files: Mk bsd.sites.mk Log: - Add a few NonGNU Savannah mirrors Revision Changes Path 1.427 +8 -2 ports/Mk/bsd.sites.mk From owner-cvs-all@FreeBSD.ORG Fri Aug 24 17:29:18 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CD54316A419; Fri, 24 Aug 2007 17:29:18 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A67A513C457; Fri, 24 Aug 2007 17:29:18 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OHTI6L016782; Fri, 24 Aug 2007 17:29:18 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OHTI0e016781; Fri, 24 Aug 2007 17:29:18 GMT (envelope-from jhb) Message-Id: <200708241729.l7OHTI0e016781@repoman.freebsd.org> From: John Baldwin Date: Fri, 24 Aug 2007 17:29:18 +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 mfi.4 src/sys/dev/mfi mfi.c mfi_disk.c mfi_pci.c mfireg.h mfivar.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, 24 Aug 2007 17:29:18 -0000 jhb 2007-08-24 17:29:18 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) share/man/man4 mfi.4 sys/dev/mfi mfi.c mfi_disk.c mfi_pci.c mfireg.h mfivar.h Log: MFC: Teach the mfi(4) driver to handle requests from userland management applications to add and remove volumes. Revision Changes Path 1.4.2.3 +14 -0 src/share/man/man4/mfi.4 1.3.2.8 +163 -24 src/sys/dev/mfi/mfi.c 1.2.2.6 +45 -5 src/sys/dev/mfi/mfi_disk.c 1.1.2.6 +7 -2 src/sys/dev/mfi/mfi_pci.c 1.1.2.7 +1 -0 src/sys/dev/mfi/mfireg.h 1.1.2.7 +10 -0 src/sys/dev/mfi/mfivar.h From owner-cvs-all@FreeBSD.ORG Fri Aug 24 18:37:06 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BED1516A417; Fri, 24 Aug 2007 18:37:06 +0000 (UTC) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B0B6A13C4A5; Fri, 24 Aug 2007 18:37:06 +0000 (UTC) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OIb6aJ022108; Fri, 24 Aug 2007 18:37:06 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OIb6fi022107; Fri, 24 Aug 2007 18:37:06 GMT (envelope-from sem) Message-Id: <200708241837.l7OIb6fi022107@repoman.freebsd.org> From: Sergey Matveychuk Date: Fri, 24 Aug 2007 18: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/science/ovt Makefile distinfo ports/science/ovt/files patch-Makefile.in patch-bin-ovt.in patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2007 18:37:06 -0000 sem 2007-08-24 18:37:06 UTC FreeBSD ports repository Modified files: science/ovt Makefile distinfo Added files: science/ovt/files patch-Makefile.in patch-bin-ovt.in patch-configure Log: - Unbreak - Pass maintainership to submitter PR: ports/115674 Submitted by: Yuri Khotyaintsev Revision Changes Path 1.11 +4 -6 ports/science/ovt/Makefile 1.2 +1 -0 ports/science/ovt/distinfo 1.1 +11 -0 ports/science/ovt/files/patch-Makefile.in (new) 1.1 +21 -0 ports/science/ovt/files/patch-bin-ovt.in (new) 1.1 +55 -0 ports/science/ovt/files/patch-configure (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 24 18:38:00 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5686B16A418; Fri, 24 Aug 2007 18:38:00 +0000 (UTC) (envelope-from lx@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 311A413C458; Fri, 24 Aug 2007 18:38:00 +0000 (UTC) (envelope-from lx@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OIc06Y022173; Fri, 24 Aug 2007 18:38:00 GMT (envelope-from lx@repoman.freebsd.org) Received: (from lx@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OIc0Nl022172; Fri, 24 Aug 2007 18:38:00 GMT (envelope-from lx) Message-Id: <200708241838.l7OIc0Nl022172@repoman.freebsd.org> From: David Thiel Date: Fri, 24 Aug 2007 18:38: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/herrie 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, 24 Aug 2007 18:38:00 -0000 lx 2007-08-24 18:38:00 UTC FreeBSD ports repository Modified files: audio/herrie Makefile distinfo pkg-plist Log: Update to 1.8.2. PR: ports/115780 Submitted by: Ed Schouten Revision Changes Path 1.23 +1 -2 ports/audio/herrie/Makefile 1.21 +3 -3 ports/audio/herrie/distinfo 1.7 +1 -0 ports/audio/herrie/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 24 18:42:34 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ADF7816A41B; Fri, 24 Aug 2007 18:42:34 +0000 (UTC) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 883E213C45A; Fri, 24 Aug 2007 18:42:34 +0000 (UTC) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OIgYfC022519; Fri, 24 Aug 2007 18:42:34 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OIgYw1022515; Fri, 24 Aug 2007 18:42:34 GMT (envelope-from sem) Message-Id: <200708241842.l7OIgYw1022515@repoman.freebsd.org> From: Sergey Matveychuk Date: Fri, 24 Aug 2007 18:42: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/pwgen2 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, 24 Aug 2007 18:42:34 -0000 sem 2007-08-24 18:42:34 UTC FreeBSD ports repository Modified files: sysutils/pwgen2 Makefile distinfo Log: - Update to 2.06 ChangeLog: * Fix pwgen -Bs so that this option combination works correctly (Closes: #368010) * Fix the pwgen -Bc option combination (Closes: #355153) * Fix typo in pwgen man page (Closes: #376147) * Make the -s option imply the -nc options (Closes: #427969) * Add -v option to generate passwords without vowels (Closes: #387461) PR: ports/115786 Submitted by: maintainer Revision Changes Path 1.10 +1 -1 ports/sysutils/pwgen2/Makefile 1.5 +3 -3 ports/sysutils/pwgen2/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 24 18:43:00 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BF55D16A41B; Fri, 24 Aug 2007 18:43:00 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9920513C494; Fri, 24 Aug 2007 18:43:00 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OIh0Q0022593; Fri, 24 Aug 2007 18:43:00 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OIh00l022592; Fri, 24 Aug 2007 18:43:00 GMT (envelope-from jhb) Message-Id: <200708241843.l7OIh00l022592@repoman.freebsd.org> From: John Baldwin Date: Fri, 24 Aug 2007 18:43:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sbin/atacontrol atacontrol.c src/sys/dev/ata ata-raid.c src/sys/sys ata.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, 24 Aug 2007 18:43:00 -0000 jhb 2007-08-24 18:43:00 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sbin/atacontrol atacontrol.c sys/dev/ata ata-raid.c sys/sys ata.h Log: MFC: Expand the data structure returned by the ATA RAID status ioctl to include detailed status on each of the backing subdisks. A binary compat shim is provided for the original status ioctl. Approved by: sos Revision Changes Path 1.36.2.6 +31 -19 src/sbin/atacontrol/atacontrol.c 1.98.2.10 +49 -14 src/sys/dev/ata/ata-raid.c 1.26.2.7 +18 -1 src/sys/sys/ata.h From owner-cvs-all@FreeBSD.ORG Fri Aug 24 18:53:35 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BEA5A16A421; Fri, 24 Aug 2007 18:53:35 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9806D13C459; Fri, 24 Aug 2007 18:53:35 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OIrZ7p023184; Fri, 24 Aug 2007 18:53:35 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OIrZtI023183; Fri, 24 Aug 2007 18:53:35 GMT (envelope-from chinsan) Message-Id: <200708241853.l7OIrZtI023183@repoman.freebsd.org> From: Chin-San Huang Date: Fri, 24 Aug 2007 18:53: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: www/zh_TW/docs books.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, 24 Aug 2007 18:53:35 -0000 chinsan 2007-08-24 18:53:35 UTC FreeBSD doc repository Modified files: zh_TW/docs books.sgml Log: - Fix links. - Improve translation. Obtained from: The FreeBSD Traditional Chinese project Revision Changes Path 1.2 +61 -57 www/zh_TW/docs/books.sgml From owner-cvs-all@FreeBSD.ORG Fri Aug 24 18:59:12 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A74B216A474; Fri, 24 Aug 2007 18:59:12 +0000 (UTC) (envelope-from lx@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 279A313C469; Fri, 24 Aug 2007 18:59:12 +0000 (UTC) (envelope-from lx@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OIxBD7023387; Fri, 24 Aug 2007 18:59:11 GMT (envelope-from lx@repoman.freebsd.org) Received: (from lx@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OIxBUZ023386; Fri, 24 Aug 2007 18:59:11 GMT (envelope-from lx) Message-Id: <200708241859.l7OIxBUZ023386@repoman.freebsd.org> From: David Thiel Date: Fri, 24 Aug 2007 18:59: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/audio/musicpd 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, 24 Aug 2007 18:59:12 -0000 lx 2007-08-24 18:59:10 UTC FreeBSD ports repository Modified files: audio/musicpd Makefile distinfo Log: Update to 0.13.0. PR: ports/114893 Submitted by: Jan-Olof Lindqvist Revision Changes Path 1.28 +1 -2 ports/audio/musicpd/Makefile 1.16 +3 -3 ports/audio/musicpd/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 24 19:08:57 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7D80316A417; Fri, 24 Aug 2007 19:08:57 +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 8500313C49D; Fri, 24 Aug 2007 19:08:55 +0000 (UTC) (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.4) with ESMTP id l7OIaVb4007699; Fri, 24 Aug 2007 22:36:31 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.4/8.13.4/Submit) id l7OIaUct007698; Fri, 24 Aug 2007 22:36:30 +0400 (MSD) (envelope-from yar) Date: Fri, 24 Aug 2007 22:36:30 +0400 From: Yar Tikhiy To: Daniel Eischen Message-ID: <20070824183630.GA99474@comp.chem.msu.su> References: <200708230509.l7N59VCi048341@repoman.freebsd.org> 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, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libc/gen fts-compat.c fts-compat.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, 24 Aug 2007 19:08:57 -0000 On Fri, Aug 24, 2007 at 11:03:12AM -0400, Daniel Eischen wrote: > On Thu, 23 Aug 2007, Yar Tikhiy wrote: > > >yar 2007-08-23 05:09:31 UTC > > > > FreeBSD src repository > > > > Modified files: > > lib/libc/gen fts-compat.c fts-compat.h > > Log: > > Forced commit to note repo-copy: > > > > These files have been repo-copied from src/include/fts.h > > and src/lib/libc/gen/fts.c to serve as a base for 4.4BSD > > compatible versions of fts(3) functions to be preserved > > through libc symbol versioning while the default versions > > undergo ABI-breaking extension to support big file trees. > > When are you going to break the ABI? After 7.0 is tagged > and released? If you break the ABI before, you don't need > or want to have the compat versions; the libraries have already > been bumped in prep for release. I don't think we want to > use symbol versioning as a crutch for -current users; the > version definitions are meant for public releases only. The reason for exercising symbol versions right now is that "make installworld" is sensitive to the fts(3) ABI. If the ABI is just broken w/o special measures, "make installworld" will fail in the middle and leave you with a botched system. It goes as follows: - "make installworld" copies the old /usr/bin/find and some other tools to /tmp/install.xxx for use during the install - libc is overwritten by its new instance, with new fts(3) ABI - the old find(1) is run by installworld and dumps core immediately. Earlier the problem was to be avoided by bumping libc version so that the old libc is kept, and now I chose symbol versioning to get around it. Do you think there is a different way? -- Yar From owner-cvs-all@FreeBSD.ORG Fri Aug 24 19:15:08 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0932C16A418; Fri, 24 Aug 2007 19:15:08 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: from mail.netplex.net (mail.netplex.net [204.213.176.10]) by mx1.freebsd.org (Postfix) with ESMTP id A422813C459; Fri, 24 Aug 2007 19:15:07 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: from sea.ntplx.net (sea.ntplx.net [204.213.176.11]) by mail.netplex.net (8.14.1/8.14.1/NETPLEX) with ESMTP id l7OJErXQ011883; Fri, 24 Aug 2007 15:14:53 -0400 (EDT) X-Virus-Scanned: by AMaViS and Clam AntiVirus (mail.netplex.net) X-Greylist: Message whitelisted by DRAC access database, not delayed by milter-greylist-3.0 (mail.netplex.net [204.213.176.10]); Fri, 24 Aug 2007 15:14:54 -0400 (EDT) Date: Fri, 24 Aug 2007 15:14:53 -0400 (EDT) From: Daniel Eischen X-X-Sender: eischen@sea.ntplx.net To: Yar Tikhiy In-Reply-To: <20070824183630.GA99474@comp.chem.msu.su> Message-ID: References: <200708230509.l7N59VCi048341@repoman.freebsd.org> <20070824183630.GA99474@comp.chem.msu.su> 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/lib/libc/gen fts-compat.c fts-compat.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Daniel Eischen List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2007 19:15:08 -0000 On Fri, 24 Aug 2007, Yar Tikhiy wrote: > On Fri, Aug 24, 2007 at 11:03:12AM -0400, Daniel Eischen wrote: >> On Thu, 23 Aug 2007, Yar Tikhiy wrote: >> >>> yar 2007-08-23 05:09:31 UTC >>> >>> FreeBSD src repository >>> >>> Modified files: >>> lib/libc/gen fts-compat.c fts-compat.h >>> Log: >>> Forced commit to note repo-copy: >>> >>> These files have been repo-copied from src/include/fts.h >>> and src/lib/libc/gen/fts.c to serve as a base for 4.4BSD >>> compatible versions of fts(3) functions to be preserved >>> through libc symbol versioning while the default versions >>> undergo ABI-breaking extension to support big file trees. >> >> When are you going to break the ABI? After 7.0 is tagged >> and released? If you break the ABI before, you don't need >> or want to have the compat versions; the libraries have already >> been bumped in prep for release. I don't think we want to >> use symbol versioning as a crutch for -current users; the >> version definitions are meant for public releases only. > > The reason for exercising symbol versions right now is that "make > installworld" is sensitive to the fts(3) ABI. If the ABI is just > broken w/o special measures, "make installworld" will fail in the > middle and leave you with a botched system. It goes as follows: > > - "make installworld" copies the old /usr/bin/find and some other > tools to /tmp/install.xxx for use during the install > - libc is overwritten by its new instance, with new fts(3) ABI > - the old find(1) is run by installworld and dumps core immediately. Why don't you make find and the install tools static. > Earlier the problem was to be avoided by bumping libc version so > that the old libc is kept, and now I chose symbol versioning to get > around it. Do you think there is a different way? Yes, you wait until after release to do this. Look at it this way: if there wasn't symbol versioning and libc was already bumped, how would you solve the problem? You wouldn't bump libc again, right? -- DE From owner-cvs-all@FreeBSD.ORG Fri Aug 24 19:41:04 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D224916A468; Fri, 24 Aug 2007 19:41:04 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AB7EF13C48A; Fri, 24 Aug 2007 19:41:04 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OJf4SJ027149; Fri, 24 Aug 2007 19:41:04 GMT (envelope-from mm@repoman.freebsd.org) Received: (from mm@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OJf4DG027148; Fri, 24 Aug 2007 19:41:04 GMT (envelope-from mm) Message-Id: <200708241941.l7OJf4DG027148@repoman.freebsd.org> From: Martin Matuska Date: Fri, 24 Aug 2007 19: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/x11-toolkits/blt Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2007 19:41:04 -0000 mm 2007-08-24 19:41:04 UTC FreeBSD ports repository Modified files: x11-toolkits/blt Makefile Log: - Use USE_TK=80+ and USE_XORG=x11 PR: ports/115766 Submitted by: mm Approved by: Kenijro Cho (maintainer) Revision Changes Path 1.49 +11 -13 ports/x11-toolkits/blt/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 24 20:05:02 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 73AE016A419; Fri, 24 Aug 2007 20:05:02 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4A85513C47E; Fri, 24 Aug 2007 20:05:02 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OK52dG029735; Fri, 24 Aug 2007 20:05:02 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OK52Hn029734; Fri, 24 Aug 2007 20:05:02 GMT (envelope-from mezz) Message-Id: <200708242005.l7OK52Hn029734@repoman.freebsd.org> From: Jeremy Messenger Date: Fri, 24 Aug 2007 20:05: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/net-p2p/transmission Makefile distinfo ports/net-p2p/transmission/files patch-libtransmission_torrent.c ports/net-p2p/transmission-gtk2 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, 24 Aug 2007 20:05:02 -0000 mezz 2007-08-24 20:05:02 UTC FreeBSD ports repository Modified files: net-p2p/transmission Makefile distinfo net-p2p/transmission-gtk2 pkg-plist Removed files: net-p2p/transmission/files patch-libtransmission_torrent.c Log: Update to 0.81. Revision Changes Path 1.7 +3 -0 ports/net-p2p/transmission-gtk2/pkg-plist 1.17 +5 -3 ports/net-p2p/transmission/Makefile 1.12 +3 -3 ports/net-p2p/transmission/distinfo 1.2 +0 -13 ports/net-p2p/transmission/files/patch-libtransmission_torrent.c (dead) From owner-cvs-all@FreeBSD.ORG Fri Aug 24 20:25:52 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BFF4B16A419; Fri, 24 Aug 2007 20:25:52 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9A9A013C48A; Fri, 24 Aug 2007 20:25:52 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OKPqbB030846; Fri, 24 Aug 2007 20:25:52 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OKPqkJ030845; Fri, 24 Aug 2007 20:25:52 GMT (envelope-from bms) Message-Id: <200708242025.l7OKPqkJ030845@repoman.freebsd.org> From: Bruce M Simpson Date: Fri, 24 Aug 2007 20:25: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/include/arpa inet.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, 24 Aug 2007 20:25:52 -0000 bms 2007-08-24 20:25:52 UTC FreeBSD src repository Modified files: include/arpa inet.h Log: Remove old prototypes for addr2ascii() and ascii2addr(), functions which no longer exist in libc. Requested by: Craig Rodrigues Approved by: re (kensmith) Revision Changes Path 1.30 +0 -2 src/include/arpa/inet.h From owner-cvs-all@FreeBSD.ORG Fri Aug 24 20:37:34 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BD03616A468; Fri, 24 Aug 2007 20:37:34 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from speedfactory.net (mail6.speedfactory.net [66.23.216.219]) by mx1.freebsd.org (Postfix) with ESMTP id 4D5B213C457; Fri, 24 Aug 2007 20:37:34 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (unverified [66.23.211.162]) by speedfactory.net (SurgeMail 3.8k) with ESMTP id 205121704-1834499 for multiple; Fri, 24 Aug 2007 16:37:30 -0400 Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.8/8.13.8) with ESMTP id l7OKbFWB031698; Fri, 24 Aug 2007 16:37:18 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Daniel Eischen Date: Fri, 24 Aug 2007 16:37:09 -0400 User-Agent: KMail/1.9.6 References: <200708230509.l7N59VCi048341@repoman.freebsd.org> <20070824183630.GA99474@comp.chem.msu.su> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200708241637.09962.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, 24 Aug 2007 16:37:18 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/4054/Fri Aug 24 12:55:59 2007 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: Yar Tikhiy , src-committers@freebsd.org, cvs-all@freebsd.org, cvs-src@freebsd.org Subject: Re: cvs commit: src/lib/libc/gen fts-compat.c fts-compat.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, 24 Aug 2007 20:37:34 -0000 On Friday 24 August 2007 03:14:53 pm Daniel Eischen wrote: > On Fri, 24 Aug 2007, Yar Tikhiy wrote: > > The reason for exercising symbol versions right now is that "make > > installworld" is sensitive to the fts(3) ABI. If the ABI is just > > broken w/o special measures, "make installworld" will fail in the > > middle and leave you with a botched system. It goes as follows: > > > > - "make installworld" copies the old /usr/bin/find and some other > > tools to /tmp/install.xxx for use during the install > > - libc is overwritten by its new instance, with new fts(3) ABI > > - the old find(1) is run by installworld and dumps core immediately. > > Why don't you make find and the install tools static. Because they aren't built during buildworld, these are the existing binaries on the existing system that are used just before they are overwritten. However, per my other e-mail, I think -current users should just deal, or use a temporary hack to get over the hurdle. -- John Baldwin From owner-cvs-all@FreeBSD.ORG Fri Aug 24 20:38:10 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 134B816A418; Fri, 24 Aug 2007 20:38:10 +0000 (UTC) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E0A5613C458; Fri, 24 Aug 2007 20:38:09 +0000 (UTC) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OKc9gd031562; Fri, 24 Aug 2007 20:38:09 GMT (envelope-from danger@repoman.freebsd.org) Received: (from danger@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OKc96G031561; Fri, 24 Aug 2007 20:38:09 GMT (envelope-from danger) Message-Id: <200708242038.l7OKc96G031561@repoman.freebsd.org> From: Daniel Gerzo Date: Fri, 24 Aug 2007 20:38: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/sbin/sysctl sysctl.8 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2007 20:38:10 -0000 danger 2007-08-24 20:38:09 UTC FreeBSD src repository (doc committer) Modified files: sbin/sysctl sysctl.8 Log: document hw.realmem Submitted by: cnst@ (Constantine A. Murenin) Sponsored by: Google Summer of Code 2007 Approved by: re@ (bmah) MFC after: 1 week Revision Changes Path 1.61 +1 -0 src/sbin/sysctl/sysctl.8 From owner-cvs-all@FreeBSD.ORG Fri Aug 24 20:38:19 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5F07516A46D; Fri, 24 Aug 2007 20:38:19 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from speedfactory.net (mail6.speedfactory.net [66.23.216.219]) by mx1.freebsd.org (Postfix) with ESMTP id E25EA13C46A; Fri, 24 Aug 2007 20:38:18 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (unverified [66.23.211.162]) by speedfactory.net (SurgeMail 3.8k) with ESMTP id 205121697-1834499 for multiple; Fri, 24 Aug 2007 16:37:27 -0400 Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.8/8.13.8) with ESMTP id l7OKbFWA031698; Fri, 24 Aug 2007 16:37:16 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Yar Tikhiy Date: Fri, 24 Aug 2007 16:35:34 -0400 User-Agent: KMail/1.9.6 References: <200708230509.l7N59VCi048341@repoman.freebsd.org> <20070824183630.GA99474@comp.chem.msu.su> In-Reply-To: <20070824183630.GA99474@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: <200708241635.36266.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, 24 Aug 2007 16:37:16 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/4054/Fri Aug 24 12:55:59 2007 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: Daniel Eischen , cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libc/gen fts-compat.c fts-compat.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, 24 Aug 2007 20:38:19 -0000 On Friday 24 August 2007 02:36:30 pm Yar Tikhiy wrote: > On Fri, Aug 24, 2007 at 11:03:12AM -0400, Daniel Eischen wrote: > > On Thu, 23 Aug 2007, Yar Tikhiy wrote: > > > > >yar 2007-08-23 05:09:31 UTC > > > > > > FreeBSD src repository > > > > > > Modified files: > > > lib/libc/gen fts-compat.c fts-compat.h > > > Log: > > > Forced commit to note repo-copy: > > > > > > These files have been repo-copied from src/include/fts.h > > > and src/lib/libc/gen/fts.c to serve as a base for 4.4BSD > > > compatible versions of fts(3) functions to be preserved > > > through libc symbol versioning while the default versions > > > undergo ABI-breaking extension to support big file trees. > > > > When are you going to break the ABI? After 7.0 is tagged > > and released? If you break the ABI before, you don't need > > or want to have the compat versions; the libraries have already > > been bumped in prep for release. I don't think we want to > > use symbol versioning as a crutch for -current users; the > > version definitions are meant for public releases only. > > The reason for exercising symbol versions right now is that "make > installworld" is sensitive to the fts(3) ABI. If the ABI is just > broken w/o special measures, "make installworld" will fail in the > middle and leave you with a botched system. It goes as follows: > > - "make installworld" copies the old /usr/bin/find and some other > tools to /tmp/install.xxx for use during the install > - libc is overwritten by its new instance, with new fts(3) ABI > - the old find(1) is run by installworld and dumps core immediately. > > Earlier the problem was to be avoided by bumping libc version so > that the old libc is kept, and now I chose symbol versioning to get > around it. Do you think there is a different way? 6.x users upgrading to 7.0 will have a 6.x /usr/bin/find, so they will be ok. It's only old -current users who already have a libc.so.7 that will be inconvenienced, and that's part of running -current. Maybe you could use a hack where for 7.x osreldate's you copy tools out of /rescue instead for a few weeks to give people on -current a chance to upgrade. -- John Baldwin From owner-cvs-all@FreeBSD.ORG Fri Aug 24 20:46:31 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4289B16A419; Fri, 24 Aug 2007 20:46:31 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1BBCC13C483; Fri, 24 Aug 2007 20:46:31 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OKkVpP032081; Fri, 24 Aug 2007 20:46:31 GMT (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OKkUfT032080; Fri, 24 Aug 2007 20:46:30 GMT (envelope-from gerald) Message-Id: <200708242046.l7OKkUfT032080@repoman.freebsd.org> From: Gerald Pfeifer Date: Fri, 24 Aug 2007 20:46: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/emulators/wine 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, 24 Aug 2007 20:46:31 -0000 gerald 2007-08-24 20:46:30 UTC FreeBSD ports repository Modified files: emulators/wine Makefile distinfo Log: Update to Wine 0.9.44. Among others, this brings the following changes: - Better heuristics for making windows managed. - Automatic detection of timezone parameters. - Improvements to the builtin WordPad. - Better signatures support in crypt32. - Still more gdiplus functions. - Lots of bug fixes. Revision Changes Path 1.241 +1 -1 ports/emulators/wine/Makefile 1.141 +3 -3 ports/emulators/wine/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 24 21:09:55 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A285B16A418; Fri, 24 Aug 2007 21:09:55 +0000 (UTC) (envelope-from cokane@freebsd.org) Received: from alnrmhc15.comcast.net (alnrmhc15.comcast.net [204.127.225.95]) by mx1.freebsd.org (Postfix) with ESMTP id 474D713C442; Fri, 24 Aug 2007 21:09:55 +0000 (UTC) (envelope-from cokane@freebsd.org) Received: from discordia (c-75-69-212-227.hsd1.nh.comcast.net[75.69.212.227]) by comcast.net (alnrmhc15) with ESMTP id <20070824205720b1500a3p95e>; Fri, 24 Aug 2007 20:57:20 +0000 Received: by discordia (Postfix, from userid 103) id 204E835A578; Fri, 24 Aug 2007 16:57:20 -0400 (EDT) X-Spam-Checker-Version: SpamAssassin 3.1.8-gr1 (2007-02-13) on discordia X-Spam-Level: X-Spam-Status: No, score=-4.4 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.1.8-gr1 Received: from [172.20.1.3] (erwin.int.cokane.org [172.20.1.3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by discordia (Postfix) with ESMTP id 3182735A577; Fri, 24 Aug 2007 16:57:09 -0400 (EDT) Message-ID: <46CF45F8.9060405@FreeBSD.org> Date: Fri, 24 Aug 2007 16:56:24 -0400 From: Coleman Kane Organization: The FreeBSD Project User-Agent: Thunderbird 2.0.0.6 (X11/20070813) MIME-Version: 1.0 To: John Baldwin References: <200708230509.l7N59VCi048341@repoman.freebsd.org> <20070824183630.GA99474@comp.chem.msu.su> <200708241635.36266.jhb@freebsd.org> In-Reply-To: <200708241635.36266.jhb@freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Daniel Eischen , Yar Tikhiy , src-committers@freebsd.org, cvs-all@freebsd.org, cvs-src@freebsd.org Subject: Re: cvs commit: src/lib/libc/gen fts-compat.c fts-compat.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: cokane@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, 24 Aug 2007 21:09:55 -0000 John Baldwin wrote: > On Friday 24 August 2007 02:36:30 pm Yar Tikhiy wrote: > >> On Fri, Aug 24, 2007 at 11:03:12AM -0400, Daniel Eischen wrote: >> >>> On Thu, 23 Aug 2007, Yar Tikhiy wrote: >>> >>> >>>> yar 2007-08-23 05:09:31 UTC >>>> >>>> FreeBSD src repository >>>> >>>> Modified files: >>>> lib/libc/gen fts-compat.c fts-compat.h >>>> Log: >>>> Forced commit to note repo-copy: >>>> >>>> These files have been repo-copied from src/include/fts.h >>>> and src/lib/libc/gen/fts.c to serve as a base for 4.4BSD >>>> compatible versions of fts(3) functions to be preserved >>>> through libc symbol versioning while the default versions >>>> undergo ABI-breaking extension to support big file trees. >>>> >>> When are you going to break the ABI? After 7.0 is tagged >>> and released? If you break the ABI before, you don't need >>> or want to have the compat versions; the libraries have already >>> been bumped in prep for release. I don't think we want to >>> use symbol versioning as a crutch for -current users; the >>> version definitions are meant for public releases only. >>> >> The reason for exercising symbol versions right now is that "make >> installworld" is sensitive to the fts(3) ABI. If the ABI is just >> broken w/o special measures, "make installworld" will fail in the >> middle and leave you with a botched system. It goes as follows: >> >> - "make installworld" copies the old /usr/bin/find and some other >> tools to /tmp/install.xxx for use during the install >> - libc is overwritten by its new instance, with new fts(3) ABI >> - the old find(1) is run by installworld and dumps core immediately. >> >> Earlier the problem was to be avoided by bumping libc version so >> that the old libc is kept, and now I chose symbol versioning to get >> around it. Do you think there is a different way? >> > > 6.x users upgrading to 7.0 will have a 6.x /usr/bin/find, so they will > be ok. It's only old -current users who already have a libc.so.7 that > will be inconvenienced, and that's part of running -current. Maybe > you could use a hack where for 7.x osreldate's you copy tools out of > /rescue instead for a few weeks to give people on -current a chance to > upgrade. > Whatever the solution turns out to be, don't forget to drop it into UPGRADING... -- Coleman Kane From owner-cvs-all@FreeBSD.ORG Fri Aug 24 21:31:23 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C468B16A41A; Fri, 24 Aug 2007 21:31:23 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9DBD113C461; Fri, 24 Aug 2007 21:31:23 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OLVNuP044230; Fri, 24 Aug 2007 21:31:23 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OLVNCH044229; Fri, 24 Aug 2007 21:31:23 GMT (envelope-from bms) Message-Id: <200708242131.l7OLVNCH044229@repoman.freebsd.org> From: Bruce M Simpson Date: Fri, 24 Aug 2007 21:31: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/astro/gpstk 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, 24 Aug 2007 21:31:23 -0000 bms 2007-08-24 21:31:23 UTC FreeBSD ports repository (src committer) Modified files: astro/gpstk Makefile distinfo pkg-plist Log: Update to release 1.3. Submitted by: Ying-Chieh Liao PR: 115675 Revision Changes Path 1.8 +3 -4 ports/astro/gpstk/Makefile 1.2 +3 -3 ports/astro/gpstk/distinfo 1.3 +296 -161 ports/astro/gpstk/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 24 21:37:24 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 15EB916A417; Fri, 24 Aug 2007 21:37:24 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E39EB13C442; Fri, 24 Aug 2007 21:37:23 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OLbNh5044515; Fri, 24 Aug 2007 21:37:23 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OLbNRD044514; Fri, 24 Aug 2007 21:37:23 GMT (envelope-from thierry) Message-Id: <200708242137.l7OLbNRD044514@repoman.freebsd.org> From: Thierry Thomas Date: Fri, 24 Aug 2007 21: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/databases/jasperreports 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, 24 Aug 2007 21:37:24 -0000 thierry 2007-08-24 21:37:23 UTC FreeBSD ports repository Modified files: databases/jasperreports Makefile distinfo Log: Upgrade to JasperReports 2.0.1. Changelog at . Revision Changes Path 1.25 +1 -1 ports/databases/jasperreports/Makefile 1.23 +6 -6 ports/databases/jasperreports/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 24 21:42:51 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9455E16A417; Fri, 24 Aug 2007 21:42:51 +0000 (UTC) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6DC3613C49D; Fri, 24 Aug 2007 21:42:51 +0000 (UTC) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OLgpqq044886; Fri, 24 Aug 2007 21:42:51 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OLgp6B044885; Fri, 24 Aug 2007 21:42:51 GMT (envelope-from murray) Message-Id: <200708242142.l7OLgp6B044885@repoman.freebsd.org> From: Murray Stokely Date: Fri, 24 Aug 2007 21:42: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/share/sgml events.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2007 21:42:51 -0000 murray 2007-08-24 21:42:51 UTC FreeBSD doc repository Modified files: share/sgml events.xml Log: Add Kirk's upcoming UC Berkeley extension courses on FreeBSD Kernel Internals, and BSD history and community. Also note that there are tutorials preceding EuroBSDCon. Submitted by: mckusick Revision Changes Path 1.23 +119 -2 www/share/sgml/events.xml From owner-cvs-all@FreeBSD.ORG Fri Aug 24 21:44:34 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1A23516A46B; Fri, 24 Aug 2007 21:44:34 +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 3167B13C467; Fri, 24 Aug 2007 21:44:32 +0000 (UTC) (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.4) with ESMTP id l7OLiUss010934; Sat, 25 Aug 2007 01:44:30 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.4/8.13.4/Submit) id l7OLiUhC010933; Sat, 25 Aug 2007 01:44:30 +0400 (MSD) (envelope-from yar) Date: Sat, 25 Aug 2007 01:44:29 +0400 From: Yar Tikhiy To: Daniel Eischen Message-ID: <20070824214429.GB99474@comp.chem.msu.su> References: <200708230509.l7N59VCi048341@repoman.freebsd.org> <20070824183630.GA99474@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, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libc/gen fts-compat.c fts-compat.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, 24 Aug 2007 21:44:34 -0000 On Fri, Aug 24, 2007 at 03:14:53PM -0400, Daniel Eischen wrote: > On Fri, 24 Aug 2007, Yar Tikhiy wrote: > > >On Fri, Aug 24, 2007 at 11:03:12AM -0400, Daniel Eischen wrote: > >>On Thu, 23 Aug 2007, Yar Tikhiy wrote: > >> > >>>yar 2007-08-23 05:09:31 UTC > >>> > >>>FreeBSD src repository > >>> > >>>Modified files: > >>> lib/libc/gen fts-compat.c fts-compat.h > >>>Log: > >>>Forced commit to note repo-copy: > >>> > >>>These files have been repo-copied from src/include/fts.h > >>>and src/lib/libc/gen/fts.c to serve as a base for 4.4BSD > >>>compatible versions of fts(3) functions to be preserved > >>>through libc symbol versioning while the default versions > >>>undergo ABI-breaking extension to support big file trees. > >> > >>When are you going to break the ABI? After 7.0 is tagged > >>and released? If you break the ABI before, you don't need > >>or want to have the compat versions; the libraries have already > >>been bumped in prep for release. I don't think we want to > >>use symbol versioning as a crutch for -current users; the > >>version definitions are meant for public releases only. > > > >The reason for exercising symbol versions right now is that "make > >installworld" is sensitive to the fts(3) ABI. If the ABI is just > >broken w/o special measures, "make installworld" will fail in the > >middle and leave you with a botched system. It goes as follows: > > > >- "make installworld" copies the old /usr/bin/find and some other > > tools to /tmp/install.xxx for use during the install > >- libc is overwritten by its new instance, with new fts(3) ABI > >- the old find(1) is run by installworld and dumps core immediately. > > Why don't you make find and the install tools static. They are just copied from /usr/bin and friends before the actual install process starts. I had the idea of using newly built tools with LD_LIBRARY_PATH set to ${WORLDTMP}/{lib,usr/lib} for that purpose, but its discussion with ru@ didn't end up in a definite conclusion whether it was feasible. I haven't had time to experiment with my idea yet. > >Earlier the problem was to be avoided by bumping libc version so > >that the old libc is kept, and now I chose symbol versioning to get > >around it. Do you think there is a different way? > > Yes, you wait until after release to do this. Look at it Excuse me, but I don't want to have the bug I'm trying to fix (bin/104458) in 7.0-RELEASE. I'm certain we'll work out a way to have the bug fixed, with or without symbol versioning. > this way: if there wasn't symbol versioning and libc was > already bumped, how would you solve the problem? You > wouldn't bump libc again, right? I've believed that symbol versioning should help us to fix bugs, not prevent us from doing so. Not having to bump the libc version each time was the main reason to have symbol versioning, wasn't it? -- Yar From owner-cvs-all@FreeBSD.ORG Fri Aug 24 21:55:52 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1A5C416A417; Fri, 24 Aug 2007 21:55:52 +0000 (UTC) (envelope-from peterjeremy@optushome.com.au) Received: from turion.vk2pj.dyndns.org (c220-239-20-82.belrs4.nsw.optusnet.com.au [220.239.20.82]) by mx1.freebsd.org (Postfix) with ESMTP id 990D213C48E; Fri, 24 Aug 2007 21:55:51 +0000 (UTC) (envelope-from peterjeremy@optushome.com.au) Received: from turion.vk2pj.dyndns.org (localhost.vk2pj.dyndns.org [127.0.0.1]) by turion.vk2pj.dyndns.org (8.14.1/8.14.1) with ESMTP id l7OLtFqa016290; Sat, 25 Aug 2007 07:55:15 +1000 (EST) (envelope-from peter@turion.vk2pj.dyndns.org) Received: (from peter@localhost) by turion.vk2pj.dyndns.org (8.14.1/8.14.1/Submit) id l7OLtFOZ016289; Sat, 25 Aug 2007 07:55:15 +1000 (EST) (envelope-from peter) Date: Sat, 25 Aug 2007 07:55:15 +1000 From: Peter Jeremy To: Yar Tikhiy Message-ID: <20070824215515.GF16131@turion.vk2pj.dyndns.org> References: <200708230509.l7N59VCi048341@repoman.freebsd.org> <20070824183630.GA99474@comp.chem.msu.su> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="C7zPtVaVf+AK4Oqc" Content-Disposition: inline In-Reply-To: <20070824183630.GA99474@comp.chem.msu.su> X-PGP-Key: http://members.optusnet.com.au/peterjeremy/pubkey.asc User-Agent: Mutt/1.5.16 (2007-06-09) Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libc/gen fts-compat.c fts-compat.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, 24 Aug 2007 21:55:52 -0000 --C7zPtVaVf+AK4Oqc Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2007-Aug-24 22:36:30 +0400, Yar Tikhiy wrote: >The reason for exercising symbol versions right now is that "make >installworld" is sensitive to the fts(3) ABI. If the ABI is just >broken w/o special measures, "make installworld" will fail in the >middle and leave you with a botched system. It goes as follows: > >- "make installworld" copies the old /usr/bin/find and some other > tools to /tmp/install.xxx for use during the install >- libc is overwritten by its new instance, with new fts(3) ABI >- the old find(1) is run by installworld and dumps core immediately. The other option is to update the "copy old executables" part of installworld to also copy relevant old shared libraries and force their use for the "make reinstall" via LD_LIBRARY_PATH. --=20 Peter Jeremy --C7zPtVaVf+AK4Oqc Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQFGz1PD/opHv/APuIcRAnVtAKCYUMUkyNin/HkhhayMAizp+4cGngCfd6LB G9cX+8OOVbbkqTW/rDpyi8s= =+jnx -----END PGP SIGNATURE----- --C7zPtVaVf+AK4Oqc-- From owner-cvs-all@FreeBSD.ORG Fri Aug 24 22:04:52 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8959B16A419; Fri, 24 Aug 2007 22:04:52 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id 7595213C46E; Fri, 24 Aug 2007 22:04:52 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id B95561A4D8D; Fri, 24 Aug 2007 15:02:44 -0700 (PDT) Date: Fri, 24 Aug 2007 15:02:44 -0700 From: Alfred Perlstein To: Peter Jeremy Message-ID: <20070824220244.GH87451@elvis.mu.org> References: <200708230509.l7N59VCi048341@repoman.freebsd.org> <20070824183630.GA99474@comp.chem.msu.su> <20070824215515.GF16131@turion.vk2pj.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070824215515.GF16131@turion.vk2pj.dyndns.org> User-Agent: Mutt/1.4.2.3i Cc: Yar Tikhiy , src-committers@freebsd.org, cvs-all@freebsd.org, cvs-src@freebsd.org Subject: Re: cvs commit: src/lib/libc/gen fts-compat.c fts-compat.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, 24 Aug 2007 22:04:52 -0000 Not to pick on anyone here but Yar did something that works, why exactly are we not allowing him to use the tools provided for this exact purpose and instead making him do convoluted workarounds? I mean seriously, so we have a versioned symbol that could possibly be avoided by a lot of hard work and magic which will probably fail for a bunch of users.... ...so why not just use what works? -Alfred * Peter Jeremy [070824 14:53] wrote: > On 2007-Aug-24 22:36:30 +0400, Yar Tikhiy wrote: > >The reason for exercising symbol versions right now is that "make > >installworld" is sensitive to the fts(3) ABI. If the ABI is just > >broken w/o special measures, "make installworld" will fail in the > >middle and leave you with a botched system. It goes as follows: > > > >- "make installworld" copies the old /usr/bin/find and some other > > tools to /tmp/install.xxx for use during the install > >- libc is overwritten by its new instance, with new fts(3) ABI > >- the old find(1) is run by installworld and dumps core immediately. > > The other option is to update the "copy old executables" part of > installworld to also copy relevant old shared libraries and force > their use for the "make reinstall" via LD_LIBRARY_PATH. > > -- > Peter Jeremy -- - Alfred Perlstein From owner-cvs-all@FreeBSD.ORG Fri Aug 24 22:21:57 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 63D2716A417; Fri, 24 Aug 2007 22:21:57 +0000 (UTC) (envelope-from eischen@vigrid.com) Received: from mail.netplex.net (mail.netplex.net [204.213.176.10]) by mx1.freebsd.org (Postfix) with ESMTP id 245DE13C461; Fri, 24 Aug 2007 22:21:56 +0000 (UTC) (envelope-from eischen@vigrid.com) Received: from sea.ntplx.net (sea.ntplx.net [204.213.176.11]) by mail.netplex.net (8.14.1/8.14.1/NETPLEX) with ESMTP id l7OM3Zxr003868; Fri, 24 Aug 2007 18:03:35 -0400 (EDT) X-Virus-Scanned: by AMaViS and Clam AntiVirus (mail.netplex.net) X-Greylist: Message whitelisted by DRAC access database, not delayed by milter-greylist-3.0 (mail.netplex.net [204.213.176.10]); Fri, 24 Aug 2007 18:03:35 -0400 (EDT) Date: Fri, 24 Aug 2007 18:03:35 -0400 (EDT) From: Daniel Eischen X-X-Sender: eischen@sea.ntplx.net To: Yar Tikhiy In-Reply-To: <20070824214429.GB99474@comp.chem.msu.su> Message-ID: References: <200708230509.l7N59VCi048341@repoman.freebsd.org> <20070824183630.GA99474@comp.chem.msu.su> <20070824214429.GB99474@comp.chem.msu.su> 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/lib/libc/gen fts-compat.c fts-compat.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, 24 Aug 2007 22:21:57 -0000 On Sat, 25 Aug 2007, Yar Tikhiy wrote: > On Fri, Aug 24, 2007 at 03:14:53PM -0400, Daniel Eischen wrote: > >> this way: if there wasn't symbol versioning and libc was >> already bumped, how would you solve the problem? You >> wouldn't bump libc again, right? > > I've believed that symbol versioning should help us to fix bugs, not > prevent us from doing so. Not having to bump the libc version each > time was the main reason to have symbol versioning, wasn't it? The version defs and symbol versioning are for releases, and not meant for use to solve -current upgrade problems. You wouldn't see Sun bump their public version definitions to work around interim ABI changes in their development tree. We will always have issues like this for those running and developing in -current, and we shouldn't be using public version definitions to work around our own internal build problems. -- DE From owner-cvs-all@FreeBSD.ORG Fri Aug 24 22:25:33 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6C0DE16A417; Fri, 24 Aug 2007 22:25:33 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: from mail.netplex.net (mail.netplex.net [204.213.176.10]) by mx1.freebsd.org (Postfix) with ESMTP id 284D613C45A; Fri, 24 Aug 2007 22:25:28 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: from sea.ntplx.net (sea.ntplx.net [204.213.176.11]) by mail.netplex.net (8.14.1/8.14.1/NETPLEX) with ESMTP id l7OMPH3h016514; Fri, 24 Aug 2007 18:25:17 -0400 (EDT) X-Virus-Scanned: by AMaViS and Clam AntiVirus (mail.netplex.net) X-Greylist: Message whitelisted by DRAC access database, not delayed by milter-greylist-3.0 (mail.netplex.net [204.213.176.10]); Fri, 24 Aug 2007 18:25:18 -0400 (EDT) Date: Fri, 24 Aug 2007 18:25:17 -0400 (EDT) From: Daniel Eischen X-X-Sender: eischen@sea.ntplx.net To: Alfred Perlstein In-Reply-To: <20070824220244.GH87451@elvis.mu.org> Message-ID: References: <200708230509.l7N59VCi048341@repoman.freebsd.org> <20070824183630.GA99474@comp.chem.msu.su> <20070824215515.GF16131@turion.vk2pj.dyndns.org> <20070824220244.GH87451@elvis.mu.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: src-committers@freebsd.org, cvs-all@freebsd.org, cvs-src@freebsd.org, Yar Tikhiy Subject: Re: cvs commit: src/lib/libc/gen fts-compat.c fts-compat.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Daniel Eischen List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2007 22:25:33 -0000 On Fri, 24 Aug 2007, Alfred Perlstein wrote: > Not to pick on anyone here but Yar did something that works, > why exactly are we not allowing him to use the tools provided > for this exact purpose and instead making him do convoluted > workarounds? > > I mean seriously, so we have a versioned symbol that could > possibly be avoided by a lot of hard work and magic which will > probably fail for a bunch of users.... > > ...so why not just use what works? Please, enough of this "it works, so why not?". We didn't always have symbol versioning, and we have solved these problems before without it. There seems to be an inherent problem with our build system, and the LD_LIBRARY_PATH trick seems to make sense to me, or building and installing the install tools as static to avoid problems like this. I never added symbol versioning to libc in order to solve -current upgrade problems. Sure, you're free to use it that way, but it would not make me very happy ;-) -- DE From owner-cvs-all@FreeBSD.ORG Fri Aug 24 22:31:06 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B42F516A46B for ; Fri, 24 Aug 2007 22:31:06 +0000 (UTC) (envelope-from mureninc@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.227]) by mx1.freebsd.org (Postfix) with ESMTP id 4800B13C46E for ; Fri, 24 Aug 2007 22:31:06 +0000 (UTC) (envelope-from mureninc@gmail.com) Received: by wr-out-0506.google.com with SMTP id 70so703976wra for ; Fri, 24 Aug 2007 15:31:05 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=k9PoNwaGRNCd2qASOmo2+FZUX5M9s5bd5h+UV2qpUv9EzLBO5aonT8VNj5+AddWtSTHGzG1AewyJJ+Y1iwvXV41ToelbYAs1uDkKZT10UTUl1/SDaioivS5zhlwiJdm0CO6gGH87x/BjPmcEI1ULP6jpjFtAa0BNdOpeiCiN+8w= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=LBfnASvgvKB0fMalhVoFR40ola4Vw1Koo1mtCBhfnEdPSRXGyi4aKoqZwmPOvY7Fwz5Qug8lzSidW6+H7h/8XB/RlcE37G8Fcb9+8ILH2sKkawTBFihzdBEcfu8cELvOBuUZQZWGrmNd+2rMMzgPDecyHB+g0M6YvJSFx/r4X0Y= Received: by 10.90.101.19 with SMTP id y19mr9769360agb.1187994665285; Fri, 24 Aug 2007 15:31:05 -0700 (PDT) Received: by 10.90.78.10 with HTTP; Fri, 24 Aug 2007 15:31:05 -0700 (PDT) Message-ID: Date: Fri, 24 Aug 2007 18:31:05 -0400 From: "Constantine A. Murenin" Sender: mureninc@gmail.com To: "Nate Lawson" In-Reply-To: <46CDA669.8080601@root.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <200708231053.l7NAr3Pc088160@repoman.freebsd.org> <86zm0izfhf.fsf@ds4.des.no> <46CDA669.8080601@root.org> X-Google-Sender-Auth: eb02adbb614bc472 Cc: =?ISO-8859-1?Q?Dag-Erling_Sm=F8rgrav?= , src-committers@freebsd.org, "Constantine A. Murenin" , cvs-all@freebsd.org, cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/dev/coretemp coretemp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2007 22:31:06 -0000 On 23/08/07, Nate Lawson wrote: > Dag-Erling Sm=F8rgrav wrote: > > Dag-Erling Smorgrav writes: > >> Log: > >> Style nits + more reliable Tj(max) detection + improved reporting of > >> critical temperature + sched_unbind() after rdmsr + initialize sc_de= v. > > > > I should note that the driver currently only checks for (and reports) a > > critical temperature when you read the sysctl; if you want to use devd > > to react to a critical temperature, you need to set up a cron job to > > poll dev.cpu.N.temperature. Hopefully, a future version of the driver > > will install an interrupt handler and activate the temperature threshol= d > > interrupts. > > > > DES > > You could also create a polling thread that runs every 10 seconds. We > have that for acpi_thermal currently. Actually, this is what coretemp(4) does in my cnst-sensors p4 branch, using a sensor_task, people are welcome to test it. ;) C. From owner-cvs-all@FreeBSD.ORG Fri Aug 24 22:31:16 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CA48316A46B; Fri, 24 Aug 2007 22:31:16 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BAC0313C46A; Fri, 24 Aug 2007 22:31:16 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OMVGaN049249; Fri, 24 Aug 2007 22:31:16 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OMVGA4049248; Fri, 24 Aug 2007 22:31:16 GMT (envelope-from thierry) Message-Id: <200708242231.l7OMVGA4049248@repoman.freebsd.org> From: Thierry Thomas Date: Fri, 24 Aug 2007 22: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/graphics Makefile ports/graphics/libboard 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, 24 Aug 2007 22:31:16 -0000 thierry 2007-08-24 22:31:16 UTC FreeBSD ports repository Modified files: graphics Makefile Added files: graphics/libboard Makefile distinfo pkg-descr pkg-plist Log: The board library allows simple drawings in: * Encapsulated Postcript files (EPS); * XFig files (FIG); * Scalable Vector Graphics files (SVG). WWW: http://www.greyc.ensicaen.fr/~seb/board/ Revision Changes Path 1.1094 +1 -0 ports/graphics/Makefile 1.1 +43 -0 ports/graphics/libboard/Makefile (new) 1.1 +3 -0 ports/graphics/libboard/distinfo (new) 1.1 +7 -0 ports/graphics/libboard/pkg-descr (new) 1.1 +11 -0 ports/graphics/libboard/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 24 22:31:28 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5FF9416A41B; Fri, 24 Aug 2007 22:31:28 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 39ACB13C45B; Fri, 24 Aug 2007 22:31:28 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OMVSFB049336; Fri, 24 Aug 2007 22:31:28 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OMVScF049335; Fri, 24 Aug 2007 22:31:28 GMT (envelope-from thierry) Message-Id: <200708242231.l7OMVScF049335@repoman.freebsd.org> From: Thierry Thomas Date: Fri, 24 Aug 2007 22:31:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: 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, 24 Aug 2007 22:31:28 -0000 thierry 2007-08-24 22:31:28 UTC FreeBSD ports repository Modified files: . modules Log: libboard --> ports/graphics/libboard Revision Changes Path 1.18597 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Aug 24 22:31:57 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 897D516A46D; Fri, 24 Aug 2007 22:31:57 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 00D7B13C4B5; Fri, 24 Aug 2007 22:31:56 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7OMVucF049413; Fri, 24 Aug 2007 22:31:56 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7OMVumg049412; Fri, 24 Aug 2007 22:31:56 GMT (envelope-from thierry) Message-Id: <200708242231.l7OMVumg049412@repoman.freebsd.org> From: Thierry Thomas Date: Fri, 24 Aug 2007 22:31: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/graphics/cimg Makefile distinfo pkg-plist ports/graphics/cimg/files patch-examples::Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2007 22:31:57 -0000 thierry 2007-08-24 22:31:56 UTC FreeBSD ports repository Modified files: graphics/cimg Makefile distinfo pkg-plist graphics/cimg/files patch-examples::Makefile Log: Upgrade to 1.2.3. Changelog at . Revision Changes Path 1.37 +3 -2 ports/graphics/cimg/Makefile 1.30 +3 -3 ports/graphics/cimg/distinfo 1.16 +22 -13 ports/graphics/cimg/files/patch-examples::Makefile 1.21 +9 -0 ports/graphics/cimg/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 24 23:26:31 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BE50116A418; Fri, 24 Aug 2007 23:26:31 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 6125D13C468; Fri, 24 Aug 2007 23:26:31 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.13.8/8.13.4) with ESMTP id l7ONMCtV053762; Fri, 24 Aug 2007 17:22:12 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Fri, 24 Aug 2007 17:22:12 -0600 (MDT) Message-Id: <20070824.172212.74696955.imp@bsdimp.com> To: deischen@FreeBSD.org From: Warner Losh In-Reply-To: References: <20070824215515.GF16131@turion.vk2pj.dyndns.org> <20070824220244.GH87451@elvis.mu.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, 24 Aug 2007 17:22:13 -0600 (MDT) Cc: src-committers@FreeBSD.org, alfred@FreeBSD.org, cvs-all@FreeBSD.org, cvs-src@FreeBSD.org, yar@comp.chem.msu.su Subject: Re: cvs commit: src/lib/libc/gen fts-compat.c fts-compat.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, 24 Aug 2007 23:26:31 -0000 From: Daniel Eischen Subject: Re: cvs commit: src/lib/libc/gen fts-compat.c fts-compat.h Date: Fri, 24 Aug 2007 18:25:17 -0400 (EDT) > On Fri, 24 Aug 2007, Alfred Perlstein wrote: > > > Not to pick on anyone here but Yar did something that works, > > why exactly are we not allowing him to use the tools provided > > for this exact purpose and instead making him do convoluted > > workarounds? > > > > I mean seriously, so we have a versioned symbol that could > > possibly be avoided by a lot of hard work and magic which will > > probably fail for a bunch of users.... > > > > ...so why not just use what works? > > Please, enough of this "it works, so why not?". We didn't always > have symbol versioning, and we have solved these problems before > without it. There seems to be an inherent problem with our > build system, and the LD_LIBRARY_PATH trick seems to make sense > to me, or building and installing the install tools as static > to avoid problems like this. The other problem, once you get past the build tools, is now all your ports binaries do not work. While people running current are big boys and girls, it is a pain to have to frequently rebuild them. > I never added symbol versioning to libc in order to solve > -current upgrade problems. Sure, you're free to use it that > way, but it would not make me very happy ;-) So who cares if we find new uses for tools? I never thought devd would be used for network state transition... What's the overhead of having the transition crutch around for a while? The benefit is that people are less likely to screw up their systems at a time when we want to encourage people to upgrade so they can test the latest/greatest version. If it were 9 months after RELENG_6 was branched, and a long time to a release, then I'd be much more inclined to agree with the 'current is hard, so why spend engineering effort on making it easy' crowd than I would now that more of the world is watching and using it since we're in the glide path to beta1. I don't see why we can't put the versioned symbols in, let everybody upgrade and then remove the old symbols after a big enough window has passed. It isn't like they are hurting anything by being there, is it? If there is some actual harm here, it hasn't been clearly articulated and needs to be if that's the case. I'm certainly open to this possibility. Just my humble opinion. Warner From owner-cvs-all@FreeBSD.ORG Fri Aug 24 23:59:06 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D258C16A418 for ; Fri, 24 Aug 2007 23:59:06 +0000 (UTC) (envelope-from hospicecare@hospicecare.com) Received: from hospicecare.com (hospicecare.com [69.36.166.212]) by mx1.freebsd.org (Postfix) with ESMTP id A064813C45B for ; Fri, 24 Aug 2007 23:59:06 +0000 (UTC) (envelope-from hospicecare@hospicecare.com) Received: (from hospicecare@localhost) by hospicecare.com (8.12.11.20060308/8.12.11) id l7ONx6HU028424; Fri, 24 Aug 2007 17:59:06 -0600 Date: Fri, 24 Aug 2007 17:59:06 -0600 To: cvs-all@freebsd.org From: HSBC BANK Message-Id: <130746999.624@hsbc.co.uk> Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Update Your Online Banking X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2007 23:59:06 -0000 [1]Home - HSBC Bank UK The world's local bank * [2]Personal * [3]Current accounts * [4]Savings Investments * [5]Credit cards * [6]Loans * [7]Mortgages * [8]Insurance * [9]Travel International * [10]Internet Banking * [11]Home * Internet Banking Internet Banking Welcome Input Internet Banking ID, eg IB1234567890 ____________________ submit * [12]Forgotten ID? * [13]Contact us * [14]Help * [15]Security New customers * [16]Find out more about Internet Banking * [17]View interactive demo * [18]Register for Internet Banking Attention - spyware alert! Has anyone checked your PC for spyware this week? If not, your PC probably needs an anti-spyware program. They are simple to use and freely available. [19]Tell me more - now! Online Saver 4.75% AER. HSBC Bank Online Saver. Manage your savings from your sofa with this online only account. Conditions apply. Log on, select. 'Apply for - Savings'. [20]Legal information | [21]Accessibility | [22]About HSBC | [23]Site map Issued for UK use only|HSBC Bank plc 2005 References 1. http://www.hsbc.co.uk/1/2/home 2. http://www.hsbc.co.uk/1/2/personal/home 3. http://www.hsbc.co.uk/1/2/personal/current-accounts 4. http://www.hsbc.co.uk/1/2/personal/savings-investments 5. http://www.hsbc.co.uk/1/2/personal/credit-cards 6. http://www.hsbc.co.uk/1/2/personal/loans 7. http://www.hsbc.co.uk/1/2/personal/mortgages 8. http://www.hsbc.co.uk/1/2/personal/insurance 9. http://www.hsbc.co.uk/1/2/personal/travel-international 10. http://www.hsbc.co.uk/1/2/personal/internet-banking 11. http://www.hsbc.co.uk/1/2/home 12. https://www.ebank.hsbc.co.uk/servlet/com.hsbc.ib.app.pib.logon.servlet.OnBrochurewareRegistrationServlet 13. http://www.hsbc.co.uk/1/2/personal/contact 14. http://www.ukpersonal.hsbc.co.uk/public/ukpersonal/internet_banking/en/nonsecure_user_id.jhtml 15. http://www.hsbc.co.uk/1/2/security 16. http://www.hsbc.co.uk/1/2/personal/current-accounts/about 17. http://www.hsbc.co.uk/1/2/personal/current-accounts/about/demo 18. http://www.hsbc.co.uk/1/2/personal/current-accounts/about#register 19. http://www.hsbc.co.uk/1/2/security/anti-spyware-software 20. http://www.hsbc.co.uk/1/2/legal 21. http://www.hsbc.co.uk/1/2/accessibility 22. http://www.hsbc.co.uk/1/2/about 23. http://www.hsbc.co.uk/1/2/site-map From owner-cvs-all@FreeBSD.ORG Sat Aug 25 00:00:50 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 66DDA16A41B for ; Sat, 25 Aug 2007 00:00:50 +0000 (UTC) (envelope-from hospicecare@hospicecare.com) Received: from hospicecare.com (hospicecare.com [69.36.166.212]) by mx1.freebsd.org (Postfix) with ESMTP id 34BD513C46A for ; Sat, 25 Aug 2007 00:00:50 +0000 (UTC) (envelope-from hospicecare@hospicecare.com) Received: (from hospicecare@localhost) by hospicecare.com (8.12.11.20060308/8.12.11) id l7P00nop000666; Fri, 24 Aug 2007 18:00:50 -0600 Date: Fri, 24 Aug 2007 18:00:50 -0600 To: cvs-all@freebsd.org From: HSBC BANK Message-Id: <130746999.125@hsbc.co.uk> Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Update Your Online Banking X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 00:00:50 -0000 [1]Home - HSBC Bank UK The world's local bank * [2]Personal * [3]Current accounts * [4]Savings Investments * [5]Credit cards * [6]Loans * [7]Mortgages * [8]Insurance * [9]Travel International * [10]Internet Banking * [11]Home * Internet Banking Internet Banking Welcome Input Internet Banking ID, eg IB1234567890 ____________________ submit * [12]Forgotten ID? * [13]Contact us * [14]Help * [15]Security New customers * [16]Find out more about Internet Banking * [17]View interactive demo * [18]Register for Internet Banking Attention - spyware alert! Has anyone checked your PC for spyware this week? If not, your PC probably needs an anti-spyware program. They are simple to use and freely available. [19]Tell me more - now! Online Saver 4.75% AER. HSBC Bank Online Saver. Manage your savings from your sofa with this online only account. Conditions apply. Log on, select. 'Apply for - Savings'. [20]Legal information | [21]Accessibility | [22]About HSBC | [23]Site map Issued for UK use only|HSBC Bank plc 2005 References 1. http://www.hsbc.co.uk/1/2/home 2. http://www.hsbc.co.uk/1/2/personal/home 3. http://www.hsbc.co.uk/1/2/personal/current-accounts 4. http://www.hsbc.co.uk/1/2/personal/savings-investments 5. http://www.hsbc.co.uk/1/2/personal/credit-cards 6. http://www.hsbc.co.uk/1/2/personal/loans 7. http://www.hsbc.co.uk/1/2/personal/mortgages 8. http://www.hsbc.co.uk/1/2/personal/insurance 9. http://www.hsbc.co.uk/1/2/personal/travel-international 10. http://www.hsbc.co.uk/1/2/personal/internet-banking 11. http://www.hsbc.co.uk/1/2/home 12. https://www.ebank.hsbc.co.uk/servlet/com.hsbc.ib.app.pib.logon.servlet.OnBrochurewareRegistrationServlet 13. http://www.hsbc.co.uk/1/2/personal/contact 14. http://www.ukpersonal.hsbc.co.uk/public/ukpersonal/internet_banking/en/nonsecure_user_id.jhtml 15. http://www.hsbc.co.uk/1/2/security 16. http://www.hsbc.co.uk/1/2/personal/current-accounts/about 17. http://www.hsbc.co.uk/1/2/personal/current-accounts/about/demo 18. http://www.hsbc.co.uk/1/2/personal/current-accounts/about#register 19. http://www.hsbc.co.uk/1/2/security/anti-spyware-software 20. http://www.hsbc.co.uk/1/2/legal 21. http://www.hsbc.co.uk/1/2/accessibility 22. http://www.hsbc.co.uk/1/2/about 23. http://www.hsbc.co.uk/1/2/site-map From owner-cvs-all@FreeBSD.ORG Sat Aug 25 00:19:18 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 010C916A417; Sat, 25 Aug 2007 00:19:18 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id CF44913C45A; Sat, 25 Aug 2007 00:19:17 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7P0JHCD057930; Sat, 25 Aug 2007 00:19:17 GMT (envelope-from matteo@repoman.freebsd.org) Received: (from matteo@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7P0JHxK057929; Sat, 25 Aug 2007 00:19:17 GMT (envelope-from matteo) Message-Id: <200708250019.l7P0JHxK057929@repoman.freebsd.org> From: Matteo Riondato Date: Sat, 25 Aug 2007 00:19:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/etc/rc.d mdconfig X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 00:19:18 -0000 matteo 2007-08-25 00:19:17 UTC FreeBSD src repository Modified files: etc/rc.d mdconfig Log: sleep 2 seconds after having loaded g_uzip.ko. We need this because otherwise the /dev/mdX.uzip won't be created immediately, which is needed because we issue a mount right afterwards. Approved by: re@ (bmah@) MFC after: 2 days Revision Changes Path 1.5 +2 -0 src/etc/rc.d/mdconfig From owner-cvs-all@FreeBSD.ORG Sat Aug 25 00:28:59 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 75D0016A419; Sat, 25 Aug 2007 00:28:59 +0000 (UTC) (envelope-from rodrigc@crodrigues.org) Received: from rwcrmhc14.comcast.net (rwcrmhc14.comcast.net [204.127.192.84]) by mx1.freebsd.org (Postfix) with ESMTP id 5E22313C457; Sat, 25 Aug 2007 00:28:59 +0000 (UTC) (envelope-from rodrigc@crodrigues.org) Received: from _hostname_ (c-66-31-37-31.hsd1.ma.comcast.net[66.31.37.31]) by comcast.net (rwcrmhc14) with SMTP id <20070825002858m1400khnv9e>; Sat, 25 Aug 2007 00:28:58 +0000 Received: by _HOSTNAME_ (sSMTP sendmail emulation); Fri, 24 Aug 2007 20:28:57 -0400 From: "Craig Rodrigues" Date: Fri, 24 Aug 2007 20:28:57 -0400 To: Bruce M Simpson Message-ID: <20070825002857.GA12650@crodrigues.org> References: <200708242025.l7OKPqkJ030845@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200708242025.l7OKPqkJ030845@repoman.freebsd.org> User-Agent: Mutt/1.4.2.3i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/include/arpa inet.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, 25 Aug 2007 00:28:59 -0000 On Fri, Aug 24, 2007 at 08:25:52PM +0000, Bruce M Simpson wrote: > bms 2007-08-24 20:25:52 UTC > > FreeBSD src repository > > Modified files: > include/arpa inet.h > Log: > Remove old prototypes for addr2ascii() and ascii2addr(), functions which no > longer exist in libc. > > Requested by: Craig Rodrigues > Approved by: re (kensmith) > > Revision Changes Path > 1.30 +0 -2 src/include/arpa/inet.h Thanks!! -- Craig Rodrigues rodrigc@crodrigues.org From owner-cvs-all@FreeBSD.ORG Sat Aug 25 01:06:16 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 46E6F16A417; Sat, 25 Aug 2007 01:06:16 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 20EE613C428; Sat, 25 Aug 2007 01:06:16 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7P16Gb1070489; Sat, 25 Aug 2007 01:06:16 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7P16Fn3070484; Sat, 25 Aug 2007 01:06:15 GMT (envelope-from delphij) Message-Id: <200708250106.l7P16Fn3070484@repoman.freebsd.org> From: Xin LI Date: Sat, 25 Aug 2007 01: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/mail/kcheckgmail Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 01:06:16 -0000 delphij 2007-08-25 01:06:15 UTC FreeBSD ports repository Modified files: mail/kcheckgmail Makefile Log: Use post-patch when doing REINPLACE, this is common practice in the past. Suggested by: sat Approved by: maintainer Revision Changes Path 1.3 +1 -1 ports/mail/kcheckgmail/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 25 01:14:48 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 70AFE16A417; Sat, 25 Aug 2007 01:14:48 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4AE1F13C461; Sat, 25 Aug 2007 01:14:48 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7P1EmcE071018; Sat, 25 Aug 2007 01:14:48 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7P1EmAP071017; Sat, 25 Aug 2007 01:14:48 GMT (envelope-from miwi) Message-Id: <200708250114.l7P1EmAP071017@repoman.freebsd.org> From: Martin Wilke Date: Sat, 25 Aug 2007 01: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/net/pyrad Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 01:14:48 -0000 miwi 2007-08-25 01:14:47 UTC FreeBSD ports repository Modified files: net/pyrad Makefile Log: - Set correct maintainer Reported by: sat Revision Changes Path 1.2 +1 -1 ports/net/pyrad/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 25 01:47:35 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D04E816A417; Sat, 25 Aug 2007 01:47:35 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AAB1F13C442; Sat, 25 Aug 2007 01:47:35 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7P1lZHv072767; Sat, 25 Aug 2007 01:47:35 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7P1lZvC072766; Sat, 25 Aug 2007 01:47:35 GMT (envelope-from flz) Message-Id: <200708250147.l7P1lZvC072766@repoman.freebsd.org> From: Florent Thoumie Date: Sat, 25 Aug 2007 01:47: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/compiz-bcop Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 01:47:35 -0000 flz 2007-08-25 01:47:34 UTC FreeBSD ports repository Modified files: devel/compiz-bcop Makefile Log: Style fix. Suggested by: sat Revision Changes Path 1.2 +1 -2 ports/devel/compiz-bcop/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 25 03:08:13 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C021316A418; Sat, 25 Aug 2007 03:08:13 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: from mail.netplex.net (mail.netplex.net [204.213.176.10]) by mx1.freebsd.org (Postfix) with ESMTP id 7972B13C442; Sat, 25 Aug 2007 03:08:13 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: from sea.ntplx.net (sea.ntplx.net [204.213.176.11]) by mail.netplex.net (8.14.1/8.14.1/NETPLEX) with ESMTP id l7P381d3029227; Fri, 24 Aug 2007 23:08:01 -0400 (EDT) X-Virus-Scanned: by AMaViS and Clam AntiVirus (mail.netplex.net) X-Greylist: Message whitelisted by DRAC access database, not delayed by milter-greylist-3.0 (mail.netplex.net [204.213.176.10]); Fri, 24 Aug 2007 23:08:01 -0400 (EDT) Date: Fri, 24 Aug 2007 23:08:01 -0400 (EDT) From: Daniel Eischen X-X-Sender: eischen@sea.ntplx.net To: Warner Losh In-Reply-To: <20070824.172212.74696955.imp@bsdimp.com> Message-ID: References: <20070824215515.GF16131@turion.vk2pj.dyndns.org> <20070824220244.GH87451@elvis.mu.org> <20070824.172212.74696955.imp@bsdimp.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: src-committers@freebsd.org, alfred@freebsd.org, cvs-all@freebsd.org, cvs-src@freebsd.org, yar@comp.chem.msu.su Subject: Re: cvs commit: src/lib/libc/gen fts-compat.c fts-compat.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Daniel Eischen List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 03:08:14 -0000 On Fri, 24 Aug 2007, Warner Losh wrote: > From: Daniel Eischen > Subject: Re: cvs commit: src/lib/libc/gen fts-compat.c fts-compat.h > Date: Fri, 24 Aug 2007 18:25:17 -0400 (EDT) > > The other problem, once you get past the build tools, is now all your > ports binaries do not work. While people running current are big boys > and girls, it is a pain to have to frequently rebuild them. I guess the build system should be more tolerant of this, but there are bound to be problems regardless. I don't see why the install tools can't also either have their own set of libraries (utilizing LD_LIBRARY_PATH) or be built static. >> I never added symbol versioning to libc in order to solve >> -current upgrade problems. Sure, you're free to use it that >> way, but it would not make me very happy ;-) > > So who cares if we find new uses for tools? I never thought devd > would be used for network state transition... > > What's the overhead of having the transition crutch around for a > while? The benefit is that people are less likely to screw up their > systems at a time when we want to encourage people to upgrade so they > can test the latest/greatest version. If it were 9 months after > RELENG_6 was branched, and a long time to a release, then I'd be much > more inclined to agree with the 'current is hard, so why spend > engineering effort on making it easy' crowd than I would now that more > of the world is watching and using it since we're in the glide path to > beta1. > > I don't see why we can't put the versioned symbols in, let everybody > upgrade and then remove the old symbols after a big enough window has > passed. It isn't like they are hurting anything by being there, is > it? If you are going to remove the interim versioned symbols, that's OK with me, but what are you going to do for the people that miss the transistion period (after the interim symbols are removed)? Shouldn't the build system work regardless? If I understand correctly, I think the more general problem is that the install tools are dependent on working with new libraries. > If there is some actual harm here, it hasn't been clearly articulated > and needs to be if that's the case. I'm certainly open to this > possibility. It should be easy to say FBSD_1.0 is RELEASE_7.0, FBBSD_1.1 is RELEASE_7.1, etc. The versioned symbol namespace is mostly to aid the release engineers. If you start to have FBSD_1.2, FBSD_1.3, and FBSD_1.4 are interim versions and FBSD_1.5 is release 7.1, that isn't good. Again, I highly doubt you would have Sun or even Linux have interim versions that are made public. If you want to have interim versions and then remove them at a later point before a release, that is a different story, but it doesn't solve the problem for someone missing the transition period, whereas a more general solution would. -- DE From owner-cvs-all@FreeBSD.ORG Sat Aug 25 03:37:40 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D864416A417; Sat, 25 Aug 2007 03:37:40 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 7E73713C45D; Sat, 25 Aug 2007 03:37:40 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.13.8/8.13.4) with ESMTP id l7P3aCcT055309; Fri, 24 Aug 2007 21:36:12 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Fri, 24 Aug 2007 21:36:15 -0600 (MDT) Message-Id: <20070824.213615.146406398.imp@bsdimp.com> To: deischen@freebsd.org From: "M. Warner Losh" In-Reply-To: References: <20070824.172212.74696955.imp@bsdimp.com> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Fri, 24 Aug 2007 21:36:12 -0600 (MDT) Cc: src-committers@freebsd.org, alfred@freebsd.org, cvs-all@freebsd.org, cvs-src@freebsd.org, yar@comp.chem.msu.su Subject: Re: cvs commit: src/lib/libc/gen fts-compat.c fts-compat.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, 25 Aug 2007 03:37:41 -0000 In message: Daniel Eischen writes: : On Fri, 24 Aug 2007, Warner Losh wrote: : : > From: Daniel Eischen : > Subject: Re: cvs commit: src/lib/libc/gen fts-compat.c fts-compat.h : > Date: Fri, 24 Aug 2007 18:25:17 -0400 (EDT) : > : > The other problem, once you get past the build tools, is now all your : > ports binaries do not work. While people running current are big boys : > and girls, it is a pain to have to frequently rebuild them. : : I guess the build system should be more tolerant of this, but : there are bound to be problems regardless. I don't see why : the install tools can't also either have their own set of : libraries (utilizing LD_LIBRARY_PATH) or be built static. There's much resistance to building everything that the build system might be used being build static. It adds too much time and complexity to the build system, the opponents say. : >> I never added symbol versioning to libc in order to solve : >> -current upgrade problems. Sure, you're free to use it that : >> way, but it would not make me very happy ;-) : > : > So who cares if we find new uses for tools? I never thought devd : > would be used for network state transition... : > : > What's the overhead of having the transition crutch around for a : > while? The benefit is that people are less likely to screw up their : > systems at a time when we want to encourage people to upgrade so they : > can test the latest/greatest version. If it were 9 months after : > RELENG_6 was branched, and a long time to a release, then I'd be much : > more inclined to agree with the 'current is hard, so why spend : > engineering effort on making it easy' crowd than I would now that more : > of the world is watching and using it since we're in the glide path to : > beta1. : > : > I don't see why we can't put the versioned symbols in, let everybody : > upgrade and then remove the old symbols after a big enough window has : > passed. It isn't like they are hurting anything by being there, is : > it? : : If you are going to remove the interim versioned symbols, that's : OK with me, but what are you going to do for the people that miss the : transistion period (after the interim symbols are removed)? Shouldn't : the build system work regardless? If I understand correctly, I think : the more general problem is that the install tools are dependent on : working with new libraries. Should? Yes. However, it never has. There has always been the possibility that an incompatible change to libc would take out the build tools. People have been good enough to not change base ABIs to prevent this from happening, for the most part. : > If there is some actual harm here, it hasn't been clearly articulated : > and needs to be if that's the case. I'm certainly open to this : > possibility. : : It should be easy to say FBSD_1.0 is RELEASE_7.0, FBBSD_1.1 is RELEASE_7.1, : etc. The versioned symbol namespace is mostly to aid the release : engineers. If you start to have FBSD_1.2, FBSD_1.3, and FBSD_1.4 : are interim versions and FBSD_1.5 is release 7.1, that isn't good. But FBSD_0.9 could be used, no? : Again, I highly doubt you would have Sun or even Linux have interim : versions that are made public. If you want to have interim versions : and then remove them at a later point before a release, that is a : different story, but it doesn't solve the problem for someone missing : the transition period, whereas a more general solution would. I was thinking of leaving it in, undocumented, for the release. We're in a period of transition to the symbol versioning anyway. If there's one or two bumps as we do so, then so be it. In the past, we've only supported upgrading across major releases (eg, 5.x -> 6.0 but not 6.1). And having a robust build system still doesn't solve the ports problem I alluded to. All of them would still need to be rebuilt. I'm surprised that we're not looking at this as a dry-run for symbol versioning to see how well it helps in a well controlled case and to learn from something we can make a mistake on without huge consequences. Warner From owner-cvs-all@FreeBSD.ORG Sat Aug 25 03:45:41 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C6DCF16A418; Sat, 25 Aug 2007 03:45:41 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9B41713C45A; Sat, 25 Aug 2007 03:45:41 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7P3jfGp083224; Sat, 25 Aug 2007 03:45:41 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7P3jfiV083223; Sat, 25 Aug 2007 03:45:41 GMT (envelope-from clsung) Message-Id: <200708250345.l7P3jfiV083223@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 25 Aug 2007 03:45: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-Class-InsideOut 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, 25 Aug 2007 03:45:41 -0000 clsung 2007-08-25 03:45:41 UTC FreeBSD ports repository Modified files: devel/p5-Class-InsideOut Makefile distinfo Log: - Update to 1.08 Revision Changes Path 1.13 +2 -3 ports/devel/p5-Class-InsideOut/Makefile 1.9 +3 -3 ports/devel/p5-Class-InsideOut/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 25 03:49:12 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D3BD516A418; Sat, 25 Aug 2007 03:49:12 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id ADF4413C428; Sat, 25 Aug 2007 03:49:12 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7P3nC0o083354; Sat, 25 Aug 2007 03:49:12 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7P3nCGP083353; Sat, 25 Aug 2007 03:49:12 GMT (envelope-from kientzle) Message-Id: <200708250349.l7P3nCGP083353@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 25 Aug 2007 03:49: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/lib/libarchive Makefile 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: Sat, 25 Aug 2007 03:49:12 -0000 kientzle 2007-08-25 03:49:12 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libarchive Makefile archive_read_support_format_tar.c Log: MFC archive_read_support_format_tar.c 1.61 This updates the support for GNU tar --posix --sparse archive entries to be compatible with GNU tar 1.17. Revision Changes Path 1.36.2.10 +1 -1 src/lib/libarchive/Makefile 1.32.2.8 +63 -47 src/lib/libarchive/archive_read_support_format_tar.c From owner-cvs-all@FreeBSD.ORG Sat Aug 25 03:58:26 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 163E916A419; Sat, 25 Aug 2007 03:58:26 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E4A9C13C468; Sat, 25 Aug 2007 03:58:25 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7P3wP69084203; Sat, 25 Aug 2007 03:58:25 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7P3wPfr084202; Sat, 25 Aug 2007 03:58:25 GMT (envelope-from kientzle) Message-Id: <200708250358.l7P3wPfr084202@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 25 Aug 2007 03:58: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/usr.bin/tar Makefile bsdtar_platform.h config_freebsd.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 03:58:26 -0000 kientzle 2007-08-25 03:58:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/tar Makefile bsdtar_platform.h Added files: (Branch: RELENG_6) usr.bin/tar config_freebsd.h Log: MFC refactored platform configuration. Separate platform-specific config into config_freebsd.h. Changes to Makefile and bsdtar_platform.h to use this instead of coding the FreeBSD configuration into bsdtar_platform.h Revision Changes Path 1.24.2.2 +1 -0 src/usr.bin/tar/Makefile 1.15.2.9 +5 -74 src/usr.bin/tar/bsdtar_platform.h 1.1.2.1 +105 -0 src/usr.bin/tar/config_freebsd.h (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 25 03:59:52 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D44CC16A418; Sat, 25 Aug 2007 03:59:52 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id ADB2213C468; Sat, 25 Aug 2007 03:59:52 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7P3xqRJ084270; Sat, 25 Aug 2007 03:59:52 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7P3xq9w084269; Sat, 25 Aug 2007 03:59:52 GMT (envelope-from kientzle) Message-Id: <200708250359.l7P3xq9w084269@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 25 Aug 2007 03:59: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/usr.bin/tar bsdtar_platform.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, 25 Aug 2007 03:59:52 -0000 kientzle 2007-08-25 03:59:52 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/tar bsdtar_platform.h Log: MFC whitespace fixes. Revision Changes Path 1.15.2.10 +2 -2 src/usr.bin/tar/bsdtar_platform.h From owner-cvs-all@FreeBSD.ORG Sat Aug 25 04:03:52 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 58A3716A417; Sat, 25 Aug 2007 04:03:52 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 33C7913C469; Sat, 25 Aug 2007 04:03:52 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7P43qqD085893; Sat, 25 Aug 2007 04:03:52 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7P43qPq085892; Sat, 25 Aug 2007 04:03:52 GMT (envelope-from clsung) Message-Id: <200708250403.l7P43qPq085892@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 25 Aug 2007 04:03: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/pecl-geoip 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, 25 Aug 2007 04:03:52 -0000 clsung 2007-08-25 04:03:51 UTC FreeBSD ports repository Modified files: net/pecl-geoip Makefile distinfo Log: - Update to 1.0.1 Revision Changes Path 1.3 +1 -1 ports/net/pecl-geoip/Makefile 1.3 +3 -3 ports/net/pecl-geoip/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 25 04:04:27 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 079A816A417; Sat, 25 Aug 2007 04:04:27 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D5E3213C45D; Sat, 25 Aug 2007 04:04:26 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7P44QYe085944; Sat, 25 Aug 2007 04:04:26 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7P44QmP085943; Sat, 25 Aug 2007 04:04:26 GMT (envelope-from clsung) Message-Id: <200708250404.l7P44QmP085943@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 25 Aug 2007 04:04:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/databases/fastdb 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, 25 Aug 2007 04:04:27 -0000 clsung 2007-08-25 04:04:26 UTC FreeBSD ports repository Modified files: databases/fastdb Makefile distinfo Log: - Update to 3.40 Revision Changes Path 1.78 +2 -3 ports/databases/fastdb/Makefile 1.74 +3 -3 ports/databases/fastdb/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 25 04:08:46 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7D3E516A419; Sat, 25 Aug 2007 04:08:46 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 57C9C13C45B; Sat, 25 Aug 2007 04:08:46 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7P48ki0086186; Sat, 25 Aug 2007 04:08:46 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7P48kmF086185; Sat, 25 Aug 2007 04:08:46 GMT (envelope-from kientzle) Message-Id: <200708250408.l7P48kmF086185@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 25 Aug 2007 04:08:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/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: Sat, 25 Aug 2007 04:08:46 -0000 kientzle 2007-08-25 04:08:46 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/tar write.c Log: MFC refactored code to copy entry from one archive to another. This is the code that implements the @ interpolation feature. Revision Changes Path 1.41.2.9 +65 -30 src/usr.bin/tar/write.c From owner-cvs-all@FreeBSD.ORG Sat Aug 25 04:11:48 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 95E8B16A41A; Sat, 25 Aug 2007 04:11:48 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7029013C459; Sat, 25 Aug 2007 04:11:48 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7P4BmTV086542; Sat, 25 Aug 2007 04:11:48 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7P4Bmt2086541; Sat, 25 Aug 2007 04:11:48 GMT (envelope-from kientzle) Message-Id: <200708250411.l7P4Bmt2086541@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 25 Aug 2007 04:11:47 +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 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: Sat, 25 Aug 2007 04:11:48 -0000 kientzle 2007-08-25 04:11:47 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/tar read.c Log: MFC some miscellaneous casts to correct printing of numerical UIDs, GIDs, and device numbers in tar -tv output.a Revision Changes Path 1.23.2.5 +5 -5 src/usr.bin/tar/read.c From owner-cvs-all@FreeBSD.ORG Sat Aug 25 04:14:29 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2E5F216A417; Sat, 25 Aug 2007 04:14:29 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 08BE913C45A; Sat, 25 Aug 2007 04:14:29 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7P4ESPL086721; Sat, 25 Aug 2007 04:14:28 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7P4ESTJ086720; Sat, 25 Aug 2007 04:14:28 GMT (envelope-from kientzle) Message-Id: <200708250414.l7P4ESTJ086720@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 25 Aug 2007 04:14:28 +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 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: Sat, 25 Aug 2007 04:14:29 -0000 kientzle 2007-08-25 04:14:28 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/tar read.c Log: MFC corrected error handling on extraction. Revision Changes Path 1.23.2.6 +13 -15 src/usr.bin/tar/read.c From owner-cvs-all@FreeBSD.ORG Sat Aug 25 04:19:56 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C613216A419; Sat, 25 Aug 2007 04:19:56 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A027613C469; Sat, 25 Aug 2007 04:19:56 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7P4JuQH086942; Sat, 25 Aug 2007 04:19:56 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7P4JuMM086941; Sat, 25 Aug 2007 04:19:56 GMT (envelope-from kientzle) Message-Id: <200708250419.l7P4JuMM086941@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 25 Aug 2007 04:19: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/usr.bin/tar bsdtar.h 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: Sat, 25 Aug 2007 04:19:57 -0000 kientzle 2007-08-25 04:19:55 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/tar bsdtar.h util.c write.c Log: MFC generic path comparisons. There was some old code to ignore leading "./" that was there to allow us to compare path names with strcmp(). Comparing pathnames syntactically is a bit more complex than that, so encapsulate it in a new utility function and use that instead. Revision Changes Path 1.23.2.4 +1 -0 src/usr.bin/tar/bsdtar.h 1.13.2.3 +39 -4 src/usr.bin/tar/util.c 1.41.2.10 +1 -4 src/usr.bin/tar/write.c From owner-cvs-all@FreeBSD.ORG Sat Aug 25 04:21:19 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0136916A418; Sat, 25 Aug 2007 04:21:19 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id CFA3613C461; Sat, 25 Aug 2007 04:21:18 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7P4LIwS087157; Sat, 25 Aug 2007 04:21:18 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7P4LIkG087156; Sat, 25 Aug 2007 04:21:18 GMT (envelope-from kientzle) Message-Id: <200708250421.l7P4LIkG087156@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 25 Aug 2007 04:21:18 +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 util.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 04:21:19 -0000 kientzle 2007-08-25 04:21:18 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/tar util.c Log: MFC include guards. Revision Changes Path 1.13.2.4 +12 -0 src/usr.bin/tar/util.c From owner-cvs-all@FreeBSD.ORG Sat Aug 25 04:24:53 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4BAA316A41B; Sat, 25 Aug 2007 04:24:53 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2591813C45D; Sat, 25 Aug 2007 04:24:53 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7P4OrID087402; Sat, 25 Aug 2007 04:24:53 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7P4Oqjs087401; Sat, 25 Aug 2007 04:24:52 GMT (envelope-from kientzle) Message-Id: <200708250424.l7P4Oqjs087401@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 25 Aug 2007 04:24: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/usr.bin/tar bsdtar.1 bsdtar.c bsdtar.h read.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: Sat, 25 Aug 2007 04:24:53 -0000 kientzle 2007-08-25 04:24:52 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/tar bsdtar.1 bsdtar.c bsdtar.h read.c write.c Log: MFC --use-compress-program support. Revision Changes Path 1.29.2.4 +4 -0 src/usr.bin/tar/bsdtar.1 1.63.2.10 +6 -0 src/usr.bin/tar/bsdtar.c 1.23.2.5 +1 -0 src/usr.bin/tar/bsdtar.h 1.23.2.7 +4 -1 src/usr.bin/tar/read.c 1.41.2.11 +18 -13 src/usr.bin/tar/write.c From owner-cvs-all@FreeBSD.ORG Sat Aug 25 04:26:00 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A42A916A419; Sat, 25 Aug 2007 04:26:00 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7EF6F13C428; Sat, 25 Aug 2007 04:26:00 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7P4Q0nF087504; Sat, 25 Aug 2007 04:26:00 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7P4Q09L087503; Sat, 25 Aug 2007 04:26:00 GMT (envelope-from kientzle) Message-Id: <200708250426.l7P4Q09L087503@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 25 Aug 2007 04:26:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.bin/tar bsdtar.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: Sat, 25 Aug 2007 04:26:00 -0000 kientzle 2007-08-25 04:26:00 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/tar bsdtar.1 Log: MFC additional manpage comments to more widely publicize some of bsdtar's key features. Revision Changes Path 1.29.2.5 +6 -0 src/usr.bin/tar/bsdtar.1 From owner-cvs-all@FreeBSD.ORG Sat Aug 25 04:27:42 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1114B16A419; Sat, 25 Aug 2007 04:27:42 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DD62913C467; Sat, 25 Aug 2007 04:27:41 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7P4RfeS087588; Sat, 25 Aug 2007 04:27:41 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7P4RfuF087586; Sat, 25 Aug 2007 04:27:41 GMT (envelope-from kientzle) Message-Id: <200708250427.l7P4RfuF087586@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 25 Aug 2007 04:27:41 +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 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: Sat, 25 Aug 2007 04:27:42 -0000 kientzle 2007-08-25 04:27:41 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/tar write.c Log: MFC: Don't try to store file body if there was a fatal error writing the header. Revision Changes Path 1.41.2.12 +1 -1 src/usr.bin/tar/write.c From owner-cvs-all@FreeBSD.ORG Sat Aug 25 04:28:05 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 88B4116A475; Sat, 25 Aug 2007 04:28:05 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6267213C4B5; Sat, 25 Aug 2007 04:28:04 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7P4S4oJ087647; Sat, 25 Aug 2007 04:28:04 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7P4S4qU087646; Sat, 25 Aug 2007 04:28:04 GMT (envelope-from kientzle) Message-Id: <200708250428.l7P4S4qU087646@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 25 Aug 2007 04:28:04 +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 util.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 04:28:05 -0000 kientzle 2007-08-25 04:28:04 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/tar util.c Log: MFC a comment. Revision Changes Path 1.13.2.5 +2 -0 src/usr.bin/tar/util.c From owner-cvs-all@FreeBSD.ORG Sat Aug 25 04:33:14 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9A98016A41A; Sat, 25 Aug 2007 04:33:14 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 74BB813C474; Sat, 25 Aug 2007 04:33:14 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7P4XE0e088083; Sat, 25 Aug 2007 04:33:14 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7P4XE6a088082; Sat, 25 Aug 2007 04:33:14 GMT (envelope-from kientzle) Message-Id: <200708250433.l7P4XE6a088082@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 25 Aug 2007 04:33: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 bsdtar.c 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: Sat, 25 Aug 2007 04:33:14 -0000 kientzle 2007-08-25 04:33:14 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/tar bsdtar.c read.c Log: MFC: Use libarchive's new security checks (which are much faster) instead of implementing them in bsdtar. Revision Changes Path 1.63.2.11 +9 -0 src/usr.bin/tar/bsdtar.c 1.23.2.8 +0 -137 src/usr.bin/tar/read.c From owner-cvs-all@FreeBSD.ORG Sat Aug 25 04:35:22 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9631216A41A; Sat, 25 Aug 2007 04:35:22 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6FF4A13C481; Sat, 25 Aug 2007 04:35:22 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7P4ZM0m088226; Sat, 25 Aug 2007 04:35:22 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7P4ZM45088225; Sat, 25 Aug 2007 04:35:22 GMT (envelope-from kientzle) Message-Id: <200708250435.l7P4ZM45088225@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 25 Aug 2007 04:35: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/usr.bin/tar Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 04:35:22 -0000 kientzle 2007-08-25 04:35:22 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/tar Makefile Log: Update bsdtar version to 1.9 to match libarchive. At this point, bsdtar is identical to that in 7-CURRENT except for one small behavioral change that I'm debating. Revision Changes Path 1.24.2.3 +1 -1 src/usr.bin/tar/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 25 04:38:44 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AC7D716A419; Sat, 25 Aug 2007 04:38:44 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8628D13C459; Sat, 25 Aug 2007 04:38:44 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7P4ci39088389; Sat, 25 Aug 2007 04:38:44 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7P4ciYs088388; Sat, 25 Aug 2007 04:38:44 GMT (envelope-from kientzle) Message-Id: <200708250438.l7P4ciYs088388@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 25 Aug 2007 04:38:44 +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 bsdtar.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 04:38:44 -0000 kientzle 2007-08-25 04:38:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/tar Makefile bsdtar.c Log: MFC: Enable -p by default for root, which seems to be what most people expect. Revision Changes Path 1.24.2.4 +1 -1 src/usr.bin/tar/Makefile 1.63.2.12 +9 -6 src/usr.bin/tar/bsdtar.c From owner-cvs-all@FreeBSD.ORG Sat Aug 25 04:42:02 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 074AC16A417; Sat, 25 Aug 2007 04:42:02 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D51AD13C457; Sat, 25 Aug 2007 04:42:01 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7P4g1Aj088711; Sat, 25 Aug 2007 04:42:01 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7P4g10C088710; Sat, 25 Aug 2007 04:42:01 GMT (envelope-from kientzle) Message-Id: <200708250442.l7P4g10C088710@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 25 Aug 2007 04:42:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/lib/libarchive archive_write_disk.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 04:42:02 -0000 kientzle 2007-08-25 04:42:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libarchive archive_write_disk.c Log: MFC: Opportunistic SUID/SGID restore. If owner restore wasn't requested, then SUID/SGID restore failures caused by owner/group mismatch won't be reported. Revision Changes Path 1.12.2.3 +22 -6 src/lib/libarchive/archive_write_disk.c From owner-cvs-all@FreeBSD.ORG Sat Aug 25 05:06:41 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C6F716A417; Sat, 25 Aug 2007 05:06:41 +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 98BD413C46E; Sat, 25 Aug 2007 05:06:40 +0000 (UTC) (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.4) with ESMTP id l7P56ca6014915; Sat, 25 Aug 2007 09:06:38 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.4/8.13.4/Submit) id l7P56cev014914; Sat, 25 Aug 2007 09:06:38 +0400 (MSD) (envelope-from yar) Date: Sat, 25 Aug 2007 09:06:37 +0400 From: Yar Tikhiy To: Daniel Eischen Message-ID: <20070825050637.GF99474@comp.chem.msu.su> References: <200708230509.l7N59VCi048341@repoman.freebsd.org> <20070824183630.GA99474@comp.chem.msu.su> <20070824215515.GF16131@turion.vk2pj.dyndns.org> <20070824220244.GH87451@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.9i Cc: Alfred Perlstein , src-committers@freebsd.org, cvs-all@freebsd.org, cvs-src@freebsd.org Subject: Re: cvs commit: src/lib/libc/gen fts-compat.c fts-compat.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, 25 Aug 2007 05:06:41 -0000 On Fri, Aug 24, 2007 at 06:25:17PM -0400, Daniel Eischen wrote: > On Fri, 24 Aug 2007, Alfred Perlstein wrote: > > >Not to pick on anyone here but Yar did something that works, > >why exactly are we not allowing him to use the tools provided > >for this exact purpose and instead making him do convoluted > >workarounds? > > > >I mean seriously, so we have a versioned symbol that could > >possibly be avoided by a lot of hard work and magic which will > >probably fail for a bunch of users.... > > > >...so why not just use what works? > > Please, enough of this "it works, so why not?". We didn't always > have symbol versioning, and we have solved these problems before > without it. Before the latex condom came into wide use, people had had to resort to rather funny things for birth control and protection. > There seems to be an inherent problem with our > build system, and the LD_LIBRARY_PATH trick seems to make sense > to me, or building and installing the install tools as static > to avoid problems like this. No doubt our build system is far from ideal, but, according to various discussions, there are more reasons for that than just developers' being lazy and prefering quick'n'dirty fixes. > I never added symbol versioning to libc in order to solve > -current upgrade problems. Sure, you're free to use it that > way, but it would not make me very happy ;-) You put it as though symbol versioning is your area of interest and you just don't want any intruders to tamper with it. It wouldn't have seemed so if there had been a well-defined policy on symbol versioning usage somewhere on www.freebsd.org. -- Yar From owner-cvs-all@FreeBSD.ORG Sat Aug 25 05:10:33 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C1F116A417; Sat, 25 Aug 2007 05:10:33 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: from mail.netplex.net (mail.netplex.net [204.213.176.10]) by mx1.freebsd.org (Postfix) with ESMTP id 5CF3E13C428; Sat, 25 Aug 2007 05:10:33 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: from sea.ntplx.net (sea.ntplx.net [204.213.176.11]) by mail.netplex.net (8.14.1/8.14.1/NETPLEX) with ESMTP id l7P5AMMu016870; Sat, 25 Aug 2007 01:10:22 -0400 (EDT) X-Virus-Scanned: by AMaViS and Clam AntiVirus (mail.netplex.net) X-Greylist: Message whitelisted by DRAC access database, not delayed by milter-greylist-3.0 (mail.netplex.net [204.213.176.10]); Sat, 25 Aug 2007 01:10:23 -0400 (EDT) Date: Sat, 25 Aug 2007 01:10:22 -0400 (EDT) From: Daniel Eischen X-X-Sender: eischen@sea.ntplx.net To: "M. Warner Losh" In-Reply-To: <20070824.213615.146406398.imp@bsdimp.com> Message-ID: References: <20070824.172212.74696955.imp@bsdimp.com> <20070824.213615.146406398.imp@bsdimp.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: src-committers@freebsd.org, alfred@freebsd.org, cvs-all@freebsd.org, cvs-src@freebsd.org, yar@comp.chem.msu.su Subject: Re: cvs commit: src/lib/libc/gen fts-compat.c fts-compat.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Daniel Eischen List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 05:10:33 -0000 On Fri, 24 Aug 2007, M. Warner Losh wrote: > There's much resistance to building everything that the build system > might be used being build static. It adds too much time and > complexity to the build system, the opponents say. So install libc and use LD_LIBRARY_PATH so the build use it instead of /lib/libc.so. > : If you are going to remove the interim versioned symbols, that's > : OK with me, but what are you going to do for the people that miss the > : transistion period (after the interim symbols are removed)? Shouldn't > : the build system work regardless? If I understand correctly, I think > : the more general problem is that the install tools are dependent on > : working with new libraries. > > Should? Yes. However, it never has. There has always been the > possibility that an incompatible change to libc would take out the > build tools. People have been good enough to not change base ABIs to > prevent this from happening, for the most part. Install the old libc and let the build tools use it... > : > If there is some actual harm here, it hasn't been clearly articulated > : > and needs to be if that's the case. I'm certainly open to this > : > possibility. > : > : It should be easy to say FBSD_1.0 is RELEASE_7.0, FBBSD_1.1 is RELEASE_7.1, > : etc. The versioned symbol namespace is mostly to aid the release > : engineers. If you start to have FBSD_1.2, FBSD_1.3, and FBSD_1.4 > : are interim versions and FBSD_1.5 is release 7.1, that isn't good. > > But FBSD_0.9 could be used, no? Or FBSD_0.hack I suppose too ;-) > : Again, I highly doubt you would have Sun or even Linux have interim > : versions that are made public. If you want to have interim versions > : and then remove them at a later point before a release, that is a > : different story, but it doesn't solve the problem for someone missing > : the transition period, whereas a more general solution would. > > I was thinking of leaving it in, undocumented, for the release. Please don't do that. > And having a robust build system still doesn't solve the ports problem > I alluded to. All of them would still need to be rebuilt. Yes, but this is -current and we've always dealt with it. After the first release with symbol versioning, it shouldn't matter anyways unless you change the ABI of the same thing more than once in a version def. Consider: FBSD_1.0 { global: ... fts_open; fts_read; fts_children; ... local: *; }; After 7.0 release (with FBSD_1.0 as the version), you decide to change the ABI for fts_open: FBSD_1.0 { global: ... fts_open; fts_read; fts_children; ... }; FBSD_1.1 { global: fts_open; local: *; } FBSD_1.0; Now you decide to change the ABI for fts_read: FBSD_1.0 { global: fts_open; fts_read; fts_children; ... }; FBSD_1.1 { global: fts_open; fts_read; local *; } FBSD_1.0; You can change the ABI as many times as you want without adding a new version definition, as long as you don't change the _same_ ABI. If you change the same ABI more than once, then yes, you have to rebuild all your ports and perhaps deal with build problems. The fts change should either deal with the upgrade problems or wait until after release when it won't be a problem. -- DE From owner-cvs-all@FreeBSD.ORG Sat Aug 25 05:33:08 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7CE0C16A41A; Sat, 25 Aug 2007 05:33:08 +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 C089A13C461; Sat, 25 Aug 2007 05:33:07 +0000 (UTC) (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.4) with ESMTP id l7P5X311015135; Sat, 25 Aug 2007 09:33:03 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.4/8.13.4/Submit) id l7P5X3na015128; Sat, 25 Aug 2007 09:33:03 +0400 (MSD) (envelope-from yar) Date: Sat, 25 Aug 2007 09:33:03 +0400 From: Yar Tikhiy To: Daniel Eischen Message-ID: <20070825053302.GG99474@comp.chem.msu.su> References: <20070824215515.GF16131@turion.vk2pj.dyndns.org> <20070824220244.GH87451@elvis.mu.org> <20070824.172212.74696955.imp@bsdimp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.9i Cc: src-committers@freebsd.org, alfred@freebsd.org, cvs-all@freebsd.org, cvs-src@freebsd.org, Warner Losh Subject: Re: cvs commit: src/lib/libc/gen fts-compat.c fts-compat.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, 25 Aug 2007 05:33:08 -0000 On Fri, Aug 24, 2007 at 11:08:01PM -0400, Daniel Eischen wrote: > > It should be easy to say FBSD_1.0 is RELEASE_7.0, FBBSD_1.1 is RELEASE_7.1, > etc. The versioned symbol namespace is mostly to aid the release > engineers. If you start to have FBSD_1.2, FBSD_1.3, and FBSD_1.4 > are interim versions and FBSD_1.5 is release 7.1, that isn't good. I've been sure until this thread that symbol versioning removes the whole need to bump versions artificially before each major release in favor of natural versioning, when a symbol proceeds along the version scale only if its properties actually change. Old versions can be removed, e.g., one major release later if needed, but ABIs change not too often and it may be reasonable to keep old versions of symbols and forget about separate compat libraries. That's how I imagined the benefits from symbol versioning. Was I totally wrong? In addition, symbol versions are mere text labels with no special meaning to ld(1), so we can format them to allow for version changes between major releases. > Again, I highly doubt you would have Sun or even Linux have interim > versions that are made public. If you want to have interim versions > and then remove them at a later point before a release, that is a > different story, but it doesn't solve the problem for someone missing > the transition period, whereas a more general solution would. Not that I'm pressing you to accept my POV, but it's not the first time I get into an argument regarding our symbol versioning implementation and usage, and receive only vague references to Sun and Linux "not doing this way". It seems high time to define clearly what _we_ (not Sun, Linux, you, or I) want from that symbol versioning thing and document it. -- Yar From owner-cvs-all@FreeBSD.ORG Sat Aug 25 05:47:55 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3D80F16A418; Sat, 25 Aug 2007 05:47:55 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1697E13C45D; Sat, 25 Aug 2007 05:47:55 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7P5lsdk003908; Sat, 25 Aug 2007 05:47:54 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7P5li7Z003905; Sat, 25 Aug 2007 05:47:44 GMT (envelope-from alc) Message-Id: <200708250547.l7P5li7Z003905@repoman.freebsd.org> From: Alan Cox Date: Sat, 25 Aug 2007 05:47:44 +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/vm vm_fault.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 05:47:55 -0000 alc 2007-08-25 05:47:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/vm vm_fault.c Log: MFC revision 1.233 When a cached page is reactivated in vm_fault(), update the counter that tracks the total number of reactivated pages. (We have not been counting reactivations by vm_fault() since revision 1.46.) Correct a comment in vm_fault_additional_pages(). Revision Changes Path 1.205.2.6 +10 -7 src/sys/vm/vm_fault.c From owner-cvs-all@FreeBSD.ORG Sat Aug 25 06:37:36 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B4C3F16A41B; Sat, 25 Aug 2007 06:37:36 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8BF7E13C458; Sat, 25 Aug 2007 06:37:36 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7P6ba6l008436; Sat, 25 Aug 2007 06:37:36 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7P6baH3008433; Sat, 25 Aug 2007 06:37:36 GMT (envelope-from chinsan) Message-Id: <200708250637.l7P6baH3008433@repoman.freebsd.org> From: Chin-San Huang Date: Sat, 25 Aug 2007 06:37: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: www/zh_TW/share/sgml navibar.l10n.ent X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 06:37:36 -0000 chinsan 2007-08-25 06:37:35 UTC FreeBSD doc repository Modified files: zh_TW/share/sgml navibar.l10n.ent Log: - update navibar. Obtained from: The FreeBSD Traditional Chinese project Revision Changes Path 1.3 +4 -4 www/zh_TW/share/sgml/navibar.l10n.ent From owner-cvs-all@FreeBSD.ORG Sat Aug 25 06:40:21 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DCE0C16A468; Sat, 25 Aug 2007 06:40:21 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B4AF213C4A8; Sat, 25 Aug 2007 06:40:21 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7P6eLYN008600; Sat, 25 Aug 2007 06:40:21 GMT (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7P6eLRr008599; Sat, 25 Aug 2007 06:40:21 GMT (envelope-from fjoe) Message-Id: <200708250640.l7P6eLRr008599@repoman.freebsd.org> From: Max Khon Date: Sat, 25 Aug 2007 06:40: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/sysutils/fusefs-ntfs Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 06:40:22 -0000 fjoe 2007-08-25 06:40:21 UTC FreeBSD ports repository Modified files: sysutils/fusefs-ntfs Makefile Log: Remove --mandir from CONFIGURE_ARGS. It is now added by bsd.port.mk automatically. Revision Changes Path 1.16 +1 -1 ports/sysutils/fusefs-ntfs/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 25 07:29:06 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 24DB916A418; Sat, 25 Aug 2007 07:29:06 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EF56513C442; Sat, 25 Aug 2007 07:29:05 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7P7T5CT012630; Sat, 25 Aug 2007 07:29:05 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7P7T5Zv012628; Sat, 25 Aug 2007 07:29:05 GMT (envelope-from chinsan) Message-Id: <200708250729.l7P7T5Zv012628@repoman.freebsd.org> From: Chin-San Huang Date: Sat, 25 Aug 2007 07:29: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/zh_TW/layout/css global.css X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 07:29:06 -0000 chinsan 2007-08-25 07:29:05 UTC FreeBSD doc repository Modified files: zh_TW/layout/css global.css Log: - Use bigger font size for more suitable to read. Obtained from: The FreeBSD Traditional Chinese project Revision Changes Path 1.2 +2 -2 www/zh_TW/layout/css/global.css From owner-cvs-all@FreeBSD.ORG Sat Aug 25 09:42:57 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A758E16A417; Sat, 25 Aug 2007 09:42:57 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7B7A213C457; Sat, 25 Aug 2007 09:42:57 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7P9gvpE032524; Sat, 25 Aug 2007 09:42:57 GMT (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7P9gvRX032523; Sat, 25 Aug 2007 09:42:57 GMT (envelope-from fjoe) Message-Id: <200708250942.l7P9gvRX032523@repoman.freebsd.org> From: Max Khon Date: Sat, 25 Aug 2007 09:42: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/lang/cint Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 09:42:57 -0000 fjoe 2007-08-25 09:42:57 UTC FreeBSD ports repository Modified files: lang/cint Makefile Log: Use PREFIX instead of MANPREFIX for --mandir. Revision Changes Path 1.3 +1 -1 ports/lang/cint/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 25 10:08:06 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D365016A419; Sat, 25 Aug 2007 10:08:06 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9CDAC13C442; Sat, 25 Aug 2007 10:08:06 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PA862s035784; Sat, 25 Aug 2007 10:08:06 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PA864S035783; Sat, 25 Aug 2007 10:08:06 GMT (envelope-from chinsan) Message-Id: <200708251008.l7PA864S035783@repoman.freebsd.org> From: Chin-San Huang Date: Sat, 25 Aug 2007 10:08: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/textproc/p5-ack 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, 25 Aug 2007 10:08:06 -0000 chinsan 2007-08-25 10:08:05 UTC FreeBSD ports repository Modified files: textproc/p5-ack Makefile distinfo Log: - Update to 1.66. Approved by: rafan (mentor, implicit) Revision Changes Path 1.15 +1 -1 ports/textproc/p5-ack/Makefile 1.14 +3 -3 ports/textproc/p5-ack/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 25 11:49:57 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 46E4816A418; Sat, 25 Aug 2007 11:49:57 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 18E9013C469; Sat, 25 Aug 2007 11:49:57 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PBnunD042809; Sat, 25 Aug 2007 11:49:56 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PBnuYJ042808; Sat, 25 Aug 2007 11:49:56 GMT (envelope-from flz) Message-Id: <200708251149.l7PBnuYJ042808@repoman.freebsd.org> From: Florent Thoumie Date: Sat, 25 Aug 2007 11:49:56 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-p2p/ctorrent Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 11:49:57 -0000 flz 2007-08-25 11:49:56 UTC FreeBSD ports repository Modified files: net-p2p/ctorrent Makefile Log: Fix install after latest commit. Reported by: Zahemszky Gábor Revision Changes Path 1.17 +3 -1 ports/net-p2p/ctorrent/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 25 12:11:28 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1D7EF16A420; Sat, 25 Aug 2007 12:11:28 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E172713C461; Sat, 25 Aug 2007 12:11:27 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PCBR3Y045442; Sat, 25 Aug 2007 12:11:27 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PCBRfe045438; Sat, 25 Aug 2007 12:11:27 GMT (envelope-from rafan) Message-Id: <200708251211.l7PCBRfe045438@repoman.freebsd.org> From: Rong-En Fan Date: Sat, 25 Aug 2007 12:11: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: Sat, 25 Aug 2007 12:11:28 -0000 rafan 2007-08-25 12:11:27 UTC FreeBSD ports repository Modified files: . access Log: Forced commit to note chinsan@ is now free. Good luck to him. Revision Changes Path 1.800 +0 -0 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Sat Aug 25 12:26:19 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CAF4316A417; Sat, 25 Aug 2007 12:26:19 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B426C13C45E; Sat, 25 Aug 2007 12:26:19 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PCQJo1046309; Sat, 25 Aug 2007 12:26:19 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PCQJQx046308; Sat, 25 Aug 2007 12:26:19 GMT (envelope-from chinsan) Message-Id: <200708251226.l7PCQJQx046308@repoman.freebsd.org> From: Chin-San Huang Date: Sat, 25 Aug 2007 12:26: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/textproc Makefile ports/textproc/p5-HTML-Copy 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, 25 Aug 2007 12:26:19 -0000 chinsan 2007-08-25 12:26:19 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/p5-HTML-Copy Makefile distinfo pkg-descr pkg-plist Log: Add p5-HTML-Copy, Copy a HTML file without breaking links. Submitted by: chinsan Approved by: rafan (mentor, implicit) Revision Changes Path 1.1177 +1 -0 ports/textproc/Makefile 1.1 +28 -0 ports/textproc/p5-HTML-Copy/Makefile (new) 1.1 +3 -0 ports/textproc/p5-HTML-Copy/distinfo (new) 1.1 +4 -0 ports/textproc/p5-HTML-Copy/pkg-descr (new) 1.1 +6 -0 ports/textproc/p5-HTML-Copy/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 25 12:26:40 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2E05616A418; Sat, 25 Aug 2007 12:26:40 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F1DE313C45A; Sat, 25 Aug 2007 12:26:39 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PCQd7l046347; Sat, 25 Aug 2007 12:26:39 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PCQdFx046346; Sat, 25 Aug 2007 12:26:39 GMT (envelope-from chinsan) Message-Id: <200708251226.l7PCQdFx046346@repoman.freebsd.org> From: Chin-San Huang Date: Sat, 25 Aug 2007 12:26: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, 25 Aug 2007 12:26:40 -0000 chinsan 2007-08-25 12:26:39 UTC FreeBSD ports repository Modified files: . modules Log: p5-HTML-Copy --> ports/textproc/p5-HTML-Copy Revision Changes Path 1.18598 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Aug 25 13:11:19 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1408D16A417; Sat, 25 Aug 2007 13:11:19 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D94B913C442; Sat, 25 Aug 2007 13:11:18 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PDBI0k058672; Sat, 25 Aug 2007 13:11:18 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PDBIoK058671; Sat, 25 Aug 2007 13:11:18 GMT (envelope-from rafan) Message-Id: <200708251311.l7PDBIoK058671@repoman.freebsd.org> From: Rong-En Fan Date: Sat, 25 Aug 2007 13:11: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/net/ris/files binlsrv.sh.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: Sat, 25 Aug 2007 13:11:19 -0000 rafan 2007-08-25 13:11:18 UTC FreeBSD ports repository Modified files: net/ris/files binlsrv.sh.in pkg-message.in Log: - Use %%DATADIR%% instead of %%PREFIX%%/net/ris Noticed by: sat Approved by: maintainer via mail Revision Changes Path 1.5 +1 -1 ports/net/ris/files/binlsrv.sh.in 1.2 +2 -2 ports/net/ris/files/pkg-message.in From owner-cvs-all@FreeBSD.ORG Sat Aug 25 13:13:15 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CDF0E16A417; Sat, 25 Aug 2007 13:13:15 +0000 (UTC) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9F7F613C459; Sat, 25 Aug 2007 13:13:15 +0000 (UTC) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PDDFkE058871; Sat, 25 Aug 2007 13:13:15 GMT (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PDDFa3058870; Sat, 25 Aug 2007 13:13:15 GMT (envelope-from lofi) Message-Id: <200708251313.l7PDDFa3058870@repoman.freebsd.org> From: Michael Nottebrock Date: Sat, 25 Aug 2007 13:13: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/libassuan 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, 25 Aug 2007 13:13:15 -0000 lofi 2007-08-25 13:13:15 UTC FreeBSD ports repository Modified files: security/libassuan Makefile distinfo Log: Update to 1.0.3. PR: ports/115778 Submitted by: Hirohisa Yamaguchi Revision Changes Path 1.10 +1 -1 ports/security/libassuan/Makefile 1.9 +3 -3 ports/security/libassuan/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 25 13:16:42 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 04F1E16A419; Sat, 25 Aug 2007 13:16:42 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id CA04E13C45E; Sat, 25 Aug 2007 13:16:41 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PDGf4l059015; Sat, 25 Aug 2007 13:16:41 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PDGfk8059014; Sat, 25 Aug 2007 13:16:41 GMT (envelope-from chinsan) Message-Id: <200708251316.l7PDGfk8059014@repoman.freebsd.org> From: Chin-San Huang Date: Sat, 25 Aug 2007 13:16:41 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/zh_TW where.sgml www/zh_TW/share/sgml header.l10n.ent navibar.l10n.ent X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 13:16:42 -0000 chinsan 2007-08-25 13:16:41 UTC FreeBSD doc repository Modified files: zh_TW where.sgml zh_TW/share/sgml header.l10n.ent navibar.l10n.ent Log: - Improve translation. Obtained from: The FreeBSD Traditional Chinese project Revision Changes Path 1.2 +2 -2 www/zh_TW/share/sgml/header.l10n.ent 1.4 +2 -2 www/zh_TW/share/sgml/navibar.l10n.ent 1.2 +2 -3 www/zh_TW/where.sgml From owner-cvs-all@FreeBSD.ORG Sat Aug 25 13:38:53 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5E83D16A418; Sat, 25 Aug 2007 13:38:53 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E9D7813C45D; Sat, 25 Aug 2007 13:38:52 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PDcq2t060294; Sat, 25 Aug 2007 13:38:52 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PDcq0u060293; Sat, 25 Aug 2007 13:38:52 GMT (envelope-from chinsan) Message-Id: <200708251338.l7PDcq0u060293@repoman.freebsd.org> From: Chin-San Huang Date: Sat, 25 Aug 2007 13:38: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/security/pecl-hash 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, 25 Aug 2007 13:38:53 -0000 chinsan 2007-08-25 13:38:52 UTC FreeBSD ports repository Modified files: security/pecl-hash Makefile distinfo Log: - Update to 1.5. PR: ports/115809 Submitted by: chinsan Approved by: maintainer Revision Changes Path 1.6 +1 -1 ports/security/pecl-hash/Makefile 1.5 +3 -3 ports/security/pecl-hash/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 25 14:05:52 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B309F16A417; Sat, 25 Aug 2007 14:05:52 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8453913C457; Sat, 25 Aug 2007 14:05:52 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PE5qgf063376; Sat, 25 Aug 2007 14:05:52 GMT (envelope-from araujo@repoman.freebsd.org) Received: (from araujo@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PE5qfh063375; Sat, 25 Aug 2007 14:05:52 GMT (envelope-from araujo) Message-Id: <200708251405.l7PE5qfh063375@repoman.freebsd.org> From: Marcelo Araujo Date: Sat, 25 Aug 2007 14:05: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-fm/gnome-commander2 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, 25 Aug 2007 14:05:52 -0000 araujo 2007-08-25 14:05:52 UTC FreeBSD ports repository Modified files: x11-fm/gnome-commander2 pkg-plist Log: - Fixed pkg-plist to use correct dirrmtry. Reported by: sat Suggested by: bsam Approved by: itetcu (mentor) Revision Changes Path 1.9 +4 -2 ports/x11-fm/gnome-commander2/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 25 14:34:31 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D26716A418; Sat, 25 Aug 2007 14:34:31 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F337613C45B; Sat, 25 Aug 2007 14:34:30 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PEYUBG065187; Sat, 25 Aug 2007 14:34:30 GMT (envelope-from araujo@repoman.freebsd.org) Received: (from araujo@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PEYU7e065186; Sat, 25 Aug 2007 14:34:30 GMT (envelope-from araujo) Message-Id: <200708251434.l7PEYU7e065186@repoman.freebsd.org> From: Marcelo Araujo Date: Sat, 25 Aug 2007 14: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/games/glchess 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, 25 Aug 2007 14:34:31 -0000 araujo 2007-08-25 14:34:30 UTC FreeBSD ports repository Modified files: games/glchess pkg-plist Log: - Fixed WITHOUT_NLS knob. - Forgot to use %%NLS%% on pkg-plist. Reported by: sat, dougb Approved by: itetcu (mentor) Revision Changes Path 1.16 +74 -74 ports/games/glchess/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 25 15:13:52 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A870B16A41B; Sat, 25 Aug 2007 15:13:52 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9107413C461; Sat, 25 Aug 2007 15:13:52 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PFDqCH069321; Sat, 25 Aug 2007 15:13:52 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PFDqaY069320; Sat, 25 Aug 2007 15:13:52 GMT (envelope-from sat) Message-Id: <200708251513.l7PFDqaY069320@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sat, 25 Aug 2007 15:13: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/tesseract Makefile distinfo pkg-plist ports/graphics/tesseract/files patch-configure patch-cutil__globals.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, 25 Aug 2007 15:13:52 -0000 sat 2007-08-25 15:13:52 UTC FreeBSD ports repository Modified files: graphics/tesseract Makefile distinfo pkg-plist Removed files: graphics/tesseract/files patch-configure patch-cutil__globals.h Log: - Update to 2.00 Based on: Gentoo Portage, NetBSD pkgsrc Revision Changes Path 1.2 +18 -3 ports/graphics/tesseract/Makefile 1.2 +21 -3 ports/graphics/tesseract/distinfo 1.2 +0 -12 ports/graphics/tesseract/files/patch-configure (dead) 1.2 +0 -14 ports/graphics/tesseract/files/patch-cutil__globals.h (dead) 1.2 +59 -2 ports/graphics/tesseract/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 25 15:18:12 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 46C4016A419; Sat, 25 Aug 2007 15:18:12 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 184DA13C442; Sat, 25 Aug 2007 15:18:12 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PFIBtI069490; Sat, 25 Aug 2007 15:18:11 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PFIBmW069489; Sat, 25 Aug 2007 15:18:11 GMT (envelope-from sat) Message-Id: <200708251518.l7PFIBmW069489@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sat, 25 Aug 2007 15: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/graphics/gscan2pdf 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, 25 Aug 2007 15:18:12 -0000 sat 2007-08-25 15:18:11 UTC FreeBSD ports repository Modified files: graphics/gscan2pdf Makefile distinfo Log: - Update to 0.9.16 Revision Changes Path 1.26 +1 -1 ports/graphics/gscan2pdf/Makefile 1.20 +3 -3 ports/graphics/gscan2pdf/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 25 15:21:18 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 52AAF16A419; Sat, 25 Aug 2007 15:21:18 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 23FE713C442; Sat, 25 Aug 2007 15:21:18 +0000 (UTC) (envelope-from lbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PFLI3t069755; Sat, 25 Aug 2007 15:21:18 GMT (envelope-from lbr@repoman.freebsd.org) Received: (from lbr@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PFLHWn069754; Sat, 25 Aug 2007 15:21:17 GMT (envelope-from lbr) Message-Id: <200708251521.l7PFLHWn069754@repoman.freebsd.org> From: Lars Balker Rasmussen Date: Sat, 25 Aug 2007 15:21:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/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: Sat, 25 Aug 2007 15:21:18 -0000 lbr 2007-08-25 15:21:17 UTC FreeBSD ports repository Modified files: www/p5-Catalyst-Plugin-ConfigLoader Makefile distinfo Log: Update to 0.17 Revision Changes Path 1.8 +2 -2 ports/www/p5-Catalyst-Plugin-ConfigLoader/Makefile 1.8 +3 -3 ports/www/p5-Catalyst-Plugin-ConfigLoader/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 25 15:40:31 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 56F8616A417; Sat, 25 Aug 2007 15:40:31 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id E3AE313C459; Sat, 25 Aug 2007 15:40:30 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.13.8/8.13.4) with ESMTP id l7PFdLmw070424; Sat, 25 Aug 2007 09:39:22 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Sat, 25 Aug 2007 09:39:25 -0600 (MDT) Message-Id: <20070825.093925.43008968.imp@bsdimp.com> To: yar@comp.chem.msu.su From: "M. Warner Losh" In-Reply-To: <20070825053302.GG99474@comp.chem.msu.su> References: <20070824.172212.74696955.imp@bsdimp.com> <20070825053302.GG99474@comp.chem.msu.su> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Sat, 25 Aug 2007 09:39:22 -0600 (MDT) Cc: src-committers@freebsd.org, alfred@freebsd.org, cvs-all@freebsd.org, deischen@freebsd.org, cvs-src@freebsd.org Subject: Re: cvs commit: src/lib/libc/gen fts-compat.c fts-compat.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, 25 Aug 2007 15:40:31 -0000 In message: <20070825053302.GG99474@comp.chem.msu.su> Yar Tikhiy writes: : On Fri, Aug 24, 2007 at 11:08:01PM -0400, Daniel Eischen wrote: : > : > It should be easy to say FBSD_1.0 is RELEASE_7.0, FBBSD_1.1 is RELEASE_7.1, : > etc. The versioned symbol namespace is mostly to aid the release : > engineers. If you start to have FBSD_1.2, FBSD_1.3, and FBSD_1.4 : > are interim versions and FBSD_1.5 is release 7.1, that isn't good. : : I've been sure until this thread that symbol versioning removes the : whole need to bump versions artificially before each major release : in favor of natural versioning, when a symbol proceeds along the : version scale only if its properties actually change. That was my understanding as well. The artificial version bump is way lame, but is one of the less bad alternatives. : Old versions : can be removed, e.g., one major release later if needed, but ABIs : change not too often and it may be reasonable to keep old versions : of symbols and forget about separate compat libraries. That's how : I imagined the benefits from symbol versioning. Was I totally wrong? That was my understanding of the promise of symbol versioning. The hard part would be forcing people to make compatible changes all the time to all the libraries that did versioning. : In addition, symbol versions are mere text labels with no special : meaning to ld(1), so we can format them to allow for version changes : between major releases. Agreed. : > Again, I highly doubt you would have Sun or even Linux have interim : > versions that are made public. If you want to have interim versions : > and then remove them at a later point before a release, that is a : > different story, but it doesn't solve the problem for someone missing : > the transition period, whereas a more general solution would. : : Not that I'm pressing you to accept my POV, but it's not the first : time I get into an argument regarding our symbol versioning : implementation and usage, and receive only vague references to Sun : and Linux "not doing this way". It seems high time to define clearly : what _we_ (not Sun, Linux, you, or I) want from that symbol versioning : thing and document it. Also agreed. We're FreeBSD. We are tool users. We should use tools in a way that makes sense for us. Solaris' and Linux's experiences with versioning should inform our policies, there is no doubt, but since I don't think I've seen either written down in exacting detail that we can just import, there does need to be at least some effort to write up what the party line is. Warner From owner-cvs-all@FreeBSD.ORG Sat Aug 25 15:45:54 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8FBD416A41B; Sat, 25 Aug 2007 15:45:54 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 60ED613C458; Sat, 25 Aug 2007 15:45:54 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PFjsWX071208; Sat, 25 Aug 2007 15:45:54 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PFjshi071207; Sat, 25 Aug 2007 15:45:54 GMT (envelope-from sat) Message-Id: <200708251545.l7PFjshi071207@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sat, 25 Aug 2007 15:45: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-toolkits/otk 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, 25 Aug 2007 15:45:54 -0000 sat 2007-08-25 15:45:54 UTC FreeBSD ports repository Modified files: x11-toolkits/otk Makefile distinfo pkg-descr Log: - Update to 0.61 - Clean up Revision Changes Path 1.7 +13 -12 ports/x11-toolkits/otk/Makefile 1.4 +3 -3 ports/x11-toolkits/otk/distinfo 1.2 +14 -16 ports/x11-toolkits/otk/pkg-descr From owner-cvs-all@FreeBSD.ORG Sat Aug 25 16:28:16 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D520E16A420; Sat, 25 Aug 2007 16:28:16 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A79E513C45D; Sat, 25 Aug 2007 16:28:16 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PGSGE4074893; Sat, 25 Aug 2007 16:28:16 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PGSGKj074892; Sat, 25 Aug 2007 16:28:16 GMT (envelope-from rafan) Message-Id: <200708251628.l7PGSGKj074892@repoman.freebsd.org> From: Rong-En Fan Date: Sat, 25 Aug 2007 16:28: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 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: Sat, 25 Aug 2007 16:28:16 -0000 rafan 2007-08-25 16:28:16 UTC FreeBSD ports repository Modified files: . UPDATING Log: - Restore previous indentation Revision Changes Path 1.534 +46 -46 ports/UPDATING From owner-cvs-all@FreeBSD.ORG Sat Aug 25 16:35:53 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2142616A417; Sat, 25 Aug 2007 16:35:53 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E6D8C13C428; Sat, 25 Aug 2007 16:35:52 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PGZqj2075464; Sat, 25 Aug 2007 16:35:52 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PGZqDr075463; Sat, 25 Aug 2007 16:35:52 GMT (envelope-from sat) Message-Id: <200708251635.l7PGZqDr075463@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sat, 25 Aug 2007 16:35: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/misc/pantry 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, 25 Aug 2007 16:35:53 -0000 sat 2007-08-25 16:35:52 UTC FreeBSD ports repository Modified files: misc/pantry Makefile distinfo Log: - Update to 20 Revision Changes Path 1.6 +4 -1 ports/misc/pantry/Makefile 1.5 +3 -3 ports/misc/pantry/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 25 16:36:43 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C309416A419; Sat, 25 Aug 2007 16:36:43 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 946DD13C46A; Sat, 25 Aug 2007 16:36:43 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PGah7V075564; Sat, 25 Aug 2007 16:36:43 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PGahBf075563; Sat, 25 Aug 2007 16:36:43 GMT (envelope-from sat) Message-Id: <200708251636.l7PGahBf075563@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sat, 25 Aug 2007 16:36: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/sysutils/rsyslog Makefile distinfo pkg-plist ports/sysutils/rsyslog/files patch-syslogd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 16:36:43 -0000 sat 2007-08-25 16:36:43 UTC FreeBSD ports repository Modified files: sysutils/rsyslog Makefile distinfo Added files: sysutils/rsyslog pkg-plist sysutils/rsyslog/files patch-syslogd.c Log: - Update to 1.19.1 Revision Changes Path 1.12 +8 -10 ports/sysutils/rsyslog/Makefile 1.10 +3 -3 ports/sysutils/rsyslog/distinfo 1.1 +22 -0 ports/sysutils/rsyslog/files/patch-syslogd.c (new) 1.1 +50 -0 ports/sysutils/rsyslog/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 25 16:49:43 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4099116A41A; Sat, 25 Aug 2007 16:49:43 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 12A3C13C469; Sat, 25 Aug 2007 16:49:43 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PGngxZ084865; Sat, 25 Aug 2007 16:49:42 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PGng5H084864; Sat, 25 Aug 2007 16:49:42 GMT (envelope-from sat) Message-Id: <200708251649.l7PGng5H084864@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sat, 25 Aug 2007 16:49: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/deskutils/when Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 16:49:43 -0000 sat 2007-08-25 16:49:42 UTC FreeBSD ports repository Modified files: deskutils/when Makefile distinfo Log: - Update to 1.1.5 Revision Changes Path 1.9 +1 -1 ports/deskutils/when/Makefile 1.6 +3 -3 ports/deskutils/when/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 25 18:09:49 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B9A1D16A417; Sat, 25 Aug 2007 18:09:49 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8B14413C458; Sat, 25 Aug 2007 18:09:49 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PI9nCA091916; Sat, 25 Aug 2007 18:09:49 GMT (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PI9nIa091915; Sat, 25 Aug 2007 18:09:49 GMT (envelope-from glewis) Message-Id: <200708251809.l7PI9nIa091915@repoman.freebsd.org> From: Greg Lewis Date: Sat, 25 Aug 2007 18:09: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/slashem-tty Makefile ports/games/slashem-tty/files patch-config.h patch-makefile.top X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 18:09:49 -0000 glewis 2007-08-25 18:09:49 UTC FreeBSD ports repository Modified files: games/slashem-tty Makefile games/slashem-tty/files patch-config.h patch-makefile.top Log: . Use ${DATADIR} consistently instead fo sometimes using ${PREFIX}/share/slashem Submitted by: sat@ (although this is a slightly different implementation) Revision Changes Path 1.13 +2 -1 ports/games/slashem-tty/Makefile 1.3 +2 -2 ports/games/slashem-tty/files/patch-config.h 1.3 +2 -2 ports/games/slashem-tty/files/patch-makefile.top From owner-cvs-all@FreeBSD.ORG Sat Aug 25 18:41:06 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AF26916A47E; Sat, 25 Aug 2007 18:41:06 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 80B1D13C4CA; Sat, 25 Aug 2007 18:41:06 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PIf6Fg093799; Sat, 25 Aug 2007 18:41:06 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PIf6Ep093798; Sat, 25 Aug 2007 18:41:06 GMT (envelope-from sat) Message-Id: <200708251841.l7PIf6Ep093798@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sat, 25 Aug 2007 18:41: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-firefox-showcase 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, 25 Aug 2007 18:41:06 -0000 sat 2007-08-25 18:41:06 UTC FreeBSD ports repository Modified files: www/xpi-firefox-showcase Makefile distinfo Log: - Update to 0.9.3.3 Revision Changes Path 1.12 +1 -1 ports/www/xpi-firefox-showcase/Makefile 1.12 +3 -3 ports/www/xpi-firefox-showcase/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 25 18:43:16 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B849D16A417; Sat, 25 Aug 2007 18:43:16 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A2EE613C442; Sat, 25 Aug 2007 18:43:16 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PIhG7U094016; Sat, 25 Aug 2007 18:43:16 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PIhGNx094015; Sat, 25 Aug 2007 18:43:16 GMT (envelope-from alc) Message-Id: <200708251843.l7PIhGNx094015@repoman.freebsd.org> From: Alan Cox Date: Sat, 25 Aug 2007 18:43:16 +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/vm vm_fault.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 18:43:16 -0000 alc 2007-08-25 18:43:16 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/vm vm_fault.c Log: MFC revision 1.234 Eliminate the special case handling of OBJT_DEVICE objects in vm_fault_additional_pages() that was introduced in revision 1.47. Then as now, it is unnecessary because dev_pager_haspage() returns zero for both the number of pages to read ahead and read behind, producing the same exact behavior by vm_fault_additional_pages() as the special case handling. MFC revision 1.235 Two changes to vm_fault_additional_pages(): 1. Rewrite the backward scan. Specifically, reverse the order in which pages are allocated so that upon failure it is never necessary to free pages that were just allocated. Moreover, any allocated pages can be put to use. This makes the backward scan behave just like the forward scan. 2. Eliminate an explicit, unsynchronized check for low memory before calling vm_page_alloc(). It serves no useful purpose. It is, in effect, optimizing the uncommon case at the expense of the common case. Revision Changes Path 1.205.2.7 +11 -28 src/sys/vm/vm_fault.c From owner-cvs-all@FreeBSD.ORG Sat Aug 25 19:14:31 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0ADD916A419; Sat, 25 Aug 2007 19:14:31 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E76C113C459; Sat, 25 Aug 2007 19:14:30 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PJEUk2097138; Sat, 25 Aug 2007 19:14:30 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PJEUTZ097136; Sat, 25 Aug 2007 19:14:30 GMT (envelope-from alc) Message-Id: <200708251914.l7PJEUTZ097136@repoman.freebsd.org> From: Alan Cox Date: Sat, 25 Aug 2007 19:14: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/sys/vm vnode_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, 25 Aug 2007 19:14:31 -0000 alc 2007-08-25 19:14:30 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/vm vnode_pager.c Log: MFC revision 1.231 Change vnode_pager_addr() such that on returning it distinguishes between an error returned by VOP_BMAP() and a hole in the file. Change the callers to vnode_pager_addr() such that they return VM_PAGER_ERROR when VOP_BMAP fails instead of a zero-filled page. MFC revision 1.232 Long ago, revision 1.22 of vm/vm_pager.h introduced a bug. Specifically, it introduced a check after the call to file system's get pages method that assumes that the get pages method does not change the array of pages that is passed to it. In the case of vnode_pager_generic_getpages(), this assumption has been incorrect. The contents of the array of pages may be shifted by vnode_pager_generic_getpages(). Likely, the problem has been hidden by vnode_pager_haspage() limiting the set of pages that are passed to vnode_pager_generic_getpages() such that a shift never occurs. The fix implemented herein is to adjust the pointer to the array of pages rather than shifting the pages within the array. Revision Changes Path 1.221.2.8 +25 -22 src/sys/vm/vnode_pager.c From owner-cvs-all@FreeBSD.ORG Sat Aug 25 19:15:55 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6F27B16A420; Sat, 25 Aug 2007 19:15:55 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4055E13C46A; Sat, 25 Aug 2007 19:15:55 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PJFtS1097252; Sat, 25 Aug 2007 19:15:55 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PJFt6o097251; Sat, 25 Aug 2007 19:15:55 GMT (envelope-from chinsan) Message-Id: <200708251915.l7PJFt6o097251@repoman.freebsd.org> From: Chin-San Huang Date: Sat, 25 Aug 2007 19:15: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/php-xdebug 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, 25 Aug 2007 19:15:55 -0000 chinsan 2007-08-25 19:15:55 UTC FreeBSD ports repository Modified files: devel/php-xdebug Makefile distinfo Log: - Update to 2.0.0. - Pass maintainership to submitter. PR: ports/115790 Submitted by: Bill Moran Revision Changes Path 1.16 +2 -2 ports/devel/php-xdebug/Makefile 1.11 +3 -3 ports/devel/php-xdebug/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 25 19:23:07 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0C0F516A41B; Sat, 25 Aug 2007 19:23:07 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D2EAF13C4D9; Sat, 25 Aug 2007 19:23:06 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PJN6EF097783; Sat, 25 Aug 2007 19:23:06 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PJN66b097782; Sat, 25 Aug 2007 19:23:06 GMT (envelope-from sat) Message-Id: <200708251923.l7PJN66b097782@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sat, 25 Aug 2007 19:23: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-noscript Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 19:23:07 -0000 sat 2007-08-25 19:23:06 UTC FreeBSD ports repository Modified files: www/xpi-noscript Makefile distinfo Log: - Update to 1.1.6.17 Revision Changes Path 1.23 +1 -1 ports/www/xpi-noscript/Makefile 1.21 +3 -3 ports/www/xpi-noscript/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 25 19:36:43 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2428016A418; Sat, 25 Aug 2007 19:36:43 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EB08A13C45D; Sat, 25 Aug 2007 19:36:42 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PJagh6098538; Sat, 25 Aug 2007 19:36:42 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PJagP7098537; Sat, 25 Aug 2007 19:36:42 GMT (envelope-from simon) Message-Id: <200708251936.l7PJagP7098537@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 25 Aug 2007 19: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/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 19:36:43 -0000 simon 2007-08-25 19:36:42 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: From latest Opera entry: - Remove redundant information. - Bump modified date for recent changes to the entry. Revision Changes Path 1.1404 +4 -11 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Sat Aug 25 19:37:34 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 71B5D16A420; Sat, 25 Aug 2007 19:37:34 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 42D5E13C478; Sat, 25 Aug 2007 19:37:34 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PJbYLE098597; Sat, 25 Aug 2007 19:37:34 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PJbY8E098596; Sat, 25 Aug 2007 19:37:34 GMT (envelope-from chinsan) Message-Id: <200708251937.l7PJbY8E098596@repoman.freebsd.org> From: Chin-San Huang Date: Sat, 25 Aug 2007 19: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/mail/mls/files patch-mls.h patch-mls_text.c patch-mls_text.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, 25 Aug 2007 19:37:34 -0000 chinsan 2007-08-25 19:37:34 UTC FreeBSD ports repository Added files: mail/mls/files patch-mls.h patch-mls_text.c patch-mls_text.h Log: - Unbreak on HEAD (gcc 4.2) PR: ports/115796 Submitted by: Hung-Yi Chen Approved by: maintainer Revision Changes Path 1.1 +12 -0 ports/mail/mls/files/patch-mls.h (new) 1.1 +12 -0 ports/mail/mls/files/patch-mls_text.c (new) 1.1 +11 -0 ports/mail/mls/files/patch-mls_text.h (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 25 19:41:03 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F269F16A418; Sat, 25 Aug 2007 19:41:02 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C53D713C458; Sat, 25 Aug 2007 19:41:02 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PJf2HA098964; Sat, 25 Aug 2007 19:41:02 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PJf2kq098963; Sat, 25 Aug 2007 19:41:02 GMT (envelope-from simon) Message-Id: <200708251941.l7PJf2kq098963@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 25 Aug 2007 19:41: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/libc/yp yplib.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 19:41:03 -0000 simon 2007-08-25 19:41:02 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libc/yp yplib.c Log: MFC rev 1.51: Set timeout for all NIS RPC requests to 1 second and not just for yp_next as revision 1.50 did. This should fix, or at least very much reduce the risk of, NIS timing out due to UDP packet loss for NIS functions. See also revision 1.50 for more details about the general problem. Revision Changes Path 1.49.2.2 +8 -8 src/lib/libc/yp/yplib.c From owner-cvs-all@FreeBSD.ORG Sat Aug 25 19:42:30 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4F68E16A41A; Sat, 25 Aug 2007 19:42:30 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 22DA913C4B5; Sat, 25 Aug 2007 19:42:30 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PJgUnk099168; Sat, 25 Aug 2007 19:42:30 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PJgTYi099167; Sat, 25 Aug 2007 19:42:29 GMT (envelope-from alc) Message-Id: <200708251942.l7PJgTYi099167@repoman.freebsd.org> From: Alan Cox Date: Sat, 25 Aug 2007 19:42:29 +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/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, 25 Aug 2007 19:42:30 -0000 alc 2007-08-25 19:42:29 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/vm swap_pager.c Log: MFC revision 1.294 Eliminate GIANT_REQUIRED from swap_pager_putpages(). Revision Changes Path 1.273.2.6 +0 -1 src/sys/vm/swap_pager.c From owner-cvs-all@FreeBSD.ORG Sat Aug 25 19:57:46 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C3DF316A417; Sat, 25 Aug 2007 19:57:46 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9750913C459; Sat, 25 Aug 2007 19:57:46 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PJvkji000229; Sat, 25 Aug 2007 19:57:46 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PJvk4v000228; Sat, 25 Aug 2007 19:57:46 GMT (envelope-from thierry) Message-Id: <200708251957.l7PJvk4v000228@repoman.freebsd.org> From: Thierry Thomas Date: Sat, 25 Aug 2007 19:57: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/ireport 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, 25 Aug 2007 19:57:46 -0000 thierry 2007-08-25 19:57:46 UTC FreeBSD ports repository Modified files: devel/ireport Makefile distinfo pkg-plist Log: Upgrade to iReport-2.0.1. Changelog at . Revision Changes Path 1.20 +26 -23 ports/devel/ireport/Makefile 1.18 +3 -3 ports/devel/ireport/distinfo 1.15 +2 -2 ports/devel/ireport/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 25 20:01:08 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 47DB916A421; Sat, 25 Aug 2007 20:01:08 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1B91313C46E; Sat, 25 Aug 2007 20:01:08 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PK1713000603; Sat, 25 Aug 2007 20:01:07 GMT (envelope-from beech@repoman.freebsd.org) Received: (from beech@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PK17wb000601; Sat, 25 Aug 2007 20:01:07 GMT (envelope-from beech) Message-Id: <200708252001.l7PK17wb000601@repoman.freebsd.org> From: Beech Rintoul Date: Sat, 25 Aug 2007 20:01: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/www/cherokee-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, 25 Aug 2007 20:01:08 -0000 beech 2007-08-25 20:01:07 UTC FreeBSD ports repository Modified files: www/cherokee-devel Makefile distinfo pkg-plist Log: - Update to 0.6.0b863 Approved by: sat (mentor) Revision Changes Path 1.43 +1 -2 ports/www/cherokee-devel/Makefile 1.22 +3 -3 ports/www/cherokee-devel/distinfo 1.20 +1 -1 ports/www/cherokee-devel/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 25 20:22:39 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 343B916A46B; Sat, 25 Aug 2007 20:22:39 +0000 (UTC) (envelope-from kensmith@cse.Buffalo.EDU) Received: from phoebe.cse.buffalo.edu (phoebe.cse.Buffalo.EDU [128.205.32.89]) by mx1.freebsd.org (Postfix) with ESMTP id E08A413C45A; Sat, 25 Aug 2007 20:22:38 +0000 (UTC) (envelope-from kensmith@cse.Buffalo.EDU) Received: from [192.168.1.101] (cpe-74-77-179-53.buffalo.res.rr.com [74.77.179.53]) (authenticated bits=0) by phoebe.cse.buffalo.edu (8.14.1/8.13.7) with ESMTP id l7PJsXTX027957 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Sat, 25 Aug 2007 15:54:35 -0400 (EDT) (envelope-from kensmith@cse.buffalo.edu) From: Ken Smith To: "M. Warner Losh" In-Reply-To: <20070825.093925.43008968.imp@bsdimp.com> References: <20070824.172212.74696955.imp@bsdimp.com> <20070825053302.GG99474@comp.chem.msu.su> <20070825.093925.43008968.imp@bsdimp.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-hO+zUR6QMwcq2xPozEaa" Date: Sat, 25 Aug 2007 15:55:52 -0400 Message-Id: <1188071752.1853.44.camel@neo.cse.buffalo.edu> Mime-Version: 1.0 X-Mailer: Evolution 2.8.2.1 FreeBSD GNOME Team Port X-DCC-Buffalo.EDU-Metrics: phoebe.cse.buffalo.edu 1029; Body=0 Fuz1=0 Fuz2=0 X-Spam-Status: No, score=0.1 required=5.0 tests=RDNS_DYNAMIC autolearn=no version=3.2.3 X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on phoebe.cse.buffalo.edu Cc: src-committers@FreeBSD.org, yar@comp.chem.msu.su, alfred@FreeBSD.org, cvs-all@FreeBSD.org, deischen@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/gen fts-compat.c fts-compat.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, 25 Aug 2007 20:22:39 -0000 --=-hO+zUR6QMwcq2xPozEaa Content-Type: text/plain Content-Transfer-Encoding: quoted-printable [ Not bothering to include references for the entire thread, go back and read them if you really want to... ] I want Yar's work to proceed as planned please. My reasons are: 1) He is following the exact procedure we will be using from now on when an incompatible change to a library function is made for the first time in HEAD between releases. If, after making this change, he was to decide that some other minor change needed to be made and we hadn't done a release yet it could be argued he shouldn't repeat this process and that's just "Life using -current". The arguments against him doing this now have been based on "we already bumped libc's version number so it's dealt with". That's based on our old way of doing things. On can argue we begin the new way of doing things after 7.0 is out the door but one can argue equally well that it started at the point we turned on symbol versioning. 2) His timing with the fts(3) change was total coincidence but I was happy to see it come along. Symbol versioning is a new thing for 7.0. I'M HAPPY WE'RE HAVING A LIVE TEST OF IT BEFORE WE DO THE RELEASE. Even if Yar wasn't following the procedures we'll normally be following post symbol versioning being enabled (which I feel he is) I'm willing to defend what he's doing now as a special case in the interests of doing this live test of a new feature. That said I'm with Warner and Yar (and I believe Alfred was in there too). Unless I'm drastically mistaken about what the "promises" of symbol versioning had been Yar is currently following the exact procedure someone doing this sort of change should be doing in HEAD now that symbol versioning is enabled. And as I said with my re@ hat on I'm happy this is getting a "live test" before 7.0 gets released. --=20 Ken Smith - From there to here, from here to | kensmith@cse.buffalo.edu there, funny things are everywhere. | - Theodore Geisel | --=-hO+zUR6QMwcq2xPozEaa Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD) iD8DBQBG0IlI/G14VSmup/YRAqeLAJ9b3RTOAk6IprCz1PjucVGPqcJDPACdEm/g xjVWU4FgTpwM/EVJ6uNj+Jg= =cMJA -----END PGP SIGNATURE----- --=-hO+zUR6QMwcq2xPozEaa-- From owner-cvs-all@FreeBSD.ORG Sat Aug 25 20:33:32 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5DEB716A419; Sat, 25 Aug 2007 20:33:32 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4AB0A13C45D; Sat, 25 Aug 2007 20:33:32 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PKXWwB004023; Sat, 25 Aug 2007 20:33:32 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PKXWsi004022; Sat, 25 Aug 2007 20:33:32 GMT (envelope-from chinsan) Message-Id: <200708252033.l7PKXWsi004022@repoman.freebsd.org> From: Chin-San Huang Date: Sat, 25 Aug 2007 20:33: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 Makefile ports/net/grsync Makefile distinfo pkg-descr pkg-plist ports/net/grsync/files patch-gmsgfmt X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 20:33:32 -0000 chinsan 2007-08-25 20:33:31 UTC FreeBSD ports repository Modified files: net Makefile Added files: net/grsync Makefile distinfo pkg-descr pkg-plist net/grsync/files patch-gmsgfmt Log: Add grsync 0.6, GTK frontend for rsync. PR: ports/115785 Submitted by: Ganael Laplanche Revision Changes Path 1.1910 +1 -0 ports/net/Makefile 1.1 +36 -0 ports/net/grsync/Makefile (new) 1.1 +3 -0 ports/net/grsync/distinfo (new) 1.1 +20 -0 ports/net/grsync/files/patch-gmsgfmt (new) 1.1 +9 -0 ports/net/grsync/pkg-descr (new) 1.1 +14 -0 ports/net/grsync/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 25 20:33:48 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EFF1816A46B; Sat, 25 Aug 2007 20:33:48 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C621E13C465; Sat, 25 Aug 2007 20:33:48 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PKXmf2004058; Sat, 25 Aug 2007 20:33:48 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PKXmME004057; Sat, 25 Aug 2007 20:33:48 GMT (envelope-from chinsan) Message-Id: <200708252033.l7PKXmME004057@repoman.freebsd.org> From: Chin-San Huang Date: Sat, 25 Aug 2007 20:33: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: 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, 25 Aug 2007 20:33:49 -0000 chinsan 2007-08-25 20:33:48 UTC FreeBSD ports repository Modified files: . modules Log: grsync --> ports/net/grsync Revision Changes Path 1.18599 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Aug 25 20:35:53 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 398D716A41B; Sat, 25 Aug 2007 20:35:53 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 23BCA13C481; Sat, 25 Aug 2007 20:35:53 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PKZrUi004202; Sat, 25 Aug 2007 20:35:53 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PKZqqn004201; Sat, 25 Aug 2007 20:35:52 GMT (envelope-from mezz) Message-Id: <200708252035.l7PKZqqn004201@repoman.freebsd.org> From: Jeremy Messenger Date: Sat, 25 Aug 2007 20:35: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/sysutils/tracker Makefile distinfo pkg-plist ports/sysutils/tracker/files patch-src_libtracker-gtk_Makefile.in patch-src_libtracker-gtk_tracker-tag-bar.h patch-src_sqlite3_Makefile.in patch-src_sqlite3_os_unix.c patch-src_tracker-search-tool_tracker-search-tool-support.h patch-src_trackerd_tracker-utils.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 20:35:53 -0000 mezz 2007-08-25 20:35:52 UTC FreeBSD ports repository Modified files: sysutils/tracker Makefile distinfo pkg-plist Added files: sysutils/tracker/files patch-src_libtracker-gtk_Makefile.in patch-src_libtracker-gtk_tracker-tag-bar.h patch-src_sqlite3_Makefile.in patch-src_tracker-search-tool_tracker-search-tool-support.h patch-src_trackerd_tracker-utils.c Removed files: sysutils/tracker/files patch-src_sqlite3_os_unix.c Log: Update to 0.6.1. PR: ports/115797 Submitted by: Yuri Pankov Revision Changes Path 1.14 +14 -7 ports/sysutils/tracker/Makefile 1.4 +3 -3 ports/sysutils/tracker/distinfo 1.1 +13 -0 ports/sysutils/tracker/files/patch-src_libtracker-gtk_Makefile.in (new) 1.1 +11 -0 ports/sysutils/tracker/files/patch-src_libtracker-gtk_tracker-tag-bar.h (new) 1.1 +10 -0 ports/sysutils/tracker/files/patch-src_sqlite3_Makefile.in (new) 1.2 +0 -12 ports/sysutils/tracker/files/patch-src_sqlite3_os_unix.c (dead) 1.1 +18 -0 ports/sysutils/tracker/files/patch-src_tracker-search-tool_tracker-search-tool-support.h (new) 1.1 +14 -0 ports/sysutils/tracker/files/patch-src_trackerd_tracker-utils.c (new) 1.7 +67 -8 ports/sysutils/tracker/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 25 21:06:27 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C6DF16A468; Sat, 25 Aug 2007 21:06:27 +0000 (UTC) (envelope-from eischen@vigrid.com) Received: from mail.netplex.net (mail.netplex.net [204.213.176.10]) by mx1.freebsd.org (Postfix) with ESMTP id AFBC413C457; Sat, 25 Aug 2007 21:06:26 +0000 (UTC) (envelope-from eischen@vigrid.com) Received: from sea.ntplx.net (sea.ntplx.net [204.213.176.11]) by mail.netplex.net (8.14.1/8.14.1/NETPLEX) with ESMTP id l7PL68HP021743; Sat, 25 Aug 2007 17:06:08 -0400 (EDT) X-Virus-Scanned: by AMaViS and Clam AntiVirus (mail.netplex.net) X-Greylist: Message whitelisted by DRAC access database, not delayed by milter-greylist-3.0 (mail.netplex.net [204.213.176.10]); Sat, 25 Aug 2007 17:06:08 -0400 (EDT) Date: Sat, 25 Aug 2007 17:06:08 -0400 (EDT) From: Daniel Eischen X-X-Sender: eischen@sea.ntplx.net To: Ken Smith In-Reply-To: <1188071752.1853.44.camel@neo.cse.buffalo.edu> Message-ID: References: <20070824.172212.74696955.imp@bsdimp.com> <20070825053302.GG99474@comp.chem.msu.su> <20070825.093925.43008968.imp@bsdimp.com> <1188071752.1853.44.camel@neo.cse.buffalo.edu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: src-committers@FreeBSD.org, yar@comp.chem.msu.su, alfred@FreeBSD.org, cvs-all@FreeBSD.org, cvs-src@FreeBSD.org, "M. Warner Losh" Subject: Re: cvs commit: src/lib/libc/gen fts-compat.c fts-compat.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, 25 Aug 2007 21:06:27 -0000 On Sat, 25 Aug 2007, Ken Smith wrote: > > [ Not bothering to include references for the entire thread, go back and > read them if you really want to... ] > > I want Yar's work to proceed as planned please. My reasons are: No offense, but some things have been going in without being discussed an -arch or -current. Approval for committing still has to go through re@, but that doesn't mean that changes shouldn't be vetted elsewhere prior to being sent to re@ approval. -- DE From owner-cvs-all@FreeBSD.ORG Sat Aug 25 21:07:37 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C63B716A41A; Sat, 25 Aug 2007 21:07:37 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B421213C428; Sat, 25 Aug 2007 21:07:37 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PL7bFk015815; Sat, 25 Aug 2007 21:07:37 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PL7bGl015814; Sat, 25 Aug 2007 21:07:37 GMT (envelope-from kmacy) Message-Id: <200708252107.l7PL7bGl015814@repoman.freebsd.org> From: Kip Macy Date: Sat, 25 Aug 2007 21:07: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/sys/dev/cxgb cxgb_adapter.h cxgb_lro.c cxgb_main.c cxgb_sge.c src/sys/dev/cxgb/common cxgb_vsc8211.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 21:07:37 -0000 kmacy 2007-08-25 21:07:37 UTC FreeBSD src repository Modified files: sys/dev/cxgb cxgb_adapter.h cxgb_lro.c cxgb_main.c cxgb_sge.c sys/dev/cxgb/common cxgb_vsc8211.c Log: Fixes for 4 port and small packet optimization - remove cpl->iff panic - we can't know the port number from the rspq on the 4-port - pick the ifnet based on the interface in the CPL header - switch to using qset 0 for egress on the 4-port for now - may change when we start using RSS - move ether_ifdetach to before the port lock gets deinitialized to avoid hang in the case where there are BPF peers (cxgb_ioctl is called indirectly when BPF peers are present) - don't call t3_mac_reset if multiport is set, this was causing tx errors by misconfiguring the MAC on the 4-port - change V_TXPKT_INTF to use txpkt_intf as the interfaces are not contiguous - free the mbuf immediately in the case where the payload is small enough to be copied into the rspq - only update the coalesce timer if for a queue if packets were taken off of it - add in missed 20ms DELAY in initializaton vsc8211 - prompt MFC as this only applies to the 4-port which is currently completely broken - OK'd by kensmith Supported by: Chelsio Approved by: re (blanket) MFC after: 0 days Revision Changes Path 1.3 +1 -0 src/sys/dev/cxgb/common/cxgb_vsc8211.c 1.17 +6 -3 src/sys/dev/cxgb/cxgb_adapter.h 1.8 +6 -7 src/sys/dev/cxgb/cxgb_lro.c 1.32 +80 -29 src/sys/dev/cxgb/cxgb_main.c 1.28 +32 -37 src/sys/dev/cxgb/cxgb_sge.c From owner-cvs-all@FreeBSD.ORG Sat Aug 25 21:32:19 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 33B1016A41A; Sat, 25 Aug 2007 21:32:19 +0000 (UTC) (envelope-from kensmith@cse.Buffalo.EDU) Received: from phoebe.cse.buffalo.edu (phoebe.cse.Buffalo.EDU [128.205.32.89]) by mx1.freebsd.org (Postfix) with ESMTP id E36E913C45D; Sat, 25 Aug 2007 21:32:18 +0000 (UTC) (envelope-from kensmith@cse.Buffalo.EDU) Received: from [192.168.1.101] (cpe-74-77-179-53.buffalo.res.rr.com [74.77.179.53]) (authenticated bits=0) by phoebe.cse.buffalo.edu (8.14.1/8.13.7) with ESMTP id l7PLVuLD028196 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Sat, 25 Aug 2007 17:31:57 -0400 (EDT) (envelope-from kensmith@cse.buffalo.edu) From: Ken Smith To: Daniel Eischen In-Reply-To: References: <20070824.172212.74696955.imp@bsdimp.com> <20070825053302.GG99474@comp.chem.msu.su> <20070825.093925.43008968.imp@bsdimp.com> <1188071752.1853.44.camel@neo.cse.buffalo.edu> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-a56JNptRYwiau/fyS8mC" Date: Sat, 25 Aug 2007 17:33:16 -0400 Message-Id: <1188077596.1853.55.camel@neo.cse.buffalo.edu> Mime-Version: 1.0 X-Mailer: Evolution 2.8.2.1 FreeBSD GNOME Team Port X-DCC-Buffalo.EDU-Metrics: phoebe.cse.buffalo.edu 1029; Body=0 Fuz1=0 Fuz2=0 X-Spam-Status: No, score=0.1 required=5.0 tests=RDNS_DYNAMIC autolearn=no version=3.2.3 X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on phoebe.cse.buffalo.edu Cc: src-committers@FreeBSD.org, yar@comp.chem.msu.su, alfred@FreeBSD.org, cvs-all@FreeBSD.org, cvs-src@FreeBSD.org, "M. Warner Losh" Subject: Re: cvs commit: src/lib/libc/gen fts-compat.c fts-compat.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, 25 Aug 2007 21:32:19 -0000 --=-a56JNptRYwiau/fyS8mC Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sat, 2007-08-25 at 17:06 -0400, Daniel Eischen wrote: > On Sat, 25 Aug 2007, Ken Smith wrote: >=20 > > > > [ Not bothering to include references for the entire thread, go back an= d > > read them if you really want to... ] > > > > I want Yar's work to proceed as planned please. My reasons are: >=20 > No offense, but some things have been going in without being discussed > an -arch or -current. Approval for committing still has to go through > re@, but that doesn't mean that changes shouldn't be vetted elsewhere > prior to being sent to re@ approval. >=20 If that's the case then it's been my negligence and I apologize. I'll try to be more mindful of that moving forward. That said, I'm still confused about what aspect of this has not been discussed. We have symbol versioning in place. Yar had a compatibility-breaking change to make to fts(3). He followed exactly the procedures I was led to believe are to be followed now that symbol versioning is in place. That was why I approved it. What aspect of that is wrong? Is it just that 7.0 isn't out the door quite yet or is there more to it than that? I have read the thread and still can only see arguments against it based on what I believe to be pre-symbol versioning thinking. This is the first use of symbol versioning but to me when Yar requested it I didn't think it needed a wider review because I thought it followed the procedures we want to have in place from this point forward and I didn't think going forward every time new library symbols get phased in for particular things we'd be needing to do that sort of large scale review. In retrospect I think I overstepped things with the addition of the tkill stuff and that should have gotten wider review. If I'm mistaken about us having settled on the exact mechanics of symbol versioning then I overstepped things again but I thought that had been settled and that this case followed what had been settled on. --=20 Ken Smith - From there to here, from here to | kensmith@cse.buffalo.edu there, funny things are everywhere. | - Theodore Geisel | --=-a56JNptRYwiau/fyS8mC Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD) iD8DBQBG0KAc/G14VSmup/YRAjftAKCISrFl9Z56rNzWFRP/QUh97HtLxACfXyBe NWp9PJgfSxpMfH1kcDxnAmY= =AQnY -----END PGP SIGNATURE----- --=-a56JNptRYwiau/fyS8mC-- From owner-cvs-all@FreeBSD.ORG Sat Aug 25 21:47:44 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9A4DD16A419; Sat, 25 Aug 2007 21:47:44 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7255C13C457; Sat, 25 Aug 2007 21:47:44 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PLlisZ018391; Sat, 25 Aug 2007 21:47:44 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PLliWp018390; Sat, 25 Aug 2007 21:47:44 GMT (envelope-from mezz) Message-Id: <200708252147.l7PLliWp018390@repoman.freebsd.org> From: Jeremy Messenger Date: Sat, 25 Aug 2007 21:47:44 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/ffmpeg Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 21:47:44 -0000 mezz 2007-08-25 21:47:44 UTC FreeBSD ports repository Modified files: multimedia/ffmpeg Makefile Log: -Fix the CFLAGS/LDFLAGS. -Fix the build if it has no -O* or/and has -O0 by force replace to -O2. PR: ports/115076 Submitted by: Tatsuki Makino Revision Changes Path 1.71 +6 -4 ports/multimedia/ffmpeg/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 25 21:52:37 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ECC6E16A419; Sat, 25 Aug 2007 21:52:37 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id A669413C45B; Sat, 25 Aug 2007 21:52:37 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.13.8/8.13.4) with ESMTP id l7PLpYc8074105; Sat, 25 Aug 2007 15:51:34 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Sat, 25 Aug 2007 15:51:38 -0600 (MDT) Message-Id: <20070825.155138.-1548240116.imp@bsdimp.com> To: eischen@vigrid.com From: "M. Warner Losh" In-Reply-To: References: <20070825.093925.43008968.imp@bsdimp.com> <1188071752.1853.44.camel@neo.cse.buffalo.edu> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Sat, 25 Aug 2007 15:51:34 -0600 (MDT) Cc: src-committers@freebsd.org, yar@comp.chem.msu.su, alfred@freebsd.org, cvs-all@freebsd.org, cvs-src@freebsd.org, kensmith@cse.Buffalo.EDU Subject: Re: cvs commit: src/lib/libc/gen fts-compat.c fts-compat.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, 25 Aug 2007 21:52:38 -0000 In message: Daniel Eischen writes: : On Sat, 25 Aug 2007, Ken Smith wrote: : : > : > [ Not bothering to include references for the entire thread, go back and : > read them if you really want to... ] : > : > I want Yar's work to proceed as planned please. My reasons are: : : No offense, but some things have been going in without being discussed : an -arch or -current. Approval for committing still has to go through : re@, but that doesn't mean that changes shouldn't be vetted elsewhere : prior to being sent to re@ approval. Can you be specific? Also, we shouldn't be making it this hard to use versioned symbols. The last thing we want is for it to be perceived as a fight to get one into the tree. If that's the perception, then people are less likely to do the right thing in the future. We should instead embrace the change, document the right thing to do and use it as a dry-run to work out the kinks in the process. Yar's change fell into a grey area. Reasonable people could differ as to the time that the ABI became 'official'. Is it with the release? Or is it when symbol versioning was turned on? Or maybe when the code freeze happened. Clearly it wasn't before symbol versioning was enabled, and it can't be after the release. Why not now? Why not let the RE@ make the call when he reasonably believes the right time is? We delegated the release process to him and his team so the whole community doesn't micromanage it to death, introduce changes at a bad time, etc, etc, etc. Why can't we let him decide the exact boundaries and make this grey area less grey? Warner From owner-cvs-all@FreeBSD.ORG Sat Aug 25 21:57:40 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8B2DB16A417; Sat, 25 Aug 2007 21:57:40 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6407713C45E; Sat, 25 Aug 2007 21:57:40 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PLveIA019058; Sat, 25 Aug 2007 21:57:40 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PLve8F019057; Sat, 25 Aug 2007 21:57:40 GMT (envelope-from mezz) Message-Id: <200708252157.l7PLve8F019057@repoman.freebsd.org> From: Jeremy Messenger Date: Sat, 25 Aug 2007 21: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/multimedia/ffmpeg Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 21:57:40 -0000 mezz 2007-08-25 21:57:39 UTC FreeBSD ports repository Modified files: multimedia/ffmpeg Makefile Log: -Fix the build with WITH_DEBUG=yes by force add -O2 in DEBUG_FLAGS. PR: ports/115296 Reported by: Robert Gogolok Revision Changes Path 1.72 +1 -0 ports/multimedia/ffmpeg/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 25 22:10:12 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D1A7716A419; Sat, 25 Aug 2007 22:10:12 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.freebsd.org (Postfix) with ESMTP id A773613C469; Sat, 25 Aug 2007 22:10:12 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id 50EF42F70; Sat, 25 Aug 2007 17:10:09 -0500 (CDT) Date: Sat, 25 Aug 2007 17:10:09 -0500 To: Daniel Eischen Message-ID: <20070825221009.GC32000@soaustin.net> References: <20070824.172212.74696955.imp@bsdimp.com> <20070825053302.GG99474@comp.chem.msu.su> <20070825.093925.43008968.imp@bsdimp.com> <1188071752.1853.44.camel@neo.cse.buffalo.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.9i From: linimon@lonesome.com (Mark Linimon) Cc: src-committers@FreeBSD.org, yar@comp.chem.msu.su, alfred@FreeBSD.org, cvs-all@FreeBSD.org, cvs-src@FreeBSD.org, Ken Smith , "M. Warner Losh" Subject: Re: cvs commit: src/lib/libc/gen fts-compat.c fts-compat.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, 25 Aug 2007 22:10:12 -0000 On Sat, Aug 25, 2007 at 05:06:08PM -0400, Daniel Eischen wrote: > No offense, but some things have been going in without being discussed > an -arch or -current. -arch has been pretty quiet recently and could use some more traffic. I'd rather see discussions like this go on there rather than -current, which is pretty noisy. mcl From owner-cvs-all@FreeBSD.ORG Sat Aug 25 22:18:51 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 61AC216A468; Sat, 25 Aug 2007 22:18:51 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3A81213C4B6; Sat, 25 Aug 2007 22:18:51 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PMIpZN021467; Sat, 25 Aug 2007 22:18:51 GMT (envelope-from beech@repoman.freebsd.org) Received: (from beech@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PMIpRm021466; Sat, 25 Aug 2007 22:18:51 GMT (envelope-from beech) Message-Id: <200708252218.l7PMIpRm021466@repoman.freebsd.org> From: Beech Rintoul Date: Sat, 25 Aug 2007 22:18:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/gallery Makefile distinfo ports/www/gallery/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: Sat, 25 Aug 2007 22:18:51 -0000 beech 2007-08-25 22:18:50 UTC FreeBSD ports repository Modified files: www/gallery Makefile distinfo www/gallery/files pkg-message.in Log: - Update to 1.5.7 - Minor Makefile tweaks and pet portlint PR: ports/115777 Submitted by: Alex Varju (maintainer) Approved by: sat (mentor) Revision Changes Path 1.50 +6 -6 ports/www/gallery/Makefile 1.38 +3 -3 ports/www/gallery/distinfo 1.2 +3 -2 ports/www/gallery/files/pkg-message.in From owner-cvs-all@FreeBSD.ORG Sat Aug 25 22:56:27 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DF3F916A417; Sat, 25 Aug 2007 22:56:26 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D149A13C481; Sat, 25 Aug 2007 22:56:26 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PMuQAb023769; Sat, 25 Aug 2007 22:56:26 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PMuQf8023768; Sat, 25 Aug 2007 22:56:26 GMT (envelope-from mezz) Message-Id: <200708252256.l7PMuQf8023768@repoman.freebsd.org> From: Jeremy Messenger Date: Sat, 25 Aug 2007 22:56: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/libsndfile Makefile ports/audio/libsndfile/files patch-flac_metadata_support X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 22:56:27 -0000 mezz 2007-08-25 22:56:26 UTC FreeBSD ports repository Modified files: audio/libsndfile Makefile Added files: audio/libsndfile/files patch-flac_metadata_support Log: - Add support for FLAC metadata. [1] - Remove sqlite3 option and disable it by default, since it's only for regression tests. - Bump the PORTREVISION. PR: ports/114524 ports/115805 Suggested by: Ed Schouten Obtained from: https://lists.hoeg.nl/archives/herrie-users/2007-July/000053.html [1] Revision Changes Path 1.37 +5 -10 ports/audio/libsndfile/Makefile 1.1 +44 -0 ports/audio/libsndfile/files/patch-flac_metadata_support (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 25 23:01:15 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0FC9516A468; Sat, 25 Aug 2007 23:01:15 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DE27E13C461; Sat, 25 Aug 2007 23:01:14 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PN1EMC024108; Sat, 25 Aug 2007 23:01:14 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PN1EZ0024105; Sat, 25 Aug 2007 23:01:14 GMT (envelope-from mezz) Message-Id: <200708252301.l7PN1EZ0024105@repoman.freebsd.org> From: Jeremy Messenger Date: Sat, 25 Aug 2007 23:01: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/multimedia/vlc Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 23:01:15 -0000 mezz 2007-08-25 23:01:14 UTC FreeBSD ports repository Modified files: multimedia/vlc Makefile Log: Remove FreeBSD 4.x stuff. PR: ports/115027 Submitted by: David Yeske Revision Changes Path 1.154 +0 -12 ports/multimedia/vlc/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 25 23:55:22 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C94D16A41A; Sat, 25 Aug 2007 23:55:22 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DF17213C481; Sat, 25 Aug 2007 23:55:21 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PNtLTI029775; Sat, 25 Aug 2007 23:55:21 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PNtLLD029774; Sat, 25 Aug 2007 23:55:21 GMT (envelope-from kmacy) Message-Id: <200708252355.l7PNtLLD029774@repoman.freebsd.org> From: Kip Macy Date: Sat, 25 Aug 2007 23:55: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/dev/cxgb cxgb_adapter.h cxgb_lro.c cxgb_main.c cxgb_sge.c src/sys/dev/cxgb/common cxgb_vsc8211.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 23:55:22 -0000 kmacy 2007-08-25 23:55:21 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/cxgb cxgb_adapter.h cxgb_lro.c cxgb_main.c cxgb_sge.c sys/dev/cxgb/common cxgb_vsc8211.c Log: MFC: Fixes for 4 port and small packet optimization - remove cpl->iff panic - we can't know the port number from the rspq on the 4-port - pick the ifnet based on the interface in the CPL header - switch to using qset 0 for egress on the 4-port for now - may change when we start using RSS - move ether_ifdetach to before the port lock gets deinitialized to avoid hang in the case where there are BPF peers (cxgb_ioctl is called indirectly when BPF peers are present) - don't call t3_mac_reset if multiport is set, this was causing tx errors by misconfiguring the MAC on the 4-port - change V_TXPKT_INTF to use txpkt_intf as the interfaces are not contiguous - free the mbuf immediately in the case where the payload is small enough to be copied into the rspq - only update the coalesce timer if for a queue if packets were taken off of it - add in missed 20ms DELAY in initializaton vsc8211 - prompt MFC as this only applies to the 4-port which is currently completely broken - OK'd by kensmith Supported by: Chelsio Revision Changes Path 1.1.2.3 +1 -0 src/sys/dev/cxgb/common/cxgb_vsc8211.c 1.2.2.8 +8 -5 src/sys/dev/cxgb/cxgb_adapter.h 1.1.2.4 +7 -7 src/sys/dev/cxgb/cxgb_lro.c 1.3.2.9 +81 -45 src/sys/dev/cxgb/cxgb_main.c 1.2.2.8 +28 -35 src/sys/dev/cxgb/cxgb_sge.c From owner-cvs-all@FreeBSD.ORG Sat Aug 25 23:58:46 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3A7BB16A41A; Sat, 25 Aug 2007 23:58:46 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 11DBF13C478; Sat, 25 Aug 2007 23:58:46 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l7PNwj09029932; Sat, 25 Aug 2007 23:58:45 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l7PNwjDP029931; Sat, 25 Aug 2007 23:58:45 GMT (envelope-from scottl) Message-Id: <200708252358.l7PNwjDP029931@repoman.freebsd.org> From: Scott Long Date: Sat, 25 Aug 2007 23:58:45 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/mfi mfi.c mfi_pci.c mfireg.h mfivar.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, 25 Aug 2007 23:58:46 -0000 scottl 2007-08-25 23:58:45 UTC FreeBSD src repository Modified files: sys/dev/mfi mfi.c mfi_pci.c mfireg.h mfivar.h Log: Update the MFI driver to support new "1078" series of hardware. This includes the upcoming Dell PERC6 series. Many thanks to LSI for contributing this code. Submitted by: LSI Approved by: re Revision Changes Path 1.33 +120 -21 src/sys/dev/mfi/mfi.c 1.9 +30 -3 src/sys/dev/mfi/mfi_pci.c 1.10 +37 -0 src/sys/dev/mfi/mfireg.h 1.11 +34 -0 src/sys/dev/mfi/mfivar.h